@wix/stores 1.0.129 → 1.0.130
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/src/stores-catalog-v1-product.universal.d.ts +84 -0
- package/build/cjs/src/stores-catalog-v1-product.universal.js +84 -0
- package/build/cjs/src/stores-catalog-v1-product.universal.js.map +1 -1
- package/build/cjs/src/stores-v1-subscription-option.universal.d.ts +32 -0
- package/build/cjs/src/stores-v1-subscription-option.universal.js +32 -0
- package/build/cjs/src/stores-v1-subscription-option.universal.js.map +1 -1
- package/build/cjs/src/stores-v2-inventory.universal.d.ts +14 -0
- package/build/cjs/src/stores-v2-inventory.universal.js +14 -0
- package/build/cjs/src/stores-v2-inventory.universal.js.map +1 -1
- package/build/es/src/stores-catalog-v1-product.universal.d.ts +84 -0
- package/build/es/src/stores-catalog-v1-product.universal.js +84 -0
- package/build/es/src/stores-catalog-v1-product.universal.js.map +1 -1
- package/build/es/src/stores-v1-subscription-option.universal.d.ts +32 -0
- package/build/es/src/stores-v1-subscription-option.universal.js +32 -0
- package/build/es/src/stores-v1-subscription-option.universal.js.map +1 -1
- package/build/es/src/stores-v2-inventory.universal.d.ts +14 -0
- package/build/es/src/stores-v2-inventory.universal.js +14 -0
- package/build/es/src/stores-v2-inventory.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -313,9 +313,13 @@ export interface QueryInventoryResponseNonNullableFields {
|
|
|
313
313
|
* @public
|
|
314
314
|
* @requiredField inventoryId
|
|
315
315
|
* @permissionScope Manage Stores - all permissions
|
|
316
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
316
317
|
* @permissionScope Manage Products
|
|
318
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
317
319
|
* @permissionScope Read Stores - all read permissions
|
|
320
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
318
321
|
* @permissionScope Read Products
|
|
322
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-PRODUCTS
|
|
319
323
|
* @applicableIdentity APP
|
|
320
324
|
*/
|
|
321
325
|
export declare function getInventoryVariants(inventoryId: string, options?: GetInventoryVariantsOptions): Promise<GetInventoryVariantsResponse & GetInventoryVariantsResponseNonNullableFields>;
|
|
@@ -334,9 +338,13 @@ export interface GetInventoryVariantsOptions extends GetInventoryVariantsRequest
|
|
|
334
338
|
* @public
|
|
335
339
|
* @documentationMaturity preview
|
|
336
340
|
* @permissionScope Manage Stores - all permissions
|
|
341
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
337
342
|
* @permissionScope Manage Products
|
|
343
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
338
344
|
* @permissionScope Read Stores - all read permissions
|
|
345
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
339
346
|
* @permissionScope Read Products
|
|
347
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-PRODUCTS
|
|
340
348
|
* @applicableIdentity APP
|
|
341
349
|
*/
|
|
342
350
|
export declare function queryInventory(options?: QueryInventoryOptions): Promise<QueryInventoryResponse & QueryInventoryResponseNonNullableFields>;
|
|
@@ -355,7 +363,9 @@ export interface QueryInventoryOptions {
|
|
|
355
363
|
* @requiredField productId
|
|
356
364
|
* @param inventoryItem - Inventory item to update.
|
|
357
365
|
* @permissionScope Manage Stores - all permissions
|
|
366
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
358
367
|
* @permissionScope Manage Products
|
|
368
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
359
369
|
* @applicableIdentity APP
|
|
360
370
|
*/
|
|
361
371
|
export declare function updateInventoryVariants(productId: string | null, inventoryItem: UpdateInventoryVariantsInventoryItem): Promise<void>;
|
|
@@ -395,7 +405,9 @@ export interface UpdateInventoryVariantsInventoryItem {
|
|
|
395
405
|
* @public
|
|
396
406
|
* @requiredField decrementData
|
|
397
407
|
* @permissionScope Manage Stores - all permissions
|
|
408
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
398
409
|
* @permissionScope Manage Products
|
|
410
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
399
411
|
* @applicableIdentity APP
|
|
400
412
|
*/
|
|
401
413
|
export declare function decrementInventory(decrementData: DecrementData[]): Promise<void>;
|
|
@@ -408,7 +420,9 @@ export declare function decrementInventory(decrementData: DecrementData[]): Prom
|
|
|
408
420
|
* @public
|
|
409
421
|
* @requiredField incrementData
|
|
410
422
|
* @permissionScope Manage Stores - all permissions
|
|
423
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
411
424
|
* @permissionScope Manage Products
|
|
425
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
412
426
|
* @applicableIdentity APP
|
|
413
427
|
*/
|
|
414
428
|
export declare function incrementInventory(incrementData: IncrementData[]): Promise<void>;
|
|
@@ -77,9 +77,13 @@ const _updateInventoryVariantsResponse = {};
|
|
|
77
77
|
* @public
|
|
78
78
|
* @requiredField inventoryId
|
|
79
79
|
* @permissionScope Manage Stores - all permissions
|
|
80
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
80
81
|
* @permissionScope Manage Products
|
|
82
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
81
83
|
* @permissionScope Read Stores - all read permissions
|
|
84
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
82
85
|
* @permissionScope Read Products
|
|
86
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-PRODUCTS
|
|
83
87
|
* @applicableIdentity APP
|
|
84
88
|
*/
|
|
85
89
|
function getInventoryVariants(inventoryId, options) {
|
|
@@ -143,9 +147,13 @@ exports.getInventoryVariants = getInventoryVariants;
|
|
|
143
147
|
* @public
|
|
144
148
|
* @documentationMaturity preview
|
|
145
149
|
* @permissionScope Manage Stores - all permissions
|
|
150
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
146
151
|
* @permissionScope Manage Products
|
|
152
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
147
153
|
* @permissionScope Read Stores - all read permissions
|
|
154
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
148
155
|
* @permissionScope Read Products
|
|
156
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-PRODUCTS
|
|
149
157
|
* @applicableIdentity APP
|
|
150
158
|
*/
|
|
151
159
|
function queryInventory(options) {
|
|
@@ -205,7 +213,9 @@ exports.queryInventory = queryInventory;
|
|
|
205
213
|
* @requiredField productId
|
|
206
214
|
* @param inventoryItem - Inventory item to update.
|
|
207
215
|
* @permissionScope Manage Stores - all permissions
|
|
216
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
208
217
|
* @permissionScope Manage Products
|
|
218
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
209
219
|
* @applicableIdentity APP
|
|
210
220
|
*/
|
|
211
221
|
function updateInventoryVariants(productId, inventoryItem) {
|
|
@@ -264,7 +274,9 @@ exports.updateInventoryVariants = updateInventoryVariants;
|
|
|
264
274
|
* @public
|
|
265
275
|
* @requiredField decrementData
|
|
266
276
|
* @permissionScope Manage Stores - all permissions
|
|
277
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
267
278
|
* @permissionScope Manage Products
|
|
279
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
268
280
|
* @applicableIdentity APP
|
|
269
281
|
*/
|
|
270
282
|
function decrementInventory(decrementData) {
|
|
@@ -321,7 +333,9 @@ exports.decrementInventory = decrementInventory;
|
|
|
321
333
|
* @public
|
|
322
334
|
* @requiredField incrementData
|
|
323
335
|
* @permissionScope Manage Stores - all permissions
|
|
336
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
324
337
|
* @permissionScope Manage Products
|
|
338
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
325
339
|
* @applicableIdentity APP
|
|
326
340
|
*/
|
|
327
341
|
function incrementInventory(incrementData) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stores-v2-inventory.universal.js","sourceRoot":"","sources":["../../../src/stores-v2-inventory.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kDAAqD;AACrD,sEAAuF;AAEvF,2FAA6E;AAE7E,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAEY,QAAA,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AA4G5B,IAAY,UAKX;AALD,WAAY,UAAU;IACpB,iCAAmB,CAAA;IACnB,6BAAe,CAAA;IACf,+BAAiB,CAAA;IACjB,iEAAmD,CAAA;AACrD,CAAC,EALW,UAAU,0BAAV,UAAU,QAKrB;AAgND,MAAM,0BAA0B,GAAG,EAAE,CAAC;AACtC,MAAM,2BAA2B,GAAG,EAAE,CAAC;AACvC,MAAM,4BAA4B,GAAG,EAAE,CAAC;AACxC,MAAM,6BAA6B,GAAG,EAAE,CAAC;AACzC,MAAM,0BAA0B,GAAG,EAAE,CAAC;AACtC,MAAM,2BAA2B,GAAG,EAAE,CAAC;AACvC,MAAM,sBAAsB,GAAG,EAAE,CAAC;AAClC,MAAM,uBAAuB,GAAG,EAAE,CAAC;AACnC,MAAM,+BAA+B,GAAG,EAAE,CAAC;AAC3C,MAAM,gCAAgC,GAAG,EAAE,CAAC;AAE5C
|
|
1
|
+
{"version":3,"file":"stores-v2-inventory.universal.js","sourceRoot":"","sources":["../../../src/stores-v2-inventory.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kDAAqD;AACrD,sEAAuF;AAEvF,2FAA6E;AAE7E,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAEY,QAAA,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AA4G5B,IAAY,UAKX;AALD,WAAY,UAAU;IACpB,iCAAmB,CAAA;IACnB,6BAAe,CAAA;IACf,+BAAiB,CAAA;IACjB,iEAAmD,CAAA;AACrD,CAAC,EALW,UAAU,0BAAV,UAAU,QAKrB;AAgND,MAAM,0BAA0B,GAAG,EAAE,CAAC;AACtC,MAAM,2BAA2B,GAAG,EAAE,CAAC;AACvC,MAAM,4BAA4B,GAAG,EAAE,CAAC;AACxC,MAAM,6BAA6B,GAAG,EAAE,CAAC;AACzC,MAAM,0BAA0B,GAAG,EAAE,CAAC;AACtC,MAAM,2BAA2B,GAAG,EAAE,CAAC;AACvC,MAAM,sBAAsB,GAAG,EAAE,CAAC;AAClC,MAAM,uBAAuB,GAAG,EAAE,CAAC;AACnC,MAAM,+BAA+B,GAAG,EAAE,CAAC;AAC3C,MAAM,gCAAgC,GAAG,EAAE,CAAC;AAE5C;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAsB,oBAAoB,CACxC,WAAmB,EACnB,OAAqC;;;QAIrC,MAAM,qBAAqB,GAAG;YAC5B,WAAW,EAAE,MAAM;YACnB,UAAU,EAAE,iBAAiB;YAC7B,SAAS,EAAE,gBAAgB;YAC3B,UAAU,EAAE,iBAAiB;SAC9B,CAAC;QACF,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,IAAA,iBAAU,EAAC;YACzC,UAAU,EAAE,4BAA4B;YACxC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,IAAA,iBAAU,EAAC;YAC9B,UAAU,EAAE,6BAA6B;YACzC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,CAAC,GAAG,CAAC,eAAe,CAAC,CAAC;gBAC7B,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC,CAAC;QAE5D,MAAM,OAAO,GAAG,8BAA8B,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC;QAE7E,KAAK,CAAC,gDAAgD,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAE5E,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,2DAAI,CAAC;QAC5B,IAAI,CAAC;YACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,4DAAG,MAAM,CAAC,CAAC;YAEjC,OAAO,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAQ,CAAC;QACtC,CAAC;QAAC,OAAO,GAAQ,EAAE,CAAC;YAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;gBACE,sBAAsB,EAAE,EAAE;gBAC1B,wBAAwB,EAAE;oBACxB,WAAW,EAAE,MAAM;oBACnB,UAAU,EAAE,iBAAiB;oBAC7B,SAAS,EAAE,gBAAgB;oBAC3B,UAAU,EAAE,iBAAiB;iBAC9B;gBACD,uBAAuB,EAAE,KAAK;aAC/B,EACD,CAAC,aAAa,EAAE,SAAS,CAAC,CAC3B,CAAC;YACF,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,4DAAG,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;QACzB,CAAC;;CACF;AAvED,oDAuEC;AAcD;;;;;;;;;;;;;GAaG;AACH,SAAsB,cAAc,CAClC,OAA+B;;;QAE/B,MAAM,qBAAqB,GAAG,EAAE,KAAK,EAAE,YAAY,EAAE,CAAC;QACtD,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,IAAA,iBAAU,EAAC;YACzC,UAAU,EAAE,sBAAsB;YAClC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,IAAA,iBAAU,EAAC;YAC9B,UAAU,EAAE,uBAAuB;YACnC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAC;gBACpC,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;QAE/C,MAAM,OAAO,GAAG,8BAA8B,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;QAEvE,KAAK,CAAC,0CAA0C,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAEtE,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,2DAAI,CAAC;QAC5B,IAAI,CAAC;YACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,4DAAG,MAAM,CAAC,CAAC;YAEjC,OAAO,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAQ,CAAC;QACtC,CAAC;QAAC,OAAO,GAAQ,EAAE,CAAC;YAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;gBACE,sBAAsB,EAAE,EAAE;gBAC1B,wBAAwB,EAAE,EAAE,KAAK,EAAE,YAAY,EAAE;gBACjD,uBAAuB,EAAE,KAAK;aAC/B,EACD,CAAC,SAAS,CAAC,CACZ,CAAC;YACF,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,4DAAG,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;QACzB,CAAC;;CACF;AA1DD,wCA0DC;AAOD;;;;;;;;;;;;;;;GAeG;AACH,SAAsB,uBAAuB,CAC3C,SAAwB,EACxB,aAAmD;;;QAEnD,MAAM,qBAAqB,GAAG;YAC5B,aAAa,EAAE,EAAE,GAAG,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE;SAClD,CAAC;QACF,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,IAAA,iBAAU,EAAC;YACzC,UAAU,EAAE,+BAA+B;YAC3C,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,CAAC,GAAG,CAAC,eAAe,CAAC,CAAC;gBAC7B,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,IAAA,iBAAU,EAAC;YAC9B,UAAU,EAAE,gCAAgC;YAC5C,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC,CAAC;QAEhE,MAAM,OAAO,GACX,8BAA8B,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAAC;QAElE,KAAK,CACH,mDAAmD,SAAS,CAAC,OAAO,CAAC,EAAE,CACxE,CAAC;QAEF,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,2DAAI,CAAC;QAC5B,IAAI,CAAC;YACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,4DAAG,MAAM,CAAC,CAAC;QACnC,CAAC;QAAC,OAAO,GAAQ,EAAE,CAAC;YAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;gBACE,sBAAsB,EAAE,EAAE,aAAa,EAAE,MAAM,EAAE;gBACjD,wBAAwB,EAAE,EAAE,yBAAyB,EAAE,MAAM,EAAE;gBAC/D,uBAAuB,EAAE,KAAK;aAC/B,EACD,CAAC,WAAW,EAAE,eAAe,CAAC,CAC/B,CAAC;YACF,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,4DAAG,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;QACzB,CAAC;;CACF;AA9DD,0DA8DC;AA8BD;;;;;;;;;;;;;GAaG;AACH,SAAsB,kBAAkB,CACtC,aAA8B;;;QAE9B,MAAM,qBAAqB,GAAG,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC;QACxD,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,IAAA,iBAAU,EAAC;YACzC,UAAU,EAAE,0BAA0B;YACtC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,IAAA,iBAAU,EAAC;YAC9B,UAAU,EAAE,2BAA2B;YACvC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC;QAErD,MAAM,OAAO,GAAG,8BAA8B,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;QAE3E,KAAK,CAAC,8CAA8C,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAE1E,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,2DAAI,CAAC;QAC5B,IAAI,CAAC;YACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,4DAAG,MAAM,CAAC,CAAC;QACnC,CAAC;QAAC,OAAO,GAAQ,EAAE,CAAC;YAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;gBACE,sBAAsB,EAAE,EAAE;gBAC1B,wBAAwB,EAAE,EAAE,aAAa,EAAE,MAAM,EAAE;gBACnD,uBAAuB,EAAE,KAAK;aAC/B,EACD,CAAC,eAAe,CAAC,CAClB,CAAC;YACF,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,4DAAG,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;QACzB,CAAC;;CACF;AAxDD,gDAwDC;AAED;;;;;;;;;;;;;GAaG;AACH,SAAsB,kBAAkB,CACtC,aAA8B;;;QAE9B,MAAM,qBAAqB,GAAG,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC;QACxD,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,IAAA,iBAAU,EAAC;YACzC,UAAU,EAAE,0BAA0B;YACtC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,IAAA,iBAAU,EAAC;YAC9B,UAAU,EAAE,2BAA2B;YACvC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC;QAErD,MAAM,OAAO,GAAG,8BAA8B,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;QAE3E,KAAK,CAAC,8CAA8C,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAE1E,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,2DAAI,CAAC;QAC5B,IAAI,CAAC;YACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,4DAAG,MAAM,CAAC,CAAC;QACnC,CAAC;QAAC,OAAO,GAAQ,EAAE,CAAC;YAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;gBACE,sBAAsB,EAAE,EAAE;gBAC1B,wBAAwB,EAAE,EAAE,aAAa,EAAE,MAAM,EAAE;gBACnD,uBAAuB,EAAE,KAAK;aAC/B,EACD,CAAC,eAAe,CAAC,CAClB,CAAC;YACF,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,4DAAG,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;QACzB,CAAC;;CACF;AAxDD,gDAwDC"}
|
|
@@ -4055,7 +4055,9 @@ export interface GetStoreVariantResponseNonNullableFields {
|
|
|
4055
4055
|
* @requiredField product.priceData
|
|
4056
4056
|
* @requiredField product.priceData.price
|
|
4057
4057
|
* @permissionScope Manage Stores - all permissions
|
|
4058
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4058
4059
|
* @permissionScope Manage Products
|
|
4060
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4059
4061
|
* @applicableIdentity APP
|
|
4060
4062
|
*/
|
|
4061
4063
|
export declare function createProduct(product: Product): Promise<CreateProductResponse & CreateProductResponseNonNullableFields>;
|
|
@@ -4070,7 +4072,9 @@ export declare function createProduct(product: Product): Promise<CreateProductRe
|
|
|
4070
4072
|
* @requiredField product.priceData
|
|
4071
4073
|
* @requiredField product.priceData.price
|
|
4072
4074
|
* @permissionScope Manage Stores - all permissions
|
|
4075
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4073
4076
|
* @permissionScope Manage Products
|
|
4077
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4074
4078
|
* @applicableIdentity APP
|
|
4075
4079
|
*/
|
|
4076
4080
|
export declare function createProductPlatformized(product: Product): Promise<Product & NonNullable<CreateProductPlatformizedResponseNonNullableFields>['product']>;
|
|
@@ -4082,7 +4086,9 @@ export declare function createProductPlatformized(product: Product): Promise<Pro
|
|
|
4082
4086
|
* @requiredField product
|
|
4083
4087
|
* @param product - Product info to update.
|
|
4084
4088
|
* @permissionScope Manage Stores - all permissions
|
|
4089
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4085
4090
|
* @permissionScope Manage Products
|
|
4091
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4086
4092
|
* @applicableIdentity APP
|
|
4087
4093
|
*/
|
|
4088
4094
|
export declare function updateProduct(_id: string, product: UpdateProduct): Promise<UpdateProductResponse & UpdateProductResponseNonNullableFields>;
|
|
@@ -4221,7 +4227,9 @@ export interface UpdateProduct {
|
|
|
4221
4227
|
* @requiredField _id
|
|
4222
4228
|
* @requiredField product
|
|
4223
4229
|
* @permissionScope Manage Stores - all permissions
|
|
4230
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4224
4231
|
* @permissionScope Manage Products
|
|
4232
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4225
4233
|
* @applicableIdentity APP
|
|
4226
4234
|
*/
|
|
4227
4235
|
export declare function updateProductPlatformized(_id: string, product: UpdateProductPlatformizedProduct): Promise<Product & NonNullable<UpdateProductPlatformizedResponseNonNullableFields>['product']>;
|
|
@@ -4358,7 +4366,9 @@ export interface UpdateProductPlatformizedProduct {
|
|
|
4358
4366
|
* @public
|
|
4359
4367
|
* @requiredField _id
|
|
4360
4368
|
* @permissionScope Manage Stores - all permissions
|
|
4369
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4361
4370
|
* @permissionScope Manage Products
|
|
4371
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4362
4372
|
* @applicableIdentity APP
|
|
4363
4373
|
*/
|
|
4364
4374
|
export declare function deleteProduct(_id: string): Promise<void>;
|
|
@@ -4369,7 +4379,9 @@ export declare function deleteProduct(_id: string): Promise<void>;
|
|
|
4369
4379
|
* @documentationMaturity preview
|
|
4370
4380
|
* @requiredField _id
|
|
4371
4381
|
* @permissionScope Manage Stores - all permissions
|
|
4382
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4372
4383
|
* @permissionScope Manage Products
|
|
4384
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4373
4385
|
* @applicableIdentity APP
|
|
4374
4386
|
*/
|
|
4375
4387
|
export declare function deleteProductPlatformized(_id: string): Promise<void>;
|
|
@@ -4382,7 +4394,9 @@ export declare function deleteProductPlatformized(_id: string): Promise<void>;
|
|
|
4382
4394
|
* @requiredField _id
|
|
4383
4395
|
* @requiredField variants
|
|
4384
4396
|
* @permissionScope Manage Stores - all permissions
|
|
4397
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4385
4398
|
* @permissionScope Manage Products
|
|
4399
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4386
4400
|
* @applicableIdentity APP
|
|
4387
4401
|
*/
|
|
4388
4402
|
export declare function updateProductVariants(_id: string, variants: VariantOverride[]): Promise<UpdateVariantsResponse & UpdateVariantsResponseNonNullableFields>;
|
|
@@ -4393,7 +4407,9 @@ export declare function updateProductVariants(_id: string, variants: VariantOver
|
|
|
4393
4407
|
* @documentationMaturity preview
|
|
4394
4408
|
* @requiredField _id
|
|
4395
4409
|
* @permissionScope Manage Stores - all permissions
|
|
4410
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4396
4411
|
* @permissionScope Manage Products
|
|
4412
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4397
4413
|
* @applicableIdentity APP
|
|
4398
4414
|
*/
|
|
4399
4415
|
export declare function resetAllProductVariantData(_id: string): Promise<void>;
|
|
@@ -4405,7 +4421,9 @@ export declare function resetAllProductVariantData(_id: string): Promise<void>;
|
|
|
4405
4421
|
* @requiredField _id
|
|
4406
4422
|
* @requiredField productIds
|
|
4407
4423
|
* @permissionScope Manage Stores - all permissions
|
|
4424
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4408
4425
|
* @permissionScope Manage Products
|
|
4426
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4409
4427
|
* @applicableIdentity APP
|
|
4410
4428
|
*/
|
|
4411
4429
|
export declare function addProductsToCollection(_id: string, productIds: string[]): Promise<void>;
|
|
@@ -4417,7 +4435,9 @@ export declare function addProductsToCollection(_id: string, productIds: string[
|
|
|
4417
4435
|
* @requiredField _id
|
|
4418
4436
|
* @requiredField productIds
|
|
4419
4437
|
* @permissionScope Manage Stores - all permissions
|
|
4438
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4420
4439
|
* @permissionScope Manage Products
|
|
4440
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4421
4441
|
* @applicableIdentity APP
|
|
4422
4442
|
*/
|
|
4423
4443
|
export declare function removeProductsFromCollection(_id: string, productIds: string[]): Promise<void>;
|
|
@@ -4431,7 +4451,9 @@ export declare function removeProductsFromCollection(_id: string, productIds: st
|
|
|
4431
4451
|
* @requiredField _id
|
|
4432
4452
|
* @requiredField media
|
|
4433
4453
|
* @permissionScope Manage Stores - all permissions
|
|
4454
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4434
4455
|
* @permissionScope Manage Products
|
|
4456
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4435
4457
|
* @applicableIdentity APP
|
|
4436
4458
|
*/
|
|
4437
4459
|
export declare function addProductMedia(_id: string, media: MediaDataForWrite[]): Promise<void>;
|
|
@@ -4444,7 +4466,9 @@ export declare function addProductMedia(_id: string, media: MediaDataForWrite[])
|
|
|
4444
4466
|
* @requiredField _id
|
|
4445
4467
|
* @requiredField mediaIds
|
|
4446
4468
|
* @permissionScope Manage Stores - all permissions
|
|
4469
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4447
4470
|
* @permissionScope Manage Products
|
|
4471
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4448
4472
|
* @applicableIdentity APP
|
|
4449
4473
|
*/
|
|
4450
4474
|
export declare function removeProductMedia(_id: string, mediaIds: string[]): Promise<void>;
|
|
@@ -4462,7 +4486,9 @@ export declare function removeProductMedia(_id: string, mediaIds: string[]): Pro
|
|
|
4462
4486
|
* @requiredField media.choice
|
|
4463
4487
|
* @requiredField media.option
|
|
4464
4488
|
* @permissionScope Manage Stores - all permissions
|
|
4489
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4465
4490
|
* @permissionScope Manage Products
|
|
4491
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4466
4492
|
* @applicableIdentity APP
|
|
4467
4493
|
*/
|
|
4468
4494
|
export declare function addProductMediaToChoices(_id: string, media: MediaAssignmentToChoice[]): Promise<void>;
|
|
@@ -4475,7 +4501,9 @@ export declare function addProductMediaToChoices(_id: string, media: MediaAssign
|
|
|
4475
4501
|
* @requiredField _id
|
|
4476
4502
|
* @requiredField media
|
|
4477
4503
|
* @permissionScope Manage Stores - all permissions
|
|
4504
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4478
4505
|
* @permissionScope Manage Products
|
|
4506
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4479
4507
|
* @applicableIdentity APP
|
|
4480
4508
|
*/
|
|
4481
4509
|
export declare function removeProductMediaFromChoices(_id: string, media: MediaAssignmentToChoice[]): Promise<void>;
|
|
@@ -4485,7 +4513,9 @@ export declare function removeProductMediaFromChoices(_id: string, media: MediaA
|
|
|
4485
4513
|
* @public
|
|
4486
4514
|
* @requiredField _id
|
|
4487
4515
|
* @permissionScope Manage Stores - all permissions
|
|
4516
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4488
4517
|
* @permissionScope Manage Products
|
|
4518
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4489
4519
|
* @applicableIdentity APP
|
|
4490
4520
|
*/
|
|
4491
4521
|
export declare function deleteProductOptions(_id: string): Promise<void>;
|
|
@@ -4496,7 +4526,9 @@ export declare function deleteProductOptions(_id: string): Promise<void>;
|
|
|
4496
4526
|
* @documentationMaturity preview
|
|
4497
4527
|
* @requiredField _id
|
|
4498
4528
|
* @permissionScope Manage Stores - all permissions
|
|
4529
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4499
4530
|
* @permissionScope Manage Products
|
|
4531
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4500
4532
|
* @applicableIdentity APP
|
|
4501
4533
|
*/
|
|
4502
4534
|
export declare function removeBrand(_id: string): Promise<void>;
|
|
@@ -4508,7 +4540,9 @@ export declare function removeBrand(_id: string): Promise<void>;
|
|
|
4508
4540
|
* @requiredField collection
|
|
4509
4541
|
* @requiredField collection.name
|
|
4510
4542
|
* @permissionScope Manage Stores - all permissions
|
|
4543
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4511
4544
|
* @permissionScope Manage Products
|
|
4545
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4512
4546
|
* @applicableIdentity APP
|
|
4513
4547
|
*/
|
|
4514
4548
|
export declare function createCollection(collection: Collection): Promise<CreateCollectionResponse & CreateCollectionResponseNonNullableFields>;
|
|
@@ -4520,7 +4554,9 @@ export declare function createCollection(collection: Collection): Promise<Create
|
|
|
4520
4554
|
* @requiredField collection
|
|
4521
4555
|
* @param collection - Collection info to update.
|
|
4522
4556
|
* @permissionScope Manage Stores - all permissions
|
|
4557
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4523
4558
|
* @permissionScope Manage Products
|
|
4559
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4524
4560
|
* @applicableIdentity APP
|
|
4525
4561
|
*/
|
|
4526
4562
|
export declare function updateCollection(_id: string | null, collection: UpdateCollection): Promise<UpdateCollectionResponse & UpdateCollectionResponseNonNullableFields>;
|
|
@@ -4555,7 +4591,9 @@ export interface UpdateCollection {
|
|
|
4555
4591
|
* @requiredField _id
|
|
4556
4592
|
* @param _id - ID of the collection to delete.
|
|
4557
4593
|
* @permissionScope Manage Stores - all permissions
|
|
4594
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4558
4595
|
* @permissionScope Manage Products
|
|
4596
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4559
4597
|
* @applicableIdentity APP
|
|
4560
4598
|
*/
|
|
4561
4599
|
export declare function deleteCollection(_id: string): Promise<void>;
|
|
@@ -4566,7 +4604,9 @@ export declare function deleteCollection(_id: string): Promise<void>;
|
|
|
4566
4604
|
* @documentationMaturity preview
|
|
4567
4605
|
* @requiredField _id
|
|
4568
4606
|
* @permissionScope Manage Stores - all permissions
|
|
4607
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4569
4608
|
* @permissionScope Manage Products
|
|
4609
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4570
4610
|
* @applicableIdentity APP
|
|
4571
4611
|
*/
|
|
4572
4612
|
export declare function removeRibbon(_id: string): Promise<void>;
|
|
@@ -4579,7 +4619,9 @@ export declare function removeRibbon(_id: string): Promise<void>;
|
|
|
4579
4619
|
* @requiredField ids
|
|
4580
4620
|
* @requiredField set
|
|
4581
4621
|
* @permissionScope Manage Stores - all permissions
|
|
4622
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4582
4623
|
* @permissionScope Manage Products
|
|
4624
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4583
4625
|
* @applicableIdentity APP
|
|
4584
4626
|
*/
|
|
4585
4627
|
export declare function bulkUpdateProductsProperty(ids: string[], set: SetValue): Promise<BulkUpdateProductsResponse & BulkUpdateProductsResponseNonNullableFields>;
|
|
@@ -4593,7 +4635,9 @@ export declare function bulkUpdateProductsProperty(ids: string[], set: SetValue)
|
|
|
4593
4635
|
* @requiredField adjust
|
|
4594
4636
|
* @requiredField ids
|
|
4595
4637
|
* @permissionScope Manage Stores - all permissions
|
|
4638
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4596
4639
|
* @permissionScope Manage Products
|
|
4640
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4597
4641
|
* @applicableIdentity APP
|
|
4598
4642
|
*/
|
|
4599
4643
|
export declare function bulkAdjustProductProperty(adjust: AdjustValue, ids: string[]): Promise<BulkAdjustProductPropertiesResponse & BulkAdjustProductPropertiesResponseNonNullableFields>;
|
|
@@ -4758,10 +4802,15 @@ export declare function writeProxyDeleteProductPlatformized(_id: string): Promis
|
|
|
4758
4802
|
* @public
|
|
4759
4803
|
* @documentationMaturity preview
|
|
4760
4804
|
* @permissionScope Manage Stores - all permissions
|
|
4805
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4761
4806
|
* @permissionScope Manage Products
|
|
4807
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4762
4808
|
* @permissionScope Read Stores - all read permissions
|
|
4809
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
4763
4810
|
* @permissionScope Read Products
|
|
4811
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-PRODUCTS
|
|
4764
4812
|
* @permissionScope Manage Orders
|
|
4813
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4765
4814
|
* @applicableIdentity APP
|
|
4766
4815
|
* @applicableIdentity MEMBER
|
|
4767
4816
|
* @applicableIdentity VISITOR
|
|
@@ -4858,10 +4907,15 @@ export interface ProductsQueryBuilder {
|
|
|
4858
4907
|
* @documentationMaturity preview
|
|
4859
4908
|
* @requiredField _id
|
|
4860
4909
|
* @permissionScope Manage Stores - all permissions
|
|
4910
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4861
4911
|
* @permissionScope Manage Products
|
|
4912
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4862
4913
|
* @permissionScope Read Stores - all read permissions
|
|
4914
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
4863
4915
|
* @permissionScope Read Products
|
|
4916
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-PRODUCTS
|
|
4864
4917
|
* @permissionScope Manage Orders
|
|
4918
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4865
4919
|
* @applicableIdentity APP
|
|
4866
4920
|
* @applicableIdentity MEMBER
|
|
4867
4921
|
* @applicableIdentity VISITOR
|
|
@@ -4878,10 +4932,15 @@ export interface GetProductOptions {
|
|
|
4878
4932
|
* @documentationMaturity preview
|
|
4879
4933
|
* @requiredField _id
|
|
4880
4934
|
* @permissionScope Manage Stores - all permissions
|
|
4935
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4881
4936
|
* @permissionScope Manage Products
|
|
4937
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4882
4938
|
* @permissionScope Read Stores - all read permissions
|
|
4939
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
4883
4940
|
* @permissionScope Read Products
|
|
4941
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-PRODUCTS
|
|
4884
4942
|
* @permissionScope Manage Orders
|
|
4943
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4885
4944
|
* @applicableIdentity APP
|
|
4886
4945
|
* @applicableIdentity MEMBER
|
|
4887
4946
|
* @applicableIdentity VISITOR
|
|
@@ -4898,10 +4957,15 @@ export interface GetProductPlatformizedOptions {
|
|
|
4898
4957
|
* @public
|
|
4899
4958
|
* @requiredField slug
|
|
4900
4959
|
* @permissionScope Manage Stores - all permissions
|
|
4960
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4901
4961
|
* @permissionScope Manage Products
|
|
4962
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4902
4963
|
* @permissionScope Read Stores - all read permissions
|
|
4964
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
4903
4965
|
* @permissionScope Read Products
|
|
4966
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-PRODUCTS
|
|
4904
4967
|
* @permissionScope Manage Orders
|
|
4968
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4905
4969
|
* @applicableIdentity APP
|
|
4906
4970
|
* @applicableIdentity MEMBER
|
|
4907
4971
|
* @applicableIdentity VISITOR
|
|
@@ -4915,10 +4979,15 @@ export declare function getCollectionBySlug(slug: string): Promise<GetCollection
|
|
|
4915
4979
|
* @requiredField _id
|
|
4916
4980
|
* @requiredField options
|
|
4917
4981
|
* @permissionScope Manage Stores - all permissions
|
|
4982
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4918
4983
|
* @permissionScope Manage Products
|
|
4984
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4919
4985
|
* @permissionScope Read Stores - all read permissions
|
|
4986
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
4920
4987
|
* @permissionScope Read Products
|
|
4988
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-PRODUCTS
|
|
4921
4989
|
* @permissionScope Manage Orders
|
|
4990
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4922
4991
|
* @applicableIdentity APP
|
|
4923
4992
|
* @applicableIdentity MEMBER
|
|
4924
4993
|
* @applicableIdentity VISITOR
|
|
@@ -4932,10 +5001,15 @@ export declare function getProductOptionsAvailability(_id: string, options: Reco
|
|
|
4932
5001
|
* @documentationMaturity preview
|
|
4933
5002
|
* @requiredField _id
|
|
4934
5003
|
* @permissionScope Manage Stores - all permissions
|
|
5004
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4935
5005
|
* @permissionScope Manage Products
|
|
5006
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4936
5007
|
* @permissionScope Read Stores - all read permissions
|
|
5008
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
4937
5009
|
* @permissionScope Read Products
|
|
5010
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-PRODUCTS
|
|
4938
5011
|
* @permissionScope Manage Orders
|
|
5012
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4939
5013
|
* @applicableIdentity APP
|
|
4940
5014
|
* @applicableIdentity MEMBER
|
|
4941
5015
|
* @applicableIdentity VISITOR
|
|
@@ -4960,10 +5034,15 @@ export interface QueryProductVariantsOptions {
|
|
|
4960
5034
|
* @documentationMaturity preview
|
|
4961
5035
|
* @requiredField query
|
|
4962
5036
|
* @permissionScope Manage Stores - all permissions
|
|
5037
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4963
5038
|
* @permissionScope Manage Products
|
|
5039
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4964
5040
|
* @permissionScope Read Stores - all read permissions
|
|
5041
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
4965
5042
|
* @permissionScope Read Products
|
|
5043
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-PRODUCTS
|
|
4966
5044
|
* @permissionScope Manage Orders
|
|
5045
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4967
5046
|
* @applicableIdentity APP
|
|
4968
5047
|
* @applicableIdentity MEMBER
|
|
4969
5048
|
* @applicableIdentity VISITOR
|
|
@@ -4976,10 +5055,15 @@ export declare function queryStoreVariants(query: PlatformQuery): Promise<QueryS
|
|
|
4976
5055
|
* @documentationMaturity preview
|
|
4977
5056
|
* @requiredField _id
|
|
4978
5057
|
* @permissionScope Manage Stores - all permissions
|
|
5058
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4979
5059
|
* @permissionScope Manage Products
|
|
5060
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-PRODUCTS
|
|
4980
5061
|
* @permissionScope Read Stores - all read permissions
|
|
5062
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
4981
5063
|
* @permissionScope Read Products
|
|
5064
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-PRODUCTS
|
|
4982
5065
|
* @permissionScope Manage Orders
|
|
5066
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4983
5067
|
* @applicableIdentity APP
|
|
4984
5068
|
* @applicableIdentity MEMBER
|
|
4985
5069
|
* @applicableIdentity VISITOR
|