@wix/auto_sdk_ecom_draft-orders 1.0.156 → 1.0.158
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.js.map +1 -1
- package/build/cjs/index.typings.d.ts +8 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +8 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -1
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +8 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -1
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +8 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -1
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -4720,7 +4720,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
4720
4720
|
/** If present, indicates the action that triggered the event. */
|
|
4721
4721
|
originatedFrom?: string | null;
|
|
4722
4722
|
/**
|
|
4723
|
-
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01
|
|
4723
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
|
|
4724
4724
|
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
4725
4725
|
*/
|
|
4726
4726
|
entityEventSequence?: string | null;
|
|
@@ -5313,7 +5313,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
5313
5313
|
/** If present, indicates the action that triggered the event. */
|
|
5314
5314
|
originatedFrom?: string | null;
|
|
5315
5315
|
/**
|
|
5316
|
-
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01
|
|
5316
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
|
|
5317
5317
|
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
5318
5318
|
*/
|
|
5319
5319
|
entityEventSequence?: string | null;
|
|
@@ -5335,6 +5335,8 @@ interface DraftOrderCreatedEnvelope {
|
|
|
5335
5335
|
* Triggered when a draft order is created.
|
|
5336
5336
|
* @permissionScope Manage Stores - all permissions
|
|
5337
5337
|
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
5338
|
+
* @permissionScope Manage_Wix_Rentals_App_Forms_submissions
|
|
5339
|
+
* @permissionScopeId SCOPE.RENTALS.MANAGE
|
|
5338
5340
|
* @permissionScope Manage Stores
|
|
5339
5341
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
5340
5342
|
* @permissionScope Edit an order
|
|
@@ -5357,6 +5359,8 @@ interface DraftOrderDeletedEnvelope {
|
|
|
5357
5359
|
* Triggered when a draft order is deleted.
|
|
5358
5360
|
* @permissionScope Manage Stores - all permissions
|
|
5359
5361
|
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
5362
|
+
* @permissionScope Manage_Wix_Rentals_App_Forms_submissions
|
|
5363
|
+
* @permissionScopeId SCOPE.RENTALS.MANAGE
|
|
5360
5364
|
* @permissionScope Manage Stores
|
|
5361
5365
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
5362
5366
|
* @permissionScope Edit an order
|
|
@@ -5381,6 +5385,8 @@ interface DraftOrderUpdatedEnvelope {
|
|
|
5381
5385
|
* Triggered when a draft order is updated.
|
|
5382
5386
|
* @permissionScope Manage Stores - all permissions
|
|
5383
5387
|
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
5388
|
+
* @permissionScope Manage_Wix_Rentals_App_Forms_submissions
|
|
5389
|
+
* @permissionScopeId SCOPE.RENTALS.MANAGE
|
|
5384
5390
|
* @permissionScope Manage Stores
|
|
5385
5391
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
5386
5392
|
* @permissionScope Edit an order
|