@connectedxm/admin 6.13.1 → 6.14.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
@@ -132,6 +132,10 @@
132
132
  "name": "Events::Activations",
133
133
  "description": "Manage on-site check-ins, control access activations for special zones or sessions, and set permissions for scanning devices and staff"
134
134
  },
135
+ {
136
+ "name": "Events::Activations::Sessions",
137
+ "description": "Operations for events::activations::sessions"
138
+ },
135
139
  {
136
140
  "name": "Events::Addons",
137
141
  "description": "Offer supplementary items or services like exclusive workshops, networking upgrades, merchandise, or special amenities that enhance the attendee experience"
@@ -556,6 +560,10 @@
556
560
  "name": "Surveys::Sections",
557
561
  "description": "Organize survey questions into logical sections, improving survey structure and user experience"
558
562
  },
563
+ {
564
+ "name": "Surveys::Sessions",
565
+ "description": "Operations for surveys::sessions"
566
+ },
559
567
  {
560
568
  "name": "Surveys::Submissions",
561
569
  "description": "View and analyze survey responses submitted by participants, extracting insights and feedback data"
@@ -12833,11 +12841,11 @@
12833
12841
  ]
12834
12842
  }
12835
12843
  },
12836
- "/events/{eventId}/activities": {
12844
+ "/events/{eventId}/activations/{activationId}/sessions": {
12837
12845
  "get": {
12838
- "operationId": "GetEventActivities",
12839
- "summary": "Get Event Activities",
12840
- "description": "Get Event Activities endpoint",
12846
+ "operationId": "GetEventActivationSessions",
12847
+ "summary": "Get Event Activation Sessions",
12848
+ "description": "Get Event Activation Sessions endpoint",
12841
12849
  "parameters": [
12842
12850
  {
12843
12851
  "in": "path",
@@ -12848,123 +12856,13 @@
12848
12856
  "description": "The event identifier",
12849
12857
  "required": true
12850
12858
  },
12851
- {
12852
- "in": "query",
12853
- "name": "featured",
12854
- "schema": {
12855
- "type": "object"
12856
- },
12857
- "description": "Filter by featured",
12858
- "required": false
12859
- },
12860
- {
12861
- "in": "query",
12862
- "name": "status",
12863
- "schema": {
12864
- "$ref": "#/components/schemas/ActivityStatus"
12865
- },
12866
- "description": "Filter by status",
12867
- "required": false
12868
- },
12869
- {
12870
- "in": "query",
12871
- "name": "page",
12872
- "schema": {
12873
- "type": "integer",
12874
- "minimum": 1,
12875
- "default": 1
12876
- },
12877
- "description": "Page number",
12878
- "required": false
12879
- },
12880
- {
12881
- "in": "query",
12882
- "name": "pageSize",
12883
- "schema": {
12884
- "type": "integer",
12885
- "minimum": 1,
12886
- "maximum": 100,
12887
- "default": 25
12888
- },
12889
- "description": "Number of items per page",
12890
- "required": false
12891
- },
12892
- {
12893
- "in": "query",
12894
- "name": "orderBy",
12895
- "schema": {
12896
- "type": "string"
12897
- },
12898
- "description": "Field to order by",
12899
- "required": false
12900
- },
12901
- {
12902
- "in": "query",
12903
- "name": "search",
12904
- "schema": {
12905
- "type": "string"
12906
- },
12907
- "description": "Search query",
12908
- "required": false
12909
- }
12910
- ],
12911
- "responses": {
12912
- "200": {
12913
- "description": "Successful response",
12914
- "content": {
12915
- "application/json": {
12916
- "schema": {
12917
- "type": "object",
12918
- "properties": {
12919
- "status": {
12920
- "type": "string",
12921
- "enum": [
12922
- "ok"
12923
- ]
12924
- },
12925
- "message": {
12926
- "type": "string",
12927
- "example": "Success message."
12928
- },
12929
- "data": {
12930
- "type": "array",
12931
- "items": {
12932
- "$ref": "#/components/schemas/Activity"
12933
- }
12934
- },
12935
- "count": {
12936
- "type": "integer",
12937
- "example": 100
12938
- }
12939
- },
12940
- "required": [
12941
- "status",
12942
- "message",
12943
- "data"
12944
- ]
12945
- }
12946
- }
12947
- }
12948
- }
12949
- },
12950
- "tags": [
12951
- "Events"
12952
- ]
12953
- }
12954
- },
12955
- "/events/{eventId}/addOns": {
12956
- "get": {
12957
- "operationId": "GetEventAddOns",
12958
- "summary": "Get Event Add Ons",
12959
- "description": "Get Event Add Ons endpoint",
12960
- "parameters": [
12961
12859
  {
12962
12860
  "in": "path",
12963
- "name": "eventId",
12861
+ "name": "activationId",
12964
12862
  "schema": {
12965
12863
  "type": "string"
12966
12864
  },
12967
- "description": "The event identifier",
12865
+ "description": "The activation identifier",
12968
12866
  "required": true
12969
12867
  },
12970
12868
  {
@@ -13028,10 +12926,7 @@
13028
12926
  "example": "Success message."
13029
12927
  },
13030
12928
  "data": {
13031
- "type": "array",
13032
- "items": {
13033
- "$ref": "#/components/schemas/EventAddOn"
13034
- }
12929
+ "type": "object"
13035
12930
  },
13036
12931
  "count": {
13037
12932
  "type": "integer",
@@ -13049,76 +12944,15 @@
13049
12944
  }
13050
12945
  },
13051
12946
  "tags": [
13052
- "Events::Addons"
13053
- ]
13054
- },
13055
- "post": {
13056
- "operationId": "CreateEventAddOn",
13057
- "summary": "Create Event Add On",
13058
- "description": "Create Event Add On endpoint",
13059
- "parameters": [
13060
- {
13061
- "in": "path",
13062
- "name": "eventId",
13063
- "schema": {
13064
- "type": "string"
13065
- },
13066
- "description": "The event identifier",
13067
- "required": true
13068
- }
13069
- ],
13070
- "requestBody": {
13071
- "required": true,
13072
- "content": {
13073
- "application/json": {
13074
- "schema": {
13075
- "$ref": "#/components/schemas/EventAddOnCreateInputs"
13076
- }
13077
- }
13078
- }
13079
- },
13080
- "responses": {
13081
- "200": {
13082
- "description": "Successful response",
13083
- "content": {
13084
- "application/json": {
13085
- "schema": {
13086
- "type": "object",
13087
- "properties": {
13088
- "status": {
13089
- "type": "string",
13090
- "enum": [
13091
- "ok"
13092
- ]
13093
- },
13094
- "message": {
13095
- "type": "string",
13096
- "example": "Success message."
13097
- },
13098
- "data": {
13099
- "$ref": "#/components/schemas/EventAddOn"
13100
- }
13101
- },
13102
- "required": [
13103
- "status",
13104
- "message",
13105
- "data"
13106
- ]
13107
- }
13108
- }
13109
- }
13110
- }
13111
- },
13112
- "tags": [
13113
- "Events::Addons"
12947
+ "Events::Activations"
13114
12948
  ]
13115
12949
  }
13116
12950
  },
13117
- "/events/{eventId}/addOns/{addOnId}": {
13118
- "get": {
13119
- "operationId": "GetEventAddOn",
13120
- "summary": "Get Event Add On",
13121
- "description": "Get Event Add On endpoint",
12951
+ "/events/{eventId}/activations/{activationId}/sessions/{sessionId}": {
12952
+ "post": {
12953
+ "operationId": "AddEventActivationSession",
12954
+ "summary": "Add Event Activation Session",
12955
+ "description": "Add Event Activation Session endpoint",
13122
12956
  "parameters": [
13123
12957
  {
13124
12958
  "in": "path",
@@ -13131,80 +12965,501 @@
13131
12965
  },
13132
12966
  {
13133
12967
  "in": "path",
13134
- "name": "addOnId",
13135
- "schema": {
13136
- "type": "string"
13137
- },
13138
- "description": "The addOn identifier",
13139
- "required": true
13140
- }
13141
- ],
13142
- "responses": {
13143
- "200": {
13144
- "description": "Successful response",
13145
- "content": {
13146
- "application/json": {
13147
- "schema": {
13148
- "type": "object",
13149
- "properties": {
13150
- "status": {
13151
- "type": "string",
13152
- "enum": [
13153
- "ok"
13154
- ]
13155
- },
13156
- "message": {
13157
- "type": "string",
13158
- "example": "Success message."
13159
- },
13160
- "data": {
13161
- "$ref": "#/components/schemas/EventAddOn"
13162
- }
13163
- },
13164
- "required": [
13165
- "status",
13166
- "message",
13167
- "data"
13168
- ]
13169
- }
13170
- }
13171
- }
13172
- }
13173
- },
13174
- "tags": [
13175
- "Events::Addons"
13176
- ]
13177
- },
13178
- "put": {
13179
- "operationId": "UpdateEventAddOn",
13180
- "summary": "Update Event Add On",
13181
- "description": "Update Event Add On endpoint",
13182
- "parameters": [
13183
- {
13184
- "in": "path",
13185
- "name": "eventId",
12968
+ "name": "activationId",
13186
12969
  "schema": {
13187
12970
  "type": "string"
13188
12971
  },
13189
- "description": "The event identifier",
12972
+ "description": "The activation identifier",
13190
12973
  "required": true
13191
12974
  },
13192
12975
  {
13193
12976
  "in": "path",
13194
- "name": "addOnId",
12977
+ "name": "sessionId",
13195
12978
  "schema": {
13196
12979
  "type": "string"
13197
12980
  },
13198
- "description": "The addOn identifier",
13199
- "required": true
13200
- },
13201
- {
13202
- "in": "query",
13203
- "name": "addOn",
13204
- "schema": {
13205
- "$ref": "#/components/schemas/EventAddOnUpdateInputs"
13206
- },
13207
- "description": "Filter by addOn",
12981
+ "description": "The session identifier",
12982
+ "required": true
12983
+ }
12984
+ ],
12985
+ "responses": {
12986
+ "200": {
12987
+ "description": "Successful response",
12988
+ "content": {
12989
+ "application/json": {
12990
+ "schema": {
12991
+ "type": "object",
12992
+ "properties": {
12993
+ "status": {
12994
+ "type": "string",
12995
+ "enum": [
12996
+ "ok"
12997
+ ]
12998
+ },
12999
+ "message": {
13000
+ "type": "string",
13001
+ "example": "Success message."
13002
+ },
13003
+ "data": {
13004
+ "type": "object"
13005
+ }
13006
+ },
13007
+ "required": [
13008
+ "status",
13009
+ "message",
13010
+ "data"
13011
+ ]
13012
+ }
13013
+ }
13014
+ }
13015
+ }
13016
+ },
13017
+ "tags": [
13018
+ "Events::Activations::Sessions"
13019
+ ]
13020
+ },
13021
+ "delete": {
13022
+ "operationId": "RemoveEventActivationSession",
13023
+ "summary": "Remove Event Activation Session",
13024
+ "description": "Remove Event Activation Session endpoint",
13025
+ "parameters": [
13026
+ {
13027
+ "in": "path",
13028
+ "name": "eventId",
13029
+ "schema": {
13030
+ "type": "string"
13031
+ },
13032
+ "description": "The event identifier",
13033
+ "required": true
13034
+ },
13035
+ {
13036
+ "in": "path",
13037
+ "name": "activationId",
13038
+ "schema": {
13039
+ "type": "string"
13040
+ },
13041
+ "description": "The activation identifier",
13042
+ "required": true
13043
+ },
13044
+ {
13045
+ "in": "path",
13046
+ "name": "sessionId",
13047
+ "schema": {
13048
+ "type": "string"
13049
+ },
13050
+ "description": "The session identifier",
13051
+ "required": true
13052
+ }
13053
+ ],
13054
+ "responses": {
13055
+ "200": {
13056
+ "description": "Successful response",
13057
+ "content": {
13058
+ "application/json": {
13059
+ "schema": {
13060
+ "type": "object",
13061
+ "properties": {
13062
+ "status": {
13063
+ "type": "string",
13064
+ "enum": [
13065
+ "ok"
13066
+ ]
13067
+ },
13068
+ "message": {
13069
+ "type": "string",
13070
+ "example": "Success message."
13071
+ },
13072
+ "data": {
13073
+ "type": "object"
13074
+ }
13075
+ },
13076
+ "required": [
13077
+ "status",
13078
+ "message",
13079
+ "data"
13080
+ ]
13081
+ }
13082
+ }
13083
+ }
13084
+ }
13085
+ },
13086
+ "tags": [
13087
+ "Events::Activations::Sessions"
13088
+ ]
13089
+ }
13090
+ },
13091
+ "/events/{eventId}/activities": {
13092
+ "get": {
13093
+ "operationId": "GetEventActivities",
13094
+ "summary": "Get Event Activities",
13095
+ "description": "Get Event Activities endpoint",
13096
+ "parameters": [
13097
+ {
13098
+ "in": "path",
13099
+ "name": "eventId",
13100
+ "schema": {
13101
+ "type": "string"
13102
+ },
13103
+ "description": "The event identifier",
13104
+ "required": true
13105
+ },
13106
+ {
13107
+ "in": "query",
13108
+ "name": "featured",
13109
+ "schema": {
13110
+ "type": "object"
13111
+ },
13112
+ "description": "Filter by featured",
13113
+ "required": false
13114
+ },
13115
+ {
13116
+ "in": "query",
13117
+ "name": "status",
13118
+ "schema": {
13119
+ "$ref": "#/components/schemas/ActivityStatus"
13120
+ },
13121
+ "description": "Filter by status",
13122
+ "required": false
13123
+ },
13124
+ {
13125
+ "in": "query",
13126
+ "name": "page",
13127
+ "schema": {
13128
+ "type": "integer",
13129
+ "minimum": 1,
13130
+ "default": 1
13131
+ },
13132
+ "description": "Page number",
13133
+ "required": false
13134
+ },
13135
+ {
13136
+ "in": "query",
13137
+ "name": "pageSize",
13138
+ "schema": {
13139
+ "type": "integer",
13140
+ "minimum": 1,
13141
+ "maximum": 100,
13142
+ "default": 25
13143
+ },
13144
+ "description": "Number of items per page",
13145
+ "required": false
13146
+ },
13147
+ {
13148
+ "in": "query",
13149
+ "name": "orderBy",
13150
+ "schema": {
13151
+ "type": "string"
13152
+ },
13153
+ "description": "Field to order by",
13154
+ "required": false
13155
+ },
13156
+ {
13157
+ "in": "query",
13158
+ "name": "search",
13159
+ "schema": {
13160
+ "type": "string"
13161
+ },
13162
+ "description": "Search query",
13163
+ "required": false
13164
+ }
13165
+ ],
13166
+ "responses": {
13167
+ "200": {
13168
+ "description": "Successful response",
13169
+ "content": {
13170
+ "application/json": {
13171
+ "schema": {
13172
+ "type": "object",
13173
+ "properties": {
13174
+ "status": {
13175
+ "type": "string",
13176
+ "enum": [
13177
+ "ok"
13178
+ ]
13179
+ },
13180
+ "message": {
13181
+ "type": "string",
13182
+ "example": "Success message."
13183
+ },
13184
+ "data": {
13185
+ "type": "array",
13186
+ "items": {
13187
+ "$ref": "#/components/schemas/Activity"
13188
+ }
13189
+ },
13190
+ "count": {
13191
+ "type": "integer",
13192
+ "example": 100
13193
+ }
13194
+ },
13195
+ "required": [
13196
+ "status",
13197
+ "message",
13198
+ "data"
13199
+ ]
13200
+ }
13201
+ }
13202
+ }
13203
+ }
13204
+ },
13205
+ "tags": [
13206
+ "Events"
13207
+ ]
13208
+ }
13209
+ },
13210
+ "/events/{eventId}/addOns": {
13211
+ "get": {
13212
+ "operationId": "GetEventAddOns",
13213
+ "summary": "Get Event Add Ons",
13214
+ "description": "Get Event Add Ons endpoint",
13215
+ "parameters": [
13216
+ {
13217
+ "in": "path",
13218
+ "name": "eventId",
13219
+ "schema": {
13220
+ "type": "string"
13221
+ },
13222
+ "description": "The event identifier",
13223
+ "required": true
13224
+ },
13225
+ {
13226
+ "in": "query",
13227
+ "name": "page",
13228
+ "schema": {
13229
+ "type": "integer",
13230
+ "minimum": 1,
13231
+ "default": 1
13232
+ },
13233
+ "description": "Page number",
13234
+ "required": false
13235
+ },
13236
+ {
13237
+ "in": "query",
13238
+ "name": "pageSize",
13239
+ "schema": {
13240
+ "type": "integer",
13241
+ "minimum": 1,
13242
+ "maximum": 100,
13243
+ "default": 25
13244
+ },
13245
+ "description": "Number of items per page",
13246
+ "required": false
13247
+ },
13248
+ {
13249
+ "in": "query",
13250
+ "name": "orderBy",
13251
+ "schema": {
13252
+ "type": "string"
13253
+ },
13254
+ "description": "Field to order by",
13255
+ "required": false
13256
+ },
13257
+ {
13258
+ "in": "query",
13259
+ "name": "search",
13260
+ "schema": {
13261
+ "type": "string"
13262
+ },
13263
+ "description": "Search query",
13264
+ "required": false
13265
+ }
13266
+ ],
13267
+ "responses": {
13268
+ "200": {
13269
+ "description": "Successful response",
13270
+ "content": {
13271
+ "application/json": {
13272
+ "schema": {
13273
+ "type": "object",
13274
+ "properties": {
13275
+ "status": {
13276
+ "type": "string",
13277
+ "enum": [
13278
+ "ok"
13279
+ ]
13280
+ },
13281
+ "message": {
13282
+ "type": "string",
13283
+ "example": "Success message."
13284
+ },
13285
+ "data": {
13286
+ "type": "array",
13287
+ "items": {
13288
+ "$ref": "#/components/schemas/EventAddOn"
13289
+ }
13290
+ },
13291
+ "count": {
13292
+ "type": "integer",
13293
+ "example": 100
13294
+ }
13295
+ },
13296
+ "required": [
13297
+ "status",
13298
+ "message",
13299
+ "data"
13300
+ ]
13301
+ }
13302
+ }
13303
+ }
13304
+ }
13305
+ },
13306
+ "tags": [
13307
+ "Events::Addons"
13308
+ ]
13309
+ },
13310
+ "post": {
13311
+ "operationId": "CreateEventAddOn",
13312
+ "summary": "Create Event Add On",
13313
+ "description": "Create Event Add On endpoint",
13314
+ "parameters": [
13315
+ {
13316
+ "in": "path",
13317
+ "name": "eventId",
13318
+ "schema": {
13319
+ "type": "string"
13320
+ },
13321
+ "description": "The event identifier",
13322
+ "required": true
13323
+ }
13324
+ ],
13325
+ "requestBody": {
13326
+ "required": true,
13327
+ "content": {
13328
+ "application/json": {
13329
+ "schema": {
13330
+ "$ref": "#/components/schemas/EventAddOnCreateInputs"
13331
+ }
13332
+ }
13333
+ }
13334
+ },
13335
+ "responses": {
13336
+ "200": {
13337
+ "description": "Successful response",
13338
+ "content": {
13339
+ "application/json": {
13340
+ "schema": {
13341
+ "type": "object",
13342
+ "properties": {
13343
+ "status": {
13344
+ "type": "string",
13345
+ "enum": [
13346
+ "ok"
13347
+ ]
13348
+ },
13349
+ "message": {
13350
+ "type": "string",
13351
+ "example": "Success message."
13352
+ },
13353
+ "data": {
13354
+ "$ref": "#/components/schemas/EventAddOn"
13355
+ }
13356
+ },
13357
+ "required": [
13358
+ "status",
13359
+ "message",
13360
+ "data"
13361
+ ]
13362
+ }
13363
+ }
13364
+ }
13365
+ }
13366
+ },
13367
+ "tags": [
13368
+ "Events::Addons"
13369
+ ]
13370
+ }
13371
+ },
13372
+ "/events/{eventId}/addOns/{addOnId}": {
13373
+ "get": {
13374
+ "operationId": "GetEventAddOn",
13375
+ "summary": "Get Event Add On",
13376
+ "description": "Get Event Add On endpoint",
13377
+ "parameters": [
13378
+ {
13379
+ "in": "path",
13380
+ "name": "eventId",
13381
+ "schema": {
13382
+ "type": "string"
13383
+ },
13384
+ "description": "The event identifier",
13385
+ "required": true
13386
+ },
13387
+ {
13388
+ "in": "path",
13389
+ "name": "addOnId",
13390
+ "schema": {
13391
+ "type": "string"
13392
+ },
13393
+ "description": "The addOn identifier",
13394
+ "required": true
13395
+ }
13396
+ ],
13397
+ "responses": {
13398
+ "200": {
13399
+ "description": "Successful response",
13400
+ "content": {
13401
+ "application/json": {
13402
+ "schema": {
13403
+ "type": "object",
13404
+ "properties": {
13405
+ "status": {
13406
+ "type": "string",
13407
+ "enum": [
13408
+ "ok"
13409
+ ]
13410
+ },
13411
+ "message": {
13412
+ "type": "string",
13413
+ "example": "Success message."
13414
+ },
13415
+ "data": {
13416
+ "$ref": "#/components/schemas/EventAddOn"
13417
+ }
13418
+ },
13419
+ "required": [
13420
+ "status",
13421
+ "message",
13422
+ "data"
13423
+ ]
13424
+ }
13425
+ }
13426
+ }
13427
+ }
13428
+ },
13429
+ "tags": [
13430
+ "Events::Addons"
13431
+ ]
13432
+ },
13433
+ "put": {
13434
+ "operationId": "UpdateEventAddOn",
13435
+ "summary": "Update Event Add On",
13436
+ "description": "Update Event Add On endpoint",
13437
+ "parameters": [
13438
+ {
13439
+ "in": "path",
13440
+ "name": "eventId",
13441
+ "schema": {
13442
+ "type": "string"
13443
+ },
13444
+ "description": "The event identifier",
13445
+ "required": true
13446
+ },
13447
+ {
13448
+ "in": "path",
13449
+ "name": "addOnId",
13450
+ "schema": {
13451
+ "type": "string"
13452
+ },
13453
+ "description": "The addOn identifier",
13454
+ "required": true
13455
+ },
13456
+ {
13457
+ "in": "query",
13458
+ "name": "addOn",
13459
+ "schema": {
13460
+ "$ref": "#/components/schemas/EventAddOnUpdateInputs"
13461
+ },
13462
+ "description": "Filter by addOn",
13208
13463
  "required": true
13209
13464
  }
13210
13465
  ],
@@ -40155,10 +40410,229 @@
40155
40410
  },
40156
40411
  "data": {
40157
40412
  "type": "object"
40158
- },
40159
- "count": {
40160
- "type": "integer",
40161
- "example": 100
40413
+ },
40414
+ "count": {
40415
+ "type": "integer",
40416
+ "example": 100
40417
+ }
40418
+ },
40419
+ "required": [
40420
+ "status",
40421
+ "message",
40422
+ "data"
40423
+ ]
40424
+ }
40425
+ }
40426
+ }
40427
+ }
40428
+ },
40429
+ "tags": [
40430
+ "Events::Sessions::Sections"
40431
+ ]
40432
+ },
40433
+ "post": {
40434
+ "operationId": "CreateEventSessionSection",
40435
+ "summary": "Create Event Session Section",
40436
+ "description": "Create Event Session Section endpoint",
40437
+ "parameters": [
40438
+ {
40439
+ "in": "path",
40440
+ "name": "eventId",
40441
+ "schema": {
40442
+ "type": "string"
40443
+ },
40444
+ "description": "The event identifier",
40445
+ "required": true
40446
+ },
40447
+ {
40448
+ "in": "path",
40449
+ "name": "sessionId",
40450
+ "schema": {
40451
+ "type": "string"
40452
+ },
40453
+ "description": "The session identifier",
40454
+ "required": true
40455
+ }
40456
+ ],
40457
+ "requestBody": {
40458
+ "required": true,
40459
+ "content": {
40460
+ "application/json": {
40461
+ "schema": {
40462
+ "$ref": "#/components/schemas/EventSessionSectionCreateInputs"
40463
+ }
40464
+ }
40465
+ }
40466
+ },
40467
+ "responses": {
40468
+ "200": {
40469
+ "description": "Successful response",
40470
+ "content": {
40471
+ "application/json": {
40472
+ "schema": {
40473
+ "type": "object",
40474
+ "properties": {
40475
+ "status": {
40476
+ "type": "string",
40477
+ "enum": [
40478
+ "ok"
40479
+ ]
40480
+ },
40481
+ "message": {
40482
+ "type": "string",
40483
+ "example": "Success message."
40484
+ },
40485
+ "data": {
40486
+ "type": "object"
40487
+ }
40488
+ },
40489
+ "required": [
40490
+ "status",
40491
+ "message",
40492
+ "data"
40493
+ ]
40494
+ }
40495
+ }
40496
+ }
40497
+ }
40498
+ },
40499
+ "tags": [
40500
+ "Events::Sessions::Sections"
40501
+ ]
40502
+ }
40503
+ },
40504
+ "/events/{eventId}/sessions/{sessionId}/sections/{sectionId}": {
40505
+ "get": {
40506
+ "operationId": "GetEventSessionSection",
40507
+ "summary": "Get Event Session Section",
40508
+ "description": "Get Event Session Section endpoint",
40509
+ "parameters": [
40510
+ {
40511
+ "in": "path",
40512
+ "name": "eventId",
40513
+ "schema": {
40514
+ "type": "string"
40515
+ },
40516
+ "description": "The event identifier",
40517
+ "required": true
40518
+ },
40519
+ {
40520
+ "in": "path",
40521
+ "name": "sessionId",
40522
+ "schema": {
40523
+ "type": "string"
40524
+ },
40525
+ "description": "The session identifier",
40526
+ "required": true
40527
+ },
40528
+ {
40529
+ "in": "path",
40530
+ "name": "sectionId",
40531
+ "schema": {
40532
+ "type": "string"
40533
+ },
40534
+ "description": "The section identifier",
40535
+ "required": true
40536
+ }
40537
+ ],
40538
+ "responses": {
40539
+ "200": {
40540
+ "description": "Successful response",
40541
+ "content": {
40542
+ "application/json": {
40543
+ "schema": {
40544
+ "type": "object",
40545
+ "properties": {
40546
+ "status": {
40547
+ "type": "string",
40548
+ "enum": [
40549
+ "ok"
40550
+ ]
40551
+ },
40552
+ "message": {
40553
+ "type": "string",
40554
+ "example": "Success message."
40555
+ },
40556
+ "data": {
40557
+ "type": "object"
40558
+ }
40559
+ },
40560
+ "required": [
40561
+ "status",
40562
+ "message",
40563
+ "data"
40564
+ ]
40565
+ }
40566
+ }
40567
+ }
40568
+ }
40569
+ },
40570
+ "tags": [
40571
+ "Events::Sessions::Sections"
40572
+ ]
40573
+ },
40574
+ "put": {
40575
+ "operationId": "UpdateEventSessionSection",
40576
+ "summary": "Update Event Session Section",
40577
+ "description": "Update Event Session Section endpoint",
40578
+ "parameters": [
40579
+ {
40580
+ "in": "path",
40581
+ "name": "eventId",
40582
+ "schema": {
40583
+ "type": "string"
40584
+ },
40585
+ "description": "The event identifier",
40586
+ "required": true
40587
+ },
40588
+ {
40589
+ "in": "path",
40590
+ "name": "sessionId",
40591
+ "schema": {
40592
+ "type": "string"
40593
+ },
40594
+ "description": "The session identifier",
40595
+ "required": true
40596
+ },
40597
+ {
40598
+ "in": "path",
40599
+ "name": "sectionId",
40600
+ "schema": {
40601
+ "type": "string"
40602
+ },
40603
+ "description": "The section identifier",
40604
+ "required": true
40605
+ },
40606
+ {
40607
+ "in": "query",
40608
+ "name": "section",
40609
+ "schema": {
40610
+ "$ref": "#/components/schemas/EventSessionSectionUpdateInputs"
40611
+ },
40612
+ "description": "Filter by section",
40613
+ "required": true
40614
+ }
40615
+ ],
40616
+ "responses": {
40617
+ "200": {
40618
+ "description": "Successful response",
40619
+ "content": {
40620
+ "application/json": {
40621
+ "schema": {
40622
+ "type": "object",
40623
+ "properties": {
40624
+ "status": {
40625
+ "type": "string",
40626
+ "enum": [
40627
+ "ok"
40628
+ ]
40629
+ },
40630
+ "message": {
40631
+ "type": "string",
40632
+ "example": "Success message."
40633
+ },
40634
+ "data": {
40635
+ "type": "object"
40162
40636
  }
40163
40637
  },
40164
40638
  "required": [
@@ -40175,10 +40649,10 @@
40175
40649
  "Events::Sessions::Sections"
40176
40650
  ]
40177
40651
  },
40178
- "post": {
40179
- "operationId": "CreateEventSessionSection",
40180
- "summary": "Create Event Session Section",
40181
- "description": "Create Event Session Section endpoint",
40652
+ "delete": {
40653
+ "operationId": "DeleteEventSessionSection",
40654
+ "summary": "Delete Event Session Section",
40655
+ "description": "Delete Event Session Section endpoint",
40182
40656
  "parameters": [
40183
40657
  {
40184
40658
  "in": "path",
@@ -40197,18 +40671,17 @@
40197
40671
  },
40198
40672
  "description": "The session identifier",
40199
40673
  "required": true
40674
+ },
40675
+ {
40676
+ "in": "path",
40677
+ "name": "sectionId",
40678
+ "schema": {
40679
+ "type": "string"
40680
+ },
40681
+ "description": "The section identifier",
40682
+ "required": true
40200
40683
  }
40201
40684
  ],
40202
- "requestBody": {
40203
- "required": true,
40204
- "content": {
40205
- "application/json": {
40206
- "schema": {
40207
- "$ref": "#/components/schemas/EventSessionSectionCreateInputs"
40208
- }
40209
- }
40210
- }
40211
- },
40212
40685
  "responses": {
40213
40686
  "200": {
40214
40687
  "description": "Successful response",
@@ -40228,7 +40701,7 @@
40228
40701
  "example": "Success message."
40229
40702
  },
40230
40703
  "data": {
40231
- "type": "object"
40704
+ "nullable": true
40232
40705
  }
40233
40706
  },
40234
40707
  "required": [
@@ -40246,11 +40719,11 @@
40246
40719
  ]
40247
40720
  }
40248
40721
  },
40249
- "/events/{eventId}/sessions/{sessionId}/sections/{sectionId}": {
40722
+ "/events/{eventId}/sessions/{sessionId}/sections/{sectionId}/questions": {
40250
40723
  "get": {
40251
- "operationId": "GetEventSessionSection",
40252
- "summary": "Get Event Session Section",
40253
- "description": "Get Event Session Section endpoint",
40724
+ "operationId": "GetEventSessionSectionQuestions",
40725
+ "summary": "Get Event Session Section Questions",
40726
+ "description": "Get Event Session Section Questions endpoint",
40254
40727
  "parameters": [
40255
40728
  {
40256
40729
  "in": "path",
@@ -40278,6 +40751,47 @@
40278
40751
  },
40279
40752
  "description": "The section identifier",
40280
40753
  "required": true
40754
+ },
40755
+ {
40756
+ "in": "query",
40757
+ "name": "page",
40758
+ "schema": {
40759
+ "type": "integer",
40760
+ "minimum": 1,
40761
+ "default": 1
40762
+ },
40763
+ "description": "Page number",
40764
+ "required": false
40765
+ },
40766
+ {
40767
+ "in": "query",
40768
+ "name": "pageSize",
40769
+ "schema": {
40770
+ "type": "integer",
40771
+ "minimum": 1,
40772
+ "maximum": 100,
40773
+ "default": 25
40774
+ },
40775
+ "description": "Number of items per page",
40776
+ "required": false
40777
+ },
40778
+ {
40779
+ "in": "query",
40780
+ "name": "orderBy",
40781
+ "schema": {
40782
+ "type": "string"
40783
+ },
40784
+ "description": "Field to order by",
40785
+ "required": false
40786
+ },
40787
+ {
40788
+ "in": "query",
40789
+ "name": "search",
40790
+ "schema": {
40791
+ "type": "string"
40792
+ },
40793
+ "description": "Search query",
40794
+ "required": false
40281
40795
  }
40282
40796
  ],
40283
40797
  "responses": {
@@ -40300,6 +40814,10 @@
40300
40814
  },
40301
40815
  "data": {
40302
40816
  "type": "object"
40817
+ },
40818
+ "count": {
40819
+ "type": "integer",
40820
+ "example": 100
40303
40821
  }
40304
40822
  },
40305
40823
  "required": [
@@ -40315,11 +40833,13 @@
40315
40833
  "tags": [
40316
40834
  "Events::Sessions::Sections"
40317
40835
  ]
40318
- },
40836
+ }
40837
+ },
40838
+ "/events/{eventId}/sessions/{sessionId}/sections/{sectionId}/questions/reorder": {
40319
40839
  "put": {
40320
- "operationId": "UpdateEventSessionSection",
40321
- "summary": "Update Event Session Section",
40322
- "description": "Update Event Session Section endpoint",
40840
+ "operationId": "ReorderEventSessionSectionQuestions",
40841
+ "summary": "Reorder Event Session Section Questions",
40842
+ "description": "Reorder Event Session Section Questions endpoint",
40323
40843
  "parameters": [
40324
40844
  {
40325
40845
  "in": "path",
@@ -40350,11 +40870,14 @@
40350
40870
  },
40351
40871
  {
40352
40872
  "in": "query",
40353
- "name": "section",
40873
+ "name": "questionIds",
40354
40874
  "schema": {
40355
- "$ref": "#/components/schemas/EventSessionSectionUpdateInputs"
40875
+ "type": "array",
40876
+ "items": {
40877
+ "type": "string"
40878
+ }
40356
40879
  },
40357
- "description": "Filter by section",
40880
+ "description": "Filter by questionIds",
40358
40881
  "required": true
40359
40882
  }
40360
40883
  ],
@@ -40393,11 +40916,13 @@
40393
40916
  "tags": [
40394
40917
  "Events::Sessions::Sections"
40395
40918
  ]
40396
- },
40397
- "delete": {
40398
- "operationId": "DeleteEventSessionSection",
40399
- "summary": "Delete Event Session Section",
40400
- "description": "Delete Event Session Section endpoint",
40919
+ }
40920
+ },
40921
+ "/events/{eventId}/sessions/{sessionId}/sections/{sectionId}/questions/{questionId}": {
40922
+ "post": {
40923
+ "operationId": "AddEventSessionSectionQuestion",
40924
+ "summary": "Add Event Session Section Question",
40925
+ "description": "Add Event Session Section Question endpoint",
40401
40926
  "parameters": [
40402
40927
  {
40403
40928
  "in": "path",
@@ -40425,6 +40950,15 @@
40425
40950
  },
40426
40951
  "description": "The section identifier",
40427
40952
  "required": true
40953
+ },
40954
+ {
40955
+ "in": "path",
40956
+ "name": "questionId",
40957
+ "schema": {
40958
+ "type": "string"
40959
+ },
40960
+ "description": "The question identifier",
40961
+ "required": true
40428
40962
  }
40429
40963
  ],
40430
40964
  "responses": {
@@ -40446,7 +40980,7 @@
40446
40980
  "example": "Success message."
40447
40981
  },
40448
40982
  "data": {
40449
- "nullable": true
40983
+ "type": "object"
40450
40984
  }
40451
40985
  },
40452
40986
  "required": [
@@ -40462,13 +40996,11 @@
40462
40996
  "tags": [
40463
40997
  "Events::Sessions::Sections"
40464
40998
  ]
40465
- }
40466
- },
40467
- "/events/{eventId}/sessions/{sessionId}/sections/{sectionId}/questions": {
40468
- "get": {
40469
- "operationId": "GetEventSessionSectionQuestions",
40470
- "summary": "Get Event Session Section Questions",
40471
- "description": "Get Event Session Section Questions endpoint",
40999
+ },
41000
+ "put": {
41001
+ "operationId": "UpdateEventSessionSectionQuestion",
41002
+ "summary": "Update Event Session Section Question",
41003
+ "description": "Update Event Session Section Question endpoint",
40472
41004
  "parameters": [
40473
41005
  {
40474
41006
  "in": "path",
@@ -40498,45 +41030,22 @@
40498
41030
  "required": true
40499
41031
  },
40500
41032
  {
40501
- "in": "query",
40502
- "name": "page",
40503
- "schema": {
40504
- "type": "integer",
40505
- "minimum": 1,
40506
- "default": 1
40507
- },
40508
- "description": "Page number",
40509
- "required": false
40510
- },
40511
- {
40512
- "in": "query",
40513
- "name": "pageSize",
40514
- "schema": {
40515
- "type": "integer",
40516
- "minimum": 1,
40517
- "maximum": 100,
40518
- "default": 25
40519
- },
40520
- "description": "Number of items per page",
40521
- "required": false
40522
- },
40523
- {
40524
- "in": "query",
40525
- "name": "orderBy",
41033
+ "in": "path",
41034
+ "name": "questionId",
40526
41035
  "schema": {
40527
41036
  "type": "string"
40528
41037
  },
40529
- "description": "Field to order by",
40530
- "required": false
41038
+ "description": "The question identifier",
41039
+ "required": true
40531
41040
  },
40532
41041
  {
40533
41042
  "in": "query",
40534
- "name": "search",
41043
+ "name": "sortOrder",
40535
41044
  "schema": {
40536
- "type": "string"
41045
+ "type": "number"
40537
41046
  },
40538
- "description": "Search query",
40539
- "required": false
41047
+ "description": "Filter by sortOrder",
41048
+ "required": true
40540
41049
  }
40541
41050
  ],
40542
41051
  "responses": {
@@ -40559,10 +41068,6 @@
40559
41068
  },
40560
41069
  "data": {
40561
41070
  "type": "object"
40562
- },
40563
- "count": {
40564
- "type": "integer",
40565
- "example": 100
40566
41071
  }
40567
41072
  },
40568
41073
  "required": [
@@ -40578,13 +41083,11 @@
40578
41083
  "tags": [
40579
41084
  "Events::Sessions::Sections"
40580
41085
  ]
40581
- }
40582
- },
40583
- "/events/{eventId}/sessions/{sessionId}/sections/{sectionId}/questions/reorder": {
40584
- "put": {
40585
- "operationId": "ReorderEventSessionSectionQuestions",
40586
- "summary": "Reorder Event Session Section Questions",
40587
- "description": "Reorder Event Session Section Questions endpoint",
41086
+ },
41087
+ "delete": {
41088
+ "operationId": "RemoveEventSessionSectionQuestion",
41089
+ "summary": "Remove Event Session Section Question",
41090
+ "description": "Remove Event Session Section Question endpoint",
40588
41091
  "parameters": [
40589
41092
  {
40590
41093
  "in": "path",
@@ -40614,15 +41117,12 @@
40614
41117
  "required": true
40615
41118
  },
40616
41119
  {
40617
- "in": "query",
40618
- "name": "questionIds",
41120
+ "in": "path",
41121
+ "name": "questionId",
40619
41122
  "schema": {
40620
- "type": "array",
40621
- "items": {
40622
- "type": "string"
40623
- }
41123
+ "type": "string"
40624
41124
  },
40625
- "description": "Filter by questionIds",
41125
+ "description": "The question identifier",
40626
41126
  "required": true
40627
41127
  }
40628
41128
  ],
@@ -40663,11 +41163,11 @@
40663
41163
  ]
40664
41164
  }
40665
41165
  },
40666
- "/events/{eventId}/sessions/{sessionId}/sections/{sectionId}/questions/{questionId}": {
40667
- "post": {
40668
- "operationId": "AddEventSessionSectionQuestion",
40669
- "summary": "Add Event Session Section Question",
40670
- "description": "Add Event Session Section Question endpoint",
41166
+ "/events/{eventId}/sessions/{sessionId}/speakers": {
41167
+ "get": {
41168
+ "operationId": "GetEventSessionSpeakers",
41169
+ "summary": "Get Event Session Speakers",
41170
+ "description": "Get Event Session Speakers endpoint",
40671
41171
  "parameters": [
40672
41172
  {
40673
41173
  "in": "path",
@@ -40688,22 +41188,45 @@
40688
41188
  "required": true
40689
41189
  },
40690
41190
  {
40691
- "in": "path",
40692
- "name": "sectionId",
41191
+ "in": "query",
41192
+ "name": "page",
41193
+ "schema": {
41194
+ "type": "integer",
41195
+ "minimum": 1,
41196
+ "default": 1
41197
+ },
41198
+ "description": "Page number",
41199
+ "required": false
41200
+ },
41201
+ {
41202
+ "in": "query",
41203
+ "name": "pageSize",
41204
+ "schema": {
41205
+ "type": "integer",
41206
+ "minimum": 1,
41207
+ "maximum": 100,
41208
+ "default": 25
41209
+ },
41210
+ "description": "Number of items per page",
41211
+ "required": false
41212
+ },
41213
+ {
41214
+ "in": "query",
41215
+ "name": "orderBy",
40693
41216
  "schema": {
40694
41217
  "type": "string"
40695
41218
  },
40696
- "description": "The section identifier",
40697
- "required": true
41219
+ "description": "Field to order by",
41220
+ "required": false
40698
41221
  },
40699
41222
  {
40700
- "in": "path",
40701
- "name": "questionId",
41223
+ "in": "query",
41224
+ "name": "search",
40702
41225
  "schema": {
40703
41226
  "type": "string"
40704
41227
  },
40705
- "description": "The question identifier",
40706
- "required": true
41228
+ "description": "Search query",
41229
+ "required": false
40707
41230
  }
40708
41231
  ],
40709
41232
  "responses": {
@@ -40726,6 +41249,10 @@
40726
41249
  },
40727
41250
  "data": {
40728
41251
  "type": "object"
41252
+ },
41253
+ "count": {
41254
+ "type": "integer",
41255
+ "example": 100
40729
41256
  }
40730
41257
  },
40731
41258
  "required": [
@@ -40739,13 +41266,15 @@
40739
41266
  }
40740
41267
  },
40741
41268
  "tags": [
40742
- "Events::Sessions::Sections"
41269
+ "Events::Sessions"
40743
41270
  ]
40744
- },
40745
- "put": {
40746
- "operationId": "UpdateEventSessionSectionQuestion",
40747
- "summary": "Update Event Session Section Question",
40748
- "description": "Update Event Session Section Question endpoint",
41271
+ }
41272
+ },
41273
+ "/events/{eventId}/sessions/{sessionId}/speakers/{speakerId}": {
41274
+ "post": {
41275
+ "operationId": "AddEventSessionSpeaker",
41276
+ "summary": "Add Event Session Speaker",
41277
+ "description": "Add Event Session Speaker endpoint",
40749
41278
  "parameters": [
40750
41279
  {
40751
41280
  "in": "path",
@@ -40767,29 +41296,11 @@
40767
41296
  },
40768
41297
  {
40769
41298
  "in": "path",
40770
- "name": "sectionId",
40771
- "schema": {
40772
- "type": "string"
40773
- },
40774
- "description": "The section identifier",
40775
- "required": true
40776
- },
40777
- {
40778
- "in": "path",
40779
- "name": "questionId",
41299
+ "name": "speakerId",
40780
41300
  "schema": {
40781
41301
  "type": "string"
40782
41302
  },
40783
- "description": "The question identifier",
40784
- "required": true
40785
- },
40786
- {
40787
- "in": "query",
40788
- "name": "sortOrder",
40789
- "schema": {
40790
- "type": "number"
40791
- },
40792
- "description": "Filter by sortOrder",
41303
+ "description": "The speaker identifier",
40793
41304
  "required": true
40794
41305
  }
40795
41306
  ],
@@ -40826,13 +41337,13 @@
40826
41337
  }
40827
41338
  },
40828
41339
  "tags": [
40829
- "Events::Sessions::Sections"
41340
+ "Events::Sessions"
40830
41341
  ]
40831
41342
  },
40832
41343
  "delete": {
40833
- "operationId": "RemoveEventSessionSectionQuestion",
40834
- "summary": "Remove Event Session Section Question",
40835
- "description": "Remove Event Session Section Question endpoint",
41344
+ "operationId": "RemoveEventSessionSpeaker",
41345
+ "summary": "Remove Event Session Speaker",
41346
+ "description": "Remove Event Session Speaker endpoint",
40836
41347
  "parameters": [
40837
41348
  {
40838
41349
  "in": "path",
@@ -40854,20 +41365,11 @@
40854
41365
  },
40855
41366
  {
40856
41367
  "in": "path",
40857
- "name": "sectionId",
40858
- "schema": {
40859
- "type": "string"
40860
- },
40861
- "description": "The section identifier",
40862
- "required": true
40863
- },
40864
- {
40865
- "in": "path",
40866
- "name": "questionId",
41368
+ "name": "speakerId",
40867
41369
  "schema": {
40868
41370
  "type": "string"
40869
41371
  },
40870
- "description": "The question identifier",
41372
+ "description": "The speaker identifier",
40871
41373
  "required": true
40872
41374
  }
40873
41375
  ],
@@ -40904,15 +41406,15 @@
40904
41406
  }
40905
41407
  },
