@connectedxm/admin 6.21.2 → 6.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/openapi.json CHANGED
@@ -112,6 +112,22 @@
112
112
  "name": "Bookings::Places::Translations",
113
113
  "description": "Operations for bookings::places::translations"
114
114
  },
115
+ {
116
+ "name": "Bookings::Questions",
117
+ "description": "Operations for bookings::questions"
118
+ },
119
+ {
120
+ "name": "Bookings::Questions::Choices",
121
+ "description": "Operations for bookings::questions::choices"
122
+ },
123
+ {
124
+ "name": "Bookings::Questions::Choices::Translations",
125
+ "description": "Operations for bookings::questions::choices::translations"
126
+ },
127
+ {
128
+ "name": "Bookings::Questions::Translations",
129
+ "description": "Operations for bookings::questions::translations"
130
+ },
115
131
  {
116
132
  "name": "Bookings::Spaces",
117
133
  "description": "Create specific, individual areas within a larger place that attendees can reserve for time-slots, such as meeting rooms, booths, or photo-op locations"
@@ -9429,88 +9445,11 @@
9429
9445
  ]
9430
9446
  }
9431
9447
  },
9432
- "/bookings/places/{placeId}/spaces/{spaceId}/slots": {
9448
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions": {
9433
9449
  "get": {
9434
- "operationId": "GetBookingSpaceSlots",
9435
- "summary": "Get Booking Space Slots",
9436
- "description": "Get Booking Space Slots endpoint",
9437
- "parameters": [
9438
- {
9439
- "in": "path",
9440
- "name": "placeId",
9441
- "schema": {
9442
- "type": "string"
9443
- },
9444
- "description": "The place identifier",
9445
- "required": true
9446
- },
9447
- {
9448
- "in": "path",
9449
- "name": "spaceId",
9450
- "schema": {
9451
- "type": "string"
9452
- },
9453
- "description": "The space identifier",
9454
- "required": true
9455
- },
9456
- {
9457
- "in": "query",
9458
- "name": "firstDayOfMonth",
9459
- "schema": {
9460
- "type": "string"
9461
- },
9462
- "description": "Filter by firstDayOfMonth",
9463
- "required": true
9464
- }
9465
- ],
9466
- "responses": {
9467
- "200": {
9468
- "description": "Successful response",
9469
- "content": {
9470
- "application/json": {
9471
- "schema": {
9472
- "type": "object",
9473
- "properties": {
9474
- "status": {
9475
- "type": "string",
9476
- "enum": [
9477
- "ok"
9478
- ]
9479
- },
9480
- "message": {
9481
- "type": "string",
9482
- "example": "Success message."
9483
- },
9484
- "data": {
9485
- "type": "array",
9486
- "items": {
9487
- "type": "array",
9488
- "items": {
9489
- "type": "object"
9490
- }
9491
- }
9492
- }
9493
- },
9494
- "required": [
9495
- "status",
9496
- "message",
9497
- "data"
9498
- ]
9499
- }
9500
- }
9501
- }
9502
- }
9503
- },
9504
- "tags": [
9505
- "Bookings"
9506
- ]
9507
- }
9508
- },
9509
- "/bookings/places/{placeId}/spaces/{spaceId}/translations": {
9510
- "get": {
9511
- "operationId": "GetBookingSpaceTranslations",
9512
- "summary": "Get Booking Space Translations",
9513
- "description": "Get Booking Space Translations endpoint",
9450
+ "operationId": "GetBookingSpaceQuestions",
9451
+ "summary": "Get Booking Space Questions",
9452
+ "description": "Get Booking Space Questions endpoint",
9514
9453
  "parameters": [
9515
9454
  {
9516
9455
  "in": "path",
@@ -9593,7 +9532,7 @@
9593
9532
  "data": {
9594
9533
  "type": "array",
9595
9534
  "items": {
9596
- "$ref": "#/components/schemas/BookingSpaceTranslation"
9535
+ "$ref": "#/components/schemas/BookingSpaceQuestion"
9597
9536
  }
9598
9537
  },
9599
9538
  "count": {
@@ -9612,15 +9551,13 @@
9612
9551
  }
9613
9552
  },
9614
9553
  "tags": [
9615
- "Bookings"
9554
+ "Bookings::Questions"
9616
9555
  ]
9617
- }
9618
- },
9619
- "/bookings/places/{placeId}/spaces/{spaceId}/translations/{locale}": {
9620
- "get": {
9621
- "operationId": "GetBookingSpaceTranslation",
9622
- "summary": "Get Booking Space Translation",
9623
- "description": "Get Booking Space Translation endpoint",
9556
+ },
9557
+ "post": {
9558
+ "operationId": "CreateBookingSpaceQuestion",
9559
+ "summary": "Create Booking Space Question",
9560
+ "description": "Create Booking Space Question endpoint",
9624
9561
  "parameters": [
9625
9562
  {
9626
9563
  "in": "path",
@@ -9639,17 +9576,18 @@
9639
9576
  },
9640
9577
  "description": "The space identifier",
9641
9578
  "required": true
9642
- },
9643
- {
9644
- "in": "path",
9645
- "name": "locale",
9646
- "schema": {
9647
- "type": "string"
9648
- },
9649
- "description": "The locale identifier",
9650
- "required": true
9651
9579
  }
9652
9580
  ],
9581
+ "requestBody": {
9582
+ "required": true,
9583
+ "content": {
9584
+ "application/json": {
9585
+ "schema": {
9586
+ "$ref": "#/components/schemas/BookingSpaceQuestionCreateInputs"
9587
+ }
9588
+ }
9589
+ }
9590
+ },
9653
9591
  "responses": {
9654
9592
  "200": {
9655
9593
  "description": "Successful response",
@@ -9669,12 +9607,7 @@
9669
9607
  "example": "Success message."
9670
9608
  },
9671
9609
  "data": {
9672
- "allOf": [
9673
- {
9674
- "$ref": "#/components/schemas/BookingSpaceTranslation"
9675
- }
9676
- ],
9677
- "nullable": true
9610
+ "$ref": "#/components/schemas/BookingSpaceQuestion"
9678
9611
  }
9679
9612
  },
9680
9613
  "required": [
@@ -9688,13 +9621,15 @@
9688
9621
  }
9689
9622
  },
9690
9623
  "tags": [
9691
- "Bookings"
9624
+ "Bookings::Questions"
9692
9625
  ]
9693
- },
9626
+ }
9627
+ },
9628
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/reorder": {
9694
9629
  "put": {
9695
- "operationId": "UpdateBookingSpaceTranslation",
9696
- "summary": "Update Booking Space Translation",
9697
- "description": "Update Booking Space Translation endpoint",
9630
+ "operationId": "ReorderBookingSpaceQuestions",
9631
+ "summary": "Reorder Booking Space Questions",
9632
+ "description": "Reorder Booking Space Questions endpoint",
9698
9633
  "parameters": [
9699
9634
  {
9700
9635
  "in": "path",
@@ -9715,25 +9650,18 @@
9715
9650
  "required": true
9716
9651
  },
9717
9652
  {
9718
- "in": "path",
9719
- "name": "locale",
9653
+ "in": "query",
9654
+ "name": "questionsIds",
9720
9655
  "schema": {
9721
- "type": "string"
9656
+ "type": "array",
9657
+ "items": {
9658
+ "type": "string"
9659
+ }
9722
9660
  },
9723
- "description": "The locale identifier",
9661
+ "description": "Filter by questionsIds",
9724
9662
  "required": true
9725
9663
  }
9726
9664
  ],
9727
- "requestBody": {
9728
- "required": true,
9729
- "content": {
9730
- "application/json": {
9731
- "schema": {
9732
- "$ref": "#/components/schemas/BookingSpaceTranslationUpdateInputs"
9733
- }
9734
- }
9735
- }
9736
- },
9737
9665
  "responses": {
9738
9666
  "200": {
9739
9667
  "description": "Successful response",
@@ -9753,7 +9681,10 @@
9753
9681
  "example": "Success message."
9754
9682
  },
9755
9683
  "data": {
9756
- "type": "object"
9684
+ "type": "array",
9685
+ "items": {
9686
+ "$ref": "#/components/schemas/BookingSpaceQuestion"
9687
+ }
9757
9688
  }
9758
9689
  },
9759
9690
  "required": [
@@ -9767,13 +9698,15 @@
9767
9698
  }
9768
9699
  },
9769
9700
  "tags": [
9770
- "Bookings::Spaces::Translations"
9701
+ "Bookings::Questions"
9771
9702
  ]
9772
- },
9773
- "delete": {
9774
- "operationId": "DeleteBookingSpaceTranslation",
9775
- "summary": "Delete Booking Space Translation",
9776
- "description": "Delete Booking Space Translation endpoint",
9703
+ }
9704
+ },
9705
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}": {
9706
+ "get": {
9707
+ "operationId": "GetBookingSpaceQuestion",
9708
+ "summary": "Get Booking Space Question",
9709
+ "description": "Get Booking Space Question endpoint",
9777
9710
  "parameters": [
9778
9711
  {
9779
9712
  "in": "path",
@@ -9795,11 +9728,11 @@
9795
9728
  },
9796
9729
  {
9797
9730
  "in": "path",
9798
- "name": "locale",
9731
+ "name": "questionId",
9799
9732
  "schema": {
9800
9733
  "type": "string"
9801
9734
  },
9802
- "description": "The locale identifier",
9735
+ "description": "The question identifier",
9803
9736
  "required": true
9804
9737
  }
9805
9738
  ],
@@ -9822,7 +9755,7 @@
9822
9755
  "example": "Success message."
9823
9756
  },
9824
9757
  "data": {
9825
- "type": "object"
9758
+ "$ref": "#/components/schemas/BookingSpaceQuestion"
9826
9759
  }
9827
9760
  },
9828
9761
  "required": [
@@ -9836,15 +9769,13 @@
9836
9769
  }
9837
9770
  },
9838
9771
  "tags": [
9839
- "Bookings::Spaces::Translations"
9772
+ "Bookings::Questions"
9840
9773
  ]
