@wix/auto_sdk_seatings_seating-plan 1.0.41 → 1.0.43
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 +8 -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 +8 -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 +8 -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 +8 -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
|
@@ -70,6 +70,8 @@ interface SeatingPlan {
|
|
|
70
70
|
* @maxSize 1000
|
|
71
71
|
*/
|
|
72
72
|
elementGroups?: ElementGroup[];
|
|
73
|
+
/** Optimistic concurrency control; preserved from request, defaults to current plan's revision when absent. */
|
|
74
|
+
revision?: string | null;
|
|
73
75
|
}
|
|
74
76
|
/** A section represents a high-level division within a seating plan, such as "Orchestra", "Balcony", or "VIP Area". Sections contain elements that define the actual seating arrangements. */
|
|
75
77
|
interface Section {
|
|
@@ -1140,6 +1142,8 @@ interface SeatingPlanCreatedEnvelope {
|
|
|
1140
1142
|
}
|
|
1141
1143
|
/** @permissionScope Manage Events
|
|
1142
1144
|
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
1145
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
1146
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
1143
1147
|
* @permissionId SEATING_PLANS.READ_SEATING_PLANS
|
|
1144
1148
|
* @webhook
|
|
1145
1149
|
* @eventType wix.seating.v1.seating_plan_created
|
|
@@ -1153,6 +1157,8 @@ interface SeatingPlanDeletedEnvelope {
|
|
|
1153
1157
|
}
|
|
1154
1158
|
/** @permissionScope Manage Events
|
|
1155
1159
|
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
1160
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
1161
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
1156
1162
|
* @permissionId SEATING_PLANS.READ_SEATING_PLANS
|
|
1157
1163
|
* @webhook
|
|
1158
1164
|
* @eventType wix.seating.v1.seating_plan_deleted
|
|
@@ -1166,6 +1172,8 @@ interface SeatingPlanUpdatedEnvelope {
|
|
|
1166
1172
|
}
|
|
1167
1173
|
/** @permissionScope Manage Events
|
|
1168
1174
|
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
1175
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
1176
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
1169
1177
|
* @permissionId SEATING_PLANS.READ_SEATING_PLANS
|
|
1170
1178
|
* @webhook
|
|
1171
1179
|
* @eventType wix.seating.v1.seating_plan_updated
|