40906
41408
  "tags": [
40907
- "Events::Sessions::Sections"
41409
+ "Events::Sessions"
40908
41410
  ]
40909
41411
  }
40910
41412
  },
40911
- "/events/{eventId}/sessions/{sessionId}/speakers": {
41413
+ "/events/{eventId}/sessions/{sessionId}/sponsors": {
40912
41414
  "get": {
40913
- "operationId": "GetEventSessionSpeakers",
40914
- "summary": "Get Event Session Speakers",
40915
- "description": "Get Event Session Speakers endpoint",
41415
+ "operationId": "GetEventSessionSponsors",
41416
+ "summary": "Get Event Session Sponsors",
41417
+ "description": "Get Event Session Sponsors endpoint",
40916
41418
  "parameters": [
40917
41419
  {
40918
41420
  "in": "path",
@@ -40993,7 +41495,10 @@
40993
41495
  "example": "Success message."
40994
41496
  },
40995
41497
  "data": {
40996
- "type": "object"
41498
+ "type": "array",
41499
+ "items": {
41500
+ "$ref": "#/components/schemas/Account"
41501
+ }
40997
41502
  },
40998
41503
  "count": {
40999
41504
  "type": "integer",
@@ -41015,11 +41520,11 @@
41015
41520
  ]
41016
41521
  }
41017
41522
  },
41018
- "/events/{eventId}/sessions/{sessionId}/speakers/{speakerId}": {
41523
+ "/events/{eventId}/sessions/{sessionId}/sponsors/{sponsorId}": {
41019
41524
  "post": {
41020
- "operationId": "AddEventSessionSpeaker",
41021
- "summary": "Add Event Session Speaker",
41022
- "description": "Add Event Session Speaker endpoint",
41525
+ "operationId": "AddEventSessionSponsor",
41526
+ "summary": "Add Event Session Sponsor",
41527
+ "description": "Add Event Session Sponsor endpoint",
41023
41528
  "parameters": [
41024
41529
  {
41025
41530
  "in": "path",
@@ -41041,11 +41546,11 @@
41041
41546
  },
41042
41547
  {
41043
41548
  "in": "path",
41044
- "name": "speakerId",
41549
+ "name": "sponsorId",
41045
41550
  "schema": {
41046
41551
  "type": "string"
41047
41552
  },
41048
- "description": "The speaker identifier",
41553
+ "description": "The sponsor identifier",
41049
41554
  "required": true
41050
41555
  }
41051
41556
  ],
@@ -41086,9 +41591,9 @@
41086
41591
  ]
41087
41592
  },
41088
41593
  "delete": {
41089
- "operationId": "RemoveEventSessionSpeaker",
41090
- "summary": "Remove Event Session Speaker",
41091
- "description": "Remove Event Session Speaker endpoint",
41594
+ "operationId": "RemoveEventSessionSponsor",
41595
+ "summary": "Remove Event Session Sponsor",
41596
+ "description": "Remove Event Session Sponsor endpoint",
41092
41597
  "parameters": [
41093
41598
  {
41094
41599
  "in": "path",
@@ -41110,11 +41615,11 @@
41110
41615
  },
41111
41616
  {
41112
41617
  "in": "path",
41113
- "name": "speakerId",
41618
+ "name": "sponsorId",
41114
41619
  "schema": {
41115
41620
  "type": "string"
41116
41621
  },
41117
- "description": "The speaker identifier",
41622
+ "description": "The sponsor identifier",
41118
41623
  "required": true
41119
41624
  }
41120
41625
  ],
@@ -41155,11 +41660,11 @@
41155
41660
  ]
41156
41661
  }
41157
41662
  },
41158
- "/events/{eventId}/sessions/{sessionId}/sponsors": {
41663
+ "/events/{eventId}/sessions/{sessionId}/tiers": {
41159
41664
  "get": {
41160
- "operationId": "GetEventSessionSponsors",
41161
- "summary": "Get Event Session Sponsors",
41162
- "description": "Get Event Session Sponsors endpoint",
41665
+ "operationId": "GetEventSessionTiers",
41666
+ "summary": "Get Event Session Tiers",
41667
+ "description": "Get Event Session Tiers endpoint",
41163
41668
  "parameters": [
41164
41669
  {
41165
41670
  "in": "path",
@@ -41242,7 +41747,7 @@
41242
41747
  "data": {
41243
41748
  "type": "array",
41244
41749
  "items": {
41245
- "$ref": "#/components/schemas/Account"
41750
+ "$ref": "#/components/schemas/Tier"
41246
41751
  }
41247
41752
  },
41248
41753
  "count": {
@@ -41265,11 +41770,11 @@
41265
41770
  ]
41266
41771
  }
41267
41772
  },
41268
- "/events/{eventId}/sessions/{sessionId}/sponsors/{sponsorId}": {
41773
+ "/events/{eventId}/sessions/{sessionId}/tiers/{tierId}": {
41269
41774
  "post": {
41270
- "operationId": "AddEventSessionSponsor",
41271
- "summary": "Add Event Session Sponsor",
41272
- "description": "Add Event Session Sponsor endpoint",
41775
+ "operationId": "AddEventSessionTier",
41776
+ "summary": "Add Event Session Tier",
41777
+ "description": "Add Event Session Tier endpoint",
41273
41778
  "parameters": [
41274
41779
  {
41275
41780
  "in": "path",
@@ -41291,11 +41796,11 @@
41291
41796
  },
41292
41797
  {
41293
41798
  "in": "path",
41294
- "name": "sponsorId",
41799
+ "name": "tierId",
41295
41800
  "schema": {
41296
41801
  "type": "string"
41297
41802
  },
41298
- "description": "The sponsor identifier",
41803
+ "description": "The tier identifier",
41299
41804
  "required": true
41300
41805
  }
41301
41806
  ],
@@ -41318,7 +41823,7 @@
41318
41823
  "example": "Success message."
41319
41824
  },
41320
41825
  "data": {
41321
- "type": "object"
41826
+ "$ref": "#/components/schemas/EventSession"
41322
41827
  }
41323
41828
  },
41324
41829
  "required": [
@@ -41336,9 +41841,9 @@
41336
41841
  ]
41337
41842
  },
41338
41843
  "delete": {
41339
- "operationId": "RemoveEventSessionSponsor",
41340
- "summary": "Remove Event Session Sponsor",
41341
- "description": "Remove Event Session Sponsor endpoint",
41844
+ "operationId": "RemoveEventSessionTier",
41845
+ "summary": "Remove Event Session Tier",
41846
+ "description": "Remove Event Session Tier endpoint",
41342
41847
  "parameters": [
41343
41848
  {
41344
41849
  "in": "path",
@@ -41360,11 +41865,11 @@
41360
41865
  },
41361
41866
  {
41362
41867
  "in": "path",
41363
- "name": "sponsorId",
41868
+ "name": "tierId",
41364
41869
  "schema": {
41365
41870
  "type": "string"
41366
41871
  },
41367
- "description": "The sponsor identifier",
41872
+ "description": "The tier identifier",
41368
41873
  "required": true
41369
41874
  }
41370
41875
  ],
@@ -41405,11 +41910,11 @@
41405
41910
  ]
41406
41911
  }
41407
41912
  },
41408
- "/events/{eventId}/sessions/{sessionId}/tiers": {
41913
+ "/events/{eventId}/sessions/{sessionId}/tracks": {
41409
41914
  "get": {
41410
- "operationId": "GetEventSessionTiers",
41411
- "summary": "Get Event Session Tiers",
41412
- "description": "Get Event Session Tiers endpoint",
41915
+ "operationId": "GetEventSessionTracks",
41916
+ "summary": "Get Event Session Tracks",
41917
+ "description": "Get Event Session Tracks endpoint",
41413
41918
  "parameters": [
41414
41919
  {
41415
41920
  "in": "path",
@@ -41492,7 +41997,7 @@
41492
41997
  "data": {
41493
41998
  "type": "array",
41494
41999
  "items": {
41495
- "$ref": "#/components/schemas/Tier"
42000
+ "$ref": "#/components/schemas/EventTrack"
41496
42001
  }
41497
42002
  },
41498
42003
  "count": {
@@ -41515,11 +42020,11 @@
41515
42020
  ]
41516
42021
  }
41517
42022
  },
41518
- "/events/{eventId}/sessions/{sessionId}/tiers/{tierId}": {
42023
+ "/events/{eventId}/sessions/{sessionId}/tracks/{trackId}": {
41519
42024
  "post": {
41520
- "operationId": "AddEventSessionTier",
41521
- "summary": "Add Event Session Tier",
41522
- "description": "Add Event Session Tier endpoint",
42025
+ "operationId": "AddEventSessionTrack",
42026
+ "summary": "Add Event Session Track",
42027
+ "description": "Add Event Session Track endpoint",
41523
42028
  "parameters": [
41524
42029
  {
41525
42030
  "in": "path",
@@ -41541,11 +42046,11 @@
41541
42046
  },
41542
42047
  {
41543
42048
  "in": "path",
41544
- "name": "tierId",
42049
+ "name": "trackId",
41545
42050
  "schema": {
41546
42051
  "type": "string"
41547
42052
  },
41548
- "description": "The tier identifier",
42053
+ "description": "The track identifier",
41549
42054
  "required": true
41550
42055
  }
41551
42056
  ],
@@ -41586,9 +42091,9 @@
41586
42091
  ]
41587
42092
  },
41588
42093
  "delete": {
41589
- "operationId": "RemoveEventSessionTier",
41590
- "summary": "Remove Event Session Tier",
41591
- "description": "Remove Event Session Tier endpoint",
42094
+ "operationId": "RemoveEventSessionTrack",
42095
+ "summary": "Remove Event Session Track",
42096
+ "description": "Remove Event Session Track endpoint",
41592
42097
  "parameters": [
41593
42098
  {
41594
42099
  "in": "path",
@@ -41610,11 +42115,11 @@
41610
42115
  },
41611
42116
  {
41612
42117
  "in": "path",
41613
- "name": "tierId",
42118
+ "name": "trackId",
41614
42119
  "schema": {
41615
42120
  "type": "string"
41616
42121
  },
41617
- "description": "The tier identifier",
42122
+ "description": "The track identifier",
41618
42123
  "required": true
41619
42124
  }
41620
42125
  ],
@@ -41655,11 +42160,11 @@
41655
42160
  ]
41656
42161
  }
41657
42162
  },
41658
- "/events/{eventId}/sessions/{sessionId}/tracks": {
42163
+ "/events/{eventId}/speakers": {
41659
42164
  "get": {
41660
- "operationId": "GetEventSessionTracks",
41661
- "summary": "Get Event Session Tracks",
41662
- "description": "Get Event Session Tracks endpoint",
42165
+ "operationId": "GetEventSpeakers",
42166
+ "summary": "Get Event Speakers",
42167
+ "description": "Get Event Speakers endpoint",
41663
42168
  "parameters": [
41664
42169
  {
41665
42170
  "in": "path",
@@ -41670,15 +42175,6 @@
41670
42175
  "description": "The event identifier",
41671
42176
  "required": true
41672
42177
  },
41673
- {
41674
- "in": "path",
41675
- "name": "sessionId",
41676
- "schema": {
41677
- "type": "string"
41678
- },
41679
- "description": "The session identifier",
41680
- "required": true
41681
- },
41682
42178
  {
41683
42179
  "in": "query",
41684
42180
  "name": "page",
@@ -41742,7 +42238,7 @@
41742
42238
  "data": {
41743
42239
  "type": "array",
41744
42240
  "items": {
41745
- "$ref": "#/components/schemas/EventTrack"
42241
+ "$ref": "#/components/schemas/EventSpeaker"
41746
42242
  }
41747
42243
  },
41748
42244
  "count": {
@@ -41761,15 +42257,13 @@
41761
42257
  }
41762
42258
  },
41763
42259
  "tags": [
41764
- "Events::Sessions"
42260
+ "Events::Speakers"
41765
42261
  ]
41766
- }
41767
- },
41768
- "/events/{eventId}/sessions/{sessionId}/tracks/{trackId}": {
42262
+ },
41769
42263
  "post": {
41770
- "operationId": "AddEventSessionTrack",
41771
- "summary": "Add Event Session Track",
41772
- "description": "Add Event Session Track endpoint",
42264
+ "operationId": "CreateEventSpeaker",
42265
+ "summary": "Create Event Speaker",
42266
+ "description": "Create Event Speaker endpoint",
41773
42267
  "parameters": [
41774
42268
  {
41775
42269
  "in": "path",
@@ -41779,26 +42273,18 @@
41779
42273
  },
41780
42274
  "description": "The event identifier",
41781
42275
  "required": true
41782
- },
41783
- {
41784
- "in": "path",
41785
- "name": "sessionId",
41786
- "schema": {
41787
- "type": "string"
41788
- },
41789
- "description": "The session identifier",
41790
- "required": true
41791
- },
41792
- {
41793
- "in": "path",
41794
- "name": "trackId",
41795
- "schema": {
41796
- "type": "string"
41797
- },
41798
- "description": "The track identifier",
41799
- "required": true
41800
42276
  }
41801
42277
  ],
42278
+ "requestBody": {
42279
+ "required": true,
42280
+ "content": {
42281
+ "application/json": {
42282
+ "schema": {
42283
+ "$ref": "#/components/schemas/EventSpeakerCreateInputs"
42284
+ }
42285
+ }
42286
+ }
42287
+ },
41802
42288
  "responses": {
41803
42289
  "200": {
41804
42290
  "description": "Successful response",
@@ -41818,7 +42304,7 @@
41818
42304
  "example": "Success message."
41819
42305
  },
41820
42306
  "data": {
41821
- "$ref": "#/components/schemas/EventSession"
42307
+ "$ref": "#/components/schemas/EventSpeaker"
41822
42308
  }
41823
42309
  },
41824
42310
  "required": [
@@ -41832,13 +42318,15 @@
41832
42318
  }
41833
42319
  },
41834
42320
  "tags": [
41835
- "Events::Sessions"
42321
+ "Events::Speakers"
41836
42322
  ]
41837
- },
41838
- "delete": {
41839
- "operationId": "RemoveEventSessionTrack",
41840
- "summary": "Remove Event Session Track",
41841
- "description": "Remove Event Session Track endpoint",
42323
+ }
42324
+ },
42325
+ "/events/{eventId}/speakers/{speakerId}": {
42326
+ "get": {
42327
+ "operationId": "GetEventSpeaker",
42328
+ "summary": "Get Event Speaker",
42329
+ "description": "Get Event Speaker endpoint",
41842
42330
  "parameters": [
41843
42331
  {
41844
42332
  "in": "path",
@@ -41851,20 +42339,11 @@
41851
42339
  },
41852
42340
  {
41853
42341
  "in": "path",
41854
- "name": "sessionId",
41855
- "schema": {
41856
- "type": "string"
41857
- },
41858
- "description": "The session identifier",
41859
- "required": true
41860
- },
41861
- {
41862
- "in": "path",
41863
- "name": "trackId",
42342
+ "name": "speakerId",
41864
42343
  "schema": {
41865
42344
  "type": "string"
41866
42345
  },
41867
- "description": "The track identifier",
42346
+ "description": "The speaker identifier",
41868
42347
  "required": true
41869
42348
  }
41870
42349
  ],
@@ -41887,7 +42366,7 @@
41887
42366
  "example": "Success message."
41888
42367
  },
41889
42368
  "data": {
41890
- "type": "object"
42369
+ "$ref": "#/components/schemas/EventSpeaker"
41891
42370
  }
41892
42371
  },
41893
42372
  "required": [
@@ -41901,15 +42380,13 @@
41901
42380
  }
41902
42381
  },
41903
42382
  "tags": [
41904
- "Events::Sessions"
42383
+ "Events::Speakers"
41905
42384
  ]
41906
- }
41907
- },
41908
- "/events/{eventId}/speakers": {
41909
- "get": {
41910
- "operationId": "GetEventSpeakers",
41911
- "summary": "Get Event Speakers",
41912
- "description": "Get Event Speakers endpoint",
42385
+ },
42386
+ "put": {
42387
+ "operationId": "UpdateEventSpeaker",
42388
+ "summary": "Update Event Speaker",
42389
+ "description": "Update Event Speaker endpoint",
41913
42390
  "parameters": [
41914
42391
  {
41915
42392
  "in": "path",
@@ -41921,45 +42398,22 @@
41921
42398
  "required": true
41922
42399
  },
41923
42400
  {
41924
- "in": "query",
41925
- "name": "page",
41926
- "schema": {
41927
- "type": "integer",
41928
- "minimum": 1,
41929
- "default": 1
41930
- },
41931
- "description": "Page number",
41932
- "required": false
41933
- },
41934
- {
41935
- "in": "query",
41936
- "name": "pageSize",
41937
- "schema": {
41938
- "type": "integer",
41939
- "minimum": 1,
41940
- "maximum": 100,
41941
- "default": 25
41942
- },
41943
- "description": "Number of items per page",
41944
- "required": false
41945
- },
41946
- {
41947
- "in": "query",
41948
- "name": "orderBy",
42401
+ "in": "path",
42402
+ "name": "speakerId",
41949
42403
  "schema": {
41950
42404
  "type": "string"
41951
42405
  },
41952
- "description": "Field to order by",
41953
- "required": false
42406
+ "description": "The speaker identifier",
42407
+ "required": true
41954
42408
  },
41955
42409
  {
41956
42410
  "in": "query",
41957
- "name": "search",
42411
+ "name": "speaker",
41958
42412
  "schema": {
41959
- "type": "string"
42413
+ "$ref": "#/components/schemas/EventSpeakerUpdateInputs"
41960
42414
  },
41961
- "description": "Search query",
41962
- "required": false
42415
+ "description": "Filter by speaker",
42416
+ "required": true
41963
42417
  }
41964
42418
  ],
41965
42419
  "responses": {
@@ -41981,14 +42435,7 @@
41981
42435
  "example": "Success message."
41982
42436
  },
41983
42437
  "data": {
41984
- "type": "array",
41985
- "items": {
41986
- "$ref": "#/components/schemas/EventSpeaker"
41987
- }
41988
- },
41989
- "count": {
41990
- "type": "integer",
41991
- "example": 100
42438
+ "$ref": "#/components/schemas/EventSpeaker"
41992
42439
  }
41993
42440
  },
41994
42441
  "required": [
@@ -42005,10 +42452,10 @@
42005
42452
  "Events::Speakers"
42006
42453
  ]
42007
42454
  },
42008
- "post": {
42009
- "operationId": "CreateEventSpeaker",
42010
- "summary": "Create Event Speaker",
42011
- "description": "Create Event Speaker endpoint",
42455
+ "delete": {
42456
+ "operationId": "DeleteEventSpeaker",
42457
+ "summary": "Delete Event Speaker",
42458
+ "description": "Delete Event Speaker endpoint",
42012
42459
  "parameters": [
42013
42460
  {
42014
42461
  "in": "path",
@@ -42018,18 +42465,17 @@
42018
42465
  },
42019
42466
  "description": "The event identifier",
42020
42467
  "required": true
42468
+ },
42469
+ {
42470
+ "in": "path",
42471
+ "name": "speakerId",
42472
+ "schema": {
42473
+ "type": "string"
42474
+ },
42475
+ "description": "The speaker identifier",
42476
+ "required": true
42021
42477
  }
42022
42478
  ],
42023
- "requestBody": {
42024
- "required": true,
42025
- "content": {
42026
- "application/json": {
42027
- "schema": {
42028
- "$ref": "#/components/schemas/EventSpeakerCreateInputs"
42029
- }
42030
- }
42031
- }
42032
- },
42033
42479
  "responses": {
42034
42480
  "200": {
42035
42481
  "description": "Successful response",
@@ -42049,7 +42495,7 @@
42049
42495
  "example": "Success message."
42050
42496
  },
42051
42497
  "data": {
42052
- "$ref": "#/components/schemas/EventSpeaker"
42498
+ "nullable": true
42053
42499
  }
42054
42500
  },
42055
42501
  "required": [
@@ -42067,11 +42513,11 @@
42067
42513
  ]
42068
42514
  }
