@wix/auto_sdk_seatings_seating-plan 1.0.60 → 1.0.62
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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +13 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +2 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +13 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +2 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +13 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +2 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +13 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +2 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -917,6 +917,8 @@ interface MessageEnvelope {
|
|
|
917
917
|
identity?: IdentificationData;
|
|
918
918
|
/** Stringify payload. */
|
|
919
919
|
data?: string;
|
|
920
|
+
/** Details related to the account */
|
|
921
|
+
accountInfo?: AccountInfo;
|
|
920
922
|
}
|
|
921
923
|
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
922
924
|
/**
|
|
@@ -1122,6 +1124,8 @@ interface BaseEventMetadata {
|
|
|
1122
1124
|
eventType?: string;
|
|
1123
1125
|
/** The identification type and identity data. */
|
|
1124
1126
|
identity?: IdentificationData;
|
|
1127
|
+
/** Details related to the account */
|
|
1128
|
+
accountInfo?: AccountInfo;
|
|
1125
1129
|
}
|
|
1126
1130
|
interface EventMetadata extends BaseEventMetadata {
|
|
1127
1131
|
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
@@ -1152,6 +1156,15 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
1152
1156
|
* 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.
|
|
1153
1157
|
*/
|
|
1154
1158
|
entityEventSequence?: string | null;
|
|
1159
|
+
accountInfo?: AccountInfoMetadata;
|
|
1160
|
+
}
|
|
1161
|
+
interface AccountInfoMetadata {
|
|
1162
|
+
/** ID of the Wix account associated with the event */
|
|
1163
|
+
accountId: string;
|
|
1164
|
+
/** ID of the Wix site associated with the event. Only included when the event is tied to a specific site. */
|
|
1165
|
+
siteId?: string;
|
|
1166
|
+
/** ID of the parent Wix account. Only included when 'accountId' belongs to a child account. */
|
|
1167
|
+
parentAccountId?: string;
|
|
1155
1168
|
}
|
|
1156
1169
|
interface SeatingPlanCreatedEnvelope {
|
|
1157
1170
|
entity: SeatingPlan;
|