@wix/auto_sdk_stores_catalog-imports-v-3 1.0.2 → 1.0.4
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.
- package/build/cjs/index.d.ts +36 -3196
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +3261 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +188 -2
- package/build/cjs/meta.js +454 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +36 -3196
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +3261 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +188 -2
- package/build/es/meta.mjs +406 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +0 -6
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +3 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +186 -1
- package/build/internal/cjs/meta.js +454 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +0 -6
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +3 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +186 -1
- package/build/internal/es/meta.mjs +406 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -3225,7 +3225,7 @@ type SubmitCatalogImportApplicationErrors = {
|
|
|
3225
3225
|
*
|
|
3226
3226
|
* Returns `catalogImport.id` that can be used in subsequent AddProductsToImport and SubmitCatalogImport calls.
|
|
3227
3227
|
* @param catalogImport - CatalogImport to be created.
|
|
3228
|
-
* @
|
|
3228
|
+
* @public
|
|
3229
3229
|
* @documentationMaturity preview
|
|
3230
3230
|
* @requiredField catalogImport
|
|
3231
3231
|
* @permissionId stores:catalog:v3:catalog_import:create_catalog_import
|
|
@@ -3246,7 +3246,7 @@ declare function createCatalogImport(catalogImport: CatalogImport): Promise<Cata
|
|
|
3246
3246
|
* > + Pass `category_ids` to update categories assignments, overwrites existing assignments
|
|
3247
3247
|
* @param catalogImportId - Catalog Import ID.
|
|
3248
3248
|
* @param products - List of product items to add to the import session.
|
|
3249
|
-
* @
|
|
3249
|
+
* @public
|
|
3250
3250
|
* @documentationMaturity preview
|
|
3251
3251
|
* @requiredField catalogImportId
|
|
3252
3252
|
* @requiredField products
|
|
@@ -3260,7 +3260,7 @@ declare function addProductsToImport(catalogImportId: string, products: NonNulla
|
|
|
3260
3260
|
* Submits all products in the catalog import for processing.
|
|
3261
3261
|
* Once called, no more items can be added to this import session.
|
|
3262
3262
|
* @param catalogImportId - Catalog Import ID.
|
|
3263
|
-
* @
|
|
3263
|
+
* @public
|
|
3264
3264
|
* @documentationMaturity preview
|
|
3265
3265
|
* @requiredField catalogImportId
|
|
3266
3266
|
* @permissionId stores:catalog:v3:catalog_import:submit_catalog_import
|