@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
@@ -942,10 +942,11 @@ interface HTMLDataDataOneOf {
942
942
  }
943
943
  declare enum Source {
944
944
  HTML = "HTML",
945
- ADSENSE = "ADSENSE"
945
+ ADSENSE = "ADSENSE",
946
+ AI = "AI"
946
947
  }
947
948
  /** @enumType */
948
- type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
949
+ type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
949
950
  interface ImageData {
950
951
  /** Styling for the image's container. */
951
952
  containerData?: PluginContainerData;
@@ -3237,12 +3238,13 @@ declare function createCatalogImport(catalogImport: CatalogImport): Promise<Cata
3237
3238
  * @documentationMaturity preview
3238
3239
  * @requiredField catalogImportId
3239
3240
  * @requiredField products
3241
+ * @requiredField products.product
3240
3242
  * @requiredField products.product.handle
3241
3243
  * @permissionId stores:catalog:v3:catalog_import:add_products_to_import
3242
3244
  * @applicableIdentity APP
3243
3245
  * @fqn wix.stores.catalog.catalog_import.v3.CatalogImports.AddProductsToImport
3244
3246
  */
3245
- 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>>;
3247
+ 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>>;
3246
3248
  /**
3247
3249
  * Submits all products in the catalog import for processing.
3248
3250
  * 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) => {