@connectedxm/admin-sdk 6.20.0 → 6.24.2
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/.openapi-generator/FILES +45 -0
- package/AdminApi.ts +18 -0
- package/README.md +78 -0
- package/api.ts +10608 -5445
- package/dist/AdminApi.d.ts +7 -1
- package/dist/AdminApi.js +6 -0
- package/dist/api.d.ts +3225 -410
- package/dist/api.js +8313 -4671
- package/dist/esm/AdminApi.d.ts +7 -1
- package/dist/esm/AdminApi.js +7 -1
- package/dist/esm/api.d.ts +3225 -410
- package/dist/esm/api.js +9638 -6020
- package/docs/BaseBookingQuestionResponse.md +26 -0
- package/docs/BaseBookingSpaceQuestion.md +58 -0
- package/docs/BaseBookingSpaceQuestionChoice.md +30 -0
- package/docs/BaseEvent.md +2 -0
- package/docs/BaseEventPassType.md +2 -0
- package/docs/BaseLogin.md +4 -4
- package/docs/BaseSurvey.md +2 -2
- package/docs/Booking.md +2 -0
- package/docs/BookingQuestionResponse.md +34 -0
- package/docs/BookingSpace.md +6 -0
- package/docs/BookingSpaceCreateInputs.md +4 -0
- package/docs/BookingSpaceQuestion.md +66 -0
- package/docs/BookingSpaceQuestionChoice.md +38 -0
- package/docs/BookingSpaceQuestionChoiceCreateInputs.md +28 -0
- package/docs/BookingSpaceQuestionChoiceTranslation.md +32 -0
- package/docs/BookingSpaceQuestionChoiceTranslationUpdateInputs.md +24 -0
- package/docs/BookingSpaceQuestionChoiceUpdateInputs.md +28 -0
- package/docs/BookingSpaceQuestionCreateInputs.md +56 -0
- package/docs/BookingSpaceQuestionTranslation.md +32 -0
- package/docs/BookingSpaceQuestionTranslationUpdateInputs.md +24 -0
- package/docs/BookingSpaceQuestionType.md +30 -0
- package/docs/BookingSpaceQuestionUpdateInputs.md +56 -0
- package/docs/BookingSpaceQuestionUpdateInputsChoices.md +18 -0
- package/docs/BookingSpaceUpdateInputs.md +4 -0
- package/docs/BookingsApi.md +52 -0
- package/docs/BookingsQuestionsApi.md +489 -0
- package/docs/BookingsQuestionsChoicesApi.md +387 -0
- package/docs/BookingsQuestionsChoicesTranslationsApi.md +264 -0
- package/docs/BookingsQuestionsTranslationsApi.md +252 -0
- package/docs/CreateBookingSpaceQuestion200Response.md +24 -0
- package/docs/CreateBookingSpaceQuestionChoice200Response.md +24 -0
- package/docs/CreateEventSessionTime200Response.md +24 -0
- package/docs/Event.md +2 -0
- package/docs/EventCreateInputs.md +2 -0
- package/docs/EventEmailType.md +4 -0
- package/docs/EventPassType.md +2 -0
- package/docs/EventSessionQuestionType.md +0 -2
- package/docs/EventSessionTime.md +34 -0
- package/docs/EventSessionTimeCreateInputs.md +24 -0
- package/docs/EventSessionTimeTranslation.md +30 -0
- package/docs/EventSessionTimeTranslationUpdateInputs.md +22 -0
- package/docs/EventSessionTimeUpdateInputs.md +24 -0
- package/docs/EventUpdateInputs.md +2 -0
- package/docs/EventsPassesApi.md +183 -0
- package/docs/EventsSessionsTimesApi.md +503 -0
- package/docs/EventsSessionsTimesTranslationsApi.md +264 -0
- package/docs/GetBookingResponses200Response.md +24 -0
- package/docs/GetBookingSpaceQuestionChoiceTranslation200Response.md +24 -0
- package/docs/GetBookingSpaceQuestionChoiceTranslations200Response.md +24 -0
- package/docs/GetBookingSpaceQuestionChoices200Response.md +26 -0
- package/docs/GetBookingSpaceQuestionTranslation200Response.md +24 -0
- package/docs/GetBookingSpaceQuestionTranslations200Response.md +24 -0
- package/docs/GetBookingSpaceQuestions200Response.md +26 -0
- package/docs/GetEventSessionTimeTranslation200Response.md +24 -0
- package/docs/GetEventSessionTimeTranslations200Response.md +26 -0
- package/docs/GetEventSessionTimes200Response.md +26 -0
- package/docs/Login.md +4 -0
- package/docs/Meeting.md +2 -0
- package/docs/MeetingCreateInputs.md +4 -0
- package/docs/MeetingUpdateInputs.md +4 -0
- package/docs/PassTypeCreateInputs.md +2 -0
- package/docs/PassTypeUpdateInputs.md +2 -0
- package/docs/PurchaseStatus.md +2 -0
- package/docs/ReorderBookingSpaceQuestionChoices200Response.md +24 -0
- package/docs/ReorderBookingSpaceQuestions200Response.md +24 -0
- package/docs/ReportsApi.md +52 -0
- package/docs/Survey.md +2 -2
- package/docs/SurveyCreateInputs.md +2 -2
- package/docs/SurveyStatus.md +12 -0
- package/docs/SurveyUpdateInputs.md +2 -2
- package/docs/SurveysApi.md +3 -0
- package/docs/UpdateBookingSpaceQuestionChoiceTranslation200Response.md +24 -0
- package/docs/UpdateBookingSpaceQuestionTranslation200Response.md +24 -0
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -875,6 +875,12 @@ export interface BaseBookingPlace {
|
|
|
875
875
|
'paymentIntegrationId': string | null;
|
|
876
876
|
'paymentIntegration': BasePaymentIntegration | null;
|
|
877
877
|
}
|
|
878
|
+
export interface BaseBookingQuestionResponse {
|
|
879
|
+
'id': string;
|
|
880
|
+
'value': string;
|
|
881
|
+
'questionId': string;
|
|
882
|
+
'question': BaseBookingSpaceQuestion;
|
|
883
|
+
}
|
|
878
884
|
export interface BaseBookingSpace {
|
|
879
885
|
'id': string;
|
|
880
886
|
'name': string;
|
|
@@ -903,6 +909,36 @@ export interface BaseBookingSpaceBlackout {
|
|
|
903
909
|
'start': string;
|
|
904
910
|
'end': string;
|
|
905
911
|
}
|
|
912
|
+
export interface BaseBookingSpaceQuestion {
|
|
913
|
+
'id': string;
|
|
914
|
+
'type': BookingSpaceQuestionType;
|
|
915
|
+
'name': string;
|
|
916
|
+
'required': boolean;
|
|
917
|
+
'description': string | null;
|
|
918
|
+
'label': string | null;
|
|
919
|
+
'placeholder': string | null;
|
|
920
|
+
'default': string | null;
|
|
921
|
+
'searchListId': string | null;
|
|
922
|
+
'searchList': BaseSearchList | null;
|
|
923
|
+
'mutable': boolean;
|
|
924
|
+
'min': string | null;
|
|
925
|
+
'max': string | null;
|
|
926
|
+
'masked': boolean;
|
|
927
|
+
'validation': string | null;
|
|
928
|
+
'validationMessage': string | null;
|
|
929
|
+
'locationOption': LocationQuestionOption | null;
|
|
930
|
+
'sortOrder': number;
|
|
931
|
+
'featured': boolean;
|
|
932
|
+
'choices': Array<BaseBookingSpaceQuestionChoice>;
|
|
933
|
+
}
|
|
934
|
+
export interface BaseBookingSpaceQuestionChoice {
|
|
935
|
+
'id': string;
|
|
936
|
+
'value': string;
|
|
937
|
+
'text': string | null;
|
|
938
|
+
'description': string | null;
|
|
939
|
+
'supply': number | null;
|
|
940
|
+
'sortOrder': number;
|
|
941
|
+
}
|
|
906
942
|
export interface BaseChannel {
|
|
907
943
|
'id': string;
|
|
908
944
|
'slug': string;
|
|
@@ -1077,6 +1113,7 @@ export interface BaseEvent {
|
|
|
1077
1113
|
'series': BaseSeries | null;
|
|
1078
1114
|
'paymentIntegrationId': string | null;
|
|
1079
1115
|
'paymentIntegration': BasePaymentIntegration | null;
|
|
1116
|
+
'archived': boolean;
|
|
1080
1117
|
}
|
|
1081
1118
|
export interface BaseEventActivation {
|
|
1082
1119
|
'id': string;
|
|
@@ -1253,6 +1290,7 @@ export interface BaseEventPassType {
|
|
|
1253
1290
|
'createdAt': string;
|
|
1254
1291
|
'updatedAt': string;
|
|
1255
1292
|
'requiredPassTypeId': string | null;
|
|
1293
|
+
'requiresApproval': boolean;
|
|
1256
1294
|
}
|
|
1257
1295
|
export interface BaseEventPassTypePriceSchedule {
|
|
1258
1296
|
'id': string;
|
|
@@ -1645,6 +1683,7 @@ export interface BaseLogin {
|
|
|
1645
1683
|
'sub': string;
|
|
1646
1684
|
'userPoolId': string;
|
|
1647
1685
|
'username': string;
|
|
1686
|
+
'provider': string;
|
|
1648
1687
|
'email': string;
|
|
1649
1688
|
'status': string;
|
|
1650
1689
|
'enabled': boolean;
|
|
@@ -1652,8 +1691,7 @@ export interface BaseLogin {
|
|
|
1652
1691
|
'firstName': string | null;
|
|
1653
1692
|
'lastName': string | null;
|
|
1654
1693
|
'internalRefId': string | null;
|
|
1655
|
-
'
|
|
1656
|
-
'updatedAt': string;
|
|
1694
|
+
'lastLoginAt': string | null;
|
|
1657
1695
|
}
|
|
1658
1696
|
export interface BaseMatch {
|
|
1659
1697
|
'id': string;
|
|
@@ -2174,7 +2212,7 @@ export interface BaseSurvey {
|
|
|
2174
2212
|
'id': string;
|
|
2175
2213
|
'slug': string;
|
|
2176
2214
|
'name': string;
|
|
2177
|
-
'
|
|
2215
|
+
'status': SurveyStatus;
|
|
2178
2216
|
'description': string | null;
|
|
2179
2217
|
'image': BaseImage;
|
|
2180
2218
|
'requireAuth': boolean;
|
|
@@ -2484,6 +2522,7 @@ export interface Booking {
|
|
|
2484
2522
|
'lineItem': PaymentLineItem | null;
|
|
2485
2523
|
'createdAt': string;
|
|
2486
2524
|
'updatedAt': string;
|
|
2525
|
+
'responses'?: Array<BaseBookingQuestionResponse>;
|
|
2487
2526
|
}
|
|
2488
2527
|
export interface BookingCreateInputs {
|
|
2489
2528
|
'accountId': string;
|
|
@@ -2552,6 +2591,16 @@ export interface BookingPlaceUpdateInputs {
|
|
|
2552
2591
|
'visible'?: boolean;
|
|
2553
2592
|
'paymentIntegrationId'?: string | null;
|
|
2554
2593
|
}
|
|
2594
|
+
export interface BookingQuestionResponse {
|
|
2595
|
+
'id': string;
|
|
2596
|
+
'value': string;
|
|
2597
|
+
'questionId': string;
|
|
2598
|
+
'question': BaseBookingSpaceQuestion;
|
|
2599
|
+
'fileId': number | null;
|
|
2600
|
+
'file': BaseFile | null;
|
|
2601
|
+
'createdAt': string;
|
|
2602
|
+
'updatedAt': string;
|
|
2603
|
+
}
|
|
2555
2604
|
export interface BookingSlot {
|
|
2556
2605
|
'time': string;
|
|
2557
2606
|
'supply': number | null;
|
|
@@ -2576,6 +2625,9 @@ export interface BookingSpace {
|
|
|
2576
2625
|
'confirmationReplyTo': string | null;
|
|
2577
2626
|
'cancellationBody': string | null;
|
|
2578
2627
|
'cancellationReplyTo': string | null;
|
|
2628
|
+
'meetingId': string | null;
|
|
2629
|
+
'meeting': BaseMeeting | null;
|
|
2630
|
+
'joinBeforeTime': number | null;
|
|
2579
2631
|
'createdAt': string;
|
|
2580
2632
|
'updatedAt': string;
|
|
2581
2633
|
}
|
|
@@ -2630,7 +2682,149 @@ export interface BookingSpaceCreateInputs {
|
|
|
2630
2682
|
'taxCode'?: string | null;
|
|
2631
2683
|
'taxIncluded'?: boolean;
|
|
2632
2684
|
'taxLocation'?: TaxLocationType;
|
|
2685
|
+
'meetingId'?: string | null;
|
|
2686
|
+
'joinBeforeTime'?: number | null;
|
|
2633
2687
|
}
|
|
2688
|
+
export interface BookingSpaceQuestion {
|
|
2689
|
+
'id': string;
|
|
2690
|
+
'type': BookingSpaceQuestionType;
|
|
2691
|
+
'name': string;
|
|
2692
|
+
'required': boolean;
|
|
2693
|
+
'description': string | null;
|
|
2694
|
+
'label': string | null;
|
|
2695
|
+
'placeholder': string | null;
|
|
2696
|
+
'default': string | null;
|
|
2697
|
+
'searchListId': string | null;
|
|
2698
|
+
'searchList': BaseSearchList | null;
|
|
2699
|
+
'mutable': boolean;
|
|
2700
|
+
'min': string | null;
|
|
2701
|
+
'max': string | null;
|
|
2702
|
+
'masked': boolean;
|
|
2703
|
+
'validation': string | null;
|
|
2704
|
+
'validationMessage': string | null;
|
|
2705
|
+
'locationOption': LocationQuestionOption | null;
|
|
2706
|
+
'sortOrder': number;
|
|
2707
|
+
'featured': boolean;
|
|
2708
|
+
'choices': Array<BaseBookingSpaceQuestionChoice>;
|
|
2709
|
+
'dashboardVisibility': boolean;
|
|
2710
|
+
'createdAt': string;
|
|
2711
|
+
'updatedAt': string;
|
|
2712
|
+
'translations'?: Array<BookingSpaceQuestionTranslation>;
|
|
2713
|
+
}
|
|
2714
|
+
export interface BookingSpaceQuestionChoice {
|
|
2715
|
+
'id': string;
|
|
2716
|
+
'value': string;
|
|
2717
|
+
'text': string | null;
|
|
2718
|
+
'description': string | null;
|
|
2719
|
+
'supply': number | null;
|
|
2720
|
+
'sortOrder': number;
|
|
2721
|
+
'questionId': string;
|
|
2722
|
+
'question': BaseBookingSpaceQuestion;
|
|
2723
|
+
'createdAt': string;
|
|
2724
|
+
'updatedAt': string;
|
|
2725
|
+
}
|
|
2726
|
+
export interface BookingSpaceQuestionChoiceCreateInputs {
|
|
2727
|
+
'value': string;
|
|
2728
|
+
'text'?: string | null;
|
|
2729
|
+
'description'?: string | null;
|
|
2730
|
+
'supply'?: number | null;
|
|
2731
|
+
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
2732
|
+
}
|
|
2733
|
+
export interface BookingSpaceQuestionChoiceTranslation {
|
|
2734
|
+
'id': string;
|
|
2735
|
+
'locale': string;
|
|
2736
|
+
'value': string;
|
|
2737
|
+
'text': string | null;
|
|
2738
|
+
'description': string | null;
|
|
2739
|
+
'createdAt': string;
|
|
2740
|
+
'updatedAt': string;
|
|
2741
|
+
}
|
|
2742
|
+
export interface BookingSpaceQuestionChoiceTranslationUpdateInputs {
|
|
2743
|
+
'value'?: string | null;
|
|
2744
|
+
'text'?: string | null;
|
|
2745
|
+
'description'?: string | null;
|
|
2746
|
+
}
|
|
2747
|
+
export interface BookingSpaceQuestionChoiceUpdateInputs {
|
|
2748
|
+
'value'?: string | null;
|
|
2749
|
+
'text'?: string | null;
|
|
2750
|
+
'description'?: string | null;
|
|
2751
|
+
'supply'?: number | null;
|
|
2752
|
+
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
2753
|
+
}
|
|
2754
|
+
export interface BookingSpaceQuestionCreateInputs {
|
|
2755
|
+
'name': string;
|
|
2756
|
+
'type': BookingSpaceQuestionType;
|
|
2757
|
+
'required'?: boolean;
|
|
2758
|
+
'label'?: string | null;
|
|
2759
|
+
'placeholder'?: string | null;
|
|
2760
|
+
'description'?: string | null;
|
|
2761
|
+
'default'?: string | null;
|
|
2762
|
+
'dashboardVisibility'?: boolean;
|
|
2763
|
+
'mutable'?: boolean;
|
|
2764
|
+
'min'?: string | null;
|
|
2765
|
+
'max'?: string | null;
|
|
2766
|
+
'masked'?: boolean;
|
|
2767
|
+
'validation'?: string | null;
|
|
2768
|
+
'validationMessage'?: string | null;
|
|
2769
|
+
'locationOption'?: LocationQuestionOption | null;
|
|
2770
|
+
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
2771
|
+
'featured'?: boolean;
|
|
2772
|
+
'searchListId'?: string | null;
|
|
2773
|
+
'choices'?: Array<string>;
|
|
2774
|
+
}
|
|
2775
|
+
export interface BookingSpaceQuestionTranslation {
|
|
2776
|
+
'id': string;
|
|
2777
|
+
'locale': string;
|
|
2778
|
+
'label': string | null;
|
|
2779
|
+
'placeholder': string | null;
|
|
2780
|
+
'description': string | null;
|
|
2781
|
+
'createdAt': string;
|
|
2782
|
+
'updatedAt': string;
|
|
2783
|
+
}
|
|
2784
|
+
export interface BookingSpaceQuestionTranslationUpdateInputs {
|
|
2785
|
+
'label'?: string | null;
|
|
2786
|
+
'placeholder'?: string | null;
|
|
2787
|
+
'description'?: string | null;
|
|
2788
|
+
}
|
|
2789
|
+
export declare enum BookingSpaceQuestionType {
|
|
2790
|
+
Text = "text",
|
|
2791
|
+
Textarea = "textarea",
|
|
2792
|
+
Number = "number",
|
|
2793
|
+
Time = "time",
|
|
2794
|
+
Date = "date",
|
|
2795
|
+
Toggle = "toggle",
|
|
2796
|
+
Select = "select",
|
|
2797
|
+
Radio = "radio",
|
|
2798
|
+
Checkbox = "checkbox",
|
|
2799
|
+
Search = "search",
|
|
2800
|
+
File = "file",
|
|
2801
|
+
Location = "location"
|
|
2802
|
+
}
|
|
2803
|
+
export interface BookingSpaceQuestionUpdateInputs {
|
|
2804
|
+
'name'?: string | null;
|
|
2805
|
+
'type'?: BookingSpaceQuestionType | null;
|
|
2806
|
+
'required'?: boolean;
|
|
2807
|
+
'label'?: string | null;
|
|
2808
|
+
'placeholder'?: string | null;
|
|
2809
|
+
'description'?: string | null;
|
|
2810
|
+
'default'?: string | null;
|
|
2811
|
+
'dashboardVisibility'?: boolean;
|
|
2812
|
+
'mutable'?: boolean;
|
|
2813
|
+
'min'?: string | null;
|
|
2814
|
+
'max'?: string | null;
|
|
2815
|
+
'masked'?: boolean;
|
|
2816
|
+
'validation'?: string | null;
|
|
2817
|
+
'validationMessage'?: string | null;
|
|
2818
|
+
'locationOption'?: LocationQuestionOption | null;
|
|
2819
|
+
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
2820
|
+
'featured'?: boolean;
|
|
2821
|
+
'searchListId'?: string | null;
|
|
2822
|
+
'choices'?: BookingSpaceQuestionUpdateInputsChoices;
|
|
2823
|
+
}
|
|
2824
|
+
/**
|
|
2825
|
+
* @type BookingSpaceQuestionUpdateInputsChoices
|
|
2826
|
+
*/
|
|
2827
|
+
export type BookingSpaceQuestionUpdateInputsChoices = Array<BaseBookingSpaceQuestionChoice> | Array<string>;
|
|
2634
2828
|
export interface BookingSpaceTranslation {
|
|
2635
2829
|
'id': number;
|
|
2636
2830
|
'locale': string;
|
|
@@ -2664,6 +2858,8 @@ export interface BookingSpaceUpdateInputs {
|
|
|
2664
2858
|
'taxCode'?: string | null;
|
|
2665
2859
|
'taxIncluded'?: boolean;
|
|
2666
2860
|
'taxLocation'?: TaxLocationType;
|
|
2861
|
+
'meetingId'?: string | null;
|
|
2862
|
+
'joinBeforeTime'?: number | null;
|
|
2667
2863
|
}
|
|
2668
2864
|
export interface BookingUpdateInputs {
|
|
2669
2865
|
'status'?: PurchaseStatus;
|
|
@@ -3164,6 +3360,22 @@ export interface CreateBookingSpaceBlackout200Response {
|
|
|
3164
3360
|
export declare enum CreateBookingSpaceBlackout200ResponseStatusEnum {
|
|
3165
3361
|
Ok = "ok"
|
|
3166
3362
|
}
|
|
3363
|
+
export interface CreateBookingSpaceQuestion200Response {
|
|
3364
|
+
'status': CreateBookingSpaceQuestion200ResponseStatusEnum;
|
|
3365
|
+
'message': string;
|
|
3366
|
+
'data': BookingSpaceQuestion;
|
|
3367
|
+
}
|
|
3368
|
+
export declare enum CreateBookingSpaceQuestion200ResponseStatusEnum {
|
|
3369
|
+
Ok = "ok"
|
|
3370
|
+
}
|
|
3371
|
+
export interface CreateBookingSpaceQuestionChoice200Response {
|
|
3372
|
+
'status': CreateBookingSpaceQuestionChoice200ResponseStatusEnum;
|
|
3373
|
+
'message': string;
|
|
3374
|
+
'data': BookingSpaceQuestionChoice;
|
|
3375
|
+
}
|
|
3376
|
+
export declare enum CreateBookingSpaceQuestionChoice200ResponseStatusEnum {
|
|
3377
|
+
Ok = "ok"
|
|
3378
|
+
}
|
|
3167
3379
|
export interface CreateChannel200Response {
|
|
3168
3380
|
'status': CreateChannel200ResponseStatusEnum;
|
|
3169
3381
|
'message': string;
|
|
@@ -3468,6 +3680,14 @@ export interface CreateEventSessionSection200Response {
|
|
|
3468
3680
|
export declare enum CreateEventSessionSection200ResponseStatusEnum {
|
|
3469
3681
|
Ok = "ok"
|
|
3470
3682
|
}
|
|
3683
|
+
export interface CreateEventSessionTime200Response {
|
|
3684
|
+
'status': CreateEventSessionTime200ResponseStatusEnum;
|
|
3685
|
+
'message': string;
|
|
3686
|
+
'data': EventSessionTime;
|
|
3687
|
+
}
|
|
3688
|
+
export declare enum CreateEventSessionTime200ResponseStatusEnum {
|
|
3689
|
+
Ok = "ok"
|
|
3690
|
+
}
|
|
3471
3691
|
export interface CreateEventSpeaker200Response {
|
|
3472
3692
|
'status': CreateEventSpeaker200ResponseStatusEnum;
|
|
3473
3693
|
'message': string;
|
|
@@ -4015,6 +4235,7 @@ export interface Event {
|
|
|
4015
4235
|
'series': BaseSeries | null;
|
|
4016
4236
|
'paymentIntegrationId': string | null;
|
|
4017
4237
|
'paymentIntegration': BasePaymentIntegration | null;
|
|
4238
|
+
'archived': boolean;
|
|
4018
4239
|
'roundName': string | null;
|
|
4019
4240
|
'matchName': string | null;
|
|
4020
4241
|
'passSupply': number | null;
|
|
@@ -4335,6 +4556,7 @@ export interface EventCreateInputs {
|
|
|
4335
4556
|
'eventEnd': string;
|
|
4336
4557
|
'featured'?: boolean;
|
|
4337
4558
|
'visible'?: boolean;
|
|
4559
|
+
'archived'?: boolean;
|
|
4338
4560
|
'slug'?: string | null;
|
|
4339
4561
|
'internalRefId'?: string | null;
|
|
4340
4562
|
'longDescription'?: string | null;
|
|
@@ -4419,7 +4641,9 @@ export interface EventEmailTranslationUpdateInputs {
|
|
|
4419
4641
|
export declare enum EventEmailType {
|
|
4420
4642
|
Confirmation = "confirmation",
|
|
4421
4643
|
Cancellation = "cancellation",
|
|
4422
|
-
Reminder = "reminder"
|
|
4644
|
+
Reminder = "reminder",
|
|
4645
|
+
Approval = "approval",
|
|
4646
|
+
Denial = "denial"
|
|
4423
4647
|
}
|
|
4424
4648
|
export interface EventEmailUpdateInputs {
|
|
4425
4649
|
'body'?: string | null;
|
|
@@ -4694,6 +4918,7 @@ export interface EventPassType {
|
|
|
4694
4918
|
'createdAt': string;
|
|
4695
4919
|
'updatedAt': string;
|
|
4696
4920
|
'requiredPassTypeId': string | null;
|
|
4921
|
+
'requiresApproval': boolean;
|
|
4697
4922
|
'overrideStartDate': string | null;
|
|
4698
4923
|
'sortOrder': number;
|
|
4699
4924
|
'event': BaseEvent;
|
|
@@ -5311,7 +5536,6 @@ export declare enum EventSessionQuestionType {
|
|
|
5311
5536
|
Checkbox = "checkbox",
|
|
5312
5537
|
Search = "search",
|
|
5313
5538
|
File = "file",
|
|
5314
|
-
Quantity = "quantity",
|
|
5315
5539
|
Location = "location"
|
|
5316
5540
|
}
|
|
5317
5541
|
export interface EventSessionQuestionUpdateInputs {
|
|
@@ -5381,6 +5605,38 @@ export interface EventSessionSectionUpdateInputs {
|
|
|
5381
5605
|
'guestDescription'?: string | null;
|
|
5382
5606
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
5383
5607
|
}
|
|
5608
|
+
export interface EventSessionTime {
|
|
5609
|
+
'id': string;
|
|
5610
|
+
'name': string;
|
|
5611
|
+
'description': string | null;
|
|
5612
|
+
'startTime': string;
|
|
5613
|
+
'speakers': Array<BaseEventSpeaker>;
|
|
5614
|
+
'translations': Array<EventSessionTimeTranslation>;
|
|
5615
|
+
'createdAt': string;
|
|
5616
|
+
'updatedAt': string;
|
|
5617
|
+
}
|
|
5618
|
+
export interface EventSessionTimeCreateInputs {
|
|
5619
|
+
'name': string;
|
|
5620
|
+
'description'?: string | null;
|
|
5621
|
+
'startTime': string;
|
|
5622
|
+
}
|
|
5623
|
+
export interface EventSessionTimeTranslation {
|
|
5624
|
+
'id': string;
|
|
5625
|
+
'locale': string;
|
|
5626
|
+
'name': string | null;
|
|
5627
|
+
'description': string | null;
|
|
5628
|
+
'createdAt': string;
|
|
5629
|
+
'updatedAt': string;
|
|
5630
|
+
}
|
|
5631
|
+
export interface EventSessionTimeTranslationUpdateInputs {
|
|
5632
|
+
'name'?: string | null;
|
|
5633
|
+
'description'?: string | null;
|
|
5634
|
+
}
|
|
5635
|
+
export interface EventSessionTimeUpdateInputs {
|
|
5636
|
+
'name'?: string | null;
|
|
5637
|
+
'description'?: string | null;
|
|
5638
|
+
'startTime'?: string | null;
|
|
5639
|
+
}
|
|
5384
5640
|
export interface EventSessionTranslation {
|
|
5385
5641
|
'id': number;
|
|
5386
5642
|
'locale': string;
|
|
@@ -5661,6 +5917,7 @@ export declare enum EventType {
|
|
|
5661
5917
|
export interface EventUpdateInputs {
|
|
5662
5918
|
'featured'?: boolean;
|
|
5663
5919
|
'visible'?: boolean;
|
|
5920
|
+
'archived'?: boolean;
|
|
5664
5921
|
'name'?: string | null;
|
|
5665
5922
|
'eventType'?: EventType | null;
|
|
5666
5923
|
'slug'?: string | null;
|
|
@@ -6097,6 +6354,14 @@ export interface GetBookingPlaces200Response {
|
|
|
6097
6354
|
export declare enum GetBookingPlaces200ResponseStatusEnum {
|
|
6098
6355
|
Ok = "ok"
|
|
6099
6356
|
}
|
|
6357
|
+
export interface GetBookingResponses200Response {
|
|
6358
|
+
'status': GetBookingResponses200ResponseStatusEnum;
|
|
6359
|
+
'message': string;
|
|
6360
|
+
'data': Array<BaseBookingQuestionResponse>;
|
|
6361
|
+
}
|
|
6362
|
+
export declare enum GetBookingResponses200ResponseStatusEnum {
|
|
6363
|
+
Ok = "ok"
|
|
6364
|
+
}
|
|
6100
6365
|
export interface GetBookingSpaceAvailabilities200Response {
|
|
6101
6366
|
'status': GetBookingSpaceAvailabilities200ResponseStatusEnum;
|
|
6102
6367
|
'message': string;
|
|
@@ -6114,6 +6379,56 @@ export interface GetBookingSpaceBlackouts200Response {
|
|
|
6114
6379
|
export declare enum GetBookingSpaceBlackouts200ResponseStatusEnum {
|
|
6115
6380
|
Ok = "ok"
|
|
6116
6381
|
}
|
|
6382
|
+
export interface GetBookingSpaceQuestionChoiceTranslation200Response {
|
|
6383
|
+
'status': GetBookingSpaceQuestionChoiceTranslation200ResponseStatusEnum;
|
|
6384
|
+
'message': string;
|
|
6385
|
+
'data': BookingSpaceQuestionChoiceTranslation | null;
|
|
6386
|
+
}
|
|
6387
|
+
export declare enum GetBookingSpaceQuestionChoiceTranslation200ResponseStatusEnum {
|
|
6388
|
+
Ok = "ok"
|
|
6389
|
+
}
|
|
6390
|
+
export interface GetBookingSpaceQuestionChoiceTranslations200Response {
|
|
6391
|
+
'status': GetBookingSpaceQuestionChoiceTranslations200ResponseStatusEnum;
|
|
6392
|
+
'message': string;
|
|
6393
|
+
'data': Array<BookingSpaceQuestionChoiceTranslation>;
|
|
6394
|
+
}
|
|
6395
|
+
export declare enum GetBookingSpaceQuestionChoiceTranslations200ResponseStatusEnum {
|
|
6396
|
+
Ok = "ok"
|
|
6397
|
+
}
|
|
6398
|
+
export interface GetBookingSpaceQuestionChoices200Response {
|
|
6399
|
+
'status': GetBookingSpaceQuestionChoices200ResponseStatusEnum;
|
|
6400
|
+
'message': string;
|
|
6401
|
+
'data': Array<BookingSpaceQuestionChoice>;
|
|
6402
|
+
'count'?: number;
|
|
6403
|
+
}
|
|
6404
|
+
export declare enum GetBookingSpaceQuestionChoices200ResponseStatusEnum {
|
|
6405
|
+
Ok = "ok"
|
|
6406
|
+
}
|
|
6407
|
+
export interface GetBookingSpaceQuestionTranslation200Response {
|
|
6408
|
+
'status': GetBookingSpaceQuestionTranslation200ResponseStatusEnum;
|
|
6409
|
+
'message': string;
|
|
6410
|
+
'data': BookingSpaceQuestionTranslation | null;
|
|
6411
|
+
}
|
|
6412
|
+
export declare enum GetBookingSpaceQuestionTranslation200ResponseStatusEnum {
|
|
6413
|
+
Ok = "ok"
|
|
6414
|
+
}
|
|
6415
|
+
export interface GetBookingSpaceQuestionTranslations200Response {
|
|
6416
|
+
'status': GetBookingSpaceQuestionTranslations200ResponseStatusEnum;
|
|
6417
|
+
'message': string;
|
|
6418
|
+
'data': Array<BookingSpaceQuestionTranslation>;
|
|
6419
|
+
}
|
|
6420
|
+
export declare enum GetBookingSpaceQuestionTranslations200ResponseStatusEnum {
|
|
6421
|
+
Ok = "ok"
|
|
6422
|
+
}
|
|
6423
|
+
export interface GetBookingSpaceQuestions200Response {
|
|
6424
|
+
'status': GetBookingSpaceQuestions200ResponseStatusEnum;
|
|
6425
|
+
'message': string;
|
|
6426
|
+
'data': Array<BookingSpaceQuestion>;
|
|
6427
|
+
'count'?: number;
|
|
6428
|
+
}
|
|
6429
|
+
export declare enum GetBookingSpaceQuestions200ResponseStatusEnum {
|
|
6430
|
+
Ok = "ok"
|
|
6431
|
+
}
|
|
6117
6432
|
export interface GetBookingSpaceSlots200Response {
|
|
6118
6433
|
'status': GetBookingSpaceSlots200ResponseStatusEnum;
|
|
6119
6434
|
'message': string;
|
|
@@ -7173,6 +7488,32 @@ export interface GetEventSessionSpeakers200Response {
|
|
|
7173
7488
|
export declare enum GetEventSessionSpeakers200ResponseStatusEnum {
|
|
7174
7489
|
Ok = "ok"
|
|
7175
7490
|
}
|
|
7491
|
+
export interface GetEventSessionTimeTranslation200Response {
|
|
7492
|
+
'status': GetEventSessionTimeTranslation200ResponseStatusEnum;
|
|
7493
|
+
'message': string;
|
|
7494
|
+
'data': EventSessionTimeTranslation | null;
|
|
7495
|
+
}
|
|
7496
|
+
export declare enum GetEventSessionTimeTranslation200ResponseStatusEnum {
|
|
7497
|
+
Ok = "ok"
|
|
7498
|
+
}
|
|
7499
|
+
export interface GetEventSessionTimeTranslations200Response {
|
|
7500
|
+
'status': GetEventSessionTimeTranslations200ResponseStatusEnum;
|
|
7501
|
+
'message': string;
|
|
7502
|
+
'data': Array<EventSessionTimeTranslation>;
|
|
7503
|
+
'count'?: number;
|
|
7504
|
+
}
|
|
7505
|
+
export declare enum GetEventSessionTimeTranslations200ResponseStatusEnum {
|
|
7506
|
+
Ok = "ok"
|
|
7507
|
+
}
|
|
7508
|
+
export interface GetEventSessionTimes200Response {
|
|
7509
|
+
'status': GetEventSessionTimes200ResponseStatusEnum;
|
|
7510
|
+
'message': string;
|
|
7511
|
+
'data': Array<EventSessionTime>;
|
|
7512
|
+
'count'?: number;
|
|
7513
|
+
}
|
|
7514
|
+
export declare enum GetEventSessionTimes200ResponseStatusEnum {
|
|
7515
|
+
Ok = "ok"
|
|
7516
|
+
}
|
|
7176
7517
|
export interface GetEventSessionTracks200Response {
|
|
7177
7518
|
'status': GetEventSessionTracks200ResponseStatusEnum;
|
|
7178
7519
|
'message': string;
|
|
@@ -8927,6 +9268,7 @@ export interface Login {
|
|
|
8927
9268
|
'sub': string;
|
|
8928
9269
|
'userPoolId': string;
|
|
8929
9270
|
'username': string;
|
|
9271
|
+
'provider': string;
|
|
8930
9272
|
'email': string;
|
|
8931
9273
|
'status': string;
|
|
8932
9274
|
'enabled': boolean;
|
|
@@ -8934,6 +9276,7 @@ export interface Login {
|
|
|
8934
9276
|
'firstName': string | null;
|
|
8935
9277
|
'lastName': string | null;
|
|
8936
9278
|
'internalRefId': string | null;
|
|
9279
|
+
'lastLoginAt': string | null;
|
|
8937
9280
|
'createdAt': string;
|
|
8938
9281
|
'updatedAt': string;
|
|
8939
9282
|
'_count': LoginAllOfCount;
|
|
@@ -8972,6 +9315,7 @@ export interface Meeting {
|
|
|
8972
9315
|
'session'?: BaseEventSession;
|
|
8973
9316
|
'group'?: BaseGroup;
|
|
8974
9317
|
'activity'?: BaseActivity;
|
|
9318
|
+
'bookingSpace'?: BaseBookingSpace;
|
|
8975
9319
|
'updated_at': string;
|
|
8976
9320
|
'created_at': string;
|
|
8977
9321
|
'preferred_region'?: MeetingPreferredRegionEnum | null;
|
|
@@ -8997,6 +9341,8 @@ export interface MeetingCreateInputs {
|
|
|
8997
9341
|
'sessionId'?: string;
|
|
8998
9342
|
'groupId'?: string;
|
|
8999
9343
|
'activityId'?: string;
|
|
9344
|
+
'bookingPlaceId'?: string;
|
|
9345
|
+
'bookingSpaceId'?: string;
|
|
9000
9346
|
'title': string | null;
|
|
9001
9347
|
'preferred_region': MeetingCreateInputsPreferredRegionEnum | null;
|
|
9002
9348
|
'record_on_start': boolean;
|
|
@@ -9240,6 +9586,8 @@ export interface MeetingUpdateInputs {
|
|
|
9240
9586
|
'sessionId'?: string;
|
|
9241
9587
|
'groupId'?: string;
|
|
9242
9588
|
'activityId'?: string;
|
|
9589
|
+
'bookingPlaceId'?: string;
|
|
9590
|
+
'bookingSpaceId'?: string;
|
|
9243
9591
|
'title'?: string | null;
|
|
9244
9592
|
'preferred_region'?: MeetingUpdateInputsPreferredRegionEnum | null;
|
|
9245
9593
|
'record_on_start'?: boolean;
|
|
@@ -9766,6 +10114,7 @@ export interface PassTypeCreateInputs {
|
|
|
9766
10114
|
'taxLocation'?: TaxLocationType;
|
|
9767
10115
|
'printable'?: boolean;
|
|
9768
10116
|
'badgeColor'?: string | null;
|
|
10117
|
+
'requiresApproval'?: boolean;
|
|
9769
10118
|
}
|
|
9770
10119
|
export interface PassTypePriceScheduleCreateInputs {
|
|
9771
10120
|
'ticketId'?: string | null;
|
|
@@ -9827,6 +10176,7 @@ export interface PassTypeUpdateInputs {
|
|
|
9827
10176
|
'taxLocation'?: TaxLocationType;
|
|
9828
10177
|
'printable'?: boolean;
|
|
9829
10178
|
'badgeColor'?: string | null;
|
|
10179
|
+
'requiresApproval'?: boolean | null;
|
|
9830
10180
|
}
|
|
9831
10181
|
export declare enum PassTypeVisibility {
|
|
9832
10182
|
Public = "public",
|
|
@@ -9979,6 +10329,7 @@ export interface Preset {
|
|
|
9979
10329
|
export declare enum PurchaseStatus {
|
|
9980
10330
|
Draft = "draft",
|
|
9981
10331
|
Canceled = "canceled",
|
|
10332
|
+
Pending = "pending",
|
|
9982
10333
|
NeedsInfo = "needsInfo",
|
|
9983
10334
|
Ready = "ready"
|
|
9984
10335
|
}
|
|
@@ -10205,6 +10556,22 @@ export interface RemoveEventPassAttribute200Response {
|
|
|
10205
10556
|
export declare enum RemoveEventPassAttribute200ResponseStatusEnum {
|
|
10206
10557
|
Ok = "ok"
|
|
10207
10558
|
}
|
|
10559
|
+
export interface ReorderBookingSpaceQuestionChoices200Response {
|
|
10560
|
+
'status': ReorderBookingSpaceQuestionChoices200ResponseStatusEnum;
|
|
10561
|
+
'message': string;
|
|
10562
|
+
'data': Array<BookingSpaceQuestionChoice>;
|
|
10563
|
+
}
|
|
10564
|
+
export declare enum ReorderBookingSpaceQuestionChoices200ResponseStatusEnum {
|
|
10565
|
+
Ok = "ok"
|
|
10566
|
+
}
|
|
10567
|
+
export interface ReorderBookingSpaceQuestions200Response {
|
|
10568
|
+
'status': ReorderBookingSpaceQuestions200ResponseStatusEnum;
|
|
10569
|
+
'message': string;
|
|
10570
|
+
'data': Array<BookingSpaceQuestion>;
|
|
10571
|
+
}
|
|
10572
|
+
export declare enum ReorderBookingSpaceQuestions200ResponseStatusEnum {
|
|
10573
|
+
Ok = "ok"
|
|
10574
|
+
}
|
|
10208
10575
|
export interface ReorderEventFaqSectionQuestions200Response {
|
|
10209
10576
|
'status': ReorderEventFaqSectionQuestions200ResponseStatusEnum;
|
|
10210
10577
|
'message': string;
|
|
@@ -11262,7 +11629,7 @@ export interface Survey {
|
|
|
11262
11629
|
'id': string;
|
|
11263
11630
|
'slug': string;
|
|
11264
11631
|
'name': string;
|
|
11265
|
-
'
|
|
11632
|
+
'status': SurveyStatus;
|
|
11266
11633
|
'description': string | null;
|
|
11267
11634
|
'image': BaseImage;
|
|
11268
11635
|
'requireAuth': boolean;
|
|
@@ -11285,7 +11652,7 @@ export interface SurveyAllOfCount {
|
|
|
11285
11652
|
export interface SurveyCreateInputs {
|
|
11286
11653
|
'name': string;
|
|
11287
11654
|
'slug'?: string;
|
|
11288
|
-
'
|
|
11655
|
+
'status'?: SurveyStatus;
|
|
11289
11656
|
'description'?: string | null;
|
|
11290
11657
|
'imageId'?: string | null;
|
|
11291
11658
|
'requireAuth'?: boolean;
|
|
@@ -11514,6 +11881,11 @@ export interface SurveySectionUpdateInputs {
|
|
|
11514
11881
|
'guestDescription'?: string | null;
|
|
11515
11882
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
11516
11883
|
}
|
|
11884
|
+
export declare enum SurveyStatus {
|
|
11885
|
+
Draft = "draft",
|
|
11886
|
+
Published = "published",
|
|
11887
|
+
Archived = "archived"
|
|
11888
|
+
}
|
|
11517
11889
|
export interface SurveySubmission {
|
|
11518
11890
|
'id': string;
|
|
11519
11891
|
'accountId': string | null;
|
|
@@ -11545,7 +11917,7 @@ export interface SurveyTranslationUpdateInputs {
|
|
|
11545
11917
|
}
|
|
11546
11918
|
export interface SurveyUpdateInputs {
|
|
11547
11919
|
'name'?: string;
|
|
11548
|
-
'
|
|
11920
|
+
'status'?: SurveyStatus;
|
|
11549
11921
|
'slug'?: string;
|
|
11550
11922
|
'description'?: string | null;
|
|
11551
11923
|
'imageId'?: string | null;
|
|
@@ -11917,6 +12289,22 @@ export interface UpdateAnnouncementTranslation200Response {
|
|
|
11917
12289
|
export declare enum UpdateAnnouncementTranslation200ResponseStatusEnum {
|
|
11918
12290
|
Ok = "ok"
|
|
11919
12291
|
}
|
|
12292
|
+
export interface UpdateBookingSpaceQuestionChoiceTranslation200Response {
|
|
12293
|
+
'status': UpdateBookingSpaceQuestionChoiceTranslation200ResponseStatusEnum;
|
|
12294
|
+
'message': string;
|
|
12295
|
+
'data': BookingSpaceQuestionChoiceTranslation;
|
|
12296
|
+
}
|
|
12297
|
+
export declare enum UpdateBookingSpaceQuestionChoiceTranslation200ResponseStatusEnum {
|
|
12298
|
+
Ok = "ok"
|
|
12299
|
+
}
|
|
12300
|
+
export interface UpdateBookingSpaceQuestionTranslation200Response {
|
|
12301
|
+
'status': UpdateBookingSpaceQuestionTranslation200ResponseStatusEnum;
|
|
12302
|
+
'message': string;
|
|
12303
|
+
'data': BookingSpaceQuestionTranslation;
|
|
12304
|
+
}
|
|
12305
|
+
export declare enum UpdateBookingSpaceQuestionTranslation200ResponseStatusEnum {
|
|
12306
|
+
Ok = "ok"
|
|
12307
|
+
}
|
|
11920
12308
|
export interface UpdateChannelContentGuestTranslation200Response {
|
|
11921
12309
|
'status': UpdateChannelContentGuestTranslation200ResponseStatusEnum;
|
|
11922
12310
|
'message': string;
|
|
@@ -17456,6 +17844,14 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
17456
17844
|
* @throws {RequiredError}
|
|
17457
17845
|
*/
|
|
17458
17846
|
getBookingPlaces: (page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17847
|
+
/**
|
|
17848
|
+
* Get Booking Responses endpoint
|
|
17849
|
+
* @summary Get Booking Responses
|
|
17850
|
+
* @param {string} bookingId The booking identifier
|
|
17851
|
+
* @param {*} [options] Override http request option.
|
|
17852
|
+
* @throws {RequiredError}
|
|
17853
|
+
*/
|
|
17854
|
+
getBookingResponses: (bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17459
17855
|
/**
|
|
17460
17856
|
* Get Booking Space endpoint
|
|
17461
17857
|
* @summary Get Booking Space
|
|
@@ -17703,6 +18099,14 @@ export declare const BookingsApiFp: (configuration?: Configuration) => {
|
|
|
17703
18099
|
* @throws {RequiredError}
|
|
17704
18100
|
*/
|
|
17705
18101
|
getBookingPlaces(page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBookingPlaces200Response>>;
|
|
18102
|
+
/**
|
|
18103
|
+
* Get Booking Responses endpoint
|
|
18104
|
+
* @summary Get Booking Responses
|
|
18105
|
+
* @param {string} bookingId The booking identifier
|
|
18106
|
+
* @param {*} [options] Override http request option.
|
|
18107
|
+
* @throws {RequiredError}
|
|
18108
|
+
*/
|
|
18109
|
+
getBookingResponses(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBookingResponses200Response>>;
|
|
17706
18110
|
/**
|
|
17707
18111
|
* Get Booking Space endpoint
|
|
17708
18112
|
* @summary Get Booking Space
|
|
@@ -17926,6 +18330,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration, basePat
|
|
|
17926
18330
|
* @throws {RequiredError}
|
|
17927
18331
|
*/
|
|
17928
18332
|
getBookingPlaces(requestParameters?: BookingsApiGetBookingPlacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetBookingPlaces200Response>;
|
|
18333
|
+
/**
|
|
18334
|
+
* Get Booking Responses endpoint
|
|
18335
|
+
* @summary Get Booking Responses
|
|
18336
|
+
* @param {BookingsApiGetBookingResponsesRequest} requestParameters Request parameters.
|
|
18337
|
+
* @param {*} [options] Override http request option.
|
|
18338
|
+
* @throws {RequiredError}
|
|
18339
|
+
*/
|
|
18340
|
+
getBookingResponses(requestParameters: BookingsApiGetBookingResponsesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetBookingResponses200Response>;
|
|
17929
18341
|
/**
|
|
17930
18342
|
* Get Booking Space endpoint
|
|
17931
18343
|
* @summary Get Booking Space
|
|
@@ -18206,6 +18618,15 @@ export interface BookingsApiGetBookingPlacesRequest {
|
|
|
18206
18618
|
*/
|
|
18207
18619
|
readonly search?: string;
|
|
18208
18620
|
}
|
|
18621
|
+
/**
|
|
18622
|
+
* Request parameters for getBookingResponses operation in BookingsApi.
|
|
18623
|
+
*/
|
|
18624
|
+
export interface BookingsApiGetBookingResponsesRequest {
|
|
18625
|
+
/**
|
|
18626
|
+
* The booking identifier
|
|
18627
|
+
*/
|
|
18628
|
+
readonly bookingId: string;
|
|
18629
|
+
}
|
|
18209
18630
|
/**
|
|
18210
18631
|
* Request parameters for getBookingSpace operation in BookingsApi.
|
|
18211
18632
|
*/
|
|
@@ -18563,6 +18984,14 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
18563
18984
|
* @throws {RequiredError}
|
|
18564
18985
|
*/
|
|
18565
18986
|
getBookingPlaces(requestParameters?: BookingsApiGetBookingPlacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBookingPlaces200Response, any, {}>>;
|
|
18987
|
+
/**
|
|
18988
|
+
* Get Booking Responses endpoint
|
|
18989
|
+
* @summary Get Booking Responses
|
|
18990
|
+
* @param {BookingsApiGetBookingResponsesRequest} requestParameters Request parameters.
|
|
18991
|
+
* @param {*} [options] Override http request option.
|
|
18992
|
+
* @throws {RequiredError}
|
|
18993
|
+
*/
|
|
18994
|
+
getBookingResponses(requestParameters: BookingsApiGetBookingResponsesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBookingResponses200Response, any, {}>>;
|
|
18566
18995
|
/**
|
|
18567
18996
|
* Get Booking Space endpoint
|
|
18568
18997
|
* @summary Get Booking Space
|
|
@@ -18847,106 +19276,1450 @@ export declare class BookingsAvailabilitiesApi extends BaseAPI {
|
|
|
18847
19276
|
*/
|
|
18848
19277
|
export declare const BookingsBlackoutsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
18849
19278
|
/**
|
|
18850
|
-
* Create Booking Space Blackout endpoint
|
|
18851
|
-
* @summary Create Booking Space Blackout
|
|
19279
|
+
* Create Booking Space Blackout endpoint
|
|
19280
|
+
* @summary Create Booking Space Blackout
|
|
19281
|
+
* @param {string} placeId The place identifier
|
|
19282
|
+
* @param {string} spaceId The space identifier
|
|
19283
|
+
* @param {BookingSpaceBlackoutCreateInputs} bookingSpaceBlackoutCreateInputs
|
|
19284
|
+
* @param {*} [options] Override http request option.
|
|
19285
|
+
* @throws {RequiredError}
|
|
19286
|
+
*/
|
|
19287
|
+
createBookingSpaceBlackout: (placeId: string, spaceId: string, bookingSpaceBlackoutCreateInputs: BookingSpaceBlackoutCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19288
|
+
/**
|
|
19289
|
+
* Delete Booking Space Blackout endpoint
|
|
19290
|
+
* @summary Delete Booking Space Blackout
|
|
19291
|
+
* @param {string} placeId The place identifier
|
|
19292
|
+
* @param {string} spaceId The space identifier
|
|
19293
|
+
* @param {string} blackoutId The blackout identifier
|
|
19294
|
+
* @param {*} [options] Override http request option.
|
|
19295
|
+
* @throws {RequiredError}
|
|
19296
|
+
*/
|
|
19297
|
+
deleteBookingSpaceBlackout: (placeId: string, spaceId: string, blackoutId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19298
|
+
/**
|
|
19299
|
+
* Update Booking Space Blackout endpoint
|
|
19300
|
+
* @summary Update Booking Space Blackout
|
|
19301
|
+
* @param {string} placeId The place identifier
|
|
19302
|
+
* @param {string} spaceId The space identifier
|
|
19303
|
+
* @param {string} blackoutId The blackout identifier
|
|
19304
|
+
* @param {BookingSpaceBlackoutUpdateInputs} blackout Filter by blackout
|
|
19305
|
+
* @param {*} [options] Override http request option.
|
|
19306
|
+
* @throws {RequiredError}
|
|
19307
|
+
*/
|
|
19308
|
+
updateBookingSpaceBlackout: (placeId: string, spaceId: string, blackoutId: string, blackout: BookingSpaceBlackoutUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19309
|
+
};
|
|
19310
|
+
/**
|
|
19311
|
+
* BookingsBlackoutsApi - functional programming interface
|
|
19312
|
+
*/
|
|
19313
|
+
export declare const BookingsBlackoutsApiFp: (configuration?: Configuration) => {
|
|
19314
|
+
/**
|
|
19315
|
+
* Create Booking Space Blackout endpoint
|
|
19316
|
+
* @summary Create Booking Space Blackout
|
|
19317
|
+
* @param {string} placeId The place identifier
|
|
19318
|
+
* @param {string} spaceId The space identifier
|
|
19319
|
+
* @param {BookingSpaceBlackoutCreateInputs} bookingSpaceBlackoutCreateInputs
|
|
19320
|
+
* @param {*} [options] Override http request option.
|
|
19321
|
+
* @throws {RequiredError}
|
|
19322
|
+
*/
|
|
19323
|
+
createBookingSpaceBlackout(placeId: string, spaceId: string, bookingSpaceBlackoutCreateInputs: BookingSpaceBlackoutCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBookingSpaceBlackout200Response>>;
|
|
19324
|
+
/**
|
|
19325
|
+
* Delete Booking Space Blackout endpoint
|
|
19326
|
+
* @summary Delete Booking Space Blackout
|
|
19327
|
+
* @param {string} placeId The place identifier
|
|
19328
|
+
* @param {string} spaceId The space identifier
|
|
19329
|
+
* @param {string} blackoutId The blackout identifier
|
|
19330
|
+
* @param {*} [options] Override http request option.
|
|
19331
|
+
* @throws {RequiredError}
|
|
19332
|
+
*/
|
|
19333
|
+
deleteBookingSpaceBlackout(placeId: string, spaceId: string, blackoutId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
19334
|
+
/**
|
|
19335
|
+
* Update Booking Space Blackout endpoint
|
|
19336
|
+
* @summary Update Booking Space Blackout
|
|
19337
|
+
* @param {string} placeId The place identifier
|
|
19338
|
+
* @param {string} spaceId The space identifier
|
|
19339
|
+
* @param {string} blackoutId The blackout identifier
|
|
19340
|
+
* @param {BookingSpaceBlackoutUpdateInputs} blackout Filter by blackout
|
|
19341
|
+
* @param {*} [options] Override http request option.
|
|
19342
|
+
* @throws {RequiredError}
|
|
19343
|
+
*/
|
|
19344
|
+
updateBookingSpaceBlackout(placeId: string, spaceId: string, blackoutId: string, blackout: BookingSpaceBlackoutUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBookingSpaceBlackout200Response>>;
|
|
19345
|
+
};
|
|
19346
|
+
/**
|
|
19347
|
+
* BookingsBlackoutsApi - factory interface
|
|
19348
|
+
*/
|
|
19349
|
+
export declare const BookingsBlackoutsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
19350
|
+
/**
|
|
19351
|
+
* Create Booking Space Blackout endpoint
|
|
19352
|
+
* @summary Create Booking Space Blackout
|
|
19353
|
+
* @param {BookingsBlackoutsApiCreateBookingSpaceBlackoutRequest} requestParameters Request parameters.
|
|
19354
|
+
* @param {*} [options] Override http request option.
|
|
19355
|
+
* @throws {RequiredError}
|
|
19356
|
+
*/
|
|
19357
|
+
createBookingSpaceBlackout(requestParameters: BookingsBlackoutsApiCreateBookingSpaceBlackoutRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBookingSpaceBlackout200Response>;
|
|
19358
|
+
/**
|
|
19359
|
+
* Delete Booking Space Blackout endpoint
|
|
19360
|
+
* @summary Delete Booking Space Blackout
|
|
19361
|
+
* @param {BookingsBlackoutsApiDeleteBookingSpaceBlackoutRequest} requestParameters Request parameters.
|
|
19362
|
+
* @param {*} [options] Override http request option.
|
|
19363
|
+
* @throws {RequiredError}
|
|
19364
|
+
*/
|
|
19365
|
+
deleteBookingSpaceBlackout(requestParameters: BookingsBlackoutsApiDeleteBookingSpaceBlackoutRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
19366
|
+
/**
|
|
19367
|
+
* Update Booking Space Blackout endpoint
|
|
19368
|
+
* @summary Update Booking Space Blackout
|
|
19369
|
+
* @param {BookingsBlackoutsApiUpdateBookingSpaceBlackoutRequest} requestParameters Request parameters.
|
|
19370
|
+
* @param {*} [options] Override http request option.
|
|
19371
|
+
* @throws {RequiredError}
|
|
19372
|
+
*/
|
|
19373
|
+
updateBookingSpaceBlackout(requestParameters: BookingsBlackoutsApiUpdateBookingSpaceBlackoutRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBookingSpaceBlackout200Response>;
|
|
19374
|
+
};
|
|
19375
|
+
/**
|
|
19376
|
+
* Request parameters for createBookingSpaceBlackout operation in BookingsBlackoutsApi.
|
|
19377
|
+
*/
|
|
19378
|
+
export interface BookingsBlackoutsApiCreateBookingSpaceBlackoutRequest {
|
|
19379
|
+
/**
|
|
19380
|
+
* The place identifier
|
|
19381
|
+
*/
|
|
19382
|
+
readonly placeId: string;
|
|
19383
|
+
/**
|
|
19384
|
+
* The space identifier
|
|
19385
|
+
*/
|
|
19386
|
+
readonly spaceId: string;
|
|
19387
|
+
readonly bookingSpaceBlackoutCreateInputs: BookingSpaceBlackoutCreateInputs;
|
|
19388
|
+
}
|
|
19389
|
+
/**
|
|
19390
|
+
* Request parameters for deleteBookingSpaceBlackout operation in BookingsBlackoutsApi.
|
|
19391
|
+
*/
|
|
19392
|
+
export interface BookingsBlackoutsApiDeleteBookingSpaceBlackoutRequest {
|
|
19393
|
+
/**
|
|
19394
|
+
* The place identifier
|
|
19395
|
+
*/
|
|
19396
|
+
readonly placeId: string;
|
|
19397
|
+
/**
|
|
19398
|
+
* The space identifier
|
|
19399
|
+
*/
|
|
19400
|
+
readonly spaceId: string;
|
|
19401
|
+
/**
|
|
19402
|
+
* The blackout identifier
|
|
19403
|
+
*/
|
|
19404
|
+
readonly blackoutId: string;
|
|
19405
|
+
}
|
|
19406
|
+
/**
|
|
19407
|
+
* Request parameters for updateBookingSpaceBlackout operation in BookingsBlackoutsApi.
|
|
19408
|
+
*/
|
|
19409
|
+
export interface BookingsBlackoutsApiUpdateBookingSpaceBlackoutRequest {
|
|
19410
|
+
/**
|
|
19411
|
+
* The place identifier
|
|
19412
|
+
*/
|
|
19413
|
+
readonly placeId: string;
|
|
19414
|
+
/**
|
|
19415
|
+
* The space identifier
|
|
19416
|
+
*/
|
|
19417
|
+
readonly spaceId: string;
|
|
19418
|
+
/**
|
|
19419
|
+
* The blackout identifier
|
|
19420
|
+
*/
|
|
19421
|
+
readonly blackoutId: string;
|
|
19422
|
+
/**
|
|
19423
|
+
* Filter by blackout
|
|
19424
|
+
*/
|
|
19425
|
+
readonly blackout: BookingSpaceBlackoutUpdateInputs;
|
|
19426
|
+
}
|
|
19427
|
+
/**
|
|
19428
|
+
* BookingsBlackoutsApi - object-oriented interface
|
|
19429
|
+
*/
|
|
19430
|
+
export declare class BookingsBlackoutsApi extends BaseAPI {
|
|
19431
|
+
/**
|
|
19432
|
+
* Create Booking Space Blackout endpoint
|
|
19433
|
+
* @summary Create Booking Space Blackout
|
|
19434
|
+
* @param {BookingsBlackoutsApiCreateBookingSpaceBlackoutRequest} requestParameters Request parameters.
|
|
19435
|
+
* @param {*} [options] Override http request option.
|
|
19436
|
+
* @throws {RequiredError}
|
|
19437
|
+
*/
|
|
19438
|
+
createBookingSpaceBlackout(requestParameters: BookingsBlackoutsApiCreateBookingSpaceBlackoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingSpaceBlackout200Response, any, {}>>;
|
|
19439
|
+
/**
|
|
19440
|
+
* Delete Booking Space Blackout endpoint
|
|
19441
|
+
* @summary Delete Booking Space Blackout
|
|
19442
|
+
* @param {BookingsBlackoutsApiDeleteBookingSpaceBlackoutRequest} requestParameters Request parameters.
|
|
19443
|
+
* @param {*} [options] Override http request option.
|
|
19444
|
+
* @throws {RequiredError}
|
|
19445
|
+
*/
|
|
19446
|
+
deleteBookingSpaceBlackout(requestParameters: BookingsBlackoutsApiDeleteBookingSpaceBlackoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
19447
|
+
/**
|
|
19448
|
+
* Update Booking Space Blackout endpoint
|
|
19449
|
+
* @summary Update Booking Space Blackout
|
|
19450
|
+
* @param {BookingsBlackoutsApiUpdateBookingSpaceBlackoutRequest} requestParameters Request parameters.
|
|
19451
|
+
* @param {*} [options] Override http request option.
|
|
19452
|
+
* @throws {RequiredError}
|
|
19453
|
+
*/
|
|
19454
|
+
updateBookingSpaceBlackout(requestParameters: BookingsBlackoutsApiUpdateBookingSpaceBlackoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingSpaceBlackout200Response, any, {}>>;
|
|
19455
|
+
}
|
|
19456
|
+
/**
|
|
19457
|
+
* BookingsPlacesApi - axios parameter creator
|
|
19458
|
+
*/
|
|
19459
|
+
export declare const BookingsPlacesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
19460
|
+
/**
|
|
19461
|
+
* Create Booking Place endpoint
|
|
19462
|
+
* @summary Create Booking Place
|
|
19463
|
+
* @param {BookingPlaceCreateInputs} bookingPlaceCreateInputs
|
|
19464
|
+
* @param {*} [options] Override http request option.
|
|
19465
|
+
* @throws {RequiredError}
|
|
19466
|
+
*/
|
|
19467
|
+
createBookingPlace: (bookingPlaceCreateInputs: BookingPlaceCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19468
|
+
/**
|
|
19469
|
+
* Delete Booking Place endpoint
|
|
19470
|
+
* @summary Delete Booking Place
|
|
19471
|
+
* @param {string} placeId The place identifier
|
|
19472
|
+
* @param {*} [options] Override http request option.
|
|
19473
|
+
* @throws {RequiredError}
|
|
19474
|
+
*/
|
|
19475
|
+
deleteBookingPlace: (placeId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19476
|
+
/**
|
|
19477
|
+
* Update Booking Place endpoint
|
|
19478
|
+
* @summary Update Booking Place
|
|
19479
|
+
* @param {string} placeId The place identifier
|
|
19480
|
+
* @param {BookingPlaceUpdateInputs} bookingPlace Filter by bookingPlace
|
|
19481
|
+
* @param {*} [options] Override http request option.
|
|
19482
|
+
* @throws {RequiredError}
|
|
19483
|
+
*/
|
|
19484
|
+
updateBookingPlace: (placeId: string, bookingPlace: BookingPlaceUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19485
|
+
};
|
|
19486
|
+
/**
|
|
19487
|
+
* BookingsPlacesApi - functional programming interface
|
|
19488
|
+
*/
|
|
19489
|
+
export declare const BookingsPlacesApiFp: (configuration?: Configuration) => {
|
|
19490
|
+
/**
|
|
19491
|
+
* Create Booking Place endpoint
|
|
19492
|
+
* @summary Create Booking Place
|
|
19493
|
+
* @param {BookingPlaceCreateInputs} bookingPlaceCreateInputs
|
|
19494
|
+
* @param {*} [options] Override http request option.
|
|
19495
|
+
* @throws {RequiredError}
|
|
19496
|
+
*/
|
|
19497
|
+
createBookingPlace(bookingPlaceCreateInputs: BookingPlaceCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBookingPlace200Response>>;
|
|
19498
|
+
/**
|
|
19499
|
+
* Delete Booking Place endpoint
|
|
19500
|
+
* @summary Delete Booking Place
|
|
19501
|
+
* @param {string} placeId The place identifier
|
|
19502
|
+
* @param {*} [options] Override http request option.
|
|
19503
|
+
* @throws {RequiredError}
|
|
19504
|
+
*/
|
|
19505
|
+
deleteBookingPlace(placeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
19506
|
+
/**
|
|
19507
|
+
* Update Booking Place endpoint
|
|
19508
|
+
* @summary Update Booking Place
|
|
19509
|
+
* @param {string} placeId The place identifier
|
|
19510
|
+
* @param {BookingPlaceUpdateInputs} bookingPlace Filter by bookingPlace
|
|
19511
|
+
* @param {*} [options] Override http request option.
|
|
19512
|
+
* @throws {RequiredError}
|
|
19513
|
+
*/
|
|
19514
|
+
updateBookingPlace(placeId: string, bookingPlace: BookingPlaceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBookingPlace200Response>>;
|
|
19515
|
+
};
|
|
19516
|
+
/**
|
|
19517
|
+
* BookingsPlacesApi - factory interface
|
|
19518
|
+
*/
|
|
19519
|
+
export declare const BookingsPlacesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
19520
|
+
/**
|
|
19521
|
+
* Create Booking Place endpoint
|
|
19522
|
+
* @summary Create Booking Place
|
|
19523
|
+
* @param {BookingsPlacesApiCreateBookingPlaceRequest} requestParameters Request parameters.
|
|
19524
|
+
* @param {*} [options] Override http request option.
|
|
19525
|
+
* @throws {RequiredError}
|
|
19526
|
+
*/
|
|
19527
|
+
createBookingPlace(requestParameters: BookingsPlacesApiCreateBookingPlaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBookingPlace200Response>;
|
|
19528
|
+
/**
|
|
19529
|
+
* Delete Booking Place endpoint
|
|
19530
|
+
* @summary Delete Booking Place
|
|
19531
|
+
* @param {BookingsPlacesApiDeleteBookingPlaceRequest} requestParameters Request parameters.
|
|
19532
|
+
* @param {*} [options] Override http request option.
|
|
19533
|
+
* @throws {RequiredError}
|
|
19534
|
+
*/
|
|
19535
|
+
deleteBookingPlace(requestParameters: BookingsPlacesApiDeleteBookingPlaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
19536
|
+
/**
|
|
19537
|
+
* Update Booking Place endpoint
|
|
19538
|
+
* @summary Update Booking Place
|
|
19539
|
+
* @param {BookingsPlacesApiUpdateBookingPlaceRequest} requestParameters Request parameters.
|
|
19540
|
+
* @param {*} [options] Override http request option.
|
|
19541
|
+
* @throws {RequiredError}
|
|
19542
|
+
*/
|
|
19543
|
+
updateBookingPlace(requestParameters: BookingsPlacesApiUpdateBookingPlaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBookingPlace200Response>;
|
|
19544
|
+
};
|
|
19545
|
+
/**
|
|
19546
|
+
* Request parameters for createBookingPlace operation in BookingsPlacesApi.
|
|
19547
|
+
*/
|
|
19548
|
+
export interface BookingsPlacesApiCreateBookingPlaceRequest {
|
|
19549
|
+
readonly bookingPlaceCreateInputs: BookingPlaceCreateInputs;
|
|
19550
|
+
}
|
|
19551
|
+
/**
|
|
19552
|
+
* Request parameters for deleteBookingPlace operation in BookingsPlacesApi.
|
|
19553
|
+
*/
|
|
19554
|
+
export interface BookingsPlacesApiDeleteBookingPlaceRequest {
|
|
19555
|
+
/**
|
|
19556
|
+
* The place identifier
|
|
19557
|
+
*/
|
|
19558
|
+
readonly placeId: string;
|
|
19559
|
+
}
|
|
19560
|
+
/**
|
|
19561
|
+
* Request parameters for updateBookingPlace operation in BookingsPlacesApi.
|
|
19562
|
+
*/
|
|
19563
|
+
export interface BookingsPlacesApiUpdateBookingPlaceRequest {
|
|
19564
|
+
/**
|
|
19565
|
+
* The place identifier
|
|
19566
|
+
*/
|
|
19567
|
+
readonly placeId: string;
|
|
19568
|
+
/**
|
|
19569
|
+
* Filter by bookingPlace
|
|
19570
|
+
*/
|
|
19571
|
+
readonly bookingPlace: BookingPlaceUpdateInputs;
|
|
19572
|
+
}
|
|
19573
|
+
/**
|
|
19574
|
+
* BookingsPlacesApi - object-oriented interface
|
|
19575
|
+
*/
|
|
19576
|
+
export declare class BookingsPlacesApi extends BaseAPI {
|
|
19577
|
+
/**
|
|
19578
|
+
* Create Booking Place endpoint
|
|
19579
|
+
* @summary Create Booking Place
|
|
19580
|
+
* @param {BookingsPlacesApiCreateBookingPlaceRequest} requestParameters Request parameters.
|
|
19581
|
+
* @param {*} [options] Override http request option.
|
|
19582
|
+
* @throws {RequiredError}
|
|
19583
|
+
*/
|
|
19584
|
+
createBookingPlace(requestParameters: BookingsPlacesApiCreateBookingPlaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingPlace200Response, any, {}>>;
|
|
19585
|
+
/**
|
|
19586
|
+
* Delete Booking Place endpoint
|
|
19587
|
+
* @summary Delete Booking Place
|
|
19588
|
+
* @param {BookingsPlacesApiDeleteBookingPlaceRequest} requestParameters Request parameters.
|
|
19589
|
+
* @param {*} [options] Override http request option.
|
|
19590
|
+
* @throws {RequiredError}
|
|
19591
|
+
*/
|
|
19592
|
+
deleteBookingPlace(requestParameters: BookingsPlacesApiDeleteBookingPlaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
19593
|
+
/**
|
|
19594
|
+
* Update Booking Place endpoint
|
|
19595
|
+
* @summary Update Booking Place
|
|
19596
|
+
* @param {BookingsPlacesApiUpdateBookingPlaceRequest} requestParameters Request parameters.
|
|
19597
|
+
* @param {*} [options] Override http request option.
|
|
19598
|
+
* @throws {RequiredError}
|
|
19599
|
+
*/
|
|
19600
|
+
updateBookingPlace(requestParameters: BookingsPlacesApiUpdateBookingPlaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingPlace200Response, any, {}>>;
|
|
19601
|
+
}
|
|
19602
|
+
/**
|
|
19603
|
+
* BookingsPlacesTranslationsApi - axios parameter creator
|
|
19604
|
+
*/
|
|
19605
|
+
export declare const BookingsPlacesTranslationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
19606
|
+
/**
|
|
19607
|
+
* Delete Booking Place Translation endpoint
|
|
19608
|
+
* @summary Delete Booking Place Translation
|
|
19609
|
+
* @param {string} placeId The place identifier
|
|
19610
|
+
* @param {string} locale The locale identifier
|
|
19611
|
+
* @param {*} [options] Override http request option.
|
|
19612
|
+
* @throws {RequiredError}
|
|
19613
|
+
*/
|
|
19614
|
+
deleteBookingPlaceTranslation: (placeId: string, locale: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19615
|
+
/**
|
|
19616
|
+
* Update Booking Place Translation endpoint
|
|
19617
|
+
* @summary Update Booking Place Translation
|
|
19618
|
+
* @param {string} placeId The place identifier
|
|
19619
|
+
* @param {string} locale The locale identifier
|
|
19620
|
+
* @param {BookingPlaceTranslationUpdateInputs} bookingPlaceTranslationUpdateInputs
|
|
19621
|
+
* @param {*} [options] Override http request option.
|
|
19622
|
+
* @throws {RequiredError}
|
|
19623
|
+
*/
|
|
19624
|
+
updateBookingPlaceTranslation: (placeId: string, locale: string, bookingPlaceTranslationUpdateInputs: BookingPlaceTranslationUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19625
|
+
};
|
|
19626
|
+
/**
|
|
19627
|
+
* BookingsPlacesTranslationsApi - functional programming interface
|
|
19628
|
+
*/
|
|
19629
|
+
export declare const BookingsPlacesTranslationsApiFp: (configuration?: Configuration) => {
|
|
19630
|
+
/**
|
|
19631
|
+
* Delete Booking Place Translation endpoint
|
|
19632
|
+
* @summary Delete Booking Place Translation
|
|
19633
|
+
* @param {string} placeId The place identifier
|
|
19634
|
+
* @param {string} locale The locale identifier
|
|
19635
|
+
* @param {*} [options] Override http request option.
|
|
19636
|
+
* @throws {RequiredError}
|
|
19637
|
+
*/
|
|
19638
|
+
deleteBookingPlaceTranslation(placeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>>;
|
|
19639
|
+
/**
|
|
19640
|
+
* Update Booking Place Translation endpoint
|
|
19641
|
+
* @summary Update Booking Place Translation
|
|
19642
|
+
* @param {string} placeId The place identifier
|
|
19643
|
+
* @param {string} locale The locale identifier
|
|
19644
|
+
* @param {BookingPlaceTranslationUpdateInputs} bookingPlaceTranslationUpdateInputs
|
|
19645
|
+
* @param {*} [options] Override http request option.
|
|
19646
|
+
* @throws {RequiredError}
|
|
19647
|
+
*/
|
|
19648
|
+
updateBookingPlaceTranslation(placeId: string, locale: string, bookingPlaceTranslationUpdateInputs: BookingPlaceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>>;
|
|
19649
|
+
};
|
|
19650
|
+
/**
|
|
19651
|
+
* BookingsPlacesTranslationsApi - factory interface
|
|
19652
|
+
*/
|
|
19653
|
+
export declare const BookingsPlacesTranslationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
19654
|
+
/**
|
|
19655
|
+
* Delete Booking Place Translation endpoint
|
|
19656
|
+
* @summary Delete Booking Place Translation
|
|
19657
|
+
* @param {BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest} requestParameters Request parameters.
|
|
19658
|
+
* @param {*} [options] Override http request option.
|
|
19659
|
+
* @throws {RequiredError}
|
|
19660
|
+
*/
|
|
19661
|
+
deleteBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response>;
|
|
19662
|
+
/**
|
|
19663
|
+
* Update Booking Place Translation endpoint
|
|
19664
|
+
* @summary Update Booking Place Translation
|
|
19665
|
+
* @param {BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest} requestParameters Request parameters.
|
|
19666
|
+
* @param {*} [options] Override http request option.
|
|
19667
|
+
* @throws {RequiredError}
|
|
19668
|
+
*/
|
|
19669
|
+
updateBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response>;
|
|
19670
|
+
};
|
|
19671
|
+
/**
|
|
19672
|
+
* Request parameters for deleteBookingPlaceTranslation operation in BookingsPlacesTranslationsApi.
|
|
19673
|
+
*/
|
|
19674
|
+
export interface BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest {
|
|
19675
|
+
/**
|
|
19676
|
+
* The place identifier
|
|
19677
|
+
*/
|
|
19678
|
+
readonly placeId: string;
|
|
19679
|
+
/**
|
|
19680
|
+
* The locale identifier
|
|
19681
|
+
*/
|
|
19682
|
+
readonly locale: string;
|
|
19683
|
+
}
|
|
19684
|
+
/**
|
|
19685
|
+
* Request parameters for updateBookingPlaceTranslation operation in BookingsPlacesTranslationsApi.
|
|
19686
|
+
*/
|
|
19687
|
+
export interface BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest {
|
|
19688
|
+
/**
|
|
19689
|
+
* The place identifier
|
|
19690
|
+
*/
|
|
19691
|
+
readonly placeId: string;
|
|
19692
|
+
/**
|
|
19693
|
+
* The locale identifier
|
|
19694
|
+
*/
|
|
19695
|
+
readonly locale: string;
|
|
19696
|
+
readonly bookingPlaceTranslationUpdateInputs: BookingPlaceTranslationUpdateInputs;
|
|
19697
|
+
}
|
|
19698
|
+
/**
|
|
19699
|
+
* BookingsPlacesTranslationsApi - object-oriented interface
|
|
19700
|
+
*/
|
|
19701
|
+
export declare class BookingsPlacesTranslationsApi extends BaseAPI {
|
|
19702
|
+
/**
|
|
19703
|
+
* Delete Booking Place Translation endpoint
|
|
19704
|
+
* @summary Delete Booking Place Translation
|
|
19705
|
+
* @param {BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest} requestParameters Request parameters.
|
|
19706
|
+
* @param {*} [options] Override http request option.
|
|
19707
|
+
* @throws {RequiredError}
|
|
19708
|
+
*/
|
|
19709
|
+
deleteBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiDeleteBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateAnnouncementTranslation200Response, any, {}>>;
|
|
19710
|
+
/**
|
|
19711
|
+
* Update Booking Place Translation endpoint
|
|
19712
|
+
* @summary Update Booking Place Translation
|
|
19713
|
+
* @param {BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest} requestParameters Request parameters.
|
|
19714
|
+
* @param {*} [options] Override http request option.
|
|
19715
|
+
* @throws {RequiredError}
|
|
19716
|
+
*/
|
|
19717
|
+
updateBookingPlaceTranslation(requestParameters: BookingsPlacesTranslationsApiUpdateBookingPlaceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateAnnouncementTranslation200Response, any, {}>>;
|
|
19718
|
+
}
|
|
19719
|
+
/**
|
|
19720
|
+
* BookingsQuestionsApi - axios parameter creator
|
|
19721
|
+
*/
|
|
19722
|
+
export declare const BookingsQuestionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
19723
|
+
/**
|
|
19724
|
+
* Attach Booking Space Question Search List endpoint
|
|
19725
|
+
* @summary Attach Booking Space Question Search List
|
|
19726
|
+
* @param {string} placeId The place identifier
|
|
19727
|
+
* @param {string} spaceId The space identifier
|
|
19728
|
+
* @param {string} questionId The question identifier
|
|
19729
|
+
* @param {AttachSearchListInputs} attachSearchListInputs
|
|
19730
|
+
* @param {*} [options] Override http request option.
|
|
19731
|
+
* @throws {RequiredError}
|
|
19732
|
+
*/
|
|
19733
|
+
attachBookingSpaceQuestionSearchList: (placeId: string, spaceId: string, questionId: string, attachSearchListInputs: AttachSearchListInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19734
|
+
/**
|
|
19735
|
+
* Create Booking Space Question endpoint
|
|
19736
|
+
* @summary Create Booking Space Question
|
|
19737
|
+
* @param {string} placeId The place identifier
|
|
19738
|
+
* @param {string} spaceId The space identifier
|
|
19739
|
+
* @param {BookingSpaceQuestionCreateInputs} bookingSpaceQuestionCreateInputs
|
|
19740
|
+
* @param {*} [options] Override http request option.
|
|
19741
|
+
* @throws {RequiredError}
|
|
19742
|
+
*/
|
|
19743
|
+
createBookingSpaceQuestion: (placeId: string, spaceId: string, bookingSpaceQuestionCreateInputs: BookingSpaceQuestionCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19744
|
+
/**
|
|
19745
|
+
* Delete Booking Space Question endpoint
|
|
19746
|
+
* @summary Delete Booking Space Question
|
|
19747
|
+
* @param {string} placeId The place identifier
|
|
19748
|
+
* @param {string} spaceId The space identifier
|
|
19749
|
+
* @param {string} questionId The question identifier
|
|
19750
|
+
* @param {*} [options] Override http request option.
|
|
19751
|
+
* @throws {RequiredError}
|
|
19752
|
+
*/
|
|
19753
|
+
deleteBookingSpaceQuestion: (placeId: string, spaceId: string, questionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19754
|
+
/**
|
|
19755
|
+
* Detach Booking Space Question Search List endpoint
|
|
19756
|
+
* @summary Detach Booking Space Question Search List
|
|
19757
|
+
* @param {string} placeId The place identifier
|
|
19758
|
+
* @param {string} spaceId The space identifier
|
|
19759
|
+
* @param {string} questionId The question identifier
|
|
19760
|
+
* @param {*} [options] Override http request option.
|
|
19761
|
+
* @throws {RequiredError}
|
|
19762
|
+
*/
|
|
19763
|
+
detachBookingSpaceQuestionSearchList: (placeId: string, spaceId: string, questionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19764
|
+
/**
|
|
19765
|
+
* Get Booking Space Question endpoint
|
|
19766
|
+
* @summary Get Booking Space Question
|
|
19767
|
+
* @param {string} placeId The place identifier
|
|
19768
|
+
* @param {string} spaceId The space identifier
|
|
19769
|
+
* @param {string} questionId The question identifier
|
|
19770
|
+
* @param {*} [options] Override http request option.
|
|
19771
|
+
* @throws {RequiredError}
|
|
19772
|
+
*/
|
|
19773
|
+
getBookingSpaceQuestion: (placeId: string, spaceId: string, questionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19774
|
+
/**
|
|
19775
|
+
* Get Booking Space Questions endpoint
|
|
19776
|
+
* @summary Get Booking Space Questions
|
|
19777
|
+
* @param {string} placeId The place identifier
|
|
19778
|
+
* @param {string} spaceId The space identifier
|
|
19779
|
+
* @param {number} [page] Page number
|
|
19780
|
+
* @param {number} [pageSize] Number of items per page
|
|
19781
|
+
* @param {string} [orderBy] Field to order by
|
|
19782
|
+
* @param {string} [search] Search query
|
|
19783
|
+
* @param {*} [options] Override http request option.
|
|
19784
|
+
* @throws {RequiredError}
|
|
19785
|
+
*/
|
|
19786
|
+
getBookingSpaceQuestions: (placeId: string, spaceId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19787
|
+
/**
|
|
19788
|
+
* Reorder Booking Space Questions endpoint
|
|
19789
|
+
* @summary Reorder Booking Space Questions
|
|
19790
|
+
* @param {string} placeId The place identifier
|
|
19791
|
+
* @param {string} spaceId The space identifier
|
|
19792
|
+
* @param {Array<string>} questionsIds Filter by questionsIds
|
|
19793
|
+
* @param {*} [options] Override http request option.
|
|
19794
|
+
* @throws {RequiredError}
|
|
19795
|
+
*/
|
|
19796
|
+
reorderBookingSpaceQuestions: (placeId: string, spaceId: string, questionsIds: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19797
|
+
/**
|
|
19798
|
+
* Update Booking Space Question endpoint
|
|
19799
|
+
* @summary Update Booking Space Question
|
|
19800
|
+
* @param {string} placeId The place identifier
|
|
19801
|
+
* @param {string} spaceId The space identifier
|
|
19802
|
+
* @param {string} questionId The question identifier
|
|
19803
|
+
* @param {BookingSpaceQuestionUpdateInputs} bookingSpaceQuestionUpdateInputs
|
|
19804
|
+
* @param {*} [options] Override http request option.
|
|
19805
|
+
* @throws {RequiredError}
|
|
19806
|
+
*/
|
|
19807
|
+
updateBookingSpaceQuestion: (placeId: string, spaceId: string, questionId: string, bookingSpaceQuestionUpdateInputs: BookingSpaceQuestionUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19808
|
+
};
|
|
19809
|
+
/**
|
|
19810
|
+
* BookingsQuestionsApi - functional programming interface
|
|
19811
|
+
*/
|
|
19812
|
+
export declare const BookingsQuestionsApiFp: (configuration?: Configuration) => {
|
|
19813
|
+
/**
|
|
19814
|
+
* Attach Booking Space Question Search List endpoint
|
|
19815
|
+
* @summary Attach Booking Space Question Search List
|
|
19816
|
+
* @param {string} placeId The place identifier
|
|
19817
|
+
* @param {string} spaceId The space identifier
|
|
19818
|
+
* @param {string} questionId The question identifier
|
|
19819
|
+
* @param {AttachSearchListInputs} attachSearchListInputs
|
|
19820
|
+
* @param {*} [options] Override http request option.
|
|
19821
|
+
* @throws {RequiredError}
|
|
19822
|
+
*/
|
|
19823
|
+
attachBookingSpaceQuestionSearchList(placeId: string, spaceId: string, questionId: string, attachSearchListInputs: AttachSearchListInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBookingSpaceQuestion200Response>>;
|
|
19824
|
+
/**
|
|
19825
|
+
* Create Booking Space Question endpoint
|
|
19826
|
+
* @summary Create Booking Space Question
|
|
19827
|
+
* @param {string} placeId The place identifier
|
|
19828
|
+
* @param {string} spaceId The space identifier
|
|
19829
|
+
* @param {BookingSpaceQuestionCreateInputs} bookingSpaceQuestionCreateInputs
|
|
19830
|
+
* @param {*} [options] Override http request option.
|
|
19831
|
+
* @throws {RequiredError}
|
|
19832
|
+
*/
|
|
19833
|
+
createBookingSpaceQuestion(placeId: string, spaceId: string, bookingSpaceQuestionCreateInputs: BookingSpaceQuestionCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBookingSpaceQuestion200Response>>;
|
|
19834
|
+
/**
|
|
19835
|
+
* Delete Booking Space Question endpoint
|
|
19836
|
+
* @summary Delete Booking Space Question
|
|
19837
|
+
* @param {string} placeId The place identifier
|
|
19838
|
+
* @param {string} spaceId The space identifier
|
|
19839
|
+
* @param {string} questionId The question identifier
|
|
19840
|
+
* @param {*} [options] Override http request option.
|
|
19841
|
+
* @throws {RequiredError}
|
|
19842
|
+
*/
|
|
19843
|
+
deleteBookingSpaceQuestion(placeId: string, spaceId: string, questionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
19844
|
+
/**
|
|
19845
|
+
* Detach Booking Space Question Search List endpoint
|
|
19846
|
+
* @summary Detach Booking Space Question Search List
|
|
19847
|
+
* @param {string} placeId The place identifier
|
|
19848
|
+
* @param {string} spaceId The space identifier
|
|
19849
|
+
* @param {string} questionId The question identifier
|
|
19850
|
+
* @param {*} [options] Override http request option.
|
|
19851
|
+
* @throws {RequiredError}
|
|
19852
|
+
*/
|
|
19853
|
+
detachBookingSpaceQuestionSearchList(placeId: string, spaceId: string, questionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBookingSpaceQuestion200Response>>;
|
|
19854
|
+
/**
|
|
19855
|
+
* Get Booking Space Question endpoint
|
|
19856
|
+
* @summary Get Booking Space Question
|
|
19857
|
+
* @param {string} placeId The place identifier
|
|
19858
|
+
* @param {string} spaceId The space identifier
|
|
19859
|
+
* @param {string} questionId The question identifier
|
|
19860
|
+
* @param {*} [options] Override http request option.
|
|
19861
|
+
* @throws {RequiredError}
|
|
19862
|
+
*/
|
|
19863
|
+
getBookingSpaceQuestion(placeId: string, spaceId: string, questionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBookingSpaceQuestion200Response>>;
|
|
19864
|
+
/**
|
|
19865
|
+
* Get Booking Space Questions endpoint
|
|
19866
|
+
* @summary Get Booking Space Questions
|
|
19867
|
+
* @param {string} placeId The place identifier
|
|
19868
|
+
* @param {string} spaceId The space identifier
|
|
19869
|
+
* @param {number} [page] Page number
|
|
19870
|
+
* @param {number} [pageSize] Number of items per page
|
|
19871
|
+
* @param {string} [orderBy] Field to order by
|
|
19872
|
+
* @param {string} [search] Search query
|
|
19873
|
+
* @param {*} [options] Override http request option.
|
|
19874
|
+
* @throws {RequiredError}
|
|
19875
|
+
*/
|
|
19876
|
+
getBookingSpaceQuestions(placeId: string, spaceId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBookingSpaceQuestions200Response>>;
|
|
19877
|
+
/**
|
|
19878
|
+
* Reorder Booking Space Questions endpoint
|
|
19879
|
+
* @summary Reorder Booking Space Questions
|
|
19880
|
+
* @param {string} placeId The place identifier
|
|
19881
|
+
* @param {string} spaceId The space identifier
|
|
19882
|
+
* @param {Array<string>} questionsIds Filter by questionsIds
|
|
19883
|
+
* @param {*} [options] Override http request option.
|
|
19884
|
+
* @throws {RequiredError}
|
|
19885
|
+
*/
|
|
19886
|
+
reorderBookingSpaceQuestions(placeId: string, spaceId: string, questionsIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReorderBookingSpaceQuestions200Response>>;
|
|
19887
|
+
/**
|
|
19888
|
+
* Update Booking Space Question endpoint
|
|
19889
|
+
* @summary Update Booking Space Question
|
|
19890
|
+
* @param {string} placeId The place identifier
|
|
19891
|
+
* @param {string} spaceId The space identifier
|
|
19892
|
+
* @param {string} questionId The question identifier
|
|
19893
|
+
* @param {BookingSpaceQuestionUpdateInputs} bookingSpaceQuestionUpdateInputs
|
|
19894
|
+
* @param {*} [options] Override http request option.
|
|
19895
|
+
* @throws {RequiredError}
|
|
19896
|
+
*/
|
|
19897
|
+
updateBookingSpaceQuestion(placeId: string, spaceId: string, questionId: string, bookingSpaceQuestionUpdateInputs: BookingSpaceQuestionUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBookingSpaceQuestion200Response>>;
|
|
19898
|
+
};
|
|
19899
|
+
/**
|
|
19900
|
+
* BookingsQuestionsApi - factory interface
|
|
19901
|
+
*/
|
|
19902
|
+
export declare const BookingsQuestionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
19903
|
+
/**
|
|
19904
|
+
* Attach Booking Space Question Search List endpoint
|
|
19905
|
+
* @summary Attach Booking Space Question Search List
|
|
19906
|
+
* @param {BookingsQuestionsApiAttachBookingSpaceQuestionSearchListRequest} requestParameters Request parameters.
|
|
19907
|
+
* @param {*} [options] Override http request option.
|
|
19908
|
+
* @throws {RequiredError}
|
|
19909
|
+
*/
|
|
19910
|
+
attachBookingSpaceQuestionSearchList(requestParameters: BookingsQuestionsApiAttachBookingSpaceQuestionSearchListRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBookingSpaceQuestion200Response>;
|
|
19911
|
+
/**
|
|
19912
|
+
* Create Booking Space Question endpoint
|
|
19913
|
+
* @summary Create Booking Space Question
|
|
19914
|
+
* @param {BookingsQuestionsApiCreateBookingSpaceQuestionRequest} requestParameters Request parameters.
|
|
19915
|
+
* @param {*} [options] Override http request option.
|
|
19916
|
+
* @throws {RequiredError}
|
|
19917
|
+
*/
|
|
19918
|
+
createBookingSpaceQuestion(requestParameters: BookingsQuestionsApiCreateBookingSpaceQuestionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBookingSpaceQuestion200Response>;
|
|
19919
|
+
/**
|
|
19920
|
+
* Delete Booking Space Question endpoint
|
|
19921
|
+
* @summary Delete Booking Space Question
|
|
19922
|
+
* @param {BookingsQuestionsApiDeleteBookingSpaceQuestionRequest} requestParameters Request parameters.
|
|
19923
|
+
* @param {*} [options] Override http request option.
|
|
19924
|
+
* @throws {RequiredError}
|
|
19925
|
+
*/
|
|
19926
|
+
deleteBookingSpaceQuestion(requestParameters: BookingsQuestionsApiDeleteBookingSpaceQuestionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
19927
|
+
/**
|
|
19928
|
+
* Detach Booking Space Question Search List endpoint
|
|
19929
|
+
* @summary Detach Booking Space Question Search List
|
|
19930
|
+
* @param {BookingsQuestionsApiDetachBookingSpaceQuestionSearchListRequest} requestParameters Request parameters.
|
|
19931
|
+
* @param {*} [options] Override http request option.
|
|
19932
|
+
* @throws {RequiredError}
|
|
19933
|
+
*/
|
|
19934
|
+
detachBookingSpaceQuestionSearchList(requestParameters: BookingsQuestionsApiDetachBookingSpaceQuestionSearchListRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBookingSpaceQuestion200Response>;
|
|
19935
|
+
/**
|
|
19936
|
+
* Get Booking Space Question endpoint
|
|
19937
|
+
* @summary Get Booking Space Question
|
|
19938
|
+
* @param {BookingsQuestionsApiGetBookingSpaceQuestionRequest} requestParameters Request parameters.
|
|
19939
|
+
* @param {*} [options] Override http request option.
|
|
19940
|
+
* @throws {RequiredError}
|
|
19941
|
+
*/
|
|
19942
|
+
getBookingSpaceQuestion(requestParameters: BookingsQuestionsApiGetBookingSpaceQuestionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBookingSpaceQuestion200Response>;
|
|
19943
|
+
/**
|
|
19944
|
+
* Get Booking Space Questions endpoint
|
|
19945
|
+
* @summary Get Booking Space Questions
|
|
19946
|
+
* @param {BookingsQuestionsApiGetBookingSpaceQuestionsRequest} requestParameters Request parameters.
|
|
19947
|
+
* @param {*} [options] Override http request option.
|
|
19948
|
+
* @throws {RequiredError}
|
|
19949
|
+
*/
|
|
19950
|
+
getBookingSpaceQuestions(requestParameters: BookingsQuestionsApiGetBookingSpaceQuestionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetBookingSpaceQuestions200Response>;
|
|
19951
|
+
/**
|
|
19952
|
+
* Reorder Booking Space Questions endpoint
|
|
19953
|
+
* @summary Reorder Booking Space Questions
|
|
19954
|
+
* @param {BookingsQuestionsApiReorderBookingSpaceQuestionsRequest} requestParameters Request parameters.
|
|
19955
|
+
* @param {*} [options] Override http request option.
|
|
19956
|
+
* @throws {RequiredError}
|
|
19957
|
+
*/
|
|
19958
|
+
reorderBookingSpaceQuestions(requestParameters: BookingsQuestionsApiReorderBookingSpaceQuestionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ReorderBookingSpaceQuestions200Response>;
|
|
19959
|
+
/**
|
|
19960
|
+
* Update Booking Space Question endpoint
|
|
19961
|
+
* @summary Update Booking Space Question
|
|
19962
|
+
* @param {BookingsQuestionsApiUpdateBookingSpaceQuestionRequest} requestParameters Request parameters.
|
|
19963
|
+
* @param {*} [options] Override http request option.
|
|
19964
|
+
* @throws {RequiredError}
|
|
19965
|
+
*/
|
|
19966
|
+
updateBookingSpaceQuestion(requestParameters: BookingsQuestionsApiUpdateBookingSpaceQuestionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBookingSpaceQuestion200Response>;
|
|
19967
|
+
};
|
|
19968
|
+
/**
|
|
19969
|
+
* Request parameters for attachBookingSpaceQuestionSearchList operation in BookingsQuestionsApi.
|
|
19970
|
+
*/
|
|
19971
|
+
export interface BookingsQuestionsApiAttachBookingSpaceQuestionSearchListRequest {
|
|
19972
|
+
/**
|
|
19973
|
+
* The place identifier
|
|
19974
|
+
*/
|
|
19975
|
+
readonly placeId: string;
|
|
19976
|
+
/**
|
|
19977
|
+
* The space identifier
|
|
19978
|
+
*/
|
|
19979
|
+
readonly spaceId: string;
|
|
19980
|
+
/**
|
|
19981
|
+
* The question identifier
|
|
19982
|
+
*/
|
|
19983
|
+
readonly questionId: string;
|
|
19984
|
+
readonly attachSearchListInputs: AttachSearchListInputs;
|
|
19985
|
+
}
|
|
19986
|
+
/**
|
|
19987
|
+
* Request parameters for createBookingSpaceQuestion operation in BookingsQuestionsApi.
|
|
19988
|
+
*/
|
|
19989
|
+
export interface BookingsQuestionsApiCreateBookingSpaceQuestionRequest {
|
|
19990
|
+
/**
|
|
19991
|
+
* The place identifier
|
|
19992
|
+
*/
|
|
19993
|
+
readonly placeId: string;
|
|
19994
|
+
/**
|
|
19995
|
+
* The space identifier
|
|
19996
|
+
*/
|
|
19997
|
+
readonly spaceId: string;
|
|
19998
|
+
readonly bookingSpaceQuestionCreateInputs: BookingSpaceQuestionCreateInputs;
|
|
19999
|
+
}
|
|
20000
|
+
/**
|
|
20001
|
+
* Request parameters for deleteBookingSpaceQuestion operation in BookingsQuestionsApi.
|
|
20002
|
+
*/
|
|
20003
|
+
export interface BookingsQuestionsApiDeleteBookingSpaceQuestionRequest {
|
|
20004
|
+
/**
|
|
20005
|
+
* The place identifier
|
|
20006
|
+
*/
|
|
20007
|
+
readonly placeId: string;
|
|
20008
|
+
/**
|
|
20009
|
+
* The space identifier
|
|
20010
|
+
*/
|
|
20011
|
+
readonly spaceId: string;
|
|
20012
|
+
/**
|
|
20013
|
+
* The question identifier
|
|
20014
|
+
*/
|
|
20015
|
+
readonly questionId: string;
|
|
20016
|
+
}
|
|
20017
|
+
/**
|
|
20018
|
+
* Request parameters for detachBookingSpaceQuestionSearchList operation in BookingsQuestionsApi.
|
|
20019
|
+
*/
|
|
20020
|
+
export interface BookingsQuestionsApiDetachBookingSpaceQuestionSearchListRequest {
|
|
20021
|
+
/**
|
|
20022
|
+
* The place identifier
|
|
20023
|
+
*/
|
|
20024
|
+
readonly placeId: string;
|
|
20025
|
+
/**
|
|
20026
|
+
* The space identifier
|
|
20027
|
+
*/
|
|
20028
|
+
readonly spaceId: string;
|
|
20029
|
+
/**
|
|
20030
|
+
* The question identifier
|
|
20031
|
+
*/
|
|
20032
|
+
readonly questionId: string;
|
|
20033
|
+
}
|
|
20034
|
+
/**
|
|
20035
|
+
* Request parameters for getBookingSpaceQuestion operation in BookingsQuestionsApi.
|
|
20036
|
+
*/
|
|
20037
|
+
export interface BookingsQuestionsApiGetBookingSpaceQuestionRequest {
|
|
20038
|
+
/**
|
|
20039
|
+
* The place identifier
|
|
20040
|
+
*/
|
|
20041
|
+
readonly placeId: string;
|
|
20042
|
+
/**
|
|
20043
|
+
* The space identifier
|
|
20044
|
+
*/
|
|
20045
|
+
readonly spaceId: string;
|
|
20046
|
+
/**
|
|
20047
|
+
* The question identifier
|
|
20048
|
+
*/
|
|
20049
|
+
readonly questionId: string;
|
|
20050
|
+
}
|
|
20051
|
+
/**
|
|
20052
|
+
* Request parameters for getBookingSpaceQuestions operation in BookingsQuestionsApi.
|
|
20053
|
+
*/
|
|
20054
|
+
export interface BookingsQuestionsApiGetBookingSpaceQuestionsRequest {
|
|
20055
|
+
/**
|
|
20056
|
+
* The place identifier
|
|
20057
|
+
*/
|
|
20058
|
+
readonly placeId: string;
|
|
20059
|
+
/**
|
|
20060
|
+
* The space identifier
|
|
20061
|
+
*/
|
|
20062
|
+
readonly spaceId: string;
|
|
20063
|
+
/**
|
|
20064
|
+
* Page number
|
|
20065
|
+
*/
|
|
20066
|
+
readonly page?: number;
|
|
20067
|
+
/**
|
|
20068
|
+
* Number of items per page
|
|
20069
|
+
*/
|
|
20070
|
+
readonly pageSize?: number;
|
|
20071
|
+
/**
|
|
20072
|
+
* Field to order by
|
|
20073
|
+
*/
|
|
20074
|
+
readonly orderBy?: string;
|
|
20075
|
+
/**
|
|
20076
|
+
* Search query
|
|
20077
|
+
*/
|
|
20078
|
+
readonly search?: string;
|
|
20079
|
+
}
|
|
20080
|
+
/**
|
|
20081
|
+
* Request parameters for reorderBookingSpaceQuestions operation in BookingsQuestionsApi.
|
|
20082
|
+
*/
|
|
20083
|
+
export interface BookingsQuestionsApiReorderBookingSpaceQuestionsRequest {
|
|
20084
|
+
/**
|
|
20085
|
+
* The place identifier
|
|
20086
|
+
*/
|
|
20087
|
+
readonly placeId: string;
|
|
20088
|
+
/**
|
|
20089
|
+
* The space identifier
|
|
20090
|
+
*/
|
|
20091
|
+
readonly spaceId: string;
|
|
20092
|
+
/**
|
|
20093
|
+
* Filter by questionsIds
|
|
20094
|
+
*/
|
|
20095
|
+
readonly questionsIds: Array<string>;
|
|
20096
|
+
}
|
|
20097
|
+
/**
|
|
20098
|
+
* Request parameters for updateBookingSpaceQuestion operation in BookingsQuestionsApi.
|
|
20099
|
+
*/
|
|
20100
|
+
export interface BookingsQuestionsApiUpdateBookingSpaceQuestionRequest {
|
|
20101
|
+
/**
|
|
20102
|
+
* The place identifier
|
|
20103
|
+
*/
|
|
20104
|
+
readonly placeId: string;
|
|
20105
|
+
/**
|
|
20106
|
+
* The space identifier
|
|
20107
|
+
*/
|
|
20108
|
+
readonly spaceId: string;
|
|
20109
|
+
/**
|
|
20110
|
+
* The question identifier
|
|
20111
|
+
*/
|
|
20112
|
+
readonly questionId: string;
|
|
20113
|
+
readonly bookingSpaceQuestionUpdateInputs: BookingSpaceQuestionUpdateInputs;
|
|
20114
|
+
}
|
|
20115
|
+
/**
|
|
20116
|
+
* BookingsQuestionsApi - object-oriented interface
|
|
20117
|
+
*/
|
|
20118
|
+
export declare class BookingsQuestionsApi extends BaseAPI {
|
|
20119
|
+
/**
|
|
20120
|
+
* Attach Booking Space Question Search List endpoint
|
|
20121
|
+
* @summary Attach Booking Space Question Search List
|
|
20122
|
+
* @param {BookingsQuestionsApiAttachBookingSpaceQuestionSearchListRequest} requestParameters Request parameters.
|
|
20123
|
+
* @param {*} [options] Override http request option.
|
|
20124
|
+
* @throws {RequiredError}
|
|
20125
|
+
*/
|
|
20126
|
+
attachBookingSpaceQuestionSearchList(requestParameters: BookingsQuestionsApiAttachBookingSpaceQuestionSearchListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingSpaceQuestion200Response, any, {}>>;
|
|
20127
|
+
/**
|
|
20128
|
+
* Create Booking Space Question endpoint
|
|
20129
|
+
* @summary Create Booking Space Question
|
|
20130
|
+
* @param {BookingsQuestionsApiCreateBookingSpaceQuestionRequest} requestParameters Request parameters.
|
|
20131
|
+
* @param {*} [options] Override http request option.
|
|
20132
|
+
* @throws {RequiredError}
|
|
20133
|
+
*/
|
|
20134
|
+
createBookingSpaceQuestion(requestParameters: BookingsQuestionsApiCreateBookingSpaceQuestionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingSpaceQuestion200Response, any, {}>>;
|
|
20135
|
+
/**
|
|
20136
|
+
* Delete Booking Space Question endpoint
|
|
20137
|
+
* @summary Delete Booking Space Question
|
|
20138
|
+
* @param {BookingsQuestionsApiDeleteBookingSpaceQuestionRequest} requestParameters Request parameters.
|
|
20139
|
+
* @param {*} [options] Override http request option.
|
|
20140
|
+
* @throws {RequiredError}
|
|
20141
|
+
*/
|
|
20142
|
+
deleteBookingSpaceQuestion(requestParameters: BookingsQuestionsApiDeleteBookingSpaceQuestionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
20143
|
+
/**
|
|
20144
|
+
* Detach Booking Space Question Search List endpoint
|
|
20145
|
+
* @summary Detach Booking Space Question Search List
|
|
20146
|
+
* @param {BookingsQuestionsApiDetachBookingSpaceQuestionSearchListRequest} requestParameters Request parameters.
|
|
20147
|
+
* @param {*} [options] Override http request option.
|
|
20148
|
+
* @throws {RequiredError}
|
|
20149
|
+
*/
|
|
20150
|
+
detachBookingSpaceQuestionSearchList(requestParameters: BookingsQuestionsApiDetachBookingSpaceQuestionSearchListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingSpaceQuestion200Response, any, {}>>;
|
|
20151
|
+
/**
|
|
20152
|
+
* Get Booking Space Question endpoint
|
|
20153
|
+
* @summary Get Booking Space Question
|
|
20154
|
+
* @param {BookingsQuestionsApiGetBookingSpaceQuestionRequest} requestParameters Request parameters.
|
|
20155
|
+
* @param {*} [options] Override http request option.
|
|
20156
|
+
* @throws {RequiredError}
|
|
20157
|
+
*/
|
|
20158
|
+
getBookingSpaceQuestion(requestParameters: BookingsQuestionsApiGetBookingSpaceQuestionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingSpaceQuestion200Response, any, {}>>;
|
|
20159
|
+
/**
|
|
20160
|
+
* Get Booking Space Questions endpoint
|
|
20161
|
+
* @summary Get Booking Space Questions
|
|
20162
|
+
* @param {BookingsQuestionsApiGetBookingSpaceQuestionsRequest} requestParameters Request parameters.
|
|
20163
|
+
* @param {*} [options] Override http request option.
|
|
20164
|
+
* @throws {RequiredError}
|
|
20165
|
+
*/
|
|
20166
|
+
getBookingSpaceQuestions(requestParameters: BookingsQuestionsApiGetBookingSpaceQuestionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBookingSpaceQuestions200Response, any, {}>>;
|
|
20167
|
+
/**
|
|
20168
|
+
* Reorder Booking Space Questions endpoint
|
|
20169
|
+
* @summary Reorder Booking Space Questions
|
|
20170
|
+
* @param {BookingsQuestionsApiReorderBookingSpaceQuestionsRequest} requestParameters Request parameters.
|
|
20171
|
+
* @param {*} [options] Override http request option.
|
|
20172
|
+
* @throws {RequiredError}
|
|
20173
|
+
*/
|
|
20174
|
+
reorderBookingSpaceQuestions(requestParameters: BookingsQuestionsApiReorderBookingSpaceQuestionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReorderBookingSpaceQuestions200Response, any, {}>>;
|
|
20175
|
+
/**
|
|
20176
|
+
* Update Booking Space Question endpoint
|
|
20177
|
+
* @summary Update Booking Space Question
|
|
20178
|
+
* @param {BookingsQuestionsApiUpdateBookingSpaceQuestionRequest} requestParameters Request parameters.
|
|
20179
|
+
* @param {*} [options] Override http request option.
|
|
20180
|
+
* @throws {RequiredError}
|
|
20181
|
+
*/
|
|
20182
|
+
updateBookingSpaceQuestion(requestParameters: BookingsQuestionsApiUpdateBookingSpaceQuestionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingSpaceQuestion200Response, any, {}>>;
|
|
20183
|
+
}
|
|
20184
|
+
/**
|
|
20185
|
+
* BookingsQuestionsChoicesApi - axios parameter creator
|
|
20186
|
+
*/
|
|
20187
|
+
export declare const BookingsQuestionsChoicesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20188
|
+
/**
|
|
20189
|
+
* Create Booking Space Question Choice endpoint
|
|
20190
|
+
* @summary Create Booking Space Question Choice
|
|
20191
|
+
* @param {string} placeId The place identifier
|
|
20192
|
+
* @param {string} spaceId The space identifier
|
|
20193
|
+
* @param {string} questionId The question identifier
|
|
20194
|
+
* @param {BookingSpaceQuestionChoiceCreateInputs} bookingSpaceQuestionChoiceCreateInputs
|
|
20195
|
+
* @param {*} [options] Override http request option.
|
|
20196
|
+
* @throws {RequiredError}
|
|
20197
|
+
*/
|
|
20198
|
+
createBookingSpaceQuestionChoice: (placeId: string, spaceId: string, questionId: string, bookingSpaceQuestionChoiceCreateInputs: BookingSpaceQuestionChoiceCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20199
|
+
/**
|
|
20200
|
+
* Delete Booking Space Question Choice endpoint
|
|
20201
|
+
* @summary Delete Booking Space Question Choice
|
|
20202
|
+
* @param {string} placeId The place identifier
|
|
20203
|
+
* @param {string} spaceId The space identifier
|
|
20204
|
+
* @param {string} questionId The question identifier
|
|
20205
|
+
* @param {string} choiceId The choice identifier
|
|
20206
|
+
* @param {*} [options] Override http request option.
|
|
20207
|
+
* @throws {RequiredError}
|
|
20208
|
+
*/
|
|
20209
|
+
deleteBookingSpaceQuestionChoice: (placeId: string, spaceId: string, questionId: string, choiceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20210
|
+
/**
|
|
20211
|
+
* Get Booking Space Question Choice endpoint
|
|
20212
|
+
* @summary Get Booking Space Question Choice
|
|
20213
|
+
* @param {string} placeId The place identifier
|
|
20214
|
+
* @param {string} spaceId The space identifier
|
|
20215
|
+
* @param {string} questionId The question identifier
|
|
20216
|
+
* @param {string} choiceId The choice identifier
|
|
20217
|
+
* @param {*} [options] Override http request option.
|
|
20218
|
+
* @throws {RequiredError}
|
|
20219
|
+
*/
|
|
20220
|
+
getBookingSpaceQuestionChoice: (placeId: string, spaceId: string, questionId: string, choiceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20221
|
+
/**
|
|
20222
|
+
* Get Booking Space Question Choices endpoint
|
|
20223
|
+
* @summary Get Booking Space Question Choices
|
|
20224
|
+
* @param {string} placeId The place identifier
|
|
20225
|
+
* @param {string} spaceId The space identifier
|
|
20226
|
+
* @param {string} questionId The question identifier
|
|
20227
|
+
* @param {number} [page] Page number
|
|
20228
|
+
* @param {number} [pageSize] Number of items per page
|
|
20229
|
+
* @param {string} [orderBy] Field to order by
|
|
20230
|
+
* @param {string} [search] Search query
|
|
20231
|
+
* @param {*} [options] Override http request option.
|
|
20232
|
+
* @throws {RequiredError}
|
|
20233
|
+
*/
|
|
20234
|
+
getBookingSpaceQuestionChoices: (placeId: string, spaceId: string, questionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20235
|
+
/**
|
|
20236
|
+
* Reorder Booking Space Question Choices endpoint
|
|
20237
|
+
* @summary Reorder Booking Space Question Choices
|
|
20238
|
+
* @param {string} placeId The place identifier
|
|
20239
|
+
* @param {string} spaceId The space identifier
|
|
20240
|
+
* @param {string} questionId The question identifier
|
|
20241
|
+
* @param {Array<string>} choicesIds Filter by choicesIds
|
|
20242
|
+
* @param {*} [options] Override http request option.
|
|
20243
|
+
* @throws {RequiredError}
|
|
20244
|
+
*/
|
|
20245
|
+
reorderBookingSpaceQuestionChoices: (placeId: string, spaceId: string, questionId: string, choicesIds: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20246
|
+
/**
|
|
20247
|
+
* Update Booking Space Question Choice endpoint
|
|
20248
|
+
* @summary Update Booking Space Question Choice
|
|
20249
|
+
* @param {string} placeId The place identifier
|
|
20250
|
+
* @param {string} spaceId The space identifier
|
|
20251
|
+
* @param {string} questionId The question identifier
|
|
20252
|
+
* @param {string} choiceId The choice identifier
|
|
20253
|
+
* @param {BookingSpaceQuestionChoiceUpdateInputs} bookingSpaceQuestionChoiceUpdateInputs
|
|
20254
|
+
* @param {*} [options] Override http request option.
|
|
20255
|
+
* @throws {RequiredError}
|
|
20256
|
+
*/
|
|
20257
|
+
updateBookingSpaceQuestionChoice: (placeId: string, spaceId: string, questionId: string, choiceId: string, bookingSpaceQuestionChoiceUpdateInputs: BookingSpaceQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20258
|
+
};
|
|
20259
|
+
/**
|
|
20260
|
+
* BookingsQuestionsChoicesApi - functional programming interface
|
|
20261
|
+
*/
|
|
20262
|
+
export declare const BookingsQuestionsChoicesApiFp: (configuration?: Configuration) => {
|
|
20263
|
+
/**
|
|
20264
|
+
* Create Booking Space Question Choice endpoint
|
|
20265
|
+
* @summary Create Booking Space Question Choice
|
|
20266
|
+
* @param {string} placeId The place identifier
|
|
20267
|
+
* @param {string} spaceId The space identifier
|
|
20268
|
+
* @param {string} questionId The question identifier
|
|
20269
|
+
* @param {BookingSpaceQuestionChoiceCreateInputs} bookingSpaceQuestionChoiceCreateInputs
|
|
20270
|
+
* @param {*} [options] Override http request option.
|
|
20271
|
+
* @throws {RequiredError}
|
|
20272
|
+
*/
|
|
20273
|
+
createBookingSpaceQuestionChoice(placeId: string, spaceId: string, questionId: string, bookingSpaceQuestionChoiceCreateInputs: BookingSpaceQuestionChoiceCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBookingSpaceQuestionChoice200Response>>;
|
|
20274
|
+
/**
|
|
20275
|
+
* Delete Booking Space Question Choice endpoint
|
|
20276
|
+
* @summary Delete Booking Space Question Choice
|
|
20277
|
+
* @param {string} placeId The place identifier
|
|
20278
|
+
* @param {string} spaceId The space identifier
|
|
20279
|
+
* @param {string} questionId The question identifier
|
|
20280
|
+
* @param {string} choiceId The choice identifier
|
|
20281
|
+
* @param {*} [options] Override http request option.
|
|
20282
|
+
* @throws {RequiredError}
|
|
20283
|
+
*/
|
|
20284
|
+
deleteBookingSpaceQuestionChoice(placeId: string, spaceId: string, questionId: string, choiceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
20285
|
+
/**
|
|
20286
|
+
* Get Booking Space Question Choice endpoint
|
|
20287
|
+
* @summary Get Booking Space Question Choice
|
|
20288
|
+
* @param {string} placeId The place identifier
|
|
20289
|
+
* @param {string} spaceId The space identifier
|
|
20290
|
+
* @param {string} questionId The question identifier
|
|
20291
|
+
* @param {string} choiceId The choice identifier
|
|
20292
|
+
* @param {*} [options] Override http request option.
|
|
20293
|
+
* @throws {RequiredError}
|
|
20294
|
+
*/
|
|
20295
|
+
getBookingSpaceQuestionChoice(placeId: string, spaceId: string, questionId: string, choiceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBookingSpaceQuestionChoice200Response>>;
|
|
20296
|
+
/**
|
|
20297
|
+
* Get Booking Space Question Choices endpoint
|
|
20298
|
+
* @summary Get Booking Space Question Choices
|
|
20299
|
+
* @param {string} placeId The place identifier
|
|
20300
|
+
* @param {string} spaceId The space identifier
|
|
20301
|
+
* @param {string} questionId The question identifier
|
|
20302
|
+
* @param {number} [page] Page number
|
|
20303
|
+
* @param {number} [pageSize] Number of items per page
|
|
20304
|
+
* @param {string} [orderBy] Field to order by
|
|
20305
|
+
* @param {string} [search] Search query
|
|
20306
|
+
* @param {*} [options] Override http request option.
|
|
20307
|
+
* @throws {RequiredError}
|
|
20308
|
+
*/
|
|
20309
|
+
getBookingSpaceQuestionChoices(placeId: string, spaceId: string, questionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBookingSpaceQuestionChoices200Response>>;
|
|
20310
|
+
/**
|
|
20311
|
+
* Reorder Booking Space Question Choices endpoint
|
|
20312
|
+
* @summary Reorder Booking Space Question Choices
|
|
20313
|
+
* @param {string} placeId The place identifier
|
|
20314
|
+
* @param {string} spaceId The space identifier
|
|
20315
|
+
* @param {string} questionId The question identifier
|
|
20316
|
+
* @param {Array<string>} choicesIds Filter by choicesIds
|
|
20317
|
+
* @param {*} [options] Override http request option.
|
|
20318
|
+
* @throws {RequiredError}
|
|
20319
|
+
*/
|
|
20320
|
+
reorderBookingSpaceQuestionChoices(placeId: string, spaceId: string, questionId: string, choicesIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReorderBookingSpaceQuestionChoices200Response>>;
|
|
20321
|
+
/**
|
|
20322
|
+
* Update Booking Space Question Choice endpoint
|
|
20323
|
+
* @summary Update Booking Space Question Choice
|
|
20324
|
+
* @param {string} placeId The place identifier
|
|
20325
|
+
* @param {string} spaceId The space identifier
|
|
20326
|
+
* @param {string} questionId The question identifier
|
|
20327
|
+
* @param {string} choiceId The choice identifier
|
|
20328
|
+
* @param {BookingSpaceQuestionChoiceUpdateInputs} bookingSpaceQuestionChoiceUpdateInputs
|
|
20329
|
+
* @param {*} [options] Override http request option.
|
|
20330
|
+
* @throws {RequiredError}
|
|
20331
|
+
*/
|
|
20332
|
+
updateBookingSpaceQuestionChoice(placeId: string, spaceId: string, questionId: string, choiceId: string, bookingSpaceQuestionChoiceUpdateInputs: BookingSpaceQuestionChoiceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBookingSpaceQuestionChoice200Response>>;
|
|
20333
|
+
};
|
|
20334
|
+
/**
|
|
20335
|
+
* BookingsQuestionsChoicesApi - factory interface
|
|
20336
|
+
*/
|
|
20337
|
+
export declare const BookingsQuestionsChoicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
20338
|
+
/**
|
|
20339
|
+
* Create Booking Space Question Choice endpoint
|
|
20340
|
+
* @summary Create Booking Space Question Choice
|
|
20341
|
+
* @param {BookingsQuestionsChoicesApiCreateBookingSpaceQuestionChoiceRequest} requestParameters Request parameters.
|
|
20342
|
+
* @param {*} [options] Override http request option.
|
|
20343
|
+
* @throws {RequiredError}
|
|
20344
|
+
*/
|
|
20345
|
+
createBookingSpaceQuestionChoice(requestParameters: BookingsQuestionsChoicesApiCreateBookingSpaceQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBookingSpaceQuestionChoice200Response>;
|
|
20346
|
+
/**
|
|
20347
|
+
* Delete Booking Space Question Choice endpoint
|
|
20348
|
+
* @summary Delete Booking Space Question Choice
|
|
20349
|
+
* @param {BookingsQuestionsChoicesApiDeleteBookingSpaceQuestionChoiceRequest} requestParameters Request parameters.
|
|
20350
|
+
* @param {*} [options] Override http request option.
|
|
20351
|
+
* @throws {RequiredError}
|
|
20352
|
+
*/
|
|
20353
|
+
deleteBookingSpaceQuestionChoice(requestParameters: BookingsQuestionsChoicesApiDeleteBookingSpaceQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
20354
|
+
/**
|
|
20355
|
+
* Get Booking Space Question Choice endpoint
|
|
20356
|
+
* @summary Get Booking Space Question Choice
|
|
20357
|
+
* @param {BookingsQuestionsChoicesApiGetBookingSpaceQuestionChoiceRequest} requestParameters Request parameters.
|
|
20358
|
+
* @param {*} [options] Override http request option.
|
|
20359
|
+
* @throws {RequiredError}
|
|
20360
|
+
*/
|
|
20361
|
+
getBookingSpaceQuestionChoice(requestParameters: BookingsQuestionsChoicesApiGetBookingSpaceQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBookingSpaceQuestionChoice200Response>;
|
|
20362
|
+
/**
|
|
20363
|
+
* Get Booking Space Question Choices endpoint
|
|
20364
|
+
* @summary Get Booking Space Question Choices
|
|
20365
|
+
* @param {BookingsQuestionsChoicesApiGetBookingSpaceQuestionChoicesRequest} requestParameters Request parameters.
|
|
20366
|
+
* @param {*} [options] Override http request option.
|
|
20367
|
+
* @throws {RequiredError}
|
|
20368
|
+
*/
|
|
20369
|
+
getBookingSpaceQuestionChoices(requestParameters: BookingsQuestionsChoicesApiGetBookingSpaceQuestionChoicesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetBookingSpaceQuestionChoices200Response>;
|
|
20370
|
+
/**
|
|
20371
|
+
* Reorder Booking Space Question Choices endpoint
|
|
20372
|
+
* @summary Reorder Booking Space Question Choices
|
|
20373
|
+
* @param {BookingsQuestionsChoicesApiReorderBookingSpaceQuestionChoicesRequest} requestParameters Request parameters.
|
|
20374
|
+
* @param {*} [options] Override http request option.
|
|
20375
|
+
* @throws {RequiredError}
|
|
20376
|
+
*/
|
|
20377
|
+
reorderBookingSpaceQuestionChoices(requestParameters: BookingsQuestionsChoicesApiReorderBookingSpaceQuestionChoicesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ReorderBookingSpaceQuestionChoices200Response>;
|
|
20378
|
+
/**
|
|
20379
|
+
* Update Booking Space Question Choice endpoint
|
|
20380
|
+
* @summary Update Booking Space Question Choice
|
|
20381
|
+
* @param {BookingsQuestionsChoicesApiUpdateBookingSpaceQuestionChoiceRequest} requestParameters Request parameters.
|
|
20382
|
+
* @param {*} [options] Override http request option.
|
|
20383
|
+
* @throws {RequiredError}
|
|
20384
|
+
*/
|
|
20385
|
+
updateBookingSpaceQuestionChoice(requestParameters: BookingsQuestionsChoicesApiUpdateBookingSpaceQuestionChoiceRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateBookingSpaceQuestionChoice200Response>;
|
|
20386
|
+
};
|
|
20387
|
+
/**
|
|
20388
|
+
* Request parameters for createBookingSpaceQuestionChoice operation in BookingsQuestionsChoicesApi.
|
|
20389
|
+
*/
|
|
20390
|
+
export interface BookingsQuestionsChoicesApiCreateBookingSpaceQuestionChoiceRequest {
|
|
20391
|
+
/**
|
|
20392
|
+
* The place identifier
|
|
20393
|
+
*/
|
|
20394
|
+
readonly placeId: string;
|
|
20395
|
+
/**
|
|
20396
|
+
* The space identifier
|
|
20397
|
+
*/
|
|
20398
|
+
readonly spaceId: string;
|
|
20399
|
+
/**
|
|
20400
|
+
* The question identifier
|
|
20401
|
+
*/
|
|
20402
|
+
readonly questionId: string;
|
|
20403
|
+
readonly bookingSpaceQuestionChoiceCreateInputs: BookingSpaceQuestionChoiceCreateInputs;
|
|
20404
|
+
}
|
|
20405
|
+
/**
|
|
20406
|
+
* Request parameters for deleteBookingSpaceQuestionChoice operation in BookingsQuestionsChoicesApi.
|
|
20407
|
+
*/
|
|
20408
|
+
export interface BookingsQuestionsChoicesApiDeleteBookingSpaceQuestionChoiceRequest {
|
|
20409
|
+
/**
|
|
20410
|
+
* The place identifier
|
|
20411
|
+
*/
|
|
20412
|
+
readonly placeId: string;
|
|
20413
|
+
/**
|
|
20414
|
+
* The space identifier
|
|
20415
|
+
*/
|
|
20416
|
+
readonly spaceId: string;
|
|
20417
|
+
/**
|
|
20418
|
+
* The question identifier
|
|
20419
|
+
*/
|
|
20420
|
+
readonly questionId: string;
|
|
20421
|
+
/**
|
|
20422
|
+
* The choice identifier
|
|
20423
|
+
*/
|
|
20424
|
+
readonly choiceId: string;
|
|
20425
|
+
}
|
|
20426
|
+
/**
|
|
20427
|
+
* Request parameters for getBookingSpaceQuestionChoice operation in BookingsQuestionsChoicesApi.
|
|
20428
|
+
*/
|
|
20429
|
+
export interface BookingsQuestionsChoicesApiGetBookingSpaceQuestionChoiceRequest {
|
|
20430
|
+
/**
|
|
20431
|
+
* The place identifier
|
|
20432
|
+
*/
|
|
20433
|
+
readonly placeId: string;
|
|
20434
|
+
/**
|
|
20435
|
+
* The space identifier
|
|
20436
|
+
*/
|
|
20437
|
+
readonly spaceId: string;
|
|
20438
|
+
/**
|
|
20439
|
+
* The question identifier
|
|
20440
|
+
*/
|
|
20441
|
+
readonly questionId: string;
|
|
20442
|
+
/**
|
|
20443
|
+
* The choice identifier
|
|
20444
|
+
*/
|
|
20445
|
+
readonly choiceId: string;
|
|
20446
|
+
}
|
|
20447
|
+
/**
|
|
20448
|
+
* Request parameters for getBookingSpaceQuestionChoices operation in BookingsQuestionsChoicesApi.
|
|
20449
|
+
*/
|
|
20450
|
+
export interface BookingsQuestionsChoicesApiGetBookingSpaceQuestionChoicesRequest {
|
|
20451
|
+
/**
|
|
20452
|
+
* The place identifier
|
|
20453
|
+
*/
|
|
20454
|
+
readonly placeId: string;
|
|
20455
|
+
/**
|
|
20456
|
+
* The space identifier
|
|
20457
|
+
*/
|
|
20458
|
+
readonly spaceId: string;
|
|
20459
|
+
/**
|
|
20460
|
+
* The question identifier
|
|
20461
|
+
*/
|
|
20462
|
+
readonly questionId: string;
|
|
20463
|
+
/**
|
|
20464
|
+
* Page number
|
|
20465
|
+
*/
|
|
20466
|
+
readonly page?: number;
|
|
20467
|
+
/**
|
|
20468
|
+
* Number of items per page
|
|
20469
|
+
*/
|
|
20470
|
+
readonly pageSize?: number;
|
|
20471
|
+
/**
|
|
20472
|
+
* Field to order by
|
|
20473
|
+
*/
|
|
20474
|
+
readonly orderBy?: string;
|
|
20475
|
+
/**
|
|
20476
|
+
* Search query
|
|
20477
|
+
*/
|
|
20478
|
+
readonly search?: string;
|
|
20479
|
+
}
|
|
20480
|
+
/**
|
|
20481
|
+
* Request parameters for reorderBookingSpaceQuestionChoices operation in BookingsQuestionsChoicesApi.
|
|
20482
|
+
*/
|
|
20483
|
+
export interface BookingsQuestionsChoicesApiReorderBookingSpaceQuestionChoicesRequest {
|
|
20484
|
+
/**
|
|
20485
|
+
* The place identifier
|
|
20486
|
+
*/
|
|
20487
|
+
readonly placeId: string;
|
|
20488
|
+
/**
|
|
20489
|
+
* The space identifier
|
|
20490
|
+
*/
|
|
20491
|
+
readonly spaceId: string;
|
|
20492
|
+
/**
|
|
20493
|
+
* The question identifier
|
|
20494
|
+
*/
|
|
20495
|
+
readonly questionId: string;
|
|
20496
|
+
/**
|
|
20497
|
+
* Filter by choicesIds
|
|
20498
|
+
*/
|
|
20499
|
+
readonly choicesIds: Array<string>;
|
|
20500
|
+
}
|
|
20501
|
+
/**
|
|
20502
|
+
* Request parameters for updateBookingSpaceQuestionChoice operation in BookingsQuestionsChoicesApi.
|
|
20503
|
+
*/
|
|
20504
|
+
export interface BookingsQuestionsChoicesApiUpdateBookingSpaceQuestionChoiceRequest {
|
|
20505
|
+
/**
|
|
20506
|
+
* The place identifier
|
|
20507
|
+
*/
|
|
20508
|
+
readonly placeId: string;
|
|
20509
|
+
/**
|
|
20510
|
+
* The space identifier
|
|
20511
|
+
*/
|
|
20512
|
+
readonly spaceId: string;
|
|
20513
|
+
/**
|
|
20514
|
+
* The question identifier
|
|
20515
|
+
*/
|
|
20516
|
+
readonly questionId: string;
|
|
20517
|
+
/**
|
|
20518
|
+
* The choice identifier
|
|
20519
|
+
*/
|
|
20520
|
+
readonly choiceId: string;
|
|
20521
|
+
readonly bookingSpaceQuestionChoiceUpdateInputs: BookingSpaceQuestionChoiceUpdateInputs;
|
|
20522
|
+
}
|
|
20523
|
+
/**
|
|
20524
|
+
* BookingsQuestionsChoicesApi - object-oriented interface
|
|
20525
|
+
*/
|
|
20526
|
+
export declare class BookingsQuestionsChoicesApi extends BaseAPI {
|
|
20527
|
+
/**
|
|
20528
|
+
* Create Booking Space Question Choice endpoint
|
|
20529
|
+
* @summary Create Booking Space Question Choice
|
|
20530
|
+
* @param {BookingsQuestionsChoicesApiCreateBookingSpaceQuestionChoiceRequest} requestParameters Request parameters.
|
|
20531
|
+
* @param {*} [options] Override http request option.
|
|
20532
|
+
* @throws {RequiredError}
|
|
20533
|
+
*/
|
|
20534
|
+
createBookingSpaceQuestionChoice(requestParameters: BookingsQuestionsChoicesApiCreateBookingSpaceQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingSpaceQuestionChoice200Response, any, {}>>;
|
|
20535
|
+
/**
|
|
20536
|
+
* Delete Booking Space Question Choice endpoint
|
|
20537
|
+
* @summary Delete Booking Space Question Choice
|
|
20538
|
+
* @param {BookingsQuestionsChoicesApiDeleteBookingSpaceQuestionChoiceRequest} requestParameters Request parameters.
|
|
20539
|
+
* @param {*} [options] Override http request option.
|
|
20540
|
+
* @throws {RequiredError}
|
|
20541
|
+
*/
|
|
20542
|
+
deleteBookingSpaceQuestionChoice(requestParameters: BookingsQuestionsChoicesApiDeleteBookingSpaceQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
20543
|
+
/**
|
|
20544
|
+
* Get Booking Space Question Choice endpoint
|
|
20545
|
+
* @summary Get Booking Space Question Choice
|
|
20546
|
+
* @param {BookingsQuestionsChoicesApiGetBookingSpaceQuestionChoiceRequest} requestParameters Request parameters.
|
|
20547
|
+
* @param {*} [options] Override http request option.
|
|
20548
|
+
* @throws {RequiredError}
|
|
20549
|
+
*/
|
|
20550
|
+
getBookingSpaceQuestionChoice(requestParameters: BookingsQuestionsChoicesApiGetBookingSpaceQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingSpaceQuestionChoice200Response, any, {}>>;
|
|
20551
|
+
/**
|
|
20552
|
+
* Get Booking Space Question Choices endpoint
|
|
20553
|
+
* @summary Get Booking Space Question Choices
|
|
20554
|
+
* @param {BookingsQuestionsChoicesApiGetBookingSpaceQuestionChoicesRequest} requestParameters Request parameters.
|
|
20555
|
+
* @param {*} [options] Override http request option.
|
|
20556
|
+
* @throws {RequiredError}
|
|
20557
|
+
*/
|
|
20558
|
+
getBookingSpaceQuestionChoices(requestParameters: BookingsQuestionsChoicesApiGetBookingSpaceQuestionChoicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBookingSpaceQuestionChoices200Response, any, {}>>;
|
|
20559
|
+
/**
|
|
20560
|
+
* Reorder Booking Space Question Choices endpoint
|
|
20561
|
+
* @summary Reorder Booking Space Question Choices
|
|
20562
|
+
* @param {BookingsQuestionsChoicesApiReorderBookingSpaceQuestionChoicesRequest} requestParameters Request parameters.
|
|
20563
|
+
* @param {*} [options] Override http request option.
|
|
20564
|
+
* @throws {RequiredError}
|
|
20565
|
+
*/
|
|
20566
|
+
reorderBookingSpaceQuestionChoices(requestParameters: BookingsQuestionsChoicesApiReorderBookingSpaceQuestionChoicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReorderBookingSpaceQuestionChoices200Response, any, {}>>;
|
|
20567
|
+
/**
|
|
20568
|
+
* Update Booking Space Question Choice endpoint
|
|
20569
|
+
* @summary Update Booking Space Question Choice
|
|
20570
|
+
* @param {BookingsQuestionsChoicesApiUpdateBookingSpaceQuestionChoiceRequest} requestParameters Request parameters.
|
|
20571
|
+
* @param {*} [options] Override http request option.
|
|
20572
|
+
* @throws {RequiredError}
|
|
20573
|
+
*/
|
|
20574
|
+
updateBookingSpaceQuestionChoice(requestParameters: BookingsQuestionsChoicesApiUpdateBookingSpaceQuestionChoiceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingSpaceQuestionChoice200Response, any, {}>>;
|
|
20575
|
+
}
|
|
20576
|
+
/**
|
|
20577
|
+
* BookingsQuestionsChoicesTranslationsApi - axios parameter creator
|
|
20578
|
+
*/
|
|
20579
|
+
export declare const BookingsQuestionsChoicesTranslationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20580
|
+
/**
|
|
20581
|
+
* Delete Booking Space Question Choice Translation endpoint
|
|
20582
|
+
* @summary Delete Booking Space Question Choice Translation
|
|
20583
|
+
* @param {string} placeId The place identifier
|
|
20584
|
+
* @param {string} spaceId The space identifier
|
|
20585
|
+
* @param {string} questionId The question identifier
|
|
20586
|
+
* @param {string} choiceId The choice identifier
|
|
20587
|
+
* @param {string} locale The locale identifier
|
|
20588
|
+
* @param {*} [options] Override http request option.
|
|
20589
|
+
* @throws {RequiredError}
|
|
20590
|
+
*/
|
|
20591
|
+
deleteBookingSpaceQuestionChoiceTranslation: (placeId: string, spaceId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20592
|
+
/**
|
|
20593
|
+
* Get Booking Space Question Choice Translation endpoint
|
|
20594
|
+
* @summary Get Booking Space Question Choice Translation
|
|
18852
20595
|
* @param {string} placeId The place identifier
|
|
18853
20596
|
* @param {string} spaceId The space identifier
|
|
18854
|
-
* @param {
|
|
20597
|
+
* @param {string} questionId The question identifier
|
|
20598
|
+
* @param {string} choiceId The choice identifier
|
|
20599
|
+
* @param {string} locale The locale identifier
|
|
18855
20600
|
* @param {*} [options] Override http request option.
|
|
18856
20601
|
* @throws {RequiredError}
|
|
18857
20602
|
*/
|
|
18858
|
-
|
|
20603
|
+
getBookingSpaceQuestionChoiceTranslation: (placeId: string, spaceId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18859
20604
|
/**
|
|
18860
|
-
*
|
|
18861
|
-
* @summary
|
|
20605
|
+
* Get Booking Space Question Choice Translations endpoint
|
|
20606
|
+
* @summary Get Booking Space Question Choice Translations
|
|
18862
20607
|
* @param {string} placeId The place identifier
|
|
18863
20608
|
* @param {string} spaceId The space identifier
|
|
18864
|
-
* @param {string}
|
|
20609
|
+
* @param {string} questionId The question identifier
|
|
20610
|
+
* @param {string} choiceId The choice identifier
|
|
18865
20611
|
* @param {*} [options] Override http request option.
|
|
18866
20612
|
* @throws {RequiredError}
|
|
18867
20613
|
*/
|
|
18868
|
-
|
|
20614
|
+
getBookingSpaceQuestionChoiceTranslations: (placeId: string, spaceId: string, questionId: string, choiceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18869
20615
|
/**
|
|
18870
|
-
* Update Booking Space
|
|
18871
|
-
* @summary Update Booking Space
|
|
20616
|
+
* Update Booking Space Question Choice Translation endpoint
|
|
20617
|
+
* @summary Update Booking Space Question Choice Translation
|
|
18872
20618
|
* @param {string} placeId The place identifier
|
|
18873
20619
|
* @param {string} spaceId The space identifier
|
|
18874
|
-
* @param {string}
|
|
18875
|
-
* @param {
|
|
20620
|
+
* @param {string} questionId The question identifier
|
|
20621
|
+
* @param {string} choiceId The choice identifier
|
|
20622
|
+
* @param {string} locale The locale identifier
|
|
20623
|
+
* @param {BookingSpaceQuestionChoiceTranslationUpdateInputs} bookingSpaceQuestionChoiceTranslationUpdateInputs
|
|
18876
20624
|
* @param {*} [options] Override http request option.
|
|
18877
20625
|
* @throws {RequiredError}
|
|
18878
20626
|
*/
|
|
18879
|
-
|
|
20627
|
+
updateBookingSpaceQuestionChoiceTranslation: (placeId: string, spaceId: string, questionId: string, choiceId: string, locale: string, bookingSpaceQuestionChoiceTranslationUpdateInputs: BookingSpaceQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18880
20628
|
};
|
|
18881
20629
|
/**
|
|
18882
|
-
*
|
|
20630
|
+
* BookingsQuestionsChoicesTranslationsApi - functional programming interface
|
|
18883
20631
|
*/
|
|
18884
|
-
export declare const
|
|
20632
|
+
export declare const BookingsQuestionsChoicesTranslationsApiFp: (configuration?: Configuration) => {
|
|
18885
20633
|
/**
|
|
18886
|
-
*
|
|
18887
|
-
* @summary
|
|
20634
|
+
* Delete Booking Space Question Choice Translation endpoint
|
|
20635
|
+
* @summary Delete Booking Space Question Choice Translation
|
|
18888
20636
|
* @param {string} placeId The place identifier
|
|
18889
20637
|
* @param {string} spaceId The space identifier
|
|
18890
|
-
* @param {
|
|
20638
|
+
* @param {string} questionId The question identifier
|
|
20639
|
+
* @param {string} choiceId The choice identifier
|
|
20640
|
+
* @param {string} locale The locale identifier
|
|
18891
20641
|
* @param {*} [options] Override http request option.
|
|
18892
20642
|
* @throws {RequiredError}
|
|
18893
20643
|
*/
|
|
18894
|
-
|
|
20644
|
+
deleteBookingSpaceQuestionChoiceTranslation(placeId: string, spaceId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>>;
|
|
18895
20645
|
/**
|
|
18896
|
-
*
|
|
18897
|
-
* @summary
|
|
20646
|
+
* Get Booking Space Question Choice Translation endpoint
|
|
20647
|
+
* @summary Get Booking Space Question Choice Translation
|
|
18898
20648
|
* @param {string} placeId The place identifier
|
|
18899
20649
|
* @param {string} spaceId The space identifier
|
|
18900
|
-
* @param {string}
|
|
20650
|
+
* @param {string} questionId The question identifier
|
|
20651
|
+
* @param {string} choiceId The choice identifier
|
|
20652
|
+
* @param {string} locale The locale identifier
|
|
18901
20653
|
* @param {*} [options] Override http request option.
|
|
18902
20654
|
* @throws {RequiredError}
|
|
18903
20655
|
*/
|
|
18904
|
-
|
|
20656
|
+
getBookingSpaceQuestionChoiceTranslation(placeId: string, spaceId: string, questionId: string, choiceId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBookingSpaceQuestionChoiceTranslation200Response>>;
|
|
18905
20657
|
/**
|
|
18906
|
-
*
|
|
18907
|
-
* @summary
|
|
20658
|
+
* Get Booking Space Question Choice Translations endpoint
|
|
20659
|
+
* @summary Get Booking Space Question Choice Translations
|
|
18908
20660
|
* @param {string} placeId The place identifier
|
|
18909
20661
|
* @param {string} spaceId The space identifier
|
|
18910
|
-
* @param {string}
|
|
18911
|
-
* @param {
|
|
20662
|
+
* @param {string} questionId The question identifier
|
|
20663
|
+
* @param {string} choiceId The choice identifier
|
|
18912
20664
|
* @param {*} [options] Override http request option.
|
|
18913
20665
|
* @throws {RequiredError}
|
|
18914
20666
|
*/
|
|
18915
|
-
|
|
20667
|
+
getBookingSpaceQuestionChoiceTranslations(placeId: string, spaceId: string, questionId: string, choiceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBookingSpaceQuestionChoiceTranslations200Response>>;
|
|
20668
|
+
/**
|
|
20669
|
+
* Update Booking Space Question Choice Translation endpoint
|
|
20670
|
+
* @summary Update Booking Space Question Choice Translation
|
|
20671
|
+
* @param {string} placeId The place identifier
|
|
20672
|
+
* @param {string} spaceId The space identifier
|
|
20673
|
+
* @param {string} questionId The question identifier
|
|
20674
|
+
* @param {string} choiceId The choice identifier
|
|
20675
|
+
* @param {string} locale The locale identifier
|
|
20676
|
+
* @param {BookingSpaceQuestionChoiceTranslationUpdateInputs} bookingSpaceQuestionChoiceTranslationUpdateInputs
|
|
20677
|
+
* @param {*} [options] Override http request option.
|
|
20678
|
+
* @throws {RequiredError}
|
|
20679
|
+
*/
|
|
20680
|
+
updateBookingSpaceQuestionChoiceTranslation(placeId: string, spaceId: string, questionId: string, choiceId: string, locale: string, bookingSpaceQuestionChoiceTranslationUpdateInputs: BookingSpaceQuestionChoiceTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateBookingSpaceQuestionChoiceTranslation200Response>>;
|
|
18916
20681
|
};
|
|
18917
20682
|
/**
|
|
18918
|
-
*
|
|
20683
|
+
* BookingsQuestionsChoicesTranslationsApi - factory interface
|
|
18919
20684
|
*/
|
|
18920
|
-
export declare const
|
|
20685
|
+
export declare const BookingsQuestionsChoicesTranslationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
18921
20686
|
/**
|
|
18922
|
-
*
|
|
18923
|
-
* @summary
|
|
18924
|
-
* @param {
|
|
20687
|
+
* Delete Booking Space Question Choice Translation endpoint
|
|
20688
|
+
* @summary Delete Booking Space Question Choice Translation
|
|
20689
|
+
* @param {BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest} requestParameters Request parameters.
|
|
18925
20690
|
* @param {*} [options] Override http request option.
|
|
18926
20691
|
* @throws {RequiredError}
|
|
18927
20692
|
*/
|
|
18928
|
-
|
|
20693
|
+
deleteBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response>;
|
|
18929
20694
|
/**
|
|
18930
|
-
*
|
|
18931
|
-
* @summary
|
|
18932
|
-
* @param {
|
|
20695
|
+
* Get Booking Space Question Choice Translation endpoint
|
|
20696
|
+
* @summary Get Booking Space Question Choice Translation
|
|
20697
|
+
* @param {BookingsQuestionsChoicesTranslationsApiGetBookingSpaceQuestionChoiceTranslationRequest} requestParameters Request parameters.
|
|
18933
20698
|
* @param {*} [options] Override http request option.
|
|
18934
20699
|
* @throws {RequiredError}
|
|
18935
20700
|
*/
|
|
18936
|
-
|
|
20701
|
+
getBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiGetBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetBookingSpaceQuestionChoiceTranslation200Response>;
|
|
18937
20702
|
/**
|
|
18938
|
-
*
|
|
18939
|
-
* @summary
|
|
18940
|
-
* @param {
|
|
20703
|
+
* Get Booking Space Question Choice Translations endpoint
|
|
20704
|
+
* @summary Get Booking Space Question Choice Translations
|
|
20705
|
+
* @param {BookingsQuestionsChoicesTranslationsApiGetBookingSpaceQuestionChoiceTranslationsRequest} requestParameters Request parameters.
|
|
18941
20706
|
* @param {*} [options] Override http request option.
|
|
18942
20707
|
* @throws {RequiredError}
|
|
18943
20708
|
*/
|
|
18944
|
-
|
|
20709
|
+
getBookingSpaceQuestionChoiceTranslations(requestParameters: BookingsQuestionsChoicesTranslationsApiGetBookingSpaceQuestionChoiceTranslationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetBookingSpaceQuestionChoiceTranslations200Response>;
|
|
20710
|
+
/**
|
|
20711
|
+
* Update Booking Space Question Choice Translation endpoint
|
|
20712
|
+
* @summary Update Booking Space Question Choice Translation
|
|
20713
|
+
* @param {BookingsQuestionsChoicesTranslationsApiUpdateBookingSpaceQuestionChoiceTranslationRequest} requestParameters Request parameters.
|
|
20714
|
+
* @param {*} [options] Override http request option.
|
|
20715
|
+
* @throws {RequiredError}
|
|
20716
|
+
*/
|
|
20717
|
+
updateBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiUpdateBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateBookingSpaceQuestionChoiceTranslation200Response>;
|
|
18945
20718
|
};
|
|
18946
20719
|
/**
|
|
18947
|
-
* Request parameters for
|
|
20720
|
+
* Request parameters for deleteBookingSpaceQuestionChoiceTranslation operation in BookingsQuestionsChoicesTranslationsApi.
|
|
18948
20721
|
*/
|
|
18949
|
-
export interface
|
|
20722
|
+
export interface BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest {
|
|
18950
20723
|
/**
|
|
18951
20724
|
* The place identifier
|
|
18952
20725
|
*/
|
|
@@ -18955,12 +20728,23 @@ export interface BookingsBlackoutsApiCreateBookingSpaceBlackoutRequest {
|
|
|
18955
20728
|
* The space identifier
|
|
18956
20729
|
*/
|
|
18957
20730
|
readonly spaceId: string;
|
|
18958
|
-
|
|
20731
|
+
/**
|
|
20732
|
+
* The question identifier
|
|
20733
|
+
*/
|
|
20734
|
+
readonly questionId: string;
|
|
20735
|
+
/**
|
|
20736
|
+
* The choice identifier
|
|
20737
|
+
*/
|
|
20738
|
+
readonly choiceId: string;
|
|
20739
|
+
/**
|
|
20740
|
+
* The locale identifier
|
|
20741
|
+
*/
|
|
20742
|
+
readonly locale: string;
|
|
18959
20743
|
}
|
|
18960
20744
|
/**
|
|
18961
|
-
* Request parameters for
|
|
20745
|
+
* Request parameters for getBookingSpaceQuestionChoiceTranslation operation in BookingsQuestionsChoicesTranslationsApi.
|
|
18962
20746
|
*/
|
|
18963
|
-
export interface
|
|
20747
|
+
export interface BookingsQuestionsChoicesTranslationsApiGetBookingSpaceQuestionChoiceTranslationRequest {
|
|
18964
20748
|
/**
|
|
18965
20749
|
* The place identifier
|
|
18966
20750
|
*/
|
|
@@ -18970,14 +20754,22 @@ export interface BookingsBlackoutsApiDeleteBookingSpaceBlackoutRequest {
|
|
|
18970
20754
|
*/
|
|
18971
20755
|
readonly spaceId: string;
|
|
18972
20756
|
/**
|
|
18973
|
-
* The
|
|
20757
|
+
* The question identifier
|
|
18974
20758
|
*/
|
|
18975
|
-
readonly
|
|
20759
|
+
readonly questionId: string;
|
|
20760
|
+
/**
|
|
20761
|
+
* The choice identifier
|
|
20762
|
+
*/
|
|
20763
|
+
readonly choiceId: string;
|
|
20764
|
+
/**
|
|
20765
|
+
* The locale identifier
|
|
20766
|
+
*/
|
|
20767
|
+
readonly locale: string;
|
|
18976
20768
|
}
|
|
18977
20769
|
/**
|
|
18978
|
-
* Request parameters for
|
|
20770
|
+
* Request parameters for getBookingSpaceQuestionChoiceTranslations operation in BookingsQuestionsChoicesTranslationsApi.
|
|
18979
20771
|
*/
|
|
18980
|
-
export interface
|
|
20772
|
+
export interface BookingsQuestionsChoicesTranslationsApiGetBookingSpaceQuestionChoiceTranslationsRequest {
|
|
18981
20773
|
/**
|
|
18982
20774
|
* The place identifier
|
|
18983
20775
|
*/
|
|
@@ -18987,305 +20779,329 @@ export interface BookingsBlackoutsApiUpdateBookingSpaceBlackoutRequest {
|
|
|
18987
20779
|
*/
|
|
18988
20780
|
readonly spaceId: string;
|
|
18989
20781
|
/**
|
|
18990
|
-
* The
|
|
20782
|
+
* The question identifier
|
|
18991
20783
|
*/
|
|
18992
|
-
readonly
|
|
20784
|
+
readonly questionId: string;
|
|
18993
20785
|
/**
|
|
18994
|
-
*
|
|
20786
|
+
* The choice identifier
|
|
18995
20787
|
*/
|
|
18996
|
-
readonly
|
|
20788
|
+
readonly choiceId: string;
|
|
18997
20789
|
}
|
|
18998
20790
|
/**
|
|
18999
|
-
*
|
|
20791
|
+
* Request parameters for updateBookingSpaceQuestionChoiceTranslation operation in BookingsQuestionsChoicesTranslationsApi.
|
|
19000
20792
|
*/
|
|
19001
|
-
export
|
|
20793
|
+
export interface BookingsQuestionsChoicesTranslationsApiUpdateBookingSpaceQuestionChoiceTranslationRequest {
|
|
19002
20794
|
/**
|
|
19003
|
-
*
|
|
19004
|
-
* @summary Create Booking Space Blackout
|
|
19005
|
-
* @param {BookingsBlackoutsApiCreateBookingSpaceBlackoutRequest} requestParameters Request parameters.
|
|
19006
|
-
* @param {*} [options] Override http request option.
|
|
19007
|
-
* @throws {RequiredError}
|
|
20795
|
+
* The place identifier
|
|
19008
20796
|
*/
|
|
19009
|
-
|
|
20797
|
+
readonly placeId: string;
|
|
19010
20798
|
/**
|
|
19011
|
-
*
|
|
19012
|
-
* @summary Delete Booking Space Blackout
|
|
19013
|
-
* @param {BookingsBlackoutsApiDeleteBookingSpaceBlackoutRequest} requestParameters Request parameters.
|
|
19014
|
-
* @param {*} [options] Override http request option.
|
|
19015
|
-
* @throws {RequiredError}
|
|
20799
|
+
* The space identifier
|
|
19016
20800
|
*/
|
|
19017
|
-
|
|
20801
|
+
readonly spaceId: string;
|
|
19018
20802
|
/**
|
|
19019
|
-
*
|
|
19020
|
-
* @summary Update Booking Space Blackout
|
|
19021
|
-
* @param {BookingsBlackoutsApiUpdateBookingSpaceBlackoutRequest} requestParameters Request parameters.
|
|
19022
|
-
* @param {*} [options] Override http request option.
|
|
19023
|
-
* @throws {RequiredError}
|
|
20803
|
+
* The question identifier
|
|
19024
20804
|
*/
|
|
19025
|
-
|
|
20805
|
+
readonly questionId: string;
|
|
20806
|
+
/**
|
|
20807
|
+
* The choice identifier
|
|
20808
|
+
*/
|
|
20809
|
+
readonly choiceId: string;
|
|
20810
|
+
/**
|
|
20811
|
+
* The locale identifier
|
|
20812
|
+
*/
|
|
20813
|
+
readonly locale: string;
|
|
20814
|
+
readonly bookingSpaceQuestionChoiceTranslationUpdateInputs: BookingSpaceQuestionChoiceTranslationUpdateInputs;
|
|
19026
20815
|
}
|
|
19027
20816
|
/**
|
|
19028
|
-
*
|
|
20817
|
+
* BookingsQuestionsChoicesTranslationsApi - object-oriented interface
|
|
19029
20818
|
*/
|
|
19030
|
-
export declare
|
|
20819
|
+
export declare class BookingsQuestionsChoicesTranslationsApi extends BaseAPI {
|
|
19031
20820
|
/**
|
|
19032
|
-
*
|
|
19033
|
-
* @summary
|
|
19034
|
-
* @param {
|
|
20821
|
+
* Delete Booking Space Question Choice Translation endpoint
|
|
20822
|
+
* @summary Delete Booking Space Question Choice Translation
|
|
20823
|
+
* @param {BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest} requestParameters Request parameters.
|
|
19035
20824
|
* @param {*} [options] Override http request option.
|
|
19036
20825
|
* @throws {RequiredError}
|
|
19037
20826
|
*/
|
|
19038
|
-
|
|
20827
|
+
deleteBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiDeleteBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateAnnouncementTranslation200Response, any, {}>>;
|
|
19039
20828
|
/**
|
|
19040
|
-
*
|
|
19041
|
-
* @summary
|
|
19042
|
-
* @param {
|
|
20829
|
+
* Get Booking Space Question Choice Translation endpoint
|
|
20830
|
+
* @summary Get Booking Space Question Choice Translation
|
|
20831
|
+
* @param {BookingsQuestionsChoicesTranslationsApiGetBookingSpaceQuestionChoiceTranslationRequest} requestParameters Request parameters.
|
|
19043
20832
|
* @param {*} [options] Override http request option.
|
|
19044
20833
|
* @throws {RequiredError}
|
|
19045
20834
|
*/
|
|
19046
|
-
|
|
20835
|
+
getBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiGetBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBookingSpaceQuestionChoiceTranslation200Response, any, {}>>;
|
|
19047
20836
|
/**
|
|
19048
|
-
*
|
|
19049
|
-
* @summary
|
|
19050
|
-
* @param {
|
|
19051
|
-
* @param {BookingPlaceUpdateInputs} bookingPlace Filter by bookingPlace
|
|
20837
|
+
* Get Booking Space Question Choice Translations endpoint
|
|
20838
|
+
* @summary Get Booking Space Question Choice Translations
|
|
20839
|
+
* @param {BookingsQuestionsChoicesTranslationsApiGetBookingSpaceQuestionChoiceTranslationsRequest} requestParameters Request parameters.
|
|
19052
20840
|
* @param {*} [options] Override http request option.
|
|
19053
20841
|
* @throws {RequiredError}
|
|
19054
20842
|
*/
|
|
19055
|
-
|
|
19056
|
-
};
|
|
19057
|
-
/**
|
|
19058
|
-
* BookingsPlacesApi - functional programming interface
|
|
19059
|
-
*/
|
|
19060
|
-
export declare const BookingsPlacesApiFp: (configuration?: Configuration) => {
|
|
20843
|
+
getBookingSpaceQuestionChoiceTranslations(requestParameters: BookingsQuestionsChoicesTranslationsApiGetBookingSpaceQuestionChoiceTranslationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBookingSpaceQuestionChoiceTranslations200Response, any, {}>>;
|
|
19061
20844
|
/**
|
|
19062
|
-
*
|
|
19063
|
-
* @summary
|
|
19064
|
-
* @param {
|
|
20845
|
+
* Update Booking Space Question Choice Translation endpoint
|
|
20846
|
+
* @summary Update Booking Space Question Choice Translation
|
|
20847
|
+
* @param {BookingsQuestionsChoicesTranslationsApiUpdateBookingSpaceQuestionChoiceTranslationRequest} requestParameters Request parameters.
|
|
19065
20848
|
* @param {*} [options] Override http request option.
|
|
19066
20849
|
* @throws {RequiredError}
|
|
19067
20850
|
*/
|
|
19068
|
-
|
|
20851
|
+
updateBookingSpaceQuestionChoiceTranslation(requestParameters: BookingsQuestionsChoicesTranslationsApiUpdateBookingSpaceQuestionChoiceTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateBookingSpaceQuestionChoiceTranslation200Response, any, {}>>;
|
|
20852
|
+
}
|
|
20853
|
+
/**
|
|
20854
|
+
* BookingsQuestionsTranslationsApi - axios parameter creator
|
|
20855
|
+
*/
|
|
20856
|
+
export declare const BookingsQuestionsTranslationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
19069
20857
|
/**
|
|
19070
|
-
* Delete Booking
|
|
19071
|
-
* @summary Delete Booking
|
|
20858
|
+
* Delete Booking Space Question Translation endpoint
|
|
20859
|
+
* @summary Delete Booking Space Question Translation
|
|
19072
20860
|
* @param {string} placeId The place identifier
|
|
20861
|
+
* @param {string} spaceId The space identifier
|
|
20862
|
+
* @param {string} questionId The question identifier
|
|
20863
|
+
* @param {string} locale The locale identifier
|
|
19073
20864
|
* @param {*} [options] Override http request option.
|
|
19074
20865
|
* @throws {RequiredError}
|
|
19075
20866
|
*/
|
|
19076
|
-
|
|
20867
|
+
deleteBookingSpaceQuestionTranslation: (placeId: string, spaceId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19077
20868
|
/**
|
|
19078
|
-
*
|
|
19079
|
-
* @summary
|
|
20869
|
+
* Get Booking Space Question Translation endpoint
|
|
20870
|
+
* @summary Get Booking Space Question Translation
|
|
19080
20871
|
* @param {string} placeId The place identifier
|
|
19081
|
-
* @param {
|
|
19082
|
-
* @param {
|
|
19083
|
-
* @
|
|
19084
|
-
*/
|
|
19085
|
-
updateBookingPlace(placeId: string, bookingPlace: BookingPlaceUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBookingPlace200Response>>;
|
|
19086
|
-
};
|
|
19087
|
-
/**
|
|
19088
|
-
* BookingsPlacesApi - factory interface
|
|
19089
|
-
*/
|
|
19090
|
-
export declare const BookingsPlacesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
19091
|
-
/**
|
|
19092
|
-
* Create Booking Place endpoint
|
|
19093
|
-
* @summary Create Booking Place
|
|
19094
|
-
* @param {BookingsPlacesApiCreateBookingPlaceRequest} requestParameters Request parameters.
|
|
20872
|
+
* @param {string} spaceId The space identifier
|
|
20873
|
+
* @param {string} questionId The question identifier
|
|
20874
|
+
* @param {string} locale The locale identifier
|
|
19095
20875
|
* @param {*} [options] Override http request option.
|
|
19096
20876
|
* @throws {RequiredError}
|
|
19097
20877
|
*/
|
|
19098
|
-
|
|
20878
|
+
getBookingSpaceQuestionTranslation: (placeId: string, spaceId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19099
20879
|
/**
|
|
19100
|
-
*
|
|
19101
|
-
* @summary
|
|
19102
|
-
* @param {
|
|
20880
|
+
* Get Booking Space Question Translations endpoint
|
|
20881
|
+
* @summary Get Booking Space Question Translations
|
|
20882
|
+
* @param {string} placeId The place identifier
|
|
20883
|
+
* @param {string} spaceId The space identifier
|
|
20884
|
+
* @param {string} questionId The question identifier
|
|
19103
20885
|
* @param {*} [options] Override http request option.
|
|
19104
20886
|
* @throws {RequiredError}
|
|
19105
20887
|
*/
|
|
19106
|
-
|
|
20888
|
+
getBookingSpaceQuestionTranslations: (placeId: string, spaceId: string, questionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19107
20889
|
/**
|
|
19108
|
-
* Update Booking
|
|
19109
|
-
* @summary Update Booking
|
|
19110
|
-
* @param {
|
|
20890
|
+
* Update Booking Space Question Translation endpoint
|
|
20891
|
+
* @summary Update Booking Space Question Translation
|
|
20892
|
+
* @param {string} placeId The place identifier
|
|
20893
|
+
* @param {string} spaceId The space identifier
|
|
20894
|
+
* @param {string} questionId The question identifier
|
|
20895
|
+
* @param {string} locale The locale identifier
|
|
20896
|
+
* @param {BookingSpaceQuestionTranslationUpdateInputs} bookingSpaceQuestionTranslationUpdateInputs
|
|
19111
20897
|
* @param {*} [options] Override http request option.
|
|
19112
20898
|
* @throws {RequiredError}
|
|
19113
20899
|
*/
|
|
19114
|
-
|
|
20900
|
+
updateBookingSpaceQuestionTranslation: (placeId: string, spaceId: string, questionId: string, locale: string, bookingSpaceQuestionTranslationUpdateInputs: BookingSpaceQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19115
20901
|
};
|
|
19116
20902
|
/**
|
|
19117
|
-
*
|
|
19118
|
-
*/
|
|
19119
|
-
export interface BookingsPlacesApiCreateBookingPlaceRequest {
|
|
19120
|
-
readonly bookingPlaceCreateInputs: BookingPlaceCreateInputs;
|
|
19121
|
-
}
|
|
19122
|
-
/**
|
|
19123
|
-
* Request parameters for deleteBookingPlace operation in BookingsPlacesApi.
|
|
19124
|
-
*/
|
|
19125
|
-
export interface BookingsPlacesApiDeleteBookingPlaceRequest {
|
|
19126
|
-
/**
|
|
19127
|
-
* The place identifier
|
|
19128
|
-
*/
|
|
19129
|
-
readonly placeId: string;
|
|
19130
|
-
}
|
|
19131
|
-
/**
|
|
19132
|
-
* Request parameters for updateBookingPlace operation in BookingsPlacesApi.
|
|
19133
|
-
*/
|
|
19134
|
-
export interface BookingsPlacesApiUpdateBookingPlaceRequest {
|
|
19135
|
-
/**
|
|
19136
|
-
* The place identifier
|
|
19137
|
-
*/
|
|
19138
|
-
readonly placeId: string;
|
|
19139
|
-
/**
|
|
19140
|
-
* Filter by bookingPlace
|
|
19141
|
-
*/
|
|
19142
|
-
readonly bookingPlace: BookingPlaceUpdateInputs;
|
|
19143
|
-
}
|
|
19144
|
-
/**
|
|
19145
|
-
* BookingsPlacesApi - object-oriented interface
|
|
20903
|
+
* BookingsQuestionsTranslationsApi - functional programming interface
|
|
19146
20904
|
*/
|
|
19147
|
-
export declare
|
|
19148
|
-
/**
|
|
19149
|
-
* Create Booking Place endpoint
|
|
19150
|
-
* @summary Create Booking Place
|
|
19151
|
-
* @param {BookingsPlacesApiCreateBookingPlaceRequest} requestParameters Request parameters.
|
|
19152
|
-
* @param {*} [options] Override http request option.
|
|
19153
|
-
* @throws {RequiredError}
|
|
19154
|
-
*/
|
|
19155
|
-
createBookingPlace(requestParameters: BookingsPlacesApiCreateBookingPlaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingPlace200Response, any, {}>>;
|
|
20905
|
+
export declare const BookingsQuestionsTranslationsApiFp: (configuration?: Configuration) => {
|
|
19156
20906
|
/**
|
|
19157
|
-
* Delete Booking
|
|
19158
|
-
* @summary Delete Booking
|
|
19159
|
-
* @param {
|
|
20907
|
+
* Delete Booking Space Question Translation endpoint
|
|
20908
|
+
* @summary Delete Booking Space Question Translation
|
|
20909
|
+
* @param {string} placeId The place identifier
|
|
20910
|
+
* @param {string} spaceId The space identifier
|
|
20911
|
+
* @param {string} questionId The question identifier
|
|
20912
|
+
* @param {string} locale The locale identifier
|
|
19160
20913
|
* @param {*} [options] Override http request option.
|
|
19161
20914
|
* @throws {RequiredError}
|
|
19162
20915
|
*/
|
|
19163
|
-
|
|
20916
|
+
deleteBookingSpaceQuestionTranslation(placeId: string, spaceId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>>;
|
|
19164
20917
|
/**
|
|
19165
|
-
*
|
|
19166
|
-
* @summary
|
|
19167
|
-
* @param {
|
|
20918
|
+
* Get Booking Space Question Translation endpoint
|
|
20919
|
+
* @summary Get Booking Space Question Translation
|
|
20920
|
+
* @param {string} placeId The place identifier
|
|
20921
|
+
* @param {string} spaceId The space identifier
|
|
20922
|
+
* @param {string} questionId The question identifier
|
|
20923
|
+
* @param {string} locale The locale identifier
|
|
19168
20924
|
* @param {*} [options] Override http request option.
|
|
19169
20925
|
* @throws {RequiredError}
|
|
19170
20926
|
*/
|
|
19171
|
-
|
|
19172
|
-
}
|
|
19173
|
-
/**
|
|
19174
|
-
* BookingsPlacesTranslationsApi - axios parameter creator
|
|
19175
|
-
*/
|
|
19176
|
-
export declare const BookingsPlacesTranslationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20927
|
+
getBookingSpaceQuestionTranslation(placeId: string, spaceId: string, questionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBookingSpaceQuestionTranslation200Response>>;
|
|
19177
20928
|
/**
|
|
19178
|
-
*
|
|
19179
|
-
* @summary
|
|
20929
|
+
* Get Booking Space Question Translations endpoint
|
|
20930
|
+
* @summary Get Booking Space Question Translations
|
|
19180
20931
|
* @param {string} placeId The place identifier
|
|
19181
|
-
* @param {string}
|
|
20932
|
+
* @param {string} spaceId The space identifier
|
|
20933
|
+
* @param {string} questionId The question identifier
|
|
19182
20934
|
* @param {*} [options] Override http request option.
|
|
19183
20935
|
* @throws {RequiredError}
|
|
19184
20936
|
*/
|
|
19185
|
-
|
|
20937
|
+
getBookingSpaceQuestionTranslations(placeId: string, spaceId: string, questionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBookingSpaceQuestionTranslations200Response>>;
|
|
19186
20938
|
/**
|
|
19187
|
-
* Update Booking
|
|
19188
|
-
* @summary Update Booking
|
|
20939
|
+
* Update Booking Space Question Translation endpoint
|
|
20940
|
+
* @summary Update Booking Space Question Translation
|
|
19189
20941
|
* @param {string} placeId The place identifier
|
|
20942
|
+
* @param {string} spaceId The space identifier
|
|
20943
|
+
* @param {string} questionId The question identifier
|
|
19190
20944
|
* @param {string} locale The locale identifier
|
|
19191
|
-
* @param {
|
|
20945
|
+
* @param {BookingSpaceQuestionTranslationUpdateInputs} bookingSpaceQuestionTranslationUpdateInputs
|
|
19192
20946
|
* @param {*} [options] Override http request option.
|
|
19193
20947
|
* @throws {RequiredError}
|
|
19194
20948
|
*/
|
|
19195
|
-
|
|
20949
|
+
updateBookingSpaceQuestionTranslation(placeId: string, spaceId: string, questionId: string, locale: string, bookingSpaceQuestionTranslationUpdateInputs: BookingSpaceQuestionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateBookingSpaceQuestionTranslation200Response>>;
|
|
19196
20950
|
};
|
|
19197
20951
|
/**
|
|
19198
|
-
*
|
|
20952
|
+
* BookingsQuestionsTranslationsApi - factory interface
|
|
19199
20953
|
*/
|
|
19200
|
-
export declare const
|
|
20954
|
+
export declare const BookingsQuestionsTranslationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
19201
20955
|
/**
|
|
19202
|
-
* Delete Booking
|
|
19203
|
-
* @summary Delete Booking
|
|
19204
|
-
* @param {
|
|
19205
|
-
* @param {string} locale The locale identifier
|
|
20956
|
+
* Delete Booking Space Question Translation endpoint
|
|
20957
|
+
* @summary Delete Booking Space Question Translation
|
|
20958
|
+
* @param {BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest} requestParameters Request parameters.
|
|
19206
20959
|
* @param {*} [options] Override http request option.
|
|
19207
20960
|
* @throws {RequiredError}
|
|
19208
20961
|
*/
|
|
19209
|
-
|
|
20962
|
+
deleteBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response>;
|
|
19210
20963
|
/**
|
|
19211
|
-
*
|
|
19212
|
-
* @summary
|
|
19213
|
-
* @param {
|
|
19214
|
-
* @param {string} locale The locale identifier
|
|
19215
|
-
* @param {BookingPlaceTranslationUpdateInputs} bookingPlaceTranslationUpdateInputs
|
|
20964
|
+
* Get Booking Space Question Translation endpoint
|
|
20965
|
+
* @summary Get Booking Space Question Translation
|
|
20966
|
+
* @param {BookingsQuestionsTranslationsApiGetBookingSpaceQuestionTranslationRequest} requestParameters Request parameters.
|
|
19216
20967
|
* @param {*} [options] Override http request option.
|
|
19217
20968
|
* @throws {RequiredError}
|
|
19218
20969
|
*/
|
|
19219
|
-
|
|
19220
|
-
};
|
|
19221
|
-
/**
|
|
19222
|
-
* BookingsPlacesTranslationsApi - factory interface
|
|
19223
|
-
*/
|
|
19224
|
-
export declare const BookingsPlacesTranslationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
20970
|
+
getBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiGetBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetBookingSpaceQuestionTranslation200Response>;
|
|
19225
20971
|
/**
|
|
19226
|
-
*
|
|
19227
|
-
* @summary
|
|
19228
|
-
* @param {
|
|
20972
|
+
* Get Booking Space Question Translations endpoint
|
|
20973
|
+
* @summary Get Booking Space Question Translations
|
|
20974
|
+
* @param {BookingsQuestionsTranslationsApiGetBookingSpaceQuestionTranslationsRequest} requestParameters Request parameters.
|
|
19229
20975
|
* @param {*} [options] Override http request option.
|
|
19230
20976
|
* @throws {RequiredError}
|
|
19231
20977
|
*/
|
|
19232
|
-
|
|
20978
|
+
getBookingSpaceQuestionTranslations(requestParameters: BookingsQuestionsTranslationsApiGetBookingSpaceQuestionTranslationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetBookingSpaceQuestionTranslations200Response>;
|
|
19233
20979
|
/**
|
|
19234
|
-
* Update Booking
|
|
19235
|
-
* @summary Update Booking
|
|
19236
|
-
* @param {
|
|
20980
|
+
* Update Booking Space Question Translation endpoint
|
|
20981
|
+
* @summary Update Booking Space Question Translation
|
|
20982
|
+
* @param {BookingsQuestionsTranslationsApiUpdateBookingSpaceQuestionTranslationRequest} requestParameters Request parameters.
|
|
19237
20983
|
* @param {*} [options] Override http request option.
|
|
19238
20984
|
* @throws {RequiredError}
|
|
19239
20985
|
*/
|
|
19240
|
-
|
|
20986
|
+
updateBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiUpdateBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateBookingSpaceQuestionTranslation200Response>;
|
|
19241
20987
|
};
|
|
19242
20988
|
/**
|
|
19243
|
-
* Request parameters for
|
|
20989
|
+
* Request parameters for deleteBookingSpaceQuestionTranslation operation in BookingsQuestionsTranslationsApi.
|
|
19244
20990
|
*/
|
|
19245
|
-
export interface
|
|
20991
|
+
export interface BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest {
|
|
20992
|
+
/**
|
|
20993
|
+
* The place identifier
|
|
20994
|
+
*/
|
|
20995
|
+
readonly placeId: string;
|
|
20996
|
+
/**
|
|
20997
|
+
* The space identifier
|
|
20998
|
+
*/
|
|
20999
|
+
readonly spaceId: string;
|
|
21000
|
+
/**
|
|
21001
|
+
* The question identifier
|
|
21002
|
+
*/
|
|
21003
|
+
readonly questionId: string;
|
|
21004
|
+
/**
|
|
21005
|
+
* The locale identifier
|
|
21006
|
+
*/
|
|
21007
|
+
readonly locale: string;
|
|
21008
|
+
}
|
|
21009
|
+
/**
|
|
21010
|
+
* Request parameters for getBookingSpaceQuestionTranslation operation in BookingsQuestionsTranslationsApi.
|
|
21011
|
+
*/
|
|
21012
|
+
export interface BookingsQuestionsTranslationsApiGetBookingSpaceQuestionTranslationRequest {
|
|
19246
21013
|
/**
|
|
19247
21014
|
* The place identifier
|
|
19248
21015
|
*/
|
|
19249
21016
|
readonly placeId: string;
|
|
21017
|
+
/**
|
|
21018
|
+
* The space identifier
|
|
21019
|
+
*/
|
|
21020
|
+
readonly spaceId: string;
|
|
21021
|
+
/**
|
|
21022
|
+
* The question identifier
|
|
21023
|
+
*/
|
|
21024
|
+
readonly questionId: string;
|
|
19250
21025
|
/**
|
|
19251
21026
|
* The locale identifier
|
|
19252
21027
|
*/
|
|
19253
21028
|
readonly locale: string;
|
|
19254
21029
|
}
|
|
19255
21030
|
/**
|
|
19256
|
-
* Request parameters for
|
|
21031
|
+
* Request parameters for getBookingSpaceQuestionTranslations operation in BookingsQuestionsTranslationsApi.
|
|
19257
21032
|
*/
|
|
19258
|
-
export interface
|
|
21033
|
+
export interface BookingsQuestionsTranslationsApiGetBookingSpaceQuestionTranslationsRequest {
|
|
21034
|
+
/**
|
|
21035
|
+
* The place identifier
|
|
21036
|
+
*/
|
|
21037
|
+
readonly placeId: string;
|
|
21038
|
+
/**
|
|
21039
|
+
* The space identifier
|
|
21040
|
+
*/
|
|
21041
|
+
readonly spaceId: string;
|
|
21042
|
+
/**
|
|
21043
|
+
* The question identifier
|
|
21044
|
+
*/
|
|
21045
|
+
readonly questionId: string;
|
|
21046
|
+
}
|
|
21047
|
+
/**
|
|
21048
|
+
* Request parameters for updateBookingSpaceQuestionTranslation operation in BookingsQuestionsTranslationsApi.
|
|
21049
|
+
*/
|
|
21050
|
+
export interface BookingsQuestionsTranslationsApiUpdateBookingSpaceQuestionTranslationRequest {
|
|
19259
21051
|
/**
|
|
19260
21052
|
* The place identifier
|
|
19261
21053
|
*/
|
|
19262
21054
|
readonly placeId: string;
|
|
21055
|
+
/**
|
|
21056
|
+
* The space identifier
|
|
21057
|
+
*/
|
|
21058
|
+
readonly spaceId: string;
|
|
21059
|
+
/**
|
|
21060
|
+
* The question identifier
|
|
21061
|
+
*/
|
|
21062
|
+
readonly questionId: string;
|
|
19263
21063
|
/**
|
|
19264
21064
|
* The locale identifier
|
|
19265
21065
|
*/
|
|
19266
21066
|
readonly locale: string;
|
|
19267
|
-
readonly
|
|
21067
|
+
readonly bookingSpaceQuestionTranslationUpdateInputs: BookingSpaceQuestionTranslationUpdateInputs;
|
|
19268
21068
|
}
|
|
19269
21069
|
/**
|
|
19270
|
-
*
|
|
21070
|
+
* BookingsQuestionsTranslationsApi - object-oriented interface
|
|
19271
21071
|
*/
|
|
19272
|
-
export declare class
|
|
21072
|
+
export declare class BookingsQuestionsTranslationsApi extends BaseAPI {
|
|
19273
21073
|
/**
|
|
19274
|
-
* Delete Booking
|
|
19275
|
-
* @summary Delete Booking
|
|
19276
|
-
* @param {
|
|
21074
|
+
* Delete Booking Space Question Translation endpoint
|
|
21075
|
+
* @summary Delete Booking Space Question Translation
|
|
21076
|
+
* @param {BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest} requestParameters Request parameters.
|
|
19277
21077
|
* @param {*} [options] Override http request option.
|
|
19278
21078
|
* @throws {RequiredError}
|
|
19279
21079
|
*/
|
|
19280
|
-
|
|
21080
|
+
deleteBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiDeleteBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateAnnouncementTranslation200Response, any, {}>>;
|
|
19281
21081
|
/**
|
|
19282
|
-
*
|
|
19283
|
-
* @summary
|
|
19284
|
-
* @param {
|
|
21082
|
+
* Get Booking Space Question Translation endpoint
|
|
21083
|
+
* @summary Get Booking Space Question Translation
|
|
21084
|
+
* @param {BookingsQuestionsTranslationsApiGetBookingSpaceQuestionTranslationRequest} requestParameters Request parameters.
|
|
19285
21085
|
* @param {*} [options] Override http request option.
|
|
19286
21086
|
* @throws {RequiredError}
|
|
19287
21087
|
*/
|
|
19288
|
-
|
|
21088
|
+
getBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiGetBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBookingSpaceQuestionTranslation200Response, any, {}>>;
|
|
21089
|
+
/**
|
|
21090
|
+
* Get Booking Space Question Translations endpoint
|
|
21091
|
+
* @summary Get Booking Space Question Translations
|
|
21092
|
+
* @param {BookingsQuestionsTranslationsApiGetBookingSpaceQuestionTranslationsRequest} requestParameters Request parameters.
|
|
21093
|
+
* @param {*} [options] Override http request option.
|
|
21094
|
+
* @throws {RequiredError}
|
|
21095
|
+
*/
|
|
21096
|
+
getBookingSpaceQuestionTranslations(requestParameters: BookingsQuestionsTranslationsApiGetBookingSpaceQuestionTranslationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBookingSpaceQuestionTranslations200Response, any, {}>>;
|
|
21097
|
+
/**
|
|
21098
|
+
* Update Booking Space Question Translation endpoint
|
|
21099
|
+
* @summary Update Booking Space Question Translation
|
|
21100
|
+
* @param {BookingsQuestionsTranslationsApiUpdateBookingSpaceQuestionTranslationRequest} requestParameters Request parameters.
|
|
21101
|
+
* @param {*} [options] Override http request option.
|
|
21102
|
+
* @throws {RequiredError}
|
|
21103
|
+
*/
|
|
21104
|
+
updateBookingSpaceQuestionTranslation(requestParameters: BookingsQuestionsTranslationsApiUpdateBookingSpaceQuestionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateBookingSpaceQuestionTranslation200Response, any, {}>>;
|
|
19289
21105
|
}
|
|
19290
21106
|
/**
|
|
19291
21107
|
* BookingsSpacesApi - axios parameter creator
|
|
@@ -34940,6 +36756,16 @@ export declare class EventsPagesTranslationsApi extends BaseAPI {
|
|
|
34940
36756
|
* EventsPassesApi - axios parameter creator
|
|
34941
36757
|
*/
|
|
34942
36758
|
export declare const EventsPassesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
36759
|
+
/**
|
|
36760
|
+
* Approve Event Pass endpoint
|
|
36761
|
+
* @summary Approve Event Pass
|
|
36762
|
+
* @param {string} eventId The event identifier
|
|
36763
|
+
* @param {string} passId The pass identifier
|
|
36764
|
+
* @param {boolean} [sendEmail] Filter by sendEmail
|
|
36765
|
+
* @param {*} [options] Override http request option.
|
|
36766
|
+
* @throws {RequiredError}
|
|
36767
|
+
*/
|
|
36768
|
+
approveEventPass: (eventId: string, passId: string, sendEmail?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34943
36769
|
/**
|
|
34944
36770
|
* Cancel Event Pass endpoint
|
|
34945
36771
|
* @summary Cancel Event Pass
|
|
@@ -34979,6 +36805,17 @@ export declare const EventsPassesApiAxiosParamCreator: (configuration?: Configur
|
|
|
34979
36805
|
* @throws {RequiredError}
|
|
34980
36806
|
*/
|
|
34981
36807
|
deleteEventPass: (eventId: string, passId: string, accountId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
36808
|
+
/**
|
|
36809
|
+
* Deny Event Pass endpoint
|
|
36810
|
+
* @summary Deny Event Pass
|
|
36811
|
+
* @param {string} eventId The event identifier
|
|
36812
|
+
* @param {string} passId The pass identifier
|
|
36813
|
+
* @param {boolean} [sendEmail] Filter by sendEmail
|
|
36814
|
+
* @param {boolean} [refund] Filter by refund
|
|
36815
|
+
* @param {*} [options] Override http request option.
|
|
36816
|
+
* @throws {RequiredError}
|
|
36817
|
+
*/
|
|
36818
|
+
denyEventPass: (eventId: string, passId: string, sendEmail?: boolean, refund?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34982
36819
|
/**
|
|
34983
36820
|
* Get Event Pass endpoint
|
|
34984
36821
|
* @summary Get Event Pass
|
|
@@ -35038,6 +36875,18 @@ export declare const EventsPassesApiAxiosParamCreator: (configuration?: Configur
|
|
|
35038
36875
|
* @throws {RequiredError}
|
|
35039
36876
|
*/
|
|
35040
36877
|
getEventPasses: (eventId: string, checkedIn?: boolean, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
36878
|
+
/**
|
|
36879
|
+
* Get Event Pending Passes endpoint
|
|
36880
|
+
* @summary Get Event Pending Passes
|
|
36881
|
+
* @param {string} eventId The event identifier
|
|
36882
|
+
* @param {number} [page] Page number
|
|
36883
|
+
* @param {number} [pageSize] Number of items per page
|
|
36884
|
+
* @param {string} [orderBy] Field to order by
|
|
36885
|
+
* @param {string} [search] Search query
|
|
36886
|
+
* @param {*} [options] Override http request option.
|
|
36887
|
+
* @throws {RequiredError}
|
|
36888
|
+
*/
|
|
36889
|
+
getEventPendingPasses: (eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
35041
36890
|
/**
|
|
35042
36891
|
* Index Event Passes endpoint
|
|
35043
36892
|
* @summary Index Event Passes
|
|
@@ -35089,6 +36938,16 @@ export declare const EventsPassesApiAxiosParamCreator: (configuration?: Configur
|
|
|
35089
36938
|
* EventsPassesApi - functional programming interface
|
|
35090
36939
|
*/
|
|
35091
36940
|
export declare const EventsPassesApiFp: (configuration?: Configuration) => {
|
|
36941
|
+
/**
|
|
36942
|
+
* Approve Event Pass endpoint
|
|
36943
|
+
* @summary Approve Event Pass
|
|
36944
|
+
* @param {string} eventId The event identifier
|
|
36945
|
+
* @param {string} passId The pass identifier
|
|
36946
|
+
* @param {boolean} [sendEmail] Filter by sendEmail
|
|
36947
|
+
* @param {*} [options] Override http request option.
|
|
36948
|
+
* @throws {RequiredError}
|
|
36949
|
+
*/
|
|
36950
|
+
approveEventPass(eventId: string, passId: string, sendEmail?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventPass200Response>>;
|
|
35092
36951
|
/**
|
|
35093
36952
|
* Cancel Event Pass endpoint
|
|
35094
36953
|
* @summary Cancel Event Pass
|
|
@@ -35128,6 +36987,17 @@ export declare const EventsPassesApiFp: (configuration?: Configuration) => {
|
|
|
35128
36987
|
* @throws {RequiredError}
|
|
35129
36988
|
*/
|
|
35130
36989
|
deleteEventPass(eventId: string, passId: string, accountId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
36990
|
+
/**
|
|
36991
|
+
* Deny Event Pass endpoint
|
|
36992
|
+
* @summary Deny Event Pass
|
|
36993
|
+
* @param {string} eventId The event identifier
|
|
36994
|
+
* @param {string} passId The pass identifier
|
|
36995
|
+
* @param {boolean} [sendEmail] Filter by sendEmail
|
|
36996
|
+
* @param {boolean} [refund] Filter by refund
|
|
36997
|
+
* @param {*} [options] Override http request option.
|
|
36998
|
+
* @throws {RequiredError}
|
|
36999
|
+
*/
|
|
37000
|
+
denyEventPass(eventId: string, passId: string, sendEmail?: boolean, refund?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventPass200Response>>;
|
|
35131
37001
|
/**
|
|
35132
37002
|
* Get Event Pass endpoint
|
|
35133
37003
|
* @summary Get Event Pass
|
|
@@ -35187,6 +37057,18 @@ export declare const EventsPassesApiFp: (configuration?: Configuration) => {
|
|
|
35187
37057
|
* @throws {RequiredError}
|
|
35188
37058
|
*/
|
|
35189
37059
|
getEventPasses(eventId: string, checkedIn?: boolean, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventAddOnPasses200Response>>;
|
|
37060
|
+
/**
|
|
37061
|
+
* Get Event Pending Passes endpoint
|
|
37062
|
+
* @summary Get Event Pending Passes
|
|
37063
|
+
* @param {string} eventId The event identifier
|
|
37064
|
+
* @param {number} [page] Page number
|
|
37065
|
+
* @param {number} [pageSize] Number of items per page
|
|
37066
|
+
* @param {string} [orderBy] Field to order by
|
|
37067
|
+
* @param {string} [search] Search query
|
|
37068
|
+
* @param {*} [options] Override http request option.
|
|
37069
|
+
* @throws {RequiredError}
|
|
37070
|
+
*/
|
|
37071
|
+
getEventPendingPasses(eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventAddOnPasses200Response>>;
|
|
35190
37072
|
/**
|
|
35191
37073
|
* Index Event Passes endpoint
|
|
35192
37074
|
* @summary Index Event Passes
|
|
@@ -35238,6 +37120,14 @@ export declare const EventsPassesApiFp: (configuration?: Configuration) => {
|
|
|
35238
37120
|
* EventsPassesApi - factory interface
|
|
35239
37121
|
*/
|
|
35240
37122
|
export declare const EventsPassesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
37123
|
+
/**
|
|
37124
|
+
* Approve Event Pass endpoint
|
|
37125
|
+
* @summary Approve Event Pass
|
|
37126
|
+
* @param {EventsPassesApiApproveEventPassRequest} requestParameters Request parameters.
|
|
37127
|
+
* @param {*} [options] Override http request option.
|
|
37128
|
+
* @throws {RequiredError}
|
|
37129
|
+
*/
|
|
37130
|
+
approveEventPass(requestParameters: EventsPassesApiApproveEventPassRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventPass200Response>;
|
|
35241
37131
|
/**
|
|
35242
37132
|
* Cancel Event Pass endpoint
|
|
35243
37133
|
* @summary Cancel Event Pass
|
|
@@ -35270,6 +37160,14 @@ export declare const EventsPassesApiFactory: (configuration?: Configuration, bas
|
|
|
35270
37160
|
* @throws {RequiredError}
|
|
35271
37161
|
*/
|
|
35272
37162
|
deleteEventPass(requestParameters: EventsPassesApiDeleteEventPassRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
37163
|
+
/**
|
|
37164
|
+
* Deny Event Pass endpoint
|
|
37165
|
+
* @summary Deny Event Pass
|
|
37166
|
+
* @param {EventsPassesApiDenyEventPassRequest} requestParameters Request parameters.
|
|
37167
|
+
* @param {*} [options] Override http request option.
|
|
37168
|
+
* @throws {RequiredError}
|
|
37169
|
+
*/
|
|
37170
|
+
denyEventPass(requestParameters: EventsPassesApiDenyEventPassRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventPass200Response>;
|
|
35273
37171
|
/**
|
|
35274
37172
|
* Get Event Pass endpoint
|
|
35275
37173
|
* @summary Get Event Pass
|
|
@@ -35310,6 +37208,14 @@ export declare const EventsPassesApiFactory: (configuration?: Configuration, bas
|
|
|
35310
37208
|
* @throws {RequiredError}
|
|
35311
37209
|
*/
|
|
35312
37210
|
getEventPasses(requestParameters: EventsPassesApiGetEventPassesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventAddOnPasses200Response>;
|
|
37211
|
+
/**
|
|
37212
|
+
* Get Event Pending Passes endpoint
|
|
37213
|
+
* @summary Get Event Pending Passes
|
|
37214
|
+
* @param {EventsPassesApiGetEventPendingPassesRequest} requestParameters Request parameters.
|
|
37215
|
+
* @param {*} [options] Override http request option.
|
|
37216
|
+
* @throws {RequiredError}
|
|
37217
|
+
*/
|
|
37218
|
+
getEventPendingPasses(requestParameters: EventsPassesApiGetEventPendingPassesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventAddOnPasses200Response>;
|
|
35313
37219
|
/**
|
|
35314
37220
|
* Index Event Passes endpoint
|
|
35315
37221
|
* @summary Index Event Passes
|
|
@@ -35351,6 +37257,23 @@ export declare const EventsPassesApiFactory: (configuration?: Configuration, bas
|
|
|
35351
37257
|
*/
|
|
35352
37258
|
updateEventPassesReady(requestParameters: EventsPassesApiUpdateEventPassesReadyRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
35353
37259
|
};
|
|
37260
|
+
/**
|
|
37261
|
+
* Request parameters for approveEventPass operation in EventsPassesApi.
|
|
37262
|
+
*/
|
|
37263
|
+
export interface EventsPassesApiApproveEventPassRequest {
|
|
37264
|
+
/**
|
|
37265
|
+
* The event identifier
|
|
37266
|
+
*/
|
|
37267
|
+
readonly eventId: string;
|
|
37268
|
+
/**
|
|
37269
|
+
* The pass identifier
|
|
37270
|
+
*/
|
|
37271
|
+
readonly passId: string;
|
|
37272
|
+
/**
|
|
37273
|
+
* Filter by sendEmail
|
|
37274
|
+
*/
|
|
37275
|
+
readonly sendEmail?: boolean;
|
|
37276
|
+
}
|
|
35354
37277
|
/**
|
|
35355
37278
|
* Request parameters for cancelEventPass operation in EventsPassesApi.
|
|
35356
37279
|
*/
|
|
@@ -35412,6 +37335,27 @@ export interface EventsPassesApiDeleteEventPassRequest {
|
|
|
35412
37335
|
*/
|
|
35413
37336
|
readonly accountId?: string;
|
|
35414
37337
|
}
|
|
37338
|
+
/**
|
|
37339
|
+
* Request parameters for denyEventPass operation in EventsPassesApi.
|
|
37340
|
+
*/
|
|
37341
|
+
export interface EventsPassesApiDenyEventPassRequest {
|
|
37342
|
+
/**
|
|
37343
|
+
* The event identifier
|
|
37344
|
+
*/
|
|
37345
|
+
readonly eventId: string;
|
|
37346
|
+
/**
|
|
37347
|
+
* The pass identifier
|
|
37348
|
+
*/
|
|
37349
|
+
readonly passId: string;
|
|
37350
|
+
/**
|
|
37351
|
+
* Filter by sendEmail
|
|
37352
|
+
*/
|
|
37353
|
+
readonly sendEmail?: boolean;
|
|
37354
|
+
/**
|
|
37355
|
+
* Filter by refund
|
|
37356
|
+
*/
|
|
37357
|
+
readonly refund?: boolean;
|
|
37358
|
+
}
|
|
35415
37359
|
/**
|
|
35416
37360
|
* Request parameters for getEventPass operation in EventsPassesApi.
|
|
35417
37361
|
*/
|
|
@@ -35533,6 +37477,31 @@ export interface EventsPassesApiGetEventPassesRequest {
|
|
|
35533
37477
|
*/
|
|
35534
37478
|
readonly search?: string;
|
|
35535
37479
|
}
|
|
37480
|
+
/**
|
|
37481
|
+
* Request parameters for getEventPendingPasses operation in EventsPassesApi.
|
|
37482
|
+
*/
|
|
37483
|
+
export interface EventsPassesApiGetEventPendingPassesRequest {
|
|
37484
|
+
/**
|
|
37485
|
+
* The event identifier
|
|
37486
|
+
*/
|
|
37487
|
+
readonly eventId: string;
|
|
37488
|
+
/**
|
|
37489
|
+
* Page number
|
|
37490
|
+
*/
|
|
37491
|
+
readonly page?: number;
|
|
37492
|
+
/**
|
|
37493
|
+
* Number of items per page
|
|
37494
|
+
*/
|
|
37495
|
+
readonly pageSize?: number;
|
|
37496
|
+
/**
|
|
37497
|
+
* Field to order by
|
|
37498
|
+
*/
|
|
37499
|
+
readonly orderBy?: string;
|
|
37500
|
+
/**
|
|
37501
|
+
* Search query
|
|
37502
|
+
*/
|
|
37503
|
+
readonly search?: string;
|
|
37504
|
+
}
|
|
35536
37505
|
/**
|
|
35537
37506
|
* Request parameters for indexEventPasses operation in EventsPassesApi.
|
|
35538
37507
|
*/
|
|
@@ -35603,6 +37572,14 @@ export interface EventsPassesApiUpdateEventPassesReadyRequest {
|
|
|
35603
37572
|
* EventsPassesApi - object-oriented interface
|
|
35604
37573
|
*/
|
|
35605
37574
|
export declare class EventsPassesApi extends BaseAPI {
|
|
37575
|
+
/**
|
|
37576
|
+
* Approve Event Pass endpoint
|
|
37577
|
+
* @summary Approve Event Pass
|
|
37578
|
+
* @param {EventsPassesApiApproveEventPassRequest} requestParameters Request parameters.
|
|
37579
|
+
* @param {*} [options] Override http request option.
|
|
37580
|
+
* @throws {RequiredError}
|
|
37581
|
+
*/
|
|
37582
|
+
approveEventPass(requestParameters: EventsPassesApiApproveEventPassRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventPass200Response, any, {}>>;
|
|
35606
37583
|
/**
|
|
35607
37584
|
* Cancel Event Pass endpoint
|
|
35608
37585
|
* @summary Cancel Event Pass
|
|
@@ -35635,6 +37612,14 @@ export declare class EventsPassesApi extends BaseAPI {
|
|
|
35635
37612
|
* @throws {RequiredError}
|
|
35636
37613
|
*/
|
|
35637
37614
|
deleteEventPass(requestParameters: EventsPassesApiDeleteEventPassRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
37615
|
+
/**
|
|
37616
|
+
* Deny Event Pass endpoint
|
|
37617
|
+
* @summary Deny Event Pass
|
|
37618
|
+
* @param {EventsPassesApiDenyEventPassRequest} requestParameters Request parameters.
|
|
37619
|
+
* @param {*} [options] Override http request option.
|
|
37620
|
+
* @throws {RequiredError}
|
|
37621
|
+
*/
|
|
37622
|
+
denyEventPass(requestParameters: EventsPassesApiDenyEventPassRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventPass200Response, any, {}>>;
|
|
35638
37623
|
/**
|
|
35639
37624
|
* Get Event Pass endpoint
|
|
35640
37625
|
* @summary Get Event Pass
|
|
@@ -35675,6 +37660,14 @@ export declare class EventsPassesApi extends BaseAPI {
|
|
|
35675
37660
|
* @throws {RequiredError}
|
|
35676
37661
|
*/
|
|
35677
37662
|
getEventPasses(requestParameters: EventsPassesApiGetEventPassesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventAddOnPasses200Response, any, {}>>;
|
|
37663
|
+
/**
|
|
37664
|
+
* Get Event Pending Passes endpoint
|
|
37665
|
+
* @summary Get Event Pending Passes
|
|
37666
|
+
* @param {EventsPassesApiGetEventPendingPassesRequest} requestParameters Request parameters.
|
|
37667
|
+
* @param {*} [options] Override http request option.
|
|
37668
|
+
* @throws {RequiredError}
|
|
37669
|
+
*/
|
|
37670
|
+
getEventPendingPasses(requestParameters: EventsPassesApiGetEventPendingPassesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventAddOnPasses200Response, any, {}>>;
|
|
35678
37671
|
/**
|
|
35679
37672
|
* Index Event Passes endpoint
|
|
35680
37673
|
* @summary Index Event Passes
|
|
@@ -49455,9 +51448,429 @@ export interface EventsSessionsSectionsApiGetEventSessionSectionQuestionsRequest
|
|
|
49455
51448
|
readonly search?: string;
|
|
49456
51449
|
}
|
|
49457
51450
|
/**
|
|
49458
|
-
* Request parameters for getEventSessionSections operation in EventsSessionsSectionsApi.
|
|
51451
|
+
* Request parameters for getEventSessionSections operation in EventsSessionsSectionsApi.
|
|
51452
|
+
*/
|
|
51453
|
+
export interface EventsSessionsSectionsApiGetEventSessionSectionsRequest {
|
|
51454
|
+
/**
|
|
51455
|
+
* The event identifier
|
|
51456
|
+
*/
|
|
51457
|
+
readonly eventId: string;
|
|
51458
|
+
/**
|
|
51459
|
+
* The session identifier
|
|
51460
|
+
*/
|
|
51461
|
+
readonly sessionId: string;
|
|
51462
|
+
/**
|
|
51463
|
+
* Page number
|
|
51464
|
+
*/
|
|
51465
|
+
readonly page?: number;
|
|
51466
|
+
/**
|
|
51467
|
+
* Number of items per page
|
|
51468
|
+
*/
|
|
51469
|
+
readonly pageSize?: number;
|
|
51470
|
+
/**
|
|
51471
|
+
* Field to order by
|
|
51472
|
+
*/
|
|
51473
|
+
readonly orderBy?: string;
|
|
51474
|
+
/**
|
|
51475
|
+
* Search query
|
|
51476
|
+
*/
|
|
51477
|
+
readonly search?: string;
|
|
51478
|
+
}
|
|
51479
|
+
/**
|
|
51480
|
+
* Request parameters for removeEventSessionSectionQuestion operation in EventsSessionsSectionsApi.
|
|
51481
|
+
*/
|
|
51482
|
+
export interface EventsSessionsSectionsApiRemoveEventSessionSectionQuestionRequest {
|
|
51483
|
+
/**
|
|
51484
|
+
* The event identifier
|
|
51485
|
+
*/
|
|
51486
|
+
readonly eventId: string;
|
|
51487
|
+
/**
|
|
51488
|
+
* The session identifier
|
|
51489
|
+
*/
|
|
51490
|
+
readonly sessionId: string;
|
|
51491
|
+
/**
|
|
51492
|
+
* The section identifier
|
|
51493
|
+
*/
|
|
51494
|
+
readonly sectionId: string;
|
|
51495
|
+
/**
|
|
51496
|
+
* The question identifier
|
|
51497
|
+
*/
|
|
51498
|
+
readonly questionId: string;
|
|
51499
|
+
}
|
|
51500
|
+
/**
|
|
51501
|
+
* Request parameters for reorderEventSessionSectionQuestions operation in EventsSessionsSectionsApi.
|
|
51502
|
+
*/
|
|
51503
|
+
export interface EventsSessionsSectionsApiReorderEventSessionSectionQuestionsRequest {
|
|
51504
|
+
/**
|
|
51505
|
+
* The event identifier
|
|
51506
|
+
*/
|
|
51507
|
+
readonly eventId: string;
|
|
51508
|
+
/**
|
|
51509
|
+
* The session identifier
|
|
51510
|
+
*/
|
|
51511
|
+
readonly sessionId: string;
|
|
51512
|
+
/**
|
|
51513
|
+
* The section identifier
|
|
51514
|
+
*/
|
|
51515
|
+
readonly sectionId: string;
|
|
51516
|
+
/**
|
|
51517
|
+
* Filter by questionIds
|
|
51518
|
+
*/
|
|
51519
|
+
readonly questionIds: Array<string>;
|
|
51520
|
+
}
|
|
51521
|
+
/**
|
|
51522
|
+
* Request parameters for updateEventSessionSection operation in EventsSessionsSectionsApi.
|
|
51523
|
+
*/
|
|
51524
|
+
export interface EventsSessionsSectionsApiUpdateEventSessionSectionRequest {
|
|
51525
|
+
/**
|
|
51526
|
+
* The event identifier
|
|
51527
|
+
*/
|
|
51528
|
+
readonly eventId: string;
|
|
51529
|
+
/**
|
|
51530
|
+
* The session identifier
|
|
51531
|
+
*/
|
|
51532
|
+
readonly sessionId: string;
|
|
51533
|
+
/**
|
|
51534
|
+
* The section identifier
|
|
51535
|
+
*/
|
|
51536
|
+
readonly sectionId: string;
|
|
51537
|
+
/**
|
|
51538
|
+
* Filter by section
|
|
51539
|
+
*/
|
|
51540
|
+
readonly section: EventSessionSectionUpdateInputs;
|
|
51541
|
+
}
|
|
51542
|
+
/**
|
|
51543
|
+
* Request parameters for updateEventSessionSectionQuestion operation in EventsSessionsSectionsApi.
|
|
51544
|
+
*/
|
|
51545
|
+
export interface EventsSessionsSectionsApiUpdateEventSessionSectionQuestionRequest {
|
|
51546
|
+
/**
|
|
51547
|
+
* The event identifier
|
|
51548
|
+
*/
|
|
51549
|
+
readonly eventId: string;
|
|
51550
|
+
/**
|
|
51551
|
+
* The session identifier
|
|
51552
|
+
*/
|
|
51553
|
+
readonly sessionId: string;
|
|
51554
|
+
/**
|
|
51555
|
+
* The section identifier
|
|
51556
|
+
*/
|
|
51557
|
+
readonly sectionId: string;
|
|
51558
|
+
/**
|
|
51559
|
+
* The question identifier
|
|
51560
|
+
*/
|
|
51561
|
+
readonly questionId: string;
|
|
51562
|
+
/**
|
|
51563
|
+
* Filter by sortOrder
|
|
51564
|
+
*/
|
|
51565
|
+
readonly sortOrder: number;
|
|
51566
|
+
}
|
|
51567
|
+
/**
|
|
51568
|
+
* EventsSessionsSectionsApi - object-oriented interface
|
|
51569
|
+
*/
|
|
51570
|
+
export declare class EventsSessionsSectionsApi extends BaseAPI {
|
|
51571
|
+
/**
|
|
51572
|
+
* Add Event Session Section Question endpoint
|
|
51573
|
+
* @summary Add Event Session Section Question
|
|
51574
|
+
* @param {EventsSessionsSectionsApiAddEventSessionSectionQuestionRequest} requestParameters Request parameters.
|
|
51575
|
+
* @param {*} [options] Override http request option.
|
|
51576
|
+
* @throws {RequiredError}
|
|
51577
|
+
*/
|
|
51578
|
+
addEventSessionSectionQuestion(requestParameters: EventsSessionsSectionsApiAddEventSessionSectionQuestionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSessionSection200Response, any, {}>>;
|
|
51579
|
+
/**
|
|
51580
|
+
* Create Event Session Section endpoint
|
|
51581
|
+
* @summary Create Event Session Section
|
|
51582
|
+
* @param {EventsSessionsSectionsApiCreateEventSessionSectionRequest} requestParameters Request parameters.
|
|
51583
|
+
* @param {*} [options] Override http request option.
|
|
51584
|
+
* @throws {RequiredError}
|
|
51585
|
+
*/
|
|
51586
|
+
createEventSessionSection(requestParameters: EventsSessionsSectionsApiCreateEventSessionSectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSessionSection200Response, any, {}>>;
|
|
51587
|
+
/**
|
|
51588
|
+
* Delete Event Session Section endpoint
|
|
51589
|
+
* @summary Delete Event Session Section
|
|
51590
|
+
* @param {EventsSessionsSectionsApiDeleteEventSessionSectionRequest} requestParameters Request parameters.
|
|
51591
|
+
* @param {*} [options] Override http request option.
|
|
51592
|
+
* @throws {RequiredError}
|
|
51593
|
+
*/
|
|
51594
|
+
deleteEventSessionSection(requestParameters: EventsSessionsSectionsApiDeleteEventSessionSectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
51595
|
+
/**
|
|
51596
|
+
* Get Event Session Section endpoint
|
|
51597
|
+
* @summary Get Event Session Section
|
|
51598
|
+
* @param {EventsSessionsSectionsApiGetEventSessionSectionRequest} requestParameters Request parameters.
|
|
51599
|
+
* @param {*} [options] Override http request option.
|
|
51600
|
+
* @throws {RequiredError}
|
|
51601
|
+
*/
|
|
51602
|
+
getEventSessionSection(requestParameters: EventsSessionsSectionsApiGetEventSessionSectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSessionSection200Response, any, {}>>;
|
|
51603
|
+
/**
|
|
51604
|
+
* Get Event Session Section Questions endpoint
|
|
51605
|
+
* @summary Get Event Session Section Questions
|
|
51606
|
+
* @param {EventsSessionsSectionsApiGetEventSessionSectionQuestionsRequest} requestParameters Request parameters.
|
|
51607
|
+
* @param {*} [options] Override http request option.
|
|
51608
|
+
* @throws {RequiredError}
|
|
51609
|
+
*/
|
|
51610
|
+
getEventSessionSectionQuestions(requestParameters: EventsSessionsSectionsApiGetEventSessionSectionQuestionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventSessionSectionQuestions200Response, any, {}>>;
|
|
51611
|
+
/**
|
|
51612
|
+
* Get Event Session Sections endpoint
|
|
51613
|
+
* @summary Get Event Session Sections
|
|
51614
|
+
* @param {EventsSessionsSectionsApiGetEventSessionSectionsRequest} requestParameters Request parameters.
|
|
51615
|
+
* @param {*} [options] Override http request option.
|
|
51616
|
+
* @throws {RequiredError}
|
|
51617
|
+
*/
|
|
51618
|
+
getEventSessionSections(requestParameters: EventsSessionsSectionsApiGetEventSessionSectionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventSessionAccessQuestionSections200Response, any, {}>>;
|
|
51619
|
+
/**
|
|
51620
|
+
* Remove Event Session Section Question endpoint
|
|
51621
|
+
* @summary Remove Event Session Section Question
|
|
51622
|
+
* @param {EventsSessionsSectionsApiRemoveEventSessionSectionQuestionRequest} requestParameters Request parameters.
|
|
51623
|
+
* @param {*} [options] Override http request option.
|
|
51624
|
+
* @throws {RequiredError}
|
|
51625
|
+
*/
|
|
51626
|
+
removeEventSessionSectionQuestion(requestParameters: EventsSessionsSectionsApiRemoveEventSessionSectionQuestionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSessionSection200Response, any, {}>>;
|
|
51627
|
+
/**
|
|
51628
|
+
* Reorder Event Session Section Questions endpoint
|
|
51629
|
+
* @summary Reorder Event Session Section Questions
|
|
51630
|
+
* @param {EventsSessionsSectionsApiReorderEventSessionSectionQuestionsRequest} requestParameters Request parameters.
|
|
51631
|
+
* @param {*} [options] Override http request option.
|
|
51632
|
+
* @throws {RequiredError}
|
|
51633
|
+
*/
|
|
51634
|
+
reorderEventSessionSectionQuestions(requestParameters: EventsSessionsSectionsApiReorderEventSessionSectionQuestionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReorderEventSessionSectionQuestions200Response, any, {}>>;
|
|
51635
|
+
/**
|
|
51636
|
+
* Update Event Session Section endpoint
|
|
51637
|
+
* @summary Update Event Session Section
|
|
51638
|
+
* @param {EventsSessionsSectionsApiUpdateEventSessionSectionRequest} requestParameters Request parameters.
|
|
51639
|
+
* @param {*} [options] Override http request option.
|
|
51640
|
+
* @throws {RequiredError}
|
|
51641
|
+
*/
|
|
51642
|
+
updateEventSessionSection(requestParameters: EventsSessionsSectionsApiUpdateEventSessionSectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSessionSection200Response, any, {}>>;
|
|
51643
|
+
/**
|
|
51644
|
+
* Update Event Session Section Question endpoint
|
|
51645
|
+
* @summary Update Event Session Section Question
|
|
51646
|
+
* @param {EventsSessionsSectionsApiUpdateEventSessionSectionQuestionRequest} requestParameters Request parameters.
|
|
51647
|
+
* @param {*} [options] Override http request option.
|
|
51648
|
+
* @throws {RequiredError}
|
|
51649
|
+
*/
|
|
51650
|
+
updateEventSessionSectionQuestion(requestParameters: EventsSessionsSectionsApiUpdateEventSessionSectionQuestionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSessionSection200Response, any, {}>>;
|
|
51651
|
+
}
|
|
51652
|
+
/**
|
|
51653
|
+
* EventsSessionsSectionsTranslationsApi - axios parameter creator
|
|
51654
|
+
*/
|
|
51655
|
+
export declare const EventsSessionsSectionsTranslationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
51656
|
+
/**
|
|
51657
|
+
* Delete Event Session Section Translation endpoint
|
|
51658
|
+
* @summary Delete Event Session Section Translation
|
|
51659
|
+
* @param {string} eventId The event identifier
|
|
51660
|
+
* @param {string} sessionId The session identifier
|
|
51661
|
+
* @param {string} sectionId The section identifier
|
|
51662
|
+
* @param {string} locale The locale identifier
|
|
51663
|
+
* @param {*} [options] Override http request option.
|
|
51664
|
+
* @throws {RequiredError}
|
|
51665
|
+
*/
|
|
51666
|
+
deleteEventSessionSectionTranslation: (eventId: string, sessionId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51667
|
+
/**
|
|
51668
|
+
* Get Event Session Section Translation endpoint
|
|
51669
|
+
* @summary Get Event Session Section Translation
|
|
51670
|
+
* @param {string} eventId The event identifier
|
|
51671
|
+
* @param {string} sessionId The session identifier
|
|
51672
|
+
* @param {string} sectionId The section identifier
|
|
51673
|
+
* @param {string} locale The locale identifier
|
|
51674
|
+
* @param {*} [options] Override http request option.
|
|
51675
|
+
* @throws {RequiredError}
|
|
51676
|
+
*/
|
|
51677
|
+
getEventSessionSectionTranslation: (eventId: string, sessionId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51678
|
+
/**
|
|
51679
|
+
* Get Event Session Section Translations endpoint
|
|
51680
|
+
* @summary Get Event Session Section Translations
|
|
51681
|
+
* @param {string} eventId The event identifier
|
|
51682
|
+
* @param {string} sessionId The session identifier
|
|
51683
|
+
* @param {string} sectionId The section identifier
|
|
51684
|
+
* @param {number} [page] Page number
|
|
51685
|
+
* @param {number} [pageSize] Number of items per page
|
|
51686
|
+
* @param {string} [orderBy] Field to order by
|
|
51687
|
+
* @param {string} [search] Search query
|
|
51688
|
+
* @param {*} [options] Override http request option.
|
|
51689
|
+
* @throws {RequiredError}
|
|
51690
|
+
*/
|
|
51691
|
+
getEventSessionSectionTranslations: (eventId: string, sessionId: string, sectionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51692
|
+
/**
|
|
51693
|
+
* Update Event Session Section Translation endpoint
|
|
51694
|
+
* @summary Update Event Session Section Translation
|
|
51695
|
+
* @param {string} eventId The event identifier
|
|
51696
|
+
* @param {string} sessionId The session identifier
|
|
51697
|
+
* @param {string} sectionId The section identifier
|
|
51698
|
+
* @param {string} locale The locale identifier
|
|
51699
|
+
* @param {EventSessionSectionTranslationUpdateInputs} eventSessionSectionTranslationUpdateInputs
|
|
51700
|
+
* @param {*} [options] Override http request option.
|
|
51701
|
+
* @throws {RequiredError}
|
|
51702
|
+
*/
|
|
51703
|
+
updateEventSessionSectionTranslation: (eventId: string, sessionId: string, sectionId: string, locale: string, eventSessionSectionTranslationUpdateInputs: EventSessionSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51704
|
+
};
|
|
51705
|
+
/**
|
|
51706
|
+
* EventsSessionsSectionsTranslationsApi - functional programming interface
|
|
51707
|
+
*/
|
|
51708
|
+
export declare const EventsSessionsSectionsTranslationsApiFp: (configuration?: Configuration) => {
|
|
51709
|
+
/**
|
|
51710
|
+
* Delete Event Session Section Translation endpoint
|
|
51711
|
+
* @summary Delete Event Session Section Translation
|
|
51712
|
+
* @param {string} eventId The event identifier
|
|
51713
|
+
* @param {string} sessionId The session identifier
|
|
51714
|
+
* @param {string} sectionId The section identifier
|
|
51715
|
+
* @param {string} locale The locale identifier
|
|
51716
|
+
* @param {*} [options] Override http request option.
|
|
51717
|
+
* @throws {RequiredError}
|
|
51718
|
+
*/
|
|
51719
|
+
deleteEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>>;
|
|
51720
|
+
/**
|
|
51721
|
+
* Get Event Session Section Translation endpoint
|
|
51722
|
+
* @summary Get Event Session Section Translation
|
|
51723
|
+
* @param {string} eventId The event identifier
|
|
51724
|
+
* @param {string} sessionId The session identifier
|
|
51725
|
+
* @param {string} sectionId The section identifier
|
|
51726
|
+
* @param {string} locale The locale identifier
|
|
51727
|
+
* @param {*} [options] Override http request option.
|
|
51728
|
+
* @throws {RequiredError}
|
|
51729
|
+
*/
|
|
51730
|
+
getEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventSessionSectionTranslation200Response>>;
|
|
51731
|
+
/**
|
|
51732
|
+
* Get Event Session Section Translations endpoint
|
|
51733
|
+
* @summary Get Event Session Section Translations
|
|
51734
|
+
* @param {string} eventId The event identifier
|
|
51735
|
+
* @param {string} sessionId The session identifier
|
|
51736
|
+
* @param {string} sectionId The section identifier
|
|
51737
|
+
* @param {number} [page] Page number
|
|
51738
|
+
* @param {number} [pageSize] Number of items per page
|
|
51739
|
+
* @param {string} [orderBy] Field to order by
|
|
51740
|
+
* @param {string} [search] Search query
|
|
51741
|
+
* @param {*} [options] Override http request option.
|
|
51742
|
+
* @throws {RequiredError}
|
|
51743
|
+
*/
|
|
51744
|
+
getEventSessionSectionTranslations(eventId: string, sessionId: string, sectionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventSessionSectionTranslations200Response>>;
|
|
51745
|
+
/**
|
|
51746
|
+
* Update Event Session Section Translation endpoint
|
|
51747
|
+
* @summary Update Event Session Section Translation
|
|
51748
|
+
* @param {string} eventId The event identifier
|
|
51749
|
+
* @param {string} sessionId The session identifier
|
|
51750
|
+
* @param {string} sectionId The section identifier
|
|
51751
|
+
* @param {string} locale The locale identifier
|
|
51752
|
+
* @param {EventSessionSectionTranslationUpdateInputs} eventSessionSectionTranslationUpdateInputs
|
|
51753
|
+
* @param {*} [options] Override http request option.
|
|
51754
|
+
* @throws {RequiredError}
|
|
51755
|
+
*/
|
|
51756
|
+
updateEventSessionSectionTranslation(eventId: string, sessionId: string, sectionId: string, locale: string, eventSessionSectionTranslationUpdateInputs: EventSessionSectionTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>>;
|
|
51757
|
+
};
|
|
51758
|
+
/**
|
|
51759
|
+
* EventsSessionsSectionsTranslationsApi - factory interface
|
|
51760
|
+
*/
|
|
51761
|
+
export declare const EventsSessionsSectionsTranslationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
51762
|
+
/**
|
|
51763
|
+
* Delete Event Session Section Translation endpoint
|
|
51764
|
+
* @summary Delete Event Session Section Translation
|
|
51765
|
+
* @param {EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest} requestParameters Request parameters.
|
|
51766
|
+
* @param {*} [options] Override http request option.
|
|
51767
|
+
* @throws {RequiredError}
|
|
51768
|
+
*/
|
|
51769
|
+
deleteEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response>;
|
|
51770
|
+
/**
|
|
51771
|
+
* Get Event Session Section Translation endpoint
|
|
51772
|
+
* @summary Get Event Session Section Translation
|
|
51773
|
+
* @param {EventsSessionsSectionsTranslationsApiGetEventSessionSectionTranslationRequest} requestParameters Request parameters.
|
|
51774
|
+
* @param {*} [options] Override http request option.
|
|
51775
|
+
* @throws {RequiredError}
|
|
51776
|
+
*/
|
|
51777
|
+
getEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiGetEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventSessionSectionTranslation200Response>;
|
|
51778
|
+
/**
|
|
51779
|
+
* Get Event Session Section Translations endpoint
|
|
51780
|
+
* @summary Get Event Session Section Translations
|
|
51781
|
+
* @param {EventsSessionsSectionsTranslationsApiGetEventSessionSectionTranslationsRequest} requestParameters Request parameters.
|
|
51782
|
+
* @param {*} [options] Override http request option.
|
|
51783
|
+
* @throws {RequiredError}
|
|
51784
|
+
*/
|
|
51785
|
+
getEventSessionSectionTranslations(requestParameters: EventsSessionsSectionsTranslationsApiGetEventSessionSectionTranslationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventSessionSectionTranslations200Response>;
|
|
51786
|
+
/**
|
|
51787
|
+
* Update Event Session Section Translation endpoint
|
|
51788
|
+
* @summary Update Event Session Section Translation
|
|
51789
|
+
* @param {EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest} requestParameters Request parameters.
|
|
51790
|
+
* @param {*} [options] Override http request option.
|
|
51791
|
+
* @throws {RequiredError}
|
|
51792
|
+
*/
|
|
51793
|
+
updateEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response>;
|
|
51794
|
+
};
|
|
51795
|
+
/**
|
|
51796
|
+
* Request parameters for deleteEventSessionSectionTranslation operation in EventsSessionsSectionsTranslationsApi.
|
|
51797
|
+
*/
|
|
51798
|
+
export interface EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest {
|
|
51799
|
+
/**
|
|
51800
|
+
* The event identifier
|
|
51801
|
+
*/
|
|
51802
|
+
readonly eventId: string;
|
|
51803
|
+
/**
|
|
51804
|
+
* The session identifier
|
|
51805
|
+
*/
|
|
51806
|
+
readonly sessionId: string;
|
|
51807
|
+
/**
|
|
51808
|
+
* The section identifier
|
|
51809
|
+
*/
|
|
51810
|
+
readonly sectionId: string;
|
|
51811
|
+
/**
|
|
51812
|
+
* The locale identifier
|
|
51813
|
+
*/
|
|
51814
|
+
readonly locale: string;
|
|
51815
|
+
}
|
|
51816
|
+
/**
|
|
51817
|
+
* Request parameters for getEventSessionSectionTranslation operation in EventsSessionsSectionsTranslationsApi.
|
|
51818
|
+
*/
|
|
51819
|
+
export interface EventsSessionsSectionsTranslationsApiGetEventSessionSectionTranslationRequest {
|
|
51820
|
+
/**
|
|
51821
|
+
* The event identifier
|
|
51822
|
+
*/
|
|
51823
|
+
readonly eventId: string;
|
|
51824
|
+
/**
|
|
51825
|
+
* The session identifier
|
|
51826
|
+
*/
|
|
51827
|
+
readonly sessionId: string;
|
|
51828
|
+
/**
|
|
51829
|
+
* The section identifier
|
|
51830
|
+
*/
|
|
51831
|
+
readonly sectionId: string;
|
|
51832
|
+
/**
|
|
51833
|
+
* The locale identifier
|
|
51834
|
+
*/
|
|
51835
|
+
readonly locale: string;
|
|
51836
|
+
}
|
|
51837
|
+
/**
|
|
51838
|
+
* Request parameters for getEventSessionSectionTranslations operation in EventsSessionsSectionsTranslationsApi.
|
|
51839
|
+
*/
|
|
51840
|
+
export interface EventsSessionsSectionsTranslationsApiGetEventSessionSectionTranslationsRequest {
|
|
51841
|
+
/**
|
|
51842
|
+
* The event identifier
|
|
51843
|
+
*/
|
|
51844
|
+
readonly eventId: string;
|
|
51845
|
+
/**
|
|
51846
|
+
* The session identifier
|
|
51847
|
+
*/
|
|
51848
|
+
readonly sessionId: string;
|
|
51849
|
+
/**
|
|
51850
|
+
* The section identifier
|
|
51851
|
+
*/
|
|
51852
|
+
readonly sectionId: string;
|
|
51853
|
+
/**
|
|
51854
|
+
* Page number
|
|
51855
|
+
*/
|
|
51856
|
+
readonly page?: number;
|
|
51857
|
+
/**
|
|
51858
|
+
* Number of items per page
|
|
51859
|
+
*/
|
|
51860
|
+
readonly pageSize?: number;
|
|
51861
|
+
/**
|
|
51862
|
+
* Field to order by
|
|
51863
|
+
*/
|
|
51864
|
+
readonly orderBy?: string;
|
|
51865
|
+
/**
|
|
51866
|
+
* Search query
|
|
51867
|
+
*/
|
|
51868
|
+
readonly search?: string;
|
|
51869
|
+
}
|
|
51870
|
+
/**
|
|
51871
|
+
* Request parameters for updateEventSessionSectionTranslation operation in EventsSessionsSectionsTranslationsApi.
|
|
49459
51872
|
*/
|
|
49460
|
-
export interface
|
|
51873
|
+
export interface EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest {
|
|
49461
51874
|
/**
|
|
49462
51875
|
* The event identifier
|
|
49463
51876
|
*/
|
|
@@ -49467,26 +51880,315 @@ export interface EventsSessionsSectionsApiGetEventSessionSectionsRequest {
|
|
|
49467
51880
|
*/
|
|
49468
51881
|
readonly sessionId: string;
|
|
49469
51882
|
/**
|
|
49470
|
-
*
|
|
51883
|
+
* The section identifier
|
|
49471
51884
|
*/
|
|
49472
|
-
readonly
|
|
51885
|
+
readonly sectionId: string;
|
|
49473
51886
|
/**
|
|
49474
|
-
*
|
|
51887
|
+
* The locale identifier
|
|
49475
51888
|
*/
|
|
49476
|
-
readonly
|
|
51889
|
+
readonly locale: string;
|
|
51890
|
+
readonly eventSessionSectionTranslationUpdateInputs: EventSessionSectionTranslationUpdateInputs;
|
|
51891
|
+
}
|
|
51892
|
+
/**
|
|
51893
|
+
* EventsSessionsSectionsTranslationsApi - object-oriented interface
|
|
51894
|
+
*/
|
|
51895
|
+
export declare class EventsSessionsSectionsTranslationsApi extends BaseAPI {
|
|
49477
51896
|
/**
|
|
49478
|
-
*
|
|
51897
|
+
* Delete Event Session Section Translation endpoint
|
|
51898
|
+
* @summary Delete Event Session Section Translation
|
|
51899
|
+
* @param {EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest} requestParameters Request parameters.
|
|
51900
|
+
* @param {*} [options] Override http request option.
|
|
51901
|
+
* @throws {RequiredError}
|
|
49479
51902
|
*/
|
|
49480
|
-
|
|
51903
|
+
deleteEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateAnnouncementTranslation200Response, any, {}>>;
|
|
49481
51904
|
/**
|
|
49482
|
-
*
|
|
51905
|
+
* Get Event Session Section Translation endpoint
|
|
51906
|
+
* @summary Get Event Session Section Translation
|
|
51907
|
+
* @param {EventsSessionsSectionsTranslationsApiGetEventSessionSectionTranslationRequest} requestParameters Request parameters.
|
|
51908
|
+
* @param {*} [options] Override http request option.
|
|
51909
|
+
* @throws {RequiredError}
|
|
49483
51910
|
*/
|
|
49484
|
-
|
|
51911
|
+
getEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiGetEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventSessionSectionTranslation200Response, any, {}>>;
|
|
51912
|
+
/**
|
|
51913
|
+
* Get Event Session Section Translations endpoint
|
|
51914
|
+
* @summary Get Event Session Section Translations
|
|
51915
|
+
* @param {EventsSessionsSectionsTranslationsApiGetEventSessionSectionTranslationsRequest} requestParameters Request parameters.
|
|
51916
|
+
* @param {*} [options] Override http request option.
|
|
51917
|
+
* @throws {RequiredError}
|
|
51918
|
+
*/
|
|
51919
|
+
getEventSessionSectionTranslations(requestParameters: EventsSessionsSectionsTranslationsApiGetEventSessionSectionTranslationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventSessionSectionTranslations200Response, any, {}>>;
|
|
51920
|
+
/**
|
|
51921
|
+
* Update Event Session Section Translation endpoint
|
|
51922
|
+
* @summary Update Event Session Section Translation
|
|
51923
|
+
* @param {EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest} requestParameters Request parameters.
|
|
51924
|
+
* @param {*} [options] Override http request option.
|
|
51925
|
+
* @throws {RequiredError}
|
|
51926
|
+
*/
|
|
51927
|
+
updateEventSessionSectionTranslation(requestParameters: EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateAnnouncementTranslation200Response, any, {}>>;
|
|
49485
51928
|
}
|
|
49486
51929
|
/**
|
|
49487
|
-
*
|
|
51930
|
+
* EventsSessionsTimesApi - axios parameter creator
|
|
49488
51931
|
*/
|
|
49489
|
-
export
|
|
51932
|
+
export declare const EventsSessionsTimesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
51933
|
+
/**
|
|
51934
|
+
* Add Event Session Time Speaker endpoint
|
|
51935
|
+
* @summary Add Event Session Time Speaker
|
|
51936
|
+
* @param {string} eventId The event identifier
|
|
51937
|
+
* @param {string} sessionId The session identifier
|
|
51938
|
+
* @param {string} timeId The time identifier
|
|
51939
|
+
* @param {string} speakerId The speaker identifier
|
|
51940
|
+
* @param {*} [options] Override http request option.
|
|
51941
|
+
* @throws {RequiredError}
|
|
51942
|
+
*/
|
|
51943
|
+
addEventSessionTimeSpeaker: (eventId: string, sessionId: string, timeId: string, speakerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51944
|
+
/**
|
|
51945
|
+
* Create Event Session Time endpoint
|
|
51946
|
+
* @summary Create Event Session Time
|
|
51947
|
+
* @param {string} eventId The event identifier
|
|
51948
|
+
* @param {string} sessionId The session identifier
|
|
51949
|
+
* @param {EventSessionTimeCreateInputs} eventSessionTimeCreateInputs
|
|
51950
|
+
* @param {*} [options] Override http request option.
|
|
51951
|
+
* @throws {RequiredError}
|
|
51952
|
+
*/
|
|
51953
|
+
createEventSessionTime: (eventId: string, sessionId: string, eventSessionTimeCreateInputs: EventSessionTimeCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51954
|
+
/**
|
|
51955
|
+
* Delete Event Session Time endpoint
|
|
51956
|
+
* @summary Delete Event Session Time
|
|
51957
|
+
* @param {string} eventId The event identifier
|
|
51958
|
+
* @param {string} sessionId The session identifier
|
|
51959
|
+
* @param {string} timeId The time identifier
|
|
51960
|
+
* @param {*} [options] Override http request option.
|
|
51961
|
+
* @throws {RequiredError}
|
|
51962
|
+
*/
|
|
51963
|
+
deleteEventSessionTime: (eventId: string, sessionId: string, timeId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51964
|
+
/**
|
|
51965
|
+
* Get Event Session Time endpoint
|
|
51966
|
+
* @summary Get Event Session Time
|
|
51967
|
+
* @param {string} eventId The event identifier
|
|
51968
|
+
* @param {string} sessionId The session identifier
|
|
51969
|
+
* @param {string} timeId The time identifier
|
|
51970
|
+
* @param {*} [options] Override http request option.
|
|
51971
|
+
* @throws {RequiredError}
|
|
51972
|
+
*/
|
|
51973
|
+
getEventSessionTime: (eventId: string, sessionId: string, timeId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51974
|
+
/**
|
|
51975
|
+
* Get Event Session Time Speakers endpoint
|
|
51976
|
+
* @summary Get Event Session Time Speakers
|
|
51977
|
+
* @param {string} eventId The event identifier
|
|
51978
|
+
* @param {string} sessionId The session identifier
|
|
51979
|
+
* @param {string} timeId The time identifier
|
|
51980
|
+
* @param {number} [page] Page number
|
|
51981
|
+
* @param {number} [pageSize] Number of items per page
|
|
51982
|
+
* @param {string} [orderBy] Field to order by
|
|
51983
|
+
* @param {string} [search] Search query
|
|
51984
|
+
* @param {*} [options] Override http request option.
|
|
51985
|
+
* @throws {RequiredError}
|
|
51986
|
+
*/
|
|
51987
|
+
getEventSessionTimeSpeakers: (eventId: string, sessionId: string, timeId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51988
|
+
/**
|
|
51989
|
+
* Get Event Session Times endpoint
|
|
51990
|
+
* @summary Get Event Session Times
|
|
51991
|
+
* @param {string} eventId The event identifier
|
|
51992
|
+
* @param {string} sessionId The session identifier
|
|
51993
|
+
* @param {number} [page] Page number
|
|
51994
|
+
* @param {number} [pageSize] Number of items per page
|
|
51995
|
+
* @param {string} [orderBy] Field to order by
|
|
51996
|
+
* @param {string} [search] Search query
|
|
51997
|
+
* @param {*} [options] Override http request option.
|
|
51998
|
+
* @throws {RequiredError}
|
|
51999
|
+
*/
|
|
52000
|
+
getEventSessionTimes: (eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
52001
|
+
/**
|
|
52002
|
+
* Remove Event Session Time Speaker endpoint
|
|
52003
|
+
* @summary Remove Event Session Time Speaker
|
|
52004
|
+
* @param {string} eventId The event identifier
|
|
52005
|
+
* @param {string} sessionId The session identifier
|
|
52006
|
+
* @param {string} timeId The time identifier
|
|
52007
|
+
* @param {string} speakerId The speaker identifier
|
|
52008
|
+
* @param {*} [options] Override http request option.
|
|
52009
|
+
* @throws {RequiredError}
|
|
52010
|
+
*/
|
|
52011
|
+
removeEventSessionTimeSpeaker: (eventId: string, sessionId: string, timeId: string, speakerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
52012
|
+
/**
|
|
52013
|
+
* Update Event Session Time endpoint
|
|
52014
|
+
* @summary Update Event Session Time
|
|
52015
|
+
* @param {string} eventId The event identifier
|
|
52016
|
+
* @param {string} sessionId The session identifier
|
|
52017
|
+
* @param {string} timeId The time identifier
|
|
52018
|
+
* @param {EventSessionTimeUpdateInputs} eventSessionTimeUpdateInputs
|
|
52019
|
+
* @param {*} [options] Override http request option.
|
|
52020
|
+
* @throws {RequiredError}
|
|
52021
|
+
*/
|
|
52022
|
+
updateEventSessionTime: (eventId: string, sessionId: string, timeId: string, eventSessionTimeUpdateInputs: EventSessionTimeUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
52023
|
+
};
|
|
52024
|
+
/**
|
|
52025
|
+
* EventsSessionsTimesApi - functional programming interface
|
|
52026
|
+
*/
|
|
52027
|
+
export declare const EventsSessionsTimesApiFp: (configuration?: Configuration) => {
|
|
52028
|
+
/**
|
|
52029
|
+
* Add Event Session Time Speaker endpoint
|
|
52030
|
+
* @summary Add Event Session Time Speaker
|
|
52031
|
+
* @param {string} eventId The event identifier
|
|
52032
|
+
* @param {string} sessionId The session identifier
|
|
52033
|
+
* @param {string} timeId The time identifier
|
|
52034
|
+
* @param {string} speakerId The speaker identifier
|
|
52035
|
+
* @param {*} [options] Override http request option.
|
|
52036
|
+
* @throws {RequiredError}
|
|
52037
|
+
*/
|
|
52038
|
+
addEventSessionTimeSpeaker(eventId: string, sessionId: string, timeId: string, speakerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSessionTime200Response>>;
|
|
52039
|
+
/**
|
|
52040
|
+
* Create Event Session Time endpoint
|
|
52041
|
+
* @summary Create Event Session Time
|
|
52042
|
+
* @param {string} eventId The event identifier
|
|
52043
|
+
* @param {string} sessionId The session identifier
|
|
52044
|
+
* @param {EventSessionTimeCreateInputs} eventSessionTimeCreateInputs
|
|
52045
|
+
* @param {*} [options] Override http request option.
|
|
52046
|
+
* @throws {RequiredError}
|
|
52047
|
+
*/
|
|
52048
|
+
createEventSessionTime(eventId: string, sessionId: string, eventSessionTimeCreateInputs: EventSessionTimeCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSessionTime200Response>>;
|
|
52049
|
+
/**
|
|
52050
|
+
* Delete Event Session Time endpoint
|
|
52051
|
+
* @summary Delete Event Session Time
|
|
52052
|
+
* @param {string} eventId The event identifier
|
|
52053
|
+
* @param {string} sessionId The session identifier
|
|
52054
|
+
* @param {string} timeId The time identifier
|
|
52055
|
+
* @param {*} [options] Override http request option.
|
|
52056
|
+
* @throws {RequiredError}
|
|
52057
|
+
*/
|
|
52058
|
+
deleteEventSessionTime(eventId: string, sessionId: string, timeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>>;
|
|
52059
|
+
/**
|
|
52060
|
+
* Get Event Session Time endpoint
|
|
52061
|
+
* @summary Get Event Session Time
|
|
52062
|
+
* @param {string} eventId The event identifier
|
|
52063
|
+
* @param {string} sessionId The session identifier
|
|
52064
|
+
* @param {string} timeId The time identifier
|
|
52065
|
+
* @param {*} [options] Override http request option.
|
|
52066
|
+
* @throws {RequiredError}
|
|
52067
|
+
*/
|
|
52068
|
+
getEventSessionTime(eventId: string, sessionId: string, timeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSessionTime200Response>>;
|
|
52069
|
+
/**
|
|
52070
|
+
* Get Event Session Time Speakers endpoint
|
|
52071
|
+
* @summary Get Event Session Time Speakers
|
|
52072
|
+
* @param {string} eventId The event identifier
|
|
52073
|
+
* @param {string} sessionId The session identifier
|
|
52074
|
+
* @param {string} timeId The time identifier
|
|
52075
|
+
* @param {number} [page] Page number
|
|
52076
|
+
* @param {number} [pageSize] Number of items per page
|
|
52077
|
+
* @param {string} [orderBy] Field to order by
|
|
52078
|
+
* @param {string} [search] Search query
|
|
52079
|
+
* @param {*} [options] Override http request option.
|
|
52080
|
+
* @throws {RequiredError}
|
|
52081
|
+
*/
|
|
52082
|
+
getEventSessionTimeSpeakers(eventId: string, sessionId: string, timeId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventSessionSpeakers200Response>>;
|
|
52083
|
+
/**
|
|
52084
|
+
* Get Event Session Times endpoint
|
|
52085
|
+
* @summary Get Event Session Times
|
|
52086
|
+
* @param {string} eventId The event identifier
|
|
52087
|
+
* @param {string} sessionId The session identifier
|
|
52088
|
+
* @param {number} [page] Page number
|
|
52089
|
+
* @param {number} [pageSize] Number of items per page
|
|
52090
|
+
* @param {string} [orderBy] Field to order by
|
|
52091
|
+
* @param {string} [search] Search query
|
|
52092
|
+
* @param {*} [options] Override http request option.
|
|
52093
|
+
* @throws {RequiredError}
|
|
52094
|
+
*/
|
|
52095
|
+
getEventSessionTimes(eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventSessionTimes200Response>>;
|
|
52096
|
+
/**
|
|
52097
|
+
* Remove Event Session Time Speaker endpoint
|
|
52098
|
+
* @summary Remove Event Session Time Speaker
|
|
52099
|
+
* @param {string} eventId The event identifier
|
|
52100
|
+
* @param {string} sessionId The session identifier
|
|
52101
|
+
* @param {string} timeId The time identifier
|
|
52102
|
+
* @param {string} speakerId The speaker identifier
|
|
52103
|
+
* @param {*} [options] Override http request option.
|
|
52104
|
+
* @throws {RequiredError}
|
|
52105
|
+
*/
|
|
52106
|
+
removeEventSessionTimeSpeaker(eventId: string, sessionId: string, timeId: string, speakerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSessionTime200Response>>;
|
|
52107
|
+
/**
|
|
52108
|
+
* Update Event Session Time endpoint
|
|
52109
|
+
* @summary Update Event Session Time
|
|
52110
|
+
* @param {string} eventId The event identifier
|
|
52111
|
+
* @param {string} sessionId The session identifier
|
|
52112
|
+
* @param {string} timeId The time identifier
|
|
52113
|
+
* @param {EventSessionTimeUpdateInputs} eventSessionTimeUpdateInputs
|
|
52114
|
+
* @param {*} [options] Override http request option.
|
|
52115
|
+
* @throws {RequiredError}
|
|
52116
|
+
*/
|
|
52117
|
+
updateEventSessionTime(eventId: string, sessionId: string, timeId: string, eventSessionTimeUpdateInputs: EventSessionTimeUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSessionTime200Response>>;
|
|
52118
|
+
};
|
|
52119
|
+
/**
|
|
52120
|
+
* EventsSessionsTimesApi - factory interface
|
|
52121
|
+
*/
|
|
52122
|
+
export declare const EventsSessionsTimesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
52123
|
+
/**
|
|
52124
|
+
* Add Event Session Time Speaker endpoint
|
|
52125
|
+
* @summary Add Event Session Time Speaker
|
|
52126
|
+
* @param {EventsSessionsTimesApiAddEventSessionTimeSpeakerRequest} requestParameters Request parameters.
|
|
52127
|
+
* @param {*} [options] Override http request option.
|
|
52128
|
+
* @throws {RequiredError}
|
|
52129
|
+
*/
|
|
52130
|
+
addEventSessionTimeSpeaker(requestParameters: EventsSessionsTimesApiAddEventSessionTimeSpeakerRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSessionTime200Response>;
|
|
52131
|
+
/**
|
|
52132
|
+
* Create Event Session Time endpoint
|
|
52133
|
+
* @summary Create Event Session Time
|
|
52134
|
+
* @param {EventsSessionsTimesApiCreateEventSessionTimeRequest} requestParameters Request parameters.
|
|
52135
|
+
* @param {*} [options] Override http request option.
|
|
52136
|
+
* @throws {RequiredError}
|
|
52137
|
+
*/
|
|
52138
|
+
createEventSessionTime(requestParameters: EventsSessionsTimesApiCreateEventSessionTimeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSessionTime200Response>;
|
|
52139
|
+
/**
|
|
52140
|
+
* Delete Event Session Time endpoint
|
|
52141
|
+
* @summary Delete Event Session Time
|
|
52142
|
+
* @param {EventsSessionsTimesApiDeleteEventSessionTimeRequest} requestParameters Request parameters.
|
|
52143
|
+
* @param {*} [options] Override http request option.
|
|
52144
|
+
* @throws {RequiredError}
|
|
52145
|
+
*/
|
|
52146
|
+
deleteEventSessionTime(requestParameters: EventsSessionsTimesApiDeleteEventSessionTimeRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response>;
|
|
52147
|
+
/**
|
|
52148
|
+
* Get Event Session Time endpoint
|
|
52149
|
+
* @summary Get Event Session Time
|
|
52150
|
+
* @param {EventsSessionsTimesApiGetEventSessionTimeRequest} requestParameters Request parameters.
|
|
52151
|
+
* @param {*} [options] Override http request option.
|
|
52152
|
+
* @throws {RequiredError}
|
|
52153
|
+
*/
|
|
52154
|
+
getEventSessionTime(requestParameters: EventsSessionsTimesApiGetEventSessionTimeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSessionTime200Response>;
|
|
52155
|
+
/**
|
|
52156
|
+
* Get Event Session Time Speakers endpoint
|
|
52157
|
+
* @summary Get Event Session Time Speakers
|
|
52158
|
+
* @param {EventsSessionsTimesApiGetEventSessionTimeSpeakersRequest} requestParameters Request parameters.
|
|
52159
|
+
* @param {*} [options] Override http request option.
|
|
52160
|
+
* @throws {RequiredError}
|
|
52161
|
+
*/
|
|
52162
|
+
getEventSessionTimeSpeakers(requestParameters: EventsSessionsTimesApiGetEventSessionTimeSpeakersRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventSessionSpeakers200Response>;
|
|
52163
|
+
/**
|
|
52164
|
+
* Get Event Session Times endpoint
|
|
52165
|
+
* @summary Get Event Session Times
|
|
52166
|
+
* @param {EventsSessionsTimesApiGetEventSessionTimesRequest} requestParameters Request parameters.
|
|
52167
|
+
* @param {*} [options] Override http request option.
|
|
52168
|
+
* @throws {RequiredError}
|
|
52169
|
+
*/
|
|
52170
|
+
getEventSessionTimes(requestParameters: EventsSessionsTimesApiGetEventSessionTimesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventSessionTimes200Response>;
|
|
52171
|
+
/**
|
|
52172
|
+
* Remove Event Session Time Speaker endpoint
|
|
52173
|
+
* @summary Remove Event Session Time Speaker
|
|
52174
|
+
* @param {EventsSessionsTimesApiRemoveEventSessionTimeSpeakerRequest} requestParameters Request parameters.
|
|
52175
|
+
* @param {*} [options] Override http request option.
|
|
52176
|
+
* @throws {RequiredError}
|
|
52177
|
+
*/
|
|
52178
|
+
removeEventSessionTimeSpeaker(requestParameters: EventsSessionsTimesApiRemoveEventSessionTimeSpeakerRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSessionTime200Response>;
|
|
52179
|
+
/**
|
|
52180
|
+
* Update Event Session Time endpoint
|
|
52181
|
+
* @summary Update Event Session Time
|
|
52182
|
+
* @param {EventsSessionsTimesApiUpdateEventSessionTimeRequest} requestParameters Request parameters.
|
|
52183
|
+
* @param {*} [options] Override http request option.
|
|
52184
|
+
* @throws {RequiredError}
|
|
52185
|
+
*/
|
|
52186
|
+
updateEventSessionTime(requestParameters: EventsSessionsTimesApiUpdateEventSessionTimeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSessionTime200Response>;
|
|
52187
|
+
};
|
|
52188
|
+
/**
|
|
52189
|
+
* Request parameters for addEventSessionTimeSpeaker operation in EventsSessionsTimesApi.
|
|
52190
|
+
*/
|
|
52191
|
+
export interface EventsSessionsTimesApiAddEventSessionTimeSpeakerRequest {
|
|
49490
52192
|
/**
|
|
49491
52193
|
* The event identifier
|
|
49492
52194
|
*/
|
|
@@ -49496,18 +52198,18 @@ export interface EventsSessionsSectionsApiRemoveEventSessionSectionQuestionReque
|
|
|
49496
52198
|
*/
|
|
49497
52199
|
readonly sessionId: string;
|
|
49498
52200
|
/**
|
|
49499
|
-
* The
|
|
52201
|
+
* The time identifier
|
|
49500
52202
|
*/
|
|
49501
|
-
readonly
|
|
52203
|
+
readonly timeId: string;
|
|
49502
52204
|
/**
|
|
49503
|
-
* The
|
|
52205
|
+
* The speaker identifier
|
|
49504
52206
|
*/
|
|
49505
|
-
readonly
|
|
52207
|
+
readonly speakerId: string;
|
|
49506
52208
|
}
|
|
49507
52209
|
/**
|
|
49508
|
-
* Request parameters for
|
|
52210
|
+
* Request parameters for createEventSessionTime operation in EventsSessionsTimesApi.
|
|
49509
52211
|
*/
|
|
49510
|
-
export interface
|
|
52212
|
+
export interface EventsSessionsTimesApiCreateEventSessionTimeRequest {
|
|
49511
52213
|
/**
|
|
49512
52214
|
* The event identifier
|
|
49513
52215
|
*/
|
|
@@ -49516,19 +52218,29 @@ export interface EventsSessionsSectionsApiReorderEventSessionSectionQuestionsReq
|
|
|
49516
52218
|
* The session identifier
|
|
49517
52219
|
*/
|
|
49518
52220
|
readonly sessionId: string;
|
|
52221
|
+
readonly eventSessionTimeCreateInputs: EventSessionTimeCreateInputs;
|
|
52222
|
+
}
|
|
52223
|
+
/**
|
|
52224
|
+
* Request parameters for deleteEventSessionTime operation in EventsSessionsTimesApi.
|
|
52225
|
+
*/
|
|
52226
|
+
export interface EventsSessionsTimesApiDeleteEventSessionTimeRequest {
|
|
49519
52227
|
/**
|
|
49520
|
-
* The
|
|
52228
|
+
* The event identifier
|
|
49521
52229
|
*/
|
|
49522
|
-
readonly
|
|
52230
|
+
readonly eventId: string;
|
|
49523
52231
|
/**
|
|
49524
|
-
*
|
|
52232
|
+
* The session identifier
|
|
49525
52233
|
*/
|
|
49526
|
-
readonly
|
|
52234
|
+
readonly sessionId: string;
|
|
52235
|
+
/**
|
|
52236
|
+
* The time identifier
|
|
52237
|
+
*/
|
|
52238
|
+
readonly timeId: string;
|
|
49527
52239
|
}
|
|
49528
52240
|
/**
|
|
49529
|
-
* Request parameters for
|
|
52241
|
+
* Request parameters for getEventSessionTime operation in EventsSessionsTimesApi.
|
|
49530
52242
|
*/
|
|
49531
|
-
export interface
|
|
52243
|
+
export interface EventsSessionsTimesApiGetEventSessionTimeRequest {
|
|
49532
52244
|
/**
|
|
49533
52245
|
* The event identifier
|
|
49534
52246
|
*/
|
|
@@ -49538,18 +52250,47 @@ export interface EventsSessionsSectionsApiUpdateEventSessionSectionRequest {
|
|
|
49538
52250
|
*/
|
|
49539
52251
|
readonly sessionId: string;
|
|
49540
52252
|
/**
|
|
49541
|
-
* The
|
|
52253
|
+
* The time identifier
|
|
49542
52254
|
*/
|
|
49543
|
-
readonly
|
|
52255
|
+
readonly timeId: string;
|
|
52256
|
+
}
|
|
52257
|
+
/**
|
|
52258
|
+
* Request parameters for getEventSessionTimeSpeakers operation in EventsSessionsTimesApi.
|
|
52259
|
+
*/
|
|
52260
|
+
export interface EventsSessionsTimesApiGetEventSessionTimeSpeakersRequest {
|
|
49544
52261
|
/**
|
|
49545
|
-
*
|
|
52262
|
+
* The event identifier
|
|
49546
52263
|
*/
|
|
49547
|
-
readonly
|
|
52264
|
+
readonly eventId: string;
|
|
52265
|
+
/**
|
|
52266
|
+
* The session identifier
|
|
52267
|
+
*/
|
|
52268
|
+
readonly sessionId: string;
|
|
52269
|
+
/**
|
|
52270
|
+
* The time identifier
|
|
52271
|
+
*/
|
|
52272
|
+
readonly timeId: string;
|
|
52273
|
+
/**
|
|
52274
|
+
* Page number
|
|
52275
|
+
*/
|
|
52276
|
+
readonly page?: number;
|
|
52277
|
+
/**
|
|
52278
|
+
* Number of items per page
|
|
52279
|
+
*/
|
|
52280
|
+
readonly pageSize?: number;
|
|
52281
|
+
/**
|
|
52282
|
+
* Field to order by
|
|
52283
|
+
*/
|
|
52284
|
+
readonly orderBy?: string;
|
|
52285
|
+
/**
|
|
52286
|
+
* Search query
|
|
52287
|
+
*/
|
|
52288
|
+
readonly search?: string;
|
|
49548
52289
|
}
|
|
49549
52290
|
/**
|
|
49550
|
-
* Request parameters for
|
|
52291
|
+
* Request parameters for getEventSessionTimes operation in EventsSessionsTimesApi.
|
|
49551
52292
|
*/
|
|
49552
|
-
export interface
|
|
52293
|
+
export interface EventsSessionsTimesApiGetEventSessionTimesRequest {
|
|
49553
52294
|
/**
|
|
49554
52295
|
* The event identifier
|
|
49555
52296
|
*/
|
|
@@ -49559,135 +52300,162 @@ export interface EventsSessionsSectionsApiUpdateEventSessionSectionQuestionReque
|
|
|
49559
52300
|
*/
|
|
49560
52301
|
readonly sessionId: string;
|
|
49561
52302
|
/**
|
|
49562
|
-
*
|
|
52303
|
+
* Page number
|
|
49563
52304
|
*/
|
|
49564
|
-
readonly
|
|
52305
|
+
readonly page?: number;
|
|
49565
52306
|
/**
|
|
49566
|
-
*
|
|
52307
|
+
* Number of items per page
|
|
49567
52308
|
*/
|
|
49568
|
-
readonly
|
|
52309
|
+
readonly pageSize?: number;
|
|
49569
52310
|
/**
|
|
49570
|
-
*
|
|
52311
|
+
* Field to order by
|
|
49571
52312
|
*/
|
|
49572
|
-
readonly
|
|
52313
|
+
readonly orderBy?: string;
|
|
52314
|
+
/**
|
|
52315
|
+
* Search query
|
|
52316
|
+
*/
|
|
52317
|
+
readonly search?: string;
|
|
49573
52318
|
}
|
|
49574
52319
|
/**
|
|
49575
|
-
*
|
|
52320
|
+
* Request parameters for removeEventSessionTimeSpeaker operation in EventsSessionsTimesApi.
|
|
49576
52321
|
*/
|
|
49577
|
-
export
|
|
52322
|
+
export interface EventsSessionsTimesApiRemoveEventSessionTimeSpeakerRequest {
|
|
49578
52323
|
/**
|
|
49579
|
-
*
|
|
49580
|
-
* @summary Add Event Session Section Question
|
|
49581
|
-
* @param {EventsSessionsSectionsApiAddEventSessionSectionQuestionRequest} requestParameters Request parameters.
|
|
49582
|
-
* @param {*} [options] Override http request option.
|
|
49583
|
-
* @throws {RequiredError}
|
|
52324
|
+
* The event identifier
|
|
49584
52325
|
*/
|
|
49585
|
-
|
|
52326
|
+
readonly eventId: string;
|
|
49586
52327
|
/**
|
|
49587
|
-
*
|
|
49588
|
-
* @summary Create Event Session Section
|
|
49589
|
-
* @param {EventsSessionsSectionsApiCreateEventSessionSectionRequest} requestParameters Request parameters.
|
|
49590
|
-
* @param {*} [options] Override http request option.
|
|
49591
|
-
* @throws {RequiredError}
|
|
52328
|
+
* The session identifier
|
|
49592
52329
|
*/
|
|
49593
|
-
|
|
52330
|
+
readonly sessionId: string;
|
|
49594
52331
|
/**
|
|
49595
|
-
*
|
|
49596
|
-
|
|
49597
|
-
|
|
52332
|
+
* The time identifier
|
|
52333
|
+
*/
|
|
52334
|
+
readonly timeId: string;
|
|
52335
|
+
/**
|
|
52336
|
+
* The speaker identifier
|
|
52337
|
+
*/
|
|
52338
|
+
readonly speakerId: string;
|
|
52339
|
+
}
|
|
52340
|
+
/**
|
|
52341
|
+
* Request parameters for updateEventSessionTime operation in EventsSessionsTimesApi.
|
|
52342
|
+
*/
|
|
52343
|
+
export interface EventsSessionsTimesApiUpdateEventSessionTimeRequest {
|
|
52344
|
+
/**
|
|
52345
|
+
* The event identifier
|
|
52346
|
+
*/
|
|
52347
|
+
readonly eventId: string;
|
|
52348
|
+
/**
|
|
52349
|
+
* The session identifier
|
|
52350
|
+
*/
|
|
52351
|
+
readonly sessionId: string;
|
|
52352
|
+
/**
|
|
52353
|
+
* The time identifier
|
|
52354
|
+
*/
|
|
52355
|
+
readonly timeId: string;
|
|
52356
|
+
readonly eventSessionTimeUpdateInputs: EventSessionTimeUpdateInputs;
|
|
52357
|
+
}
|
|
52358
|
+
/**
|
|
52359
|
+
* EventsSessionsTimesApi - object-oriented interface
|
|
52360
|
+
*/
|
|
52361
|
+
export declare class EventsSessionsTimesApi extends BaseAPI {
|
|
52362
|
+
/**
|
|
52363
|
+
* Add Event Session Time Speaker endpoint
|
|
52364
|
+
* @summary Add Event Session Time Speaker
|
|
52365
|
+
* @param {EventsSessionsTimesApiAddEventSessionTimeSpeakerRequest} requestParameters Request parameters.
|
|
49598
52366
|
* @param {*} [options] Override http request option.
|
|
49599
52367
|
* @throws {RequiredError}
|
|
49600
52368
|
*/
|
|
49601
|
-
|
|
52369
|
+
addEventSessionTimeSpeaker(requestParameters: EventsSessionsTimesApiAddEventSessionTimeSpeakerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSessionTime200Response, any, {}>>;
|
|
49602
52370
|
/**
|
|
49603
|
-
*
|
|
49604
|
-
* @summary
|
|
49605
|
-
* @param {
|
|
52371
|
+
* Create Event Session Time endpoint
|
|
52372
|
+
* @summary Create Event Session Time
|
|
52373
|
+
* @param {EventsSessionsTimesApiCreateEventSessionTimeRequest} requestParameters Request parameters.
|
|
49606
52374
|
* @param {*} [options] Override http request option.
|
|
49607
52375
|
* @throws {RequiredError}
|
|
49608
52376
|
*/
|
|
49609
|
-
|
|
52377
|
+
createEventSessionTime(requestParameters: EventsSessionsTimesApiCreateEventSessionTimeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSessionTime200Response, any, {}>>;
|
|
49610
52378
|
/**
|
|
49611
|
-
*
|
|
49612
|
-
* @summary
|
|
49613
|
-
* @param {
|
|
52379
|
+
* Delete Event Session Time endpoint
|
|
52380
|
+
* @summary Delete Event Session Time
|
|
52381
|
+
* @param {EventsSessionsTimesApiDeleteEventSessionTimeRequest} requestParameters Request parameters.
|
|
49614
52382
|
* @param {*} [options] Override http request option.
|
|
49615
52383
|
* @throws {RequiredError}
|
|
49616
52384
|
*/
|
|
49617
|
-
|
|
52385
|
+
deleteEventSessionTime(requestParameters: EventsSessionsTimesApiDeleteEventSessionTimeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateAnnouncementTranslation200Response, any, {}>>;
|
|
49618
52386
|
/**
|
|
49619
|
-
* Get Event Session
|
|
49620
|
-
* @summary Get Event Session
|
|
49621
|
-
* @param {
|
|
52387
|
+
* Get Event Session Time endpoint
|
|
52388
|
+
* @summary Get Event Session Time
|
|
52389
|
+
* @param {EventsSessionsTimesApiGetEventSessionTimeRequest} requestParameters Request parameters.
|
|
49622
52390
|
* @param {*} [options] Override http request option.
|
|
49623
52391
|
* @throws {RequiredError}
|
|
49624
52392
|
*/
|
|
49625
|
-
|
|
52393
|
+
getEventSessionTime(requestParameters: EventsSessionsTimesApiGetEventSessionTimeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSessionTime200Response, any, {}>>;
|
|
49626
52394
|
/**
|
|
49627
|
-
*
|
|
49628
|
-
* @summary
|
|
49629
|
-
* @param {
|
|
52395
|
+
* Get Event Session Time Speakers endpoint
|
|
52396
|
+
* @summary Get Event Session Time Speakers
|
|
52397
|
+
* @param {EventsSessionsTimesApiGetEventSessionTimeSpeakersRequest} requestParameters Request parameters.
|
|
49630
52398
|
* @param {*} [options] Override http request option.
|
|
49631
52399
|
* @throws {RequiredError}
|
|
49632
52400
|
*/
|
|
49633
|
-
|
|
52401
|
+
getEventSessionTimeSpeakers(requestParameters: EventsSessionsTimesApiGetEventSessionTimeSpeakersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventSessionSpeakers200Response, any, {}>>;
|
|
49634
52402
|
/**
|
|
49635
|
-
*
|
|
49636
|
-
* @summary
|
|
49637
|
-
* @param {
|
|
52403
|
+
* Get Event Session Times endpoint
|
|
52404
|
+
* @summary Get Event Session Times
|
|
52405
|
+
* @param {EventsSessionsTimesApiGetEventSessionTimesRequest} requestParameters Request parameters.
|
|
49638
52406
|
* @param {*} [options] Override http request option.
|
|
49639
52407
|
* @throws {RequiredError}
|
|
49640
52408
|
*/
|
|
49641
|
-
|
|
52409
|
+
getEventSessionTimes(requestParameters: EventsSessionsTimesApiGetEventSessionTimesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventSessionTimes200Response, any, {}>>;
|
|
49642
52410
|
/**
|
|
49643
|
-
*
|
|
49644
|
-
* @summary
|
|
49645
|
-
* @param {
|
|
52411
|
+
* Remove Event Session Time Speaker endpoint
|
|
52412
|
+
* @summary Remove Event Session Time Speaker
|
|
52413
|
+
* @param {EventsSessionsTimesApiRemoveEventSessionTimeSpeakerRequest} requestParameters Request parameters.
|
|
49646
52414
|
* @param {*} [options] Override http request option.
|
|
49647
52415
|
* @throws {RequiredError}
|
|
49648
52416
|
*/
|
|
49649
|
-
|
|
52417
|
+
removeEventSessionTimeSpeaker(requestParameters: EventsSessionsTimesApiRemoveEventSessionTimeSpeakerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSessionTime200Response, any, {}>>;
|
|
49650
52418
|
/**
|
|
49651
|
-
* Update Event Session
|
|
49652
|
-
* @summary Update Event Session
|
|
49653
|
-
* @param {
|
|
52419
|
+
* Update Event Session Time endpoint
|
|
52420
|
+
* @summary Update Event Session Time
|
|
52421
|
+
* @param {EventsSessionsTimesApiUpdateEventSessionTimeRequest} requestParameters Request parameters.
|
|
49654
52422
|
* @param {*} [options] Override http request option.
|
|
49655
52423
|
* @throws {RequiredError}
|
|
49656
52424
|
*/
|
|
49657
|
-
|
|
52425
|
+
updateEventSessionTime(requestParameters: EventsSessionsTimesApiUpdateEventSessionTimeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSessionTime200Response, any, {}>>;
|
|
49658
52426
|
}
|
|
49659
52427
|
/**
|
|
49660
|
-
*
|
|
52428
|
+
* EventsSessionsTimesTranslationsApi - axios parameter creator
|
|
49661
52429
|
*/
|
|
49662
|
-
export declare const
|
|
52430
|
+
export declare const EventsSessionsTimesTranslationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
49663
52431
|
/**
|
|
49664
|
-
* Delete Event Session
|
|
49665
|
-
* @summary Delete Event Session
|
|
52432
|
+
* Delete Event Session Time Translation endpoint
|
|
52433
|
+
* @summary Delete Event Session Time Translation
|
|
49666
52434
|
* @param {string} eventId The event identifier
|
|
49667
52435
|
* @param {string} sessionId The session identifier
|
|
49668
|
-
* @param {string}
|
|
52436
|
+
* @param {string} timeId The time identifier
|
|
49669
52437
|
* @param {string} locale The locale identifier
|
|
49670
52438
|
* @param {*} [options] Override http request option.
|
|
49671
52439
|
* @throws {RequiredError}
|
|
49672
52440
|
*/
|
|
49673
|
-
|
|
52441
|
+
deleteEventSessionTimeTranslation: (eventId: string, sessionId: string, timeId: string, locale: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
49674
52442
|
/**
|
|
49675
|
-
* Get Event Session
|
|
49676
|
-
* @summary Get Event Session
|
|
52443
|
+
* Get Event Session Time Translation endpoint
|
|
52444
|
+
* @summary Get Event Session Time Translation
|
|
49677
52445
|
* @param {string} eventId The event identifier
|
|
49678
52446
|
* @param {string} sessionId The session identifier
|
|
49679
|
-
* @param {string}
|
|
52447
|
+
* @param {string} timeId The time identifier
|
|
49680
52448
|
* @param {string} locale The locale identifier
|
|
49681
52449
|
* @param {*} [options] Override http request option.
|
|
49682
52450
|
* @throws {RequiredError}
|
|
49683
52451
|
*/
|
|
49684
|
-
|
|
52452
|
+
getEventSessionTimeTranslation: (eventId: string, sessionId: string, timeId: string, locale: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
49685
52453
|
/**
|
|
49686
|
-
* Get Event Session
|
|
49687
|
-
* @summary Get Event Session
|
|
52454
|
+
* Get Event Session Time Translations endpoint
|
|
52455
|
+
* @summary Get Event Session Time Translations
|
|
49688
52456
|
* @param {string} eventId The event identifier
|
|
49689
52457
|
* @param {string} sessionId The session identifier
|
|
49690
|
-
* @param {string}
|
|
52458
|
+
* @param {string} timeId The time identifier
|
|
49691
52459
|
* @param {number} [page] Page number
|
|
49692
52460
|
* @param {number} [pageSize] Number of items per page
|
|
49693
52461
|
* @param {string} [orderBy] Field to order by
|
|
@@ -49695,52 +52463,52 @@ export declare const EventsSessionsSectionsTranslationsApiAxiosParamCreator: (co
|
|
|
49695
52463
|
* @param {*} [options] Override http request option.
|
|
49696
52464
|
* @throws {RequiredError}
|
|
49697
52465
|
*/
|
|
49698
|
-
|
|
52466
|
+
getEventSessionTimeTranslations: (eventId: string, sessionId: string, timeId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
49699
52467
|
/**
|
|
49700
|
-
* Update Event Session
|
|
49701
|
-
* @summary Update Event Session
|
|
52468
|
+
* Update Event Session Time Translation endpoint
|
|
52469
|
+
* @summary Update Event Session Time Translation
|
|
49702
52470
|
* @param {string} eventId The event identifier
|
|
49703
52471
|
* @param {string} sessionId The session identifier
|
|
49704
|
-
* @param {string}
|
|
52472
|
+
* @param {string} timeId The time identifier
|
|
49705
52473
|
* @param {string} locale The locale identifier
|
|
49706
|
-
* @param {
|
|
52474
|
+
* @param {EventSessionTimeTranslationUpdateInputs} eventSessionTimeTranslationUpdateInputs
|
|
49707
52475
|
* @param {*} [options] Override http request option.
|
|
49708
52476
|
* @throws {RequiredError}
|
|
49709
52477
|
*/
|
|
49710
|
-
|
|
52478
|
+
updateEventSessionTimeTranslation: (eventId: string, sessionId: string, timeId: string, locale: string, eventSessionTimeTranslationUpdateInputs: EventSessionTimeTranslationUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
49711
52479
|
};
|
|
49712
52480
|
/**
|
|
49713
|
-
*
|
|
52481
|
+
* EventsSessionsTimesTranslationsApi - functional programming interface
|
|
49714
52482
|
*/
|
|
49715
|
-
export declare const
|
|
52483
|
+
export declare const EventsSessionsTimesTranslationsApiFp: (configuration?: Configuration) => {
|
|
49716
52484
|
/**
|
|
49717
|
-
* Delete Event Session
|
|
49718
|
-
* @summary Delete Event Session
|
|
52485
|
+
* Delete Event Session Time Translation endpoint
|
|
52486
|
+
* @summary Delete Event Session Time Translation
|
|
49719
52487
|
* @param {string} eventId The event identifier
|
|
49720
52488
|
* @param {string} sessionId The session identifier
|
|
49721
|
-
* @param {string}
|
|
52489
|
+
* @param {string} timeId The time identifier
|
|
49722
52490
|
* @param {string} locale The locale identifier
|
|
49723
52491
|
* @param {*} [options] Override http request option.
|
|
49724
52492
|
* @throws {RequiredError}
|
|
49725
52493
|
*/
|
|
49726
|
-
|
|
52494
|
+
deleteEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>>;
|
|
49727
52495
|
/**
|
|
49728
|
-
* Get Event Session
|
|
49729
|
-
* @summary Get Event Session
|
|
52496
|
+
* Get Event Session Time Translation endpoint
|
|
52497
|
+
* @summary Get Event Session Time Translation
|
|
49730
52498
|
* @param {string} eventId The event identifier
|
|
49731
52499
|
* @param {string} sessionId The session identifier
|
|
49732
|
-
* @param {string}
|
|
52500
|
+
* @param {string} timeId The time identifier
|
|
49733
52501
|
* @param {string} locale The locale identifier
|
|
49734
52502
|
* @param {*} [options] Override http request option.
|
|
49735
52503
|
* @throws {RequiredError}
|
|
49736
52504
|
*/
|
|
49737
|
-
|
|
52505
|
+
getEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventSessionTimeTranslation200Response>>;
|
|
49738
52506
|
/**
|
|
49739
|
-
* Get Event Session
|
|
49740
|
-
* @summary Get Event Session
|
|
52507
|
+
* Get Event Session Time Translations endpoint
|
|
52508
|
+
* @summary Get Event Session Time Translations
|
|
49741
52509
|
* @param {string} eventId The event identifier
|
|
49742
52510
|
* @param {string} sessionId The session identifier
|
|
49743
|
-
* @param {string}
|
|
52511
|
+
* @param {string} timeId The time identifier
|
|
49744
52512
|
* @param {number} [page] Page number
|
|
49745
52513
|
* @param {number} [pageSize] Number of items per page
|
|
49746
52514
|
* @param {string} [orderBy] Field to order by
|
|
@@ -49748,61 +52516,61 @@ export declare const EventsSessionsSectionsTranslationsApiFp: (configuration?: C
|
|
|
49748
52516
|
* @param {*} [options] Override http request option.
|
|
49749
52517
|
* @throws {RequiredError}
|
|
49750
52518
|
*/
|
|
49751
|
-
|
|
52519
|
+
getEventSessionTimeTranslations(eventId: string, sessionId: string, timeId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventSessionTimeTranslations200Response>>;
|
|
49752
52520
|
/**
|
|
49753
|
-
* Update Event Session
|
|
49754
|
-
* @summary Update Event Session
|
|
52521
|
+
* Update Event Session Time Translation endpoint
|
|
52522
|
+
* @summary Update Event Session Time Translation
|
|
49755
52523
|
* @param {string} eventId The event identifier
|
|
49756
52524
|
* @param {string} sessionId The session identifier
|
|
49757
|
-
* @param {string}
|
|
52525
|
+
* @param {string} timeId The time identifier
|
|
49758
52526
|
* @param {string} locale The locale identifier
|
|
49759
|
-
* @param {
|
|
52527
|
+
* @param {EventSessionTimeTranslationUpdateInputs} eventSessionTimeTranslationUpdateInputs
|
|
49760
52528
|
* @param {*} [options] Override http request option.
|
|
49761
52529
|
* @throws {RequiredError}
|
|
49762
52530
|
*/
|
|
49763
|
-
|
|
52531
|
+
updateEventSessionTimeTranslation(eventId: string, sessionId: string, timeId: string, locale: string, eventSessionTimeTranslationUpdateInputs: EventSessionTimeTranslationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateAnnouncementTranslation200Response>>;
|
|
49764
52532
|
};
|
|
49765
52533
|
/**
|
|
49766
|
-
*
|
|
52534
|
+
* EventsSessionsTimesTranslationsApi - factory interface
|
|
49767
52535
|
*/
|
|
49768
|
-
export declare const
|
|
52536
|
+
export declare const EventsSessionsTimesTranslationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
49769
52537
|
/**
|
|
49770
|
-
* Delete Event Session
|
|
49771
|
-
* @summary Delete Event Session
|
|
49772
|
-
* @param {
|
|
52538
|
+
* Delete Event Session Time Translation endpoint
|
|
52539
|
+
* @summary Delete Event Session Time Translation
|
|
52540
|
+
* @param {EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest} requestParameters Request parameters.
|
|
49773
52541
|
* @param {*} [options] Override http request option.
|
|
49774
52542
|
* @throws {RequiredError}
|
|
49775
52543
|
*/
|
|
49776
|
-
|
|
52544
|
+
deleteEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response>;
|
|
49777
52545
|
/**
|
|
49778
|
-
* Get Event Session
|
|
49779
|
-
* @summary Get Event Session
|
|
49780
|
-
* @param {
|
|
52546
|
+
* Get Event Session Time Translation endpoint
|
|
52547
|
+
* @summary Get Event Session Time Translation
|
|
52548
|
+
* @param {EventsSessionsTimesTranslationsApiGetEventSessionTimeTranslationRequest} requestParameters Request parameters.
|
|
49781
52549
|
* @param {*} [options] Override http request option.
|
|
49782
52550
|
* @throws {RequiredError}
|
|
49783
52551
|
*/
|
|
49784
|
-
|
|
52552
|
+
getEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiGetEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventSessionTimeTranslation200Response>;
|
|
49785
52553
|
/**
|
|
49786
|
-
* Get Event Session
|
|
49787
|
-
* @summary Get Event Session
|
|
49788
|
-
* @param {
|
|
52554
|
+
* Get Event Session Time Translations endpoint
|
|
52555
|
+
* @summary Get Event Session Time Translations
|
|
52556
|
+
* @param {EventsSessionsTimesTranslationsApiGetEventSessionTimeTranslationsRequest} requestParameters Request parameters.
|
|
49789
52557
|
* @param {*} [options] Override http request option.
|
|
49790
52558
|
* @throws {RequiredError}
|
|
49791
52559
|
*/
|
|
49792
|
-
|
|
52560
|
+
getEventSessionTimeTranslations(requestParameters: EventsSessionsTimesTranslationsApiGetEventSessionTimeTranslationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventSessionTimeTranslations200Response>;
|
|
49793
52561
|
/**
|
|
49794
|
-
* Update Event Session
|
|
49795
|
-
* @summary Update Event Session
|
|
49796
|
-
* @param {
|
|
52562
|
+
* Update Event Session Time Translation endpoint
|
|
52563
|
+
* @summary Update Event Session Time Translation
|
|
52564
|
+
* @param {EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest} requestParameters Request parameters.
|
|
49797
52565
|
* @param {*} [options] Override http request option.
|
|
49798
52566
|
* @throws {RequiredError}
|
|
49799
52567
|
*/
|
|
49800
|
-
|
|
52568
|
+
updateEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateAnnouncementTranslation200Response>;
|
|
49801
52569
|
};
|
|
49802
52570
|
/**
|
|
49803
|
-
* Request parameters for
|
|
52571
|
+
* Request parameters for deleteEventSessionTimeTranslation operation in EventsSessionsTimesTranslationsApi.
|
|
49804
52572
|
*/
|
|
49805
|
-
export interface
|
|
52573
|
+
export interface EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest {
|
|
49806
52574
|
/**
|
|
49807
52575
|
* The event identifier
|
|
49808
52576
|
*/
|
|
@@ -49812,18 +52580,18 @@ export interface EventsSessionsSectionsTranslationsApiDeleteEventSessionSectionT
|
|
|
49812
52580
|
*/
|
|
49813
52581
|
readonly sessionId: string;
|
|
49814
52582
|
/**
|
|
49815
|
-
* The
|
|
52583
|
+
* The time identifier
|
|
49816
52584
|
*/
|
|
49817
|
-
readonly
|
|
52585
|
+
readonly timeId: string;
|
|
49818
52586
|
/**
|
|
49819
52587
|
* The locale identifier
|
|
49820
52588
|
*/
|
|
49821
52589
|
readonly locale: string;
|
|
49822
52590
|
}
|
|
49823
52591
|
/**
|
|
49824
|
-
* Request parameters for
|
|
52592
|
+
* Request parameters for getEventSessionTimeTranslation operation in EventsSessionsTimesTranslationsApi.
|
|
49825
52593
|
*/
|
|
49826
|
-
export interface
|
|
52594
|
+
export interface EventsSessionsTimesTranslationsApiGetEventSessionTimeTranslationRequest {
|
|
49827
52595
|
/**
|
|
49828
52596
|
* The event identifier
|
|
49829
52597
|
*/
|
|
@@ -49833,18 +52601,18 @@ export interface EventsSessionsSectionsTranslationsApiGetEventSessionSectionTran
|
|
|
49833
52601
|
*/
|
|
49834
52602
|
readonly sessionId: string;
|
|
49835
52603
|
/**
|
|
49836
|
-
* The
|
|
52604
|
+
* The time identifier
|
|
49837
52605
|
*/
|
|
49838
|
-
readonly
|
|
52606
|
+
readonly timeId: string;
|
|
49839
52607
|
/**
|
|
49840
52608
|
* The locale identifier
|
|
49841
52609
|
*/
|
|
49842
52610
|
readonly locale: string;
|
|
49843
52611
|
}
|
|
49844
52612
|
/**
|
|
49845
|
-
* Request parameters for
|
|
52613
|
+
* Request parameters for getEventSessionTimeTranslations operation in EventsSessionsTimesTranslationsApi.
|
|
49846
52614
|
*/
|
|
49847
|
-
export interface
|
|
52615
|
+
export interface EventsSessionsTimesTranslationsApiGetEventSessionTimeTranslationsRequest {
|
|
49848
52616
|
/**
|
|
49849
52617
|
* The event identifier
|
|
49850
52618
|
*/
|
|
@@ -49854,9 +52622,9 @@ export interface EventsSessionsSectionsTranslationsApiGetEventSessionSectionTran
|
|
|
49854
52622
|
*/
|
|
49855
52623
|
readonly sessionId: string;
|
|
49856
52624
|
/**
|
|
49857
|
-
* The
|
|
52625
|
+
* The time identifier
|
|
49858
52626
|
*/
|
|
49859
|
-
readonly
|
|
52627
|
+
readonly timeId: string;
|
|
49860
52628
|
/**
|
|
49861
52629
|
* Page number
|
|
49862
52630
|
*/
|
|
@@ -49875,9 +52643,9 @@ export interface EventsSessionsSectionsTranslationsApiGetEventSessionSectionTran
|
|
|
49875
52643
|
readonly search?: string;
|
|
49876
52644
|
}
|
|
49877
52645
|
/**
|
|
49878
|
-
* Request parameters for
|
|
52646
|
+
* Request parameters for updateEventSessionTimeTranslation operation in EventsSessionsTimesTranslationsApi.
|
|
49879
52647
|
*/
|
|
49880
|
-
export interface
|
|
52648
|
+
export interface EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest {
|
|
49881
52649
|
/**
|
|
49882
52650
|
* The event identifier
|
|
49883
52651
|
*/
|
|
@@ -49887,51 +52655,51 @@ export interface EventsSessionsSectionsTranslationsApiUpdateEventSessionSectionT
|
|
|
49887
52655
|
*/
|
|
49888
52656
|
readonly sessionId: string;
|
|
49889
52657
|
/**
|
|
49890
|
-
* The
|
|
52658
|
+
* The time identifier
|
|
49891
52659
|
*/
|
|
49892
|
-
readonly
|
|
52660
|
+
readonly timeId: string;
|
|
49893
52661
|
/**
|
|
49894
52662
|
* The locale identifier
|
|
49895
52663
|
*/
|
|
49896
52664
|
readonly locale: string;
|
|
49897
|
-
readonly
|
|
52665
|
+
readonly eventSessionTimeTranslationUpdateInputs: EventSessionTimeTranslationUpdateInputs;
|
|
49898
52666
|
}
|
|
49899
52667
|
/**
|
|
49900
|
-
*
|
|
52668
|
+
* EventsSessionsTimesTranslationsApi - object-oriented interface
|
|
49901
52669
|
*/
|
|
49902
|
-
export declare class
|
|
52670
|
+
export declare class EventsSessionsTimesTranslationsApi extends BaseAPI {
|
|
49903
52671
|
/**
|
|
49904
|
-
* Delete Event Session
|
|
49905
|
-
* @summary Delete Event Session
|
|
49906
|
-
* @param {
|
|
52672
|
+
* Delete Event Session Time Translation endpoint
|
|
52673
|
+
* @summary Delete Event Session Time Translation
|
|
52674
|
+
* @param {EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest} requestParameters Request parameters.
|
|
49907
52675
|
* @param {*} [options] Override http request option.
|
|
49908
52676
|
* @throws {RequiredError}
|
|
49909
52677
|
*/
|
|
49910
|
-
|
|
52678
|
+
deleteEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiDeleteEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateAnnouncementTranslation200Response, any, {}>>;
|
|
49911
52679
|
/**
|
|
49912
|
-
* Get Event Session
|
|
49913
|
-
* @summary Get Event Session
|
|
49914
|
-
* @param {
|
|
52680
|
+
* Get Event Session Time Translation endpoint
|
|
52681
|
+
* @summary Get Event Session Time Translation
|
|
52682
|
+
* @param {EventsSessionsTimesTranslationsApiGetEventSessionTimeTranslationRequest} requestParameters Request parameters.
|
|
49915
52683
|
* @param {*} [options] Override http request option.
|
|
49916
52684
|
* @throws {RequiredError}
|
|
49917
52685
|
*/
|
|
49918
|
-
|
|
52686
|
+
getEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiGetEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventSessionTimeTranslation200Response, any, {}>>;
|
|
49919
52687
|
/**
|
|
49920
|
-
* Get Event Session
|
|
49921
|
-
* @summary Get Event Session
|
|
49922
|
-
* @param {
|
|
52688
|
+
* Get Event Session Time Translations endpoint
|
|
52689
|
+
* @summary Get Event Session Time Translations
|
|
52690
|
+
* @param {EventsSessionsTimesTranslationsApiGetEventSessionTimeTranslationsRequest} requestParameters Request parameters.
|
|
49923
52691
|
* @param {*} [options] Override http request option.
|
|
49924
52692
|
* @throws {RequiredError}
|
|
49925
52693
|
*/
|
|
49926
|
-
|
|
52694
|
+
getEventSessionTimeTranslations(requestParameters: EventsSessionsTimesTranslationsApiGetEventSessionTimeTranslationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventSessionTimeTranslations200Response, any, {}>>;
|
|
49927
52695
|
/**
|
|
49928
|
-
* Update Event Session
|
|
49929
|
-
* @summary Update Event Session
|
|
49930
|
-
* @param {
|
|
52696
|
+
* Update Event Session Time Translation endpoint
|
|
52697
|
+
* @summary Update Event Session Time Translation
|
|
52698
|
+
* @param {EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest} requestParameters Request parameters.
|
|
49931
52699
|
* @param {*} [options] Override http request option.
|
|
49932
52700
|
* @throws {RequiredError}
|
|
49933
52701
|
*/
|
|
49934
|
-
|
|
52702
|
+
updateEventSessionTimeTranslation(requestParameters: EventsSessionsTimesTranslationsApiUpdateEventSessionTimeTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateAnnouncementTranslation200Response, any, {}>>;
|
|
49935
52703
|
}
|
|
49936
52704
|
/**
|
|
49937
52705
|
* EventsSessionsTranslationsApi - axios parameter creator
|
|
@@ -64774,6 +67542,14 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
64774
67542
|
* @throws {RequiredError}
|
|
64775
67543
|
*/
|
|
64776
67544
|
deleteCustomReport: (reportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67545
|
+
/**
|
|
67546
|
+
* Export Custom Report endpoint
|
|
67547
|
+
* @summary Export Custom Report
|
|
67548
|
+
* @param {string} reportId The report identifier
|
|
67549
|
+
* @param {*} [options] Override http request option.
|
|
67550
|
+
* @throws {RequiredError}
|
|
67551
|
+
*/
|
|
67552
|
+
exportCustomReport: (reportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
64777
67553
|
/**
|
|
64778
67554
|
* Get Custom Report endpoint
|
|
64779
67555
|
* @summary Get Custom Report
|
|
@@ -64842,6 +67618,14 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
|
64842
67618
|
* @throws {RequiredError}
|
|
64843
67619
|
*/
|
|
64844
67620
|
deleteCustomReport(reportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
67621
|
+
/**
|
|
67622
|
+
* Export Custom Report endpoint
|
|
67623
|
+
* @summary Export Custom Report
|
|
67624
|
+
* @param {string} reportId The report identifier
|
|
67625
|
+
* @param {*} [options] Override http request option.
|
|
67626
|
+
* @throws {RequiredError}
|
|
67627
|
+
*/
|
|
67628
|
+
exportCustomReport(reportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
64845
67629
|
/**
|
|
64846
67630
|
* Get Custom Report endpoint
|
|
64847
67631
|
* @summary Get Custom Report
|
|
@@ -64909,6 +67693,14 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
|
64909
67693
|
* @throws {RequiredError}
|
|
64910
67694
|
*/
|
|
64911
67695
|
deleteCustomReport(requestParameters: ReportsApiDeleteCustomReportRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
67696
|
+
/**
|
|
67697
|
+
* Export Custom Report endpoint
|
|
67698
|
+
* @summary Export Custom Report
|
|
67699
|
+
* @param {ReportsApiExportCustomReportRequest} requestParameters Request parameters.
|
|
67700
|
+
* @param {*} [options] Override http request option.
|
|
67701
|
+
* @throws {RequiredError}
|
|
67702
|
+
*/
|
|
67703
|
+
exportCustomReport(requestParameters: ReportsApiExportCustomReportRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
64912
67704
|
/**
|
|
64913
67705
|
* Get Custom Report endpoint
|
|
64914
67706
|
* @summary Get Custom Report
|
|
@@ -64969,6 +67761,15 @@ export interface ReportsApiDeleteCustomReportRequest {
|
|
|
64969
67761
|
*/
|
|
64970
67762
|
readonly reportId: string;
|
|
64971
67763
|
}
|
|
67764
|
+
/**
|
|
67765
|
+
* Request parameters for exportCustomReport operation in ReportsApi.
|
|
67766
|
+
*/
|
|
67767
|
+
export interface ReportsApiExportCustomReportRequest {
|
|
67768
|
+
/**
|
|
67769
|
+
* The report identifier
|
|
67770
|
+
*/
|
|
67771
|
+
readonly reportId: string;
|
|
67772
|
+
}
|
|
64972
67773
|
/**
|
|
64973
67774
|
* Request parameters for getCustomReport operation in ReportsApi.
|
|
64974
67775
|
*/
|
|
@@ -65058,6 +67859,14 @@ export declare class ReportsApi extends BaseAPI {
|
|
|
65058
67859
|
* @throws {RequiredError}
|
|
65059
67860
|
*/
|
|
65060
67861
|
deleteCustomReport(requestParameters: ReportsApiDeleteCustomReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
67862
|
+
/**
|
|
67863
|
+
* Export Custom Report endpoint
|
|
67864
|
+
* @summary Export Custom Report
|
|
67865
|
+
* @param {ReportsApiExportCustomReportRequest} requestParameters Request parameters.
|
|
67866
|
+
* @param {*} [options] Override http request option.
|
|
67867
|
+
* @throws {RequiredError}
|
|
67868
|
+
*/
|
|
67869
|
+
exportCustomReport(requestParameters: ReportsApiExportCustomReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
65061
67870
|
/**
|
|
65062
67871
|
* Get Custom Report endpoint
|
|
65063
67872
|
* @summary Get Custom Report
|
|
@@ -71904,6 +74713,7 @@ export declare const SurveysApiAxiosParamCreator: (configuration?: Configuration
|
|
|
71904
74713
|
* @summary Get Surveys
|
|
71905
74714
|
* @param {string} [eventId] Filter by eventId
|
|
71906
74715
|
* @param {string} [sessionId] Filter by sessionId
|
|
74716
|
+
* @param {SurveyStatus} [status] Filter by status
|
|
71907
74717
|
* @param {number} [page] Page number
|
|
71908
74718
|
* @param {number} [pageSize] Number of items per page
|
|
71909
74719
|
* @param {string} [orderBy] Field to order by
|
|
@@ -71911,7 +74721,7 @@ export declare const SurveysApiAxiosParamCreator: (configuration?: Configuration
|
|
|
71911
74721
|
* @param {*} [options] Override http request option.
|
|
71912
74722
|
* @throws {RequiredError}
|
|
71913
74723
|
*/
|
|
71914
|
-
getSurveys: (eventId?: string, sessionId?: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74724
|
+
getSurveys: (eventId?: string, sessionId?: string, status?: SurveyStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
71915
74725
|
/**
|
|
71916
74726
|
* Update Survey endpoint
|
|
71917
74727
|
* @summary Update Survey
|
|
@@ -71967,6 +74777,7 @@ export declare const SurveysApiFp: (configuration?: Configuration) => {
|
|
|
71967
74777
|
* @summary Get Surveys
|
|
71968
74778
|
* @param {string} [eventId] Filter by eventId
|
|
71969
74779
|
* @param {string} [sessionId] Filter by sessionId
|
|
74780
|
+
* @param {SurveyStatus} [status] Filter by status
|
|
71970
74781
|
* @param {number} [page] Page number
|
|
71971
74782
|
* @param {number} [pageSize] Number of items per page
|
|
71972
74783
|
* @param {string} [orderBy] Field to order by
|
|
@@ -71974,7 +74785,7 @@ export declare const SurveysApiFp: (configuration?: Configuration) => {
|
|
|
71974
74785
|
* @param {*} [options] Override http request option.
|
|
71975
74786
|
* @throws {RequiredError}
|
|
71976
74787
|
*/
|
|
71977
|
-
getSurveys(eventId?: string, sessionId?: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSurveys200Response>>;
|
|
74788
|
+
getSurveys(eventId?: string, sessionId?: string, status?: SurveyStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSurveys200Response>>;
|
|
71978
74789
|
/**
|
|
71979
74790
|
* Update Survey endpoint
|
|
71980
74791
|
* @summary Update Survey
|
|
@@ -72099,6 +74910,10 @@ export interface SurveysApiGetSurveysRequest {
|
|
|
72099
74910
|
* Filter by sessionId
|
|
72100
74911
|
*/
|
|
72101
74912
|
readonly sessionId?: string;
|
|
74913
|
+
/**
|
|
74914
|
+
* Filter by status
|
|
74915
|
+
*/
|
|
74916
|
+
readonly status?: SurveyStatus;
|
|
72102
74917
|
/**
|
|
72103
74918
|
* Page number
|
|
72104
74919
|
*/
|