@wix/auto_sdk_automations_activations 1.0.128 → 1.0.130

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.
@@ -1222,7 +1222,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
1222
1222
  /** If present, indicates the action that triggered the event. */
1223
1223
  originatedFrom?: string | null;
1224
1224
  /**
1225
- * 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.
1225
+ * 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.
1226
1226
  * 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.
1227
1227
  */
1228
1228
  entityEventSequence?: string | null;
@@ -104,6 +104,10 @@ function resolveWixAutomationsEsbResolverV1EsbConfigResolverUrl(opts) {
104
104
  {
105
105
  srcPath: "/automations/v1/events/bulk-cancel",
106
106
  destPath: "/v1/events/bulk-cancel"
107
+ },
108
+ {
109
+ srcPath: "/automations/esbConfigResolver/v1/events/rerun-activation",
110
+ destPath: "/v1/events/rerun-activation"
107
111
  }
108
112
  ],
109
113
  "platform.rise.ai": [
@@ -128,6 +132,10 @@ function resolveWixAutomationsEsbResolverV1EsbConfigResolverUrl(opts) {
128
132
  {
129
133
  srcPath: "/automations/v1/events/cancel",
130
134
  destPath: "/v1/events/cancel"
135
+ },
136
+ {
137
+ srcPath: "/automations/esbConfigResolver/v1/events/rerun-activation",
138
+ destPath: "/v1/events/rerun-activation"
131
139
  }
132
140
  ],
133
141
  _: [
@@ -146,6 +154,10 @@ function resolveWixAutomationsEsbResolverV1EsbConfigResolverUrl(opts) {
146
154
  {
147
155
  srcPath: "/automations/v1/events/bulk-report",
148
156
  destPath: "/v1/events/bulk-report"
157
+ },
158
+ {
159
+ srcPath: "/automations/esbConfigResolver/v1/events/rerun-activation",
160
+ destPath: "/v1/events/rerun-activation"
149
161
  }
150
162
  ]
151
163
  };