9841
- }
9842
- },
9843
- "/bookings/places/{placeId}/translations": {
9844
- "get": {
9845
- "operationId": "GetBookingPlaceTranslations",
9846
- "summary": "Get Booking Place Translations",
9847
- "description": "Get Booking Place Translations endpoint",
9774
+ },
9775
+ "put": {
9776
+ "operationId": "UpdateBookingSpaceQuestion",
9777
+ "summary": "Update Booking Space Question",
9778
+ "description": "Update Booking Space Question endpoint",
9848
9779
  "parameters": [
9849
9780
  {
9850
9781
  "in": "path",
@@ -9856,47 +9787,34 @@
9856
9787
  "required": true
9857
9788
  },
9858
9789
  {
9859
- "in": "query",
9860
- "name": "page",
9861
- "schema": {
9862
- "type": "integer",
9863
- "minimum": 1,
9864
- "default": 1
9865
- },
9866
- "description": "Page number",
9867
- "required": false
9868
- },
9869
- {
9870
- "in": "query",
9871
- "name": "pageSize",
9872
- "schema": {
9873
- "type": "integer",
9874
- "minimum": 1,
9875
- "maximum": 100,
9876
- "default": 25
9877
- },
9878
- "description": "Number of items per page",
9879
- "required": false
9880
- },
9881
- {
9882
- "in": "query",
9883
- "name": "orderBy",
9790
+ "in": "path",
9791
+ "name": "spaceId",
9884
9792
  "schema": {
9885
9793
  "type": "string"
9886
9794
  },
9887
- "description": "Field to order by",
9888
- "required": false
9795
+ "description": "The space identifier",
9796
+ "required": true
9889
9797
  },
9890
9798
  {
9891
- "in": "query",
9892
- "name": "search",
9799
+ "in": "path",
9800
+ "name": "questionId",
9893
9801
  "schema": {
9894
9802
  "type": "string"
9895
9803
  },
9896
- "description": "Search query",
9897
- "required": false
9804
+ "description": "The question identifier",
9805
+ "required": true
9898
9806
  }
9899
9807
  ],
9808
+ "requestBody": {
9809
+ "required": true,
9810
+ "content": {
9811
+ "application/json": {
9812
+ "schema": {
9813
+ "$ref": "#/components/schemas/BookingSpaceQuestionUpdateInputs"
9814
+ }
9815
+ }
9816
+ }
9817
+ },
9900
9818
  "responses": {
9901
9819
  "200": {
9902
9820
  "description": "Successful response",
@@ -9916,14 +9834,7 @@
9916
9834
  "example": "Success message."
9917
9835
  },
9918
9836
  "data": {
9919
- "type": "array",
9920
- "items": {
9921
- "$ref": "#/components/schemas/BookingPlaceTranslation"
9922
- }
9923
- },
9924
- "count": {
9925
- "type": "integer",
9926
- "example": 100
9837
+ "$ref": "#/components/schemas/BookingSpaceQuestion"
9927
9838
  }
9928
9839
  },
9929
9840
  "required": [
@@ -9937,15 +9848,13 @@
9937
9848
  }
9938
9849
  },
9939
9850
  "tags": [
9940
- "Bookings"
9851
+ "Bookings::Questions"
9941
9852
  ]
9942
- }
9943
- },
9944
- "/bookings/places/{placeId}/translations/{locale}": {
9945
- "get": {
9946
- "operationId": "GetBookingPlaceTranslation",
9947
- "summary": "Get Booking Place Translation",
9948
- "description": "Get Booking Place Translation endpoint",
9853
+ },
9854
+ "delete": {
9855
+ "operationId": "DeleteBookingSpaceQuestion",
9856
+ "summary": "Delete Booking Space Question",
9857
+ "description": "Delete Booking Space Question endpoint",
9949
9858
  "parameters": [
9950
9859
  {
9951
9860
  "in": "path",
@@ -9958,11 +9867,1960 @@
9958
9867
  },
9959
9868
  {
9960
9869
  "in": "path",
9961
- "name": "locale",
9870
+ "name": "spaceId",
9962
9871
  "schema": {
9963
9872
  "type": "string"
9964
9873
  },
9965
- "description": "The locale identifier",
9874
+ "description": "The space identifier",
9875
+ "required": true
9876
+ },
9877
+ {
9878
+ "in": "path",
9879
+ "name": "questionId",
9880
+ "schema": {
9881
+ "type": "string"
9882
+ },
9883
+ "description": "The question identifier",
9884
+ "required": true
9885
+ }
9886
+ ],
9887
+ "responses": {
9888
+ "200": {
9889
+ "description": "Successful response",
9890
+ "content": {
9891
+ "application/json": {
9892
+ "schema": {
9893
+ "type": "object",
9894
+ "properties": {
9895
+ "status": {
9896
+ "type": "string",
9897
+ "enum": [
9898
+ "ok"
9899
+ ]
9900
+ },
9901
+ "message": {
9902
+ "type": "string",
9903
+ "example": "Success message."
9904
+ },
9905
+ "data": {
9906
+ "nullable": true
9907
+ }
9908
+ },
9909
+ "required": [
9910
+ "status",
9911
+ "message",
9912
+ "data"
9913
+ ]
9914
+ }
9915
+ }
9916
+ }
9917
+ }
9918
+ },
9919
+ "tags": [
9920
+ "Bookings::Questions"
9921
+ ]
9922
+ }
9923
+ },
9924
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/choices": {
9925
+ "get": {
9926
+ "operationId": "GetBookingSpaceQuestionChoices",
9927
+ "summary": "Get Booking Space Question Choices",
9928
+ "description": "Get Booking Space Question Choices endpoint",
9929
+ "parameters": [
9930
+ {
9931
+ "in": "path",
9932
+ "name": "placeId",
9933
+ "schema": {
9934
+ "type": "string"
9935
+ },
9936
+ "description": "The place identifier",
9937
+ "required": true
9938
+ },
9939
+ {
9940
+ "in": "path",
9941
+ "name": "spaceId",
9942
+ "schema": {
9943
+ "type": "string"
9944
+ },
9945
+ "description": "The space identifier",
9946
+ "required": true
9947
+ },
9948
+ {
9949
+ "in": "path",
9950
+ "name": "questionId",
9951
+ "schema": {
9952
+ "type": "string"
9953
+ },
9954
+ "description": "The question identifier",
9955
+ "required": true
9956
+ },
9957
+ {
9958
+ "in": "query",
9959
+ "name": "page",
9960
+ "schema": {
9961
+ "type": "integer",
9962
+ "minimum": 1,
9963
+ "default": 1
9964
+ },
9965
+ "description": "Page number",
9966
+ "required": false
9967
+ },
9968
+ {
9969
+ "in": "query",
9970
+ "name": "pageSize",
9971
+ "schema": {
9972
+ "type": "integer",
9973
+ "minimum": 1,
9974
+ "maximum": 100,
9975
+ "default": 25
9976
+ },
9977
+ "description": "Number of items per page",
9978
+ "required": false
9979
+ },
9980
+ {
9981
+ "in": "query",
9982
+ "name": "orderBy",
9983
+ "schema": {
9984
+ "type": "string"
9985
+ },
9986
+ "description": "Field to order by",
9987
+ "required": false
9988
+ },
9989
+ {
9990
+ "in": "query",
9991
+ "name": "search",
9992
+ "schema": {
9993
+ "type": "string"
9994
+ },
9995
+ "description": "Search query",
9996
+ "required": false
9997
+ }
9998
+ ],
9999
+ "responses": {
10000
+ "200": {
10001
+ "description": "Successful response",
10002
+ "content": {
10003
+ "application/json": {
10004
+ "schema": {
10005
+ "type": "object",
10006
+ "properties": {
10007
+ "status": {
10008
+ "type": "string",
10009
+ "enum": [
10010
+ "ok"
10011
+ ]
10012
+ },
10013
+ "message": {
10014
+ "type": "string",
10015
+ "example": "Success message."
10016
+ },
10017
+ "data": {
10018
+ "type": "array",
10019
+ "items": {
10020
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoice"
10021
+ }
10022
+ },
10023
+ "count": {
10024
+ "type": "integer",
10025
+ "example": 100
10026
+ }
10027
+ },
10028
+ "required": [
10029
+ "status",
10030
+ "message",
10031
+ "data"
10032
+ ]
10033
+ }
10034
+ }
10035
+ }
10036
+ }
10037
+ },
10038
+ "tags": [
10039
+ "Bookings::Questions::Choices"
10040
+ ]
10041
+ },
10042
+ "post": {
10043
+ "operationId": "CreateBookingSpaceQuestionChoice",
10044
+ "summary": "Create Booking Space Question Choice",
10045
+ "description": "Create Booking Space Question Choice endpoint",
10046
+ "parameters": [
10047
+ {
10048
+ "in": "path",
10049
+ "name": "placeId",
10050
+ "schema": {
10051
+ "type": "string"
10052
+ },
10053
+ "description": "The place identifier",
10054
+ "required": true
10055
+ },
10056
+ {
10057
+ "in": "path",
10058
+ "name": "spaceId",
10059
+ "schema": {
10060
+ "type": "string"
10061
+ },
10062
+ "description": "The space identifier",
10063
+ "required": true
10064
+ },
10065
+ {
10066
+ "in": "path",
10067
+ "name": "questionId",
10068
+ "schema": {
10069
+ "type": "string"
10070
+ },
10071
+ "description": "The question identifier",
10072
+ "required": true
10073
+ }
10074
+ ],
10075
+ "requestBody": {
10076
+ "required": true,
10077
+ "content": {
10078
+ "application/json": {
10079
+ "schema": {
10080
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoiceCreateInputs"
10081
+ }
10082
+ }
10083
+ }
10084
+ },
10085
+ "responses": {
10086
+ "200": {
10087
+ "description": "Successful response",
10088
+ "content": {
10089
+ "application/json": {
10090
+ "schema": {
10091
+ "type": "object",
10092
+ "properties": {
10093
+ "status": {
10094
+ "type": "string",
10095
+ "enum": [
10096
+ "ok"
10097
+ ]
10098
+ },
10099
+ "message": {
10100
+ "type": "string",
10101
+ "example": "Success message."
10102
+ },
10103
+ "data": {
10104
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoice"
10105
+ }
10106
+ },
10107
+ "required": [
10108
+ "status",
10109
+ "message",
10110
+ "data"
10111
+ ]
10112
+ }
10113
+ }
10114
+ }
10115
+ }
10116
+ },
10117
+ "tags": [
10118
+ "Bookings::Questions::Choices"
10119
+ ]
10120
+ }
10121
+ },
10122
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/choices/reorder": {
10123
+ "put": {
10124
+ "operationId": "ReorderBookingSpaceQuestionChoices",
10125
+ "summary": "Reorder Booking Space Question Choices",
10126
+ "description": "Reorder Booking Space Question Choices endpoint",
10127
+ "parameters": [
10128
+ {
10129
+ "in": "path",
10130
+ "name": "placeId",
10131
+ "schema": {
10132
+ "type": "string"
10133
+ },
10134
+ "description": "The place identifier",
10135
+ "required": true
10136
+ },
10137
+ {
10138
+ "in": "path",
10139
+ "name": "spaceId",
10140
+ "schema": {
10141
+ "type": "string"
10142
+ },
10143
+ "description": "The space identifier",
10144
+ "required": true
10145
+ },
10146
+ {
10147
+ "in": "path",
10148
+ "name": "questionId",
10149
+ "schema": {
10150
+ "type": "string"
10151
+ },
10152
+ "description": "The question identifier",
10153
+ "required": true
10154
+ },
10155
+ {
10156
+ "in": "query",
10157
+ "name": "choicesIds",
10158
+ "schema": {
10159
+ "type": "array",
10160
+ "items": {
10161
+ "type": "string"
10162
+ }
10163
+ },
10164
+ "description": "Filter by choicesIds",
10165
+ "required": true
10166
+ }
10167
+ ],
10168
+ "responses": {
10169
+ "200": {
10170
+ "description": "Successful response",
10171
+ "content": {
10172
+ "application/json": {
10173
+ "schema": {
10174
+ "type": "object",
10175
+ "properties": {
10176
+ "status": {
10177
+ "type": "string",
10178
+ "enum": [
10179
+ "ok"
10180
+ ]
10181
+ },
10182
+ "message": {
10183
+ "type": "string",
10184
+ "example": "Success message."
10185
+ },
10186
+ "data": {
10187
+ "type": "array",
10188
+ "items": {
10189
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoice"
10190
+ }
10191
+ }
10192
+ },
10193
+ "required": [
10194
+ "status",
10195
+ "message",
10196
+ "data"
10197
+ ]
10198
+ }
10199
+ }
10200
+ }
10201
+ }
10202
+ },
10203
+ "tags": [
10204
+ "Bookings::Questions::Choices"
10205
+ ]
10206
+ }
10207
+ },
10208
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/choices/{choiceId}": {
10209
+ "get": {
10210
+ "operationId": "GetBookingSpaceQuestionChoice",
10211
+ "summary": "Get Booking Space Question Choice",
10212
+ "description": "Get Booking Space Question Choice endpoint",
10213
+ "parameters": [
10214
+ {
10215
+ "in": "path",
10216
+ "name": "placeId",
10217
+ "schema": {
10218
+ "type": "string"
10219
+ },
10220
+ "description": "The place identifier",
10221
+ "required": true
10222
+ },
10223
+ {
10224
+ "in": "path",
10225
+ "name": "spaceId",
10226
+ "schema": {
10227
+ "type": "string"
10228
+ },
10229
+ "description": "The space identifier",
10230
+ "required": true
10231
+ },
10232
+ {
10233
+ "in": "path",
10234
+ "name": "questionId",
10235
+ "schema": {
10236
+ "type": "string"
10237
+ },
10238
+ "description": "The question identifier",
10239
+ "required": true
10240
+ },
10241
+ {
10242
+ "in": "path",
10243
+ "name": "choiceId",
10244
+ "schema": {
10245
+ "type": "string"
10246
+ },
10247
+ "description": "The choice identifier",
10248
+ "required": true
10249
+ }
10250
+ ],
10251
+ "responses": {
10252
+ "200": {
10253
+ "description": "Successful response",
10254
+ "content": {
10255
+ "application/json": {
10256
+ "schema": {
10257
+ "type": "object",
10258
+ "properties": {
10259
+ "status": {
10260
+ "type": "string",
10261
+ "enum": [
10262
+ "ok"
10263
+ ]
10264
+ },
10265
+ "message": {
10266
+ "type": "string",
10267
+ "example": "Success message."
10268
+ },
10269
+ "data": {
10270
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoice"
10271
+ }
10272
+ },
10273
+ "required": [
10274
+ "status",
10275
+ "message",
10276
+ "data"
10277
+ ]
10278
+ }
10279
+ }
10280
+ }
10281
+ }
10282
+ },
10283
+ "tags": [
10284
+ "Bookings::Questions::Choices"
10285
+ ]
10286
+ },
10287
+ "put": {
10288
+ "operationId": "UpdateBookingSpaceQuestionChoice",
10289
+ "summary": "Update Booking Space Question Choice",
10290
+ "description": "Update Booking Space Question Choice endpoint",
10291
+ "parameters": [
10292
+ {
10293
+ "in": "path",
10294
+ "name": "placeId",
10295
+ "schema": {
10296
+ "type": "string"
10297
+ },
10298
+ "description": "The place identifier",
10299
+ "required": true
10300
+ },
10301
+ {
10302
+ "in": "path",
10303
+ "name": "spaceId",
10304
+ "schema": {
10305
+ "type": "string"
10306
+ },
10307
+ "description": "The space identifier",
10308
+ "required": true
10309
+ },
10310
+ {
10311
+ "in": "path",
10312
+ "name": "questionId",
10313
+ "schema": {
10314
+ "type": "string"
10315
+ },
10316
+ "description": "The question identifier",
10317
+ "required": true
10318
+ },
10319
+ {
10320
+ "in": "path",
10321
+ "name": "choiceId",
10322
+ "schema": {
10323
+ "type": "string"
10324
+ },
10325
+ "description": "The choice identifier",
10326
+ "required": true
10327
+ }
10328
+ ],
10329
+ "requestBody": {
10330
+ "required": true,
10331
+ "content": {
10332
+ "application/json": {
10333
+ "schema": {
10334
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoiceUpdateInputs"
10335
+ }
10336
+ }
10337
+ }
10338
+ },
10339
+ "responses": {
10340
+ "200": {
10341
+ "description": "Successful response",
10342
+ "content": {
10343
+ "application/json": {
10344
+ "schema": {
10345
+ "type": "object",
10346
+ "properties": {
10347
+ "status": {
10348
+ "type": "string",
10349
+ "enum": [
10350
+ "ok"
10351
+ ]
10352
+ },
10353
+ "message": {
10354
+ "type": "string",
10355
+ "example": "Success message."
10356
+ },
10357
+ "data": {
10358
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoice"
10359
+ }
10360
+ },
10361
+ "required": [
10362
+ "status",
10363
+ "message",
10364
+ "data"
10365
+ ]
10366
+ }
10367
+ }
10368
+ }
10369
+ }
10370
+ },
10371
+ "tags": [
10372
+ "Bookings::Questions::Choices"
10373
+ ]
10374
+ },
10375
+ "delete": {
10376
+ "operationId": "DeleteBookingSpaceQuestionChoice",
10377
+ "summary": "Delete Booking Space Question Choice",
10378
+ "description": "Delete Booking Space Question Choice endpoint",
10379
+ "parameters": [
10380
+ {
10381
+ "in": "path",
10382
+ "name": "placeId",
10383
+ "schema": {
10384
+ "type": "string"
10385
+ },
10386
+ "description": "The place identifier",
10387
+ "required": true
10388
+ },
10389
+ {
10390
+ "in": "path",
10391
+ "name": "spaceId",
10392
+ "schema": {
10393
+ "type": "string"
10394
+ },
10395
+ "description": "The space identifier",
10396
+ "required": true
10397
+ },
10398
+ {
10399
+ "in": "path",
10400
+ "name": "questionId",
10401
+ "schema": {
10402
+ "type": "string"
10403
+ },
10404
+ "description": "The question identifier",
10405
+ "required": true
10406
+ },
10407
+ {
10408
+ "in": "path",
10409
+ "name": "choiceId",
10410
+ "schema": {
10411
+ "type": "string"
10412
+ },
10413
+ "description": "The choice identifier",
10414
+ "required": true
10415
+ }
10416
+ ],
10417
+ "responses": {
10418
+ "200": {
10419
+ "description": "Successful response",
10420
+ "content": {
10421
+ "application/json": {
10422
+ "schema": {
10423
+ "type": "object",
10424
+ "properties": {
10425
+ "status": {
10426
+ "type": "string",
10427
+ "enum": [
10428
+ "ok"
10429
+ ]
10430
+ },
10431
+ "message": {
10432
+ "type": "string",
10433
+ "example": "Success message."
10434
+ },
10435
+ "data": {
10436
+ "nullable": true
10437
+ }
10438
+ },
10439
+ "required": [
10440
+ "status",
10441
+ "message",
10442
+ "data"
10443
+ ]
10444
+ }
10445
+ }
10446
+ }
10447
+ }
10448
+ },
10449
+ "tags": [
10450
+ "Bookings::Questions::Choices"
10451
+ ]
10452
+ }
10453
+ },
10454
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/choices/{choiceId}/translations": {
10455
+ "get": {
10456
+ "operationId": "GetBookingSpaceQuestionChoiceTranslations",
10457
+ "summary": "Get Booking Space Question Choice Translations",
10458
+ "description": "Get Booking Space Question Choice Translations endpoint",
10459
+ "parameters": [
10460
+ {
10461
+ "in": "path",
10462
+ "name": "placeId",
10463
+ "schema": {
10464
+ "type": "string"
10465
+ },
10466
+ "description": "The place identifier",
10467
+ "required": true
10468
+ },
10469
+ {
10470
+ "in": "path",
10471
+ "name": "spaceId",
10472
+ "schema": {
10473
+ "type": "string"
10474
+ },
10475
+ "description": "The space identifier",
10476
+ "required": true
10477
+ },
10478
+ {
10479
+ "in": "path",
10480
+ "name": "questionId",
10481
+ "schema": {
10482
+ "type": "string"
10483
+ },
10484
+ "description": "The question identifier",
10485
+ "required": true
10486
+ },
10487
+ {
10488
+ "in": "path",
10489
+ "name": "choiceId",
10490
+ "schema": {
10491
+ "type": "string"
10492
+ },
10493
+ "description": "The choice identifier",
10494
+ "required": true
10495
+ }
10496
+ ],
10497
+ "responses": {
10498
+ "200": {
10499
+ "description": "Successful response",
10500
+ "content": {
10501
+ "application/json": {
10502
+ "schema": {
10503
+ "type": "object",
10504
+ "properties": {
10505
+ "status": {
10506
+ "type": "string",
10507
+ "enum": [
10508
+ "ok"
10509
+ ]
10510
+ },
10511
+ "message": {
10512
+ "type": "string",
10513
+ "example": "Success message."
10514
+ },
10515
+ "data": {
10516
+ "type": "array",
10517
+ "items": {
10518
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoiceTranslation"
10519
+ }
10520
+ }
10521
+ },
10522
+ "required": [
10523
+ "status",
10524
+ "message",
10525
+ "data"
10526
+ ]
10527
+ }
10528
+ }
10529
+ }
10530
+ }
10531
+ },
10532
+ "tags": [
10533
+ "Bookings::Questions::Choices::Translations"
10534
+ ]
10535
+ }
10536
+ },
10537
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/choices/{choiceId}/translations/{locale}": {
10538
+ "get": {
10539
+ "operationId": "GetBookingSpaceQuestionChoiceTranslation",
10540
+ "summary": "Get Booking Space Question Choice Translation",
10541
+ "description": "Get Booking Space Question Choice Translation endpoint",
10542
+ "parameters": [
10543
+ {
10544
+ "in": "path",
10545
+ "name": "placeId",
10546
+ "schema": {
10547
+ "type": "string"
10548
+ },
10549
+ "description": "The place identifier",
10550
+ "required": true
10551
+ },
10552
+ {
10553
+ "in": "path",
10554
+ "name": "spaceId",
10555
+ "schema": {
10556
+ "type": "string"
10557
+ },
10558
+ "description": "The space identifier",
10559
+ "required": true
10560
+ },
10561
+ {
10562
+ "in": "path",
10563
+ "name": "questionId",
10564
+ "schema": {
10565
+ "type": "string"
10566
+ },
10567
+ "description": "The question identifier",
10568
+ "required": true
10569
+ },
10570
+ {
10571
+ "in": "path",
10572
+ "name": "choiceId",
10573
+ "schema": {
10574
+ "type": "string"
10575
+ },
10576
+ "description": "The choice identifier",
10577
+ "required": true
10578
+ },
10579
+ {
10580
+ "in": "path",
10581
+ "name": "locale",
10582
+ "schema": {
10583
+ "type": "string"
10584
+ },
10585
+ "description": "The locale identifier",
10586
+ "required": true
10587
+ }
10588
+ ],
10589
+ "responses": {
10590
+ "200": {
10591
+ "description": "Successful response",
10592
+ "content": {
10593
+ "application/json": {
10594
+ "schema": {
10595
+ "type": "object",
10596
+ "properties": {
10597
+ "status": {
10598
+ "type": "string",
10599
+ "enum": [
10600
+ "ok"
10601
+ ]
10602
+ },
10603
+ "message": {
10604
+ "type": "string",
10605
+ "example": "Success message."
10606
+ },
10607
+ "data": {
10608
+ "allOf": [
10609
+ {
10610
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoiceTranslation"
10611
+ }
10612
+ ],
10613
+ "nullable": true
10614
+ }
10615
+ },
10616
+ "required": [
10617
+ "status",
10618
+ "message",
10619
+ "data"
10620
+ ]
10621
+ }
10622
+ }
10623
+ }
10624
+ }
10625
+ },
10626
+ "tags": [
10627
+ "Bookings::Questions::Choices::Translations"
10628
+ ]
10629
+ },
10630
+ "put": {
10631
+ "operationId": "UpdateBookingSpaceQuestionChoiceTranslation",
10632
+ "summary": "Update Booking Space Question Choice Translation",
10633
+ "description": "Update Booking Space Question Choice Translation endpoint",
10634
+ "parameters": [
10635
+ {
10636
+ "in": "path",
10637
+ "name": "placeId",
10638
+ "schema": {
10639
+ "type": "string"
10640
+ },
10641
+ "description": "The place identifier",
10642
+ "required": true
10643
+ },
10644
+ {
10645
+ "in": "path",
10646
+ "name": "spaceId",
10647
+ "schema": {
10648
+ "type": "string"
10649
+ },
10650
+ "description": "The space identifier",
10651
+ "required": true
10652
+ },
10653
+ {
10654
+ "in": "path",
10655
+ "name": "questionId",
10656
+ "schema": {
10657
+ "type": "string"
10658
+ },
10659
+ "description": "The question identifier",
10660
+ "required": true
10661
+ },
10662
+ {
10663
+ "in": "path",
10664
+ "name": "choiceId",
10665
+ "schema": {
10666
+ "type": "string"
10667
+ },
10668
+ "description": "The choice identifier",
10669
+ "required": true
10670
+ },
10671
+ {
10672
+ "in": "path",
10673
+ "name": "locale",
10674
+ "schema": {
10675
+ "type": "string"
10676
+ },
10677
+ "description": "The locale identifier",
10678
+ "required": true
10679
+ }
10680
+ ],
10681
+ "requestBody": {
10682
+ "required": true,
10683
+ "content": {
10684
+ "application/json": {
10685
+ "schema": {
10686
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoiceTranslationUpdateInputs"
10687
+ }
10688
+ }
10689
+ }
10690
+ },
10691
+ "responses": {
10692
+ "200": {
10693
+ "description": "Successful response",
10694
+ "content": {
10695
+ "application/json": {
10696
+ "schema": {
10697
+ "type": "object",
10698
+ "properties": {
10699
+ "status": {
10700
+ "type": "string",
10701
+ "enum": [
10702
+ "ok"
10703
+ ]
10704
+ },
10705
+ "message": {
10706
+ "type": "string",
10707
+ "example": "Success message."
10708
+ },
10709
+ "data": {
10710
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoiceTranslation"
10711
+ }
10712
+ },
10713
+ "required": [
10714
+ "status",
10715
+ "message",
10716
+ "data"
10717
+ ]
10718
+ }
10719
+ }
10720
+ }
10721
+ }
10722
+ },
10723
+ "tags": [
10724
+ "Bookings::Questions::Choices::Translations"
10725
+ ]
10726
+ },
10727
+ "delete": {
10728
+ "operationId": "DeleteBookingSpaceQuestionChoiceTranslation",
10729
+ "summary": "Delete Booking Space Question Choice Translation",
10730
+ "description": "Delete Booking Space Question Choice Translation endpoint",
10731
+ "parameters": [
10732
+ {
10733
+ "in": "path",
10734
+ "name": "placeId",
10735
+ "schema": {
10736
+ "type": "string"
10737
+ },
10738
+ "description": "The place identifier",
10739
+ "required": true
10740
+ },
10741
+ {
10742
+ "in": "path",
10743
+ "name": "spaceId",
10744
+ "schema": {
10745
+ "type": "string"
10746
+ },
10747
+ "description": "The space identifier",
10748
+ "required": true
10749
+ },
10750
+ {
10751
+ "in": "path",
10752
+ "name": "questionId",
10753
+ "schema": {
10754
+ "type": "string"
10755
+ },
10756
+ "description": "The question identifier",
10757
+ "required": true
10758
+ },
10759
+ {
10760
+ "in": "path",
10761
+ "name": "choiceId",
10762
+ "schema": {
10763
+ "type": "string"
10764
+ },
10765
+ "description": "The choice identifier",
10766
+ "required": true
10767
+ },
10768
+ {
10769
+ "in": "path",
10770
+ "name": "locale",
10771
+ "schema": {
10772
+ "type": "string"
10773
+ },
10774
+ "description": "The locale identifier",
10775
+ "required": true
10776
+ }
10777
+ ],
10778
+ "responses": {
10779
+ "200": {
10780
+ "description": "Successful response",
10781
+ "content": {
10782
+ "application/json": {
10783
+ "schema": {
10784
+ "type": "object",
10785
+ "properties": {
10786
+ "status": {
10787
+ "type": "string",
10788
+ "enum": [
10789
+ "ok"
10790
+ ]
10791
+ },
10792
+ "message": {
10793
+ "type": "string",
10794
+ "example": "Success message."
10795
+ },
10796
+ "data": {
10797
+ "type": "object"
10798
+ }
10799
+ },
10800
+ "required": [
10801
+ "status",
10802
+ "message",
10803
+ "data"
10804
+ ]
10805
+ }
10806
+ }
10807
+ }
10808
+ }
10809
+ },
10810
+ "tags": [
10811
+ "Bookings::Questions::Choices::Translations"
10812
+ ]
10813
+ }
10814
+ },
10815
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/searchlist": {
10816
+ "put": {
10817
+ "operationId": "AttachBookingSpaceQuestionSearchList",
10818
+ "summary": "Attach Booking Space Question Search List",
10819
+ "description": "Attach Booking Space Question Search List endpoint",
10820
+ "parameters": [
10821
+ {
10822
+ "in": "path",
10823
+ "name": "placeId",
10824
+ "schema": {
10825
+ "type": "string"
10826
+ },
10827
+ "description": "The place identifier",
10828
+ "required": true
10829
+ },
10830
+ {
10831
+ "in": "path",
10832
+ "name": "spaceId",
10833
+ "schema": {
10834
+ "type": "string"
10835
+ },
10836
+ "description": "The space identifier",
10837
+ "required": true
10838
+ },
10839
+ {
10840
+ "in": "path",
10841
+ "name": "questionId",
10842
+ "schema": {
10843
+ "type": "string"
10844
+ },
10845
+ "description": "The question identifier",
10846
+ "required": true
10847
+ }
10848
+ ],
10849
+ "requestBody": {
10850
+ "required": true,
10851
+ "content": {
10852
+ "application/json": {
10853
+ "schema": {
10854
+ "$ref": "#/components/schemas/AttachSearchListInputs"
10855
+ }
10856
+ }
10857
+ }
10858
+ },
10859
+ "responses": {
10860
+ "200": {
10861
+ "description": "Successful response",
10862
+ "content": {
10863
+ "application/json": {
10864
+ "schema": {
10865
+ "type": "object",
10866
+ "properties": {
10867
+ "status": {
10868
+ "type": "string",
10869
+ "enum": [
10870
+ "ok"
10871
+ ]
10872
+ },
10873
+ "message": {
10874
+ "type": "string",
10875
+ "example": "Success message."
10876
+ },
10877
+ "data": {
10878
+ "$ref": "#/components/schemas/BookingSpaceQuestion"
10879
+ }
10880
+ },
10881
+ "required": [
10882
+ "status",
10883
+ "message",
10884
+ "data"
10885
+ ]
10886
+ }
10887
+ }
10888
+ }
10889
+ }
10890
+ },
10891
+ "tags": [
10892
+ "Bookings::Questions"
10893
+ ]
10894
+ },
10895
+ "delete": {
10896
+ "operationId": "DetachBookingSpaceQuestionSearchList",
10897
+ "summary": "Detach Booking Space Question Search List",
10898
+ "description": "Detach Booking Space Question Search List endpoint",
10899
+ "parameters": [
10900
+ {
10901
+ "in": "path",
10902
+ "name": "placeId",
10903
+ "schema": {
10904
+ "type": "string"
10905
+ },
10906
+ "description": "The place identifier",
10907
+ "required": true
10908
+ },
10909
+ {
10910
+ "in": "path",
10911
+ "name": "spaceId",
10912
+ "schema": {
10913
+ "type": "string"
10914
+ },
10915
+ "description": "The space identifier",
10916
+ "required": true
10917
+ },
10918
+ {
10919
+ "in": "path",
10920
+ "name": "questionId",
10921
+ "schema": {
10922
+ "type": "string"
10923
+ },
10924
+ "description": "The question identifier",
10925
+ "required": true
10926
+ }
10927
+ ],
10928
+ "responses": {
10929
+ "200": {
10930
+ "description": "Successful response",
10931
+ "content": {
10932
+ "application/json": {
10933
+ "schema": {
10934
+ "type": "object",
10935
+ "properties": {
10936
+ "status": {
10937
+ "type": "string",
10938
+ "enum": [
10939
+ "ok"
10940
+ ]
10941
+ },
10942
+ "message": {
10943
+ "type": "string",
10944
+ "example": "Success message."
10945
+ },
10946
+ "data": {
10947
+ "$ref": "#/components/schemas/BookingSpaceQuestion"
10948
+ }
10949
+ },
10950
+ "required": [
10951
+ "status",
10952
+ "message",
10953
+ "data"
10954
+ ]
10955
+ }
10956
+ }
10957
+ }
10958
+ }
10959
+ },
10960
+ "tags": [
10961
+ "Bookings::Questions"
10962
+ ]
10963
+ }
10964
+ },
10965
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/translations": {
10966
+ "get": {
10967
+ "operationId": "GetBookingSpaceQuestionTranslations",
10968
+ "summary": "Get Booking Space Question Translations",
10969
+ "description": "Get Booking Space Question Translations endpoint",
10970
+ "parameters": [
10971
+ {
10972
+ "in": "path",
10973
+ "name": "placeId",
10974
+ "schema": {
10975
+ "type": "string"
10976
+ },
10977
+ "description": "The place identifier",
10978
+ "required": true
10979
+ },
10980
+ {
10981
+ "in": "path",
10982
+ "name": "spaceId",
10983
+ "schema": {
10984
+ "type": "string"
10985
+ },
10986
+ "description": "The space identifier",
10987
+ "required": true
10988
+ },
10989
+ {
10990
+ "in": "path",
10991
+ "name": "questionId",
10992
+ "schema": {
10993
+ "type": "string"
10994
+ },
10995
+ "description": "The question identifier",
10996
+ "required": true
10997
+ }
10998
+ ],
10999
+ "responses": {
11000
+ "200": {
11001
+ "description": "Successful response",
11002
+ "content": {
11003
+ "application/json": {
11004
+ "schema": {
11005
+ "type": "object",
11006
+ "properties": {
11007
+ "status": {
11008
+ "type": "string",
11009
+ "enum": [
11010
+ "ok"
11011
+ ]
11012
+ },
11013
+ "message": {
11014
+ "type": "string",
11015
+ "example": "Success message."
11016
+ },
11017
+ "data": {
11018
+ "type": "array",
11019
+ "items": {
11020
+ "$ref": "#/components/schemas/BookingSpaceQuestionTranslation"
11021
+ }
11022
+ }
11023
+ },
11024
+ "required": [
11025
+ "status",
11026
+ "message",
11027
+ "data"
11028
+ ]
11029
+ }
11030
+ }
11031
+ }
11032
+ }
11033
+ },
11034
+ "tags": [
11035
+ "Bookings::Questions::Translations"
11036
+ ]
11037
+ }
11038
+ },
11039
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/translations/{locale}": {
11040
+ "get": {
11041
+ "operationId": "GetBookingSpaceQuestionTranslation",
11042
+ "summary": "Get Booking Space Question Translation",
11043
+ "description": "Get Booking Space Question Translation endpoint",
11044
+ "parameters": [
11045
+ {
11046
+ "in": "path",
11047
+ "name": "placeId",
11048
+ "schema": {
11049
+ "type": "string"
11050
+ },
11051
+ "description": "The place identifier",
11052
+ "required": true
11053
+ },
11054
+ {
11055
+ "in": "path",
11056
+ "name": "spaceId",
11057
+ "schema": {
11058
+ "type": "string"
11059
+ },
11060
+ "description": "The space identifier",
11061
+ "required": true
11062
+ },
11063
+ {
11064
+ "in": "path",
11065
+ "name": "questionId",
11066
+ "schema": {
11067
+ "type": "string"
11068
+ },
11069
+ "description": "The question identifier",
11070
+ "required": true
11071
+ },
11072
+ {
11073
+ "in": "path",
11074
+ "name": "locale",
11075
+ "schema": {
11076
+ "type": "string"
11077
+ },
11078
+ "description": "The locale identifier",
11079
+ "required": true
11080
+ }
11081
+ ],
11082
+ "responses": {
11083
+ "200": {
11084
+ "description": "Successful response",
11085
+ "content": {
11086
+ "application/json": {
11087
+ "schema": {
11088
+ "type": "object",
11089
+ "properties": {
11090
+ "status": {
11091
+ "type": "string",
11092
+ "enum": [
11093
+ "ok"
11094
+ ]
11095
+ },
11096
+ "message": {
11097
+ "type": "string",
11098
+ "example": "Success message."
11099
+ },
11100
+ "data": {
11101
+ "allOf": [
11102
+ {
11103
+ "$ref": "#/components/schemas/BookingSpaceQuestionTranslation"
11104
+ }
11105
+ ],
11106
+ "nullable": true
11107
+ }
11108
+ },
11109
+ "required": [
11110
+ "status",
11111
+ "message",
11112
+ "data"
11113
+ ]
11114
+ }
11115
+ }
11116
+ }
11117
+ }
11118
+ },
11119
+ "tags": [
11120
+ "Bookings::Questions::Translations"
11121
+ ]
11122
+ },
11123
+ "put": {
11124
+ "operationId": "UpdateBookingSpaceQuestionTranslation",
11125
+ "summary": "Update Booking Space Question Translation",
11126
+ "description": "Update Booking Space Question Translation endpoint",
11127
+ "parameters": [
11128
+ {
11129
+ "in": "path",
11130
+ "name": "placeId",
11131
+ "schema": {
11132
+ "type": "string"
11133
+ },
11134
+ "description": "The place identifier",
11135
+ "required": true
11136
+ },
11137
+ {
11138
+ "in": "path",
11139
+ "name": "spaceId",
11140
+ "schema": {
11141
+ "type": "string"
11142
+ },
11143
+ "description": "The space identifier",
11144
+ "required": true
11145
+ },
11146
+ {
11147
+ "in": "path",
11148
+ "name": "questionId",
11149
+ "schema": {
11150
+ "type": "string"
11151
+ },
11152
+ "description": "The question identifier",
11153
+ "required": true
11154
+ },
11155
+ {
11156
+ "in": "path",
11157
+ "name": "locale",
11158
+ "schema": {
11159
+ "type": "string"
11160
+ },
11161
+ "description": "The locale identifier",
11162
+ "required": true
11163
+ }
11164
+ ],
11165
+ "requestBody": {
11166
+ "required": true,
11167
+ "content": {
11168
+ "application/json": {
11169
+ "schema": {
11170
+ "$ref": "#/components/schemas/BookingSpaceQuestionTranslationUpdateInputs"
11171
+ }
11172
+ }
11173
+ }
11174
+ },
11175
+ "responses": {
11176
+ "200": {
11177
+ "description": "Successful response",
11178
+ "content": {
11179
+ "application/json": {
11180
+ "schema": {
11181
+ "type": "object",
11182
+ "properties": {
11183
+ "status": {
11184
+ "type": "string",
11185
+ "enum": [
11186
+ "ok"
11187
+ ]
11188
+ },
11189
+ "message": {
11190
+ "type": "string",
11191
+ "example": "Success message."
11192
+ },
11193
+ "data": {
11194
+ "$ref": "#/components/schemas/BookingSpaceQuestionTranslation"
11195
+ }
11196
+ },
11197
+ "required": [
11198
+ "status",
11199
+ "message",
11200
+ "data"
11201
+ ]
11202
+ }
11203
+ }
11204
+ }
11205
+ }
11206
+ },
11207
+ "tags": [
11208
+ "Bookings::Questions::Translations"
11209
+ ]
11210
+ },
11211
+ "delete": {
11212
+ "operationId": "DeleteBookingSpaceQuestionTranslation",
11213
+ "summary": "Delete Booking Space Question Translation",
11214
+ "description": "Delete Booking Space Question Translation endpoint",
11215
+ "parameters": [
11216
+ {
11217
+ "in": "path",
11218
+ "name": "placeId",
11219
+ "schema": {
11220
+ "type": "string"
11221
+ },
11222
+ "description": "The place identifier",
11223
+ "required": true
11224
+ },
11225
+ {
11226
+ "in": "path",
11227
+ "name": "spaceId",
11228
+ "schema": {
11229
+ "type": "string"
11230
+ },
11231
+ "description": "The space identifier",
11232
+ "required": true
11233
+ },
11234
+ {
11235
+ "in": "path",
11236
+ "name": "questionId",
11237
+ "schema": {
11238
+ "type": "string"
11239
+ },
11240
+ "description": "The question identifier",
11241
+ "required": true
11242
+ },
11243
+ {
11244
+ "in": "path",
11245
+ "name": "locale",
11246
+ "schema": {
11247
+ "type": "string"
11248
+ },
11249
+ "description": "The locale identifier",
11250
+ "required": true
11251
+ }
11252
+ ],
11253
+ "responses": {
11254
+ "200": {
11255
+ "description": "Successful response",
11256
+ "content": {
11257
+ "application/json": {
11258
+ "schema": {
11259
+ "type": "object",
11260
+ "properties": {
11261
+ "status": {
11262
+ "type": "string",
11263
+ "enum": [
11264
+ "ok"
11265
+ ]
11266
+ },
11267
+ "message": {
11268
+ "type": "string",
11269
+ "example": "Success message."
11270
+ },
11271
+ "data": {
11272
+ "type": "object"
11273
+ }
11274
+ },
11275
+ "required": [
11276
+ "status",
11277
+ "message",
11278
+ "data"
11279
+ ]
11280
+ }
11281
+ }
11282
+ }
11283
+ }
11284
+ },
11285
+ "tags": [
11286
+ "Bookings::Questions::Translations"
11287
+ ]
11288
+ }
11289
+ },
11290
+ "/bookings/places/{placeId}/spaces/{spaceId}/slots": {
11291
+ "get": {
11292
+ "operationId": "GetBookingSpaceSlots",
11293
+ "summary": "Get Booking Space Slots",
11294
+ "description": "Get Booking Space Slots endpoint",
11295
+ "parameters": [
11296
+ {
11297
+ "in": "path",
11298
+ "name": "placeId",
11299
+ "schema": {
11300
+ "type": "string"
11301
+ },
11302
+ "description": "The place identifier",
11303
+ "required": true
11304
+ },
11305
+ {
11306
+ "in": "path",
11307
+ "name": "spaceId",
11308
+ "schema": {
11309
+ "type": "string"
11310
+ },
11311
+ "description": "The space identifier",
11312
+ "required": true
11313
+ },
11314
+ {
11315
+ "in": "query",
11316
+ "name": "firstDayOfMonth",
11317
+ "schema": {
11318
+ "type": "string"
11319
+ },
11320
+ "description": "Filter by firstDayOfMonth",
11321
+ "required": true
11322
+ }
11323
+ ],
11324
+ "responses": {
11325
+ "200": {
11326
+ "description": "Successful response",
11327
+ "content": {
11328
+ "application/json": {
11329
+ "schema": {
11330
+ "type": "object",
11331
+ "properties": {
11332
+ "status": {
11333
+ "type": "string",
11334
+ "enum": [
11335
+ "ok"
11336
+ ]
11337
+ },
11338
+ "message": {
11339
+ "type": "string",
11340
+ "example": "Success message."
11341
+ },
11342
+ "data": {
11343
+ "type": "array",
11344
+ "items": {
11345
+ "type": "array",
11346
+ "items": {
11347
+ "type": "object"
11348
+ }
11349
+ }
11350
+ }
11351
+ },
11352
+ "required": [
11353
+ "status",
11354
+ "message",
11355
+ "data"
11356
+ ]
11357
+ }
11358
+ }
11359
+ }
11360
+ }
11361
+ },
11362
+ "tags": [
11363
+ "Bookings"
11364
+ ]
11365
+ }
11366
+ },
11367
+ "/bookings/places/{placeId}/spaces/{spaceId}/translations": {
11368
+ "get": {
11369
+ "operationId": "GetBookingSpaceTranslations",
11370
+ "summary": "Get Booking Space Translations",
11371
+ "description": "Get Booking Space Translations endpoint",
11372
+ "parameters": [
11373
+ {
11374
+ "in": "path",
11375
+ "name": "placeId",
11376
+ "schema": {
11377
+ "type": "string"
11378
+ },
11379
+ "description": "The place identifier",
11380
+ "required": true
11381
+ },
11382
+ {
11383
+ "in": "path",
11384
+ "name": "spaceId",
11385
+ "schema": {
11386
+ "type": "string"
11387
+ },
11388
+ "description": "The space identifier",
11389
+ "required": true
11390
+ },
11391
+ {
11392
+ "in": "query",
11393
+ "name": "page",
11394
+ "schema": {
11395
+ "type": "integer",
11396
+ "minimum": 1,
11397
+ "default": 1
11398
+ },
11399
+ "description": "Page number",
11400
+ "required": false
11401
+ },
11402
+ {
11403
+ "in": "query",
11404
+ "name": "pageSize",
11405
+ "schema": {
11406
+ "type": "integer",
11407
+ "minimum": 1,
11408
+ "maximum": 100,
11409
+ "default": 25
11410
+ },
11411
+ "description": "Number of items per page",
11412
+ "required": false
11413
+ },
11414
+ {
11415
+ "in": "query",
11416
+ "name": "orderBy",
11417
+ "schema": {
11418
+ "type": "string"
11419
+ },
11420
+ "description": "Field to order by",
11421
+ "required": false
11422
+ },
11423
+ {
11424
+ "in": "query",
11425
+ "name": "search",
11426
+ "schema": {
11427
+ "type": "string"
11428
+ },
11429
+ "description": "Search query",
11430
+ "required": false
11431
+ }
11432
+ ],
11433
+ "responses": {
11434
+ "200": {
11435
+ "description": "Successful response",
11436
+ "content": {
11437
+ "application/json": {
11438
+ "schema": {
11439
+ "type": "object",
11440
+ "properties": {
11441
+ "status": {
11442
+ "type": "string",
11443
+ "enum": [
11444
+ "ok"
11445
+ ]
11446
+ },
11447
+ "message": {
11448
+ "type": "string",
11449
+ "example": "Success message."
11450
+ },
11451
+ "data": {
11452
+ "type": "array",
11453
+ "items": {
11454
+ "$ref": "#/components/schemas/BookingSpaceTranslation"
11455
+ }
11456
+ },
11457
+ "count": {
11458
+ "type": "integer",
11459
+ "example": 100
11460
+ }
11461
+ },
11462
+ "required": [
11463
+ "status",
11464
+ "message",
11465
+ "data"
11466
+ ]
11467
+ }
11468
+ }
11469
+ }
11470
+ }
11471
+ },
11472
+ "tags": [
11473
+ "Bookings"
11474
+ ]
11475
+ }
11476
+ },
11477
+ "/bookings/places/{placeId}/spaces/{spaceId}/translations/{locale}": {
11478
+ "get": {
11479
+ "operationId": "GetBookingSpaceTranslation",
11480
+ "summary": "Get Booking Space Translation",
11481
+ "description": "Get Booking Space Translation endpoint",
11482
+ "parameters": [
11483
+ {
11484
+ "in": "path",
11485
+ "name": "placeId",
11486
+ "schema": {
11487
+ "type": "string"
11488
+ },
11489
+ "description": "The place identifier",
11490
+ "required": true
11491
+ },
11492
+ {
11493
+ "in": "path",
11494
+ "name": "spaceId",
11495
+ "schema": {
11496
+ "type": "string"
11497
+ },
11498
+ "description": "The space identifier",
11499
+ "required": true
11500
+ },
11501
+ {
11502
+ "in": "path",
11503
+ "name": "locale",
11504
+ "schema": {
11505
+ "type": "string"
11506
+ },
11507
+ "description": "The locale identifier",
11508
+ "required": true
11509
+ }
11510
+ ],
11511
+ "responses": {
11512
+ "200": {
11513
+ "description": "Successful response",
11514
+ "content": {
11515
+ "application/json": {
11516
+ "schema": {
11517
+ "type": "object",
11518
+ "properties": {
11519
+ "status": {
11520
+ "type": "string",
11521
+ "enum": [
11522
+ "ok"
11523
+ ]
11524
+ },
11525
+ "message": {
11526
+ "type": "string",
11527
+ "example": "Success message."
11528
+ },
11529
+ "data": {
11530
+ "allOf": [
11531
+ {
11532
+ "$ref": "#/components/schemas/BookingSpaceTranslation"
11533
+ }
11534
+ ],
11535
+ "nullable": true
11536
+ }
11537
+ },
11538
+ "required": [
11539
+ "status",
11540
+ "message",
11541
+ "data"
11542
+ ]
11543
+ }
11544
+ }
11545
+ }
11546
+ }
11547
+ },
11548
+ "tags": [
11549
+ "Bookings"
11550
+ ]
11551
+ },
11552
+ "put": {
11553
+ "operationId": "UpdateBookingSpaceTranslation",
11554
+ "summary": "Update Booking Space Translation",
11555
+ "description": "Update Booking Space Translation endpoint",
11556
+ "parameters": [
11557
+ {
11558
+ "in": "path",
11559
+ "name": "placeId",
11560
+ "schema": {
11561
+ "type": "string"
11562
+ },
11563
+ "description": "The place identifier",
11564
+ "required": true
11565
+ },
11566
+ {
11567
+ "in": "path",
11568
+ "name": "spaceId",
11569
+ "schema": {
11570
+ "type": "string"
11571
+ },
11572
+ "description": "The space identifier",
11573
+ "required": true
11574
+ },
11575
+ {
11576
+ "in": "path",
11577
+ "name": "locale",
11578
+ "schema": {
11579
+ "type": "string"
11580
+ },
11581
+ "description": "The locale identifier",
11582
+ "required": true
11583
+ }
11584
+ ],
11585
+ "requestBody": {
11586
+ "required": true,
11587
+ "content": {
11588
+ "application/json": {
11589
+ "schema": {
11590
+ "$ref": "#/components/schemas/BookingSpaceTranslationUpdateInputs"
11591
+ }
11592
+ }
11593
+ }
11594
+ },
11595
+ "responses": {
11596
+ "200": {
11597
+ "description": "Successful response",
11598
+ "content": {
11599
+ "application/json": {
11600
+ "schema": {
11601
+ "type": "object",
11602
+ "properties": {
11603
+ "status": {
11604
+ "type": "string",
11605
+ "enum": [
11606
+ "ok"
11607
+ ]
11608
+ },
11609
+ "message": {
11610
+ "type": "string",
11611
+ "example": "Success message."
11612
+ },
11613
+ "data": {
11614
+ "type": "object"
11615
+ }
11616
+ },
11617
+ "required": [
11618
+ "status",
11619
+ "message",
11620
+ "data"
11621
+ ]
11622
+ }
11623
+ }
11624
+ }
11625
+ }
11626
+ },
11627
+ "tags": [
11628
+ "Bookings::Spaces::Translations"
11629
+ ]
11630
+ },
11631
+ "delete": {
11632
+ "operationId": "DeleteBookingSpaceTranslation",
11633
+ "summary": "Delete Booking Space Translation",
11634
+ "description": "Delete Booking Space Translation endpoint",
11635
+ "parameters": [
11636
+ {
11637
+ "in": "path",
11638
+ "name": "placeId",
11639
+ "schema": {
11640
+ "type": "string"
11641
+ },
11642
+ "description": "The place identifier",
11643
+ "required": true
11644
+ },
11645
+ {
11646
+ "in": "path",
11647
+ "name": "spaceId",
11648
+ "schema": {
11649
+ "type": "string"
11650
+ },
11651
+ "description": "The space identifier",
11652
+ "required": true
11653
+ },
11654
+ {
11655
+ "in": "path",
11656
+ "name": "locale",
11657
+ "schema": {
11658
+ "type": "string"
11659
+ },
11660
+ "description": "The locale identifier",
11661
+ "required": true
11662
+ }
11663
+ ],
11664
+ "responses": {
11665
+ "200": {
11666
+ "description": "Successful response",
11667
+ "content": {
11668
+ "application/json": {
11669
+ "schema": {
11670
+ "type": "object",
11671
+ "properties": {
11672
+ "status": {
11673
+ "type": "string",
11674
+ "enum": [
11675
+ "ok"
11676
+ ]
11677
+ },
11678
+ "message": {
11679
+ "type": "string",
11680
+ "example": "Success message."
11681
+ },
11682
+ "data": {
11683
+ "type": "object"
11684
+ }
11685
+ },
11686
+ "required": [
11687
+ "status",
11688
+ "message",
11689
+ "data"
11690
+ ]
11691
+ }
11692
+ }
11693
+ }
11694
+ }
11695
+ },
11696
+ "tags": [
11697
+ "Bookings::Spaces::Translations"
11698
+ ]
11699
+ }
11700
+ },
11701
+ "/bookings/places/{placeId}/translations": {
11702
+ "get": {
11703
+ "operationId": "GetBookingPlaceTranslations",
11704
+ "summary": "Get Booking Place Translations",
11705
+ "description": "Get Booking Place Translations endpoint",
11706
+ "parameters": [
11707
+ {
11708
+ "in": "path",
11709
+ "name": "placeId",
11710
+ "schema": {
11711
+ "type": "string"
11712
+ },
11713
+ "description": "The place identifier",
11714
+ "required": true
11715
+ },
11716
+ {
11717
+ "in": "query",
11718
+ "name": "page",
11719
+ "schema": {
11720
+ "type": "integer",
11721
+ "minimum": 1,
11722
+ "default": 1
11723
+ },
11724
+ "description": "Page number",
11725
+ "required": false
11726
+ },
11727
+ {
11728
+ "in": "query",
11729
+ "name": "pageSize",
11730
+ "schema": {
11731
+ "type": "integer",
11732
+ "minimum": 1,
11733
+ "maximum": 100,
11734
+ "default": 25
11735
+ },
11736
+ "description": "Number of items per page",
11737
+ "required": false
11738
+ },
11739
+ {
11740
+ "in": "query",
11741
+ "name": "orderBy",
11742
+ "schema": {
11743
+ "type": "string"
11744
+ },
11745
+ "description": "Field to order by",
11746
+ "required": false
11747
+ },
11748
+ {
11749
+ "in": "query",
11750
+ "name": "search",
11751
+ "schema": {
11752
+ "type": "string"
11753
+ },
11754
+ "description": "Search query",
11755
+ "required": false
11756
+ }
11757
+ ],
11758
+ "responses": {
11759
+ "200": {
11760
+ "description": "Successful response",
11761
+ "content": {
11762
+ "application/json": {
11763
+ "schema": {
11764
+ "type": "object",
11765
+ "properties": {
11766
+ "status": {
11767
+ "type": "string",
11768
+ "enum": [
11769
+ "ok"
11770
+ ]
11771
+ },
11772
+ "message": {
11773
+ "type": "string",
11774
+ "example": "Success message."
11775
+ },
11776
+ "data": {
11777
+ "type": "array",
11778
+ "items": {
11779
+ "$ref": "#/components/schemas/BookingPlaceTranslation"
11780
+ }
11781
+ },
11782
+ "count": {
11783
+ "type": "integer",
11784
+ "example": 100
11785
+ }
11786
+ },
11787
+ "required": [
11788
+ "status",
11789
+ "message",
11790
+ "data"
11791
+ ]
11792
+ }
11793
+ }
11794
+ }
11795
+ }
11796
+ },
11797
+ "tags": [
11798
+ "Bookings"
11799
+ ]
11800
+ }
11801
+ },
11802
+ "/bookings/places/{placeId}/translations/{locale}": {
11803
+ "get": {
11804
+ "operationId": "GetBookingPlaceTranslation",
11805
+ "summary": "Get Booking Place Translation",
11806
+ "description": "Get Booking Place Translation endpoint",
11807
+ "parameters": [
11808
+ {
11809
+ "in": "path",
11810
+ "name": "placeId",
11811
+ "schema": {
11812
+ "type": "string"
11813
+ },
11814
+ "description": "The place identifier",
11815
+ "required": true
11816
+ },
11817
+ {
11818
+ "in": "path",
11819
+ "name": "locale",
11820
+ "schema": {
11821
+ "type": "string"
11822
+ },
11823
+ "description": "The locale identifier",
9966
11824
  "required": true
9967
11825
  }
9968
11826
  ],
@@ -99915,6 +101773,9 @@
99915
101773
  "activity": {
99916
101774
  "$ref": "#/components/schemas/BaseActivity"
99917
101775
  },
101776
+ "bookingSpace": {
101777
+ "$ref": "#/components/schemas/BaseBookingSpace"
101778
+ },
99918
101779
  "updated_at": {
99919
101780
  "type": "string"
99920
101781
  },
@@ -102839,6 +104700,9 @@
102839
104700
  "username": {
102840
104701
  "type": "string"
102841
104702
  },
104703
+ "provider": {
104704
+ "type": "string"
104705
+ },
102842
104706
  "email": {
102843
104707
  "type": "string"
102844
104708
  },
@@ -102872,6 +104736,7 @@
102872
104736
  "sub",
102873
104737
  "userPoolId",
102874
104738
  "username",
104739
+ "provider",
102875
104740
  "email",
102876
104741
  "status",
102877
104742
  "enabled",
@@ -103898,6 +105763,22 @@
103898
105763
  "type": "string",
103899
105764
  "nullable": true
103900
105765
  },
105766
+ "meetingId": {
105767
+ "type": "string",
105768
+ "nullable": true
105769
+ },
105770
+ "meeting": {
105771
+ "allOf": [
105772
+ {
105773
+ "$ref": "#/components/schemas/BaseMeeting"
105774
+ }
105775
+ ],
105776
+ "nullable": true
105777
+ },
105778
+ "joinBeforeTime": {
105779
+ "type": "number",
105780
+ "nullable": true
105781
+ },
103901
105782
  "createdAt": {
103902
105783
  "type": "string"
103903
105784
  },
@@ -103910,6 +105791,9 @@
103910
105791
  "confirmationReplyTo",
103911
105792
  "cancellationBody",
103912
105793
  "cancellationReplyTo",
105794
+ "meetingId",
105795
+ "meeting",
105796
+ "joinBeforeTime",
103913
105797
  "createdAt",
103914
105798
  "updatedAt"
103915
105799
  ]
