@wix/auto_sdk_stores_catalog-imports-v-3 1.0.5 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +1 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +5 -3
  5. package/build/cjs/index.typings.js +1 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +3 -2
  8. package/build/cjs/meta.js +1 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +1 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +5 -3
  14. package/build/es/index.typings.mjs +1 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +3 -2
  17. package/build/es/meta.mjs +1 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +1 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +5 -3
  23. package/build/internal/cjs/index.typings.js +1 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +3 -2
  26. package/build/internal/cjs/meta.js +1 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +1 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +5 -3
  32. package/build/internal/es/index.typings.mjs +1 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +3 -2
  35. package/build/internal/es/meta.mjs +1 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -954,10 +954,11 @@ interface HTMLDataDataOneOf {
954
954
  }
955
955
  declare enum Source {
956
956
  HTML = "HTML",
957
- ADSENSE = "ADSENSE"
957
+ ADSENSE = "ADSENSE",
958
+ AI = "AI"
958
959
  }
959
960
  /** @enumType */
960
- type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
961
+ type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
961
962
  interface ImageData {
962
963
  /** Styling for the image's container. */
963
964
  containerData?: PluginContainerData;
@@ -3256,12 +3257,13 @@ declare function createCatalogImport(catalogImport: CatalogImport): Promise<Cata
3256
3257
  * @documentationMaturity preview
3257
3258
  * @requiredField catalogImportId
3258
3259
  * @requiredField products
3260
+ * @requiredField products.product
3259
3261
  * @requiredField products.product.handle
3260
3262
  * @permissionId stores:catalog:v3:catalog_import:add_products_to_import
3261
3263
  * @applicableIdentity APP
3262
3264
  * @fqn wix.stores.catalog.catalog_import.v3.CatalogImports.AddProductsToImport
3263
3265
  */
3264
- declare function addProductsToImport(catalogImportId: string, products: NonNullablePaths<ProductItem, `product.handle`, 3>[]): Promise<NonNullablePaths<AddProductsToImportResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
3266
+ declare function addProductsToImport(catalogImportId: string, products: NonNullablePaths<ProductItem, `product` | `product.handle`, 3>[]): Promise<NonNullablePaths<AddProductsToImportResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
3265
3267
  /**
3266
3268
  * Submits all products in the catalog import for processing.
3267
3269
  * Once called, no more items can be added to this import session.
@@ -432,6 +432,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
432
432
  var Source = /* @__PURE__ */ ((Source2) => {
433
433
  Source2["HTML"] = "HTML";
434
434
  Source2["ADSENSE"] = "ADSENSE";
435
+ Source2["AI"] = "AI";
435
436
  return Source2;
436
437
  })(Source || {});
437
438
  var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {