@wix/seatings 1.0.10 → 1.0.11
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.d.ts +3 -2
- package/build/cjs/index.js +4 -2
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.ts +3 -2
- package/build/es/index.js +3 -2
- package/build/es/index.js.map +1 -1
- package/package.json +7 -6
- package/type-bundles/context.bundle.d.ts +2242 -22
- package/type-bundles/index.bundle.d.ts +454 -714
- package/type-bundles/meta.bundle.d.ts +412 -1118
|
@@ -1,3 +1,47 @@
|
|
|
1
|
+
type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
|
|
2
|
+
interface HttpClient {
|
|
3
|
+
request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
|
|
4
|
+
fetchWithAuth: typeof fetch;
|
|
5
|
+
wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
|
|
6
|
+
}
|
|
7
|
+
type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
|
|
8
|
+
type HttpResponse<T = any> = {
|
|
9
|
+
data: T;
|
|
10
|
+
status: number;
|
|
11
|
+
statusText: string;
|
|
12
|
+
headers: any;
|
|
13
|
+
request?: any;
|
|
14
|
+
};
|
|
15
|
+
type RequestOptions<_TResponse = any, Data = any> = {
|
|
16
|
+
method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
|
|
17
|
+
url: string;
|
|
18
|
+
data?: Data;
|
|
19
|
+
params?: URLSearchParams;
|
|
20
|
+
} & APIMetadata;
|
|
21
|
+
type APIMetadata = {
|
|
22
|
+
methodFqn?: string;
|
|
23
|
+
entityFqdn?: string;
|
|
24
|
+
packageName?: string;
|
|
25
|
+
};
|
|
26
|
+
type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
|
|
27
|
+
type EventDefinition<Payload = unknown, Type extends string = string> = {
|
|
28
|
+
__type: 'event-definition';
|
|
29
|
+
type: Type;
|
|
30
|
+
isDomainEvent?: boolean;
|
|
31
|
+
transformations?: (envelope: unknown) => Payload;
|
|
32
|
+
__payload: Payload;
|
|
33
|
+
};
|
|
34
|
+
declare function EventDefinition<Type extends string>(type: Type, isDomainEvent?: boolean, transformations?: (envelope: any) => unknown): <Payload = unknown>() => EventDefinition<Payload, Type>;
|
|
35
|
+
type EventHandler<T extends EventDefinition> = (payload: T['__payload']) => void | Promise<void>;
|
|
36
|
+
type BuildEventDefinition<T extends EventDefinition<any, string>> = (handler: EventHandler<T>) => void;
|
|
37
|
+
|
|
38
|
+
declare global {
|
|
39
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
|
|
40
|
+
interface SymbolConstructor {
|
|
41
|
+
readonly observable: symbol;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
1
45
|
interface SeatingPlan$1 {
|
|
2
46
|
/**
|
|
3
47
|
* Auto generated unique plan id
|
|
@@ -119,11 +163,7 @@ interface Sequencing$1 {
|
|
|
119
163
|
reverseOrder?: boolean | null;
|
|
120
164
|
}
|
|
121
165
|
interface Place$1 {
|
|
122
|
-
/**
|
|
123
|
-
* Local id of the place in the sequence
|
|
124
|
-
* @deprecated
|
|
125
|
-
* @targetRemovalDate 2024-07-01
|
|
126
|
-
*/
|
|
166
|
+
/** Local id of the place in the sequence */
|
|
127
167
|
index?: number;
|
|
128
168
|
/**
|
|
129
169
|
* Generated composite unique id in the seating plan.
|
|
@@ -147,6 +187,17 @@ interface Place$1 {
|
|
|
147
187
|
* @readonly
|
|
148
188
|
*/
|
|
149
189
|
categoryId?: number | null;
|
|
190
|
+
/** Place type */
|
|
191
|
+
type?: PlaceTypeEnumType$1;
|
|
192
|
+
}
|
|
193
|
+
declare enum PlaceTypeEnumType$1 {
|
|
194
|
+
UNKNOWN_PROPERTY = "UNKNOWN_PROPERTY",
|
|
195
|
+
STANDARD = "STANDARD",
|
|
196
|
+
WHEELCHAIR = "WHEELCHAIR",
|
|
197
|
+
ACCESSIBLE = "ACCESSIBLE",
|
|
198
|
+
COMPANION = "COMPANION",
|
|
199
|
+
OBSTRUCTED = "OBSTRUCTED",
|
|
200
|
+
DISCOUNT = "DISCOUNT"
|
|
150
201
|
}
|
|
151
202
|
interface ReservationOptions$1 {
|
|
152
203
|
/** Indicates whether the entire element must be reserved */
|
|
@@ -392,17 +443,15 @@ interface QueryV2$1 extends QueryV2PagingMethodOneOf$1 {
|
|
|
392
443
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
393
444
|
cursorPaging?: CursorPaging$1;
|
|
394
445
|
/**
|
|
395
|
-
* Filter object
|
|
396
|
-
*
|
|
397
|
-
*
|
|
398
|
-
* "fieldName2":{"$operator":"value2"}
|
|
399
|
-
* }`
|
|
400
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
446
|
+
* Filter object.
|
|
447
|
+
*
|
|
448
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
401
449
|
*/
|
|
402
450
|
filter?: Record<string, any> | null;
|
|
403
451
|
/**
|
|
404
|
-
* Sort object
|
|
405
|
-
*
|
|
452
|
+
* Sort object.
|
|
453
|
+
*
|
|
454
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
406
455
|
*/
|
|
407
456
|
sort?: Sorting$1[];
|
|
408
457
|
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
@@ -530,7 +579,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
|
|
|
530
579
|
slug?: string;
|
|
531
580
|
/** ID of the entity associated with the event. */
|
|
532
581
|
entityId?: string;
|
|
533
|
-
/** Event timestamp. */
|
|
582
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
534
583
|
eventTime?: Date;
|
|
535
584
|
/**
|
|
536
585
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -701,390 +750,98 @@ interface RestoreSeatingPlanResponse {
|
|
|
701
750
|
/** Seating Plan */
|
|
702
751
|
plan?: SeatingPlan$1;
|
|
703
752
|
}
|
|
753
|
+
interface SequencingNonNullableFields$1 {
|
|
754
|
+
startAt: string;
|
|
755
|
+
labels: string[];
|
|
756
|
+
}
|
|
757
|
+
interface PlaceNonNullableFields$1 {
|
|
758
|
+
index: number;
|
|
759
|
+
label: string;
|
|
760
|
+
elementType: Type$1;
|
|
761
|
+
type: PlaceTypeEnumType$1;
|
|
762
|
+
}
|
|
763
|
+
interface ReservationOptionsNonNullableFields$1 {
|
|
764
|
+
reserveWholeElement: boolean;
|
|
765
|
+
}
|
|
766
|
+
interface ImageNonNullableFields$1 {
|
|
767
|
+
_id: string;
|
|
768
|
+
height: number;
|
|
769
|
+
width: number;
|
|
770
|
+
}
|
|
771
|
+
interface ElementUiPropertiesNonNullableFields$1 {
|
|
772
|
+
shapeType: ShapeTypeEnumType$1;
|
|
773
|
+
labelPosition: Position$1;
|
|
774
|
+
seatLayout: number[];
|
|
775
|
+
icon: Icon$1;
|
|
776
|
+
image?: ImageNonNullableFields$1;
|
|
777
|
+
seatNumbering: Numbering$1;
|
|
778
|
+
}
|
|
779
|
+
interface RowElementUiPropertiesNonNullableFields$1 {
|
|
780
|
+
labelPosition: Position$1;
|
|
781
|
+
seatNumbering: Numbering$1;
|
|
782
|
+
}
|
|
783
|
+
interface RowElementNonNullableFields$1 {
|
|
784
|
+
_id: number;
|
|
785
|
+
sequencing?: SequencingNonNullableFields$1;
|
|
786
|
+
uiProperties?: RowElementUiPropertiesNonNullableFields$1;
|
|
787
|
+
}
|
|
788
|
+
interface VerticalSequencingNonNullableFields$1 {
|
|
789
|
+
startAt: string;
|
|
790
|
+
rowNumbering: Numbering$1;
|
|
791
|
+
}
|
|
792
|
+
interface MultiRowPropertiesNonNullableFields$1 {
|
|
793
|
+
rows: RowElementNonNullableFields$1[];
|
|
794
|
+
verticalSequencing?: VerticalSequencingNonNullableFields$1;
|
|
795
|
+
}
|
|
796
|
+
interface ElementNonNullableFields$1 {
|
|
797
|
+
_id: number;
|
|
798
|
+
type: Type$1;
|
|
799
|
+
sequencing?: SequencingNonNullableFields$1;
|
|
800
|
+
overrides: PlaceNonNullableFields$1[];
|
|
801
|
+
places: PlaceNonNullableFields$1[];
|
|
802
|
+
reservationOptions?: ReservationOptionsNonNullableFields$1;
|
|
803
|
+
uiProperties?: ElementUiPropertiesNonNullableFields$1;
|
|
804
|
+
multiRowProperties?: MultiRowPropertiesNonNullableFields$1;
|
|
805
|
+
}
|
|
806
|
+
interface SectionNonNullableFields$1 {
|
|
807
|
+
_id: number;
|
|
808
|
+
elements: ElementNonNullableFields$1[];
|
|
809
|
+
default: boolean;
|
|
810
|
+
}
|
|
811
|
+
interface CategoryNonNullableFields$1 {
|
|
812
|
+
_id: number;
|
|
813
|
+
title: string;
|
|
814
|
+
places: PlaceNonNullableFields$1[];
|
|
815
|
+
}
|
|
816
|
+
interface ElementGroupNonNullableFields$1 {
|
|
817
|
+
_id: number;
|
|
818
|
+
}
|
|
819
|
+
interface SeatingPlanNonNullableFields$1 {
|
|
820
|
+
sections: SectionNonNullableFields$1[];
|
|
821
|
+
categories: CategoryNonNullableFields$1[];
|
|
822
|
+
uncategorizedPlaces: PlaceNonNullableFields$1[];
|
|
823
|
+
elementGroups: ElementGroupNonNullableFields$1[];
|
|
824
|
+
}
|
|
704
825
|
interface CreateSeatingPlanResponseNonNullableFields {
|
|
705
|
-
plan?:
|
|
706
|
-
sections: {
|
|
707
|
-
_id: number;
|
|
708
|
-
elements: {
|
|
709
|
-
_id: number;
|
|
710
|
-
type: Type$1;
|
|
711
|
-
sequencing?: {
|
|
712
|
-
startAt: string;
|
|
713
|
-
labels: string[];
|
|
714
|
-
};
|
|
715
|
-
overrides: {
|
|
716
|
-
index: number;
|
|
717
|
-
label: string;
|
|
718
|
-
elementType: Type$1;
|
|
719
|
-
}[];
|
|
720
|
-
places: {
|
|
721
|
-
index: number;
|
|
722
|
-
label: string;
|
|
723
|
-
elementType: Type$1;
|
|
724
|
-
}[];
|
|
725
|
-
reservationOptions?: {
|
|
726
|
-
reserveWholeElement: boolean;
|
|
727
|
-
};
|
|
728
|
-
uiProperties?: {
|
|
729
|
-
shapeType: ShapeTypeEnumType$1;
|
|
730
|
-
labelPosition: Position$1;
|
|
731
|
-
seatLayout: number[];
|
|
732
|
-
icon: Icon$1;
|
|
733
|
-
image?: {
|
|
734
|
-
_id: string;
|
|
735
|
-
height: number;
|
|
736
|
-
width: number;
|
|
737
|
-
};
|
|
738
|
-
seatNumbering: Numbering$1;
|
|
739
|
-
};
|
|
740
|
-
}[];
|
|
741
|
-
default: boolean;
|
|
742
|
-
}[];
|
|
743
|
-
categories: {
|
|
744
|
-
_id: number;
|
|
745
|
-
title: string;
|
|
746
|
-
places: {
|
|
747
|
-
index: number;
|
|
748
|
-
label: string;
|
|
749
|
-
elementType: Type$1;
|
|
750
|
-
}[];
|
|
751
|
-
}[];
|
|
752
|
-
uncategorizedPlaces: {
|
|
753
|
-
index: number;
|
|
754
|
-
label: string;
|
|
755
|
-
elementType: Type$1;
|
|
756
|
-
}[];
|
|
757
|
-
};
|
|
826
|
+
plan?: SeatingPlanNonNullableFields$1;
|
|
758
827
|
}
|
|
759
828
|
interface UpdateSeatingPlanResponseNonNullableFields {
|
|
760
|
-
plan?:
|
|
761
|
-
sections: {
|
|
762
|
-
_id: number;
|
|
763
|
-
elements: {
|
|
764
|
-
_id: number;
|
|
765
|
-
type: Type$1;
|
|
766
|
-
sequencing?: {
|
|
767
|
-
startAt: string;
|
|
768
|
-
labels: string[];
|
|
769
|
-
};
|
|
770
|
-
overrides: {
|
|
771
|
-
index: number;
|
|
772
|
-
label: string;
|
|
773
|
-
elementType: Type$1;
|
|
774
|
-
}[];
|
|
775
|
-
places: {
|
|
776
|
-
index: number;
|
|
777
|
-
label: string;
|
|
778
|
-
elementType: Type$1;
|
|
779
|
-
}[];
|
|
780
|
-
reservationOptions?: {
|
|
781
|
-
reserveWholeElement: boolean;
|
|
782
|
-
};
|
|
783
|
-
uiProperties?: {
|
|
784
|
-
shapeType: ShapeTypeEnumType$1;
|
|
785
|
-
labelPosition: Position$1;
|
|
786
|
-
seatLayout: number[];
|
|
787
|
-
icon: Icon$1;
|
|
788
|
-
image?: {
|
|
789
|
-
_id: string;
|
|
790
|
-
height: number;
|
|
791
|
-
width: number;
|
|
792
|
-
};
|
|
793
|
-
seatNumbering: Numbering$1;
|
|
794
|
-
};
|
|
795
|
-
}[];
|
|
796
|
-
default: boolean;
|
|
797
|
-
}[];
|
|
798
|
-
categories: {
|
|
799
|
-
_id: number;
|
|
800
|
-
title: string;
|
|
801
|
-
places: {
|
|
802
|
-
index: number;
|
|
803
|
-
label: string;
|
|
804
|
-
elementType: Type$1;
|
|
805
|
-
}[];
|
|
806
|
-
}[];
|
|
807
|
-
uncategorizedPlaces: {
|
|
808
|
-
index: number;
|
|
809
|
-
label: string;
|
|
810
|
-
elementType: Type$1;
|
|
811
|
-
}[];
|
|
812
|
-
};
|
|
829
|
+
plan?: SeatingPlanNonNullableFields$1;
|
|
813
830
|
}
|
|
814
831
|
interface CopySeatingPlanResponseNonNullableFields {
|
|
815
|
-
plan?:
|
|
816
|
-
sections: {
|
|
817
|
-
_id: number;
|
|
818
|
-
elements: {
|
|
819
|
-
_id: number;
|
|
820
|
-
type: Type$1;
|
|
821
|
-
sequencing?: {
|
|
822
|
-
startAt: string;
|
|
823
|
-
labels: string[];
|
|
824
|
-
};
|
|
825
|
-
overrides: {
|
|
826
|
-
index: number;
|
|
827
|
-
label: string;
|
|
828
|
-
elementType: Type$1;
|
|
829
|
-
}[];
|
|
830
|
-
places: {
|
|
831
|
-
index: number;
|
|
832
|
-
label: string;
|
|
833
|
-
elementType: Type$1;
|
|
834
|
-
}[];
|
|
835
|
-
reservationOptions?: {
|
|
836
|
-
reserveWholeElement: boolean;
|
|
837
|
-
};
|
|
838
|
-
uiProperties?: {
|
|
839
|
-
shapeType: ShapeTypeEnumType$1;
|
|
840
|
-
labelPosition: Position$1;
|
|
841
|
-
seatLayout: number[];
|
|
842
|
-
icon: Icon$1;
|
|
843
|
-
image?: {
|
|
844
|
-
_id: string;
|
|
845
|
-
height: number;
|
|
846
|
-
width: number;
|
|
847
|
-
};
|
|
848
|
-
seatNumbering: Numbering$1;
|
|
849
|
-
};
|
|
850
|
-
}[];
|
|
851
|
-
default: boolean;
|
|
852
|
-
}[];
|
|
853
|
-
categories: {
|
|
854
|
-
_id: number;
|
|
855
|
-
title: string;
|
|
856
|
-
places: {
|
|
857
|
-
index: number;
|
|
858
|
-
label: string;
|
|
859
|
-
elementType: Type$1;
|
|
860
|
-
}[];
|
|
861
|
-
}[];
|
|
862
|
-
uncategorizedPlaces: {
|
|
863
|
-
index: number;
|
|
864
|
-
label: string;
|
|
865
|
-
elementType: Type$1;
|
|
866
|
-
}[];
|
|
867
|
-
};
|
|
832
|
+
plan?: SeatingPlanNonNullableFields$1;
|
|
868
833
|
}
|
|
869
834
|
interface QuerySeatingPlanResponseNonNullableFields {
|
|
870
|
-
plans:
|
|
871
|
-
sections: {
|
|
872
|
-
_id: number;
|
|
873
|
-
elements: {
|
|
874
|
-
_id: number;
|
|
875
|
-
type: Type$1;
|
|
876
|
-
sequencing?: {
|
|
877
|
-
startAt: string;
|
|
878
|
-
labels: string[];
|
|
879
|
-
};
|
|
880
|
-
overrides: {
|
|
881
|
-
index: number;
|
|
882
|
-
label: string;
|
|
883
|
-
elementType: Type$1;
|
|
884
|
-
}[];
|
|
885
|
-
places: {
|
|
886
|
-
index: number;
|
|
887
|
-
label: string;
|
|
888
|
-
elementType: Type$1;
|
|
889
|
-
}[];
|
|
890
|
-
reservationOptions?: {
|
|
891
|
-
reserveWholeElement: boolean;
|
|
892
|
-
};
|
|
893
|
-
uiProperties?: {
|
|
894
|
-
shapeType: ShapeTypeEnumType$1;
|
|
895
|
-
labelPosition: Position$1;
|
|
896
|
-
seatLayout: number[];
|
|
897
|
-
icon: Icon$1;
|
|
898
|
-
image?: {
|
|
899
|
-
_id: string;
|
|
900
|
-
height: number;
|
|
901
|
-
width: number;
|
|
902
|
-
};
|
|
903
|
-
seatNumbering: Numbering$1;
|
|
904
|
-
};
|
|
905
|
-
}[];
|
|
906
|
-
default: boolean;
|
|
907
|
-
}[];
|
|
908
|
-
categories: {
|
|
909
|
-
_id: number;
|
|
910
|
-
title: string;
|
|
911
|
-
places: {
|
|
912
|
-
index: number;
|
|
913
|
-
label: string;
|
|
914
|
-
elementType: Type$1;
|
|
915
|
-
}[];
|
|
916
|
-
}[];
|
|
917
|
-
uncategorizedPlaces: {
|
|
918
|
-
index: number;
|
|
919
|
-
label: string;
|
|
920
|
-
elementType: Type$1;
|
|
921
|
-
}[];
|
|
922
|
-
}[];
|
|
835
|
+
plans: SeatingPlanNonNullableFields$1[];
|
|
923
836
|
}
|
|
924
837
|
interface GetSeatingPlanResponseNonNullableFields {
|
|
925
|
-
plan?:
|
|
926
|
-
sections: {
|
|
927
|
-
_id: number;
|
|
928
|
-
elements: {
|
|
929
|
-
_id: number;
|
|
930
|
-
type: Type$1;
|
|
931
|
-
sequencing?: {
|
|
932
|
-
startAt: string;
|
|
933
|
-
labels: string[];
|
|
934
|
-
};
|
|
935
|
-
overrides: {
|
|
936
|
-
index: number;
|
|
937
|
-
label: string;
|
|
938
|
-
elementType: Type$1;
|
|
939
|
-
}[];
|
|
940
|
-
places: {
|
|
941
|
-
index: number;
|
|
942
|
-
label: string;
|
|
943
|
-
elementType: Type$1;
|
|
944
|
-
}[];
|
|
945
|
-
reservationOptions?: {
|
|
946
|
-
reserveWholeElement: boolean;
|
|
947
|
-
};
|
|
948
|
-
uiProperties?: {
|
|
949
|
-
shapeType: ShapeTypeEnumType$1;
|
|
950
|
-
labelPosition: Position$1;
|
|
951
|
-
seatLayout: number[];
|
|
952
|
-
icon: Icon$1;
|
|
953
|
-
image?: {
|
|
954
|
-
_id: string;
|
|
955
|
-
height: number;
|
|
956
|
-
width: number;
|
|
957
|
-
};
|
|
958
|
-
seatNumbering: Numbering$1;
|
|
959
|
-
};
|
|
960
|
-
}[];
|
|
961
|
-
default: boolean;
|
|
962
|
-
}[];
|
|
963
|
-
categories: {
|
|
964
|
-
_id: number;
|
|
965
|
-
title: string;
|
|
966
|
-
places: {
|
|
967
|
-
index: number;
|
|
968
|
-
label: string;
|
|
969
|
-
elementType: Type$1;
|
|
970
|
-
}[];
|
|
971
|
-
}[];
|
|
972
|
-
uncategorizedPlaces: {
|
|
973
|
-
index: number;
|
|
974
|
-
label: string;
|
|
975
|
-
elementType: Type$1;
|
|
976
|
-
}[];
|
|
977
|
-
};
|
|
838
|
+
plan?: SeatingPlanNonNullableFields$1;
|
|
978
839
|
}
|
|
979
840
|
interface FindSeatingPlanResponseNonNullableFields {
|
|
980
|
-
plan?:
|
|
981
|
-
sections: {
|
|
982
|
-
_id: number;
|
|
983
|
-
elements: {
|
|
984
|
-
_id: number;
|
|
985
|
-
type: Type$1;
|
|
986
|
-
sequencing?: {
|
|
987
|
-
startAt: string;
|
|
988
|
-
labels: string[];
|
|
989
|
-
};
|
|
990
|
-
overrides: {
|
|
991
|
-
index: number;
|
|
992
|
-
label: string;
|
|
993
|
-
elementType: Type$1;
|
|
994
|
-
}[];
|
|
995
|
-
places: {
|
|
996
|
-
index: number;
|
|
997
|
-
label: string;
|
|
998
|
-
elementType: Type$1;
|
|
999
|
-
}[];
|
|
1000
|
-
reservationOptions?: {
|
|
1001
|
-
reserveWholeElement: boolean;
|
|
1002
|
-
};
|
|
1003
|
-
uiProperties?: {
|
|
1004
|
-
shapeType: ShapeTypeEnumType$1;
|
|
1005
|
-
labelPosition: Position$1;
|
|
1006
|
-
seatLayout: number[];
|
|
1007
|
-
icon: Icon$1;
|
|
1008
|
-
image?: {
|
|
1009
|
-
_id: string;
|
|
1010
|
-
height: number;
|
|
1011
|
-
width: number;
|
|
1012
|
-
};
|
|
1013
|
-
seatNumbering: Numbering$1;
|
|
1014
|
-
};
|
|
1015
|
-
}[];
|
|
1016
|
-
default: boolean;
|
|
1017
|
-
}[];
|
|
1018
|
-
categories: {
|
|
1019
|
-
_id: number;
|
|
1020
|
-
title: string;
|
|
1021
|
-
places: {
|
|
1022
|
-
index: number;
|
|
1023
|
-
label: string;
|
|
1024
|
-
elementType: Type$1;
|
|
1025
|
-
}[];
|
|
1026
|
-
}[];
|
|
1027
|
-
uncategorizedPlaces: {
|
|
1028
|
-
index: number;
|
|
1029
|
-
label: string;
|
|
1030
|
-
elementType: Type$1;
|
|
1031
|
-
}[];
|
|
1032
|
-
};
|
|
841
|
+
plan?: SeatingPlanNonNullableFields$1;
|
|
1033
842
|
}
|
|
1034
843
|
interface DeleteSeatingPlanResponseNonNullableFields {
|
|
1035
|
-
plan?:
|
|
1036
|
-
sections: {
|
|
1037
|
-
_id: number;
|
|
1038
|
-
elements: {
|
|
1039
|
-
_id: number;
|
|
1040
|
-
type: Type$1;
|
|
1041
|
-
sequencing?: {
|
|
1042
|
-
startAt: string;
|
|
1043
|
-
labels: string[];
|
|
1044
|
-
};
|
|
1045
|
-
overrides: {
|
|
1046
|
-
index: number;
|
|
1047
|
-
label: string;
|
|
1048
|
-
elementType: Type$1;
|
|
1049
|
-
}[];
|
|
1050
|
-
places: {
|
|
1051
|
-
index: number;
|
|
1052
|
-
label: string;
|
|
1053
|
-
elementType: Type$1;
|
|
1054
|
-
}[];
|
|
1055
|
-
reservationOptions?: {
|
|
1056
|
-
reserveWholeElement: boolean;
|
|
1057
|
-
};
|
|
1058
|
-
uiProperties?: {
|
|
1059
|
-
shapeType: ShapeTypeEnumType$1;
|
|
1060
|
-
labelPosition: Position$1;
|
|
1061
|
-
seatLayout: number[];
|
|
1062
|
-
icon: Icon$1;
|
|
1063
|
-
image?: {
|
|
1064
|
-
_id: string;
|
|
1065
|
-
height: number;
|
|
1066
|
-
width: number;
|
|
1067
|
-
};
|
|
1068
|
-
seatNumbering: Numbering$1;
|
|
1069
|
-
};
|
|
1070
|
-
}[];
|
|
1071
|
-
default: boolean;
|
|
1072
|
-
}[];
|
|
1073
|
-
categories: {
|
|
1074
|
-
_id: number;
|
|
1075
|
-
title: string;
|
|
1076
|
-
places: {
|
|
1077
|
-
index: number;
|
|
1078
|
-
label: string;
|
|
1079
|
-
elementType: Type$1;
|
|
1080
|
-
}[];
|
|
1081
|
-
}[];
|
|
1082
|
-
uncategorizedPlaces: {
|
|
1083
|
-
index: number;
|
|
1084
|
-
label: string;
|
|
1085
|
-
elementType: Type$1;
|
|
1086
|
-
}[];
|
|
1087
|
-
};
|
|
844
|
+
plan?: SeatingPlanNonNullableFields$1;
|
|
1088
845
|
}
|
|
1089
846
|
interface BaseEventMetadata$1 {
|
|
1090
847
|
/** App instance ID. */
|
|
@@ -1113,7 +870,7 @@ interface EventMetadata$1 extends BaseEventMetadata$1 {
|
|
|
1113
870
|
slug?: string;
|
|
1114
871
|
/** ID of the entity associated with the event. */
|
|
1115
872
|
entityId?: string;
|
|
1116
|
-
/** Event timestamp. */
|
|
873
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
1117
874
|
eventTime?: Date;
|
|
1118
875
|
/**
|
|
1119
876
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -1212,217 +969,115 @@ interface FindSeatingPlanOptions {
|
|
|
1212
969
|
seatingPlanMask?: SeatingPlanMask;
|
|
1213
970
|
}
|
|
1214
971
|
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
972
|
+
declare function createSeatingPlan$1(httpClient: HttpClient): CreateSeatingPlanSignature;
|
|
973
|
+
interface CreateSeatingPlanSignature {
|
|
974
|
+
/**
|
|
975
|
+
* Crates a seating plan
|
|
976
|
+
* @param - A plan to be created
|
|
977
|
+
* @returns The created plan
|
|
978
|
+
*/
|
|
979
|
+
(plan: SeatingPlan$1): Promise<SeatingPlan$1 & SeatingPlanNonNullableFields$1>;
|
|
1219
980
|
}
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
}
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
981
|
+
declare function updateSeatingPlan$1(httpClient: HttpClient): UpdateSeatingPlanSignature;
|
|
982
|
+
interface UpdateSeatingPlanSignature {
|
|
983
|
+
/**
|
|
984
|
+
* Updates the seating plan
|
|
985
|
+
* @returns The updated plan
|
|
986
|
+
*/
|
|
987
|
+
(options?: UpdateSeatingPlanOptions | undefined): Promise<SeatingPlan$1 & SeatingPlanNonNullableFields$1>;
|
|
988
|
+
}
|
|
989
|
+
declare function copySeatingPlan$1(httpClient: HttpClient): CopySeatingPlanSignature;
|
|
990
|
+
interface CopySeatingPlanSignature {
|
|
991
|
+
/**
|
|
992
|
+
* Copies the seating plan
|
|
993
|
+
* @param - The id of the plan to be copied
|
|
994
|
+
*/
|
|
995
|
+
(_id: string | null, options: CopySeatingPlanOptions): Promise<CopySeatingPlanResponse & CopySeatingPlanResponseNonNullableFields>;
|
|
996
|
+
}
|
|
997
|
+
declare function querySeatingPlan$1(httpClient: HttpClient): QuerySeatingPlanSignature;
|
|
998
|
+
interface QuerySeatingPlanSignature {
|
|
999
|
+
/**
|
|
1000
|
+
* Lists seating plans by provided query request
|
|
1001
|
+
*/
|
|
1002
|
+
(options?: QuerySeatingPlanOptions | undefined): PlansQueryBuilder;
|
|
1003
|
+
}
|
|
1004
|
+
declare function getSeatingPlan$1(httpClient: HttpClient): GetSeatingPlanSignature;
|
|
1005
|
+
interface GetSeatingPlanSignature {
|
|
1006
|
+
/**
|
|
1007
|
+
* Returns the seating plan. Fails of not fond.
|
|
1008
|
+
* @param - The id of the plan
|
|
1009
|
+
* @returns The plan
|
|
1010
|
+
*/
|
|
1011
|
+
(_id: string | null, options?: GetSeatingPlanOptions | undefined): Promise<SeatingPlan$1 & SeatingPlanNonNullableFields$1>;
|
|
1012
|
+
}
|
|
1013
|
+
declare function findSeatingPlan$1(httpClient: HttpClient): FindSeatingPlanSignature;
|
|
1014
|
+
interface FindSeatingPlanSignature {
|
|
1015
|
+
/**
|
|
1016
|
+
* Returns the first seating plan found by filter request.
|
|
1017
|
+
* @param - The filter of the plan
|
|
1018
|
+
*/
|
|
1019
|
+
(filter: Record<string, any> | null, options?: FindSeatingPlanOptions | undefined): Promise<FindSeatingPlanResponse & FindSeatingPlanResponseNonNullableFields>;
|
|
1020
|
+
}
|
|
1021
|
+
declare function deleteSeatingPlan$1(httpClient: HttpClient): DeleteSeatingPlanSignature;
|
|
1022
|
+
interface DeleteSeatingPlanSignature {
|
|
1023
|
+
/**
|
|
1024
|
+
* Deletes the seating plan.
|
|
1025
|
+
* @param - The id of the plan
|
|
1026
|
+
*/
|
|
1027
|
+
(_id: string | null): Promise<DeleteSeatingPlanResponse & DeleteSeatingPlanResponseNonNullableFields>;
|
|
1028
|
+
}
|
|
1029
|
+
declare function updateSeatingPlanThumbnail$1(httpClient: HttpClient): UpdateSeatingPlanThumbnailSignature;
|
|
1030
|
+
interface UpdateSeatingPlanThumbnailSignature {
|
|
1031
|
+
/**
|
|
1032
|
+
* Updates seating plan thumbnail.
|
|
1033
|
+
*/
|
|
1034
|
+
(thumbnail: SeatingPlanThumbnail): Promise<UpdateSeatingPlanThumbnailResponse>;
|
|
1035
|
+
}
|
|
1036
|
+
declare function getSeatingPlanThumbnail$1(httpClient: HttpClient): GetSeatingPlanThumbnailSignature;
|
|
1037
|
+
interface GetSeatingPlanThumbnailSignature {
|
|
1038
|
+
/**
|
|
1039
|
+
* Get seating plan thumbnail.
|
|
1040
|
+
*/
|
|
1041
|
+
(_id: string | null): Promise<GetSeatingPlanThumbnailResponse>;
|
|
1253
1042
|
}
|
|
1043
|
+
declare const onSeatingPlanCreated$1: EventDefinition<SeatingPlanCreatedEnvelope, "wix.seating.v1.seating_plan_created">;
|
|
1044
|
+
declare const onSeatingPlanUpdated$1: EventDefinition<SeatingPlanUpdatedEnvelope, "wix.seating.v1.seating_plan_updated">;
|
|
1045
|
+
declare const onSeatingPlanDeleted$1: EventDefinition<SeatingPlanDeletedEnvelope, "wix.seating.v1.seating_plan_deleted">;
|
|
1254
1046
|
|
|
1255
|
-
declare
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
width: number;
|
|
1290
|
-
} | undefined;
|
|
1291
|
-
seatNumbering: Numbering$1;
|
|
1292
|
-
} | undefined;
|
|
1293
|
-
}[];
|
|
1294
|
-
default: boolean;
|
|
1295
|
-
}[];
|
|
1296
|
-
categories: {
|
|
1297
|
-
_id: number;
|
|
1298
|
-
title: string;
|
|
1299
|
-
places: {
|
|
1300
|
-
index: number;
|
|
1301
|
-
label: string;
|
|
1302
|
-
elementType: Type$1;
|
|
1303
|
-
}[];
|
|
1304
|
-
}[];
|
|
1305
|
-
uncategorizedPlaces: {
|
|
1306
|
-
index: number;
|
|
1307
|
-
label: string;
|
|
1308
|
-
elementType: Type$1;
|
|
1309
|
-
}[];
|
|
1310
|
-
}>;
|
|
1311
|
-
declare function updateSeatingPlan(httpClient: HttpClient): (options?: UpdateSeatingPlanOptions) => Promise<SeatingPlan$1 & {
|
|
1312
|
-
sections: {
|
|
1313
|
-
_id: number;
|
|
1314
|
-
elements: {
|
|
1315
|
-
_id: number;
|
|
1316
|
-
type: Type$1;
|
|
1317
|
-
sequencing?: {
|
|
1318
|
-
startAt: string;
|
|
1319
|
-
labels: string[];
|
|
1320
|
-
} | undefined;
|
|
1321
|
-
overrides: {
|
|
1322
|
-
index: number;
|
|
1323
|
-
label: string;
|
|
1324
|
-
elementType: Type$1;
|
|
1325
|
-
}[];
|
|
1326
|
-
places: {
|
|
1327
|
-
index: number;
|
|
1328
|
-
label: string;
|
|
1329
|
-
elementType: Type$1;
|
|
1330
|
-
}[];
|
|
1331
|
-
reservationOptions?: {
|
|
1332
|
-
reserveWholeElement: boolean;
|
|
1333
|
-
} | undefined;
|
|
1334
|
-
uiProperties?: {
|
|
1335
|
-
shapeType: ShapeTypeEnumType$1;
|
|
1336
|
-
labelPosition: Position$1;
|
|
1337
|
-
seatLayout: number[];
|
|
1338
|
-
icon: Icon$1;
|
|
1339
|
-
image?: {
|
|
1340
|
-
_id: string;
|
|
1341
|
-
height: number;
|
|
1342
|
-
width: number;
|
|
1343
|
-
} | undefined;
|
|
1344
|
-
seatNumbering: Numbering$1;
|
|
1345
|
-
} | undefined;
|
|
1346
|
-
}[];
|
|
1347
|
-
default: boolean;
|
|
1348
|
-
}[];
|
|
1349
|
-
categories: {
|
|
1350
|
-
_id: number;
|
|
1351
|
-
title: string;
|
|
1352
|
-
places: {
|
|
1353
|
-
index: number;
|
|
1354
|
-
label: string;
|
|
1355
|
-
elementType: Type$1;
|
|
1356
|
-
}[];
|
|
1357
|
-
}[];
|
|
1358
|
-
uncategorizedPlaces: {
|
|
1359
|
-
index: number;
|
|
1360
|
-
label: string;
|
|
1361
|
-
elementType: Type$1;
|
|
1362
|
-
}[];
|
|
1363
|
-
}>;
|
|
1364
|
-
declare function copySeatingPlan(httpClient: HttpClient): (_id: string | null, options: CopySeatingPlanOptions) => Promise<CopySeatingPlanResponse & CopySeatingPlanResponseNonNullableFields>;
|
|
1365
|
-
declare function querySeatingPlan(httpClient: HttpClient): (options?: QuerySeatingPlanOptions) => PlansQueryBuilder;
|
|
1366
|
-
declare function getSeatingPlan(httpClient: HttpClient): (_id: string | null, options?: GetSeatingPlanOptions) => Promise<SeatingPlan$1 & {
|
|
1367
|
-
sections: {
|
|
1368
|
-
_id: number;
|
|
1369
|
-
elements: {
|
|
1370
|
-
_id: number;
|
|
1371
|
-
type: Type$1;
|
|
1372
|
-
sequencing?: {
|
|
1373
|
-
startAt: string;
|
|
1374
|
-
labels: string[];
|
|
1375
|
-
} | undefined;
|
|
1376
|
-
overrides: {
|
|
1377
|
-
index: number;
|
|
1378
|
-
label: string;
|
|
1379
|
-
elementType: Type$1;
|
|
1380
|
-
}[];
|
|
1381
|
-
places: {
|
|
1382
|
-
index: number;
|
|
1383
|
-
label: string;
|
|
1384
|
-
elementType: Type$1;
|
|
1385
|
-
}[];
|
|
1386
|
-
reservationOptions?: {
|
|
1387
|
-
reserveWholeElement: boolean;
|
|
1388
|
-
} | undefined;
|
|
1389
|
-
uiProperties?: {
|
|
1390
|
-
shapeType: ShapeTypeEnumType$1;
|
|
1391
|
-
labelPosition: Position$1;
|
|
1392
|
-
seatLayout: number[];
|
|
1393
|
-
icon: Icon$1;
|
|
1394
|
-
image?: {
|
|
1395
|
-
_id: string;
|
|
1396
|
-
height: number;
|
|
1397
|
-
width: number;
|
|
1398
|
-
} | undefined;
|
|
1399
|
-
seatNumbering: Numbering$1;
|
|
1400
|
-
} | undefined;
|
|
1401
|
-
}[];
|
|
1402
|
-
default: boolean;
|
|
1403
|
-
}[];
|
|
1404
|
-
categories: {
|
|
1405
|
-
_id: number;
|
|
1406
|
-
title: string;
|
|
1407
|
-
places: {
|
|
1408
|
-
index: number;
|
|
1409
|
-
label: string;
|
|
1410
|
-
elementType: Type$1;
|
|
1411
|
-
}[];
|
|
1412
|
-
}[];
|
|
1413
|
-
uncategorizedPlaces: {
|
|
1414
|
-
index: number;
|
|
1415
|
-
label: string;
|
|
1416
|
-
elementType: Type$1;
|
|
1417
|
-
}[];
|
|
1418
|
-
}>;
|
|
1419
|
-
declare function findSeatingPlan(httpClient: HttpClient): (filter: Record<string, any> | null, options?: FindSeatingPlanOptions) => Promise<FindSeatingPlanResponse & FindSeatingPlanResponseNonNullableFields>;
|
|
1420
|
-
declare function deleteSeatingPlan(httpClient: HttpClient): (_id: string | null) => Promise<DeleteSeatingPlanResponse & DeleteSeatingPlanResponseNonNullableFields>;
|
|
1421
|
-
declare function updateSeatingPlanThumbnail(httpClient: HttpClient): (thumbnail: SeatingPlanThumbnail) => Promise<UpdateSeatingPlanThumbnailResponse>;
|
|
1422
|
-
declare function getSeatingPlanThumbnail(httpClient: HttpClient): (_id: string | null) => Promise<GetSeatingPlanThumbnailResponse>;
|
|
1423
|
-
declare const onSeatingPlanCreated: EventDefinition<SeatingPlanCreatedEnvelope, "wix.seating.v1.seating_plan_created">;
|
|
1424
|
-
declare const onSeatingPlanUpdated: EventDefinition<SeatingPlanUpdatedEnvelope, "wix.seating.v1.seating_plan_updated">;
|
|
1425
|
-
declare const onSeatingPlanDeleted: EventDefinition<SeatingPlanDeletedEnvelope, "wix.seating.v1.seating_plan_deleted">;
|
|
1047
|
+
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
1048
|
+
|
|
1049
|
+
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
1050
|
+
|
|
1051
|
+
type _publicCreateSeatingPlanType = typeof createSeatingPlan$1;
|
|
1052
|
+
declare const createSeatingPlan: ReturnType<typeof createRESTModule$1<_publicCreateSeatingPlanType>>;
|
|
1053
|
+
type _publicUpdateSeatingPlanType = typeof updateSeatingPlan$1;
|
|
1054
|
+
declare const updateSeatingPlan: ReturnType<typeof createRESTModule$1<_publicUpdateSeatingPlanType>>;
|
|
1055
|
+
type _publicCopySeatingPlanType = typeof copySeatingPlan$1;
|
|
1056
|
+
declare const copySeatingPlan: ReturnType<typeof createRESTModule$1<_publicCopySeatingPlanType>>;
|
|
1057
|
+
type _publicQuerySeatingPlanType = typeof querySeatingPlan$1;
|
|
1058
|
+
declare const querySeatingPlan: ReturnType<typeof createRESTModule$1<_publicQuerySeatingPlanType>>;
|
|
1059
|
+
type _publicGetSeatingPlanType = typeof getSeatingPlan$1;
|
|
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>>;
|
|
1069
|
+
|
|
1070
|
+
type _publicOnSeatingPlanCreatedType = typeof onSeatingPlanCreated$1;
|
|
1071
|
+
/** */
|
|
1072
|
+
declare const onSeatingPlanCreated: ReturnType<typeof createEventModule$1<_publicOnSeatingPlanCreatedType>>;
|
|
1073
|
+
|
|
1074
|
+
type _publicOnSeatingPlanUpdatedType = typeof onSeatingPlanUpdated$1;
|
|
1075
|
+
/** */
|
|
1076
|
+
declare const onSeatingPlanUpdated: ReturnType<typeof createEventModule$1<_publicOnSeatingPlanUpdatedType>>;
|
|
1077
|
+
|
|
1078
|
+
type _publicOnSeatingPlanDeletedType = typeof onSeatingPlanDeleted$1;
|
|
1079
|
+
/** */
|
|
1080
|
+
declare const onSeatingPlanDeleted: ReturnType<typeof createEventModule$1<_publicOnSeatingPlanDeletedType>>;
|
|
1426
1081
|
|
|
1427
1082
|
type index_d$1_CapacityExceededViolation = CapacityExceededViolation;
|
|
1428
1083
|
type index_d$1_CopySeatingPlanOptions = CopySeatingPlanOptions;
|
|
@@ -1472,6 +1127,18 @@ type index_d$1_UpdateSeatingPlanResponse = UpdateSeatingPlanResponse;
|
|
|
1472
1127
|
type index_d$1_UpdateSeatingPlanResponseNonNullableFields = UpdateSeatingPlanResponseNonNullableFields;
|
|
1473
1128
|
type index_d$1_UpdateSeatingPlanThumbnailRequest = UpdateSeatingPlanThumbnailRequest;
|
|
1474
1129
|
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
|
+
type index_d$1__publicOnSeatingPlanCreatedType = _publicOnSeatingPlanCreatedType;
|
|
1137
|
+
type index_d$1__publicOnSeatingPlanDeletedType = _publicOnSeatingPlanDeletedType;
|
|
1138
|
+
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;
|
|
1475
1142
|
declare const index_d$1_copySeatingPlan: typeof copySeatingPlan;
|
|
1476
1143
|
declare const index_d$1_createSeatingPlan: typeof createSeatingPlan;
|
|
1477
1144
|
declare const index_d$1_deleteSeatingPlan: typeof deleteSeatingPlan;
|
|
@@ -1485,7 +1152,7 @@ declare const index_d$1_querySeatingPlan: typeof querySeatingPlan;
|
|
|
1485
1152
|
declare const index_d$1_updateSeatingPlan: typeof updateSeatingPlan;
|
|
1486
1153
|
declare const index_d$1_updateSeatingPlanThumbnail: typeof updateSeatingPlanThumbnail;
|
|
1487
1154
|
declare namespace index_d$1 {
|
|
1488
|
-
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, 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 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,
|
|
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$1__publicCopySeatingPlanType as _publicCopySeatingPlanType, type index_d$1__publicCreateSeatingPlanType as _publicCreateSeatingPlanType, type index_d$1__publicDeleteSeatingPlanType as _publicDeleteSeatingPlanType, type index_d$1__publicFindSeatingPlanType as _publicFindSeatingPlanType, type index_d$1__publicGetSeatingPlanThumbnailType as _publicGetSeatingPlanThumbnailType, type index_d$1__publicGetSeatingPlanType as _publicGetSeatingPlanType, type index_d$1__publicOnSeatingPlanCreatedType as _publicOnSeatingPlanCreatedType, type index_d$1__publicOnSeatingPlanDeletedType as _publicOnSeatingPlanDeletedType, type index_d$1__publicOnSeatingPlanUpdatedType as _publicOnSeatingPlanUpdatedType, type index_d$1__publicQuerySeatingPlanType as _publicQuerySeatingPlanType, type index_d$1__publicUpdateSeatingPlanThumbnailType as _publicUpdateSeatingPlanThumbnailType, type index_d$1__publicUpdateSeatingPlanType as _publicUpdateSeatingPlanType, 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 };
|
|
1489
1156
|
}
|
|
1490
1157
|
|
|
1491
1158
|
interface SeatingReservation {
|
|
@@ -1688,17 +1355,15 @@ interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
1688
1355
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
1689
1356
|
cursorPaging?: CursorPaging;
|
|
1690
1357
|
/**
|
|
1691
|
-
* Filter object
|
|
1692
|
-
*
|
|
1693
|
-
*
|
|
1694
|
-
* "fieldName2":{"$operator":"value2"}
|
|
1695
|
-
* }`
|
|
1696
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
1358
|
+
* Filter object.
|
|
1359
|
+
*
|
|
1360
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
1697
1361
|
*/
|
|
1698
1362
|
filter?: Record<string, any> | null;
|
|
1699
1363
|
/**
|
|
1700
|
-
* Sort object
|
|
1701
|
-
*
|
|
1364
|
+
* Sort object.
|
|
1365
|
+
*
|
|
1366
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
1702
1367
|
*/
|
|
1703
1368
|
sort?: Sorting[];
|
|
1704
1369
|
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
@@ -1925,11 +1590,7 @@ interface Sequencing {
|
|
|
1925
1590
|
reverseOrder?: boolean | null;
|
|
1926
1591
|
}
|
|
1927
1592
|
interface Place {
|
|
1928
|
-
/**
|
|
1929
|
-
* Local id of the place in the sequence
|
|
1930
|
-
* @deprecated
|
|
1931
|
-
* @targetRemovalDate 2024-07-01
|
|
1932
|
-
*/
|
|
1593
|
+
/** Local id of the place in the sequence */
|
|
1933
1594
|
index?: number;
|
|
1934
1595
|
/**
|
|
1935
1596
|
* Generated composite unique id in the seating plan.
|
|
@@ -1953,6 +1614,17 @@ interface Place {
|
|
|
1953
1614
|
* @readonly
|
|
1954
1615
|
*/
|
|
1955
1616
|
categoryId?: number | null;
|
|
1617
|
+
/** Place type */
|
|
1618
|
+
type?: PlaceTypeEnumType;
|
|
1619
|
+
}
|
|
1620
|
+
declare enum PlaceTypeEnumType {
|
|
1621
|
+
UNKNOWN_PROPERTY = "UNKNOWN_PROPERTY",
|
|
1622
|
+
STANDARD = "STANDARD",
|
|
1623
|
+
WHEELCHAIR = "WHEELCHAIR",
|
|
1624
|
+
ACCESSIBLE = "ACCESSIBLE",
|
|
1625
|
+
COMPANION = "COMPANION",
|
|
1626
|
+
OBSTRUCTED = "OBSTRUCTED",
|
|
1627
|
+
DISCOUNT = "DISCOUNT"
|
|
1956
1628
|
}
|
|
1957
1629
|
interface ReservationOptions {
|
|
1958
1630
|
/** Indicates whether the entire element must be reserved */
|
|
@@ -2185,7 +1857,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
2185
1857
|
slug?: string;
|
|
2186
1858
|
/** ID of the entity associated with the event. */
|
|
2187
1859
|
entityId?: string;
|
|
2188
|
-
/** Event timestamp. */
|
|
1860
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2189
1861
|
eventTime?: Date;
|
|
2190
1862
|
/**
|
|
2191
1863
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -2272,97 +1944,106 @@ declare enum WebhookIdentityType {
|
|
|
2272
1944
|
WIX_USER = "WIX_USER",
|
|
2273
1945
|
APP = "APP"
|
|
2274
1946
|
}
|
|
1947
|
+
interface PlaceReservationNonNullableFields {
|
|
1948
|
+
_id: string;
|
|
1949
|
+
}
|
|
1950
|
+
interface SeatingReservationNonNullableFields {
|
|
1951
|
+
reservedPlaces: PlaceReservationNonNullableFields[];
|
|
1952
|
+
}
|
|
2275
1953
|
interface CreateSeatingReservationResponseNonNullableFields {
|
|
2276
|
-
reservation?:
|
|
2277
|
-
reservedPlaces: {
|
|
2278
|
-
_id: string;
|
|
2279
|
-
}[];
|
|
2280
|
-
};
|
|
1954
|
+
reservation?: SeatingReservationNonNullableFields;
|
|
2281
1955
|
}
|
|
2282
1956
|
interface GetReservationResponseNonNullableFields {
|
|
2283
|
-
reservation?:
|
|
2284
|
-
reservedPlaces: {
|
|
2285
|
-
_id: string;
|
|
2286
|
-
}[];
|
|
2287
|
-
};
|
|
1957
|
+
reservation?: SeatingReservationNonNullableFields;
|
|
2288
1958
|
}
|
|
2289
1959
|
interface QuerySeatingReservationResponseNonNullableFields {
|
|
2290
|
-
reservations:
|
|
2291
|
-
reservedPlaces: {
|
|
2292
|
-
_id: string;
|
|
2293
|
-
}[];
|
|
2294
|
-
}[];
|
|
1960
|
+
reservations: SeatingReservationNonNullableFields[];
|
|
2295
1961
|
}
|
|
2296
1962
|
interface DeleteSeatingReservationResponseNonNullableFields {
|
|
2297
|
-
reservation?:
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
}
|
|
2303
|
-
interface
|
|
2304
|
-
|
|
1963
|
+
reservation?: SeatingReservationNonNullableFields;
|
|
1964
|
+
}
|
|
1965
|
+
interface SequencingNonNullableFields {
|
|
1966
|
+
startAt: string;
|
|
1967
|
+
labels: string[];
|
|
1968
|
+
}
|
|
1969
|
+
interface PlaceNonNullableFields {
|
|
1970
|
+
index: number;
|
|
1971
|
+
label: string;
|
|
1972
|
+
elementType: Type;
|
|
1973
|
+
type: PlaceTypeEnumType;
|
|
1974
|
+
}
|
|
1975
|
+
interface ReservationOptionsNonNullableFields {
|
|
1976
|
+
reserveWholeElement: boolean;
|
|
1977
|
+
}
|
|
1978
|
+
interface ImageNonNullableFields {
|
|
1979
|
+
_id: string;
|
|
1980
|
+
height: number;
|
|
1981
|
+
width: number;
|
|
1982
|
+
}
|
|
1983
|
+
interface ElementUiPropertiesNonNullableFields {
|
|
1984
|
+
shapeType: ShapeTypeEnumType;
|
|
1985
|
+
labelPosition: Position;
|
|
1986
|
+
seatLayout: number[];
|
|
1987
|
+
icon: Icon;
|
|
1988
|
+
image?: ImageNonNullableFields;
|
|
1989
|
+
seatNumbering: Numbering;
|
|
1990
|
+
}
|
|
1991
|
+
interface RowElementUiPropertiesNonNullableFields {
|
|
1992
|
+
labelPosition: Position;
|
|
1993
|
+
seatNumbering: Numbering;
|
|
1994
|
+
}
|
|
1995
|
+
interface RowElementNonNullableFields {
|
|
1996
|
+
_id: number;
|
|
1997
|
+
sequencing?: SequencingNonNullableFields;
|
|
1998
|
+
uiProperties?: RowElementUiPropertiesNonNullableFields;
|
|
1999
|
+
}
|
|
2000
|
+
interface VerticalSequencingNonNullableFields {
|
|
2001
|
+
startAt: string;
|
|
2002
|
+
rowNumbering: Numbering;
|
|
2003
|
+
}
|
|
2004
|
+
interface MultiRowPropertiesNonNullableFields {
|
|
2005
|
+
rows: RowElementNonNullableFields[];
|
|
2006
|
+
verticalSequencing?: VerticalSequencingNonNullableFields;
|
|
2007
|
+
}
|
|
2008
|
+
interface ElementNonNullableFields {
|
|
2009
|
+
_id: number;
|
|
2010
|
+
type: Type;
|
|
2011
|
+
sequencing?: SequencingNonNullableFields;
|
|
2012
|
+
overrides: PlaceNonNullableFields[];
|
|
2013
|
+
places: PlaceNonNullableFields[];
|
|
2014
|
+
reservationOptions?: ReservationOptionsNonNullableFields;
|
|
2015
|
+
uiProperties?: ElementUiPropertiesNonNullableFields;
|
|
2016
|
+
multiRowProperties?: MultiRowPropertiesNonNullableFields;
|
|
2017
|
+
}
|
|
2018
|
+
interface SectionNonNullableFields {
|
|
2019
|
+
_id: number;
|
|
2020
|
+
elements: ElementNonNullableFields[];
|
|
2021
|
+
default: boolean;
|
|
2022
|
+
}
|
|
2023
|
+
interface CategoryNonNullableFields {
|
|
2024
|
+
_id: number;
|
|
2025
|
+
title: string;
|
|
2026
|
+
places: PlaceNonNullableFields[];
|
|
2027
|
+
}
|
|
2028
|
+
interface ElementGroupNonNullableFields {
|
|
2029
|
+
_id: number;
|
|
2030
|
+
}
|
|
2031
|
+
interface SeatingPlanNonNullableFields {
|
|
2032
|
+
sections: SectionNonNullableFields[];
|
|
2033
|
+
categories: CategoryNonNullableFields[];
|
|
2034
|
+
uncategorizedPlaces: PlaceNonNullableFields[];
|
|
2035
|
+
elementGroups: ElementGroupNonNullableFields[];
|
|
2036
|
+
}
|
|
2037
|
+
interface PlaceReservationDetailsNonNullableFields {
|
|
2038
|
+
placeId: string;
|
|
2039
|
+
occupied: number;
|
|
2040
|
+
}
|
|
2041
|
+
interface SeatingReservationsSummaryNonNullableFields {
|
|
2042
|
+
places: PlaceReservationDetailsNonNullableFields[];
|
|
2305
2043
|
}
|
|
2306
2044
|
interface GetSeatingReservationsSummaryResponseNonNullableFields {
|
|
2307
|
-
plan?:
|
|
2308
|
-
|
|
2309
|
-
_id: number;
|
|
2310
|
-
elements: {
|
|
2311
|
-
_id: number;
|
|
2312
|
-
type: Type;
|
|
2313
|
-
sequencing?: {
|
|
2314
|
-
startAt: string;
|
|
2315
|
-
labels: string[];
|
|
2316
|
-
};
|
|
2317
|
-
overrides: {
|
|
2318
|
-
index: number;
|
|
2319
|
-
label: string;
|
|
2320
|
-
elementType: Type;
|
|
2321
|
-
}[];
|
|
2322
|
-
places: {
|
|
2323
|
-
index: number;
|
|
2324
|
-
label: string;
|
|
2325
|
-
elementType: Type;
|
|
2326
|
-
}[];
|
|
2327
|
-
reservationOptions?: {
|
|
2328
|
-
reserveWholeElement: boolean;
|
|
2329
|
-
};
|
|
2330
|
-
uiProperties?: {
|
|
2331
|
-
shapeType: ShapeTypeEnumType;
|
|
2332
|
-
labelPosition: Position;
|
|
2333
|
-
seatLayout: number[];
|
|
2334
|
-
icon: Icon;
|
|
2335
|
-
image?: {
|
|
2336
|
-
_id: string;
|
|
2337
|
-
height: number;
|
|
2338
|
-
width: number;
|
|
2339
|
-
};
|
|
2340
|
-
seatNumbering: Numbering;
|
|
2341
|
-
};
|
|
2342
|
-
}[];
|
|
2343
|
-
default: boolean;
|
|
2344
|
-
}[];
|
|
2345
|
-
categories: {
|
|
2346
|
-
_id: number;
|
|
2347
|
-
title: string;
|
|
2348
|
-
places: {
|
|
2349
|
-
index: number;
|
|
2350
|
-
label: string;
|
|
2351
|
-
elementType: Type;
|
|
2352
|
-
}[];
|
|
2353
|
-
}[];
|
|
2354
|
-
uncategorizedPlaces: {
|
|
2355
|
-
index: number;
|
|
2356
|
-
label: string;
|
|
2357
|
-
elementType: Type;
|
|
2358
|
-
}[];
|
|
2359
|
-
};
|
|
2360
|
-
seatingReservationsSummary?: {
|
|
2361
|
-
places: {
|
|
2362
|
-
placeId: string;
|
|
2363
|
-
occupied: number;
|
|
2364
|
-
}[];
|
|
2365
|
-
};
|
|
2045
|
+
plan?: SeatingPlanNonNullableFields;
|
|
2046
|
+
seatingReservationsSummary?: SeatingReservationsSummaryNonNullableFields;
|
|
2366
2047
|
}
|
|
2367
2048
|
interface BaseEventMetadata {
|
|
2368
2049
|
/** App instance ID. */
|
|
@@ -2391,7 +2072,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
2391
2072
|
slug?: string;
|
|
2392
2073
|
/** ID of the entity associated with the event. */
|
|
2393
2074
|
entityId?: string;
|
|
2394
|
-
/** Event timestamp. */
|
|
2075
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2395
2076
|
eventTime?: Date;
|
|
2396
2077
|
/**
|
|
2397
2078
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -2452,25 +2133,75 @@ interface GetSeatingCategoriesSummaryOptions {
|
|
|
2452
2133
|
externalId?: string[];
|
|
2453
2134
|
}
|
|
2454
2135
|
|
|
2455
|
-
declare
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
}
|
|
2463
|
-
declare function getReservation(httpClient: HttpClient):
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
declare
|
|
2473
|
-
|
|
2136
|
+
declare function createSeatingReservation$1(httpClient: HttpClient): CreateSeatingReservationSignature;
|
|
2137
|
+
interface CreateSeatingReservationSignature {
|
|
2138
|
+
/**
|
|
2139
|
+
* Creates a seating reservation
|
|
2140
|
+
* @returns Created reservation
|
|
2141
|
+
*/
|
|
2142
|
+
(options?: CreateSeatingReservationOptions | undefined): Promise<SeatingReservation & SeatingReservationNonNullableFields>;
|
|
2143
|
+
}
|
|
2144
|
+
declare function getReservation$1(httpClient: HttpClient): GetReservationSignature;
|
|
2145
|
+
interface GetReservationSignature {
|
|
2146
|
+
/**
|
|
2147
|
+
* Returns available seat counts by category id
|
|
2148
|
+
* @param - The id of the reservation to return
|
|
2149
|
+
* @returns Created reservation
|
|
2150
|
+
*/
|
|
2151
|
+
(_id: string | null): Promise<SeatingReservation & SeatingReservationNonNullableFields>;
|
|
2152
|
+
}
|
|
2153
|
+
declare function querySeatingReservation$1(httpClient: HttpClient): QuerySeatingReservationSignature;
|
|
2154
|
+
interface QuerySeatingReservationSignature {
|
|
2155
|
+
/**
|
|
2156
|
+
* Lists seating reservations by query request
|
|
2157
|
+
*/
|
|
2158
|
+
(): ReservationsQueryBuilder;
|
|
2159
|
+
}
|
|
2160
|
+
declare function deleteSeatingReservation$1(httpClient: HttpClient): DeleteSeatingReservationSignature;
|
|
2161
|
+
interface DeleteSeatingReservationSignature {
|
|
2162
|
+
/**
|
|
2163
|
+
* Deletes the seating reservation
|
|
2164
|
+
* @param - The id of the reservation to delete
|
|
2165
|
+
*/
|
|
2166
|
+
(_id: string | null): Promise<DeleteSeatingReservationResponse & DeleteSeatingReservationResponseNonNullableFields>;
|
|
2167
|
+
}
|
|
2168
|
+
declare function getSeatingCategoriesSummary$1(httpClient: HttpClient): GetSeatingCategoriesSummarySignature;
|
|
2169
|
+
interface GetSeatingCategoriesSummarySignature {
|
|
2170
|
+
/** */
|
|
2171
|
+
(options?: GetSeatingCategoriesSummaryOptions | undefined): Promise<GetSeatingCategoriesSummaryResponse>;
|
|
2172
|
+
}
|
|
2173
|
+
declare function getSeatingReservationsSummary$1(httpClient: HttpClient): GetSeatingReservationsSummarySignature;
|
|
2174
|
+
interface GetSeatingReservationsSummarySignature {
|
|
2175
|
+
/** @param - Filter for seating plan */
|
|
2176
|
+
(filter: Record<string, any> | null): Promise<GetSeatingReservationsSummaryResponse & GetSeatingReservationsSummaryResponseNonNullableFields>;
|
|
2177
|
+
}
|
|
2178
|
+
declare const onSeatingReservationCreated$1: EventDefinition<SeatingReservationCreatedEnvelope, "wix.seating.v1.seating_reservation_created">;
|
|
2179
|
+
declare const onSeatingReservationDeleted$1: EventDefinition<SeatingReservationDeletedEnvelope, "wix.seating.v1.seating_reservation_deleted">;
|
|
2180
|
+
|
|
2181
|
+
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
2182
|
+
|
|
2183
|
+
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
2184
|
+
|
|
2185
|
+
type _publicCreateSeatingReservationType = typeof createSeatingReservation$1;
|
|
2186
|
+
declare const createSeatingReservation: ReturnType<typeof createRESTModule<_publicCreateSeatingReservationType>>;
|
|
2187
|
+
type _publicGetReservationType = typeof getReservation$1;
|
|
2188
|
+
declare const getReservation: ReturnType<typeof createRESTModule<_publicGetReservationType>>;
|
|
2189
|
+
type _publicQuerySeatingReservationType = typeof querySeatingReservation$1;
|
|
2190
|
+
declare const querySeatingReservation: ReturnType<typeof createRESTModule<_publicQuerySeatingReservationType>>;
|
|
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>>;
|
|
2197
|
+
|
|
2198
|
+
type _publicOnSeatingReservationCreatedType = typeof onSeatingReservationCreated$1;
|
|
2199
|
+
/** */
|
|
2200
|
+
declare const onSeatingReservationCreated: ReturnType<typeof createEventModule<_publicOnSeatingReservationCreatedType>>;
|
|
2201
|
+
|
|
2202
|
+
type _publicOnSeatingReservationDeletedType = typeof onSeatingReservationDeleted$1;
|
|
2203
|
+
/** */
|
|
2204
|
+
declare const onSeatingReservationDeleted: ReturnType<typeof createEventModule<_publicOnSeatingReservationDeletedType>>;
|
|
2474
2205
|
|
|
2475
2206
|
type index_d_ActionEvent = ActionEvent;
|
|
2476
2207
|
type index_d_App = App;
|
|
@@ -2508,7 +2239,6 @@ type index_d_GetReservedPlacesResponse = GetReservedPlacesResponse;
|
|
|
2508
2239
|
type index_d_GetSeatingCategoriesSummaryOptions = GetSeatingCategoriesSummaryOptions;
|
|
2509
2240
|
type index_d_GetSeatingCategoriesSummaryRequest = GetSeatingCategoriesSummaryRequest;
|
|
2510
2241
|
type index_d_GetSeatingCategoriesSummaryResponse = GetSeatingCategoriesSummaryResponse;
|
|
2511
|
-
type index_d_GetSeatingCategoriesSummaryResponseNonNullableFields = GetSeatingCategoriesSummaryResponseNonNullableFields;
|
|
2512
2242
|
type index_d_GetSeatingReservationsSummaryRequest = GetSeatingReservationsSummaryRequest;
|
|
2513
2243
|
type index_d_GetSeatingReservationsSummaryResponse = GetSeatingReservationsSummaryResponse;
|
|
2514
2244
|
type index_d_GetSeatingReservationsSummaryResponseNonNullableFields = GetSeatingReservationsSummaryResponseNonNullableFields;
|
|
@@ -2529,6 +2259,8 @@ type index_d_PagingMetadataV2 = PagingMetadataV2;
|
|
|
2529
2259
|
type index_d_Place = Place;
|
|
2530
2260
|
type index_d_PlaceReservation = PlaceReservation;
|
|
2531
2261
|
type index_d_PlaceReservationDetails = PlaceReservationDetails;
|
|
2262
|
+
type index_d_PlaceTypeEnumType = PlaceTypeEnumType;
|
|
2263
|
+
declare const index_d_PlaceTypeEnumType: typeof PlaceTypeEnumType;
|
|
2532
2264
|
type index_d_Places = Places;
|
|
2533
2265
|
type index_d_Position = Position;
|
|
2534
2266
|
declare const index_d_Position: typeof Position;
|
|
@@ -2552,6 +2284,7 @@ type index_d_SeatingPlanUiProperties = SeatingPlanUiProperties;
|
|
|
2552
2284
|
type index_d_SeatingReservation = SeatingReservation;
|
|
2553
2285
|
type index_d_SeatingReservationCreatedEnvelope = SeatingReservationCreatedEnvelope;
|
|
2554
2286
|
type index_d_SeatingReservationDeletedEnvelope = SeatingReservationDeletedEnvelope;
|
|
2287
|
+
type index_d_SeatingReservationNonNullableFields = SeatingReservationNonNullableFields;
|
|
2555
2288
|
type index_d_SeatingReservationsSummary = SeatingReservationsSummary;
|
|
2556
2289
|
type index_d_Section = Section;
|
|
2557
2290
|
type index_d_Sequencing = Sequencing;
|
|
@@ -2567,7 +2300,14 @@ type index_d_UnavailablePlaces = UnavailablePlaces;
|
|
|
2567
2300
|
type index_d_VerticalSequencing = VerticalSequencing;
|
|
2568
2301
|
type index_d_WebhookIdentityType = WebhookIdentityType;
|
|
2569
2302
|
declare const index_d_WebhookIdentityType: typeof WebhookIdentityType;
|
|
2570
|
-
|
|
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
|
+
type index_d__publicOnSeatingReservationCreatedType = _publicOnSeatingReservationCreatedType;
|
|
2309
|
+
type index_d__publicOnSeatingReservationDeletedType = _publicOnSeatingReservationDeletedType;
|
|
2310
|
+
type index_d__publicQuerySeatingReservationType = _publicQuerySeatingReservationType;
|
|
2571
2311
|
declare const index_d_createSeatingReservation: typeof createSeatingReservation;
|
|
2572
2312
|
declare const index_d_deleteSeatingReservation: typeof deleteSeatingReservation;
|
|
2573
2313
|
declare const index_d_getReservation: typeof getReservation;
|
|
@@ -2577,7 +2317,7 @@ declare const index_d_onSeatingReservationCreated: typeof onSeatingReservationCr
|
|
|
2577
2317
|
declare const index_d_onSeatingReservationDeleted: typeof onSeatingReservationDeleted;
|
|
2578
2318
|
declare const index_d_querySeatingReservation: typeof querySeatingReservation;
|
|
2579
2319
|
declare namespace index_d {
|
|
2580
|
-
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
|
|
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 index_d__publicCreateSeatingReservationType as _publicCreateSeatingReservationType, type index_d__publicDeleteSeatingReservationType as _publicDeleteSeatingReservationType, type index_d__publicGetReservationType as _publicGetReservationType, type index_d__publicGetSeatingCategoriesSummaryType as _publicGetSeatingCategoriesSummaryType, type index_d__publicGetSeatingReservationsSummaryType as _publicGetSeatingReservationsSummaryType, type index_d__publicOnSeatingReservationCreatedType as _publicOnSeatingReservationCreatedType, type index_d__publicOnSeatingReservationDeletedType as _publicOnSeatingReservationDeletedType, type index_d__publicQuerySeatingReservationType as _publicQuerySeatingReservationType, 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 };
|
|
2581
2321
|
}
|
|
2582
2322
|
|
|
2583
2323
|
export { index_d$1 as seatingPlan, index_d as seatingReservation };
|