@@ -104078,6 +105962,362 @@
104078
105962
  }
104079
105963
  ]
104080
105964
  },
105965
+ "BookingSpaceQuestionType": {
105966
+ "type": "string",
105967
+ "enum": [
105968
+ "text",
105969
+ "textarea",
105970
+ "number",
105971
+ "time",
105972
+ "date",
105973
+ "toggle",
105974
+ "select",
105975
+ "radio",
105976
+ "checkbox",
105977
+ "search",
105978
+ "file",
105979
+ "location"
105980
+ ]
105981
+ },
105982
+ "BaseBookingSpaceQuestionChoice": {
105983
+ "type": "object",
105984
+ "properties": {
105985
+ "id": {
105986
+ "type": "string"
105987
+ },
105988
+ "value": {
105989
+ "type": "string"
105990
+ },
105991
+ "text": {
105992
+ "type": "string",
105993
+ "nullable": true
105994
+ },
105995
+ "description": {
105996
+ "type": "string",
105997
+ "nullable": true
105998
+ },
105999
+ "supply": {
106000
+ "type": "number",
106001
+ "nullable": true
106002
+ },
106003
+ "sortOrder": {
106004
+ "type": "number"
106005
+ }
106006
+ },
106007
+ "required": [
106008
+ "id",
106009
+ "value",
106010
+ "text",
106011
+ "description",
106012
+ "supply",
106013
+ "sortOrder"
106014
+ ]
106015
+ },
106016
+ "BookingSpaceQuestionChoice": {
106017
+ "allOf": [
106018
+ {
106019
+ "$ref": "#/components/schemas/BaseBookingSpaceQuestionChoice"
106020
+ },
106021
+ {
106022
+ "type": "object",
106023
+ "properties": {
106024
+ "questionId": {
106025
+ "type": "string"
106026
+ },
106027
+ "question": {
106028
+ "$ref": "#/components/schemas/BaseBookingSpaceQuestion"
106029
+ },
106030
+ "createdAt": {
106031
+ "type": "string"
106032
+ },
106033
+ "updatedAt": {
106034
+ "type": "string"
106035
+ }
106036
+ },
106037
+ "required": [
106038
+ "questionId",
106039
+ "question",
106040
+ "createdAt",
106041
+ "updatedAt"
106042
+ ]
106043
+ }
106044
+ ]
106045
+ },
106046
+ "BookingSpaceQuestionChoiceTranslation": {
106047
+ "type": "object",
106048
+ "properties": {
106049
+ "id": {
106050
+ "type": "string"
106051
+ },
106052
+ "locale": {
106053
+ "type": "string"
106054
+ },
106055
+ "value": {
106056
+ "type": "string"
106057
+ },
106058
+ "text": {
106059
+ "type": "string",
106060
+ "nullable": true
106061
+ },
106062
+ "description": {
106063
+ "type": "string",
106064
+ "nullable": true
106065
+ },
106066
+ "createdAt": {
106067
+ "type": "string"
106068
+ },
106069
+ "updatedAt": {
106070
+ "type": "string"
106071
+ }
106072
+ },
106073
+ "required": [
106074
+ "id",
106075
+ "locale",
106076
+ "value",
106077
+ "text",
106078
+ "description",
106079
+ "createdAt",
106080
+ "updatedAt"
106081
+ ]
106082
+ },
106083
+ "BaseBookingSpaceQuestion": {
106084
+ "type": "object",
106085
+ "properties": {
106086
+ "id": {
106087
+ "type": "string"
106088
+ },
106089
+ "type": {
106090
+ "$ref": "#/components/schemas/BookingSpaceQuestionType"
106091
+ },
106092
+ "name": {
106093
+ "type": "string"
106094
+ },
106095
+ "required": {
106096
+ "type": "boolean"
106097
+ },
106098
+ "description": {
106099
+ "type": "string",
106100
+ "nullable": true
106101
+ },
106102
+ "label": {
106103
+ "type": "string",
106104
+ "nullable": true
106105
+ },
106106
+ "placeholder": {
106107
+ "type": "string",
106108
+ "nullable": true
106109
+ },
106110
+ "default": {
106111
+ "type": "string",
106112
+ "nullable": true
106113
+ },
106114
+ "searchListId": {
106115
+ "type": "string",
106116
+ "nullable": true
106117
+ },
106118
+ "searchList": {
106119
+ "allOf": [
106120
+ {
106121
+ "$ref": "#/components/schemas/BaseSearchList"
106122
+ }
106123
+ ],
106124
+ "nullable": true
106125
+ },
106126
+ "mutable": {
106127
+ "type": "boolean"
106128
+ },
106129
+ "min": {
106130
+ "type": "string",
106131
+ "nullable": true
106132
+ },
106133
+ "max": {
106134
+ "type": "string",
106135
+ "nullable": true
106136
+ },
106137
+ "masked": {
106138
+ "type": "boolean"
106139
+ },
106140
+ "validation": {
106141
+ "type": "string",
106142
+ "nullable": true
106143
+ },
106144
+ "validationMessage": {
106145
+ "type": "string",
106146
+ "nullable": true
106147
+ },
106148
+ "locationOption": {
106149
+ "allOf": [
106150
+ {
106151
+ "$ref": "#/components/schemas/LocationQuestionOption"
106152
+ }
106153
+ ],
106154
+ "nullable": true
106155
+ },
106156
+ "sortOrder": {
106157
+ "type": "number"
106158
+ },
106159
+ "featured": {
106160
+ "type": "boolean"
106161
+ },
106162
+ "choices": {
106163
+ "type": "array",
106164
+ "items": {
106165
+ "$ref": "#/components/schemas/BaseBookingSpaceQuestionChoice"
106166
+ }
106167
+ }
106168
+ },
106169
+ "required": [
106170
+ "id",
106171
+ "type",
106172
+ "name",
106173
+ "required",
106174
+ "description",
106175
+ "label",
106176
+ "placeholder",
106177
+ "default",
106178
+ "searchListId",
106179
+ "searchList",
106180
+ "mutable",
106181
+ "min",
106182
+ "max",
106183
+ "masked",
106184
+ "validation",
106185
+ "validationMessage",
106186
+ "locationOption",
106187
+ "sortOrder",
106188
+ "featured",
106189
+ "choices"
106190
+ ]
106191
+ },
106192
+ "BookingSpaceQuestion": {
106193
+ "allOf": [
106194
+ {
106195
+ "$ref": "#/components/schemas/BaseBookingSpaceQuestion"
106196
+ },
106197
+ {
106198
+ "type": "object",
106199
+ "properties": {
106200
+ "dashboardVisibility": {
106201
+ "type": "boolean"
106202
+ },
106203
+ "createdAt": {
106204
+ "type": "string"
106205
+ },
106206
+ "updatedAt": {
106207
+ "type": "string"
106208
+ },
106209
+ "translations": {
106210
+ "type": "array",
106211
+ "items": {
106212
+ "$ref": "#/components/schemas/BookingSpaceQuestionTranslation"
106213
+ }
106214
+ }
106215
+ },
106216
+ "required": [
106217
+ "dashboardVisibility",
106218
+ "createdAt",
106219
+ "updatedAt"
106220
+ ]
106221
+ }
106222
+ ]
106223
+ },
106224
+ "BookingSpaceQuestionTranslation": {
106225
+ "type": "object",
106226
+ "properties": {
106227
+ "id": {
106228
+ "type": "string"
106229
+ },
106230
+ "locale": {
106231
+ "type": "string"
106232
+ },
106233
+ "label": {
106234
+ "type": "string",
106235
+ "nullable": true
106236
+ },
106237
+ "placeholder": {
106238
+ "type": "string",
106239
+ "nullable": true
106240
+ },
106241
+ "description": {
106242
+ "type": "string",
106243
+ "nullable": true
106244
+ },
106245
+ "createdAt": {
106246
+ "type": "string"
106247
+ },
106248
+ "updatedAt": {
106249
+ "type": "string"
106250
+ }
106251
+ },
106252
+ "required": [
106253
+ "id",
106254
+ "locale",
106255
+ "label",
106256
+ "placeholder",
106257
+ "description",
106258
+ "createdAt",
106259
+ "updatedAt"
106260
+ ]
106261
+ },
106262
+ "BaseBookingQuestionResponse": {
106263
+ "type": "object",
106264
+ "properties": {
106265
+ "id": {
106266
+ "type": "string"
106267
+ },
106268
+ "value": {
106269
+ "type": "string"
106270
+ },
106271
+ "questionId": {
106272
+ "type": "string"
106273
+ },
106274
+ "question": {
106275
+ "$ref": "#/components/schemas/BaseBookingSpaceQuestion"
106276
+ }
106277
+ },
106278
+ "required": [
106279
+ "id",
106280
+ "value",
106281
+ "questionId",
106282
+ "question"
106283
+ ]
106284
+ },
106285
+ "BookingQuestionResponse": {
106286
+ "allOf": [
106287
+ {
106288
+ "$ref": "#/components/schemas/BaseBookingQuestionResponse"
106289
+ },
106290
+ {
106291
+ "type": "object",
106292
+ "properties": {
106293
+ "fileId": {
106294
+ "type": "number",
106295
+ "nullable": true
106296
+ },
106297
+ "file": {
106298
+ "allOf": [
106299
+ {
106300
+ "$ref": "#/components/schemas/BaseFile"
106301
+ }
106302
+ ],
106303
+ "nullable": true
106304
+ },
106305
+ "createdAt": {
106306
+ "type": "string"
106307
+ },
106308
+ "updatedAt": {
106309
+ "type": "string"
106310
+ }
106311
+ },
106312
+ "required": [
106313
+ "fileId",
106314
+ "file",
106315
+ "createdAt",
106316
+ "updatedAt"
106317
+ ]
106318
+ }
106319
+ ]
106320
+ },
104081
106321
  "BaseBooking": {
104082
106322
  "type": "object",
104083
106323
  "properties": {
@@ -104107,6 +106347,12 @@
104107
106347
  },
104108
106348
  "space": {
104109
106349
  "$ref": "#/components/schemas/BaseBookingSpace"
106350
+ },
106351
+ "responses": {
106352
+ "type": "array",
106353
+ "items": {
106354
+ "$ref": "#/components/schemas/BaseBookingQuestionResponse"
106355
+ }
104110
106356
  }
104111
106357
  },
