{"version":3,"sources":["../../src/ecom-v1-wishlist-wishlists.universal.ts","../../src/ecom-v1-wishlist-wishlists.http.ts","../../src/ecom-v1-wishlist-wishlists.public.ts","../../src/ecom-v1-wishlist-wishlists.context.ts"],"sourcesContent":["import { transformError as sdkTransformError } from '@wix/sdk-runtime/transform-error';\nimport {\n  renameKeysFromSDKRequestToRESTRequest,\n  renameKeysFromRESTResponseToSDKResponse,\n} from '@wix/sdk-runtime/rename-all-nested-keys';\nimport { HttpClient, NonNullablePaths } from '@wix/sdk-types';\nimport * as ambassadorWixEcomV1Wishlist from './ecom-v1-wishlist-wishlists.http.js';\n\n/**\n * A Wishlist is a collection of catalog items saved by a site member.\n * Items are embedded (capped at 100) and identified by a CatalogReference\n * (catalog_item_id + app_id + options), so different variants are distinct. See:\n * https://dev.wix.com/docs/rest/business-solutions/e-commerce/catalog-service-plugin/handle-item-variants\n */\nexport interface Wishlist {\n  /**\n   * Wishlist ID.\n   * @format GUID\n   * @readonly\n   */\n  _id?: string | null;\n  /**\n   * The ID of the wishlist owner.\n   * @readonly\n   * @format GUID\n   */\n  memberId?: string;\n  /**\n   * Saved items. Managed via AddItem / RemoveItem.\n   * @maxSize 100\n   * @readonly\n   */\n  items?: WishlistItem[];\n  /**\n   * Date and time the wishlist was created.\n   * @readonly\n   */\n  _createdDate?: Date | null;\n  /**\n   * Date and time the wishlist was last updated.\n   * @readonly\n   */\n  _updatedDate?: Date | null;\n  /** Data Extensions */\n  extendedFields?: ExtendedFields;\n  /** Tags */\n  tags?: Tags;\n}\n\n/**\n * A single item saved in a wishlist.\n * Managed via Wishlists.AddItem / RemoveItem.\n */\nexport interface WishlistItem {\n  /** Catalog reference identifying the saved item (the uniqueness key within a wishlist). */\n  catalogReference?: CatalogReference;\n  /**\n   * When the item was added to the wishlist.\n   * @readonly\n   */\n  addedDate?: Date | null;\n}\n\n/** Used for grouping line items. Sent when an item is added to a cart, checkout, or order. */\nexport interface CatalogReference {\n  /**\n   * ID of the item within the catalog it belongs to.\n   * @minLength 1\n   * @maxLength 36\n   */\n  catalogItemId?: string;\n  /**\n   * ID of the app providing the catalog.\n   *\n   * You can get your app's ID from its page in the [app dashboard](https://dev.wix.com/dc3/my-apps/).\n   *\n   * For items from Wix catalogs, the following values always apply:\n   * + Wix Stores: `\"215238eb-22a5-4c36-9e7b-e7c08025e04e\"`\n   * + Wix Bookings: `\"13d21c63-b5ec-5912-8397-c3a5ddb27a97\"`\n   * + Wix Restaurants: `\"9a5d83fd-8570-482e-81ab-cfa88942ee60\"`\n   * @minLength 1\n   */\n  appId?: string;\n  /**\n   * Additional item details in `key:value` pairs.\n   *\n   * Use this optional field for more specificity with item selection. The values of the `options` field differ depending on which catalog is providing the items.\n   *\n   * For Wix Stores products, learn more about integrating with [Catalog V3](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/e-commerce-integration)\n   * or [Catalog V1](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v1/catalog/e-commerce-integration), depending on [the version the site uses](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-versioning/introduction).\n   */\n  options?: Record<string, any> | null;\n}\n\nexport interface ExtendedFields {\n  /**\n   * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\n   * The value of each key is structured according to the schema defined when the extended fields were configured.\n   *\n   * You can only access fields for which you have the appropriate permissions.\n   *\n   * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).\n   */\n  namespaces?: Record<string, Record<string, any>>;\n}\n\n/**\n * Common object for tags.\n * Should be use as in this example:\n * message Foo {\n * option (.wix.api.decomposite_of) = \"wix.commons.v2.tags.Foo\";\n * string id = 1;\n * ...\n * Tags tags = 5\n * }\n *\n * example of taggable entity\n * {\n * id: \"123\"\n * tags: {\n * public_tags: {\n * tag_ids:[\"11\",\"22\"]\n * },\n * private_tags: {\n * tag_ids: [\"33\", \"44\"]\n * }\n * }\n * }\n */\nexport interface Tags {\n  /** Tags that require an additional permission in order to access them, normally not given to site members or visitors. */\n  privateTags?: TagList;\n  /** Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. */\n  publicTags?: TagList;\n}\n\nexport interface TagList {\n  /**\n   * List of tag IDs.\n   * @maxSize 100\n   * @maxLength 5\n   */\n  tagIds?: string[];\n}\n\n/** Payload for the WishlistItemAdded ACTION domain event. */\nexport interface WishlistItemAdded {\n  /**\n   * ID of the wishlist the item was added to.\n   * @format GUID\n   */\n  wishlistId?: string;\n  /** The item that was added. */\n  item?: WishlistItem;\n}\n\n/** Payload for the WishlistItemRemoved ACTION domain event. */\nexport interface WishlistItemRemoved {\n  /**\n   * ID of the wishlist the item was removed from.\n   * @format GUID\n   */\n  wishlistId?: string;\n  /** The item that was removed. */\n  item?: WishlistItem;\n}\n\n/** Payload for the WishlistTagsModified ACTION domain event. */\nexport interface WishlistTagsModified {\n  /** The wishlist whose tags changed. */\n  wishlist?: Wishlist;\n  /** Tags assigned in this change. */\n  assignedTags?: Tags;\n  /** Tags unassigned in this change. */\n  unassignedTags?: Tags;\n}\n\n/** Empty — resolves the caller's wishlist from request context. */\nexport interface GetDefaultWishlistRequest {}\n\nexport interface GetDefaultWishlistResponse {\n  /** The caller's wishlist (empty representation if none exists). */\n  wishlist?: Wishlist;\n}\n\nexport interface AddItemRequest {\n  /** Item to add. Already present items (full three-field equality) are silently skipped. */\n  catalogReference: CatalogReference;\n  /** Whether to return the updated wishlist in the response. */\n  returnEntity?: boolean;\n}\n\nexport interface AddItemResponse {\n  /** The updated wishlist. */\n  wishlist?: Wishlist;\n}\n\nexport interface RemoveItemRequest {\n  /** Item to remove. Absent items are silently skipped. */\n  catalogReference: CatalogReference;\n  /** Whether to return the updated wishlist in the response. */\n  returnEntity?: boolean;\n}\n\nexport interface RemoveItemResponse {\n  /** The updated wishlist. */\n  wishlist?: Wishlist;\n}\n\n/** Tags by wishlist ID. assign_tags or unassign_tags (or both) must be non-empty. */\nexport interface BulkUpdateWishlistTagsRequest {\n  /**\n   * Wishlist IDs to update (1–100).\n   * @minSize 1\n   * @maxSize 100\n   * @format GUID\n   */\n  wishlistIds: string[];\n  /** Tags to assign. A tag present in both lists is assigned. */\n  assignTags?: Tags;\n  /** Tags to unassign. */\n  unassignTags?: Tags;\n}\n\nexport interface BulkUpdateWishlistTagsResponse {\n  /**\n   * Per-wishlist results.\n   * @minSize 1\n   * @maxSize 100\n   */\n  results?: BulkUpdateWishlistTagsResult[];\n  /** Aggregate metadata for the bulk action. */\n  bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface ItemMetadata {\n  /**\n   * Item ID. Provided only whenever possible. For example, `itemId` can't be provided when item creation has failed.\n   * @format GUID\n   */\n  _id?: string | null;\n  /** Index of the item within the request array. Allows for correlation between request and response items. */\n  originalIndex?: number;\n  /** Whether the requested action for this item was successful. When `false`, the `error` field is returned. */\n  success?: boolean;\n  /** Details about the error in case of failure. */\n  error?: ApplicationError;\n}\n\nexport interface ApplicationError {\n  /** Error code. */\n  code?: string;\n  /** Description of the error. */\n  description?: string;\n  /** Data related to the error. */\n  data?: Record<string, any> | null;\n}\n\nexport interface BulkUpdateWishlistTagsResult {\n  /** Per-item result metadata (success/failure). */\n  itemMetadata?: ItemMetadata;\n}\n\nexport interface BulkActionMetadata {\n  /** Number of items that were successfully processed. */\n  totalSuccesses?: number;\n  /** Number of items that couldn't be processed. */\n  totalFailures?: number;\n  /** Number of failures without details because detailed failure threshold was exceeded. */\n  undetailedFailures?: number;\n}\n\n/**\n * Tags by filter (empty filter = all wishlists belonging to the site_member_id).\n * assign_tags or unassign_tags (or both) must be non-empty.\n */\nexport interface BulkUpdateWishlistTagsByFilterRequest {\n  /** WQL filter selecting wishlists (empty = all belonging to the site_member_id). */\n  filter: Record<string, any> | null;\n  /** Tags to assign. A tag present in both lists is assigned. */\n  assignTags?: Tags;\n  /** Tags to unassign. */\n  unassignTags?: Tags;\n}\n\nexport interface BulkUpdateWishlistTagsByFilterResponse {\n  /**\n   * Async job ID for tracking the operation.\n   * @format GUID\n   */\n  jobId?: string;\n}\n\nexport interface DomainEvent extends DomainEventBodyOneOf {\n  createdEvent?: EntityCreatedEvent;\n  updatedEvent?: EntityUpdatedEvent;\n  deletedEvent?: EntityDeletedEvent;\n  actionEvent?: ActionEvent;\n  /** Event ID. With this ID you can easily spot duplicated events and ignore them. */\n  _id?: string;\n  /**\n   * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.\n   * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.\n   */\n  entityFqdn?: string;\n  /**\n   * Event action name, placed at the top level to make it easier for users to dispatch messages.\n   * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.\n   */\n  slug?: string;\n  /** ID of the entity associated with the event. */\n  entityId?: string;\n  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */\n  eventTime?: Date | null;\n  /**\n   * Whether the event was triggered as a result of a privacy regulation application\n   * (for example, GDPR).\n   */\n  triggeredByAnonymizeRequest?: boolean | null;\n  /** If present, indicates the action that triggered the event. */\n  originatedFrom?: string | null;\n  /**\n   * 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.\n   * 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.\n   */\n  entityEventSequence?: string | null;\n}\n\n/** @oneof */\nexport interface DomainEventBodyOneOf {\n  createdEvent?: EntityCreatedEvent;\n  updatedEvent?: EntityUpdatedEvent;\n  deletedEvent?: EntityDeletedEvent;\n  actionEvent?: ActionEvent;\n}\n\nexport interface EntityCreatedEvent {\n  entity?: string;\n}\n\nexport interface RestoreInfo {\n  deletedDate?: Date | null;\n}\n\nexport interface EntityUpdatedEvent {\n  /**\n   * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.\n   * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.\n   * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.\n   */\n  currentEntity?: string;\n}\n\nexport interface EntityDeletedEvent {\n  /** Entity that was deleted. */\n  deletedEntity?: string | null;\n}\n\nexport interface ActionEvent {\n  body?: string;\n}\n\nexport interface MessageEnvelope {\n  /**\n   * App instance ID.\n   * @format GUID\n   */\n  instanceId?: string | null;\n  /**\n   * Event type.\n   * @maxLength 150\n   */\n  eventType?: string;\n  /** The identification type and identity data. */\n  identity?: IdentificationData;\n  /** Stringify payload. */\n  data?: string;\n  /** Details related to the account */\n  accountInfo?: AccountInfo;\n}\n\nexport interface IdentificationData extends IdentificationDataIdOneOf {\n  /**\n   * ID of a site visitor that has not logged in to the site.\n   * @format GUID\n   */\n  anonymousVisitorId?: string;\n  /**\n   * ID of a site visitor that has logged in to the site.\n   * @format GUID\n   */\n  memberId?: string;\n  /**\n   * ID of a Wix user (site owner, contributor, etc.).\n   * @format GUID\n   */\n  wixUserId?: string;\n  /**\n   * ID of an app.\n   * @format GUID\n   */\n  appId?: string;\n  /** @readonly */\n  identityType?: WebhookIdentityTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface IdentificationDataIdOneOf {\n  /**\n   * ID of a site visitor that has not logged in to the site.\n   * @format GUID\n   */\n  anonymousVisitorId?: string;\n  /**\n   * ID of a site visitor that has logged in to the site.\n   * @format GUID\n   */\n  memberId?: string;\n  /**\n   * ID of a Wix user (site owner, contributor, etc.).\n   * @format GUID\n   */\n  wixUserId?: string;\n  /**\n   * ID of an app.\n   * @format GUID\n   */\n  appId?: string;\n}\n\nexport enum WebhookIdentityType {\n  UNKNOWN = 'UNKNOWN',\n  ANONYMOUS_VISITOR = 'ANONYMOUS_VISITOR',\n  MEMBER = 'MEMBER',\n  WIX_USER = 'WIX_USER',\n  APP = 'APP',\n}\n\n/** @enumType */\nexport type WebhookIdentityTypeWithLiterals =\n  | WebhookIdentityType\n  | 'UNKNOWN'\n  | 'ANONYMOUS_VISITOR'\n  | 'MEMBER'\n  | 'WIX_USER'\n  | 'APP';\n\nexport interface AccountInfo {\n  /**\n   * ID of the Wix account associated with the event.\n   * @format GUID\n   */\n  accountId?: string | null;\n  /**\n   * ID of the parent Wix account. Only included when accountId belongs to a child account.\n   * @format GUID\n   */\n  parentAccountId?: string | null;\n  /**\n   * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.\n   * @format GUID\n   */\n  siteId?: string | null;\n}\n\n/** @docsIgnore */\nexport type AddItemApplicationErrors = {\n  code?: 'WISHLIST_ITEMS_LIMIT_EXCEEDED';\n  description?: string;\n  data?: Record<string, any>;\n};\n/** @docsIgnore */\nexport type BulkUpdateWishlistTagsApplicationErrors = {\n  code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';\n  description?: string;\n  data?: Record<string, any>;\n};\n/** @docsIgnore */\nexport type BulkUpdateWishlistTagsByFilterApplicationErrors = {\n  code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';\n  description?: string;\n  data?: Record<string, any>;\n};\n\n/**\n * Returns the caller's default wishlist. Empty representation if none exists.\n * @internal\n * @documentationMaturity preview\n * @permissionId ecom:v1:wishlist:get_default_wishlist\n * @fqn wix.ecom.wishlist.v1.Wishlists.GetDefaultWishlist\n */\nexport async function getDefaultWishlist(): Promise<\n  NonNullablePaths<\n    GetDefaultWishlistResponse,\n    | `wishlist.memberId`\n    | `wishlist.items`\n    | `wishlist.items.${number}.catalogReference.catalogItemId`\n    | `wishlist.items.${number}.catalogReference.appId`\n    | `wishlist.tags.privateTags.tagIds`,\n    6\n  >\n> {\n  // @ts-ignore\n  const { httpClient, sideEffects } = arguments[0] as {\n    httpClient: HttpClient;\n    sideEffects?: any;\n  };\n\n  const payload = renameKeysFromSDKRequestToRESTRequest({});\n\n  const reqOpts = ambassadorWixEcomV1Wishlist.getDefaultWishlist(payload);\n\n  sideEffects?.onSiteCall?.();\n  try {\n    const result = await httpClient.request(reqOpts);\n    sideEffects?.onSuccess?.(result);\n\n    return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n  } catch (err: any) {\n    const transformedError = sdkTransformError(\n      err,\n      {\n        spreadPathsToArguments: {},\n        explicitPathsToArguments: {},\n        singleArgumentUnchanged: false,\n      },\n      []\n    );\n    sideEffects?.onError?.(err);\n\n    throw transformedError;\n  }\n}\n\n/**\n * Adds items to the caller's wishlist (auto-created on first use). Duplicates are skipped;\n * exceeding the 100-item cap returns WISHLIST_ITEMS_LIMIT_EXCEEDED.\n * @param catalogReference - Item to add. Already present items (full three-field equality) are silently skipped.\n * @internal\n * @documentationMaturity preview\n * @requiredField catalogReference\n * @requiredField catalogReference.appId\n * @requiredField catalogReference.catalogItemId\n * @permissionId ecom:v1:wishlist:add_item\n * @fqn wix.ecom.wishlist.v1.Wishlists.AddItem\n */\nexport async function addItem(\n  catalogReference: NonNullablePaths<\n    CatalogReference,\n    `appId` | `catalogItemId`,\n    2\n  >,\n  options?: AddItemOptions\n): Promise<\n  NonNullablePaths<\n    AddItemResponse,\n    | `wishlist.memberId`\n    | `wishlist.items`\n    | `wishlist.items.${number}.catalogReference.catalogItemId`\n    | `wishlist.items.${number}.catalogReference.appId`\n    | `wishlist.tags.privateTags.tagIds`,\n    6\n  > & {\n    __applicationErrorsType?: AddItemApplicationErrors;\n  }\n> {\n  // @ts-ignore\n  const { httpClient, sideEffects } = arguments[2] as {\n    httpClient: HttpClient;\n    sideEffects?: any;\n  };\n\n  const payload = renameKeysFromSDKRequestToRESTRequest({\n    catalogReference: catalogReference,\n    returnEntity: options?.returnEntity,\n  });\n\n  const reqOpts = ambassadorWixEcomV1Wishlist.addItem(payload);\n\n  sideEffects?.onSiteCall?.();\n  try {\n    const result = await httpClient.request(reqOpts);\n    sideEffects?.onSuccess?.(result);\n\n    return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n  } catch (err: any) {\n    const transformedError = sdkTransformError(\n      err,\n      {\n        spreadPathsToArguments: {},\n        explicitPathsToArguments: {\n          catalogReference: '$[0]',\n          returnEntity: '$[1].returnEntity',\n        },\n        singleArgumentUnchanged: false,\n      },\n      ['catalogReference', 'options']\n    );\n    sideEffects?.onError?.(err);\n\n    throw transformedError;\n  }\n}\n\nexport interface AddItemOptions {\n  /** Whether to return the updated wishlist in the response. */\n  returnEntity?: boolean;\n}\n\n/**\n * Removes an item from the caller's wishlist. Absent item / no wishlist is a silent no-op.\n * @param catalogReference - Item to remove. Absent items are silently skipped.\n * @internal\n * @documentationMaturity preview\n * @requiredField catalogReference\n * @requiredField catalogReference.appId\n * @requiredField catalogReference.catalogItemId\n * @permissionId ecom:v1:wishlist:remove_item\n * @fqn wix.ecom.wishlist.v1.Wishlists.RemoveItem\n */\nexport async function removeItem(\n  catalogReference: NonNullablePaths<\n    CatalogReference,\n    `appId` | `catalogItemId`,\n    2\n  >,\n  options?: RemoveItemOptions\n): Promise<\n  NonNullablePaths<\n    RemoveItemResponse,\n    | `wishlist.memberId`\n    | `wishlist.items`\n    | `wishlist.items.${number}.catalogReference.catalogItemId`\n    | `wishlist.items.${number}.catalogReference.appId`\n    | `wishlist.tags.privateTags.tagIds`,\n    6\n  >\n> {\n  // @ts-ignore\n  const { httpClient, sideEffects } = arguments[2] as {\n    httpClient: HttpClient;\n    sideEffects?: any;\n  };\n\n  const payload = renameKeysFromSDKRequestToRESTRequest({\n    catalogReference: catalogReference,\n    returnEntity: options?.returnEntity,\n  });\n\n  const reqOpts = ambassadorWixEcomV1Wishlist.removeItem(payload);\n\n  sideEffects?.onSiteCall?.();\n  try {\n    const result = await httpClient.request(reqOpts);\n    sideEffects?.onSuccess?.(result);\n\n    return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n  } catch (err: any) {\n    const transformedError = sdkTransformError(\n      err,\n      {\n        spreadPathsToArguments: {},\n        explicitPathsToArguments: {\n          catalogReference: '$[0]',\n          returnEntity: '$[1].returnEntity',\n        },\n        singleArgumentUnchanged: false,\n      },\n      ['catalogReference', 'options']\n    );\n    sideEffects?.onError?.(err);\n\n    throw transformedError;\n  }\n}\n\nexport interface RemoveItemOptions {\n  /** Whether to return the updated wishlist in the response. */\n  returnEntity?: boolean;\n}\n\n/**\n * Synchronously assigns/unassigns tags on wishlists by ID.\n * @param wishlistIds - Wishlist IDs to update (1–100).\n * @internal\n * @documentationMaturity preview\n * @requiredField wishlistIds\n * @permissionId ecom:v1:wishlist:bulk_update_wishlist_tags\n * @fqn wix.ecom.wishlist.v1.Wishlists.BulkUpdateWishlistTags\n */\nexport async function bulkUpdateWishlistTags(\n  wishlistIds: string[],\n  options?: BulkUpdateWishlistTagsOptions\n): Promise<\n  NonNullablePaths<\n    BulkUpdateWishlistTagsResponse,\n    | `results`\n    | `results.${number}.itemMetadata.originalIndex`\n    | `results.${number}.itemMetadata.success`\n    | `results.${number}.itemMetadata.error.code`\n    | `results.${number}.itemMetadata.error.description`\n    | `bulkActionMetadata.totalSuccesses`\n    | `bulkActionMetadata.totalFailures`\n    | `bulkActionMetadata.undetailedFailures`,\n    6\n  > & {\n    __applicationErrorsType?: BulkUpdateWishlistTagsApplicationErrors;\n  }\n> {\n  // @ts-ignore\n  const { httpClient, sideEffects } = arguments[2] as {\n    httpClient: HttpClient;\n    sideEffects?: any;\n  };\n\n  const payload = renameKeysFromSDKRequestToRESTRequest({\n    wishlistIds: wishlistIds,\n    assignTags: options?.assignTags,\n    unassignTags: options?.unassignTags,\n  });\n\n  const reqOpts = ambassadorWixEcomV1Wishlist.bulkUpdateWishlistTags(payload);\n\n  sideEffects?.onSiteCall?.();\n  try {\n    const result = await httpClient.request(reqOpts);\n    sideEffects?.onSuccess?.(result);\n\n    return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n  } catch (err: any) {\n    const transformedError = sdkTransformError(\n      err,\n      {\n        spreadPathsToArguments: {},\n        explicitPathsToArguments: {\n          wishlistIds: '$[0]',\n          assignTags: '$[1].assignTags',\n          unassignTags: '$[1].unassignTags',\n        },\n        singleArgumentUnchanged: false,\n      },\n      ['wishlistIds', 'options']\n    );\n    sideEffects?.onError?.(err);\n\n    throw transformedError;\n  }\n}\n\nexport interface BulkUpdateWishlistTagsOptions {\n  /** Tags to assign. A tag present in both lists is assigned. */\n  assignTags?: Tags;\n  /** Tags to unassign. */\n  unassignTags?: Tags;\n}\n\n/**\n * Asynchronously assigns/unassigns tags on wishlists matching a filter\n * (empty filter = all wishlists belonging to the site_member_id). Returns a job_id.\n * @param filter - WQL filter selecting wishlists (empty = all belonging to the site_member_id).\n * @internal\n * @documentationMaturity preview\n * @requiredField filter\n * @permissionId ecom:v1:wishlist:bulk_update_wishlist_tags_by_filter\n * @fqn wix.ecom.wishlist.v1.Wishlists.BulkUpdateWishlistTagsByFilter\n */\nexport async function bulkUpdateWishlistTagsByFilter(\n  filter: Record<string, any>,\n  options?: BulkUpdateWishlistTagsByFilterOptions\n): Promise<\n  NonNullablePaths<BulkUpdateWishlistTagsByFilterResponse, `jobId`, 2> & {\n    __applicationErrorsType?: BulkUpdateWishlistTagsByFilterApplicationErrors;\n  }\n> {\n  // @ts-ignore\n  const { httpClient, sideEffects } = arguments[2] as {\n    httpClient: HttpClient;\n    sideEffects?: any;\n  };\n\n  const payload = renameKeysFromSDKRequestToRESTRequest({\n    filter: filter,\n    assignTags: options?.assignTags,\n    unassignTags: options?.unassignTags,\n  });\n\n  const reqOpts =\n    ambassadorWixEcomV1Wishlist.bulkUpdateWishlistTagsByFilter(payload);\n\n  sideEffects?.onSiteCall?.();\n  try {\n    const result = await httpClient.request(reqOpts);\n    sideEffects?.onSuccess?.(result);\n\n    return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n  } catch (err: any) {\n    const transformedError = sdkTransformError(\n      err,\n      {\n        spreadPathsToArguments: {},\n        explicitPathsToArguments: {\n          filter: '$[0]',\n          assignTags: '$[1].assignTags',\n          unassignTags: '$[1].unassignTags',\n        },\n        singleArgumentUnchanged: false,\n      },\n      ['filter', 'options']\n    );\n    sideEffects?.onError?.(err);\n\n    throw transformedError;\n  }\n}\n\nexport interface BulkUpdateWishlistTagsByFilterOptions {\n  /** Tags to assign. A tag present in both lists is assigned. */\n  assignTags?: Tags;\n  /** Tags to unassign. */\n  unassignTags?: Tags;\n}\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveWixEcomWishlistV1WishlistsUrl(\n  opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n  const domainToMappings = {\n    _: [\n      {\n        srcPath: '/_api/wishlist',\n        destPath: '',\n      },\n    ],\n    'editor._base_domain_': [\n      {\n        srcPath: '/_api/wishlist',\n        destPath: '',\n      },\n    ],\n    'blocks._base_domain_': [\n      {\n        srcPath: '/_api/wishlist',\n        destPath: '',\n      },\n    ],\n    'create.editorx': [\n      {\n        srcPath: '/_api/wishlist',\n        destPath: '',\n      },\n    ],\n    'www.wixapis.com': [\n      {\n        srcPath: '/ecom/v1/wishlists',\n        destPath: '/v1/wishlists',\n      },\n    ],\n  };\n\n  return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_ecom_wishlists';\n\n/** Returns the caller's default wishlist. Empty representation if none exists. */\nexport function getDefaultWishlist(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __getDefaultWishlist({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.ecom.v1.wishlist',\n      method: 'GET' as any,\n      methodFqn: 'wix.ecom.wishlist.v1.Wishlists.GetDefaultWishlist',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixEcomWishlistV1WishlistsUrl({\n        protoPath: '/v1/wishlists/get-default',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload),\n      transformResponse: (payload: any) =>\n        transformPaths(payload, [\n          {\n            transformFn: transformRESTTimestampToSDKTimestamp,\n            paths: [\n              { path: 'wishlist.createdDate' },\n              { path: 'wishlist.updatedDate' },\n              { path: 'wishlist.items.addedDate' },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __getDefaultWishlist;\n}\n\n/**\n * Adds items to the caller's wishlist (auto-created on first use). Duplicates are skipped;\n * exceeding the 100-item cap returns WISHLIST_ITEMS_LIMIT_EXCEEDED.\n */\nexport function addItem(payload: object): RequestOptionsFactory<any> {\n  function __addItem({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.ecom.v1.wishlist',\n      method: 'POST' as any,\n      methodFqn: 'wix.ecom.wishlist.v1.Wishlists.AddItem',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixEcomWishlistV1WishlistsUrl({\n        protoPath: '/v1/wishlists/add-item',\n        data: payload,\n        host,\n      }),\n      data: payload,\n      transformResponse: (payload: any) =>\n        transformPaths(payload, [\n          {\n            transformFn: transformRESTTimestampToSDKTimestamp,\n            paths: [\n              { path: 'wishlist.createdDate' },\n              { path: 'wishlist.updatedDate' },\n              { path: 'wishlist.items.addedDate' },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __addItem;\n}\n\n/** Removes an item from the caller's wishlist. Absent item / no wishlist is a silent no-op. */\nexport function removeItem(payload: object): RequestOptionsFactory<any> {\n  function __removeItem({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.ecom.v1.wishlist',\n      method: 'POST' as any,\n      methodFqn: 'wix.ecom.wishlist.v1.Wishlists.RemoveItem',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixEcomWishlistV1WishlistsUrl({\n        protoPath: '/v1/wishlists/remove-item',\n        data: payload,\n        host,\n      }),\n      data: payload,\n      transformResponse: (payload: any) =>\n        transformPaths(payload, [\n          {\n            transformFn: transformRESTTimestampToSDKTimestamp,\n            paths: [\n              { path: 'wishlist.createdDate' },\n              { path: 'wishlist.updatedDate' },\n              { path: 'wishlist.items.addedDate' },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __removeItem;\n}\n\n/** Synchronously assigns/unassigns tags on wishlists by ID. */\nexport function bulkUpdateWishlistTags(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __bulkUpdateWishlistTags({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.ecom.v1.wishlist',\n      method: 'POST' as any,\n      methodFqn: 'wix.ecom.wishlist.v1.Wishlists.BulkUpdateWishlistTags',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixEcomWishlistV1WishlistsUrl({\n        protoPath: '/v1/bulk/wishlists/update-tags',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __bulkUpdateWishlistTags;\n}\n\n/**\n * Asynchronously assigns/unassigns tags on wishlists matching a filter\n * (empty filter = all wishlists belonging to the site_member_id). Returns a job_id.\n */\nexport function bulkUpdateWishlistTagsByFilter(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __bulkUpdateWishlistTagsByFilter({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.ecom.v1.wishlist',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.ecom.wishlist.v1.Wishlists.BulkUpdateWishlistTagsByFilter',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixEcomWishlistV1WishlistsUrl({\n        protoPath: '/v1/bulk/wishlists/update-tags-by-filter',\n        data: payload,\n        host,\n      }),\n      data: payload,\n    };\n\n    return metadata;\n  }\n\n  return __bulkUpdateWishlistTagsByFilter;\n}\n","import { HttpClient, NonNullablePaths } from '@wix/sdk-types';\nimport {\n  AddItemApplicationErrors,\n  AddItemOptions,\n  AddItemResponse,\n  BulkUpdateWishlistTagsApplicationErrors,\n  BulkUpdateWishlistTagsByFilterApplicationErrors,\n  BulkUpdateWishlistTagsByFilterOptions,\n  BulkUpdateWishlistTagsByFilterResponse,\n  BulkUpdateWishlistTagsOptions,\n  BulkUpdateWishlistTagsResponse,\n  CatalogReference,\n  GetDefaultWishlistResponse,\n  RemoveItemOptions,\n  RemoveItemResponse,\n  addItem as universalAddItem,\n  bulkUpdateWishlistTags as universalBulkUpdateWishlistTags,\n  bulkUpdateWishlistTagsByFilter as universalBulkUpdateWishlistTagsByFilter,\n  getDefaultWishlist as universalGetDefaultWishlist,\n  removeItem as universalRemoveItem,\n} from './ecom-v1-wishlist-wishlists.universal.js';\n\nexport const __metadata = { PACKAGE_NAME: '@wix/ecom' };\n\n/** @internal */\nexport function getDefaultWishlist(\n  httpClient: HttpClient\n): GetDefaultWishlistSignature {\n  return () =>\n    universalGetDefaultWishlist(\n      // @ts-ignore\n      { httpClient }\n    );\n}\n\ninterface GetDefaultWishlistSignature {\n  /**\n   * Returns the caller's default wishlist. Empty representation if none exists.\n   */\n  (): Promise<\n    NonNullablePaths<\n      GetDefaultWishlistResponse,\n      | `wishlist.memberId`\n      | `wishlist.items`\n      | `wishlist.items.${number}.catalogReference.catalogItemId`\n      | `wishlist.items.${number}.catalogReference.appId`\n      | `wishlist.tags.privateTags.tagIds`,\n      6\n    >\n  >;\n}\n\n/** @internal */\nexport function addItem(httpClient: HttpClient): AddItemSignature {\n  return (\n    catalogReference: NonNullablePaths<\n      CatalogReference,\n      `appId` | `catalogItemId`,\n      2\n    >,\n    options?: AddItemOptions\n  ) =>\n    universalAddItem(\n      catalogReference,\n      options,\n      // @ts-ignore\n      { httpClient }\n    );\n}\n\ninterface AddItemSignature {\n  /**\n   * Adds items to the caller's wishlist (auto-created on first use). Duplicates are skipped;\n   * exceeding the 100-item cap returns WISHLIST_ITEMS_LIMIT_EXCEEDED.\n   * @param - Item to add. Already present items (full three-field equality) are silently skipped.\n   */\n  (\n    catalogReference: NonNullablePaths<\n      CatalogReference,\n      `appId` | `catalogItemId`,\n      2\n    >,\n    options?: AddItemOptions\n  ): Promise<\n    NonNullablePaths<\n      AddItemResponse,\n      | `wishlist.memberId`\n      | `wishlist.items`\n      | `wishlist.items.${number}.catalogReference.catalogItemId`\n      | `wishlist.items.${number}.catalogReference.appId`\n      | `wishlist.tags.privateTags.tagIds`,\n      6\n    > & {\n      __applicationErrorsType?: AddItemApplicationErrors;\n    }\n  >;\n}\n\n/** @internal */\nexport function removeItem(httpClient: HttpClient): RemoveItemSignature {\n  return (\n    catalogReference: NonNullablePaths<\n      CatalogReference,\n      `appId` | `catalogItemId`,\n      2\n    >,\n    options?: RemoveItemOptions\n  ) =>\n    universalRemoveItem(\n      catalogReference,\n      options,\n      // @ts-ignore\n      { httpClient }\n    );\n}\n\ninterface RemoveItemSignature {\n  /**\n   * Removes an item from the caller's wishlist. Absent item / no wishlist is a silent no-op.\n   * @param - Item to remove. Absent items are silently skipped.\n   */\n  (\n    catalogReference: NonNullablePaths<\n      CatalogReference,\n      `appId` | `catalogItemId`,\n      2\n    >,\n    options?: RemoveItemOptions\n  ): Promise<\n    NonNullablePaths<\n      RemoveItemResponse,\n      | `wishlist.memberId`\n      | `wishlist.items`\n      | `wishlist.items.${number}.catalogReference.catalogItemId`\n      | `wishlist.items.${number}.catalogReference.appId`\n      | `wishlist.tags.privateTags.tagIds`,\n      6\n    >\n  >;\n}\n\n/** @internal */\nexport function bulkUpdateWishlistTags(\n  httpClient: HttpClient\n): BulkUpdateWishlistTagsSignature {\n  return (wishlistIds: string[], options?: BulkUpdateWishlistTagsOptions) =>\n    universalBulkUpdateWishlistTags(\n      wishlistIds,\n      options,\n      // @ts-ignore\n      { httpClient }\n    );\n}\n\ninterface BulkUpdateWishlistTagsSignature {\n  /**\n   * Synchronously assigns/unassigns tags on wishlists by ID.\n   * @param - Wishlist IDs to update (1–100).\n   */\n  (wishlistIds: string[], options?: BulkUpdateWishlistTagsOptions): Promise<\n    NonNullablePaths<\n      BulkUpdateWishlistTagsResponse,\n      | `results`\n      | `results.${number}.itemMetadata.originalIndex`\n      | `results.${number}.itemMetadata.success`\n      | `results.${number}.itemMetadata.error.code`\n      | `results.${number}.itemMetadata.error.description`\n      | `bulkActionMetadata.totalSuccesses`\n      | `bulkActionMetadata.totalFailures`\n      | `bulkActionMetadata.undetailedFailures`,\n      6\n    > & {\n      __applicationErrorsType?: BulkUpdateWishlistTagsApplicationErrors;\n    }\n  >;\n}\n\n/** @internal */\nexport function bulkUpdateWishlistTagsByFilter(\n  httpClient: HttpClient\n): BulkUpdateWishlistTagsByFilterSignature {\n  return (\n    filter: Record<string, any>,\n    options?: BulkUpdateWishlistTagsByFilterOptions\n  ) =>\n    universalBulkUpdateWishlistTagsByFilter(\n      filter,\n      options,\n      // @ts-ignore\n      { httpClient }\n    );\n}\n\ninterface BulkUpdateWishlistTagsByFilterSignature {\n  /**\n   * Asynchronously assigns/unassigns tags on wishlists matching a filter\n   * (empty filter = all wishlists belonging to the site_member_id). Returns a job_id.\n   * @param - WQL filter selecting wishlists (empty = all belonging to the site_member_id).\n   */\n  (\n    filter: Record<string, any>,\n    options?: BulkUpdateWishlistTagsByFilterOptions\n  ): Promise<\n    NonNullablePaths<BulkUpdateWishlistTagsByFilterResponse, `jobId`, 2> & {\n      __applicationErrorsType?: BulkUpdateWishlistTagsByFilterApplicationErrors;\n    }\n  >;\n}\n\nexport {\n  AccountInfo,\n  ActionEvent,\n  AddItemOptions,\n  AddItemRequest,\n  AddItemResponse,\n  ApplicationError,\n  BulkActionMetadata,\n  BulkUpdateWishlistTagsByFilterOptions,\n  BulkUpdateWishlistTagsByFilterRequest,\n  BulkUpdateWishlistTagsByFilterResponse,\n  BulkUpdateWishlistTagsOptions,\n  BulkUpdateWishlistTagsRequest,\n  BulkUpdateWishlistTagsResponse,\n  BulkUpdateWishlistTagsResult,\n  CatalogReference,\n  DomainEvent,\n  DomainEventBodyOneOf,\n  EntityCreatedEvent,\n  EntityDeletedEvent,\n  EntityUpdatedEvent,\n  ExtendedFields,\n  GetDefaultWishlistRequest,\n  GetDefaultWishlistResponse,\n  IdentificationData,\n  IdentificationDataIdOneOf,\n  ItemMetadata,\n  MessageEnvelope,\n  RemoveItemOptions,\n  RemoveItemRequest,\n  RemoveItemResponse,\n  RestoreInfo,\n  TagList,\n  Tags,\n  WebhookIdentityType,\n  Wishlist,\n  WishlistItem,\n  WishlistItemAdded,\n  WishlistItemRemoved,\n  WishlistTagsModified,\n} from './ecom-v1-wishlist-wishlists.universal.js';\n","import {\n  getDefaultWishlist as publicGetDefaultWishlist,\n  addItem as publicAddItem,\n  removeItem as publicRemoveItem,\n  bulkUpdateWishlistTags as publicBulkUpdateWishlistTags,\n  bulkUpdateWishlistTagsByFilter as publicBulkUpdateWishlistTagsByFilter,\n} from './ecom-v1-wishlist-wishlists.public.js';\nimport { createRESTModule } from '@wix/sdk-runtime/rest-modules';\nimport { BuildRESTFunction, MaybeContext } from '@wix/sdk-types';\n\n/** @internal */\nexport const getDefaultWishlist: MaybeContext<\n  BuildRESTFunction<typeof publicGetDefaultWishlist> &\n    typeof publicGetDefaultWishlist\n> = /*#__PURE__*/ createRESTModule(publicGetDefaultWishlist);\n/** @internal */\nexport const addItem: MaybeContext<\n  BuildRESTFunction<typeof publicAddItem> & typeof publicAddItem\n> = /*#__PURE__*/ createRESTModule(publicAddItem);\n/** @internal */\nexport const removeItem: MaybeContext<\n  BuildRESTFunction<typeof publicRemoveItem> & typeof publicRemoveItem\n> = /*#__PURE__*/ createRESTModule(publicRemoveItem);\n/** @internal */\nexport const bulkUpdateWishlistTags: MaybeContext<\n  BuildRESTFunction<typeof publicBulkUpdateWishlistTags> &\n    typeof publicBulkUpdateWishlistTags\n> = /*#__PURE__*/ createRESTModule(publicBulkUpdateWishlistTags);\n/** @internal */\nexport const bulkUpdateWishlistTagsByFilter: MaybeContext<\n  BuildRESTFunction<typeof publicBulkUpdateWishlistTagsByFilter> &\n    typeof publicBulkUpdateWishlistTagsByFilter\n> = /*#__PURE__*/ createRESTModule(publicBulkUpdateWishlistTagsByFilter);\n\nexport { WebhookIdentityType } from './ecom-v1-wishlist-wishlists.universal.js';\nexport {\n  Wishlist,\n  WishlistItem,\n  CatalogReference,\n  ExtendedFields,\n  Tags,\n  TagList,\n  WishlistItemAdded,\n  WishlistItemRemoved,\n  WishlistTagsModified,\n  GetDefaultWishlistRequest,\n  GetDefaultWishlistResponse,\n  AddItemRequest,\n  AddItemResponse,\n  RemoveItemRequest,\n  RemoveItemResponse,\n  BulkUpdateWishlistTagsRequest,\n  BulkUpdateWishlistTagsResponse,\n  ItemMetadata,\n  ApplicationError,\n  BulkUpdateWishlistTagsResult,\n  BulkActionMetadata,\n  BulkUpdateWishlistTagsByFilterRequest,\n  BulkUpdateWishlistTagsByFilterResponse,\n  DomainEvent,\n  DomainEventBodyOneOf,\n  EntityCreatedEvent,\n  RestoreInfo,\n  EntityUpdatedEvent,\n  EntityDeletedEvent,\n  ActionEvent,\n  MessageEnvelope,\n  IdentificationData,\n  IdentificationDataIdOneOf,\n  AccountInfo,\n  AddItemOptions,\n  RemoveItemOptions,\n  BulkUpdateWishlistTagsOptions,\n  BulkUpdateWishlistTagsByFilterOptions,\n} from './ecom-v1-wishlist-wishlists.universal.js';\nexport {\n  WebhookIdentityTypeWithLiterals,\n  AddItemApplicationErrors,\n  BulkUpdateWishlistTagsApplicationErrors,\n  BulkUpdateWishlistTagsByFilterApplicationErrors,\n} from './ecom-v1-wishlist-wishlists.universal.js';\n"],"mappings":"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","names":["payload","WebhookIdentityType","getDefaultWishlist","addItem","removeItem","bulkUpdateWishlistTags","bulkUpdateWishlistTagsByFilter","getDefaultWishlist","addItem","removeItem","bulkUpdateWishlistTags","bulkUpdateWishlistTagsByFilter","getDefaultWishlist","addItem","removeItem","bulkUpdateWishlistTags","bulkUpdateWishlistTagsByFilter"]}