@wix/auto_sdk_seatings_seating-plan 1.0.42 → 1.0.44
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 +2 -6
- 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 +2 -6
- 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 +2 -6
- 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 +2 -6
- 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,8 +1142,6 @@ interface SeatingPlanCreatedEnvelope {
|
|
|
1140
1142
|
}
|
|
1141
1143
|
/** @permissionScope Manage Events
|
|
1142
1144
|
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
1143
|
-
* @permissionScope Manage Restaurants - all permissions
|
|
1144
|
-
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
1145
1145
|
* @permissionId SEATING_PLANS.READ_SEATING_PLANS
|
|
1146
1146
|
* @webhook
|
|
1147
1147
|
* @eventType wix.seating.v1.seating_plan_created
|
|
@@ -1155,8 +1155,6 @@ interface SeatingPlanDeletedEnvelope {
|
|
|
1155
1155
|
}
|
|
1156
1156
|
/** @permissionScope Manage Events
|
|
1157
1157
|
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
1158
|
-
* @permissionScope Manage Restaurants - all permissions
|
|
1159
|
-
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
1160
1158
|
* @permissionId SEATING_PLANS.READ_SEATING_PLANS
|
|
1161
1159
|
* @webhook
|
|
1162
1160
|
* @eventType wix.seating.v1.seating_plan_deleted
|
|
@@ -1170,8 +1168,6 @@ interface SeatingPlanUpdatedEnvelope {
|
|
|
1170
1168
|
}
|
|
1171
1169
|
/** @permissionScope Manage Events
|
|
1172
1170
|
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
1173
|
-
* @permissionScope Manage Restaurants - all permissions
|
|
1174
|
-
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
1175
1171
|
* @permissionId SEATING_PLANS.READ_SEATING_PLANS
|
|
1176
1172
|
* @webhook
|
|
1177
1173
|
* @eventType wix.seating.v1.seating_plan_updated
|