@wix/seatings 1.0.11 → 1.0.12
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/seatings",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"type-bundles"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wix/seatings_seating-plan": "1.0.
|
|
22
|
-
"@wix/seatings_seating-reservation": "1.0.
|
|
21
|
+
"@wix/seatings_seating-plan": "1.0.11",
|
|
22
|
+
"@wix/seatings_seating-reservation": "1.0.9"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"glob": "^10.4.1",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"fqdn": ""
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
|
-
"falconPackageHash": "
|
|
47
|
+
"falconPackageHash": "11fd36b2179086617f3df025b1bfc302889a39c105674852ded2d75a"
|
|
48
48
|
}
|
|
@@ -314,6 +314,8 @@ interface RowElement$1 {
|
|
|
314
314
|
interface RowElementUiProperties$1 {
|
|
315
315
|
/** Relative x position to the parent element */
|
|
316
316
|
relativeX?: number | null;
|
|
317
|
+
/** Width of the row */
|
|
318
|
+
width?: number | null;
|
|
317
319
|
/** Seat spacing */
|
|
318
320
|
seatSpacing?: number | null;
|
|
319
321
|
/** Label position */
|
|
@@ -1044,28 +1046,17 @@ declare const onSeatingPlanCreated$1: EventDefinition<SeatingPlanCreatedEnvelope
|
|
|
1044
1046
|
declare const onSeatingPlanUpdated$1: EventDefinition<SeatingPlanUpdatedEnvelope, "wix.seating.v1.seating_plan_updated">;
|
|
1045
1047
|
declare const onSeatingPlanDeleted$1: EventDefinition<SeatingPlanDeletedEnvelope, "wix.seating.v1.seating_plan_deleted">;
|
|
1046
1048
|
|
|
1047
|
-
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
1048
|
-
|
|
1049
1049
|
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
1050
1050
|
|
|
1051
|
-
|
|
1052
|
-
declare const
|
|
1053
|
-
|
|
1054
|
-
declare const
|
|
1055
|
-
|
|
1056
|
-
declare const
|
|
1057
|
-
|
|
1058
|
-
declare const
|
|
1059
|
-
|
|
1060
|
-
declare const getSeatingPlan: ReturnType<typeof createRESTModule$1<_publicGetSeatingPlanType>>;
|
|
1061
|
-
type _publicFindSeatingPlanType = typeof findSeatingPlan$1;
|
|
1062
|
-
declare const findSeatingPlan: ReturnType<typeof createRESTModule$1<_publicFindSeatingPlanType>>;
|
|
1063
|
-
type _publicDeleteSeatingPlanType = typeof deleteSeatingPlan$1;
|
|
1064
|
-
declare const deleteSeatingPlan: ReturnType<typeof createRESTModule$1<_publicDeleteSeatingPlanType>>;
|
|
1065
|
-
type _publicUpdateSeatingPlanThumbnailType = typeof updateSeatingPlanThumbnail$1;
|
|
1066
|
-
declare const updateSeatingPlanThumbnail: ReturnType<typeof createRESTModule$1<_publicUpdateSeatingPlanThumbnailType>>;
|
|
1067
|
-
type _publicGetSeatingPlanThumbnailType = typeof getSeatingPlanThumbnail$1;
|
|
1068
|
-
declare const getSeatingPlanThumbnail: ReturnType<typeof createRESTModule$1<_publicGetSeatingPlanThumbnailType>>;
|
|
1051
|
+
declare const createSeatingPlan: BuildRESTFunction<typeof createSeatingPlan$1> & typeof createSeatingPlan$1;
|
|
1052
|
+
declare const updateSeatingPlan: BuildRESTFunction<typeof updateSeatingPlan$1> & typeof updateSeatingPlan$1;
|
|
1053
|
+
declare const copySeatingPlan: BuildRESTFunction<typeof copySeatingPlan$1> & typeof copySeatingPlan$1;
|
|
1054
|
+
declare const querySeatingPlan: BuildRESTFunction<typeof querySeatingPlan$1> & typeof querySeatingPlan$1;
|
|
1055
|
+
declare const getSeatingPlan: BuildRESTFunction<typeof getSeatingPlan$1> & typeof getSeatingPlan$1;
|
|
1056
|
+
declare const findSeatingPlan: BuildRESTFunction<typeof findSeatingPlan$1> & typeof findSeatingPlan$1;
|
|
1057
|
+
declare const deleteSeatingPlan: BuildRESTFunction<typeof deleteSeatingPlan$1> & typeof deleteSeatingPlan$1;
|
|
1058
|
+
declare const updateSeatingPlanThumbnail: BuildRESTFunction<typeof updateSeatingPlanThumbnail$1> & typeof updateSeatingPlanThumbnail$1;
|
|
1059
|
+
declare const getSeatingPlanThumbnail: BuildRESTFunction<typeof getSeatingPlanThumbnail$1> & typeof getSeatingPlanThumbnail$1;
|
|
1069
1060
|
|
|
1070
1061
|
type _publicOnSeatingPlanCreatedType = typeof onSeatingPlanCreated$1;
|
|
1071
1062
|
/** */
|
|
@@ -1127,18 +1118,9 @@ type context$1_UpdateSeatingPlanResponse = UpdateSeatingPlanResponse;
|
|
|
1127
1118
|
type context$1_UpdateSeatingPlanResponseNonNullableFields = UpdateSeatingPlanResponseNonNullableFields;
|
|
1128
1119
|
type context$1_UpdateSeatingPlanThumbnailRequest = UpdateSeatingPlanThumbnailRequest;
|
|
1129
1120
|
type context$1_UpdateSeatingPlanThumbnailResponse = UpdateSeatingPlanThumbnailResponse;
|
|
1130
|
-
type context$1__publicCopySeatingPlanType = _publicCopySeatingPlanType;
|
|
1131
|
-
type context$1__publicCreateSeatingPlanType = _publicCreateSeatingPlanType;
|
|
1132
|
-
type context$1__publicDeleteSeatingPlanType = _publicDeleteSeatingPlanType;
|
|
1133
|
-
type context$1__publicFindSeatingPlanType = _publicFindSeatingPlanType;
|
|
1134
|
-
type context$1__publicGetSeatingPlanThumbnailType = _publicGetSeatingPlanThumbnailType;
|
|
1135
|
-
type context$1__publicGetSeatingPlanType = _publicGetSeatingPlanType;
|
|
1136
1121
|
type context$1__publicOnSeatingPlanCreatedType = _publicOnSeatingPlanCreatedType;
|
|
1137
1122
|
type context$1__publicOnSeatingPlanDeletedType = _publicOnSeatingPlanDeletedType;
|
|
1138
1123
|
type context$1__publicOnSeatingPlanUpdatedType = _publicOnSeatingPlanUpdatedType;
|
|
1139
|
-
type context$1__publicQuerySeatingPlanType = _publicQuerySeatingPlanType;
|
|
1140
|
-
type context$1__publicUpdateSeatingPlanThumbnailType = _publicUpdateSeatingPlanThumbnailType;
|
|
1141
|
-
type context$1__publicUpdateSeatingPlanType = _publicUpdateSeatingPlanType;
|
|
1142
1124
|
declare const context$1_copySeatingPlan: typeof copySeatingPlan;
|
|
1143
1125
|
declare const context$1_createSeatingPlan: typeof createSeatingPlan;
|
|
1144
1126
|
declare const context$1_deleteSeatingPlan: typeof deleteSeatingPlan;
|
|
@@ -1152,7 +1134,7 @@ declare const context$1_querySeatingPlan: typeof querySeatingPlan;
|
|
|
1152
1134
|
declare const context$1_updateSeatingPlan: typeof updateSeatingPlan;
|
|
1153
1135
|
declare const context$1_updateSeatingPlanThumbnail: typeof updateSeatingPlanThumbnail;
|
|
1154
1136
|
declare namespace context$1 {
|
|
1155
|
-
export { type ActionEvent$1 as ActionEvent, type BaseEventMetadata$1 as BaseEventMetadata, type context$1_CapacityExceededViolation as CapacityExceededViolation, type Category$1 as Category, type context$1_CopySeatingPlanOptions as CopySeatingPlanOptions, type context$1_CopySeatingPlanRequest as CopySeatingPlanRequest, type context$1_CopySeatingPlanResponse as CopySeatingPlanResponse, type context$1_CopySeatingPlanResponseNonNullableFields as CopySeatingPlanResponseNonNullableFields, type context$1_CreateSeatingPlanRequest as CreateSeatingPlanRequest, type context$1_CreateSeatingPlanResponse as CreateSeatingPlanResponse, type context$1_CreateSeatingPlanResponseNonNullableFields as CreateSeatingPlanResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type context$1_DeleteSeatingPlanRequest as DeleteSeatingPlanRequest, type context$1_DeleteSeatingPlanResponse as DeleteSeatingPlanResponse, type context$1_DeleteSeatingPlanResponseNonNullableFields as DeleteSeatingPlanResponseNonNullableFields, type context$1_DiscardSeatingPlanVersionsRequest as DiscardSeatingPlanVersionsRequest, type context$1_DiscardSeatingPlanVersionsResponse as DiscardSeatingPlanVersionsResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Element$1 as Element, type ElementGroup$1 as ElementGroup, type ElementGroupUiProperties$1 as ElementGroupUiProperties, type ElementUiProperties$1 as ElementUiProperties, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type ExtendedFields$1 as ExtendedFields, context$1_Fieldset as Fieldset, type context$1_FindSeatingPlanOptions as FindSeatingPlanOptions, type context$1_FindSeatingPlanRequest as FindSeatingPlanRequest, type context$1_FindSeatingPlanResponse as FindSeatingPlanResponse, type context$1_FindSeatingPlanResponseNonNullableFields as FindSeatingPlanResponseNonNullableFields, type context$1_GetSeatingPlanOptions as GetSeatingPlanOptions, type context$1_GetSeatingPlanRequest as GetSeatingPlanRequest, type context$1_GetSeatingPlanResponse as GetSeatingPlanResponse, type context$1_GetSeatingPlanResponseNonNullableFields as GetSeatingPlanResponseNonNullableFields, type context$1_GetSeatingPlanThumbnailRequest as GetSeatingPlanThumbnailRequest, type context$1_GetSeatingPlanThumbnailResponse as GetSeatingPlanThumbnailResponse, Icon$1 as Icon, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type Image$1 as Image, type MessageEnvelope$1 as MessageEnvelope, type MultiRowProperties$1 as MultiRowProperties, Numbering$1 as Numbering, type Paging$1 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type Place$1 as Place, PlaceTypeEnumType$1 as PlaceTypeEnumType, type context$1_PlansQueryBuilder as PlansQueryBuilder, type context$1_PlansQueryResult as PlansQueryResult, Position$1 as Position, type context$1_QuerySeatingPlanOptions as QuerySeatingPlanOptions, type context$1_QuerySeatingPlanRequest as QuerySeatingPlanRequest, type context$1_QuerySeatingPlanResponse as QuerySeatingPlanResponse, type context$1_QuerySeatingPlanResponseNonNullableFields as QuerySeatingPlanResponseNonNullableFields, type context$1_QuerySeatingPlanVersionsRequest as QuerySeatingPlanVersionsRequest, type context$1_QuerySeatingPlanVersionsResponse as QuerySeatingPlanVersionsResponse, type QueryV2$1 as QueryV2, type QueryV2PagingMethodOneOf$1 as QueryV2PagingMethodOneOf, type ReservationOptions$1 as ReservationOptions, type RestoreInfo$1 as RestoreInfo, type context$1_RestoreSeatingPlanRequest as RestoreSeatingPlanRequest, type context$1_RestoreSeatingPlanResponse as RestoreSeatingPlanResponse, type RowElement$1 as RowElement, type RowElementUiProperties$1 as RowElementUiProperties, type context$1_SaveSeatingPlanVersionRequest as SaveSeatingPlanVersionRequest, type context$1_SaveSeatingPlanVersionResponse as SaveSeatingPlanVersionResponse, type SeatingPlan$1 as SeatingPlan, type context$1_SeatingPlanCreatedEnvelope as SeatingPlanCreatedEnvelope, type context$1_SeatingPlanDeletedEnvelope as SeatingPlanDeletedEnvelope, type context$1_SeatingPlanMask as SeatingPlanMask, type SeatingPlanNonNullableFields$1 as SeatingPlanNonNullableFields, type context$1_SeatingPlanThumbnail as SeatingPlanThumbnail, type SeatingPlanUiProperties$1 as SeatingPlanUiProperties, type context$1_SeatingPlanUpdatedEnvelope as SeatingPlanUpdatedEnvelope, type Section$1 as Section, type Sequencing$1 as Sequencing, ShapeTypeEnumType$1 as ShapeTypeEnumType, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, Type$1 as Type, type context$1_UpdateSeatingPlanOptions as UpdateSeatingPlanOptions, type context$1_UpdateSeatingPlanRequest as UpdateSeatingPlanRequest, type context$1_UpdateSeatingPlanResponse as UpdateSeatingPlanResponse, type context$1_UpdateSeatingPlanResponseNonNullableFields as UpdateSeatingPlanResponseNonNullableFields, type context$1_UpdateSeatingPlanThumbnailRequest as UpdateSeatingPlanThumbnailRequest, type context$1_UpdateSeatingPlanThumbnailResponse as UpdateSeatingPlanThumbnailResponse, type VerticalSequencing$1 as VerticalSequencing, WebhookIdentityType$1 as WebhookIdentityType, type context$
|
|
1137
|
+
export { type ActionEvent$1 as ActionEvent, type BaseEventMetadata$1 as BaseEventMetadata, type context$1_CapacityExceededViolation as CapacityExceededViolation, type Category$1 as Category, type context$1_CopySeatingPlanOptions as CopySeatingPlanOptions, type context$1_CopySeatingPlanRequest as CopySeatingPlanRequest, type context$1_CopySeatingPlanResponse as CopySeatingPlanResponse, type context$1_CopySeatingPlanResponseNonNullableFields as CopySeatingPlanResponseNonNullableFields, type context$1_CreateSeatingPlanRequest as CreateSeatingPlanRequest, type context$1_CreateSeatingPlanResponse as CreateSeatingPlanResponse, type context$1_CreateSeatingPlanResponseNonNullableFields as CreateSeatingPlanResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type context$1_DeleteSeatingPlanRequest as DeleteSeatingPlanRequest, type context$1_DeleteSeatingPlanResponse as DeleteSeatingPlanResponse, type context$1_DeleteSeatingPlanResponseNonNullableFields as DeleteSeatingPlanResponseNonNullableFields, type context$1_DiscardSeatingPlanVersionsRequest as DiscardSeatingPlanVersionsRequest, type context$1_DiscardSeatingPlanVersionsResponse as DiscardSeatingPlanVersionsResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Element$1 as Element, type ElementGroup$1 as ElementGroup, type ElementGroupUiProperties$1 as ElementGroupUiProperties, type ElementUiProperties$1 as ElementUiProperties, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type ExtendedFields$1 as ExtendedFields, context$1_Fieldset as Fieldset, type context$1_FindSeatingPlanOptions as FindSeatingPlanOptions, type context$1_FindSeatingPlanRequest as FindSeatingPlanRequest, type context$1_FindSeatingPlanResponse as FindSeatingPlanResponse, type context$1_FindSeatingPlanResponseNonNullableFields as FindSeatingPlanResponseNonNullableFields, type context$1_GetSeatingPlanOptions as GetSeatingPlanOptions, type context$1_GetSeatingPlanRequest as GetSeatingPlanRequest, type context$1_GetSeatingPlanResponse as GetSeatingPlanResponse, type context$1_GetSeatingPlanResponseNonNullableFields as GetSeatingPlanResponseNonNullableFields, type context$1_GetSeatingPlanThumbnailRequest as GetSeatingPlanThumbnailRequest, type context$1_GetSeatingPlanThumbnailResponse as GetSeatingPlanThumbnailResponse, Icon$1 as Icon, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type Image$1 as Image, type MessageEnvelope$1 as MessageEnvelope, type MultiRowProperties$1 as MultiRowProperties, Numbering$1 as Numbering, type Paging$1 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type Place$1 as Place, PlaceTypeEnumType$1 as PlaceTypeEnumType, type context$1_PlansQueryBuilder as PlansQueryBuilder, type context$1_PlansQueryResult as PlansQueryResult, Position$1 as Position, type context$1_QuerySeatingPlanOptions as QuerySeatingPlanOptions, type context$1_QuerySeatingPlanRequest as QuerySeatingPlanRequest, type context$1_QuerySeatingPlanResponse as QuerySeatingPlanResponse, type context$1_QuerySeatingPlanResponseNonNullableFields as QuerySeatingPlanResponseNonNullableFields, type context$1_QuerySeatingPlanVersionsRequest as QuerySeatingPlanVersionsRequest, type context$1_QuerySeatingPlanVersionsResponse as QuerySeatingPlanVersionsResponse, type QueryV2$1 as QueryV2, type QueryV2PagingMethodOneOf$1 as QueryV2PagingMethodOneOf, type ReservationOptions$1 as ReservationOptions, type RestoreInfo$1 as RestoreInfo, type context$1_RestoreSeatingPlanRequest as RestoreSeatingPlanRequest, type context$1_RestoreSeatingPlanResponse as RestoreSeatingPlanResponse, type RowElement$1 as RowElement, type RowElementUiProperties$1 as RowElementUiProperties, type context$1_SaveSeatingPlanVersionRequest as SaveSeatingPlanVersionRequest, type context$1_SaveSeatingPlanVersionResponse as SaveSeatingPlanVersionResponse, type SeatingPlan$1 as SeatingPlan, type context$1_SeatingPlanCreatedEnvelope as SeatingPlanCreatedEnvelope, type context$1_SeatingPlanDeletedEnvelope as SeatingPlanDeletedEnvelope, type context$1_SeatingPlanMask as SeatingPlanMask, type SeatingPlanNonNullableFields$1 as SeatingPlanNonNullableFields, type context$1_SeatingPlanThumbnail as SeatingPlanThumbnail, type SeatingPlanUiProperties$1 as SeatingPlanUiProperties, type context$1_SeatingPlanUpdatedEnvelope as SeatingPlanUpdatedEnvelope, type Section$1 as Section, type Sequencing$1 as Sequencing, ShapeTypeEnumType$1 as ShapeTypeEnumType, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, Type$1 as Type, type context$1_UpdateSeatingPlanOptions as UpdateSeatingPlanOptions, type context$1_UpdateSeatingPlanRequest as UpdateSeatingPlanRequest, type context$1_UpdateSeatingPlanResponse as UpdateSeatingPlanResponse, type context$1_UpdateSeatingPlanResponseNonNullableFields as UpdateSeatingPlanResponseNonNullableFields, type context$1_UpdateSeatingPlanThumbnailRequest as UpdateSeatingPlanThumbnailRequest, type context$1_UpdateSeatingPlanThumbnailResponse as UpdateSeatingPlanThumbnailResponse, type VerticalSequencing$1 as VerticalSequencing, WebhookIdentityType$1 as WebhookIdentityType, type context$1__publicOnSeatingPlanCreatedType as _publicOnSeatingPlanCreatedType, type context$1__publicOnSeatingPlanDeletedType as _publicOnSeatingPlanDeletedType, type context$1__publicOnSeatingPlanUpdatedType as _publicOnSeatingPlanUpdatedType, context$1_copySeatingPlan as copySeatingPlan, context$1_createSeatingPlan as createSeatingPlan, context$1_deleteSeatingPlan as deleteSeatingPlan, context$1_findSeatingPlan as findSeatingPlan, context$1_getSeatingPlan as getSeatingPlan, context$1_getSeatingPlanThumbnail as getSeatingPlanThumbnail, context$1_onSeatingPlanCreated as onSeatingPlanCreated, context$1_onSeatingPlanDeleted as onSeatingPlanDeleted, context$1_onSeatingPlanUpdated as onSeatingPlanUpdated, onSeatingPlanCreated$1 as publicOnSeatingPlanCreated, onSeatingPlanDeleted$1 as publicOnSeatingPlanDeleted, onSeatingPlanUpdated$1 as publicOnSeatingPlanUpdated, context$1_querySeatingPlan as querySeatingPlan, context$1_updateSeatingPlan as updateSeatingPlan, context$1_updateSeatingPlanThumbnail as updateSeatingPlanThumbnail };
|
|
1156
1138
|
}
|
|
1157
1139
|
|
|
1158
1140
|
interface SeatingReservation {
|
|
@@ -1741,6 +1723,8 @@ interface RowElement {
|
|
|
1741
1723
|
interface RowElementUiProperties {
|
|
1742
1724
|
/** Relative x position to the parent element */
|
|
1743
1725
|
relativeX?: number | null;
|
|
1726
|
+
/** Width of the row */
|
|
1727
|
+
width?: number | null;
|
|
1744
1728
|
/** Seat spacing */
|
|
1745
1729
|
seatSpacing?: number | null;
|
|
1746
1730
|
/** Label position */
|
|
@@ -2178,22 +2162,14 @@ interface GetSeatingReservationsSummarySignature {
|
|
|
2178
2162
|
declare const onSeatingReservationCreated$1: EventDefinition<SeatingReservationCreatedEnvelope, "wix.seating.v1.seating_reservation_created">;
|
|
2179
2163
|
declare const onSeatingReservationDeleted$1: EventDefinition<SeatingReservationDeletedEnvelope, "wix.seating.v1.seating_reservation_deleted">;
|
|
2180
2164
|
|
|
2181
|
-
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
2182
|
-
|
|
2183
2165
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
2184
2166
|
|
|
2185
|
-
|
|
2186
|
-
declare const
|
|
2187
|
-
|
|
2188
|
-
declare const
|
|
2189
|
-
|
|
2190
|
-
declare const
|
|
2191
|
-
type _publicDeleteSeatingReservationType = typeof deleteSeatingReservation$1;
|
|
2192
|
-
declare const deleteSeatingReservation: ReturnType<typeof createRESTModule<_publicDeleteSeatingReservationType>>;
|
|
2193
|
-
type _publicGetSeatingCategoriesSummaryType = typeof getSeatingCategoriesSummary$1;
|
|
2194
|
-
declare const getSeatingCategoriesSummary: ReturnType<typeof createRESTModule<_publicGetSeatingCategoriesSummaryType>>;
|
|
2195
|
-
type _publicGetSeatingReservationsSummaryType = typeof getSeatingReservationsSummary$1;
|
|
2196
|
-
declare const getSeatingReservationsSummary: ReturnType<typeof createRESTModule<_publicGetSeatingReservationsSummaryType>>;
|
|
2167
|
+
declare const createSeatingReservation: BuildRESTFunction<typeof createSeatingReservation$1> & typeof createSeatingReservation$1;
|
|
2168
|
+
declare const getReservation: BuildRESTFunction<typeof getReservation$1> & typeof getReservation$1;
|
|
2169
|
+
declare const querySeatingReservation: BuildRESTFunction<typeof querySeatingReservation$1> & typeof querySeatingReservation$1;
|
|
2170
|
+
declare const deleteSeatingReservation: BuildRESTFunction<typeof deleteSeatingReservation$1> & typeof deleteSeatingReservation$1;
|
|
2171
|
+
declare const getSeatingCategoriesSummary: BuildRESTFunction<typeof getSeatingCategoriesSummary$1> & typeof getSeatingCategoriesSummary$1;
|
|
2172
|
+
declare const getSeatingReservationsSummary: BuildRESTFunction<typeof getSeatingReservationsSummary$1> & typeof getSeatingReservationsSummary$1;
|
|
2197
2173
|
|
|
2198
2174
|
type _publicOnSeatingReservationCreatedType = typeof onSeatingReservationCreated$1;
|
|
2199
2175
|
/** */
|
|
@@ -2300,14 +2276,8 @@ type context_UnavailablePlaces = UnavailablePlaces;
|
|
|
2300
2276
|
type context_VerticalSequencing = VerticalSequencing;
|
|
2301
2277
|
type context_WebhookIdentityType = WebhookIdentityType;
|
|
2302
2278
|
declare const context_WebhookIdentityType: typeof WebhookIdentityType;
|
|
2303
|
-
type context__publicCreateSeatingReservationType = _publicCreateSeatingReservationType;
|
|
2304
|
-
type context__publicDeleteSeatingReservationType = _publicDeleteSeatingReservationType;
|
|
2305
|
-
type context__publicGetReservationType = _publicGetReservationType;
|
|
2306
|
-
type context__publicGetSeatingCategoriesSummaryType = _publicGetSeatingCategoriesSummaryType;
|
|
2307
|
-
type context__publicGetSeatingReservationsSummaryType = _publicGetSeatingReservationsSummaryType;
|
|
2308
2279
|
type context__publicOnSeatingReservationCreatedType = _publicOnSeatingReservationCreatedType;
|
|
2309
2280
|
type context__publicOnSeatingReservationDeletedType = _publicOnSeatingReservationDeletedType;
|
|
2310
|
-
type context__publicQuerySeatingReservationType = _publicQuerySeatingReservationType;
|
|
2311
2281
|
declare const context_createSeatingReservation: typeof createSeatingReservation;
|
|
2312
2282
|
declare const context_deleteSeatingReservation: typeof deleteSeatingReservation;
|
|
2313
2283
|
declare const context_getReservation: typeof getReservation;
|
|
@@ -2317,7 +2287,7 @@ declare const context_onSeatingReservationCreated: typeof onSeatingReservationCr
|
|
|
2317
2287
|
declare const context_onSeatingReservationDeleted: typeof onSeatingReservationDeleted;
|
|
2318
2288
|
declare const context_querySeatingReservation: typeof querySeatingReservation;
|
|
2319
2289
|
declare namespace context {
|
|
2320
|
-
export { type context_ActionEvent as ActionEvent, type context_App as App, type context_BaseEventMetadata as BaseEventMetadata, type context_Category as Category, type context_CategoryDetails as CategoryDetails, type context_CreateSeatingReservationOptions as CreateSeatingReservationOptions, type context_CreateSeatingReservationRequest as CreateSeatingReservationRequest, type context_CreateSeatingReservationResponse as CreateSeatingReservationResponse, type context_CreateSeatingReservationResponseNonNullableFields as CreateSeatingReservationResponseNonNullableFields, type context_CursorPaging as CursorPaging, type context_Cursors as Cursors, type context_DeleteSeatingPlaceReservationRequest as DeleteSeatingPlaceReservationRequest, type context_DeleteSeatingReservationRequest as DeleteSeatingReservationRequest, type context_DeleteSeatingReservationResponse as DeleteSeatingReservationResponse, type context_DeleteSeatingReservationResponseNonNullableFields as DeleteSeatingReservationResponseNonNullableFields, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Element as Element, type context_ElementGroup as ElementGroup, type context_ElementGroupUiProperties as ElementGroupUiProperties, type context_ElementUiProperties as ElementUiProperties, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventMetadata as EventMetadata, type context_ExtendedFields as ExtendedFields, type context_File as File, type context_GetReservationRequest as GetReservationRequest, type context_GetReservationResponse as GetReservationResponse, type context_GetReservationResponseNonNullableFields as GetReservationResponseNonNullableFields, type context_GetReservedPlacesRequest as GetReservedPlacesRequest, type context_GetReservedPlacesResponse as GetReservedPlacesResponse, type context_GetSeatingCategoriesSummaryOptions as GetSeatingCategoriesSummaryOptions, type context_GetSeatingCategoriesSummaryRequest as GetSeatingCategoriesSummaryRequest, type context_GetSeatingCategoriesSummaryResponse as GetSeatingCategoriesSummaryResponse, type context_GetSeatingReservationsSummaryRequest as GetSeatingReservationsSummaryRequest, type context_GetSeatingReservationsSummaryResponse as GetSeatingReservationsSummaryResponse, type context_GetSeatingReservationsSummaryResponseNonNullableFields as GetSeatingReservationsSummaryResponseNonNullableFields, context_Icon as Icon, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Image as Image, type context_InvalidateCache as InvalidateCache, type context_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context_MessageEnvelope as MessageEnvelope, type context_MultiRowProperties as MultiRowProperties, context_Numbering as Numbering, type context_Page as Page, type context_Paging as Paging, type context_PagingMetadataV2 as PagingMetadataV2, type context_Place as Place, type context_PlaceReservation as PlaceReservation, type context_PlaceReservationDetails as PlaceReservationDetails, context_PlaceTypeEnumType as PlaceTypeEnumType, type context_Places as Places, context_Position as Position, type context_QuerySeatingReservationRequest as QuerySeatingReservationRequest, type context_QuerySeatingReservationResponse as QuerySeatingReservationResponse, type context_QuerySeatingReservationResponseNonNullableFields as QuerySeatingReservationResponseNonNullableFields, type context_QueryV2 as QueryV2, type context_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context_RegenerateSummariesRequest as RegenerateSummariesRequest, type context_RegenerateSummariesResponse as RegenerateSummariesResponse, type context_ReservationErrorDetails as ReservationErrorDetails, type context_ReservationOptions as ReservationOptions, type context_ReservationsQueryBuilder as ReservationsQueryBuilder, type context_ReservationsQueryResult as ReservationsQueryResult, type context_RestoreInfo as RestoreInfo, type context_RowElement as RowElement, type context_RowElementUiProperties as RowElementUiProperties, type context_SeatingPlan as SeatingPlan, type context_SeatingPlanCategoriesSummaryUpdated as SeatingPlanCategoriesSummaryUpdated, type context_SeatingPlanUiProperties as SeatingPlanUiProperties, type context_SeatingReservation as SeatingReservation, type context_SeatingReservationCreatedEnvelope as SeatingReservationCreatedEnvelope, type context_SeatingReservationDeletedEnvelope as SeatingReservationDeletedEnvelope, type context_SeatingReservationNonNullableFields as SeatingReservationNonNullableFields, type context_SeatingReservationsSummary as SeatingReservationsSummary, type context_Section as Section, type context_Sequencing as Sequencing, context_ShapeTypeEnumType as ShapeTypeEnumType, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Type as Type, type context_URI as URI, type context_UnavailablePlaces as UnavailablePlaces, type context_VerticalSequencing as VerticalSequencing, context_WebhookIdentityType as WebhookIdentityType, type
|
|
2290
|
+
export { type context_ActionEvent as ActionEvent, type context_App as App, type context_BaseEventMetadata as BaseEventMetadata, type context_Category as Category, type context_CategoryDetails as CategoryDetails, type context_CreateSeatingReservationOptions as CreateSeatingReservationOptions, type context_CreateSeatingReservationRequest as CreateSeatingReservationRequest, type context_CreateSeatingReservationResponse as CreateSeatingReservationResponse, type context_CreateSeatingReservationResponseNonNullableFields as CreateSeatingReservationResponseNonNullableFields, type context_CursorPaging as CursorPaging, type context_Cursors as Cursors, type context_DeleteSeatingPlaceReservationRequest as DeleteSeatingPlaceReservationRequest, type context_DeleteSeatingReservationRequest as DeleteSeatingReservationRequest, type context_DeleteSeatingReservationResponse as DeleteSeatingReservationResponse, type context_DeleteSeatingReservationResponseNonNullableFields as DeleteSeatingReservationResponseNonNullableFields, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_Element as Element, type context_ElementGroup as ElementGroup, type context_ElementGroupUiProperties as ElementGroupUiProperties, type context_ElementUiProperties as ElementUiProperties, type context_Empty as Empty, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_EventMetadata as EventMetadata, type context_ExtendedFields as ExtendedFields, type context_File as File, type context_GetReservationRequest as GetReservationRequest, type context_GetReservationResponse as GetReservationResponse, type context_GetReservationResponseNonNullableFields as GetReservationResponseNonNullableFields, type context_GetReservedPlacesRequest as GetReservedPlacesRequest, type context_GetReservedPlacesResponse as GetReservedPlacesResponse, type context_GetSeatingCategoriesSummaryOptions as GetSeatingCategoriesSummaryOptions, type context_GetSeatingCategoriesSummaryRequest as GetSeatingCategoriesSummaryRequest, type context_GetSeatingCategoriesSummaryResponse as GetSeatingCategoriesSummaryResponse, type context_GetSeatingReservationsSummaryRequest as GetSeatingReservationsSummaryRequest, type context_GetSeatingReservationsSummaryResponse as GetSeatingReservationsSummaryResponse, type context_GetSeatingReservationsSummaryResponseNonNullableFields as GetSeatingReservationsSummaryResponseNonNullableFields, context_Icon as Icon, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context_Image as Image, type context_InvalidateCache as InvalidateCache, type context_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context_MessageEnvelope as MessageEnvelope, type context_MultiRowProperties as MultiRowProperties, context_Numbering as Numbering, type context_Page as Page, type context_Paging as Paging, type context_PagingMetadataV2 as PagingMetadataV2, type context_Place as Place, type context_PlaceReservation as PlaceReservation, type context_PlaceReservationDetails as PlaceReservationDetails, context_PlaceTypeEnumType as PlaceTypeEnumType, type context_Places as Places, context_Position as Position, type context_QuerySeatingReservationRequest as QuerySeatingReservationRequest, type context_QuerySeatingReservationResponse as QuerySeatingReservationResponse, type context_QuerySeatingReservationResponseNonNullableFields as QuerySeatingReservationResponseNonNullableFields, type context_QueryV2 as QueryV2, type context_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context_RegenerateSummariesRequest as RegenerateSummariesRequest, type context_RegenerateSummariesResponse as RegenerateSummariesResponse, type context_ReservationErrorDetails as ReservationErrorDetails, type context_ReservationOptions as ReservationOptions, type context_ReservationsQueryBuilder as ReservationsQueryBuilder, type context_ReservationsQueryResult as ReservationsQueryResult, type context_RestoreInfo as RestoreInfo, type context_RowElement as RowElement, type context_RowElementUiProperties as RowElementUiProperties, type context_SeatingPlan as SeatingPlan, type context_SeatingPlanCategoriesSummaryUpdated as SeatingPlanCategoriesSummaryUpdated, type context_SeatingPlanUiProperties as SeatingPlanUiProperties, type context_SeatingReservation as SeatingReservation, type context_SeatingReservationCreatedEnvelope as SeatingReservationCreatedEnvelope, type context_SeatingReservationDeletedEnvelope as SeatingReservationDeletedEnvelope, type context_SeatingReservationNonNullableFields as SeatingReservationNonNullableFields, type context_SeatingReservationsSummary as SeatingReservationsSummary, type context_Section as Section, type context_Sequencing as Sequencing, context_ShapeTypeEnumType as ShapeTypeEnumType, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Type as Type, type context_URI as URI, type context_UnavailablePlaces as UnavailablePlaces, type context_VerticalSequencing as VerticalSequencing, context_WebhookIdentityType as WebhookIdentityType, type context__publicOnSeatingReservationCreatedType as _publicOnSeatingReservationCreatedType, type context__publicOnSeatingReservationDeletedType as _publicOnSeatingReservationDeletedType, context_createSeatingReservation as createSeatingReservation, context_deleteSeatingReservation as deleteSeatingReservation, context_getReservation as getReservation, context_getSeatingCategoriesSummary as getSeatingCategoriesSummary, context_getSeatingReservationsSummary as getSeatingReservationsSummary, context_onSeatingReservationCreated as onSeatingReservationCreated, context_onSeatingReservationDeleted as onSeatingReservationDeleted, onSeatingReservationCreated$1 as publicOnSeatingReservationCreated, onSeatingReservationDeleted$1 as publicOnSeatingReservationDeleted, context_querySeatingReservation as querySeatingReservation };
|
|
2321
2291
|
}
|
|
2322
2292
|
|
|
2323
2293
|
export { context$1 as seatingPlan, context as seatingReservation };
|
|
@@ -314,6 +314,8 @@ interface RowElement$1 {
|
|
|
314
314
|
interface RowElementUiProperties$1 {
|
|
315
315
|
/** Relative x position to the parent element */
|
|
316
316
|
relativeX?: number | null;
|
|
317
|
+
/** Width of the row */
|
|
318
|
+
width?: number | null;
|
|
317
319
|
/** Seat spacing */
|
|
318
320
|
seatSpacing?: number | null;
|
|
319
321
|
/** Label position */
|
|
@@ -1044,28 +1046,17 @@ declare const onSeatingPlanCreated$1: EventDefinition<SeatingPlanCreatedEnvelope
|
|
|
1044
1046
|
declare const onSeatingPlanUpdated$1: EventDefinition<SeatingPlanUpdatedEnvelope, "wix.seating.v1.seating_plan_updated">;
|
|
1045
1047
|
declare const onSeatingPlanDeleted$1: EventDefinition<SeatingPlanDeletedEnvelope, "wix.seating.v1.seating_plan_deleted">;
|
|
1046
1048
|
|
|
1047
|
-
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
1048
|
-
|
|
1049
1049
|
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
1050
1050
|
|
|
1051
|
-
|
|
1052
|
-
declare const
|
|
1053
|
-
|
|
1054
|
-
declare const
|
|
1055
|
-
|
|
1056
|
-
declare const
|
|
1057
|
-
|
|
1058
|
-
declare const
|
|
1059
|
-
|
|
1060
|
-
declare const getSeatingPlan: ReturnType<typeof createRESTModule$1<_publicGetSeatingPlanType>>;
|
|
1061
|
-
type _publicFindSeatingPlanType = typeof findSeatingPlan$1;
|
|
1062
|
-
declare const findSeatingPlan: ReturnType<typeof createRESTModule$1<_publicFindSeatingPlanType>>;
|
|
1063
|
-
type _publicDeleteSeatingPlanType = typeof deleteSeatingPlan$1;
|
|
1064
|
-
declare const deleteSeatingPlan: ReturnType<typeof createRESTModule$1<_publicDeleteSeatingPlanType>>;
|
|
1065
|
-
type _publicUpdateSeatingPlanThumbnailType = typeof updateSeatingPlanThumbnail$1;
|
|
1066
|
-
declare const updateSeatingPlanThumbnail: ReturnType<typeof createRESTModule$1<_publicUpdateSeatingPlanThumbnailType>>;
|
|
1067
|
-
type _publicGetSeatingPlanThumbnailType = typeof getSeatingPlanThumbnail$1;
|
|
1068
|
-
declare const getSeatingPlanThumbnail: ReturnType<typeof createRESTModule$1<_publicGetSeatingPlanThumbnailType>>;
|
|
1051
|
+
declare const createSeatingPlan: BuildRESTFunction<typeof createSeatingPlan$1> & typeof createSeatingPlan$1;
|
|
1052
|
+
declare const updateSeatingPlan: BuildRESTFunction<typeof updateSeatingPlan$1> & typeof updateSeatingPlan$1;
|
|
1053
|
+
declare const copySeatingPlan: BuildRESTFunction<typeof copySeatingPlan$1> & typeof copySeatingPlan$1;
|
|
1054
|
+
declare const querySeatingPlan: BuildRESTFunction<typeof querySeatingPlan$1> & typeof querySeatingPlan$1;
|
|
1055
|
+
declare const getSeatingPlan: BuildRESTFunction<typeof getSeatingPlan$1> & typeof getSeatingPlan$1;
|
|
1056
|
+
declare const findSeatingPlan: BuildRESTFunction<typeof findSeatingPlan$1> & typeof findSeatingPlan$1;
|
|
1057
|
+
declare const deleteSeatingPlan: BuildRESTFunction<typeof deleteSeatingPlan$1> & typeof deleteSeatingPlan$1;
|
|
1058
|
+
declare const updateSeatingPlanThumbnail: BuildRESTFunction<typeof updateSeatingPlanThumbnail$1> & typeof updateSeatingPlanThumbnail$1;
|
|
1059
|
+
declare const getSeatingPlanThumbnail: BuildRESTFunction<typeof getSeatingPlanThumbnail$1> & typeof getSeatingPlanThumbnail$1;
|
|
1069
1060
|
|
|
1070
1061
|
type _publicOnSeatingPlanCreatedType = typeof onSeatingPlanCreated$1;
|
|
1071
1062
|
/** */
|
|
@@ -1127,18 +1118,9 @@ type index_d$1_UpdateSeatingPlanResponse = UpdateSeatingPlanResponse;
|
|
|
1127
1118
|
type index_d$1_UpdateSeatingPlanResponseNonNullableFields = UpdateSeatingPlanResponseNonNullableFields;
|
|
1128
1119
|
type index_d$1_UpdateSeatingPlanThumbnailRequest = UpdateSeatingPlanThumbnailRequest;
|
|
1129
1120
|
type index_d$1_UpdateSeatingPlanThumbnailResponse = UpdateSeatingPlanThumbnailResponse;
|
|
1130
|
-
type index_d$1__publicCopySeatingPlanType = _publicCopySeatingPlanType;
|
|
1131
|
-
type index_d$1__publicCreateSeatingPlanType = _publicCreateSeatingPlanType;
|
|
1132
|
-
type index_d$1__publicDeleteSeatingPlanType = _publicDeleteSeatingPlanType;
|
|
1133
|
-
type index_d$1__publicFindSeatingPlanType = _publicFindSeatingPlanType;
|
|
1134
|
-
type index_d$1__publicGetSeatingPlanThumbnailType = _publicGetSeatingPlanThumbnailType;
|
|
1135
|
-
type index_d$1__publicGetSeatingPlanType = _publicGetSeatingPlanType;
|
|
1136
1121
|
type index_d$1__publicOnSeatingPlanCreatedType = _publicOnSeatingPlanCreatedType;
|
|
1137
1122
|
type index_d$1__publicOnSeatingPlanDeletedType = _publicOnSeatingPlanDeletedType;
|
|
1138
1123
|
type index_d$1__publicOnSeatingPlanUpdatedType = _publicOnSeatingPlanUpdatedType;
|
|
1139
|
-
type index_d$1__publicQuerySeatingPlanType = _publicQuerySeatingPlanType;
|
|
1140
|
-
type index_d$1__publicUpdateSeatingPlanThumbnailType = _publicUpdateSeatingPlanThumbnailType;
|
|
1141
|
-
type index_d$1__publicUpdateSeatingPlanType = _publicUpdateSeatingPlanType;
|
|
1142
1124
|
declare const index_d$1_copySeatingPlan: typeof copySeatingPlan;
|
|
1143
1125
|
declare const index_d$1_createSeatingPlan: typeof createSeatingPlan;
|
|
1144
1126
|
declare const index_d$1_deleteSeatingPlan: typeof deleteSeatingPlan;
|
|
@@ -1152,7 +1134,7 @@ declare const index_d$1_querySeatingPlan: typeof querySeatingPlan;
|
|
|
1152
1134
|
declare const index_d$1_updateSeatingPlan: typeof updateSeatingPlan;
|
|
1153
1135
|
declare const index_d$1_updateSeatingPlanThumbnail: typeof updateSeatingPlanThumbnail;
|
|
1154
1136
|
declare namespace index_d$1 {
|
|
1155
|
-
export { type ActionEvent$1 as ActionEvent, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_CapacityExceededViolation as CapacityExceededViolation, type Category$1 as Category, type index_d$1_CopySeatingPlanOptions as CopySeatingPlanOptions, type index_d$1_CopySeatingPlanRequest as CopySeatingPlanRequest, type index_d$1_CopySeatingPlanResponse as CopySeatingPlanResponse, type index_d$1_CopySeatingPlanResponseNonNullableFields as CopySeatingPlanResponseNonNullableFields, type index_d$1_CreateSeatingPlanRequest as CreateSeatingPlanRequest, type index_d$1_CreateSeatingPlanResponse as CreateSeatingPlanResponse, type index_d$1_CreateSeatingPlanResponseNonNullableFields as CreateSeatingPlanResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type index_d$1_DeleteSeatingPlanRequest as DeleteSeatingPlanRequest, type index_d$1_DeleteSeatingPlanResponse as DeleteSeatingPlanResponse, type index_d$1_DeleteSeatingPlanResponseNonNullableFields as DeleteSeatingPlanResponseNonNullableFields, type index_d$1_DiscardSeatingPlanVersionsRequest as DiscardSeatingPlanVersionsRequest, type index_d$1_DiscardSeatingPlanVersionsResponse as DiscardSeatingPlanVersionsResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Element$1 as Element, type ElementGroup$1 as ElementGroup, type ElementGroupUiProperties$1 as ElementGroupUiProperties, type ElementUiProperties$1 as ElementUiProperties, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type ExtendedFields$1 as ExtendedFields, index_d$1_Fieldset as Fieldset, type index_d$1_FindSeatingPlanOptions as FindSeatingPlanOptions, type index_d$1_FindSeatingPlanRequest as FindSeatingPlanRequest, type index_d$1_FindSeatingPlanResponse as FindSeatingPlanResponse, type index_d$1_FindSeatingPlanResponseNonNullableFields as FindSeatingPlanResponseNonNullableFields, type index_d$1_GetSeatingPlanOptions as GetSeatingPlanOptions, type index_d$1_GetSeatingPlanRequest as GetSeatingPlanRequest, type index_d$1_GetSeatingPlanResponse as GetSeatingPlanResponse, type index_d$1_GetSeatingPlanResponseNonNullableFields as GetSeatingPlanResponseNonNullableFields, type index_d$1_GetSeatingPlanThumbnailRequest as GetSeatingPlanThumbnailRequest, type index_d$1_GetSeatingPlanThumbnailResponse as GetSeatingPlanThumbnailResponse, Icon$1 as Icon, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type Image$1 as Image, type MessageEnvelope$1 as MessageEnvelope, type MultiRowProperties$1 as MultiRowProperties, Numbering$1 as Numbering, type Paging$1 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type Place$1 as Place, PlaceTypeEnumType$1 as PlaceTypeEnumType, type index_d$1_PlansQueryBuilder as PlansQueryBuilder, type index_d$1_PlansQueryResult as PlansQueryResult, Position$1 as Position, type index_d$1_QuerySeatingPlanOptions as QuerySeatingPlanOptions, type index_d$1_QuerySeatingPlanRequest as QuerySeatingPlanRequest, type index_d$1_QuerySeatingPlanResponse as QuerySeatingPlanResponse, type index_d$1_QuerySeatingPlanResponseNonNullableFields as QuerySeatingPlanResponseNonNullableFields, type index_d$1_QuerySeatingPlanVersionsRequest as QuerySeatingPlanVersionsRequest, type index_d$1_QuerySeatingPlanVersionsResponse as QuerySeatingPlanVersionsResponse, type QueryV2$1 as QueryV2, type QueryV2PagingMethodOneOf$1 as QueryV2PagingMethodOneOf, type ReservationOptions$1 as ReservationOptions, type RestoreInfo$1 as RestoreInfo, type index_d$1_RestoreSeatingPlanRequest as RestoreSeatingPlanRequest, type index_d$1_RestoreSeatingPlanResponse as RestoreSeatingPlanResponse, type RowElement$1 as RowElement, type RowElementUiProperties$1 as RowElementUiProperties, type index_d$1_SaveSeatingPlanVersionRequest as SaveSeatingPlanVersionRequest, type index_d$1_SaveSeatingPlanVersionResponse as SaveSeatingPlanVersionResponse, type SeatingPlan$1 as SeatingPlan, type index_d$1_SeatingPlanCreatedEnvelope as SeatingPlanCreatedEnvelope, type index_d$1_SeatingPlanDeletedEnvelope as SeatingPlanDeletedEnvelope, type index_d$1_SeatingPlanMask as SeatingPlanMask, type SeatingPlanNonNullableFields$1 as SeatingPlanNonNullableFields, type index_d$1_SeatingPlanThumbnail as SeatingPlanThumbnail, type SeatingPlanUiProperties$1 as SeatingPlanUiProperties, type index_d$1_SeatingPlanUpdatedEnvelope as SeatingPlanUpdatedEnvelope, type Section$1 as Section, type Sequencing$1 as Sequencing, ShapeTypeEnumType$1 as ShapeTypeEnumType, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, Type$1 as Type, type index_d$1_UpdateSeatingPlanOptions as UpdateSeatingPlanOptions, type index_d$1_UpdateSeatingPlanRequest as UpdateSeatingPlanRequest, type index_d$1_UpdateSeatingPlanResponse as UpdateSeatingPlanResponse, type index_d$1_UpdateSeatingPlanResponseNonNullableFields as UpdateSeatingPlanResponseNonNullableFields, type index_d$1_UpdateSeatingPlanThumbnailRequest as UpdateSeatingPlanThumbnailRequest, type index_d$1_UpdateSeatingPlanThumbnailResponse as UpdateSeatingPlanThumbnailResponse, type VerticalSequencing$1 as VerticalSequencing, WebhookIdentityType$1 as WebhookIdentityType, type index_d$
|
|
1137
|
+
export { type ActionEvent$1 as ActionEvent, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_CapacityExceededViolation as CapacityExceededViolation, type Category$1 as Category, type index_d$1_CopySeatingPlanOptions as CopySeatingPlanOptions, type index_d$1_CopySeatingPlanRequest as CopySeatingPlanRequest, type index_d$1_CopySeatingPlanResponse as CopySeatingPlanResponse, type index_d$1_CopySeatingPlanResponseNonNullableFields as CopySeatingPlanResponseNonNullableFields, type index_d$1_CreateSeatingPlanRequest as CreateSeatingPlanRequest, type index_d$1_CreateSeatingPlanResponse as CreateSeatingPlanResponse, type index_d$1_CreateSeatingPlanResponseNonNullableFields as CreateSeatingPlanResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type index_d$1_DeleteSeatingPlanRequest as DeleteSeatingPlanRequest, type index_d$1_DeleteSeatingPlanResponse as DeleteSeatingPlanResponse, type index_d$1_DeleteSeatingPlanResponseNonNullableFields as DeleteSeatingPlanResponseNonNullableFields, type index_d$1_DiscardSeatingPlanVersionsRequest as DiscardSeatingPlanVersionsRequest, type index_d$1_DiscardSeatingPlanVersionsResponse as DiscardSeatingPlanVersionsResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Element$1 as Element, type ElementGroup$1 as ElementGroup, type ElementGroupUiProperties$1 as ElementGroupUiProperties, type ElementUiProperties$1 as ElementUiProperties, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type ExtendedFields$1 as ExtendedFields, index_d$1_Fieldset as Fieldset, type index_d$1_FindSeatingPlanOptions as FindSeatingPlanOptions, type index_d$1_FindSeatingPlanRequest as FindSeatingPlanRequest, type index_d$1_FindSeatingPlanResponse as FindSeatingPlanResponse, type index_d$1_FindSeatingPlanResponseNonNullableFields as FindSeatingPlanResponseNonNullableFields, type index_d$1_GetSeatingPlanOptions as GetSeatingPlanOptions, type index_d$1_GetSeatingPlanRequest as GetSeatingPlanRequest, type index_d$1_GetSeatingPlanResponse as GetSeatingPlanResponse, type index_d$1_GetSeatingPlanResponseNonNullableFields as GetSeatingPlanResponseNonNullableFields, type index_d$1_GetSeatingPlanThumbnailRequest as GetSeatingPlanThumbnailRequest, type index_d$1_GetSeatingPlanThumbnailResponse as GetSeatingPlanThumbnailResponse, Icon$1 as Icon, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type Image$1 as Image, type MessageEnvelope$1 as MessageEnvelope, type MultiRowProperties$1 as MultiRowProperties, Numbering$1 as Numbering, type Paging$1 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type Place$1 as Place, PlaceTypeEnumType$1 as PlaceTypeEnumType, type index_d$1_PlansQueryBuilder as PlansQueryBuilder, type index_d$1_PlansQueryResult as PlansQueryResult, Position$1 as Position, type index_d$1_QuerySeatingPlanOptions as QuerySeatingPlanOptions, type index_d$1_QuerySeatingPlanRequest as QuerySeatingPlanRequest, type index_d$1_QuerySeatingPlanResponse as QuerySeatingPlanResponse, type index_d$1_QuerySeatingPlanResponseNonNullableFields as QuerySeatingPlanResponseNonNullableFields, type index_d$1_QuerySeatingPlanVersionsRequest as QuerySeatingPlanVersionsRequest, type index_d$1_QuerySeatingPlanVersionsResponse as QuerySeatingPlanVersionsResponse, type QueryV2$1 as QueryV2, type QueryV2PagingMethodOneOf$1 as QueryV2PagingMethodOneOf, type ReservationOptions$1 as ReservationOptions, type RestoreInfo$1 as RestoreInfo, type index_d$1_RestoreSeatingPlanRequest as RestoreSeatingPlanRequest, type index_d$1_RestoreSeatingPlanResponse as RestoreSeatingPlanResponse, type RowElement$1 as RowElement, type RowElementUiProperties$1 as RowElementUiProperties, type index_d$1_SaveSeatingPlanVersionRequest as SaveSeatingPlanVersionRequest, type index_d$1_SaveSeatingPlanVersionResponse as SaveSeatingPlanVersionResponse, type SeatingPlan$1 as SeatingPlan, type index_d$1_SeatingPlanCreatedEnvelope as SeatingPlanCreatedEnvelope, type index_d$1_SeatingPlanDeletedEnvelope as SeatingPlanDeletedEnvelope, type index_d$1_SeatingPlanMask as SeatingPlanMask, type SeatingPlanNonNullableFields$1 as SeatingPlanNonNullableFields, type index_d$1_SeatingPlanThumbnail as SeatingPlanThumbnail, type SeatingPlanUiProperties$1 as SeatingPlanUiProperties, type index_d$1_SeatingPlanUpdatedEnvelope as SeatingPlanUpdatedEnvelope, type Section$1 as Section, type Sequencing$1 as Sequencing, ShapeTypeEnumType$1 as ShapeTypeEnumType, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, Type$1 as Type, type index_d$1_UpdateSeatingPlanOptions as UpdateSeatingPlanOptions, type index_d$1_UpdateSeatingPlanRequest as UpdateSeatingPlanRequest, type index_d$1_UpdateSeatingPlanResponse as UpdateSeatingPlanResponse, type index_d$1_UpdateSeatingPlanResponseNonNullableFields as UpdateSeatingPlanResponseNonNullableFields, type index_d$1_UpdateSeatingPlanThumbnailRequest as UpdateSeatingPlanThumbnailRequest, type index_d$1_UpdateSeatingPlanThumbnailResponse as UpdateSeatingPlanThumbnailResponse, type VerticalSequencing$1 as VerticalSequencing, WebhookIdentityType$1 as WebhookIdentityType, type index_d$1__publicOnSeatingPlanCreatedType as _publicOnSeatingPlanCreatedType, type index_d$1__publicOnSeatingPlanDeletedType as _publicOnSeatingPlanDeletedType, type index_d$1__publicOnSeatingPlanUpdatedType as _publicOnSeatingPlanUpdatedType, index_d$1_copySeatingPlan as copySeatingPlan, index_d$1_createSeatingPlan as createSeatingPlan, index_d$1_deleteSeatingPlan as deleteSeatingPlan, index_d$1_findSeatingPlan as findSeatingPlan, index_d$1_getSeatingPlan as getSeatingPlan, index_d$1_getSeatingPlanThumbnail as getSeatingPlanThumbnail, index_d$1_onSeatingPlanCreated as onSeatingPlanCreated, index_d$1_onSeatingPlanDeleted as onSeatingPlanDeleted, index_d$1_onSeatingPlanUpdated as onSeatingPlanUpdated, onSeatingPlanCreated$1 as publicOnSeatingPlanCreated, onSeatingPlanDeleted$1 as publicOnSeatingPlanDeleted, onSeatingPlanUpdated$1 as publicOnSeatingPlanUpdated, index_d$1_querySeatingPlan as querySeatingPlan, index_d$1_updateSeatingPlan as updateSeatingPlan, index_d$1_updateSeatingPlanThumbnail as updateSeatingPlanThumbnail };
|
|
1156
1138
|
}
|
|
1157
1139
|
|
|
1158
1140
|
interface SeatingReservation {
|
|
@@ -1741,6 +1723,8 @@ interface RowElement {
|
|
|
1741
1723
|
interface RowElementUiProperties {
|
|
1742
1724
|
/** Relative x position to the parent element */
|
|
1743
1725
|
relativeX?: number | null;
|
|
1726
|
+
/** Width of the row */
|
|
1727
|
+
width?: number | null;
|
|
1744
1728
|
/** Seat spacing */
|
|
1745
1729
|
seatSpacing?: number | null;
|
|
1746
1730
|
/** Label position */
|
|
@@ -2178,22 +2162,14 @@ interface GetSeatingReservationsSummarySignature {
|
|
|
2178
2162
|
declare const onSeatingReservationCreated$1: EventDefinition<SeatingReservationCreatedEnvelope, "wix.seating.v1.seating_reservation_created">;
|
|
2179
2163
|
declare const onSeatingReservationDeleted$1: EventDefinition<SeatingReservationDeletedEnvelope, "wix.seating.v1.seating_reservation_deleted">;
|
|
2180
2164
|
|
|
2181
|
-
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
2182
|
-
|
|
2183
2165
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
2184
2166
|
|
|
2185
|
-
|
|
2186
|
-
declare const
|
|
2187
|
-
|
|
2188
|
-
declare const
|
|
2189
|
-
|
|
2190
|
-
declare const
|
|
2191
|
-
type _publicDeleteSeatingReservationType = typeof deleteSeatingReservation$1;
|
|
2192
|
-
declare const deleteSeatingReservation: ReturnType<typeof createRESTModule<_publicDeleteSeatingReservationType>>;
|
|
2193
|
-
type _publicGetSeatingCategoriesSummaryType = typeof getSeatingCategoriesSummary$1;
|
|
2194
|
-
declare const getSeatingCategoriesSummary: ReturnType<typeof createRESTModule<_publicGetSeatingCategoriesSummaryType>>;
|
|
2195
|
-
type _publicGetSeatingReservationsSummaryType = typeof getSeatingReservationsSummary$1;
|
|
2196
|
-
declare const getSeatingReservationsSummary: ReturnType<typeof createRESTModule<_publicGetSeatingReservationsSummaryType>>;
|
|
2167
|
+
declare const createSeatingReservation: BuildRESTFunction<typeof createSeatingReservation$1> & typeof createSeatingReservation$1;
|
|
2168
|
+
declare const getReservation: BuildRESTFunction<typeof getReservation$1> & typeof getReservation$1;
|
|
2169
|
+
declare const querySeatingReservation: BuildRESTFunction<typeof querySeatingReservation$1> & typeof querySeatingReservation$1;
|
|
2170
|
+
declare const deleteSeatingReservation: BuildRESTFunction<typeof deleteSeatingReservation$1> & typeof deleteSeatingReservation$1;
|
|
2171
|
+
declare const getSeatingCategoriesSummary: BuildRESTFunction<typeof getSeatingCategoriesSummary$1> & typeof getSeatingCategoriesSummary$1;
|
|
2172
|
+
declare const getSeatingReservationsSummary: BuildRESTFunction<typeof getSeatingReservationsSummary$1> & typeof getSeatingReservationsSummary$1;
|
|
2197
2173
|
|
|
2198
2174
|
type _publicOnSeatingReservationCreatedType = typeof onSeatingReservationCreated$1;
|
|
2199
2175
|
/** */
|
|
@@ -2300,14 +2276,8 @@ type index_d_UnavailablePlaces = UnavailablePlaces;
|
|
|
2300
2276
|
type index_d_VerticalSequencing = VerticalSequencing;
|
|
2301
2277
|
type index_d_WebhookIdentityType = WebhookIdentityType;
|
|
2302
2278
|
declare const index_d_WebhookIdentityType: typeof WebhookIdentityType;
|
|
2303
|
-
type index_d__publicCreateSeatingReservationType = _publicCreateSeatingReservationType;
|
|
2304
|
-
type index_d__publicDeleteSeatingReservationType = _publicDeleteSeatingReservationType;
|
|
2305
|
-
type index_d__publicGetReservationType = _publicGetReservationType;
|
|
2306
|
-
type index_d__publicGetSeatingCategoriesSummaryType = _publicGetSeatingCategoriesSummaryType;
|
|
2307
|
-
type index_d__publicGetSeatingReservationsSummaryType = _publicGetSeatingReservationsSummaryType;
|
|
2308
2279
|
type index_d__publicOnSeatingReservationCreatedType = _publicOnSeatingReservationCreatedType;
|
|
2309
2280
|
type index_d__publicOnSeatingReservationDeletedType = _publicOnSeatingReservationDeletedType;
|
|
2310
|
-
type index_d__publicQuerySeatingReservationType = _publicQuerySeatingReservationType;
|
|
2311
2281
|
declare const index_d_createSeatingReservation: typeof createSeatingReservation;
|
|
2312
2282
|
declare const index_d_deleteSeatingReservation: typeof deleteSeatingReservation;
|
|
2313
2283
|
declare const index_d_getReservation: typeof getReservation;
|
|
@@ -2317,7 +2287,7 @@ declare const index_d_onSeatingReservationCreated: typeof onSeatingReservationCr
|
|
|
2317
2287
|
declare const index_d_onSeatingReservationDeleted: typeof onSeatingReservationDeleted;
|
|
2318
2288
|
declare const index_d_querySeatingReservation: typeof querySeatingReservation;
|
|
2319
2289
|
declare namespace index_d {
|
|
2320
|
-
export { type index_d_ActionEvent as ActionEvent, type index_d_App as App, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_Category as Category, type index_d_CategoryDetails as CategoryDetails, type index_d_CreateSeatingReservationOptions as CreateSeatingReservationOptions, type index_d_CreateSeatingReservationRequest as CreateSeatingReservationRequest, type index_d_CreateSeatingReservationResponse as CreateSeatingReservationResponse, type index_d_CreateSeatingReservationResponseNonNullableFields as CreateSeatingReservationResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_Cursors as Cursors, type index_d_DeleteSeatingPlaceReservationRequest as DeleteSeatingPlaceReservationRequest, type index_d_DeleteSeatingReservationRequest as DeleteSeatingReservationRequest, type index_d_DeleteSeatingReservationResponse as DeleteSeatingReservationResponse, type index_d_DeleteSeatingReservationResponseNonNullableFields as DeleteSeatingReservationResponseNonNullableFields, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_Element as Element, type index_d_ElementGroup as ElementGroup, type index_d_ElementGroupUiProperties as ElementGroupUiProperties, type index_d_ElementUiProperties as ElementUiProperties, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, type index_d_ExtendedFields as ExtendedFields, type index_d_File as File, type index_d_GetReservationRequest as GetReservationRequest, type index_d_GetReservationResponse as GetReservationResponse, type index_d_GetReservationResponseNonNullableFields as GetReservationResponseNonNullableFields, type index_d_GetReservedPlacesRequest as GetReservedPlacesRequest, type index_d_GetReservedPlacesResponse as GetReservedPlacesResponse, type index_d_GetSeatingCategoriesSummaryOptions as GetSeatingCategoriesSummaryOptions, type index_d_GetSeatingCategoriesSummaryRequest as GetSeatingCategoriesSummaryRequest, type index_d_GetSeatingCategoriesSummaryResponse as GetSeatingCategoriesSummaryResponse, type index_d_GetSeatingReservationsSummaryRequest as GetSeatingReservationsSummaryRequest, type index_d_GetSeatingReservationsSummaryResponse as GetSeatingReservationsSummaryResponse, type index_d_GetSeatingReservationsSummaryResponseNonNullableFields as GetSeatingReservationsSummaryResponseNonNullableFields, index_d_Icon as Icon, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Image as Image, type index_d_InvalidateCache as InvalidateCache, type index_d_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d_MessageEnvelope as MessageEnvelope, type index_d_MultiRowProperties as MultiRowProperties, index_d_Numbering as Numbering, type index_d_Page as Page, type index_d_Paging as Paging, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_Place as Place, type index_d_PlaceReservation as PlaceReservation, type index_d_PlaceReservationDetails as PlaceReservationDetails, index_d_PlaceTypeEnumType as PlaceTypeEnumType, type index_d_Places as Places, index_d_Position as Position, type index_d_QuerySeatingReservationRequest as QuerySeatingReservationRequest, type index_d_QuerySeatingReservationResponse as QuerySeatingReservationResponse, type index_d_QuerySeatingReservationResponseNonNullableFields as QuerySeatingReservationResponseNonNullableFields, type index_d_QueryV2 as QueryV2, type index_d_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d_RegenerateSummariesRequest as RegenerateSummariesRequest, type index_d_RegenerateSummariesResponse as RegenerateSummariesResponse, type index_d_ReservationErrorDetails as ReservationErrorDetails, type index_d_ReservationOptions as ReservationOptions, type index_d_ReservationsQueryBuilder as ReservationsQueryBuilder, type index_d_ReservationsQueryResult as ReservationsQueryResult, type index_d_RestoreInfo as RestoreInfo, type index_d_RowElement as RowElement, type index_d_RowElementUiProperties as RowElementUiProperties, type index_d_SeatingPlan as SeatingPlan, type index_d_SeatingPlanCategoriesSummaryUpdated as SeatingPlanCategoriesSummaryUpdated, type index_d_SeatingPlanUiProperties as SeatingPlanUiProperties, type index_d_SeatingReservation as SeatingReservation, type index_d_SeatingReservationCreatedEnvelope as SeatingReservationCreatedEnvelope, type index_d_SeatingReservationDeletedEnvelope as SeatingReservationDeletedEnvelope, type index_d_SeatingReservationNonNullableFields as SeatingReservationNonNullableFields, type index_d_SeatingReservationsSummary as SeatingReservationsSummary, type index_d_Section as Section, type index_d_Sequencing as Sequencing, index_d_ShapeTypeEnumType as ShapeTypeEnumType, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_Type as Type, type index_d_URI as URI, type index_d_UnavailablePlaces as UnavailablePlaces, type index_d_VerticalSequencing as VerticalSequencing, index_d_WebhookIdentityType as WebhookIdentityType, type
|
|
2290
|
+
export { type index_d_ActionEvent as ActionEvent, type index_d_App as App, type index_d_BaseEventMetadata as BaseEventMetadata, type index_d_Category as Category, type index_d_CategoryDetails as CategoryDetails, type index_d_CreateSeatingReservationOptions as CreateSeatingReservationOptions, type index_d_CreateSeatingReservationRequest as CreateSeatingReservationRequest, type index_d_CreateSeatingReservationResponse as CreateSeatingReservationResponse, type index_d_CreateSeatingReservationResponseNonNullableFields as CreateSeatingReservationResponseNonNullableFields, type index_d_CursorPaging as CursorPaging, type index_d_Cursors as Cursors, type index_d_DeleteSeatingPlaceReservationRequest as DeleteSeatingPlaceReservationRequest, type index_d_DeleteSeatingReservationRequest as DeleteSeatingReservationRequest, type index_d_DeleteSeatingReservationResponse as DeleteSeatingReservationResponse, type index_d_DeleteSeatingReservationResponseNonNullableFields as DeleteSeatingReservationResponseNonNullableFields, type index_d_DomainEvent as DomainEvent, type index_d_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d_Element as Element, type index_d_ElementGroup as ElementGroup, type index_d_ElementGroupUiProperties as ElementGroupUiProperties, type index_d_ElementUiProperties as ElementUiProperties, type index_d_Empty as Empty, type index_d_EntityCreatedEvent as EntityCreatedEvent, type index_d_EntityDeletedEvent as EntityDeletedEvent, type index_d_EntityUpdatedEvent as EntityUpdatedEvent, type index_d_EventMetadata as EventMetadata, type index_d_ExtendedFields as ExtendedFields, type index_d_File as File, type index_d_GetReservationRequest as GetReservationRequest, type index_d_GetReservationResponse as GetReservationResponse, type index_d_GetReservationResponseNonNullableFields as GetReservationResponseNonNullableFields, type index_d_GetReservedPlacesRequest as GetReservedPlacesRequest, type index_d_GetReservedPlacesResponse as GetReservedPlacesResponse, type index_d_GetSeatingCategoriesSummaryOptions as GetSeatingCategoriesSummaryOptions, type index_d_GetSeatingCategoriesSummaryRequest as GetSeatingCategoriesSummaryRequest, type index_d_GetSeatingCategoriesSummaryResponse as GetSeatingCategoriesSummaryResponse, type index_d_GetSeatingReservationsSummaryRequest as GetSeatingReservationsSummaryRequest, type index_d_GetSeatingReservationsSummaryResponse as GetSeatingReservationsSummaryResponse, type index_d_GetSeatingReservationsSummaryResponseNonNullableFields as GetSeatingReservationsSummaryResponseNonNullableFields, index_d_Icon as Icon, type index_d_IdentificationData as IdentificationData, type index_d_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d_Image as Image, type index_d_InvalidateCache as InvalidateCache, type index_d_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d_MessageEnvelope as MessageEnvelope, type index_d_MultiRowProperties as MultiRowProperties, index_d_Numbering as Numbering, type index_d_Page as Page, type index_d_Paging as Paging, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_Place as Place, type index_d_PlaceReservation as PlaceReservation, type index_d_PlaceReservationDetails as PlaceReservationDetails, index_d_PlaceTypeEnumType as PlaceTypeEnumType, type index_d_Places as Places, index_d_Position as Position, type index_d_QuerySeatingReservationRequest as QuerySeatingReservationRequest, type index_d_QuerySeatingReservationResponse as QuerySeatingReservationResponse, type index_d_QuerySeatingReservationResponseNonNullableFields as QuerySeatingReservationResponseNonNullableFields, type index_d_QueryV2 as QueryV2, type index_d_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d_RegenerateSummariesRequest as RegenerateSummariesRequest, type index_d_RegenerateSummariesResponse as RegenerateSummariesResponse, type index_d_ReservationErrorDetails as ReservationErrorDetails, type index_d_ReservationOptions as ReservationOptions, type index_d_ReservationsQueryBuilder as ReservationsQueryBuilder, type index_d_ReservationsQueryResult as ReservationsQueryResult, type index_d_RestoreInfo as RestoreInfo, type index_d_RowElement as RowElement, type index_d_RowElementUiProperties as RowElementUiProperties, type index_d_SeatingPlan as SeatingPlan, type index_d_SeatingPlanCategoriesSummaryUpdated as SeatingPlanCategoriesSummaryUpdated, type index_d_SeatingPlanUiProperties as SeatingPlanUiProperties, type index_d_SeatingReservation as SeatingReservation, type index_d_SeatingReservationCreatedEnvelope as SeatingReservationCreatedEnvelope, type index_d_SeatingReservationDeletedEnvelope as SeatingReservationDeletedEnvelope, type index_d_SeatingReservationNonNullableFields as SeatingReservationNonNullableFields, type index_d_SeatingReservationsSummary as SeatingReservationsSummary, type index_d_Section as Section, type index_d_Sequencing as Sequencing, index_d_ShapeTypeEnumType as ShapeTypeEnumType, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_Type as Type, type index_d_URI as URI, type index_d_UnavailablePlaces as UnavailablePlaces, type index_d_VerticalSequencing as VerticalSequencing, index_d_WebhookIdentityType as WebhookIdentityType, type index_d__publicOnSeatingReservationCreatedType as _publicOnSeatingReservationCreatedType, type index_d__publicOnSeatingReservationDeletedType as _publicOnSeatingReservationDeletedType, index_d_createSeatingReservation as createSeatingReservation, index_d_deleteSeatingReservation as deleteSeatingReservation, index_d_getReservation as getReservation, index_d_getSeatingCategoriesSummary as getSeatingCategoriesSummary, index_d_getSeatingReservationsSummary as getSeatingReservationsSummary, index_d_onSeatingReservationCreated as onSeatingReservationCreated, index_d_onSeatingReservationDeleted as onSeatingReservationDeleted, onSeatingReservationCreated$1 as publicOnSeatingReservationCreated, onSeatingReservationDeleted$1 as publicOnSeatingReservationDeleted, index_d_querySeatingReservation as querySeatingReservation };
|
|
2321
2291
|
}
|
|
2322
2292
|
|
|
2323
2293
|
export { index_d$1 as seatingPlan, index_d as seatingReservation };
|