@wix/auto_sdk_ecom_current-cart 1.0.167 → 1.0.169
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
|
@@ -2625,6 +2625,11 @@ interface AdditionalFee {
|
|
|
2625
2625
|
* @maxLength 50
|
|
2626
2626
|
*/
|
|
2627
2627
|
translatedName?: string | null;
|
|
2628
|
+
/**
|
|
2629
|
+
* Address type tax was calculated against for this fee.
|
|
2630
|
+
* @internal
|
|
2631
|
+
*/
|
|
2632
|
+
taxableAddress?: TaxableAddress;
|
|
2628
2633
|
}
|
|
2629
2634
|
declare enum AdditionalFeeSource {
|
|
2630
2635
|
UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
|
|
@@ -2900,7 +2905,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
2900
2905
|
/** If present, indicates the action that triggered the event. */
|
|
2901
2906
|
originatedFrom?: string | null;
|
|
2902
2907
|
/**
|
|
2903
|
-
* 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
|
|
2908
|
+
* 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.
|
|
2904
2909
|
* 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.
|
|
2905
2910
|
*/
|
|
2906
2911
|
entityEventSequence?: string | null;
|
|
@@ -3259,7 +3264,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
3259
3264
|
/** If present, indicates the action that triggered the event. */
|
|
3260
3265
|
originatedFrom?: string | null;
|
|
3261
3266
|
/**
|
|
3262
|
-
* 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
|
|
3267
|
+
* 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.
|
|
3263
3268
|
* 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.
|
|
3264
3269
|
*/
|
|
3265
3270
|
entityEventSequence?: string | null;
|