@wix/auto_sdk_ecom_checkout 1.0.152 → 1.0.154

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.
@@ -2317,6 +2317,11 @@ interface AdditionalFee {
2317
2317
  * @maxLength 50
2318
2318
  */
2319
2319
  translatedName?: string | null;
2320
+ /**
2321
+ * Address type tax was calculated against for this fee.
2322
+ * @internal
2323
+ */
2324
+ taxableAddress?: TaxableAddress;
2320
2325
  }
2321
2326
  declare enum AdditionalFeeSource {
2322
2327
  UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
@@ -3277,7 +3282,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
3277
3282
  /** If present, indicates the action that triggered the event. */
3278
3283
  originatedFrom?: string | null;
3279
3284
  /**
3280
- * 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.
3285
+ * 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.
3281
3286
  * 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.
3282
3287
  */
3283
3288
  entityEventSequence?: string | null;
@@ -3732,7 +3737,7 @@ interface EventMetadata extends BaseEventMetadata {
3732
3737
  /** If present, indicates the action that triggered the event. */
3733
3738
  originatedFrom?: string | null;
3734
3739
  /**
3735
- * 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.
3740
+ * 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.
3736
3741
  * 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.
3737
3742
  */
3738
3743
  entityEventSequence?: string | null;