42069
42515
  },
42070
- "/events/{eventId}/speakers/{speakerId}": {
42516
+ "/events/{eventId}/speakers/{speakerId}/sessions": {
42071
42517
  "get": {
42072
- "operationId": "GetEventSpeaker",
42073
- "summary": "Get Event Speaker",
42074
- "description": "Get Event Speaker endpoint",
42518
+ "operationId": "GetEventSpeakerSessions",
42519
+ "summary": "Get Event Speaker Sessions",
42520
+ "description": "Get Event Speaker Sessions endpoint",
42075
42521
  "parameters": [
42076
42522
  {
42077
42523
  "in": "path",
@@ -42090,6 +42536,47 @@
42090
42536
  },
42091
42537
  "description": "The speaker identifier",
42092
42538
  "required": true
42539
+ },
42540
+ {
42541
+ "in": "query",
42542
+ "name": "page",
42543
+ "schema": {
42544
+ "type": "integer",
42545
+ "minimum": 1,
42546
+ "default": 1
42547
+ },
42548
+ "description": "Page number",
42549
+ "required": false
42550
+ },
42551
+ {
42552
+ "in": "query",
42553
+ "name": "pageSize",
42554
+ "schema": {
42555
+ "type": "integer",
42556
+ "minimum": 1,
42557
+ "maximum": 100,
42558
+ "default": 25
42559
+ },
42560
+ "description": "Number of items per page",
42561
+ "required": false
42562
+ },
42563
+ {
42564
+ "in": "query",
42565
+ "name": "orderBy",
42566
+ "schema": {
42567
+ "type": "string"
42568
+ },
42569
+ "description": "Field to order by",
42570
+ "required": false
42571
+ },
42572
+ {
42573
+ "in": "query",
42574
+ "name": "search",
42575
+ "schema": {
42576
+ "type": "string"
42577
+ },
42578
+ "description": "Search query",
42579
+ "required": false
42093
42580
  }
42094
42581
  ],
42095
42582
  "responses": {
@@ -42111,7 +42598,11 @@
42111
42598
  "example": "Success message."
42112
42599
  },
42113
42600
  "data": {
42114
- "$ref": "#/components/schemas/EventSpeaker"
42601
+ "type": "object"
42602
+ },
42603
+ "count": {
42604
+ "type": "integer",
42605
+ "example": 100
42115
42606
  }
42116
42607
  },
42117
42608
  "required": [
@@ -42127,11 +42618,13 @@
42127
42618
  "tags": [
42128
42619
  "Events::Speakers"
42129
42620
  ]
42130
- },
42131
- "put": {
42132
- "operationId": "UpdateEventSpeaker",
42133
- "summary": "Update Event Speaker",
42134
- "description": "Update Event Speaker endpoint",
42621
+ }
42622
+ },
42623
+ "/events/{eventId}/speakers/{speakerId}/sessions/{sessionId}": {
42624
+ "post": {
42625
+ "operationId": "AddEventSpeakerSession",
42626
+ "summary": "Add Event Speaker Session",
42627
+ "description": "Add Event Speaker Session endpoint",
42135
42628
  "parameters": [
42136
42629
  {
42137
42630
  "in": "path",
@@ -42152,12 +42645,12 @@
42152
42645
  "required": true
42153
42646
  },
42154
42647
  {
42155
- "in": "query",
42156
- "name": "speaker",
42648
+ "in": "path",
42649
+ "name": "sessionId",
42157
42650
  "schema": {
42158
- "$ref": "#/components/schemas/EventSpeakerUpdateInputs"
42651
+ "type": "string"
42159
42652
  },
42160
- "description": "Filter by speaker",
42653
+ "description": "The session identifier",
42161
42654
  "required": true
42162
42655
  }
42163
42656
  ],
@@ -42180,7 +42673,7 @@
42180
42673
  "example": "Success message."
42181
42674
  },
42182
42675
  "data": {
42183
- "$ref": "#/components/schemas/EventSpeaker"
42676
+ "type": "object"
42184
42677
  }
42185
42678
  },
