@wix/auto_sdk_online-programs_online-program-participants 1.0.15 → 1.0.17

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.
@@ -1363,6 +1363,15 @@ interface EventMetadata extends BaseEventMetadata {
1363
1363
  * 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.
1364
1364
  */
1365
1365
  entityEventSequence?: string | null;
1366
+ accountInfo?: AccountInfoMetadata;
1367
+ }
1368
+ interface AccountInfoMetadata {
1369
+ /** ID of the Wix account associated with the event */
1370
+ accountId: string;
1371
+ /** ID of the Wix site associated with the event. Only included when the event is tied to a specific site. */
1372
+ siteId?: string;
1373
+ /** ID of the parent Wix account. Only included when 'accountId' belongs to a child account. */
1374
+ parentAccountId?: string;
1366
1375
  }
1367
1376
  interface ParticipantDeletedEnvelope {
1368
1377
  metadata: EventMetadata;
@@ -106,10 +106,6 @@ function resolveComWixpressAchievementsApiV1ParticipantsServiceUrl(opts) {
106
106
  }
107
107
  ],
108
108
  "www._base_domain_": [
109
- {
110
- srcPath: "/_api/challenge-service-web/api/v1/participants",
111
- destPath: "/api/v1/participants"
112
- },
113
109
  {
114
110
  srcPath: "/challenges/api/v1/participants",
115
111
  destPath: "/api/v1/participants"