@wix/auto_sdk_stores_catalog-imports-v-3 1.0.0 → 1.0.1
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 +42 -1
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -1
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +41 -0
- package/build/es/index.d.mts +42 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -1
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +41 -0
- package/build/internal/cjs/index.d.ts +4 -4
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +43 -2
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +41 -0
- package/build/internal/es/index.d.mts +4 -4
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +43 -2
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +41 -0
- package/package.json +2 -2
|
@@ -3021,6 +3021,47 @@ interface ProductCategoryIdsInfo {
|
|
|
3021
3021
|
categoryIds?: string[];
|
|
3022
3022
|
}
|
|
3023
3023
|
interface AddProductsToImportResponse {
|
|
3024
|
+
/**
|
|
3025
|
+
* Action results.
|
|
3026
|
+
* @minSize 1
|
|
3027
|
+
* @maxSize 100
|
|
3028
|
+
*/
|
|
3029
|
+
results?: AddProductResult[];
|
|
3030
|
+
/** Bulk action metadata. */
|
|
3031
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
3032
|
+
}
|
|
3033
|
+
interface AddProductResult {
|
|
3034
|
+
/** Item metadata. */
|
|
3035
|
+
itemMetadata?: ItemMetadata;
|
|
3036
|
+
}
|
|
3037
|
+
interface ItemMetadata {
|
|
3038
|
+
/**
|
|
3039
|
+
* The product `handle` as passed in the `AddProductsToImport` request.
|
|
3040
|
+
* @format GUID
|
|
3041
|
+
*/
|
|
3042
|
+
id?: string | null;
|
|
3043
|
+
/** Index of the item within the request array. Allows for correlation between request and response items. */
|
|
3044
|
+
originalIndex?: number;
|
|
3045
|
+
/** Whether the requested action for this item was successful. When `false`, the `error` field is returned. */
|
|
3046
|
+
success?: boolean;
|
|
3047
|
+
/** Details about the error in case of failure. */
|
|
3048
|
+
error?: ApplicationError;
|
|
3049
|
+
}
|
|
3050
|
+
interface ApplicationError {
|
|
3051
|
+
/** Error code. */
|
|
3052
|
+
code?: string;
|
|
3053
|
+
/** Description of the error. */
|
|
3054
|
+
description?: string;
|
|
3055
|
+
/** Data related to the error. */
|
|
3056
|
+
data?: Record<string, any> | null;
|
|
3057
|
+
}
|
|
3058
|
+
interface BulkActionMetadata {
|
|
3059
|
+
/** Number of items that were successfully processed. */
|
|
3060
|
+
totalSuccesses?: number;
|
|
3061
|
+
/** Number of items that couldn't be processed. */
|
|
3062
|
+
totalFailures?: number;
|
|
3063
|
+
/** Number of failures without details because detailed failure threshold was exceeded. */
|
|
3064
|
+
undetailedFailures?: number;
|
|
3024
3065
|
}
|
|
3025
3066
|
interface SubmitCatalogImportRequest {
|
|
3026
3067
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_stores_catalog-imports-v-3",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": "wix.stores.catalog.v3.catalog_import"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "785c0b5d44fb34098f3b6e88cccefc5863a2951929e1eafcbbb1a2f3"
|
|
54
54
|
}
|