42186
42679
  "required": [
@@ -42198,9 +42691,9 @@
42198
42691
  ]
42199
42692
  },
42200
42693
  "delete": {
42201
- "operationId": "DeleteEventSpeaker",
42202
- "summary": "Delete Event Speaker",
42203
- "description": "Delete Event Speaker endpoint",
42694
+ "operationId": "RemoveEventSpeakerSession",
42695
+ "summary": "Remove Event Speaker Session",
42696
+ "description": "Remove Event Speaker Session endpoint",
42204
42697
  "parameters": [
42205
42698
  {
42206
42699
  "in": "path",
@@ -42219,6 +42712,15 @@
42219
42712
  },
42220
42713
  "description": "The speaker identifier",
42221
42714
  "required": true
42715
+ },
42716
+ {
42717
+ "in": "path",
42718
+ "name": "sessionId",
42719
+ "schema": {
42720
+ "type": "string"
42721
+ },
42722
+ "description": "The session identifier",
42723
+ "required": true
42222
42724
  }
42223
42725
  ],
42224
42726
  "responses": {
@@ -42240,7 +42742,7 @@
42240
42742
  "example": "Success message."
42241
42743
  },
42242
42744
  "data": {
42243
- "nullable": true
42745
+ "type": "object"
42244
42746
  }
42245
42747
  },
42246
42748
  "required": [
@@ -42258,11 +42760,11 @@
42258
42760
  ]
42259
42761
  }
42260
42762
  },
42261
- "/events/{eventId}/speakers/{speakerId}/sessions": {
42763
+ "/events/{eventId}/sponsors": {
42262
42764
  "get": {
42263
- "operationId": "GetEventSpeakerSessions",
42264
- "summary": "Get Event Speaker Sessions",
42265
- "description": "Get Event Speaker Sessions endpoint",
42765
+ "operationId": "GetEventSponsors",
42766
+ "summary": "Get Event Sponsors",
42767
+ "description": "Get Event Sponsors endpoint",
42266
42768
  "parameters": [
42267
42769
  {
42268
42770
  "in": "path",
@@ -42273,15 +42775,6 @@
42273
42775
  "description": "The event identifier",
42274
42776
  "required": true
42275
42777
  },
42276
- {
42277
- "in": "path",
42278
- "name": "speakerId",
42279
- "schema": {
42280
- "type": "string"
42281
- },
42282
- "description": "The speaker identifier",
42283
- "required": true
42284
- },
42285
42778
  {
42286
42779
  "in": "query",
42287
42780
  "name": "page",
@@ -42343,7 +42836,10 @@
42343
42836
  "example": "Success message."
42344
42837
  },
42345
42838
  "data": {
42346
- "type": "object"
42839
+ "type": "array",
42840
+ "items": {
42841
+ "$ref": "#/components/schemas/Account"
42842
+ }
42347
42843
  },
42348
42844
  "count": {
42349
42845
  "type": "integer",
@@ -42361,15 +42857,15 @@
42361
42857
  }
42362
42858
  },
42363
42859
  "tags": [
42364
- "Events::Speakers"
42860
+ "Events::Sponsors"
42365
42861
  ]
42366
42862
  }
42367
42863
  },
42368
- "/events/{eventId}/speakers/{speakerId}/sessions/{sessionId}": {
42369
- "post": {
42370
- "operationId": "AddEventSpeakerSession",
42371
- "summary": "Add Event Speaker Session",
42372
- "description": "Add Event Speaker Session endpoint",
42864
+ "/events/{eventId}/sponsors/accounts": {
42865
+ "get": {
42866
+ "operationId": "GetEventSponsorAccounts",
42867
+ "summary": "Get Event Sponsor Accounts",
42868
+ "description": "Get Event Sponsor Accounts endpoint",
42373
42869
  "parameters": [
42374
42870
  {
42375
42871
  "in": "path",
@@ -42381,22 +42877,45 @@
42381
42877
  "required": true
42382
42878
  },
42383
42879
  {
42384
- "in": "path",
42385
- "name": "speakerId",
42880
+ "in": "query",
42881
+ "name": "page",
42882
+ "schema": {
42883
+ "type": "integer",
42884
+ "minimum": 1,
42885
+ "default": 1
42886
+ },
42887
+ "description": "Page number",
42888
+ "required": false
42889
+ },
42890
+ {
42891
+ "in": "query",
42892
+ "name": "pageSize",
42893
+ "schema": {
42894
+ "type": "integer",
42895
+ "minimum": 1,
42896
+ "maximum": 100,
42897
+ "default": 25
42898
+ },
42899
+ "description": "Number of items per page",
42900
+ "required": false
42901
+ },
42902
+ {
42903
+ "in": "query",
42904
+ "name": "orderBy",
42386
42905
  "schema": {
42387
42906
  "type": "string"
42388
42907
  },
42389
- "description": "The speaker identifier",
42390
- "required": true
42908
+ "description": "Field to order by",
42909
+ "required": false
42391
42910
  },
42392
42911
  {
42393
- "in": "path",
42394
- "name": "sessionId",
42912
+ "in": "query",
42913
+ "name": "search",
42395
42914
  "schema": {
42396
42915
  "type": "string"
42397
42916
  },
42398
- "description": "The session identifier",
42399
- "required": true
42917
+ "description": "Search query",
42918
+ "required": false
42400
42919
  }
42401
42920
  ],
42402
42921
  "responses": {
@@ -42418,7 +42937,14 @@
42418
42937
  "example": "Success message."
42419
42938
  },
42420
42939
  "data": {
42421
- "type": "object"
42940
+ "type": "array",
42941
+ "items": {
42942
+ "$ref": "#/components/schemas/Account"
42943
+ }
42944
+ },
42945
+ "count": {
42946
+ "type": "integer",
42947
+ "example": 100
42422
42948
  }
42423
42949
  },
42424
42950
  "required": [
@@ -42432,13 +42958,15 @@
42432
42958
  }
42433
42959
  },
42434
42960
  "tags": [
42435
- "Events::Speakers"
42961
+ "Events::Sponsors"
42436
42962
  ]
42437
- },
42438
- "delete": {
42439
- "operationId": "RemoveEventSpeakerSession",
42440
- "summary": "Remove Event Speaker Session",
42441
- "description": "Remove Event Speaker Session endpoint",
42963
+ }
42964
+ },
42965
+ "/events/{eventId}/sponsors/accounts/{accountId}": {
42966
+ "post": {
42967
+ "operationId": "AddEventSponsorAccount",
42968
+ "summary": "Add Event Sponsor Account",
42969
+ "description": "Add Event Sponsor Account endpoint",
42442
42970
  "parameters": [
42443
42971
  {
42444
42972
  "in": "path",
@@ -42451,20 +42979,11 @@
42451
42979
  },
42452
42980
  {
42453
42981
  "in": "path",
42454
- "name": "speakerId",
42455
- "schema": {
42456
- "type": "string"
42457
- },
42458
- "description": "The speaker identifier",
42459
- "required": true
42460
- },
42461
- {
42462
- "in": "path",
42463
- "name": "sessionId",
42982
+ "name": "accountId",
42464
42983
  "schema": {
42465
42984
  "type": "string"
42466
42985
  },
42467
- "description": "The session identifier",
42986
+ "description": "The account identifier",
42468
42987
  "required": true
42469
42988
  }
42470
42989
  ],
@@ -42487,7 +43006,7 @@
42487
43006
  "example": "Success message."
42488
43007
  },
42489
43008
  "data": {
42490
- "type": "object"
43009
+ "$ref": "#/components/schemas/Event"
42491
43010
  }
42492
43011
  },
42493
43012
  "required": [
@@ -42501,15 +43020,13 @@
42501
43020
  }
42502
43021
  },
42503
43022
  "tags": [
42504
- "Events::Speakers"
43023
+ "Events::Sponsors"
42505
43024
  ]
42506
- }
42507
- },
42508
- "/events/{eventId}/sponsors": {
42509
- "get": {
42510
- "operationId": "GetEventSponsors",
42511
- "summary": "Get Event Sponsors",
42512
- "description": "Get Event Sponsors endpoint",
43025
+ },
43026
+ "delete": {
43027
+ "operationId": "RemoveEventSponsorAccount",
43028
+ "summary": "Remove Event Sponsor Account",
43029
+ "description": "Remove Event Sponsor Account endpoint",
42513
43030
  "parameters": [
42514
43031
  {
42515
43032
  "in": "path",
@@ -42521,45 +43038,13 @@
42521
43038
  "required": true
42522
43039
  },
42523
43040
  {
42524
- "in": "query",
42525
- "name": "page",
42526
- "schema": {
42527
- "type": "integer",
42528
- "minimum": 1,
42529
- "default": 1
42530
- },
42531
- "description": "Page number",
42532
- "required": false
42533
- },
42534
- {
42535
- "in": "query",
42536
- "name": "pageSize",
42537
- "schema": {
42538
- "type": "integer",
42539
- "minimum": 1,
42540
- "maximum": 100,
42541
- "default": 25
42542
- },
42543
- "description": "Number of items per page",
42544
- "required": false
42545
- },
42546
- {
42547
- "in": "query",
42548
- "name": "orderBy",
42549
- "schema": {
42550
- "type": "string"
42551
- },
42552
- "description": "Field to order by",
42553
- "required": false
42554
- },
42555
- {
42556
- "in": "query",
42557
- "name": "search",
43041
+ "in": "path",
43042
+ "name": "accountId",
42558
43043
  "schema": {
42559
43044
  "type": "string"
42560
43045
  },
42561
- "description": "Search query",
42562
- "required": false
43046
+ "description": "The account identifier",
43047
+ "required": true
42563
43048
  }
42564
43049
  ],
42565
43050
  "responses": {
@@ -42581,14 +43066,7 @@
42581
43066
  "example": "Success message."
42582
43067
  },
42583
43068
  "data": {
42584
- "type": "array",
42585
- "items": {
42586
- "$ref": "#/components/schemas/Account"
42587
- }
42588
- },
42589
- "count": {
42590
- "type": "integer",
42591
- "example": 100
43069
+ "$ref": "#/components/schemas/Event"
42592
43070
  }
42593
43071
  },
42594
43072
  "required": [
@@ -42606,11 +43084,11 @@
42606
43084
  ]
42607
43085
  }
42608
43086
  },
42609
- "/events/{eventId}/sponsors/accounts": {
43087
+ "/events/{eventId}/sponsorshipLevels": {
42610
43088
  "get": {
42611
- "operationId": "GetEventSponsorAccounts",
42612
- "summary": "Get Event Sponsor Accounts",
42613
- "description": "Get Event Sponsor Accounts endpoint",
43089
+ "operationId": "GetEventSponsorshipLevels",
43090
+ "summary": "Get Event Sponsorship Levels",
43091
+ "description": "Get Event Sponsorship Levels endpoint",
42614
43092
  "parameters": [
42615
43093
  {
42616
43094
  "in": "path",
@@ -42682,10 +43160,7 @@
42682
43160
  "example": "Success message."
42683
43161
  },
42684
43162
  "data": {
42685
- "type": "array",
42686
- "items": {
42687
- "$ref": "#/components/schemas/Account"
42688
- }
43163
+ "type": "object"
42689
43164
  },
42690
43165
  "count": {
42691
43166
  "type": "integer",
@@ -42703,15 +43178,13 @@
42703
43178
  }
42704
43179
  },
42705
43180
  "tags": [
42706
- "Events::Sponsors"
43181
+ "Events::Sponsorshiplevels"
42707
43182
  ]
42708
- }
42709
- },
42710
- "/events/{eventId}/sponsors/accounts/{accountId}": {
43183
+ },
42711
43184
  "post": {
42712
- "operationId": "AddEventSponsorAccount",
42713
- "summary": "Add Event Sponsor Account",
42714
- "description": "Add Event Sponsor Account endpoint",
43185
+ "operationId": "CreateEventSponsorshipLevel",
43186
+ "summary": "Create Event Sponsorship Level",
43187
+ "description": "Create Event Sponsorship Level endpoint",
42715
43188
  "parameters": [
42716
43189
  {
42717
43190
  "in": "path",
@@ -42721,17 +43194,18 @@
42721
43194
  },
42722
43195
  "description": "The event identifier",
42723
43196
  "required": true
42724
- },
42725
- {
42726
- "in": "path",
42727
- "name": "accountId",
42728
- "schema": {
42729
- "type": "string"
42730
- },
42731
- "description": "The account identifier",
42732
- "required": true
42733
43197
  }
42734
43198
  ],
43199
+ "requestBody": {
43200
+ "required": true,
43201
+ "content": {
43202
+ "application/json": {
43203
+ "schema": {
43204
+ "$ref": "#/components/schemas/EventSponsorshipLevelCreateInputs"
43205
+ }
43206
+ }
43207
+ }
43208
+ },
42735
43209
  "responses": {
42736
43210
  "200": {
42737
43211
  "description": "Successful response",
@@ -42751,7 +43225,7 @@
42751
43225
  "example": "Success message."
42752
43226
  },
42753
43227
  "data": {
42754
- "$ref": "#/components/schemas/Event"
43228
+ "type": "object"
42755
43229
  }
42756
43230
  },
42757
43231
  "required": [
@@ -42765,13 +43239,15 @@
42765
43239
  }
42766
43240
  },
42767
43241
  "tags": [
42768
- "Events::Sponsors"
43242
+ "Events::Sponsorshiplevels"
42769
43243
  ]
42770
- },
42771
- "delete": {
42772
- "operationId": "RemoveEventSponsorAccount",
42773
- "summary": "Remove Event Sponsor Account",
42774
- "description": "Remove Event Sponsor Account endpoint",
43244
+ }
43245
+ },
43246
+ "/events/{eventId}/sponsorshipLevels/reorder": {
43247
+ "put": {
43248
+ "operationId": "ReorderEventSponsorshipLevels",
43249
+ "summary": "Reorder Event Sponsorship Levels",
43250
+ "description": "Reorder Event Sponsorship Levels endpoint",
42775
43251
  "parameters": [
42776
43252
  {
42777
43253
  "in": "path",
@@ -42783,12 +43259,15 @@
42783
43259
  "required": true
42784
43260
  },
42785
43261
  {
42786
- "in": "path",
42787
- "name": "accountId",
43262
+ "in": "query",
43263
+ "name": "levelIds",
42788
43264
  "schema": {
42789
- "type": "string"
43265
+ "type": "array",
43266
+ "items": {
43267
+ "type": "string"
43268
+ }
42790
43269
  },
42791
- "description": "The account identifier",
43270
+ "description": "Filter by levelIds",
42792
43271
  "required": true
42793
43272
  }
42794
43273
  ],
@@ -42811,7 +43290,7 @@
42811
43290
  "example": "Success message."
42812
43291
  },
42813
43292
  "data": {
42814
- "$ref": "#/components/schemas/Event"
43293
+ "type": "object"
42815
43294
  }
42816
43295
  },
42817
43296
  "required": [
@@ -42825,15 +43304,15 @@
42825
43304
  }
42826
43305
  },
42827
43306
  "tags": [
42828
- "Events::Sponsors"
43307
+ "Events::Sponsorshiplevels"
42829
43308
  ]
42830
43309
  }
42831
43310
  },
