@wix/auto_sdk_packages_packages 1.0.27 → 1.0.28

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.
@@ -769,6 +769,12 @@ interface Subscription {
769
769
  * @max 500
770
770
  */
771
771
  seats?: number | null;
772
+ /**
773
+ * `true` if this subscription is part of a dependency relationship —
774
+ * either as the main subscription or as a dependent.
775
+ * @readonly
776
+ */
777
+ hasDependency?: boolean;
772
778
  }
773
779
  interface BillingReference {
774
780
  /**
@@ -1315,7 +1321,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
1315
1321
  /** If present, indicates the action that triggered the event. */
1316
1322
  originatedFrom?: string | null;
1317
1323
  /**
1318
- * 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.
1324
+ * 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.
1319
1325
  * 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.
1320
1326
  */
1321
1327
  entityEventSequence?: string | null;