104112
106358
  "required": [
@@ -104142,6 +106388,12 @@
104142
106388
  },
104143
106389
  "updatedAt": {
104144
106390
  "type": "string"
106391
+ },
106392
+ "responses": {
106393
+ "type": "array",
106394
+ "items": {
106395
+ "$ref": "#/components/schemas/BookingQuestionResponse"
106396
+ }
104145
106397
  }
104146
106398
  },
104147
106399
  "required": [
@@ -115611,6 +117863,14 @@
115611
117863
  },
115612
117864
  "taxLocation": {
115613
117865
  "$ref": "#/components/schemas/TaxLocationType"
117866
+ },
117867
+ "meetingId": {
117868
+ "type": "string",
117869
+ "nullable": true
117870
+ },
117871
+ "joinBeforeTime": {
117872
+ "type": "number",
117873
+ "nullable": true
115614
117874
  }
115615
117875
  },
115616
117876
  "required": [
@@ -115700,6 +117960,14 @@
115700
117960
  },
115701
117961
  "taxLocation": {
115702
117962
  "$ref": "#/components/schemas/TaxLocationType"
117963
+ },
117964
+ "meetingId": {
117965
+ "type": "string",
117966
+ "nullable": true
117967
+ },
117968
+ "joinBeforeTime": {
117969
+ "type": "number",
117970
+ "nullable": true
115703
117971
  }