42832
- "/events/{eventId}/sponsorshipLevels": {
43311
+ "/events/{eventId}/sponsorshipLevels/{levelId}": {
42833
43312
  "get": {
42834
- "operationId": "GetEventSponsorshipLevels",
42835
- "summary": "Get Event Sponsorship Levels",
42836
- "description": "Get Event Sponsorship Levels endpoint",
43313
+ "operationId": "GetEventSponsorshipLevel",
43314
+ "summary": "Get Event Sponsorship Level",
43315
+ "description": "Get Event Sponsorship Level endpoint",
42837
43316
  "parameters": [
42838
43317
  {
42839
43318
  "in": "path",
@@ -42845,45 +43324,13 @@
42845
43324
  "required": true
42846
43325
  },
42847
43326
  {
42848
- "in": "query",
42849
- "name": "page",
42850
- "schema": {
42851
- "type": "integer",
42852
- "minimum": 1,
42853
- "default": 1
42854
- },
42855
- "description": "Page number",
42856
- "required": false
42857
- },
42858
- {
42859
- "in": "query",
42860
- "name": "pageSize",
42861
- "schema": {
42862
- "type": "integer",
42863
- "minimum": 1,
42864
- "maximum": 100,
42865
- "default": 25
42866
- },
42867
- "description": "Number of items per page",
42868
- "required": false
42869
- },
42870
- {
42871
- "in": "query",
42872
- "name": "orderBy",
42873
- "schema": {
42874
- "type": "string"
42875
- },
42876
- "description": "Field to order by",
42877
- "required": false
42878
- },
42879
- {
42880
- "in": "query",
42881
- "name": "search",
43327
+ "in": "path",
43328
+ "name": "levelId",
42882
43329
  "schema": {
42883
43330
  "type": "string"
42884
43331
  },
42885
- "description": "Search query",
42886
- "required": false
43332
+ "description": "The level identifier",
43333
+ "required": true
42887
43334
  }
42888
43335
  ],
42889
43336
  "responses": {
@@ -42906,10 +43353,6 @@
42906
43353
  },
42907
43354
  "data": {
42908
43355
  "type": "object"
42909
- },
42910
- "count": {
42911
- "type": "integer",
42912
- "example": 100
42913
43356
  }
42914
43357
  },
42915
43358
  "required": [
@@ -42926,10 +43369,10 @@
42926
43369
  "Events::Sponsorshiplevels"
42927
43370
  ]
42928
43371
  },
42929
- "post": {
42930
- "operationId": "CreateEventSponsorshipLevel",
42931
- "summary": "Create Event Sponsorship Level",
42932
- "description": "Create Event Sponsorship Level endpoint",
43372
+ "put": {
43373
+ "operationId": "UpdateEventSponsorshipLevel",
43374
+ "summary": "Update Event Sponsorship Level",
43375
+ "description": "Update Event Sponsorship Level endpoint",
42933
43376
  "parameters": [
42934
43377
  {
42935
43378
  "in": "path",
@@ -42939,18 +43382,26 @@
42939
43382
  },
42940
43383
  "description": "The event identifier",
42941
43384
  "required": true
43385
+ },
43386
+ {
43387
+ "in": "path",
43388
+ "name": "levelId",
43389
+ "schema": {
43390
+ "type": "string"
43391
+ },
43392
+ "description": "The level identifier",
43393
+ "required": true
43394
+ },
43395
+ {
43396
+ "in": "query",
43397
+ "name": "sponsorshipLevel",
43398
+ "schema": {
43399
+ "$ref": "#/components/schemas/EventSponsorshipLevelUpdateInputs"
43400
+ },
43401
+ "description": "Filter by sponsorshipLevel",
43402
+ "required": true
42942
43403
  }
42943
43404
  ],
42944
- "requestBody": {
42945
- "required": true,
42946
- "content": {
42947
- "application/json": {
42948
- "schema": {
42949
- "$ref": "#/components/schemas/EventSponsorshipLevelCreateInputs"
42950
- }
42951
- }
42952
- }
42953
- },
42954
43405
  "responses": {
42955
43406
  "200": {
42956
43407
  "description": "Successful response",
@@ -42986,13 +43437,11 @@
42986
43437
  "tags": [
42987
43438
  "Events::Sponsorshiplevels"
42988
43439
  ]
42989
- }
42990
- },
42991
- "/events/{eventId}/sponsorshipLevels/reorder": {
42992
- "put": {
42993
- "operationId": "ReorderEventSponsorshipLevels",
42994
- "summary": "Reorder Event Sponsorship Levels",
42995
- "description": "Reorder Event Sponsorship Levels endpoint",
43440
+ },
43441
+ "delete": {
43442
+ "operationId": "DeleteEventSponsorshipLevel",
43443
+ "summary": "Delete Event Sponsorship Level",
43444
+ "description": "Delete Event Sponsorship Level endpoint",
42996
43445
  "parameters": [
42997
43446
  {
42998
43447
  "in": "path",
@@ -43004,15 +43453,12 @@
43004
43453
  "required": true
43005
43454
  },
43006
43455
  {
43007
- "in": "query",
43008
- "name": "levelIds",
43456
+ "in": "path",
43457
+ "name": "levelId",
43009
43458
  "schema": {
43010
- "type": "array",
43011
- "items": {
43012
- "type": "string"
43013
- }
43459
+ "type": "string"
43014
43460
  },
43015
- "description": "Filter by levelIds",
43461
+ "description": "The level identifier",
43016
43462
  "required": true
43017
43463
  }
43018
43464
  ],
@@ -43035,7 +43481,7 @@
43035
43481
  "example": "Success message."
43036
43482
  },
43037
43483
  "data": {
43038
- "type": "object"
43484
+ "nullable": true
43039
43485
  }
43040
43486
  },
43041
43487
  "required": [
@@ -43053,11 +43499,11 @@
43053
43499
  ]
43054
43500
  }
43055
43501
  },
43056
- "/events/{eventId}/sponsorshipLevels/{levelId}": {
43502
+ "/events/{eventId}/sponsorshipLevels/{levelId}/sponsorships": {
43057
43503
  "get": {
43058
- "operationId": "GetEventSponsorshipLevel",
43059
- "summary": "Get Event Sponsorship Level",
43060
- "description": "Get Event Sponsorship Level endpoint",
43504
+ "operationId": "GetEventSponsorships",
43505
+ "summary": "Get Event Sponsorships",
43506
+ "description": "Get Event Sponsorships endpoint",
43061
43507
  "parameters": [
43062
43508
  {
43063
43509
  "in": "path",
@@ -43076,6 +43522,47 @@
43076
43522
  },
43077
43523
  "description": "The level identifier",
43078
43524
  "required": true
43525
+ },
43526
+ {
43527
+ "in": "query",
43528
+ "name": "page",
43529
+ "schema": {
43530
+ "type": "integer",
43531
+ "minimum": 1,
43532
+ "default": 1
43533
+ },
43534
+ "description": "Page number",
43535
+ "required": false
43536
+ },
43537
+ {
43538
+ "in": "query",
43539
+ "name": "pageSize",
43540
+ "schema": {
43541
+ "type": "integer",
43542
+ "minimum": 1,
43543
+ "maximum": 100,
43544
+ "default": 25
43545
+ },
43546
+ "description": "Number of items per page",
43547
+ "required": false
43548
+ },
43549
+ {
43550
+ "in": "query",
43551
+ "name": "orderBy",
43552
+ "schema": {
43553
+ "type": "string"
43554
+ },
43555
+ "description": "Field to order by",
43556
+ "required": false
43557
+ },
43558
+ {
43559
+ "in": "query",
43560
+ "name": "search",
43561
+ "schema": {
43562
+ "type": "string"
43563
+ },
43564
+ "description": "Search query",
43565
+ "required": false
43079
43566
  }
43080
43567
  ],
43081
43568
  "responses": {
@@ -43098,6 +43585,10 @@
43098
43585
  },
43099
43586
  "data": {
43100
43587
  "type": "object"
43588
+ },
43589
+ "count": {
43590
+ "type": "integer",
43591
+ "example": 100
43101
43592
  }
43102
43593
  },
43103
43594
  "required": [
@@ -43111,13 +43602,13 @@
43111
43602
  }
43112
43603
  },
43113
43604
  "tags": [
43114
- "Events::Sponsorshiplevels"
43605
+ "Events::Sponsorships"
43115
43606
  ]
43116
43607
  },
43117
- "put": {
43118
- "operationId": "UpdateEventSponsorshipLevel",
43119
- "summary": "Update Event Sponsorship Level",
43120
- "description": "Update Event Sponsorship Level endpoint",
43608
+ "post": {
43609
+ "operationId": "CreateEventSponsorship",
43610
+ "summary": "Create Event Sponsorship",
43611
+ "description": "Create Event Sponsorship endpoint",
43121
43612
  "parameters": [
43122
43613
  {
43123
43614
  "in": "path",
@@ -43136,17 +43627,18 @@
43136
43627
  },
43137
43628
  "description": "The level identifier",
43138
43629
  "required": true
43139
- },
43140
- {
43141
- "in": "query",
43142
- "name": "sponsorshipLevel",
43143
- "schema": {
43144
- "$ref": "#/components/schemas/EventSponsorshipLevelUpdateInputs"
43145
- },
43146
- "description": "Filter by sponsorshipLevel",
43147
- "required": true
43148
43630
  }
43149
43631
  ],
43632
+ "requestBody": {
43633
+ "required": true,
43634
+ "content": {
43635
+ "application/json": {
43636
+ "schema": {
43637
+ "$ref": "#/components/schemas/EventSponsorshipCreateInputs"
43638
+ }
43639
+ }
43640
+ }
43641
+ },
43150
43642
  "responses": {
43151
43643
  "200": {
43152
43644
  "description": "Successful response",
@@ -43180,13 +43672,15 @@
43180
43672
  }
43181
43673
  },
43182
43674
  "tags": [
43183
- "Events::Sponsorshiplevels"
43675
+ "Events::Sponsorships"
43184
43676
  ]
43185
- },
43186
- "delete": {
43187
- "operationId": "DeleteEventSponsorshipLevel",
43188
- "summary": "Delete Event Sponsorship Level",
43189
- "description": "Delete Event Sponsorship Level endpoint",
43677
+ }
43678
+ },
43679
+ "/events/{eventId}/sponsorshipLevels/{levelId}/sponsorships/reorder": {
43680
+ "put": {
43681
+ "operationId": "ReorderEventSponsorships",
43682
+ "summary": "Reorder Event Sponsorships",
43683
+ "description": "Reorder Event Sponsorships endpoint",
43190
43684
  "parameters": [
43191
43685
  {
43192
43686
  "in": "path",
@@ -43205,6 +43699,18 @@
43205
43699
  },
43206
43700
  "description": "The level identifier",
43207
43701
  "required": true
43702
+ },
43703
+ {
43704
+ "in": "query",
43705
+ "name": "sponsorshipIds",
43706
+ "schema": {
43707
+ "type": "array",
43708
+ "items": {
43709
+ "type": "string"
43710
+ }
43711
+ },
43712
+ "description": "Filter by sponsorshipIds",
43713
+ "required": true
43208
43714
  }
43209
43715
  ],
43210
43716
  "responses": {
@@ -43226,7 +43732,7 @@
43226
43732
  "example": "Success message."
43227
43733
  },
43228
43734
  "data": {
43229
- "nullable": true
43735
+ "type": "object"
43230
43736
  }
43231
43737
  },
43232
43738
  "required": [
@@ -43240,15 +43746,15 @@
43240
43746
  }
43241
43747
  },
43242
43748
  "tags": [
43243
- "Events::Sponsorshiplevels"
43749
+ "Events::Sponsorships"
43244
43750
  ]
43245
43751
  }
43246
43752
  },
