@wix/auto_sdk_ecom_draft-orders 1.0.157 → 1.0.159
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 +2 -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 +2 -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 +7 -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 +7 -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
|
@@ -1469,6 +1469,11 @@ interface AdditionalFee {
|
|
|
1469
1469
|
subscriptionCycles?: number | null;
|
|
1470
1470
|
/** Specifies the entity that added the additional fee. */
|
|
1471
1471
|
source?: AdditionalFeeSourceWithLiterals;
|
|
1472
|
+
/**
|
|
1473
|
+
* Address type tax was calculated against for this fee.
|
|
1474
|
+
* @internal
|
|
1475
|
+
*/
|
|
1476
|
+
taxableAddress?: TaxableAddress;
|
|
1472
1477
|
}
|
|
1473
1478
|
declare enum AdditionalFeeSource {
|
|
1474
1479
|
/** The additional fee was added by an additional fee service plugin. */
|
|
@@ -5102,7 +5107,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
5102
5107
|
/** If present, indicates the action that triggered the event. */
|
|
5103
5108
|
originatedFrom?: string | null;
|
|
5104
5109
|
/**
|
|
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
|
|
5110
|
+
* 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
5111
|
* 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
5112
|
*/
|
|
5108
5113
|
entityEventSequence?: string | null;
|
|
@@ -5695,7 +5700,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
5695
5700
|
/** If present, indicates the action that triggered the event. */
|
|
5696
5701
|
originatedFrom?: string | null;
|
|
5697
5702
|
/**
|
|
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
|
|
5703
|
+
* 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
5704
|
* 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
5705
|
*/
|
|
5701
5706
|
entityEventSequence?: string | null;
|