import { CreateVariantRequest as CreateVariantRequest$1, CreateVariantResponse as CreateVariantResponse$1, GetVariantRequest as GetVariantRequest$1, GetVariantResponse as GetVariantResponse$1, ListVariantsRequest as ListVariantsRequest$1, ListVariantsResponse as ListVariantsResponse$1, UpdateVariantRequest as UpdateVariantRequest$1, UpdateVariantResponse as UpdateVariantResponse$1, BulkCreateVariantsRequest as BulkCreateVariantsRequest$1, BulkCreateVariantsResponse as BulkCreateVariantsResponse$1, BulkUpdateVariantsRequest as BulkUpdateVariantsRequest$1, BulkUpdateVariantsResponse as BulkUpdateVariantsResponse$1, DeleteVariantRequest as DeleteVariantRequest$1, DeleteVariantResponse as DeleteVariantResponse$1, QueryVariantsRequest as QueryVariantsRequest$1, QueryVariantsResponse as QueryVariantsResponse$1, CountVariantsRequest as CountVariantsRequest$1, CountVariantsResponse as CountVariantsResponse$1, BulkDeleteVariantsRequest as BulkDeleteVariantsRequest$1, BulkDeleteVariantsResponse as BulkDeleteVariantsResponse$1 } from './index.typings.mjs'; import '@wix/sdk-types'; interface Variant { /** * Item variant ID. * @format GUID * @readonly */ id?: string | null; /** * Revision number, which increments by 1 each time the item variant is updated. To prevent conflicting changes, the current revision must be passed when updating the item variant. Ignored when creating an item variant. * @readonly */ revision?: string | null; /** * Date and time the item variant was created. * @readonly */ createdDate?: Date | null; /** * Date and time the item variant was updated. * @readonly */ updatedDate?: Date | null; /** * Item variant name. * @minLength 1 * @maxLength 200 */ name?: string | null; /** Extended fields. */ extendedFields?: ExtendedFields; /** * IDs of the business locations ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations)) where these item variants are available. * @maxSize 100 * @format GUID * @readonly */ businessLocationIds?: string[]; } interface ExtendedFields { /** * Extended field data. Each key corresponds to the namespace of the app that created the extended fields. * The value of each key is structured according to the schema defined when the extended fields were configured. * * You can only access fields for which you have the appropriate permissions. * * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields). */ namespaces?: Record>; } interface ExternalReferenceInfo { /** * ID of the external integrator app\system associated with this object. * @format GUID */ externalAppId?: string | null; /** * Reference to an external resource ID. Used to link this object to a specific entity in an external system. * @maxLength 100 */ externalEntityId?: string | null; /** Last time this item variant was synced with the external app. */ lastSyncDate?: Date | null; /** Whether the connection to the external system is currently active. */ connected?: boolean | null; } interface InvalidateCache extends InvalidateCacheGetByOneOf { /** * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache! * @format GUID */ metaSiteId?: string; /** * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache! * @format GUID */ siteId?: string; /** Invalidate by App */ app?: App; /** Invalidate by page id */ page?: Page; /** Invalidate by URI path */ uri?: URI; /** Invalidate by file (for media files such as PDFs) */ file?: File; /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */ customTag?: CustomTag; /** Invalidate by multiple page ids */ pages?: Pages; /** Invalidate by multiple URI paths */ uris?: URIs; /** * tell us why you're invalidating the cache. You don't need to add your app name * @maxLength 256 */ reason?: string | null; /** Is local DS */ localDc?: boolean; hardPurge?: boolean; /** * Optional caller-provided ID for tracking this invalidation through the system. * When set, the corresponding CDN purge completion event will include this ID, * allowing you to confirm when the invalidation has fully propagated. * Example: generate a UUID, pass it here, and later match it in the CDN purge completion event. * @maxLength 256 */ correlationId?: string | null; } /** @oneof */ interface InvalidateCacheGetByOneOf { /** * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache! * @format GUID */ metaSiteId?: string; /** * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache! * @format GUID */ siteId?: string; /** Invalidate by App */ app?: App; /** Invalidate by page id */ page?: Page; /** Invalidate by URI path */ uri?: URI; /** Invalidate by file (for media files such as PDFs) */ file?: File; /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */ customTag?: CustomTag; /** Invalidate by multiple page ids */ pages?: Pages; /** Invalidate by multiple URI paths */ uris?: URIs; } interface App { /** * The AppDefId * @minLength 1 */ appDefId?: string; /** * The instance Id * @format GUID */ instanceId?: string; } interface Page { /** * the msid the page is on * @format GUID */ metaSiteId?: string; /** * Invalidate by Page ID * @minLength 1 */ pageId?: string; } interface URI { /** * the msid the URI is on * @format GUID */ metaSiteId?: string; /** * URI path to invalidate (e.g. page/my/path) - without leading/trailing slashes * @minLength 1 */ uriPath?: string; } interface File { /** * the msid the file is related to * @format GUID */ metaSiteId?: string; /** * Invalidate by filename (for media files such as PDFs) * @minLength 1 * @maxLength 256 */ fileName?: string; } interface CustomTag { /** * the msid the tag is related to * @format GUID */ metaSiteId?: string; /** * Tag to invalidate by * @minLength 1 * @maxLength 256 */ tag?: string; } interface Pages { /** * the msid the pages are on * @format GUID */ metaSiteId?: string; /** * Invalidate by multiple Page IDs in a single message * @maxSize 100 * @minLength 1 */ pageIds?: string[]; } interface URIs { /** * the msid the URIs are on * @format GUID */ metaSiteId?: string; /** * URI paths to invalidate (e.g. page/my/path) - without leading/trailing slashes * @maxSize 100 * @minLength 1 */ uriPaths?: string[]; } interface CreateVariantRequest { /** Item variant info. */ variant: Variant; } interface CreateVariantResponse { /** Item variant. */ variant?: Variant; } interface GetVariantRequest { /** * ID of the item variant to retrieve. * @format GUID */ variantId: string; } interface GetVariantResponse { /** Item variant. */ variant?: Variant; } interface ListVariantsRequest { /** * Item variant IDs. * @format GUID * @maxSize 500 */ variantIds?: string[]; /** The metadata of the paginated results. */ paging?: CursorPaging; } interface CursorPaging { /** * Number of items to load. * @max 500 */ limit?: number | null; /** * Pointer to the next or previous page in the list of results. * * You can get the relevant cursor token * from the `pagingMetadata` object in the previous call's response. * Not relevant for the first request. * @maxLength 16000 */ cursor?: string | null; } interface ListVariantsResponse { /** The retrieved item variants. */ variants?: Variant[]; /** The metadata of the paginated results. */ metadata?: CursorPagingMetadata; } interface CursorPagingMetadata { /** Number of items returned in the response. */ count?: number | null; /** Offset that was requested. */ cursors?: Cursors; /** * Indicates if there are more results after the current page. * If `true`, another page of results can be retrieved. * If `false`, this is the last page. */ hasNext?: boolean | null; } interface Cursors { /** * Cursor pointing to next page in the list of results. * @maxLength 16000 */ next?: string | null; /** * Cursor pointing to previous page in the list of results. * @maxLength 16000 */ prev?: string | null; } interface UpdateVariantRequest { /** Item variant to update. */ variant: Variant; } interface UpdateVariantResponse { /** Updated item variant. */ variant?: Variant; } interface BulkCreateVariantsRequest { /** * Item variants details. * @maxSize 100 */ variants: Variant[]; /** Whether to receive the created item variants in the response. */ returnEntity?: boolean; } interface BulkCreateVariantsResponse { /** Information about the created item variants. */ results?: BulkVariantResult[]; /** Metadata for the API call. */ bulkActionMetadata?: BulkActionMetadata; } interface BulkVariantResult { /** Metadata for creation of item variants. */ itemMetadata?: ItemMetadata; /** Created item variants. Only returned if the `returnEntity` value is `true`. */ variant?: Variant; } interface ItemMetadata { /** Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). */ id?: string | null; /** Index of the item within the request array. Allows for correlation between request and response items. */ originalIndex?: number; /** Whether the requested action was successful for this item. When `false`, the `error` field is populated. */ success?: boolean; /** Details about the error in case of failure. */ error?: ApplicationError; } interface ApplicationError { /** Error code. */ code?: string; /** Description of the error. */ description?: string; /** Data related to the error. */ data?: Record | null; } interface BulkActionMetadata { /** Number of items that were successfully processed. */ totalSuccesses?: number; /** Number of items that couldn't be processed. */ totalFailures?: number; /** Number of failures without details because detailed failure threshold was exceeded. */ undetailedFailures?: number; } interface BulkUpdateVariantsRequest { /** * Item variants to be updated. * @minSize 1 * @maxSize 100 */ variants: MaskedVariant[]; /** Whether to receive the updated item variants in the response. */ returnEntity?: boolean; } interface MaskedVariant { /** Item variant to update. */ variant?: Variant; } interface BulkUpdateVariantsResponse { /** * Information about the updated item variants. * @minSize 1 * @maxSize 100 */ results?: BulkVariantResult[]; /** Metadata for the API call. */ bulkActionMetadata?: BulkActionMetadata; } interface DeleteVariantRequest { /** * Item variant ID. * @format GUID */ variantId: string; } interface DeleteVariantResponse { } interface QueryVariantsRequest { /** Query options. */ query?: CursorQuery; } interface CursorQuery extends CursorQueryPagingMethodOneOf { /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */ cursorPaging?: CursorPaging; /** * Filter object in the following format: * `"filter" : { * "fieldName1": "value1", * "fieldName2":{"$operator":"value2"} * }` * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains` */ filter?: Record | null; /** * Sort object in the following format: * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]` * @maxSize 4 */ sort?: Sorting[]; } /** @oneof */ interface CursorQueryPagingMethodOneOf { /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */ cursorPaging?: CursorPaging; } interface Sorting { /** * Name of the field to sort by. * @maxLength 64 */ fieldName?: string; /** Sort order. */ order?: SortOrderWithLiterals; } declare enum SortOrder { ASC = "ASC", DESC = "DESC" } /** @enumType */ type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC'; interface QueryVariantsResponse { /** Retrieved item variants. */ variants?: Variant[]; /** Metadata of the paginated results. */ pagingMetadata?: CursorPagingMetadata; } interface CountVariantsRequest { /** Filter for counting variants. */ filter?: Record | null; } interface CountVariantsResponse { /** Counted variants. */ count?: number; } interface CloneVariantsRequest { /** * The MetaSiteId to clone from * @format GUID */ metaSiteId?: string; } interface CloneVariantsResponse { } interface BulkDeleteVariantsRequest { /** * Item variant IDs. * @format GUID * @maxSize 200 */ ids: string[]; } interface BulkDeleteVariantsResponse { /** Information about the deleted variants. */ results?: BulkDeleteVariantsResult[]; /** Metadata for the API call. */ bulkActionMetadata?: BulkActionMetadata; } interface BulkDeleteVariantsResult { /** Metadata for variants deletion. */ itemMetadata?: ItemMetadata; } interface BulkUpdateBusinessLocationIdsRequest { /** * variant ids * @format GUID * @minSize 1 * @maxSize 100 */ variantIds?: string[]; /** * Business Location Ids. * @maxSize 100 * @format GUID */ businessLocationIds?: string[]; } interface BulkUpdateBusinessLocationIdsResponse { /** * Information about the updated variants. * @minSize 1 * @maxSize 100 */ results?: BulkUpdateBusinessLocationIdsResponseBulkItemResult[]; } interface BulkUpdateBusinessLocationIdsResponseBulkItemResult { /** Metadata for item update. */ itemMetadata?: ItemMetadata; } interface BulkUpdateBusinessLocationIdsPerEntityRequest { /** * @minSize 1 * @maxSize 100 */ variantIdLocationIds?: VariantIdLocationIds[]; } interface VariantIdLocationIds { /** * variant ID * @format GUID */ variantId?: string; /** * Business Location IDs * @maxSize 100 * @format GUID */ businessLocationIds?: string[]; } interface BulkUpdateBusinessLocationIdsPerEntityResponse { /** * Information about the updated variants. * @minSize 1 * @maxSize 100 */ results?: BulkUpdateBusinessLocationIdsPerEntityResponseBulkItemResult[]; } interface BulkUpdateBusinessLocationIdsPerEntityResponseBulkItemResult { /** Metadata for item update. */ itemMetadata?: ItemMetadata; } interface BulkUpdateAttachedToOrphanItemRequest { /** * @minSize 1 * @maxSize 100 */ variantIdAttachedToOrphanItem?: VariantIdAttachedToOrphanItem[]; } interface VariantIdAttachedToOrphanItem { /** * variant ID * @format GUID */ variantId?: string; /** Attached to orphan item */ attachedToOrphanItem?: boolean; } interface BulkUpdateAttachedToOrphanItemResponse { /** * Information about the updated variants. * @minSize 1 * @maxSize 100 */ results?: BulkItemResult[]; } interface BulkItemResult { /** Metadata for item update. */ itemMetadata?: ItemMetadata; } interface DomainEvent extends DomainEventBodyOneOf { createdEvent?: EntityCreatedEvent; updatedEvent?: EntityUpdatedEvent; deletedEvent?: EntityDeletedEvent; actionEvent?: ActionEvent; /** Event ID. With this ID you can easily spot duplicated events and ignore them. */ id?: string; /** * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities. * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`. */ entityFqdn?: string; /** * Event action name, placed at the top level to make it easier for users to dispatch messages. * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`. */ slug?: string; /** ID of the entity associated with the event. */ entityId?: string; /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */ eventTime?: Date | null; /** * Whether the event was triggered as a result of a privacy regulation application * (for example, GDPR). */ triggeredByAnonymizeRequest?: boolean | null; /** If present, indicates the action that triggered the event. */ originatedFrom?: string | null; /** * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number. * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it. */ entityEventSequence?: string | null; } /** @oneof */ interface DomainEventBodyOneOf { createdEvent?: EntityCreatedEvent; updatedEvent?: EntityUpdatedEvent; deletedEvent?: EntityDeletedEvent; actionEvent?: ActionEvent; } interface EntityCreatedEvent { entityAsJson?: string; /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */ restoreInfo?: RestoreInfo; } interface RestoreInfo { deletedDate?: Date | null; } interface EntityUpdatedEvent { /** * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff. * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects. * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it. */ currentEntityAsJson?: string; } interface EntityDeletedEvent { /** Entity that was deleted. */ deletedEntityAsJson?: string | null; } interface ActionEvent { bodyAsJson?: string; } interface Empty { } interface SyncContentToMultilingualRequest { /** * MetaSite ID * @format GUID */ metaSiteId?: string; } interface SyncContentToMultilingualResponse { } interface MessageEnvelope { /** * App instance ID. * @format GUID */ instanceId?: string | null; /** * Event type. * @maxLength 150 */ eventType?: string; /** The identification type and identity data. */ identity?: IdentificationData; /** Stringify payload. */ data?: string; /** Details related to the account */ accountInfo?: AccountInfo; } interface IdentificationData extends IdentificationDataIdOneOf { /** * ID of a site visitor that has not logged in to the site. * @format GUID */ anonymousVisitorId?: string; /** * ID of a site visitor that has logged in to the site. * @format GUID */ memberId?: string; /** * ID of a Wix user (site owner, contributor, etc.). * @format GUID */ wixUserId?: string; /** * ID of an app. * @format GUID */ appId?: string; /** @readonly */ identityType?: WebhookIdentityTypeWithLiterals; } /** @oneof */ interface IdentificationDataIdOneOf { /** * ID of a site visitor that has not logged in to the site. * @format GUID */ anonymousVisitorId?: string; /** * ID of a site visitor that has logged in to the site. * @format GUID */ memberId?: string; /** * ID of a Wix user (site owner, contributor, etc.). * @format GUID */ wixUserId?: string; /** * ID of an app. * @format GUID */ appId?: string; } declare enum WebhookIdentityType { UNKNOWN = "UNKNOWN", ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR", MEMBER = "MEMBER", WIX_USER = "WIX_USER", APP = "APP" } /** @enumType */ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP'; interface AccountInfo { /** * ID of the Wix account associated with the event. * @format GUID */ accountId?: string | null; /** * ID of the parent Wix account. Only included when accountId belongs to a child account. * @format GUID */ parentAccountId?: string | null; /** * ID of the Wix site associated with the event. Only included when the event is tied to a specific site. * @format GUID */ siteId?: string | null; } /** @docsIgnore */ type CountVariantsApplicationErrors = { code?: 'TOO_MANY_TO_COUNT'; description?: string; data?: Record; }; type __PublicMethodMetaInfo = { getUrl: (context: any) => string; httpMethod: K; path: string; pathParams: M; __requestType: T; __originalRequestType: S; __responseType: Q; __originalResponseType: R; }; declare function createVariant(): __PublicMethodMetaInfo<'POST', {}, CreateVariantRequest$1, CreateVariantRequest, CreateVariantResponse$1, CreateVariantResponse>; declare function getVariant(): __PublicMethodMetaInfo<'GET', { variantId: string; }, GetVariantRequest$1, GetVariantRequest, GetVariantResponse$1, GetVariantResponse>; declare function listVariants(): __PublicMethodMetaInfo<'GET', {}, ListVariantsRequest$1, ListVariantsRequest, ListVariantsResponse$1, ListVariantsResponse>; declare function updateVariant(): __PublicMethodMetaInfo<'PATCH', { variantId: string; }, UpdateVariantRequest$1, UpdateVariantRequest, UpdateVariantResponse$1, UpdateVariantResponse>; declare function bulkCreateVariants(): __PublicMethodMetaInfo<'POST', {}, BulkCreateVariantsRequest$1, BulkCreateVariantsRequest, BulkCreateVariantsResponse$1, BulkCreateVariantsResponse>; declare function bulkUpdateVariants(): __PublicMethodMetaInfo<'POST', {}, BulkUpdateVariantsRequest$1, BulkUpdateVariantsRequest, BulkUpdateVariantsResponse$1, BulkUpdateVariantsResponse>; declare function deleteVariant(): __PublicMethodMetaInfo<'DELETE', { variantId: string; }, DeleteVariantRequest$1, DeleteVariantRequest, DeleteVariantResponse$1, DeleteVariantResponse>; declare function queryVariants(): __PublicMethodMetaInfo<'POST', {}, QueryVariantsRequest$1, QueryVariantsRequest, QueryVariantsResponse$1, QueryVariantsResponse>; declare function countVariants(): __PublicMethodMetaInfo<'POST', {}, CountVariantsRequest$1, CountVariantsRequest, CountVariantsResponse$1, CountVariantsResponse>; declare function bulkDeleteVariants(): __PublicMethodMetaInfo<'DELETE', {}, BulkDeleteVariantsRequest$1, BulkDeleteVariantsRequest, BulkDeleteVariantsResponse$1, BulkDeleteVariantsResponse>; export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type App as AppOriginal, type ApplicationError as ApplicationErrorOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCreateVariantsRequest as BulkCreateVariantsRequestOriginal, type BulkCreateVariantsResponse as BulkCreateVariantsResponseOriginal, type BulkDeleteVariantsRequest as BulkDeleteVariantsRequestOriginal, type BulkDeleteVariantsResponse as BulkDeleteVariantsResponseOriginal, type BulkDeleteVariantsResult as BulkDeleteVariantsResultOriginal, type BulkItemResult as BulkItemResultOriginal, type BulkUpdateAttachedToOrphanItemRequest as BulkUpdateAttachedToOrphanItemRequestOriginal, type BulkUpdateAttachedToOrphanItemResponse as BulkUpdateAttachedToOrphanItemResponseOriginal, type BulkUpdateBusinessLocationIdsPerEntityRequest as BulkUpdateBusinessLocationIdsPerEntityRequestOriginal, type BulkUpdateBusinessLocationIdsPerEntityResponseBulkItemResult as BulkUpdateBusinessLocationIdsPerEntityResponseBulkItemResultOriginal, type BulkUpdateBusinessLocationIdsPerEntityResponse as BulkUpdateBusinessLocationIdsPerEntityResponseOriginal, type BulkUpdateBusinessLocationIdsRequest as BulkUpdateBusinessLocationIdsRequestOriginal, type BulkUpdateBusinessLocationIdsResponseBulkItemResult as BulkUpdateBusinessLocationIdsResponseBulkItemResultOriginal, type BulkUpdateBusinessLocationIdsResponse as BulkUpdateBusinessLocationIdsResponseOriginal, type BulkUpdateVariantsRequest as BulkUpdateVariantsRequestOriginal, type BulkUpdateVariantsResponse as BulkUpdateVariantsResponseOriginal, type BulkVariantResult as BulkVariantResultOriginal, type CloneVariantsRequest as CloneVariantsRequestOriginal, type CloneVariantsResponse as CloneVariantsResponseOriginal, type CountVariantsApplicationErrors as CountVariantsApplicationErrorsOriginal, type CountVariantsRequest as CountVariantsRequestOriginal, type CountVariantsResponse as CountVariantsResponseOriginal, type CreateVariantRequest as CreateVariantRequestOriginal, type CreateVariantResponse as CreateVariantResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type CustomTag as CustomTagOriginal, type DeleteVariantRequest as DeleteVariantRequestOriginal, type DeleteVariantResponse as DeleteVariantResponseOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type ExternalReferenceInfo as ExternalReferenceInfoOriginal, type File as FileOriginal, type GetVariantRequest as GetVariantRequestOriginal, type GetVariantResponse as GetVariantResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOfOriginal, type InvalidateCache as InvalidateCacheOriginal, type ItemMetadata as ItemMetadataOriginal, type ListVariantsRequest as ListVariantsRequestOriginal, type ListVariantsResponse as ListVariantsResponseOriginal, type MaskedVariant as MaskedVariantOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Page as PageOriginal, type Pages as PagesOriginal, type QueryVariantsRequest as QueryVariantsRequestOriginal, type QueryVariantsResponse as QueryVariantsResponseOriginal, type RestoreInfo as RestoreInfoOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, type SyncContentToMultilingualRequest as SyncContentToMultilingualRequestOriginal, type SyncContentToMultilingualResponse as SyncContentToMultilingualResponseOriginal, type URI as URIOriginal, type URIs as URIsOriginal, type UpdateVariantRequest as UpdateVariantRequestOriginal, type UpdateVariantResponse as UpdateVariantResponseOriginal, type VariantIdAttachedToOrphanItem as VariantIdAttachedToOrphanItemOriginal, type VariantIdLocationIds as VariantIdLocationIdsOriginal, type Variant as VariantOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkCreateVariants, bulkDeleteVariants, bulkUpdateVariants, countVariants, createVariant, deleteVariant, getVariant, listVariants, queryVariants, updateVariant };