43247
- "/events/{eventId}/sponsorshipLevels/{levelId}/sponsorships": {
43753
+ "/events/{eventId}/sponsorshipLevels/{levelId}/sponsorships/{sponsorshipId}": {
43248
43754
  "get": {
43249
- "operationId": "GetEventSponsorships",
43250
- "summary": "Get Event Sponsorships",
43251
- "description": "Get Event Sponsorships endpoint",
43755
+ "operationId": "GetEventSponsorship",
43756
+ "summary": "Get Event Sponsorship",
43757
+ "description": "Get Event Sponsorship endpoint",
43252
43758
  "parameters": [
43253
43759
  {
43254
43760
  "in": "path",
@@ -43269,45 +43775,13 @@
43269
43775
  "required": true
43270
43776
  },
43271
43777
  {
43272
- "in": "query",
43273
- "name": "page",
43274
- "schema": {
43275
- "type": "integer",
43276
- "minimum": 1,
43277
- "default": 1
43278
- },
43279
- "description": "Page number",
43280
- "required": false
43281
- },
43282
- {
43283
- "in": "query",
43284
- "name": "pageSize",
43285
- "schema": {
43286
- "type": "integer",
43287
- "minimum": 1,
43288
- "maximum": 100,
43289
- "default": 25
43290
- },
43291
- "description": "Number of items per page",
43292
- "required": false
43293
- },
43294
- {
43295
- "in": "query",
43296
- "name": "orderBy",
43297
- "schema": {
43298
- "type": "string"
43299
- },
43300
- "description": "Field to order by",
43301
- "required": false
43302
- },
43303
- {
43304
- "in": "query",
43305
- "name": "search",
43778
+ "in": "path",
43779
+ "name": "sponsorshipId",
43306
43780
  "schema": {
43307
43781
  "type": "string"
43308
43782
  },
43309
- "description": "Search query",
43310
- "required": false
43783
+ "description": "The sponsorship identifier",
43784
+ "required": true
43311
43785
  }
43312
43786
  ],
43313
43787
  "responses": {
@@ -43330,10 +43804,6 @@
43330
43804
  },
43331
43805
  "data": {
43332
43806
  "type": "object"
43333
- },
43334
- "count": {
43335
- "type": "integer",
43336
- "example": 100
43337
43807
  }
43338
43808
  },
43339
43809
  "required": [
@@ -43350,10 +43820,10 @@
43350
43820
  "Events::Sponsorships"
43351
43821
  ]
43352
43822
  },
43353
- "post": {
43354
- "operationId": "CreateEventSponsorship",
43355
- "summary": "Create Event Sponsorship",
43356
- "description": "Create Event Sponsorship endpoint",
43823
+ "put": {
43824
+ "operationId": "UpdateEventSponsorship",
43825
+ "summary": "Update Event Sponsorship",
43826
+ "description": "Update Event Sponsorship endpoint",
43357
43827
  "parameters": [
43358
43828
  {
43359
43829
  "in": "path",
@@ -43372,89 +43842,23 @@
43372
43842
  },
43373
43843
  "description": "The level identifier",
43374
43844
  "required": true
43375
- }
43376
- ],
43377
- "requestBody": {
43378
- "required": true,
43379
- "content": {
43380
- "application/json": {
43381
- "schema": {
43382
- "$ref": "#/components/schemas/EventSponsorshipCreateInputs"
43383
- }
43384
- }
43385
- }
43386
- },
43387
- "responses": {
43388
- "200": {
43389
- "description": "Successful response",
43390
- "content": {
43391
- "application/json": {
43392
- "schema": {
43393
- "type": "object",
43394
- "properties": {
43395
- "status": {
43396
- "type": "string",
43397
- "enum": [
43398
- "ok"
43399
- ]
43400
- },
43401
- "message": {
43402
- "type": "string",
43403
- "example": "Success message."
43404
- },
43405
- "data": {
43406
- "type": "object"
43407
- }
43408
- },
43409
- "required": [
43410
- "status",
43411
- "message",
43412
- "data"
43413
- ]
43414
- }
43415
- }
43416
- }
43417
- }
43418
- },
43419
- "tags": [
43420
- "Events::Sponsorships"
43421
- ]
43422
- }
43423
- },
43424
- "/events/{eventId}/sponsorshipLevels/{levelId}/sponsorships/reorder": {
43425
- "put": {
43426
- "operationId": "ReorderEventSponsorships",
43427
- "summary": "Reorder Event Sponsorships",
43428
- "description": "Reorder Event Sponsorships endpoint",
43429
- "parameters": [
43430
- {
43431
- "in": "path",
43432
- "name": "eventId",
43433
- "schema": {
43434
- "type": "string"
43435
- },
43436
- "description": "The event identifier",
43437
- "required": true
43438
43845
  },
43439
43846
  {
43440
43847
  "in": "path",
43441
- "name": "levelId",
43848
+ "name": "sponsorshipId",
43442
43849
  "schema": {
43443
43850
  "type": "string"
43444
43851
  },
43445
- "description": "The level identifier",
43852
+ "description": "The sponsorship identifier",
43446
43853
  "required": true
43447
43854
  },
43448
43855
  {
43449
43856
  "in": "query",
43450
- "name": "sponsorshipIds",
43857
+ "name": "sponsorship",
43451
43858
  "schema": {
43452
- "type": "array",
43453
- "items": {
43454
- "type": "string"
43455
- }
43859
+ "$ref": "#/components/schemas/EventSponsorshipUpdateInputs"
43456
43860
  },
43457
- "description": "Filter by sponsorshipIds",
43861
+ "description": "Filter by sponsorship",
43458
43862
  "required": true
43459
43863
  }
43460
43864
  ],
@@ -43493,13 +43897,11 @@
43493
43897
  "tags": [
43494
43898
  "Events::Sponsorships"
43495
43899
  ]
43496
- }
43497
- },
43498
- "/events/{eventId}/sponsorshipLevels/{levelId}/sponsorships/{sponsorshipId}": {
43499
- "get": {
43500
- "operationId": "GetEventSponsorship",
43501
- "summary": "Get Event Sponsorship",
43502
- "description": "Get Event Sponsorship endpoint",
43900
+ },
43901
+ "delete": {
43902
+ "operationId": "DeleteEventSponsorship",
43903
+ "summary": "Delete Event Sponsorship",
43904
+ "description": "Delete Event Sponsorship endpoint",
43503
43905
  "parameters": [
43504
43906
  {
43505
43907
  "in": "path",
@@ -43548,7 +43950,7 @@
43548
43950
  "example": "Success message."
43549
43951
  },
43550
43952
  "data": {
43551
- "type": "object"
43953
+ "nullable": true
43552
43954
  }
43553
43955
  },
43554
43956
  "required": [
@@ -43564,11 +43966,13 @@
43564
43966
  "tags": [
43565
43967
  "Events::Sponsorships"
43566
43968
  ]
43567
- },
43969
+ }
43970
+ },
43971
+ "/events/{eventId}/template": {
43568
43972
  "put": {
43569
- "operationId": "UpdateEventSponsorship",
43570
- "summary": "Update Event Sponsorship",
43571
- "description": "Update Event Sponsorship endpoint",
43973
+ "operationId": "UpdateEventBadgeTemplate",
43974
+ "summary": "Update Event Badge Template",
43975
+ "description": "Update Event Badge Template endpoint",
43572
43976
  "parameters": [
43573
43977
  {
43574
43978
  "in": "path",
@@ -43578,104 +43982,18 @@
43578
43982
  },
43579
43983
  "description": "The event identifier",
43580
43984
  "required": true
43581
- },
43582
- {
43583
- "in": "path",
43584
- "name": "levelId",
43585
- "schema": {
43586
- "type": "string"
43587
- },
43588
- "description": "The level identifier",
43589
- "required": true
43590
- },
43591
- {
43592
- "in": "path",
43593
- "name": "sponsorshipId",
43594
- "schema": {
43595
- "type": "string"
43596
- },
43597
- "description": "The sponsorship identifier",
43598
- "required": true
43599
- },
43600
- {
43601
- "in": "query",
43602
- "name": "sponsorship",
43603
- "schema": {
43604
- "$ref": "#/components/schemas/EventSponsorshipUpdateInputs"
43605
- },
43606
- "description": "Filter by sponsorship",
43607
- "required": true
43608
43985
  }
43609
43986
  ],
43610
- "responses": {
43611
- "200": {
43612
- "description": "Successful response",
43613
- "content": {
43614
- "application/json": {
43615
- "schema": {
43616
- "type": "object",
43617
- "properties": {
43618
- "status": {
43619
- "type": "string",
43620
- "enum": [
43621
- "ok"
43622
- ]
43623
- },
43624
- "message": {
43625
- "type": "string",
43626
- "example": "Success message."
43627
- },
43628
- "data": {
43629
- "type": "object"
43630
- }
43631
- },
43632
- "required": [
43633
- "status",
43634
- "message",
43635
- "data"
43636
- ]
43637
- }
43987
+ "requestBody": {
43988
+ "required": true,
43989
+ "content": {
43990
+ "application/json": {
43991
+ "schema": {
43992
+ "type": "object"
43638
43993
  }
43639
43994
  }
43640
43995
  }
43641
43996
  },
43642
- "tags": [
43643
- "Events::Sponsorships"
43644
- ]
43645
- },
43646
- "delete": {
43647
- "operationId": "DeleteEventSponsorship",
43648
- "summary": "Delete Event Sponsorship",
43649
- "description": "Delete Event Sponsorship endpoint",
43650
- "parameters": [
43651
- {
43652
- "in": "path",
43653
- "name": "eventId",
43654
- "schema": {
43655
- "type": "string"
43656
- },
43657
- "description": "The event identifier",
43658
- "required": true
43659
- },
43660
- {
43661
- "in": "path",
43662
- "name": "levelId",
43663
- "schema": {
43664
- "type": "string"
43665
- },
43666
- "description": "The level identifier",
43667
- "required": true
43668
- },
43669
- {
43670
- "in": "path",
43671
- "name": "sponsorshipId",
43672
- "schema": {
43673
- "type": "string"
43674
- },
43675
- "description": "The sponsorship identifier",
43676
- "required": true
43677
- }
43678
- ],
43679
43997
  "responses": {
43680
43998
  "200": {
43681
43999
  "description": "Successful response",
@@ -43695,7 +44013,7 @@
43695
44013
  "example": "Success message."
43696
44014
  },
43697
44015
  "data": {
43698
- "nullable": true
44016
+ "type": "object"
43699
44017
  }
43700
44018
  },
43701
44019
  "required": [
@@ -43709,7 +44027,7 @@
43709
44027
  }
43710
44028
  },
43711
44029
  "tags": [
43712
- "Events::Sponsorships"
44030
+ "Events::OnSite"
43713
44031
  ]
43714
44032
  }
43715
44033
  },
@@ -44556,85 +44874,14 @@
44556
44874
  "example": "Success message."
44557
44875
  },
44558
44876
  "data": {
44559
- "type": "array",
44560
- "items": {
44561
- "$ref": "#/components/schemas/Account"
44562
- }
44563
- },
44564
- "count": {
44565
- "type": "integer",
44566
- "example": 100
44567
- }
44568
- },
44569
- "required": [
44570
- "status",
44571
- "message",
44572
- "data"
44573
- ]
44574
- }
44575
- }
44576
- }
44577
- }
44578
- },
44579
- "tags": [
44580
- "Events::Tracks"
44581
- ]
44582
- }
44583
- },
44584
- "/events/{eventId}/tracks/{trackId}/sponsors/{sponsorId}": {
44585
- "post": {
44586
- "operationId": "AddEventTrackSponsor",
44587
- "summary": "Add Event Track Sponsor",
44588
- "description": "Add Event Track Sponsor endpoint",
44589
- "parameters": [
44590
- {
44591
- "in": "path",
44592
- "name": "eventId",
44593
- "schema": {
44594
- "type": "string"
44595
- },
44596
- "description": "The event identifier",
44597
- "required": true
44598
- },
44599
- {
44600
- "in": "path",
44601
- "name": "trackId",
44602
- "schema": {
44603
- "type": "string"
44604
- },
44605
- "description": "The track identifier",
44606
- "required": true
44607
- },
44608
- {
44609
- "in": "path",
44610
- "name": "sponsorId",
44611
- "schema": {
44612
- "type": "string"
44613
- },
44614
- "description": "The sponsor identifier",
44615
- "required": true
44616
- }
44617
- ],
44618
- "responses": {
44619
- "200": {
44620
- "description": "Successful response",
44621
- "content": {
44622
- "application/json": {
44623
- "schema": {
44624
- "type": "object",
44625
- "properties": {
44626
- "status": {
44627
- "type": "string",
44628
- "enum": [
44629
- "ok"
44630
- ]
44631
- },
44632
- "message": {
44633
- "type": "string",
44634
- "example": "Success message."
44635
- },
44636
- "data": {
44637
- "$ref": "#/components/schemas/EventTrack"
44877
+ "type": "array",
44878
+ "items": {
44879
+ "$ref": "#/components/schemas/Account"
44880
+ }
44881
+ },
44882
+ "count": {
44883
+ "type": "integer",
44884
+ "example": 100
44638
44885
  }
44639
44886
  },
44640
44887
  "required": [
@@ -44650,11 +44897,13 @@
44650
44897
  "tags": [
44651
44898
  "Events::Tracks"
44652
44899
  ]
44653
- },
44654
- "delete": {
44655
- "operationId": "RemoveEventTrackSponsor",
44656
- "summary": "Remove Event Track Sponsor",
44657
- "description": "Remove Event Track Sponsor endpoint",
44900
+ }
44901
+ },
44902
+ "/events/{eventId}/tracks/{trackId}/sponsors/{sponsorId}": {
44903
+ "post": {
44904
+ "operationId": "AddEventTrackSponsor",
44905
+ "summary": "Add Event Track Sponsor",
44906
+ "description": "Add Event Track Sponsor endpoint",
44658
44907
  "parameters": [
44659
44908
  {
44660
44909
  "in": "path",
@@ -44719,13 +44968,11 @@
44719
44968
  "tags": [
44720
44969
  "Events::Tracks"
44721
44970
  ]
44722
- }
44723
- },
44724
- "/events/{eventId}/zpl-template": {
44725
- "put": {
44726
- "operationId": "UpdateEventZplTemplate",
44727
- "summary": "Update Event Zpl Template",
44728
- "description": "Update Event Zpl Template endpoint",
44971
+ },
44972
+ "delete": {
44973
+ "operationId": "RemoveEventTrackSponsor",
44974
+ "summary": "Remove Event Track Sponsor",
44975
+ "description": "Remove Event Track Sponsor endpoint",
44729
44976
  "parameters": [
44730
44977
  {
44731
44978
  "in": "path",
@@ -44737,12 +44984,21 @@
44737
44984
  "required": true
44738
44985
  },
44739
44986
  {
44740
- "in": "query",
44741
- "name": "zplTemplate",
44987
+ "in": "path",
44988
+ "name": "trackId",
44742
44989
  "schema": {
44743
44990
  "type": "string"
44744
44991
  },
44745
- "description": "Filter by zplTemplate",
44992
+ "description": "The track identifier",
44993
+ "required": true
44994
+ },
44995
+ {
44996
+ "in": "path",
44997
+ "name": "sponsorId",
44998
+ "schema": {
44999
+ "type": "string"
45000
+ },
45001
+ "description": "The sponsor identifier",
44746
45002
  "required": true
44747
45003
  }
44748
45004
  ],
@@ -44765,7 +45021,7 @@
44765
45021
  "example": "Success message."
44766
45022
  },
44767
45023
  "data": {
44768
- "$ref": "#/components/schemas/EventOnSite"
45024
+ "$ref": "#/components/schemas/EventTrack"
44769
45025
  }
44770
45026
  },
44771
45027
  "required": [
@@ -44779,7 +45035,7 @@
44779
45035
  }
44780
45036
  },
44781
45037
  "tags": [
44782
- "Events::OnSite"
45038
+ "Events::Tracks"
44783
45039
  ]
44784
45040
  }
44785
45041
  },
@@ -68763,10 +69019,233 @@
68763
69019
  },
68764
69020
  "data": {
68765
69021
  "type": "object"
68766
- },
68767
- "count": {
68768
- "type": "integer",
68769
- "example": 100
69022
+ },
69023
+ "count": {
69024
+ "type": "integer",
69025
+ "example": 100
69026
+ }
69027
+ },
69028
+ "required": [
69029
+ "status",
69030
+ "message",
69031
+ "data"
69032
+ ]
69033
+ }
69034
+ }
69035
+ }
69036
+ }
69037
+ },
69038
+ "tags": [
69039
+ "Surveys::Sections"
69040
+ ]
69041
+ }
69042
+ },
69043
+ "/surveys/{surveyId}/sections/{sectionId}/questions/reorder": {
69044
+ "put": {
69045
+ "operationId": "ReorderSurveySectionQuestions",
69046
+ "summary": "Reorder Survey Section Questions",
69047
+ "description": "Reorder Survey Section Questions endpoint",
69048
+ "parameters": [
69049
+ {
69050
+ "in": "path",
69051
+ "name": "surveyId",
69052
+ "schema": {
69053
+ "type": "string"
69054
+ },
69055
+ "description": "The survey identifier",
69056
+ "required": true
69057
+ },
69058
+ {
69059
+ "in": "path",
69060
+ "name": "sectionId",
69061
+ "schema": {
69062
+ "type": "string"
69063
+ },
69064
+ "description": "The section identifier",
69065
+ "required": true
69066
+ },
69067
+ {
69068
+ "in": "query",
69069
+ "name": "questionIds",
69070
+ "schema": {
69071
+ "type": "array",
69072
+ "items": {
69073
+ "type": "string"
69074
+ }
69075
+ },
69076
+ "description": "Filter by questionIds",
69077
+ "required": true
69078
+ }
69079
+ ],
69080
+ "responses": {
69081
+ "200": {
69082
+ "description": "Successful response",
69083
+ "content": {
69084
+ "application/json": {
69085
+ "schema": {
69086
+ "type": "object",
69087
+ "properties": {
69088
+ "status": {
69089
+ "type": "string",
69090
+ "enum": [
69091
+ "ok"
69092
+ ]
69093
+ },
69094
+ "message": {
69095
+ "type": "string",
69096
+ "example": "Success message."
69097
+ },
69098
+ "data": {
69099
+ "type": "object"
69100
+ }
69101
+ },
69102
+ "required": [
69103
+ "status",
69104
+ "message",
69105
+ "data"
69106
+ ]
69107
+ }
69108
+ }
69109
+ }
69110
+ }
69111
+ },
69112
+ "tags": [
69113
+ "Surveys::Sections"
69114
+ ]
69115
+ }
69116
+ },
69117
+ "/surveys/{surveyId}/sections/{sectionId}/questions/{questionId}": {
69118
+ "post": {
69119
+ "operationId": "AddSurveySectionQuestion",
69120
+ "summary": "Add Survey Section Question",
69121
+ "description": "Add Survey Section Question endpoint",
69122
+ "parameters": [
69123
+ {
69124
+ "in": "path",
69125
+ "name": "surveyId",
69126
+ "schema": {
69127
+ "type": "string"
69128
+ },
69129
+ "description": "The survey identifier",
69130
+ "required": true
69131
+ },
69132
+ {
69133
+ "in": "path",
69134
+ "name": "sectionId",
69135
+ "schema": {
69136
+ "type": "string"
69137
+ },
69138
+ "description": "The section identifier",
69139
+ "required": true
69140
+ },
69141
+ {
69142
+ "in": "path",
69143
+ "name": "questionId",
69144
+ "schema": {
69145
+ "type": "string"
69146
+ },
69147
+ "description": "The question identifier",
69148
+ "required": true
69149
+ }
69150
+ ],
69151
+ "responses": {
69152
+ "200": {
69153
+ "description": "Successful response",
69154
+ "content": {
69155
+ "application/json": {
69156
+ "schema": {
69157
+ "type": "object",
69158
+ "properties": {
69159
+ "status": {
69160
+ "type": "string",
69161
+ "enum": [
69162
+ "ok"
69163
+ ]
69164
+ },
69165
+ "message": {
69166
+ "type": "string",
69167
+ "example": "Success message."
69168
+ },
69169
+ "data": {
69170
+ "type": "object"
69171
+ }
69172
+ },
69173
+ "required": [
69174
+ "status",
69175
+ "message",
69176
+ "data"
69177
+ ]
69178
+ }
69179
+ }
69180
+ }
69181
+ }
69182
+ },
69183
+ "tags": [
69184
+ "Surveys::Sections"
69185
+ ]
69186
+ },
69187
+ "put": {
69188
+ "operationId": "UpdateSurveySectionQuestion",
69189
+ "summary": "Update Survey Section Question",
69190
+ "description": "Update Survey Section Question endpoint",
69191
+ "parameters": [
69192
+ {
69193
+ "in": "path",
69194
+ "name": "surveyId",
69195
+ "schema": {
69196
+ "type": "string"
69197
+ },
69198
+ "description": "The survey identifier",
69199
+ "required": true
69200
+ },
69201
+ {
69202
+ "in": "path",
69203
+ "name": "sectionId",
69204
+ "schema": {
69205
+ "type": "string"
69206
+ },
69207
+ "description": "The section identifier",
69208
+ "required": true
69209
+ },
69210
+ {
69211
+ "in": "path",
69212
+ "name": "questionId",
69213
+ "schema": {
69214
+ "type": "string"
69215
+ },
69216
+ "description": "The question identifier",
69217
+ "required": true
69218
+ },
69219
+ {
69220
+ "in": "query",
69221
+ "name": "sortOrder",
69222
+ "schema": {
69223
+ "type": "number"
69224
+ },
69225
+ "description": "Filter by sortOrder",
69226
+ "required": true
69227
+ }
69228
+ ],
69229
+ "responses": {
69230
+ "200": {
69231
+ "description": "Successful response",
69232
+ "content": {
69233
+ "application/json": {
69234
+ "schema": {
69235
+ "type": "object",
69236
+ "properties": {
69237
+ "status": {
69238
+ "type": "string",
69239
+ "enum": [
69240
+ "ok"
69241
+ ]
69242
+ },
69243
+ "message": {
69244
+ "type": "string",
69245
+ "example": "Success message."
69246
+ },
69247
+ "data": {
69248
+ "type": "object"
68770
69249
  }
68771
69250
  },
68772
69251
  "required": [
@@ -68782,13 +69261,11 @@
68782
69261
  "tags": [
68783
69262
  "Surveys::Sections"
68784
69263
  ]
68785
- }
68786
- },
68787
- "/surveys/{surveyId}/sections/{sectionId}/questions/reorder": {
68788
- "put": {
68789
- "operationId": "ReorderSurveySectionQuestions",
68790
- "summary": "Reorder Survey Section Questions",
68791
- "description": "Reorder Survey Section Questions endpoint",
69264
+ },
69265
+ "delete": {
69266
+ "operationId": "RemoveSurveySectionQuestion",
69267
+ "summary": "Remove Survey Section Question",
69268
+ "description": "Remove Survey Section Question endpoint",
68792
69269
  "parameters": [
68793
69270
  {
68794
69271
  "in": "path",
@@ -68809,15 +69286,12 @@
68809
69286
  "required": true
68810
69287
  },
68811
69288
  {
68812
- "in": "query",
68813
- "name": "questionIds",
69289
+ "in": "path",
69290
+ "name": "questionId",
68814
69291
  "schema": {
68815
- "type": "array",
68816
- "items": {
68817
- "type": "string"
68818
- }
69292
+ "type": "string"
68819
69293
  },
68820
- "description": "Filter by questionIds",
69294
+ "description": "The question identifier",
68821
69295
  "required": true
68822
69296
  }
68823
69297
  ],
@@ -68858,11 +69332,11 @@
68858
69332
  ]
68859
69333
  }
68860
69334
  },
68861
- "/surveys/{surveyId}/sections/{sectionId}/questions/{questionId}": {
68862
- "post": {
68863
- "operationId": "AddSurveySectionQuestion",
68864
- "summary": "Add Survey Section Question",
68865
- "description": "Add Survey Section Question endpoint",
69335
+ "/surveys/{surveyId}/sessions": {
69336
+ "get": {
69337
+ "operationId": "GetSurveySessions",
69338
+ "summary": "Get Survey Sessions",
69339
+ "description": "Get Survey Sessions endpoint",
68866
69340
  "parameters": [
68867
69341
  {
68868
69342
  "in": "path",
@@ -68874,22 +69348,45 @@
68874
69348
  "required": true
68875
69349
  },
68876
69350
  {
68877
- "in": "path",
68878
- "name": "sectionId",
69351
+ "in": "query",
69352
+ "name": "page",
69353
+ "schema": {
69354
+ "type": "integer",
69355
+ "minimum": 1,
69356
+ "default": 1
69357
+ },
69358
+ "description": "Page number",
69359
+ "required": false
69360
+ },
69361
+ {
69362
+ "in": "query",
69363
+ "name": "pageSize",
69364
+ "schema": {
69365
+ "type": "integer",
69366
+ "minimum": 1,
69367
+ "maximum": 100,
69368
+ "default": 25
69369
+ },
69370
+ "description": "Number of items per page",
69371
+ "required": false
69372
+ },
69373
+ {
69374
+ "in": "query",
69375
+ "name": "orderBy",
68879
69376
  "schema": {
68880
69377
  "type": "string"
68881
69378
  },
68882
- "description": "The section identifier",
68883
- "required": true
69379
+ "description": "Field to order by",
69380
+ "required": false
68884
69381
  },
68885
69382
  {
68886
- "in": "path",
68887
- "name": "questionId",
69383
+ "in": "query",
69384
+ "name": "search",
68888
69385
  "schema": {
68889
69386
  "type": "string"
68890
69387
  },
68891
- "description": "The question identifier",
68892
- "required": true
69388
+ "description": "Search query",
69389
+ "required": false
68893
69390
  }
68894
69391
  ],
68895
69392
  "responses": {
@@ -68911,7 +69408,14 @@
68911
69408
  "example": "Success message."
68912
69409
  },
68913
69410
  "data": {
68914
- "type": "object"
69411
+ "type": "array",
69412
+ "items": {
69413
+ "$ref": "#/components/schemas/EventSession"
69414
+ }
69415
+ },
69416
+ "count": {
69417
+ "type": "integer",
69418
+ "example": 100
68915
69419
  }
68916
69420
  },
68917
69421
  "required": [
@@ -68925,13 +69429,15 @@
68925
69429
  }
68926
69430
  },
68927
69431
  "tags": [
68928
- "Surveys::Sections"
69432
+ "Surveys"
68929
69433
  ]
68930
- },
68931
- "put": {
68932
- "operationId": "UpdateSurveySectionQuestion",
68933
- "summary": "Update Survey Section Question",
68934
- "description": "Update Survey Section Question endpoint",
69434
+ }
69435
+ },
69436
+ "/surveys/{surveyId}/sessions/{sessionId}": {
69437
+ "post": {
69438
+ "operationId": "AddSurveySession",
69439
+ "summary": "Add Survey Session",
69440
+ "description": "Add Survey Session endpoint",
68935
69441
  "parameters": [
68936
69442
  {
68937
69443
  "in": "path",
@@ -68944,29 +69450,11 @@
68944
69450
  },
68945
69451
  {
68946
69452
  "in": "path",
68947
- "name": "sectionId",
68948
- "schema": {
68949
- "type": "string"
68950
- },
68951
- "description": "The section identifier",
68952
- "required": true
68953
- },
68954
- {
68955
- "in": "path",
68956
- "name": "questionId",
69453
+ "name": "sessionId",
68957
69454
  "schema": {
68958
69455
  "type": "string"
68959
69456
  },
68960
- "description": "The question identifier",
68961
- "required": true
68962
- },
68963
- {
68964
- "in": "query",
68965
- "name": "sortOrder",
68966
- "schema": {
68967
- "type": "number"
68968
- },
68969
- "description": "Filter by sortOrder",
69457
+ "description": "The session identifier",
68970
69458
  "required": true
68971
69459
  }
68972
69460
  ],
@@ -68989,7 +69477,7 @@
68989
69477
  "example": "Success message."
68990
69478
  },
68991
69479
  "data": {
68992
- "type": "object"
69480
+ "$ref": "#/components/schemas/Survey"
68993
69481
  }
68994
69482
  },
68995
69483
  "required": [
@@ -69003,13 +69491,13 @@
69003
69491
  }
69004
69492
  },
69005
69493
  "tags": [
69006
- "Surveys::Sections"
69494
+ "Surveys::Sessions"
69007
69495
  ]
69008
69496
  },
69009
69497
  "delete": {
69010
- "operationId": "RemoveSurveySectionQuestion",
69011
- "summary": "Remove Survey Section Question",
69012
- "description": "Remove Survey Section Question endpoint",
69498
+ "operationId": "RemoveSurveySession",
69499
+ "summary": "Remove Survey Session",
69500
+ "description": "Remove Survey Session endpoint",
69013
69501
  "parameters": [
69014
69502
  {
69015
69503
  "in": "path",
@@ -69022,20 +69510,11 @@
69022
69510
  },
69023
69511
  {
69024
69512
  "in": "path",
69025
- "name": "sectionId",
69026
- "schema": {
69027
- "type": "string"
69028
- },
69029
- "description": "The section identifier",
69030
- "required": true
69031
- },
69032
- {
69033
- "in": "path",
69034
- "name": "questionId",
69513
+ "name": "sessionId",
69035
69514
  "schema": {
69036
69515
  "type": "string"
69037
69516
  },
69038
- "description": "The question identifier",
69517
+ "description": "The session identifier",
69039
69518
  "required": true
69040
69519
  }
69041
69520
  ],
@@ -69058,7 +69537,7 @@
69058
69537
  "example": "Success message."
69059
69538
  },
69060
69539
  "data": {
69061
- "type": "object"
69540
+ "$ref": "#/components/schemas/Survey"
69062
69541
  }
69063
69542
  },
69064
69543
  "required": [
@@ -69072,7 +69551,7 @@
69072
69551
  }
69073
69552
  },
69074
69553
  "tags": [
69075
- "Surveys::Sections"
69554
+ "Surveys::Sessions"
69076
69555
  ]
69077
69556
  }
