@wix/auto_sdk_ecom_subscription-contracts 1.0.115 → 1.0.117

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.
@@ -1851,6 +1851,11 @@ interface AdditionalFee {
1851
1851
  subscriptionCycles?: number | null;
1852
1852
  /** Specifies the entity that added the additional fee. */
1853
1853
  source?: AdditionalFeeSourceWithLiterals;
1854
+ /**
1855
+ * Address type tax was calculated against for this fee.
1856
+ * @internal
1857
+ */
1858
+ taxableAddress?: TaxableAddress;
1854
1859
  }
1855
1860
  declare enum AdditionalFeeSource {
1856
1861
  /** The additional fee was added by an additional fee service plugin. */
@@ -2390,7 +2395,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
2390
2395
  /** If present, indicates the action that triggered the event. */
2391
2396
  originatedFrom?: string | null;
2392
2397
  /**
2393
- * 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.
2398
+ * 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.
2394
2399
  * 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.
2395
2400
  */
2396
2401
  entityEventSequence?: string | null;
@@ -2679,7 +2684,7 @@ interface EventMetadata extends BaseEventMetadata {
2679
2684
  /** If present, indicates the action that triggered the event. */
2680
2685
  originatedFrom?: string | null;
2681
2686
  /**
2682
- * 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.
2687
+ * 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.
2683
2688
  * 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.
2684
2689
  */
2685
2690
  entityEventSequence?: string | null;