@connectedxm/admin-sdk 6.20.0 → 6.23.7

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