69078
69557
  },
@@ -73827,6 +74306,14 @@
73827
74306
  "countryStateCity"
73828
74307
  ]
73829
74308
  },
74309
+ "OnSiteScanType": {
74310
+ "type": "string",
74311
+ "enum": [
74312
+ "both",
74313
+ "qr",
74314
+ "code128"
74315
+ ]
74316
+ },
73830
74317
  "BaseOrganizationModule": {
73831
74318
  "type": "object",
73832
74319
  "properties": {
@@ -74995,13 +75482,16 @@
74995
75482
  ],
74996
75483
  "nullable": true
74997
75484
  },
74998
- "session": {
74999
- "allOf": [
75000
- {
75001
- "$ref": "#/components/schemas/BaseEventSession"
75485
+ "_count": {
75486
+ "type": "object",
75487
+ "properties": {
75488
+ "sessions": {
75489
+ "type": "number"
75002
75490
  }
75003
- ],
75004
- "nullable": true
75491
+ },
75492
+ "required": [
75493
+ "sessions"
75494
+ ]
75005
75495
  }
75006
75496
  },
75007
75497
  "required": [
@@ -75015,7 +75505,7 @@
75015
75505
  "type",
75016
75506
  "accessLevel",
75017
75507
  "survey",
75018
- "session"
75508
+ "_count"
75019
75509
  ]
75020
75510
  },
75021
75511
  "EventActivation": {
@@ -75055,6 +75545,9 @@
75055
75545
  "continuousScanning": {
75056
75546
  "type": "boolean"
75057
75547
  },
75548
+ "scanType": {
75549
+ "$ref": "#/components/schemas/OnSiteScanType"
75550
+ },
75058
75551
  "createdAt": {
75059
75552
  "type": "string"
75060
75553
  },
@@ -75070,6 +75563,7 @@
75070
75563
  "protectionCode",
75071
75564
  "longDescription",
75072
75565
  "continuousScanning",
75566
+ "scanType",
75073
75567
  "createdAt",
75074
75568
  "updatedAt"
75075
75569
  ]
@@ -77850,6 +78344,9 @@
77850
78344
  "continuousScanning": {
77851
78345
  "type": "boolean"
77852
78346
  },
78347
+ "scanType": {
78348
+ "$ref": "#/components/schemas/OnSiteScanType"
78349
+ },
77853
78350
  "options": {
77854
78351
  "type": "object",
77855
78352
  "nullable": true
@@ -77894,6 +78391,7 @@
77894
78391
  "meetingId",
77895
78392
  "meeting",
77896
78393
  "continuousScanning",
78394
+ "scanType",
77897
78395
  "options"
77898
78396
  ]
77899
78397
  }
@@ -83783,6 +84281,9 @@
83783
84281
  },
83784
84282
  "continuousScanning": {
83785
84283
  "type": "boolean"
84284
+ },
84285
+ "scanType": {
84286
+ "$ref": "#/components/schemas/OnSiteScanType"
83786
84287
  }
83787
84288
  },
83788
84289
  "required": [
@@ -83798,7 +84299,8 @@
83798
84299
  "activationId",
83799
84300
  "activation",
83800
84301
  "allowedTiers",
83801
- "continuousScanning"
84302
+ "continuousScanning",
84303
+ "scanType"
83802
84304
  ]
83803
84305
  }
83804
84306
  ]
@@ -89921,6 +90423,39 @@
89921
90423
  }
89922
90424
  ]
89923
90425
  },
90426
+ "EventMediaItemTranslation": {
90427
+ "type": "object",
90428
+ "properties": {
90429
+ "id": {
90430
+ "type": "string"
90431
+ },
90432
+ "locale": {
90433
+ "type": "string"
90434
+ },
90435
+ "name": {
90436
+ "type": "string",
90437
+ "nullable": true
90438
+ },
90439
+ "description": {
90440
+ "type": "string",
90441
+ "nullable": true
90442
+ },
90443
+ "createdAt": {
90444
+ "type": "string"
90445
+ },
90446
+ "updatedAt": {
90447
+ "type": "string"
90448
+ }
90449
+ },
90450
+ "required": [
90451
+ "id",
90452
+ "locale",
90453
+ "name",
90454
+ "description",
90455
+ "createdAt",
90456
+ "updatedAt"
90457
+ ]
90458
+ },
89924
90459
  "BaseEventSponsorshipLevel": {
89925
90460
  "type": "object",
89926
90461
  "properties": {
@@ -90191,18 +90726,6 @@
90191
90726
  ],
90192
90727
  "nullable": true
90193
90728
  },
90194
- "sessionId": {
90195
- "type": "string",
90196
- "nullable": true
90197
- },
90198
- "session": {
90199
- "allOf": [
90200
- {
90201
- "$ref": "#/components/schemas/BaseEventSession"
90202
- }
90203
- ],
90204
- "nullable": true
90205
- },
90206
90729
  "activationId": {
90207
90730
  "type": "string",
90208
90731
  "nullable": true
@@ -90241,8 +90764,6 @@
90241
90764
  "updatedAt",
90242
90765
  "eventId",
90243
90766
  "event",
90244
- "sessionId",
90245
- "session",
90246
90767
  "activationId",
90247
90768
  "activation",
90248
90769
  "passTypes",
@@ -94155,6 +94676,14 @@
94155
94676
  },
94156
94677
  "continuousScanning": {
94157
94678
  "type": "boolean"
94679
+ },
94680
+ "scanType": {
94681
+ "allOf": [
94682
+ {
94683
+ "$ref": "#/components/schemas/OnSiteScanType"
94684
+ }
94685
+ ],
94686
+ "nullable": true
94158
94687
  }
94159
94688
  },
94160
94689
  "required": [
@@ -94239,6 +94768,14 @@
94239
94768
  },
94240
94769
  "continuousScanning": {
94241
94770
  "type": "boolean"
94771
+ },
94772
+ "scanType": {
94773
+ "allOf": [
94774
+ {
94775
+ "$ref": "#/components/schemas/OnSiteScanType"
94776
+ }
94777
+ ],
94778
+ "nullable": true
94242
94779
  }
94243
94780
  }
94244
94781
  },
@@ -95016,6 +95553,14 @@
95016
95553
  },
95017
95554
  "continuousScanning": {
95018
95555
  "type": "boolean"
95556
+ },
95557
+ "scanType": {
95558
+ "allOf": [
95559
+ {
95560
+ "$ref": "#/components/schemas/OnSiteScanType"
95561
+ }
95562
+ ],
95563
+ "nullable": true
95019
95564
  }
95020
95565
  },
95021
95566
  "required": [
@@ -95280,6 +95825,14 @@
95280
95825
  },
95281
95826
  "continuousScanning": {
95282
95827
  "type": "boolean"
95828
+ },
95829
+ "scanType": {
95830
+ "allOf": [
95831
+ {
95832
+ "$ref": "#/components/schemas/OnSiteScanType"
95833
+ }
95834
+ ],
95835
+ "nullable": true
95283
95836
  }
95284
95837
  }
95285
95838
  },
@@ -96055,6 +96608,14 @@
96055
96608
  },
96056
96609
  "continuousScanning": {
96057
96610
  "type": "boolean"
96611
+ },
96612
+ "scanType": {
96613
+ "allOf": [
96614
+ {
96615
+ "$ref": "#/components/schemas/OnSiteScanType"
96616
+ }
96617
+ ],
96618
+ "nullable": true
96058
96619
  }
96059
96620
  },
96060
96621
  "required": [
@@ -96215,6 +96776,14 @@
96215
96776
  },
96216
96777
  "continuousScanning": {
96217
96778
  "type": "boolean"
96779
+ },
96780
+ "scanType": {
96781
+ "allOf": [
96782
+ {
96783
+ "$ref": "#/components/schemas/OnSiteScanType"
96784
+ }
96785
+ ],
96786
+ "nullable": true
96218
96787
  }
96219
96788
  }
96220
96789
  },
@@ -101040,10 +101609,6 @@
101040
101609
  "type": "string",
101041
101610
  "nullable": true
101042
101611
  },
101043
- "sessionId": {
101044
- "type": "string",
101045
- "nullable": true
101046
- },
101047
101612
  "activationId": {
101048
101613
  "type": "string",
101049
101614
  "nullable": true
@@ -101098,10 +101663,6 @@
101098
101663
  "type": "string",
101099
101664
  "nullable": true
101100
101665
  },
101101
- "sessionId": {
101102
- "type": "string",
101103
- "nullable": true
101104
- },
101105
101666
  "activationId": {
101106
101667
  "type": "string",
101107
101668
  "nullable": true
@@ -101756,6 +102317,19 @@
101756
102317
  }
101757
102318
  }
101758
102319
  },
102320
+ "EventMediaItemTranslationUpdateInputs": {
102321
+ "type": "object",
102322
+ "properties": {
102323
+ "name": {
102324
+ "type": "string",
102325
+ "nullable": true
102326
+ },
102327
+ "description": {
102328
+ "type": "string",
102329
+ "nullable": true
102330
+ }
102331
+ }
102332
+ },
101759
102333
  "EventSponsorshipLevelCreateInputs": {
101760
102334
  "type": "object",
101761
102335
  "properties": {