115704
117972
  }
115705
117973
  },
@@ -115783,6 +118051,300 @@
115783
118051
  }
115784
118052
  }
115785
118053
  },
118054
+ "BookingSpaceQuestionCreateInputs": {
118055
+ "type": "object",
118056
+ "properties": {
118057
+ "name": {
118058
+ "type": "string"
118059
+ },
118060
+ "type": {
118061
+ "$ref": "#/components/schemas/BookingSpaceQuestionType"
118062
+ },
118063
+ "required": {
118064
+ "type": "boolean"
118065
+ },
118066
+ "label": {
118067
+ "type": "string",
118068
+ "nullable": true
118069
+ },
118070
+ "placeholder": {
118071
+ "type": "string",
118072
+ "nullable": true
118073
+ },
118074
+ "description": {
118075
+ "type": "string",
118076
+ "nullable": true
118077
+ },
118078
+ "default": {
118079
+ "type": "string",
118080
+ "nullable": true
118081
+ },
118082
+ "dashboardVisibility": {
118083
+ "type": "boolean"
118084
+ },
118085
+ "mutable": {
118086
+ "type": "boolean"
118087
+ },
118088
+ "min": {
118089
+ "type": "string",
118090
+ "nullable": true
118091
+ },
118092
+ "max": {
118093
+ "type": "string",
118094
+ "nullable": true
118095
+ },
118096
+ "masked": {
118097
+ "type": "boolean"
118098
+ },
118099
+ "validation": {
118100
+ "type": "string",
118101
+ "nullable": true
118102
+ },
118103
+ "validationMessage": {
118104
+ "type": "string",
118105
+ "nullable": true
118106
+ },
118107
+ "locationOption": {
118108
+ "allOf": [
118109
+ {
118110
+ "$ref": "#/components/schemas/LocationQuestionOption"
118111
+ }
118112
+ ],
118113
+ "nullable": true
118114
+ },
118115
+ "sortOrder": {
118116
+ "oneOf": [
118117
+ {
118118
+ "type": "number"
118119
+ },
118120
+ {
118121
+ "type": "string"
118122
+ }
118123
+ ],
118124
+ "nullable": true
118125
+ },
118126
+ "featured": {
118127
+ "type": "boolean"
118128
+ },
118129
+ "searchListId": {
118130
+ "type": "string",
118131
+ "nullable": true
118132
+ },
118133
+ "choices": {
118134
+ "type": "array",
118135
+ "items": {
118136
+ "type": "string"
118137
+ }
118138
+ }
118139
+ },
118140
+ "required": [
118141
+ "name",
118142
+ "type"
118143
+ ]
118144
+ },
118145
+ "BookingSpaceQuestionUpdateInputs": {
118146
+ "type": "object",
118147
+ "properties": {
118148
+ "name": {
118149
+ "type": "string",
118150
+ "nullable": true
118151
+ },
118152
+ "type": {
118153
+ "allOf": [
118154
+ {
118155
+ "$ref": "#/components/schemas/BookingSpaceQuestionType"
118156
+ }
118157
+ ],
118158
+ "nullable": true
118159
+ },
118160
+ "required": {
118161
+ "type": "boolean"
118162
+ },
118163
+ "label": {
118164
+ "type": "string",
118165
+ "nullable": true
118166
+ },
118167
+ "placeholder": {
118168
+ "type": "string",
118169
+ "nullable": true
118170
+ },
118171
+ "description": {
118172
+ "type": "string",
118173
+ "nullable": true
118174
+ },
118175
+ "default": {
118176
+ "type": "string",
118177
+ "nullable": true
118178
+ },
118179
+ "dashboardVisibility": {
118180
+ "type": "boolean"
118181
+ },
118182
+ "mutable": {
118183
+ "type": "boolean"
118184
+ },
118185
+ "min": {
118186
+ "type": "string",
118187
+ "nullable": true
118188
+ },
118189
+ "max": {
118190
+ "type": "string",
118191
+ "nullable": true
118192
+ },
118193
+ "masked": {
118194
+ "type": "boolean"
118195
+ },
118196
+ "validation": {
118197
+ "type": "string",
118198
+ "nullable": true
118199
+ },
118200
+ "validationMessage": {
118201
+ "type": "string",
118202
+ "nullable": true
118203
+ },
118204
+ "locationOption": {
118205
+ "allOf": [
118206
+ {
118207
+ "$ref": "#/components/schemas/LocationQuestionOption"
118208
+ }
118209
+ ],
118210
+ "nullable": true
118211
+ },
118212
+ "sortOrder": {
118213
+ "oneOf": [
118214
+ {
118215
+ "type": "number"
118216
+ },
118217
+ {
118218
+ "type": "string"
118219
+ }
118220
+ ],
118221
+ "nullable": true
118222
+ },
118223
+ "featured": {
118224
+ "type": "boolean"
118225
+ },
118226
+ "searchListId": {
118227
+ "type": "string",
118228
+ "nullable": true
118229
+ },
118230
+ "choices": {
118231
+ "oneOf": [
118232
+ {
118233
+ "type": "array",
118234
+ "items": {
118235
+ "type": "string"
118236
+ }
118237
+ },
118238
+ {
118239
+ "type": "array",
118240
+ "items": {
118241
+ "$ref": "#/components/schemas/BaseBookingSpaceQuestionChoice"
118242
+ }
118243
+ }
118244
+ ]
118245
+ }
118246
+ }
118247
+ },
118248
+ "BookingSpaceQuestionChoiceCreateInputs": {
118249
+ "type": "object",
118250
+ "properties": {
118251
+ "value": {
118252
+ "type": "string"
118253
+ },
118254
+ "text": {
118255
+ "type": "string",
118256
+ "nullable": true
118257
+ },
118258
+ "description": {
118259
+ "type": "string",
118260
+ "nullable": true
118261
+ },
118262
+ "supply": {
118263
+ "type": "number",
118264
+ "nullable": true
118265
+ },
118266
+ "sortOrder": {
118267
+ "oneOf": [
118268
+ {
118269
+ "type": "number"
118270
+ },
118271
+ {
118272
+ "type": "string"
118273
+ }
118274
+ ],
118275
+ "nullable": true
118276
+ }
118277
+ },
118278
+ "required": [
118279
+ "value"
118280
+ ]
118281
+ },
118282
+ "BookingSpaceQuestionChoiceUpdateInputs": {
118283
+ "type": "object",
118284
+ "properties": {
118285
+ "value": {
118286
+ "type": "string",
118287
+ "nullable": true
118288
+ },
118289
+ "text": {
118290
+ "type": "string",
118291
+ "nullable": true
118292
+ },
118293
+ "description": {
118294
+ "type": "string",
118295
+ "nullable": true
118296
+ },
118297
+ "supply": {
118298
+ "type": "number",
118299
+ "nullable": true
118300
+ },
118301
+ "sortOrder": {
118302
+ "oneOf": [
118303
+ {
118304
+ "type": "number"
118305
+ },
118306
+ {
118307
+ "type": "string"
118308
+ }
118309
+ ],
118310
+ "nullable": true
118311
+ }
118312
+ }
118313
+ },
118314
+ "BookingSpaceQuestionTranslationUpdateInputs": {
118315
+ "type": "object",
118316
+ "properties": {
118317
+ "label": {
118318
+ "type": "string",
118319
+ "nullable": true
118320
+ },
118321
+ "placeholder": {
118322
+ "type": "string",
118323
+ "nullable": true
118324
+ },
118325
+ "description": {
118326
+ "type": "string",
118327
+ "nullable": true
118328
+ }
118329
+ }
118330
+ },
118331
+ "BookingSpaceQuestionChoiceTranslationUpdateInputs": {
118332
+ "type": "object",
118333
+ "properties": {
118334
+ "value": {
118335
+ "type": "string",
118336
+ "nullable": true
118337
+ },
118338
+ "text": {
118339
+ "type": "string",
118340
+ "nullable": true
118341
+ },
118342
+ "description": {
118343
+ "type": "string",
118344
+ "nullable": true
118345
+ }
118346
+ }
118347
+ },
115786
118348
  "BookingCreateInputs": {
115787
118349
  "type": "object",
115788
118350
  "properties": {
@@ -117177,6 +119739,12 @@
117177
119739
  "activityId": {
117178
119740
  "type": "string"
117179
119741
  },
119742
+ "bookingPlaceId": {
119743
+ "type": "string"
119744
+ },
119745
+ "bookingSpaceId": {
119746
+ "type": "string"
119747
+ },
117180
119748
  "title": {
117181
119749
  "type": "string",
117182
119750
  "nullable": true
@@ -117232,6 +119800,12 @@
117232
119800
  "activityId": {
117233
119801
  "type": "string"
117234
119802
  },
119803
+ "bookingPlaceId": {
119804
+ "type": "string"
119805
+ },
119806
+ "bookingSpaceId": {
119807
+ "type": "string"
119808
+ },
117235
119809
  "title": {
117236
119810
  "type": "string",
117237
119811
  "nullable": true