@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
|
@@ -5102,7 +5102,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
5102
5102
|
/** If present, indicates the action that triggered the event. */
|
|
5103
5103
|
originatedFrom?: string | null;
|
|
5104
5104
|
/**
|
|
5105
|
-
* 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
|
|
5105
|
+
* 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.
|
|
5106
5106
|
* 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.
|
|
5107
5107
|
*/
|
|
5108
5108
|
entityEventSequence?: string | null;
|
|
@@ -5695,7 +5695,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
5695
5695
|
/** If present, indicates the action that triggered the event. */
|
|
5696
5696
|
originatedFrom?: string | null;
|
|
5697
5697
|
/**
|
|
5698
|
-
* 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
|
|
5698
|
+
* 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.
|
|
5699
5699
|
* 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.
|
|
5700
5700
|
*/
|
|
5701
5701
|
entityEventSequence?: string | null;
|
|
@@ -5717,6 +5717,8 @@ interface DraftOrderCreatedEnvelope {
|
|
|
5717
5717
|
* Triggered when a draft order is created.
|
|
5718
5718
|
* @permissionScope Manage Stores - all permissions
|
|
5719
5719
|
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
5720
|
+
* @permissionScope Manage_Wix_Rentals_App_Forms_submissions
|
|
5721
|
+
* @permissionScopeId SCOPE.RENTALS.MANAGE
|
|
5720
5722
|
* @permissionScope Manage Stores
|
|
5721
5723
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
5722
5724
|
* @permissionScope Edit an order
|
|
@@ -5739,6 +5741,8 @@ interface DraftOrderDeletedEnvelope {
|
|
|
5739
5741
|
* Triggered when a draft order is deleted.
|
|
5740
5742
|
* @permissionScope Manage Stores - all permissions
|
|
5741
5743
|
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
5744
|
+
* @permissionScope Manage_Wix_Rentals_App_Forms_submissions
|
|
5745
|
+
* @permissionScopeId SCOPE.RENTALS.MANAGE
|
|
5742
5746
|
* @permissionScope Manage Stores
|
|
5743
5747
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
5744
5748
|
* @permissionScope Edit an order
|
|
@@ -5763,6 +5767,8 @@ interface DraftOrderUpdatedEnvelope {
|
|
|
5763
5767
|
* Triggered when a draft order is updated.
|
|
5764
5768
|
* @permissionScope Manage Stores - all permissions
|
|
5765
5769
|
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
5770
|
+
* @permissionScope Manage_Wix_Rentals_App_Forms_submissions
|
|
5771
|
+
* @permissionScopeId SCOPE.RENTALS.MANAGE
|
|
5766
5772
|
* @permissionScope Manage Stores
|
|
5767
5773
|
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
5768
5774
|
* @permissionScope Edit an order
|