@connectedxm/admin 6.11.1 → 6.12.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/dist/index.cjs +277 -0
- package/dist/index.d.cts +227 -4
- package/dist/index.d.ts +227 -4
- package/dist/index.js +255 -0
- package/openapi.json +1385 -562
- package/package.json +10 -10
package/openapi.json
CHANGED
|
@@ -148,6 +148,10 @@
|
|
|
148
148
|
"name": "Events::Attendees::Reservations",
|
|
149
149
|
"description": "Manage lodging and accommodation reservations made by event attendees, including room assignments and reservation details"
|
|
150
150
|
},
|
|
151
|
+
{
|
|
152
|
+
"name": "Events::Attributes",
|
|
153
|
+
"description": "Operations for events::attributes"
|
|
154
|
+
},
|
|
151
155
|
{
|
|
152
156
|
"name": "Events::Benefits",
|
|
153
157
|
"description": "Associate exclusive offers or discounts with events, providing special perks to attendees or members"
|
|
@@ -208,6 +212,10 @@
|
|
|
208
212
|
"name": "Events::Passes",
|
|
209
213
|
"description": "Manage individual passes purchased by attendees, tracking pass status, check-ins, and access permissions for event registration"
|
|
210
214
|
},
|
|
215
|
+
{
|
|
216
|
+
"name": "Events::Passes::Attributes",
|
|
217
|
+
"description": "Operations for events::passes::attributes"
|
|
218
|
+
},
|
|
211
219
|
{
|
|
212
220
|
"name": "Events::Passtypes",
|
|
213
221
|
"description": "Create and configure pass types with unique names, descriptions, prices, access levels, and rules that define what each pass enables"
|
|
@@ -16012,133 +16020,11 @@
|
|
|
16012
16020
|
]
|
|
16013
16021
|
}
|
|
16014
16022
|
},
|
|
16015
|
-
"/events/{eventId}/
|
|
16016
|
-
"post": {
|
|
16017
|
-
"operationId": "AddEventBenefit",
|
|
16018
|
-
"summary": "Add Event Benefit",
|
|
16019
|
-
"description": "Add Event Benefit endpoint",
|
|
16020
|
-
"parameters": [
|
|
16021
|
-
{
|
|
16022
|
-
"in": "path",
|
|
16023
|
-
"name": "eventId",
|
|
16024
|
-
"schema": {
|
|
16025
|
-
"type": "string"
|
|
16026
|
-
},
|
|
16027
|
-
"description": "The event identifier",
|
|
16028
|
-
"required": true
|
|
16029
|
-
},
|
|
16030
|
-
{
|
|
16031
|
-
"in": "path",
|
|
16032
|
-
"name": "benefitId",
|
|
16033
|
-
"schema": {
|
|
16034
|
-
"type": "string"
|
|
16035
|
-
},
|
|
16036
|
-
"description": "The benefit identifier",
|
|
16037
|
-
"required": true
|
|
16038
|
-
}
|
|
16039
|
-
],
|
|
16040
|
-
"responses": {
|
|
16041
|
-
"200": {
|
|
16042
|
-
"description": "Successful response",
|
|
16043
|
-
"content": {
|
|
16044
|
-
"application/json": {
|
|
16045
|
-
"schema": {
|
|
16046
|
-
"type": "object",
|
|
16047
|
-
"properties": {
|
|
16048
|
-
"status": {
|
|
16049
|
-
"type": "string",
|
|
16050
|
-
"enum": [
|
|
16051
|
-
"ok"
|
|
16052
|
-
]
|
|
16053
|
-
},
|
|
16054
|
-
"message": {
|
|
16055
|
-
"type": "string",
|
|
16056
|
-
"example": "Success message."
|
|
16057
|
-
},
|
|
16058
|
-
"data": {
|
|
16059
|
-
"$ref": "#/components/schemas/Benefit"
|
|
16060
|
-
}
|
|
16061
|
-
},
|
|
16062
|
-
"required": [
|
|
16063
|
-
"status",
|
|
16064
|
-
"message",
|
|
16065
|
-
"data"
|
|
16066
|
-
]
|
|
16067
|
-
}
|
|
16068
|
-
}
|
|
16069
|
-
}
|
|
16070
|
-
}
|
|
16071
|
-
},
|
|
16072
|
-
"tags": [
|
|
16073
|
-
"Events::Benefits"
|
|
16074
|
-
]
|
|
16075
|
-
},
|
|
16076
|
-
"delete": {
|
|
16077
|
-
"operationId": "RemoveEventBenefit",
|
|
16078
|
-
"summary": "Remove Event Benefit",
|
|
16079
|
-
"description": "Remove Event Benefit endpoint",
|
|
16080
|
-
"parameters": [
|
|
16081
|
-
{
|
|
16082
|
-
"in": "path",
|
|
16083
|
-
"name": "eventId",
|
|
16084
|
-
"schema": {
|
|
16085
|
-
"type": "string"
|
|
16086
|
-
},
|
|
16087
|
-
"description": "The event identifier",
|
|
16088
|
-
"required": true
|
|
16089
|
-
},
|
|
16090
|
-
{
|
|
16091
|
-
"in": "path",
|
|
16092
|
-
"name": "benefitId",
|
|
16093
|
-
"schema": {
|
|
16094
|
-
"type": "string"
|
|
16095
|
-
},
|
|
16096
|
-
"description": "The benefit identifier",
|
|
16097
|
-
"required": true
|
|
16098
|
-
}
|
|
16099
|
-
],
|
|
16100
|
-
"responses": {
|
|
16101
|
-
"200": {
|
|
16102
|
-
"description": "Successful response",
|
|
16103
|
-
"content": {
|
|
16104
|
-
"application/json": {
|
|
16105
|
-
"schema": {
|
|
16106
|
-
"type": "object",
|
|
16107
|
-
"properties": {
|
|
16108
|
-
"status": {
|
|
16109
|
-
"type": "string",
|
|
16110
|
-
"enum": [
|
|
16111
|
-
"ok"
|
|
16112
|
-
]
|
|
16113
|
-
},
|
|
16114
|
-
"message": {
|
|
16115
|
-
"type": "string",
|
|
16116
|
-
"example": "Success message."
|
|
16117
|
-
},
|
|
16118
|
-
"data": {
|
|
16119
|
-
"$ref": "#/components/schemas/Benefit"
|
|
16120
|
-
}
|
|
16121
|
-
},
|
|
16122
|
-
"required": [
|
|
16123
|
-
"status",
|
|
16124
|
-
"message",
|
|
16125
|
-
"data"
|
|
16126
|
-
]
|
|
16127
|
-
}
|
|
16128
|
-
}
|
|
16129
|
-
}
|
|
16130
|
-
}
|
|
16131
|
-
},
|
|
16132
|
-
"tags": [
|
|
16133
|
-
"Events::Benefits"
|
|
16134
|
-
]
|
|
16135
|
-
}
|
|
16136
|
-
},
|
|
16137
|
-
"/events/{eventId}/blocks": {
|
|
16023
|
+
"/events/{eventId}/attributes": {
|
|
16138
16024
|
"get": {
|
|
16139
|
-
"operationId": "
|
|
16140
|
-
"summary": "Get Event
|
|
16141
|
-
"description": "Get Event
|
|
16025
|
+
"operationId": "GetEventAttributes",
|
|
16026
|
+
"summary": "Get Event Attributes",
|
|
16027
|
+
"description": "Get Event Attributes endpoint",
|
|
16142
16028
|
"parameters": [
|
|
16143
16029
|
{
|
|
16144
16030
|
"in": "path",
|
|
@@ -16210,10 +16096,7 @@
|
|
|
16210
16096
|
"example": "Success message."
|
|
16211
16097
|
},
|
|
16212
16098
|
"data": {
|
|
16213
|
-
"type": "
|
|
16214
|
-
"items": {
|
|
16215
|
-
"$ref": "#/components/schemas/EventBlock"
|
|
16216
|
-
}
|
|
16099
|
+
"type": "object"
|
|
16217
16100
|
},
|
|
16218
16101
|
"count": {
|
|
16219
16102
|
"type": "integer",
|
|
@@ -16231,13 +16114,13 @@
|
|
|
16231
16114
|
}
|
|
16232
16115
|
},
|
|
16233
16116
|
"tags": [
|
|
16234
|
-
"Events::
|
|
16117
|
+
"Events::Attributes"
|
|
16235
16118
|
]
|
|
16236
16119
|
},
|
|
16237
16120
|
"post": {
|
|
16238
|
-
"operationId": "
|
|
16239
|
-
"summary": "Create Event
|
|
16240
|
-
"description": "Create Event
|
|
16121
|
+
"operationId": "CreateEventAttribute",
|
|
16122
|
+
"summary": "Create Event Attribute",
|
|
16123
|
+
"description": "Create Event Attribute endpoint",
|
|
16241
16124
|
"parameters": [
|
|
16242
16125
|
{
|
|
16243
16126
|
"in": "path",
|
|
@@ -16254,7 +16137,7 @@
|
|
|
16254
16137
|
"content": {
|
|
16255
16138
|
"application/json": {
|
|
16256
16139
|
"schema": {
|
|
16257
|
-
"$ref": "#/components/schemas/
|
|
16140
|
+
"$ref": "#/components/schemas/EventAttributeCreateInputs"
|
|
16258
16141
|
}
|
|
16259
16142
|
}
|
|
16260
16143
|
}
|
|
@@ -16278,7 +16161,7 @@
|
|
|
16278
16161
|
"example": "Success message."
|
|
16279
16162
|
},
|
|
16280
16163
|
"data": {
|
|
16281
|
-
"
|
|
16164
|
+
"type": "object"
|
|
16282
16165
|
}
|
|
16283
16166
|
},
|
|
16284
16167
|
"required": [
|
|
@@ -16292,15 +16175,15 @@
|
|
|
16292
16175
|
}
|
|
16293
16176
|
},
|
|
16294
16177
|
"tags": [
|
|
16295
|
-
"Events::
|
|
16178
|
+
"Events::Attributes"
|
|
16296
16179
|
]
|
|
16297
16180
|
}
|
|
16298
16181
|
},
|
|
16299
|
-
"/events/{eventId}/
|
|
16182
|
+
"/events/{eventId}/attributes/{attributeId}": {
|
|
16300
16183
|
"get": {
|
|
16301
|
-
"operationId": "
|
|
16302
|
-
"summary": "Get Event
|
|
16303
|
-
"description": "Get Event
|
|
16184
|
+
"operationId": "GetEventAttribute",
|
|
16185
|
+
"summary": "Get Event Attribute",
|
|
16186
|
+
"description": "Get Event Attribute endpoint",
|
|
16304
16187
|
"parameters": [
|
|
16305
16188
|
{
|
|
16306
16189
|
"in": "path",
|
|
@@ -16313,11 +16196,11 @@
|
|
|
16313
16196
|
},
|
|
16314
16197
|
{
|
|
16315
16198
|
"in": "path",
|
|
16316
|
-
"name": "
|
|
16199
|
+
"name": "attributeId",
|
|
16317
16200
|
"schema": {
|
|
16318
16201
|
"type": "string"
|
|
16319
16202
|
},
|
|
16320
|
-
"description": "The
|
|
16203
|
+
"description": "The attribute identifier",
|
|
16321
16204
|
"required": true
|
|
16322
16205
|
}
|
|
16323
16206
|
],
|
|
@@ -16340,7 +16223,7 @@
|
|
|
16340
16223
|
"example": "Success message."
|
|
16341
16224
|
},
|
|
16342
16225
|
"data": {
|
|
16343
|
-
"
|
|
16226
|
+
"type": "object"
|
|
16344
16227
|
}
|
|
16345
16228
|
},
|
|
16346
16229
|
"required": [
|
|
@@ -16354,13 +16237,13 @@
|
|
|
16354
16237
|
}
|
|
16355
16238
|
},
|
|
16356
16239
|
"tags": [
|
|
16357
|
-
"Events::
|
|
16240
|
+
"Events::Attributes"
|
|
16358
16241
|
]
|
|
16359
16242
|
},
|
|
16360
16243
|
"put": {
|
|
16361
|
-
"operationId": "
|
|
16362
|
-
"summary": "Update Event
|
|
16363
|
-
"description": "Update Event
|
|
16244
|
+
"operationId": "UpdateEventAttribute",
|
|
16245
|
+
"summary": "Update Event Attribute",
|
|
16246
|
+
"description": "Update Event Attribute endpoint",
|
|
16364
16247
|
"parameters": [
|
|
16365
16248
|
{
|
|
16366
16249
|
"in": "path",
|
|
@@ -16373,11 +16256,11 @@
|
|
|
16373
16256
|
},
|
|
16374
16257
|
{
|
|
16375
16258
|
"in": "path",
|
|
16376
|
-
"name": "
|
|
16259
|
+
"name": "attributeId",
|
|
16377
16260
|
"schema": {
|
|
16378
16261
|
"type": "string"
|
|
16379
16262
|
},
|
|
16380
|
-
"description": "The
|
|
16263
|
+
"description": "The attribute identifier",
|
|
16381
16264
|
"required": true
|
|
16382
16265
|
}
|
|
16383
16266
|
],
|
|
@@ -16386,7 +16269,7 @@
|
|
|
16386
16269
|
"content": {
|
|
16387
16270
|
"application/json": {
|
|
16388
16271
|
"schema": {
|
|
16389
|
-
"$ref": "#/components/schemas/
|
|
16272
|
+
"$ref": "#/components/schemas/EventAttributeUpdateInputs"
|
|
16390
16273
|
}
|
|
16391
16274
|
}
|
|
16392
16275
|
}
|
|
@@ -16410,7 +16293,7 @@
|
|
|
16410
16293
|
"example": "Success message."
|
|
16411
16294
|
},
|
|
16412
16295
|
"data": {
|
|
16413
|
-
"
|
|
16296
|
+
"type": "object"
|
|
16414
16297
|
}
|
|
16415
16298
|
},
|
|
16416
16299
|
"required": [
|
|
@@ -16424,13 +16307,13 @@
|
|
|
16424
16307
|
}
|
|
16425
16308
|
},
|
|
16426
16309
|
"tags": [
|
|
16427
|
-
"Events::
|
|
16310
|
+
"Events::Attributes"
|
|
16428
16311
|
]
|
|
16429
16312
|
},
|
|
16430
16313
|
"delete": {
|
|
16431
|
-
"operationId": "
|
|
16432
|
-
"summary": "Delete Event
|
|
16433
|
-
"description": "Delete Event
|
|
16314
|
+
"operationId": "DeleteEventAttribute",
|
|
16315
|
+
"summary": "Delete Event Attribute",
|
|
16316
|
+
"description": "Delete Event Attribute endpoint",
|
|
16434
16317
|
"parameters": [
|
|
16435
16318
|
{
|
|
16436
16319
|
"in": "path",
|
|
@@ -16443,11 +16326,11 @@
|
|
|
16443
16326
|
},
|
|
16444
16327
|
{
|
|
16445
16328
|
"in": "path",
|
|
16446
|
-
"name": "
|
|
16329
|
+
"name": "attributeId",
|
|
16447
16330
|
"schema": {
|
|
16448
16331
|
"type": "string"
|
|
16449
16332
|
},
|
|
16450
|
-
"description": "The
|
|
16333
|
+
"description": "The attribute identifier",
|
|
16451
16334
|
"required": true
|
|
16452
16335
|
}
|
|
16453
16336
|
],
|
|
@@ -16484,15 +16367,15 @@
|
|
|
16484
16367
|
}
|
|
16485
16368
|
},
|
|
16486
16369
|
"tags": [
|
|
16487
|
-
"Events::
|
|
16370
|
+
"Events::Attributes"
|
|
16488
16371
|
]
|
|
16489
16372
|
}
|
|
16490
16373
|
},
|
|
16491
|
-
"/events/{eventId}/
|
|
16492
|
-
"
|
|
16493
|
-
"operationId": "
|
|
16494
|
-
"summary": "
|
|
16495
|
-
"description": "
|
|
16374
|
+
"/events/{eventId}/benefits/{benefitId}": {
|
|
16375
|
+
"post": {
|
|
16376
|
+
"operationId": "AddEventBenefit",
|
|
16377
|
+
"summary": "Add Event Benefit",
|
|
16378
|
+
"description": "Add Event Benefit endpoint",
|
|
16496
16379
|
"parameters": [
|
|
16497
16380
|
{
|
|
16498
16381
|
"in": "path",
|
|
@@ -16505,53 +16388,12 @@
|
|
|
16505
16388
|
},
|
|
16506
16389
|
{
|
|
16507
16390
|
"in": "path",
|
|
16508
|
-
"name": "
|
|
16391
|
+
"name": "benefitId",
|
|
16509
16392
|
"schema": {
|
|
16510
16393
|
"type": "string"
|
|
16511
16394
|
},
|
|
16512
|
-
"description": "The
|
|
16395
|
+
"description": "The benefit identifier",
|
|
16513
16396
|
"required": true
|
|
16514
|
-
},
|
|
16515
|
-
{
|
|
16516
|
-
"in": "query",
|
|
16517
|
-
"name": "page",
|
|
16518
|
-
"schema": {
|
|
16519
|
-
"type": "integer",
|
|
16520
|
-
"minimum": 1,
|
|
16521
|
-
"default": 1
|
|
16522
|
-
},
|
|
16523
|
-
"description": "Page number",
|
|
16524
|
-
"required": false
|
|
16525
|
-
},
|
|
16526
|
-
{
|
|
16527
|
-
"in": "query",
|
|
16528
|
-
"name": "pageSize",
|
|
16529
|
-
"schema": {
|
|
16530
|
-
"type": "integer",
|
|
16531
|
-
"minimum": 1,
|
|
16532
|
-
"maximum": 100,
|
|
16533
|
-
"default": 25
|
|
16534
|
-
},
|
|
16535
|
-
"description": "Number of items per page",
|
|
16536
|
-
"required": false
|
|
16537
|
-
},
|
|
16538
|
-
{
|
|
16539
|
-
"in": "query",
|
|
16540
|
-
"name": "orderBy",
|
|
16541
|
-
"schema": {
|
|
16542
|
-
"type": "string"
|
|
16543
|
-
},
|
|
16544
|
-
"description": "Field to order by",
|
|
16545
|
-
"required": false
|
|
16546
|
-
},
|
|
16547
|
-
{
|
|
16548
|
-
"in": "query",
|
|
16549
|
-
"name": "search",
|
|
16550
|
-
"schema": {
|
|
16551
|
-
"type": "string"
|
|
16552
|
-
},
|
|
16553
|
-
"description": "Search query",
|
|
16554
|
-
"required": false
|
|
16555
16397
|
}
|
|
16556
16398
|
],
|
|
16557
16399
|
"responses": {
|
|
@@ -16573,11 +16415,7 @@
|
|
|
16573
16415
|
"example": "Success message."
|
|
16574
16416
|
},
|
|
16575
16417
|
"data": {
|
|
16576
|
-
"
|
|
16577
|
-
},
|
|
16578
|
-
"count": {
|
|
16579
|
-
"type": "integer",
|
|
16580
|
-
"example": 100
|
|
16418
|
+
"$ref": "#/components/schemas/Benefit"
|
|
16581
16419
|
}
|
|
16582
16420
|
},
|
|
16583
16421
|
"required": [
|
|
@@ -16591,15 +16429,13 @@
|
|
|
16591
16429
|
}
|
|
16592
16430
|
},
|
|
16593
16431
|
"tags": [
|
|
16594
|
-
"Events::
|
|
16432
|
+
"Events::Benefits"
|
|
16595
16433
|
]
|
|
16596
|
-
}
|
|
16597
|
-
|
|
16598
|
-
|
|
16599
|
-
|
|
16600
|
-
"
|
|
16601
|
-
"summary": "Add Event Block Session",
|
|
16602
|
-
"description": "Add Event Block Session endpoint",
|
|
16434
|
+
},
|
|
16435
|
+
"delete": {
|
|
16436
|
+
"operationId": "RemoveEventBenefit",
|
|
16437
|
+
"summary": "Remove Event Benefit",
|
|
16438
|
+
"description": "Remove Event Benefit endpoint",
|
|
16603
16439
|
"parameters": [
|
|
16604
16440
|
{
|
|
16605
16441
|
"in": "path",
|
|
@@ -16612,20 +16448,11 @@
|
|
|
16612
16448
|
},
|
|
16613
16449
|
{
|
|
16614
16450
|
"in": "path",
|
|
16615
|
-
"name": "
|
|
16616
|
-
"schema": {
|
|
16617
|
-
"type": "string"
|
|
16618
|
-
},
|
|
16619
|
-
"description": "The block identifier",
|
|
16620
|
-
"required": true
|
|
16621
|
-
},
|
|
16622
|
-
{
|
|
16623
|
-
"in": "path",
|
|
16624
|
-
"name": "sessionId",
|
|
16451
|
+
"name": "benefitId",
|
|
16625
16452
|
"schema": {
|
|
16626
16453
|
"type": "string"
|
|
16627
16454
|
},
|
|
16628
|
-
"description": "The
|
|
16455
|
+
"description": "The benefit identifier",
|
|
16629
16456
|
"required": true
|
|
16630
16457
|
}
|
|
16631
16458
|
],
|
|
@@ -16648,76 +16475,7 @@
|
|
|
16648
16475
|
"example": "Success message."
|
|
16649
16476
|
},
|
|
16650
16477
|
"data": {
|
|
16651
|
-
"$ref": "#/components/schemas/
|
|
16652
|
-
}
|
|
16653
|
-
},
|
|
16654
|
-
"required": [
|
|
16655
|
-
"status",
|
|
16656
|
-
"message",
|
|
16657
|
-
"data"
|
|
16658
|
-
]
|
|
16659
|
-
}
|
|
16660
|
-
}
|
|
16661
|
-
}
|
|
16662
|
-
}
|
|
16663
|
-
},
|
|
16664
|
-
"tags": [
|
|
16665
|
-
"Events::Blocks"
|
|
16666
|
-
]
|
|
16667
|
-
},
|
|
16668
|
-
"delete": {
|
|
16669
|
-
"operationId": "RemoveEventBlockSession",
|
|
16670
|
-
"summary": "Remove Event Block Session",
|
|
16671
|
-
"description": "Remove Event Block Session endpoint",
|
|
16672
|
-
"parameters": [
|
|
16673
|
-
{
|
|
16674
|
-
"in": "path",
|
|
16675
|
-
"name": "eventId",
|
|
16676
|
-
"schema": {
|
|
16677
|
-
"type": "string"
|
|
16678
|
-
},
|
|
16679
|
-
"description": "The event identifier",
|
|
16680
|
-
"required": true
|
|
16681
|
-
},
|
|
16682
|
-
{
|
|
16683
|
-
"in": "path",
|
|
16684
|
-
"name": "blockId",
|
|
16685
|
-
"schema": {
|
|
16686
|
-
"type": "string"
|
|
16687
|
-
},
|
|
16688
|
-
"description": "The block identifier",
|
|
16689
|
-
"required": true
|
|
16690
|
-
},
|
|
16691
|
-
{
|
|
16692
|
-
"in": "path",
|
|
16693
|
-
"name": "sessionId",
|
|
16694
|
-
"schema": {
|
|
16695
|
-
"type": "string"
|
|
16696
|
-
},
|
|
16697
|
-
"description": "The session identifier",
|
|
16698
|
-
"required": true
|
|
16699
|
-
}
|
|
16700
|
-
],
|
|
16701
|
-
"responses": {
|
|
16702
|
-
"200": {
|
|
16703
|
-
"description": "Successful response",
|
|
16704
|
-
"content": {
|
|
16705
|
-
"application/json": {
|
|
16706
|
-
"schema": {
|
|
16707
|
-
"type": "object",
|
|
16708
|
-
"properties": {
|
|
16709
|
-
"status": {
|
|
16710
|
-
"type": "string",
|
|
16711
|
-
"enum": [
|
|
16712
|
-
"ok"
|
|
16713
|
-
]
|
|
16714
|
-
},
|
|
16715
|
-
"message": {
|
|
16716
|
-
"type": "string",
|
|
16717
|
-
"example": "Success message."
|
|
16718
|
-
},
|
|
16719
|
-
"data": {
|
|
16720
|
-
"$ref": "#/components/schemas/EventBlock"
|
|
16478
|
+
"$ref": "#/components/schemas/Benefit"
|
|
16721
16479
|
}
|
|
16722
16480
|
},
|
|
16723
16481
|
"required": [
|
|
@@ -16731,15 +16489,15 @@
|
|
|
16731
16489
|
}
|
|
16732
16490
|
},
|
|
16733
16491
|
"tags": [
|
|
16734
|
-
"Events::
|
|
16492
|
+
"Events::Benefits"
|
|
16735
16493
|
]
|
|
16736
16494
|
}
|
|
16737
16495
|
},
|
|
16738
|
-
"/events/{eventId}/
|
|
16496
|
+
"/events/{eventId}/blocks": {
|
|
16739
16497
|
"get": {
|
|
16740
|
-
"operationId": "
|
|
16741
|
-
"summary": "Get Event
|
|
16742
|
-
"description": "Get Event
|
|
16498
|
+
"operationId": "GetEventBlocks",
|
|
16499
|
+
"summary": "Get Event Blocks",
|
|
16500
|
+
"description": "Get Event Blocks endpoint",
|
|
16743
16501
|
"parameters": [
|
|
16744
16502
|
{
|
|
16745
16503
|
"in": "path",
|
|
@@ -16811,7 +16569,10 @@
|
|
|
16811
16569
|
"example": "Success message."
|
|
16812
16570
|
},
|
|
16813
16571
|
"data": {
|
|
16814
|
-
"type": "
|
|
16572
|
+
"type": "array",
|
|
16573
|
+
"items": {
|
|
16574
|
+
"$ref": "#/components/schemas/EventBlock"
|
|
16575
|
+
}
|
|
16815
16576
|
},
|
|
16816
16577
|
"count": {
|
|
16817
16578
|
"type": "integer",
|
|
@@ -16829,13 +16590,13 @@
|
|
|
16829
16590
|
}
|
|
16830
16591
|
},
|
|
16831
16592
|
"tags": [
|
|
16832
|
-
"Events::
|
|
16593
|
+
"Events::Blocks"
|
|
16833
16594
|
]
|
|
16834
16595
|
},
|
|
16835
16596
|
"post": {
|
|
16836
|
-
"operationId": "
|
|
16837
|
-
"summary": "Create Event
|
|
16838
|
-
"description": "Create Event
|
|
16597
|
+
"operationId": "CreateEventBlock",
|
|
16598
|
+
"summary": "Create Event Block",
|
|
16599
|
+
"description": "Create Event Block endpoint",
|
|
16839
16600
|
"parameters": [
|
|
16840
16601
|
{
|
|
16841
16602
|
"in": "path",
|
|
@@ -16852,7 +16613,7 @@
|
|
|
16852
16613
|
"content": {
|
|
16853
16614
|
"application/json": {
|
|
16854
16615
|
"schema": {
|
|
16855
|
-
"$ref": "#/components/schemas/
|
|
16616
|
+
"$ref": "#/components/schemas/EventBlockCreateInputs"
|
|
16856
16617
|
}
|
|
16857
16618
|
}
|
|
16858
16619
|
}
|
|
@@ -16876,7 +16637,7 @@
|
|
|
16876
16637
|
"example": "Success message."
|
|
16877
16638
|
},
|
|
16878
16639
|
"data": {
|
|
16879
|
-
"
|
|
16640
|
+
"$ref": "#/components/schemas/EventBlock"
|
|
16880
16641
|
}
|
|
16881
16642
|
},
|
|
16882
16643
|
"required": [
|
|
@@ -16890,15 +16651,15 @@
|
|
|
16890
16651
|
}
|
|
16891
16652
|
},
|
|
16892
16653
|
"tags": [
|
|
16893
|
-
"Events::
|
|
16654
|
+
"Events::Blocks"
|
|
16894
16655
|
]
|
|
16895
16656
|
}
|
|
16896
16657
|
},
|
|
16897
|
-
"/events/{eventId}/
|
|
16658
|
+
"/events/{eventId}/blocks/{blockId}": {
|
|
16898
16659
|
"get": {
|
|
16899
|
-
"operationId": "
|
|
16900
|
-
"summary": "Get Event
|
|
16901
|
-
"description": "Get Event
|
|
16660
|
+
"operationId": "GetEventBlock",
|
|
16661
|
+
"summary": "Get Event Block",
|
|
16662
|
+
"description": "Get Event Block endpoint",
|
|
16902
16663
|
"parameters": [
|
|
16903
16664
|
{
|
|
16904
16665
|
"in": "path",
|
|
@@ -16911,11 +16672,11 @@
|
|
|
16911
16672
|
},
|
|
16912
16673
|
{
|
|
16913
16674
|
"in": "path",
|
|
16914
|
-
"name": "
|
|
16675
|
+
"name": "blockId",
|
|
16915
16676
|
"schema": {
|
|
16916
16677
|
"type": "string"
|
|
16917
16678
|
},
|
|
16918
|
-
"description": "The
|
|
16679
|
+
"description": "The block identifier",
|
|
16919
16680
|
"required": true
|
|
16920
16681
|
}
|
|
16921
16682
|
],
|
|
@@ -16938,7 +16699,7 @@
|
|
|
16938
16699
|
"example": "Success message."
|
|
16939
16700
|
},
|
|
16940
16701
|
"data": {
|
|
16941
|
-
"
|
|
16702
|
+
"$ref": "#/components/schemas/EventBlock"
|
|
16942
16703
|
}
|
|
16943
16704
|
},
|
|
16944
16705
|
"required": [
|
|
@@ -16952,13 +16713,13 @@
|
|
|
16952
16713
|
}
|
|
16953
16714
|
},
|
|
16954
16715
|
"tags": [
|
|
16955
|
-
"Events::
|
|
16716
|
+
"Events::Blocks"
|
|
16956
16717
|
]
|
|
16957
16718
|
},
|
|
16958
16719
|
"put": {
|
|
16959
|
-
"operationId": "
|
|
16960
|
-
"summary": "Update Event
|
|
16961
|
-
"description": "Update Event
|
|
16720
|
+
"operationId": "UpdateEventBlock",
|
|
16721
|
+
"summary": "Update Event Block",
|
|
16722
|
+
"description": "Update Event Block endpoint",
|
|
16962
16723
|
"parameters": [
|
|
16963
16724
|
{
|
|
16964
16725
|
"in": "path",
|
|
@@ -16971,23 +16732,24 @@
|
|
|
16971
16732
|
},
|
|
16972
16733
|
{
|
|
16973
16734
|
"in": "path",
|
|
16974
|
-
"name": "
|
|
16735
|
+
"name": "blockId",
|
|
16975
16736
|
"schema": {
|
|
16976
16737
|
"type": "string"
|
|
16977
16738
|
},
|
|
16978
|
-
"description": "The
|
|
16979
|
-
"required": true
|
|
16980
|
-
},
|
|
16981
|
-
{
|
|
16982
|
-
"in": "query",
|
|
16983
|
-
"name": "page",
|
|
16984
|
-
"schema": {
|
|
16985
|
-
"$ref": "#/components/schemas/EventRegistrationBypassUpdateInputs"
|
|
16986
|
-
},
|
|
16987
|
-
"description": "Filter by page",
|
|
16739
|
+
"description": "The block identifier",
|
|
16988
16740
|
"required": true
|
|
16989
16741
|
}
|
|
16990
16742
|
],
|
|
16743
|
+
"requestBody": {
|
|
16744
|
+
"required": true,
|
|
16745
|
+
"content": {
|
|
16746
|
+
"application/json": {
|
|
16747
|
+
"schema": {
|
|
16748
|
+
"$ref": "#/components/schemas/EventBlockUpdateInputs"
|
|
16749
|
+
}
|
|
16750
|
+
}
|
|
16751
|
+
}
|
|
16752
|
+
},
|
|
16991
16753
|
"responses": {
|
|
16992
16754
|
"200": {
|
|
16993
16755
|
"description": "Successful response",
|
|
@@ -17007,7 +16769,7 @@
|
|
|
17007
16769
|
"example": "Success message."
|
|
17008
16770
|
},
|
|
17009
16771
|
"data": {
|
|
17010
|
-
"
|
|
16772
|
+
"$ref": "#/components/schemas/EventBlock"
|
|
17011
16773
|
}
|
|
17012
16774
|
},
|
|
17013
16775
|
"required": [
|
|
@@ -17021,13 +16783,13 @@
|
|
|
17021
16783
|
}
|
|
17022
16784
|
},
|
|
17023
16785
|
"tags": [
|
|
17024
|
-
"Events::
|
|
16786
|
+
"Events::Blocks"
|
|
17025
16787
|
]
|
|
17026
16788
|
},
|
|
17027
16789
|
"delete": {
|
|
17028
|
-
"operationId": "
|
|
17029
|
-
"summary": "Delete Event
|
|
17030
|
-
"description": "Delete Event
|
|
16790
|
+
"operationId": "DeleteEventBlock",
|
|
16791
|
+
"summary": "Delete Event Block",
|
|
16792
|
+
"description": "Delete Event Block endpoint",
|
|
17031
16793
|
"parameters": [
|
|
17032
16794
|
{
|
|
17033
16795
|
"in": "path",
|
|
@@ -17040,11 +16802,11 @@
|
|
|
17040
16802
|
},
|
|
17041
16803
|
{
|
|
17042
16804
|
"in": "path",
|
|
17043
|
-
"name": "
|
|
16805
|
+
"name": "blockId",
|
|
17044
16806
|
"schema": {
|
|
17045
16807
|
"type": "string"
|
|
17046
16808
|
},
|
|
17047
|
-
"description": "The
|
|
16809
|
+
"description": "The block identifier",
|
|
17048
16810
|
"required": true
|
|
17049
16811
|
}
|
|
17050
16812
|
],
|
|
@@ -17081,15 +16843,15 @@
|
|
|
17081
16843
|
}
|
|
17082
16844
|
},
|
|
17083
16845
|
"tags": [
|
|
17084
|
-
"Events::
|
|
16846
|
+
"Events::Blocks"
|
|
17085
16847
|
]
|
|
17086
16848
|
}
|
|
17087
16849
|
},
|
|
17088
|
-
"/events/{eventId}/
|
|
17089
|
-
"
|
|
17090
|
-
"operationId": "
|
|
17091
|
-
"summary": "
|
|
17092
|
-
"description": "
|
|
16850
|
+
"/events/{eventId}/blocks/{blockId}/sessions": {
|
|
16851
|
+
"get": {
|
|
16852
|
+
"operationId": "GetEventBlockSessions",
|
|
16853
|
+
"summary": "Get Event Block Sessions",
|
|
16854
|
+
"description": "Get Event Block Sessions endpoint",
|
|
17093
16855
|
"parameters": [
|
|
17094
16856
|
{
|
|
17095
16857
|
"in": "path",
|
|
@@ -17099,68 +16861,14 @@
|
|
|
17099
16861
|
},
|
|
17100
16862
|
"description": "The event identifier",
|
|
17101
16863
|
"required": true
|
|
17102
|
-
}
|
|
17103
|
-
],
|
|
17104
|
-
"requestBody": {
|
|
17105
|
-
"required": true,
|
|
17106
|
-
"content": {
|
|
17107
|
-
"application/json": {
|
|
17108
|
-
"schema": {
|
|
17109
|
-
"$ref": "#/components/schemas/CloneOptions"
|
|
17110
|
-
}
|
|
17111
|
-
}
|
|
17112
|
-
}
|
|
17113
|
-
},
|
|
17114
|
-
"responses": {
|
|
17115
|
-
"200": {
|
|
17116
|
-
"description": "Successful response",
|
|
17117
|
-
"content": {
|
|
17118
|
-
"application/json": {
|
|
17119
|
-
"schema": {
|
|
17120
|
-
"type": "object",
|
|
17121
|
-
"properties": {
|
|
17122
|
-
"status": {
|
|
17123
|
-
"type": "string",
|
|
17124
|
-
"enum": [
|
|
17125
|
-
"ok"
|
|
17126
|
-
]
|
|
17127
|
-
},
|
|
17128
|
-
"message": {
|
|
17129
|
-
"type": "string",
|
|
17130
|
-
"example": "Success message."
|
|
17131
|
-
},
|
|
17132
|
-
"data": {
|
|
17133
|
-
"type": "object"
|
|
17134
|
-
}
|
|
17135
|
-
},
|
|
17136
|
-
"required": [
|
|
17137
|
-
"status",
|
|
17138
|
-
"message",
|
|
17139
|
-
"data"
|
|
17140
|
-
]
|
|
17141
|
-
}
|
|
17142
|
-
}
|
|
17143
|
-
}
|
|
17144
|
-
}
|
|
17145
|
-
},
|
|
17146
|
-
"tags": [
|
|
17147
|
-
"Events"
|
|
17148
|
-
]
|
|
17149
|
-
}
|
|
17150
|
-
},
|
|
17151
|
-
"/events/{eventId}/coHosts": {
|
|
17152
|
-
"get": {
|
|
17153
|
-
"operationId": "GetEventCoHosts",
|
|
17154
|
-
"summary": "Get Event Co Hosts",
|
|
17155
|
-
"description": "Get Event Co Hosts endpoint",
|
|
17156
|
-
"parameters": [
|
|
16864
|
+
},
|
|
17157
16865
|
{
|
|
17158
16866
|
"in": "path",
|
|
17159
|
-
"name": "
|
|
16867
|
+
"name": "blockId",
|
|
17160
16868
|
"schema": {
|
|
17161
16869
|
"type": "string"
|
|
17162
16870
|
},
|
|
17163
|
-
"description": "The
|
|
16871
|
+
"description": "The block identifier",
|
|
17164
16872
|
"required": true
|
|
17165
16873
|
},
|
|
17166
16874
|
{
|
|
@@ -17224,10 +16932,7 @@
|
|
|
17224
16932
|
"example": "Success message."
|
|
17225
16933
|
},
|
|
17226
16934
|
"data": {
|
|
17227
|
-
"type": "
|
|
17228
|
-
"items": {
|
|
17229
|
-
"$ref": "#/components/schemas/Account"
|
|
17230
|
-
}
|
|
16935
|
+
"type": "object"
|
|
17231
16936
|
},
|
|
17232
16937
|
"count": {
|
|
17233
16938
|
"type": "integer",
|
|
@@ -17245,15 +16950,15 @@
|
|
|
17245
16950
|
}
|
|
17246
16951
|
},
|
|
17247
16952
|
"tags": [
|
|
17248
|
-
"Events::
|
|
16953
|
+
"Events::Blocks"
|
|
17249
16954
|
]
|
|
17250
16955
|
}
|
|
17251
16956
|
},
|
|
17252
|
-
"/events/{eventId}/
|
|
16957
|
+
"/events/{eventId}/blocks/{blockId}/sessions/{sessionId}": {
|
|
17253
16958
|
"post": {
|
|
17254
|
-
"operationId": "
|
|
17255
|
-
"summary": "Add Event
|
|
17256
|
-
"description": "Add Event
|
|
16959
|
+
"operationId": "AddEventBlockSession",
|
|
16960
|
+
"summary": "Add Event Block Session",
|
|
16961
|
+
"description": "Add Event Block Session endpoint",
|
|
17257
16962
|
"parameters": [
|
|
17258
16963
|
{
|
|
17259
16964
|
"in": "path",
|
|
@@ -17266,11 +16971,20 @@
|
|
|
17266
16971
|
},
|
|
17267
16972
|
{
|
|
17268
16973
|
"in": "path",
|
|
17269
|
-
"name": "
|
|
16974
|
+
"name": "blockId",
|
|
17270
16975
|
"schema": {
|
|
17271
16976
|
"type": "string"
|
|
17272
16977
|
},
|
|
17273
|
-
"description": "The
|
|
16978
|
+
"description": "The block identifier",
|
|
16979
|
+
"required": true
|
|
16980
|
+
},
|
|
16981
|
+
{
|
|
16982
|
+
"in": "path",
|
|
16983
|
+
"name": "sessionId",
|
|
16984
|
+
"schema": {
|
|
16985
|
+
"type": "string"
|
|
16986
|
+
},
|
|
16987
|
+
"description": "The session identifier",
|
|
17274
16988
|
"required": true
|
|
17275
16989
|
}
|
|
17276
16990
|
],
|
|
@@ -17293,7 +17007,7 @@
|
|
|
17293
17007
|
"example": "Success message."
|
|
17294
17008
|
},
|
|
17295
17009
|
"data": {
|
|
17296
|
-
"$ref": "#/components/schemas/
|
|
17010
|
+
"$ref": "#/components/schemas/EventBlock"
|
|
17297
17011
|
}
|
|
17298
17012
|
},
|
|
17299
17013
|
"required": [
|
|
@@ -17307,13 +17021,13 @@
|
|
|
17307
17021
|
}
|
|
17308
17022
|
},
|
|
17309
17023
|
"tags": [
|
|
17310
|
-
"Events::
|
|
17024
|
+
"Events::Blocks"
|
|
17311
17025
|
]
|
|
17312
17026
|
},
|
|
17313
17027
|
"delete": {
|
|
17314
|
-
"operationId": "
|
|
17315
|
-
"summary": "Remove Event
|
|
17316
|
-
"description": "Remove Event
|
|
17028
|
+
"operationId": "RemoveEventBlockSession",
|
|
17029
|
+
"summary": "Remove Event Block Session",
|
|
17030
|
+
"description": "Remove Event Block Session endpoint",
|
|
17317
17031
|
"parameters": [
|
|
17318
17032
|
{
|
|
17319
17033
|
"in": "path",
|
|
@@ -17326,11 +17040,20 @@
|
|
|
17326
17040
|
},
|
|
17327
17041
|
{
|
|
17328
17042
|
"in": "path",
|
|
17329
|
-
"name": "
|
|
17043
|
+
"name": "blockId",
|
|
17330
17044
|
"schema": {
|
|
17331
17045
|
"type": "string"
|
|
17332
17046
|
},
|
|
17333
|
-
"description": "The
|
|
17047
|
+
"description": "The block identifier",
|
|
17048
|
+
"required": true
|
|
17049
|
+
},
|
|
17050
|
+
{
|
|
17051
|
+
"in": "path",
|
|
17052
|
+
"name": "sessionId",
|
|
17053
|
+
"schema": {
|
|
17054
|
+
"type": "string"
|
|
17055
|
+
},
|
|
17056
|
+
"description": "The session identifier",
|
|
17334
17057
|
"required": true
|
|
17335
17058
|
}
|
|
17336
17059
|
],
|
|
@@ -17353,7 +17076,7 @@
|
|
|
17353
17076
|
"example": "Success message."
|
|
17354
17077
|
},
|
|
17355
17078
|
"data": {
|
|
17356
|
-
"$ref": "#/components/schemas/
|
|
17079
|
+
"$ref": "#/components/schemas/EventBlock"
|
|
17357
17080
|
}
|
|
17358
17081
|
},
|
|
17359
17082
|
"required": [
|
|
@@ -17367,15 +17090,15 @@
|
|
|
17367
17090
|
}
|
|
17368
17091
|
},
|
|
17369
17092
|
"tags": [
|
|
17370
|
-
"Events::
|
|
17093
|
+
"Events::Blocks"
|
|
17371
17094
|
]
|
|
17372
17095
|
}
|
|
17373
17096
|
},
|
|
17374
|
-
"/events/{eventId}/
|
|
17097
|
+
"/events/{eventId}/bypass": {
|
|
17375
17098
|
"get": {
|
|
17376
|
-
"operationId": "
|
|
17377
|
-
"summary": "Get Event
|
|
17378
|
-
"description": "Get Event
|
|
17099
|
+
"operationId": "GetEventRegistrationBypassList",
|
|
17100
|
+
"summary": "Get Event Registration Bypass List",
|
|
17101
|
+
"description": "Get Event Registration Bypass List endpoint",
|
|
17379
17102
|
"parameters": [
|
|
17380
17103
|
{
|
|
17381
17104
|
"in": "path",
|
|
@@ -17386,24 +17109,6 @@
|
|
|
17386
17109
|
"description": "The event identifier",
|
|
17387
17110
|
"required": true
|
|
17388
17111
|
},
|
|
17389
|
-
{
|
|
17390
|
-
"in": "query",
|
|
17391
|
-
"name": "prePaid",
|
|
17392
|
-
"schema": {
|
|
17393
|
-
"type": "boolean"
|
|
17394
|
-
},
|
|
17395
|
-
"description": "Filter by prePaid",
|
|
17396
|
-
"required": false
|
|
17397
|
-
},
|
|
17398
|
-
{
|
|
17399
|
-
"in": "query",
|
|
17400
|
-
"name": "includeVariants",
|
|
17401
|
-
"schema": {
|
|
17402
|
-
"type": "object"
|
|
17403
|
-
},
|
|
17404
|
-
"description": "Filter by includeVariants",
|
|
17405
|
-
"required": false
|
|
17406
|
-
},
|
|
17407
17112
|
{
|
|
17408
17113
|
"in": "query",
|
|
17409
17114
|
"name": "page",
|
|
@@ -17465,10 +17170,7 @@
|
|
|
17465
17170
|
"example": "Success message."
|
|
17466
17171
|
},
|
|
17467
17172
|
"data": {
|
|
17468
|
-
"type": "
|
|
17469
|
-
"items": {
|
|
17470
|
-
"$ref": "#/components/schemas/Coupon"
|
|
17471
|
-
}
|
|
17173
|
+
"type": "object"
|
|
17472
17174
|
},
|
|
17473
17175
|
"count": {
|
|
17474
17176
|
"type": "integer",
|
|
@@ -17486,13 +17188,13 @@
|
|
|
17486
17188
|
}
|
|
17487
17189
|
},
|
|
17488
17190
|
"tags": [
|
|
17489
|
-
"Events::
|
|
17191
|
+
"Events::Bypass"
|
|
17490
17192
|
]
|
|
17491
17193
|
},
|
|
17492
17194
|
"post": {
|
|
17493
|
-
"operationId": "
|
|
17494
|
-
"summary": "Create Event
|
|
17495
|
-
"description": "Create Event
|
|
17195
|
+
"operationId": "CreateEventRegistrationBypass",
|
|
17196
|
+
"summary": "Create Event Registration Bypass",
|
|
17197
|
+
"description": "Create Event Registration Bypass endpoint",
|
|
17496
17198
|
"parameters": [
|
|
17497
17199
|
{
|
|
17498
17200
|
"in": "path",
|
|
@@ -17509,7 +17211,7 @@
|
|
|
17509
17211
|
"content": {
|
|
17510
17212
|
"application/json": {
|
|
17511
17213
|
"schema": {
|
|
17512
|
-
"$ref": "#/components/schemas/
|
|
17214
|
+
"$ref": "#/components/schemas/EventRegistrationBypassCreateInputs"
|
|
17513
17215
|
}
|
|
17514
17216
|
}
|
|
17515
17217
|
}
|
|
@@ -17533,7 +17235,7 @@
|
|
|
17533
17235
|
"example": "Success message."
|
|
17534
17236
|
},
|
|
17535
17237
|
"data": {
|
|
17536
|
-
"
|
|
17238
|
+
"type": "object"
|
|
17537
17239
|
}
|
|
17538
17240
|
},
|
|
17539
17241
|
"required": [
|
|
@@ -17547,15 +17249,15 @@
|
|
|
17547
17249
|
}
|
|
17548
17250
|
},
|
|
17549
17251
|
"tags": [
|
|
17550
|
-
"Events::
|
|
17252
|
+
"Events::Bypass"
|
|
17551
17253
|
]
|
|
17552
17254
|
}
|
|
17553
17255
|
},
|
|
17554
|
-
"/events/{eventId}/
|
|
17256
|
+
"/events/{eventId}/bypass/{bypassId}": {
|
|
17555
17257
|
"get": {
|
|
17556
|
-
"operationId": "
|
|
17557
|
-
"summary": "Get Event
|
|
17558
|
-
"description": "Get Event
|
|
17258
|
+
"operationId": "GetEventRegistrationBypass",
|
|
17259
|
+
"summary": "Get Event Registration Bypass",
|
|
17260
|
+
"description": "Get Event Registration Bypass endpoint",
|
|
17559
17261
|
"parameters": [
|
|
17560
17262
|
{
|
|
17561
17263
|
"in": "path",
|
|
@@ -17568,11 +17270,11 @@
|
|
|
17568
17270
|
},
|
|
17569
17271
|
{
|
|
17570
17272
|
"in": "path",
|
|
17571
|
-
"name": "
|
|
17273
|
+
"name": "bypassId",
|
|
17572
17274
|
"schema": {
|
|
17573
17275
|
"type": "string"
|
|
17574
17276
|
},
|
|
17575
|
-
"description": "The
|
|
17277
|
+
"description": "The bypass identifier",
|
|
17576
17278
|
"required": true
|
|
17577
17279
|
}
|
|
17578
17280
|
],
|
|
@@ -17595,7 +17297,7 @@
|
|
|
17595
17297
|
"example": "Success message."
|
|
17596
17298
|
},
|
|
17597
17299
|
"data": {
|
|
17598
|
-
"
|
|
17300
|
+
"type": "object"
|
|
17599
17301
|
}
|
|
17600
17302
|
},
|
|
17601
17303
|
"required": [
|
|
@@ -17609,13 +17311,13 @@
|
|
|
17609
17311
|
}
|
|
17610
17312
|
},
|
|
17611
17313
|
"tags": [
|
|
17612
|
-
"Events::
|
|
17314
|
+
"Events::Bypass"
|
|
17613
17315
|
]
|
|
17614
17316
|
},
|
|
17615
17317
|
"put": {
|
|
17616
|
-
"operationId": "
|
|
17617
|
-
"summary": "Update Event
|
|
17618
|
-
"description": "Update Event
|
|
17318
|
+
"operationId": "UpdateEventRegistrationBypass",
|
|
17319
|
+
"summary": "Update Event Registration Bypass",
|
|
17320
|
+
"description": "Update Event Registration Bypass endpoint",
|
|
17619
17321
|
"parameters": [
|
|
17620
17322
|
{
|
|
17621
17323
|
"in": "path",
|
|
@@ -17628,24 +17330,23 @@
|
|
|
17628
17330
|
},
|
|
17629
17331
|
{
|
|
17630
17332
|
"in": "path",
|
|
17631
|
-
"name": "
|
|
17333
|
+
"name": "bypassId",
|
|
17632
17334
|
"schema": {
|
|
17633
17335
|
"type": "string"
|
|
17634
17336
|
},
|
|
17635
|
-
"description": "The
|
|
17337
|
+
"description": "The bypass identifier",
|
|
17338
|
+
"required": true
|
|
17339
|
+
},
|
|
17340
|
+
{
|
|
17341
|
+
"in": "query",
|
|
17342
|
+
"name": "page",
|
|
17343
|
+
"schema": {
|
|
17344
|
+
"$ref": "#/components/schemas/EventRegistrationBypassUpdateInputs"
|
|
17345
|
+
},
|
|
17346
|
+
"description": "Filter by page",
|
|
17636
17347
|
"required": true
|
|
17637
17348
|
}
|
|
17638
17349
|
],
|
|
17639
|
-
"requestBody": {
|
|
17640
|
-
"required": true,
|
|
17641
|
-
"content": {
|
|
17642
|
-
"application/json": {
|
|
17643
|
-
"schema": {
|
|
17644
|
-
"$ref": "#/components/schemas/EventCouponUpdateInputs"
|
|
17645
|
-
}
|
|
17646
|
-
}
|
|
17647
|
-
}
|
|
17648
|
-
},
|
|
17649
17350
|
"responses": {
|
|
17650
17351
|
"200": {
|
|
17651
17352
|
"description": "Successful response",
|
|
@@ -17665,7 +17366,7 @@
|
|
|
17665
17366
|
"example": "Success message."
|
|
17666
17367
|
},
|
|
17667
17368
|
"data": {
|
|
17668
|
-
"
|
|
17369
|
+
"type": "object"
|
|
17669
17370
|
}
|
|
17670
17371
|
},
|
|
17671
17372
|
"required": [
|
|
@@ -17679,13 +17380,13 @@
|
|
|
17679
17380
|
}
|
|
17680
17381
|
},
|
|
17681
17382
|
"tags": [
|
|
17682
|
-
"Events::
|
|
17383
|
+
"Events::Bypass"
|
|
17683
17384
|
]
|
|
17684
17385
|
},
|
|
17685
17386
|
"delete": {
|
|
17686
|
-
"operationId": "
|
|
17687
|
-
"summary": "Delete Event
|
|
17688
|
-
"description": "Delete Event
|
|
17387
|
+
"operationId": "DeleteEventRegistrationBypass",
|
|
17388
|
+
"summary": "Delete Event Registration Bypass",
|
|
17389
|
+
"description": "Delete Event Registration Bypass endpoint",
|
|
17689
17390
|
"parameters": [
|
|
17690
17391
|
{
|
|
17691
17392
|
"in": "path",
|
|
@@ -17698,11 +17399,11 @@
|
|
|
17698
17399
|
},
|
|
17699
17400
|
{
|
|
17700
17401
|
"in": "path",
|
|
17701
|
-
"name": "
|
|
17402
|
+
"name": "bypassId",
|
|
17702
17403
|
"schema": {
|
|
17703
17404
|
"type": "string"
|
|
17704
17405
|
},
|
|
17705
|
-
"description": "The
|
|
17406
|
+
"description": "The bypass identifier",
|
|
17706
17407
|
"required": true
|
|
17707
17408
|
}
|
|
17708
17409
|
],
|
|
@@ -17739,15 +17440,15 @@
|
|
|
17739
17440
|
}
|
|
17740
17441
|
},
|
|
17741
17442
|
"tags": [
|
|
17742
|
-
"Events::
|
|
17443
|
+
"Events::Bypass"
|
|
17743
17444
|
]
|
|
17744
17445
|
}
|
|
17745
17446
|
},
|
|
17746
|
-
"/events/{eventId}/
|
|
17747
|
-
"
|
|
17748
|
-
"operationId": "
|
|
17749
|
-
"summary": "
|
|
17750
|
-
"description": "
|
|
17447
|
+
"/events/{eventId}/clone": {
|
|
17448
|
+
"post": {
|
|
17449
|
+
"operationId": "CloneEvent",
|
|
17450
|
+
"summary": "Clone Event",
|
|
17451
|
+
"description": "Clone Event endpoint",
|
|
17751
17452
|
"parameters": [
|
|
17752
17453
|
{
|
|
17753
17454
|
"in": "path",
|
|
@@ -17757,14 +17458,68 @@
|
|
|
17757
17458
|
},
|
|
17758
17459
|
"description": "The event identifier",
|
|
17759
17460
|
"required": true
|
|
17760
|
-
}
|
|
17461
|
+
}
|
|
17462
|
+
],
|
|
17463
|
+
"requestBody": {
|
|
17464
|
+
"required": true,
|
|
17465
|
+
"content": {
|
|
17466
|
+
"application/json": {
|
|
17467
|
+
"schema": {
|
|
17468
|
+
"$ref": "#/components/schemas/CloneOptions"
|
|
17469
|
+
}
|
|
17470
|
+
}
|
|
17471
|
+
}
|
|
17472
|
+
},
|
|
17473
|
+
"responses": {
|
|
17474
|
+
"200": {
|
|
17475
|
+
"description": "Successful response",
|
|
17476
|
+
"content": {
|
|
17477
|
+
"application/json": {
|
|
17478
|
+
"schema": {
|
|
17479
|
+
"type": "object",
|
|
17480
|
+
"properties": {
|
|
17481
|
+
"status": {
|
|
17482
|
+
"type": "string",
|
|
17483
|
+
"enum": [
|
|
17484
|
+
"ok"
|
|
17485
|
+
]
|
|
17486
|
+
},
|
|
17487
|
+
"message": {
|
|
17488
|
+
"type": "string",
|
|
17489
|
+
"example": "Success message."
|
|
17490
|
+
},
|
|
17491
|
+
"data": {
|
|
17492
|
+
"type": "object"
|
|
17493
|
+
}
|
|
17494
|
+
},
|
|
17495
|
+
"required": [
|
|
17496
|
+
"status",
|
|
17497
|
+
"message",
|
|
17498
|
+
"data"
|
|
17499
|
+
]
|
|
17500
|
+
}
|
|
17501
|
+
}
|
|
17502
|
+
}
|
|
17503
|
+
}
|
|
17504
|
+
},
|
|
17505
|
+
"tags": [
|
|
17506
|
+
"Events"
|
|
17507
|
+
]
|
|
17508
|
+
}
|
|
17509
|
+
},
|
|
17510
|
+
"/events/{eventId}/coHosts": {
|
|
17511
|
+
"get": {
|
|
17512
|
+
"operationId": "GetEventCoHosts",
|
|
17513
|
+
"summary": "Get Event Co Hosts",
|
|
17514
|
+
"description": "Get Event Co Hosts endpoint",
|
|
17515
|
+
"parameters": [
|
|
17761
17516
|
{
|
|
17762
17517
|
"in": "path",
|
|
17763
|
-
"name": "
|
|
17518
|
+
"name": "eventId",
|
|
17764
17519
|
"schema": {
|
|
17765
17520
|
"type": "string"
|
|
17766
17521
|
},
|
|
17767
|
-
"description": "The
|
|
17522
|
+
"description": "The event identifier",
|
|
17768
17523
|
"required": true
|
|
17769
17524
|
},
|
|
17770
17525
|
{
|
|
@@ -17830,7 +17585,7 @@
|
|
|
17830
17585
|
"data": {
|
|
17831
17586
|
"type": "array",
|
|
17832
17587
|
"items": {
|
|
17833
|
-
"$ref": "#/components/schemas/
|
|
17588
|
+
"$ref": "#/components/schemas/Account"
|
|
17834
17589
|
}
|
|
17835
17590
|
},
|
|
17836
17591
|
"count": {
|
|
@@ -17849,15 +17604,15 @@
|
|
|
17849
17604
|
}
|
|
17850
17605
|
},
|
|
17851
17606
|
"tags": [
|
|
17852
|
-
"Events::
|
|
17607
|
+
"Events::Cohosts"
|
|
17853
17608
|
]
|
|
17854
17609
|
}
|
|
17855
17610
|
},
|
|
17856
|
-
"/events/{eventId}/
|
|
17857
|
-
"
|
|
17858
|
-
"operationId": "
|
|
17859
|
-
"summary": "
|
|
17860
|
-
"description": "
|
|
17611
|
+
"/events/{eventId}/coHosts/{accountId}": {
|
|
17612
|
+
"post": {
|
|
17613
|
+
"operationId": "AddEventCoHost",
|
|
17614
|
+
"summary": "Add Event Co Host",
|
|
17615
|
+
"description": "Add Event Co Host endpoint",
|
|
17861
17616
|
"parameters": [
|
|
17862
17617
|
{
|
|
17863
17618
|
"in": "path",
|
|
@@ -17870,53 +17625,657 @@
|
|
|
17870
17625
|
},
|
|
17871
17626
|
{
|
|
17872
17627
|
"in": "path",
|
|
17873
|
-
"name": "
|
|
17628
|
+
"name": "accountId",
|
|
17874
17629
|
"schema": {
|
|
17875
17630
|
"type": "string"
|
|
17876
17631
|
},
|
|
17877
|
-
"description": "The
|
|
17632
|
+
"description": "The account identifier",
|
|
17878
17633
|
"required": true
|
|
17879
|
-
}
|
|
17880
|
-
|
|
17881
|
-
|
|
17882
|
-
|
|
17883
|
-
"
|
|
17884
|
-
|
|
17885
|
-
"
|
|
17886
|
-
|
|
17887
|
-
|
|
17888
|
-
|
|
17889
|
-
|
|
17890
|
-
|
|
17891
|
-
|
|
17892
|
-
|
|
17893
|
-
|
|
17894
|
-
|
|
17895
|
-
|
|
17896
|
-
|
|
17897
|
-
|
|
17898
|
-
|
|
17899
|
-
|
|
17900
|
-
|
|
17901
|
-
|
|
17902
|
-
|
|
17903
|
-
|
|
17904
|
-
|
|
17905
|
-
|
|
17906
|
-
|
|
17907
|
-
|
|
17908
|
-
|
|
17909
|
-
|
|
17910
|
-
|
|
17911
|
-
}
|
|
17912
|
-
|
|
17913
|
-
|
|
17914
|
-
|
|
17915
|
-
|
|
17916
|
-
|
|
17917
|
-
|
|
17918
|
-
|
|
17919
|
-
|
|
17634
|
+
}
|
|
17635
|
+
],
|
|
17636
|
+
"responses": {
|
|
17637
|
+
"200": {
|
|
17638
|
+
"description": "Successful response",
|
|
17639
|
+
"content": {
|
|
17640
|
+
"application/json": {
|
|
17641
|
+
"schema": {
|
|
17642
|
+
"type": "object",
|
|
17643
|
+
"properties": {
|
|
17644
|
+
"status": {
|
|
17645
|
+
"type": "string",
|
|
17646
|
+
"enum": [
|
|
17647
|
+
"ok"
|
|
17648
|
+
]
|
|
17649
|
+
},
|
|
17650
|
+
"message": {
|
|
17651
|
+
"type": "string",
|
|
17652
|
+
"example": "Success message."
|
|
17653
|
+
},
|
|
17654
|
+
"data": {
|
|
17655
|
+
"$ref": "#/components/schemas/Account"
|
|
17656
|
+
}
|
|
17657
|
+
},
|
|
17658
|
+
"required": [
|
|
17659
|
+
"status",
|
|
17660
|
+
"message",
|
|
17661
|
+
"data"
|
|
17662
|
+
]
|
|
17663
|
+
}
|
|
17664
|
+
}
|
|
17665
|
+
}
|
|
17666
|
+
}
|
|
17667
|
+
},
|
|
17668
|
+
"tags": [
|
|
17669
|
+
"Events::Cohosts"
|
|
17670
|
+
]
|
|
17671
|
+
},
|
|
17672
|
+
"delete": {
|
|
17673
|
+
"operationId": "RemoveEventCoHost",
|
|
17674
|
+
"summary": "Remove Event Co Host",
|
|
17675
|
+
"description": "Remove Event Co Host endpoint",
|
|
17676
|
+
"parameters": [
|
|
17677
|
+
{
|
|
17678
|
+
"in": "path",
|
|
17679
|
+
"name": "eventId",
|
|
17680
|
+
"schema": {
|
|
17681
|
+
"type": "string"
|
|
17682
|
+
},
|
|
17683
|
+
"description": "The event identifier",
|
|
17684
|
+
"required": true
|
|
17685
|
+
},
|
|
17686
|
+
{
|
|
17687
|
+
"in": "path",
|
|
17688
|
+
"name": "accountId",
|
|
17689
|
+
"schema": {
|
|
17690
|
+
"type": "string"
|
|
17691
|
+
},
|
|
17692
|
+
"description": "The account identifier",
|
|
17693
|
+
"required": true
|
|
17694
|
+
}
|
|
17695
|
+
],
|
|
17696
|
+
"responses": {
|
|
17697
|
+
"200": {
|
|
17698
|
+
"description": "Successful response",
|
|
17699
|
+
"content": {
|
|
17700
|
+
"application/json": {
|
|
17701
|
+
"schema": {
|
|
17702
|
+
"type": "object",
|
|
17703
|
+
"properties": {
|
|
17704
|
+
"status": {
|
|
17705
|
+
"type": "string",
|
|
17706
|
+
"enum": [
|
|
17707
|
+
"ok"
|
|
17708
|
+
]
|
|
17709
|
+
},
|
|
17710
|
+
"message": {
|
|
17711
|
+
"type": "string",
|
|
17712
|
+
"example": "Success message."
|
|
17713
|
+
},
|
|
17714
|
+
"data": {
|
|
17715
|
+
"$ref": "#/components/schemas/Account"
|
|
17716
|
+
}
|
|
17717
|
+
},
|
|
17718
|
+
"required": [
|
|
17719
|
+
"status",
|
|
17720
|
+
"message",
|
|
17721
|
+
"data"
|
|
17722
|
+
]
|
|
17723
|
+
}
|
|
17724
|
+
}
|
|
17725
|
+
}
|
|
17726
|
+
}
|
|
17727
|
+
},
|
|
17728
|
+
"tags": [
|
|
17729
|
+
"Events::Cohosts"
|
|
17730
|
+
]
|
|
17731
|
+
}
|
|
17732
|
+
},
|
|
17733
|
+
"/events/{eventId}/coupons": {
|
|
17734
|
+
"get": {
|
|
17735
|
+
"operationId": "GetEventCoupons",
|
|
17736
|
+
"summary": "Get Event Coupons",
|
|
17737
|
+
"description": "Get Event Coupons endpoint",
|
|
17738
|
+
"parameters": [
|
|
17739
|
+
{
|
|
17740
|
+
"in": "path",
|
|
17741
|
+
"name": "eventId",
|
|
17742
|
+
"schema": {
|
|
17743
|
+
"type": "string"
|
|
17744
|
+
},
|
|
17745
|
+
"description": "The event identifier",
|
|
17746
|
+
"required": true
|
|
17747
|
+
},
|
|
17748
|
+
{
|
|
17749
|
+
"in": "query",
|
|
17750
|
+
"name": "prePaid",
|
|
17751
|
+
"schema": {
|
|
17752
|
+
"type": "boolean"
|
|
17753
|
+
},
|
|
17754
|
+
"description": "Filter by prePaid",
|
|
17755
|
+
"required": false
|
|
17756
|
+
},
|
|
17757
|
+
{
|
|
17758
|
+
"in": "query",
|
|
17759
|
+
"name": "includeVariants",
|
|
17760
|
+
"schema": {
|
|
17761
|
+
"type": "object"
|
|
17762
|
+
},
|
|
17763
|
+
"description": "Filter by includeVariants",
|
|
17764
|
+
"required": false
|
|
17765
|
+
},
|
|
17766
|
+
{
|
|
17767
|
+
"in": "query",
|
|
17768
|
+
"name": "page",
|
|
17769
|
+
"schema": {
|
|
17770
|
+
"type": "integer",
|
|
17771
|
+
"minimum": 1,
|
|
17772
|
+
"default": 1
|
|
17773
|
+
},
|
|
17774
|
+
"description": "Page number",
|
|
17775
|
+
"required": false
|
|
17776
|
+
},
|
|
17777
|
+
{
|
|
17778
|
+
"in": "query",
|
|
17779
|
+
"name": "pageSize",
|
|
17780
|
+
"schema": {
|
|
17781
|
+
"type": "integer",
|
|
17782
|
+
"minimum": 1,
|
|
17783
|
+
"maximum": 100,
|
|
17784
|
+
"default": 25
|
|
17785
|
+
},
|
|
17786
|
+
"description": "Number of items per page",
|
|
17787
|
+
"required": false
|
|
17788
|
+
},
|
|
17789
|
+
{
|
|
17790
|
+
"in": "query",
|
|
17791
|
+
"name": "orderBy",
|
|
17792
|
+
"schema": {
|
|
17793
|
+
"type": "string"
|
|
17794
|
+
},
|
|
17795
|
+
"description": "Field to order by",
|
|
17796
|
+
"required": false
|
|
17797
|
+
},
|
|
17798
|
+
{
|
|
17799
|
+
"in": "query",
|
|
17800
|
+
"name": "search",
|
|
17801
|
+
"schema": {
|
|
17802
|
+
"type": "string"
|
|
17803
|
+
},
|
|
17804
|
+
"description": "Search query",
|
|
17805
|
+
"required": false
|
|
17806
|
+
}
|
|
17807
|
+
],
|
|
17808
|
+
"responses": {
|
|
17809
|
+
"200": {
|
|
17810
|
+
"description": "Successful response",
|
|
17811
|
+
"content": {
|
|
17812
|
+
"application/json": {
|
|
17813
|
+
"schema": {
|
|
17814
|
+
"type": "object",
|
|
17815
|
+
"properties": {
|
|
17816
|
+
"status": {
|
|
17817
|
+
"type": "string",
|
|
17818
|
+
"enum": [
|
|
17819
|
+
"ok"
|
|
17820
|
+
]
|
|
17821
|
+
},
|
|
17822
|
+
"message": {
|
|
17823
|
+
"type": "string",
|
|
17824
|
+
"example": "Success message."
|
|
17825
|
+
},
|
|
17826
|
+
"data": {
|
|
17827
|
+
"type": "array",
|
|
17828
|
+
"items": {
|
|
17829
|
+
"$ref": "#/components/schemas/Coupon"
|
|
17830
|
+
}
|
|
17831
|
+
},
|
|
17832
|
+
"count": {
|
|
17833
|
+
"type": "integer",
|
|
17834
|
+
"example": 100
|
|
17835
|
+
}
|
|
17836
|
+
},
|
|
17837
|
+
"required": [
|
|
17838
|
+
"status",
|
|
17839
|
+
"message",
|
|
17840
|
+
"data"
|
|
17841
|
+
]
|
|
17842
|
+
}
|
|
17843
|
+
}
|
|
17844
|
+
}
|
|
17845
|
+
}
|
|
17846
|
+
},
|
|
17847
|
+
"tags": [
|
|
17848
|
+
"Events::Coupons"
|
|
17849
|
+
]
|
|
17850
|
+
},
|
|
17851
|
+
"post": {
|
|
17852
|
+
"operationId": "CreateEventCoupon",
|
|
17853
|
+
"summary": "Create Event Coupon",
|
|
17854
|
+
"description": "Create Event Coupon endpoint",
|
|
17855
|
+
"parameters": [
|
|
17856
|
+
{
|
|
17857
|
+
"in": "path",
|
|
17858
|
+
"name": "eventId",
|
|
17859
|
+
"schema": {
|
|
17860
|
+
"type": "string"
|
|
17861
|
+
},
|
|
17862
|
+
"description": "The event identifier",
|
|
17863
|
+
"required": true
|
|
17864
|
+
}
|
|
17865
|
+
],
|
|
17866
|
+
"requestBody": {
|
|
17867
|
+
"required": true,
|
|
17868
|
+
"content": {
|
|
17869
|
+
"application/json": {
|
|
17870
|
+
"schema": {
|
|
17871
|
+
"$ref": "#/components/schemas/EventCouponCreateInputs"
|
|
17872
|
+
}
|
|
17873
|
+
}
|
|
17874
|
+
}
|
|
17875
|
+
},
|
|
17876
|
+
"responses": {
|
|
17877
|
+
"200": {
|
|
17878
|
+
"description": "Successful response",
|
|
17879
|
+
"content": {
|
|
17880
|
+
"application/json": {
|
|
17881
|
+
"schema": {
|
|
17882
|
+
"type": "object",
|
|
17883
|
+
"properties": {
|
|
17884
|
+
"status": {
|
|
17885
|
+
"type": "string",
|
|
17886
|
+
"enum": [
|
|
17887
|
+
"ok"
|
|
17888
|
+
]
|
|
17889
|
+
},
|
|
17890
|
+
"message": {
|
|
17891
|
+
"type": "string",
|
|
17892
|
+
"example": "Success message."
|
|
17893
|
+
},
|
|
17894
|
+
"data": {
|
|
17895
|
+
"$ref": "#/components/schemas/Coupon"
|
|
17896
|
+
}
|
|
17897
|
+
},
|
|
17898
|
+
"required": [
|
|
17899
|
+
"status",
|
|
17900
|
+
"message",
|
|
17901
|
+
"data"
|
|
17902
|
+
]
|
|
17903
|
+
}
|
|
17904
|
+
}
|
|
17905
|
+
}
|
|
17906
|
+
}
|
|
17907
|
+
},
|
|
17908
|
+
"tags": [
|
|
17909
|
+
"Events::Coupons"
|
|
17910
|
+
]
|
|
17911
|
+
}
|
|
17912
|
+
},
|
|
17913
|
+
"/events/{eventId}/coupons/{couponId}": {
|
|
17914
|
+
"get": {
|
|
17915
|
+
"operationId": "GetEventCoupon",
|
|
17916
|
+
"summary": "Get Event Coupon",
|
|
17917
|
+
"description": "Get Event Coupon endpoint",
|
|
17918
|
+
"parameters": [
|
|
17919
|
+
{
|
|
17920
|
+
"in": "path",
|
|
17921
|
+
"name": "eventId",
|
|
17922
|
+
"schema": {
|
|
17923
|
+
"type": "string"
|
|
17924
|
+
},
|
|
17925
|
+
"description": "The event identifier",
|
|
17926
|
+
"required": true
|
|
17927
|
+
},
|
|
17928
|
+
{
|
|
17929
|
+
"in": "path",
|
|
17930
|
+
"name": "couponId",
|
|
17931
|
+
"schema": {
|
|
17932
|
+
"type": "string"
|
|
17933
|
+
},
|
|
17934
|
+
"description": "The coupon identifier",
|
|
17935
|
+
"required": true
|
|
17936
|
+
}
|
|
17937
|
+
],
|
|
17938
|
+
"responses": {
|
|
17939
|
+
"200": {
|
|
17940
|
+
"description": "Successful response",
|
|
17941
|
+
"content": {
|
|
17942
|
+
"application/json": {
|
|
17943
|
+
"schema": {
|
|
17944
|
+
"type": "object",
|
|
17945
|
+
"properties": {
|
|
17946
|
+
"status": {
|
|
17947
|
+
"type": "string",
|
|
17948
|
+
"enum": [
|
|
17949
|
+
"ok"
|
|
17950
|
+
]
|
|
17951
|
+
},
|
|
17952
|
+
"message": {
|
|
17953
|
+
"type": "string",
|
|
17954
|
+
"example": "Success message."
|
|
17955
|
+
},
|
|
17956
|
+
"data": {
|
|
17957
|
+
"$ref": "#/components/schemas/Coupon"
|
|
17958
|
+
}
|
|
17959
|
+
},
|
|
17960
|
+
"required": [
|
|
17961
|
+
"status",
|
|
17962
|
+
"message",
|
|
17963
|
+
"data"
|
|
17964
|
+
]
|
|
17965
|
+
}
|
|
17966
|
+
}
|
|
17967
|
+
}
|
|
17968
|
+
}
|
|
17969
|
+
},
|
|
17970
|
+
"tags": [
|
|
17971
|
+
"Events::Coupons"
|
|
17972
|
+
]
|
|
17973
|
+
},
|
|
17974
|
+
"put": {
|
|
17975
|
+
"operationId": "UpdateEventCoupon",
|
|
17976
|
+
"summary": "Update Event Coupon",
|
|
17977
|
+
"description": "Update Event Coupon endpoint",
|
|
17978
|
+
"parameters": [
|
|
17979
|
+
{
|
|
17980
|
+
"in": "path",
|
|
17981
|
+
"name": "eventId",
|
|
17982
|
+
"schema": {
|
|
17983
|
+
"type": "string"
|
|
17984
|
+
},
|
|
17985
|
+
"description": "The event identifier",
|
|
17986
|
+
"required": true
|
|
17987
|
+
},
|
|
17988
|
+
{
|
|
17989
|
+
"in": "path",
|
|
17990
|
+
"name": "couponId",
|
|
17991
|
+
"schema": {
|
|
17992
|
+
"type": "string"
|
|
17993
|
+
},
|
|
17994
|
+
"description": "The coupon identifier",
|
|
17995
|
+
"required": true
|
|
17996
|
+
}
|
|
17997
|
+
],
|
|
17998
|
+
"requestBody": {
|
|
17999
|
+
"required": true,
|
|
18000
|
+
"content": {
|
|
18001
|
+
"application/json": {
|
|
18002
|
+
"schema": {
|
|
18003
|
+
"$ref": "#/components/schemas/EventCouponUpdateInputs"
|
|
18004
|
+
}
|
|
18005
|
+
}
|
|
18006
|
+
}
|
|
18007
|
+
},
|
|
18008
|
+
"responses": {
|
|
18009
|
+
"200": {
|
|
18010
|
+
"description": "Successful response",
|
|
18011
|
+
"content": {
|
|
18012
|
+
"application/json": {
|
|
18013
|
+
"schema": {
|
|
18014
|
+
"type": "object",
|
|
18015
|
+
"properties": {
|
|
18016
|
+
"status": {
|
|
18017
|
+
"type": "string",
|
|
18018
|
+
"enum": [
|
|
18019
|
+
"ok"
|
|
18020
|
+
]
|
|
18021
|
+
},
|
|
18022
|
+
"message": {
|
|
18023
|
+
"type": "string",
|
|
18024
|
+
"example": "Success message."
|
|
18025
|
+
},
|
|
18026
|
+
"data": {
|
|
18027
|
+
"$ref": "#/components/schemas/Coupon"
|
|
18028
|
+
}
|
|
18029
|
+
},
|
|
18030
|
+
"required": [
|
|
18031
|
+
"status",
|
|
18032
|
+
"message",
|
|
18033
|
+
"data"
|
|
18034
|
+
]
|
|
18035
|
+
}
|
|
18036
|
+
}
|
|
18037
|
+
}
|
|
18038
|
+
}
|
|
18039
|
+
},
|
|
18040
|
+
"tags": [
|
|
18041
|
+
"Events::Coupons"
|
|
18042
|
+
]
|
|
18043
|
+
},
|
|
18044
|
+
"delete": {
|
|
18045
|
+
"operationId": "DeleteEventCoupon",
|
|
18046
|
+
"summary": "Delete Event Coupon",
|
|
18047
|
+
"description": "Delete Event Coupon endpoint",
|
|
18048
|
+
"parameters": [
|
|
18049
|
+
{
|
|
18050
|
+
"in": "path",
|
|
18051
|
+
"name": "eventId",
|
|
18052
|
+
"schema": {
|
|
18053
|
+
"type": "string"
|
|
18054
|
+
},
|
|
18055
|
+
"description": "The event identifier",
|
|
18056
|
+
"required": true
|
|
18057
|
+
},
|
|
18058
|
+
{
|
|
18059
|
+
"in": "path",
|
|
18060
|
+
"name": "couponId",
|
|
18061
|
+
"schema": {
|
|
18062
|
+
"type": "string"
|
|
18063
|
+
},
|
|
18064
|
+
"description": "The coupon identifier",
|
|
18065
|
+
"required": true
|
|
18066
|
+
}
|
|
18067
|
+
],
|
|
18068
|
+
"responses": {
|
|
18069
|
+
"200": {
|
|
18070
|
+
"description": "Successful response",
|
|
18071
|
+
"content": {
|
|
18072
|
+
"application/json": {
|
|
18073
|
+
"schema": {
|
|
18074
|
+
"type": "object",
|
|
18075
|
+
"properties": {
|
|
18076
|
+
"status": {
|
|
18077
|
+
"type": "string",
|
|
18078
|
+
"enum": [
|
|
18079
|
+
"ok"
|
|
18080
|
+
]
|
|
18081
|
+
},
|
|
18082
|
+
"message": {
|
|
18083
|
+
"type": "string",
|
|
18084
|
+
"example": "Success message."
|
|
18085
|
+
},
|
|
18086
|
+
"data": {
|
|
18087
|
+
"nullable": true
|
|
18088
|
+
}
|
|
18089
|
+
},
|
|
18090
|
+
"required": [
|
|
18091
|
+
"status",
|
|
18092
|
+
"message",
|
|
18093
|
+
"data"
|
|
18094
|
+
]
|
|
18095
|
+
}
|
|
18096
|
+
}
|
|
18097
|
+
}
|
|
18098
|
+
}
|
|
18099
|
+
},
|
|
18100
|
+
"tags": [
|
|
18101
|
+
"Events::Coupons"
|
|
18102
|
+
]
|
|
18103
|
+
}
|
|
18104
|
+
},
|
|
18105
|
+
"/events/{eventId}/coupons/{couponId}/passes": {
|
|
18106
|
+
"get": {
|
|
18107
|
+
"operationId": "GetEventCouponPasses",
|
|
18108
|
+
"summary": "Get Event Coupon Passes",
|
|
18109
|
+
"description": "Get Event Coupon Passes endpoint",
|
|
18110
|
+
"parameters": [
|
|
18111
|
+
{
|
|
18112
|
+
"in": "path",
|
|
18113
|
+
"name": "eventId",
|
|
18114
|
+
"schema": {
|
|
18115
|
+
"type": "string"
|
|
18116
|
+
},
|
|
18117
|
+
"description": "The event identifier",
|
|
18118
|
+
"required": true
|
|
18119
|
+
},
|
|
18120
|
+
{
|
|
18121
|
+
"in": "path",
|
|
18122
|
+
"name": "couponId",
|
|
18123
|
+
"schema": {
|
|
18124
|
+
"type": "string"
|
|
18125
|
+
},
|
|
18126
|
+
"description": "The coupon identifier",
|
|
18127
|
+
"required": true
|
|
18128
|
+
},
|
|
18129
|
+
{
|
|
18130
|
+
"in": "query",
|
|
18131
|
+
"name": "page",
|
|
18132
|
+
"schema": {
|
|
18133
|
+
"type": "integer",
|
|
18134
|
+
"minimum": 1,
|
|
18135
|
+
"default": 1
|
|
18136
|
+
},
|
|
18137
|
+
"description": "Page number",
|
|
18138
|
+
"required": false
|
|
18139
|
+
},
|
|
18140
|
+
{
|
|
18141
|
+
"in": "query",
|
|
18142
|
+
"name": "pageSize",
|
|
18143
|
+
"schema": {
|
|
18144
|
+
"type": "integer",
|
|
18145
|
+
"minimum": 1,
|
|
18146
|
+
"maximum": 100,
|
|
18147
|
+
"default": 25
|
|
18148
|
+
},
|
|
18149
|
+
"description": "Number of items per page",
|
|
18150
|
+
"required": false
|
|
18151
|
+
},
|
|
18152
|
+
{
|
|
18153
|
+
"in": "query",
|
|
18154
|
+
"name": "orderBy",
|
|
18155
|
+
"schema": {
|
|
18156
|
+
"type": "string"
|
|
18157
|
+
},
|
|
18158
|
+
"description": "Field to order by",
|
|
18159
|
+
"required": false
|
|
18160
|
+
},
|
|
18161
|
+
{
|
|
18162
|
+
"in": "query",
|
|
18163
|
+
"name": "search",
|
|
18164
|
+
"schema": {
|
|
18165
|
+
"type": "string"
|
|
18166
|
+
},
|
|
18167
|
+
"description": "Search query",
|
|
18168
|
+
"required": false
|
|
18169
|
+
}
|
|
18170
|
+
],
|
|
18171
|
+
"responses": {
|
|
18172
|
+
"200": {
|
|
18173
|
+
"description": "Successful response",
|
|
18174
|
+
"content": {
|
|
18175
|
+
"application/json": {
|
|
18176
|
+
"schema": {
|
|
18177
|
+
"type": "object",
|
|
18178
|
+
"properties": {
|
|
18179
|
+
"status": {
|
|
18180
|
+
"type": "string",
|
|
18181
|
+
"enum": [
|
|
18182
|
+
"ok"
|
|
18183
|
+
]
|
|
18184
|
+
},
|
|
18185
|
+
"message": {
|
|
18186
|
+
"type": "string",
|
|
18187
|
+
"example": "Success message."
|
|
18188
|
+
},
|
|
18189
|
+
"data": {
|
|
18190
|
+
"type": "array",
|
|
18191
|
+
"items": {
|
|
18192
|
+
"$ref": "#/components/schemas/EventPass"
|
|
18193
|
+
}
|
|
18194
|
+
},
|
|
18195
|
+
"count": {
|
|
18196
|
+
"type": "integer",
|
|
18197
|
+
"example": 100
|
|
18198
|
+
}
|
|
18199
|
+
},
|
|
18200
|
+
"required": [
|
|
18201
|
+
"status",
|
|
18202
|
+
"message",
|
|
18203
|
+
"data"
|
|
18204
|
+
]
|
|
18205
|
+
}
|
|
18206
|
+
}
|
|
18207
|
+
}
|
|
18208
|
+
}
|
|
18209
|
+
},
|
|
18210
|
+
"tags": [
|
|
18211
|
+
"Events::Coupons"
|
|
18212
|
+
]
|
|
18213
|
+
}
|
|
18214
|
+
},
|
|
18215
|
+
"/events/{eventId}/coupons/{couponId}/payments": {
|
|
18216
|
+
"get": {
|
|
18217
|
+
"operationId": "GetEventCouponPayments",
|
|
18218
|
+
"summary": "Get Event Coupon Payments",
|
|
18219
|
+
"description": "Get Event Coupon Payments endpoint",
|
|
18220
|
+
"parameters": [
|
|
18221
|
+
{
|
|
18222
|
+
"in": "path",
|
|
18223
|
+
"name": "eventId",
|
|
18224
|
+
"schema": {
|
|
18225
|
+
"type": "string"
|
|
18226
|
+
},
|
|
18227
|
+
"description": "The event identifier",
|
|
18228
|
+
"required": true
|
|
18229
|
+
},
|
|
18230
|
+
{
|
|
18231
|
+
"in": "path",
|
|
18232
|
+
"name": "couponId",
|
|
18233
|
+
"schema": {
|
|
18234
|
+
"type": "string"
|
|
18235
|
+
},
|
|
18236
|
+
"description": "The coupon identifier",
|
|
18237
|
+
"required": true
|
|
18238
|
+
},
|
|
18239
|
+
{
|
|
18240
|
+
"in": "query",
|
|
18241
|
+
"name": "page",
|
|
18242
|
+
"schema": {
|
|
18243
|
+
"type": "integer",
|
|
18244
|
+
"minimum": 1,
|
|
18245
|
+
"default": 1
|
|
18246
|
+
},
|
|
18247
|
+
"description": "Page number",
|
|
18248
|
+
"required": false
|
|
18249
|
+
},
|
|
18250
|
+
{
|
|
18251
|
+
"in": "query",
|
|
18252
|
+
"name": "pageSize",
|
|
18253
|
+
"schema": {
|
|
18254
|
+
"type": "integer",
|
|
18255
|
+
"minimum": 1,
|
|
18256
|
+
"maximum": 100,
|
|
18257
|
+
"default": 25
|
|
18258
|
+
},
|
|
18259
|
+
"description": "Number of items per page",
|
|
18260
|
+
"required": false
|
|
18261
|
+
},
|
|
18262
|
+
{
|
|
18263
|
+
"in": "query",
|
|
18264
|
+
"name": "orderBy",
|
|
18265
|
+
"schema": {
|
|
18266
|
+
"type": "string"
|
|
18267
|
+
},
|
|
18268
|
+
"description": "Field to order by",
|
|
18269
|
+
"required": false
|
|
18270
|
+
},
|
|
18271
|
+
{
|
|
18272
|
+
"in": "query",
|
|
18273
|
+
"name": "search",
|
|
18274
|
+
"schema": {
|
|
18275
|
+
"type": "string"
|
|
18276
|
+
},
|
|
18277
|
+
"description": "Search query",
|
|
18278
|
+
"required": false
|
|
17920
18279
|
}
|
|
17921
18280
|
],
|
|
17922
18281
|
"responses": {
|
|
@@ -25909,9 +26268,257 @@
|
|
|
25909
26268
|
"data": {
|
|
25910
26269
|
"type": "object"
|
|
25911
26270
|
},
|
|
25912
|
-
"count": {
|
|
25913
|
-
"type": "integer",
|
|
25914
|
-
"example": 100
|
|
26271
|
+
"count": {
|
|
26272
|
+
"type": "integer",
|
|
26273
|
+
"example": 100
|
|
26274
|
+
}
|
|
26275
|
+
},
|
|
26276
|
+
"required": [
|
|
26277
|
+
"status",
|
|
26278
|
+
"message",
|
|
26279
|
+
"data"
|
|
26280
|
+
]
|
|
26281
|
+
}
|
|
26282
|
+
}
|
|
26283
|
+
}
|
|
26284
|
+
}
|
|
26285
|
+
},
|
|
26286
|
+
"tags": [
|
|
26287
|
+
"Events::Attendees"
|
|
26288
|
+
]
|
|
26289
|
+
}
|
|
26290
|
+
},
|
|
26291
|
+
"/events/{eventId}/passes/{passId}/attributes": {
|
|
26292
|
+
"get": {
|
|
26293
|
+
"operationId": "GetEventPassAttributes",
|
|
26294
|
+
"summary": "Get Event Pass Attributes",
|
|
26295
|
+
"description": "Get Event Pass Attributes endpoint",
|
|
26296
|
+
"parameters": [
|
|
26297
|
+
{
|
|
26298
|
+
"in": "path",
|
|
26299
|
+
"name": "eventId",
|
|
26300
|
+
"schema": {
|
|
26301
|
+
"type": "string"
|
|
26302
|
+
},
|
|
26303
|
+
"description": "The event identifier",
|
|
26304
|
+
"required": true
|
|
26305
|
+
},
|
|
26306
|
+
{
|
|
26307
|
+
"in": "path",
|
|
26308
|
+
"name": "passId",
|
|
26309
|
+
"schema": {
|
|
26310
|
+
"type": "string"
|
|
26311
|
+
},
|
|
26312
|
+
"description": "The pass identifier",
|
|
26313
|
+
"required": true
|
|
26314
|
+
},
|
|
26315
|
+
{
|
|
26316
|
+
"in": "query",
|
|
26317
|
+
"name": "page",
|
|
26318
|
+
"schema": {
|
|
26319
|
+
"type": "integer",
|
|
26320
|
+
"minimum": 1,
|
|
26321
|
+
"default": 1
|
|
26322
|
+
},
|
|
26323
|
+
"description": "Page number",
|
|
26324
|
+
"required": false
|
|
26325
|
+
},
|
|
26326
|
+
{
|
|
26327
|
+
"in": "query",
|
|
26328
|
+
"name": "pageSize",
|
|
26329
|
+
"schema": {
|
|
26330
|
+
"type": "integer",
|
|
26331
|
+
"minimum": 1,
|
|
26332
|
+
"maximum": 100,
|
|
26333
|
+
"default": 25
|
|
26334
|
+
},
|
|
26335
|
+
"description": "Number of items per page",
|
|
26336
|
+
"required": false
|
|
26337
|
+
},
|
|
26338
|
+
{
|
|
26339
|
+
"in": "query",
|
|
26340
|
+
"name": "orderBy",
|
|
26341
|
+
"schema": {
|
|
26342
|
+
"type": "string"
|
|
26343
|
+
},
|
|
26344
|
+
"description": "Field to order by",
|
|
26345
|
+
"required": false
|
|
26346
|
+
},
|
|
26347
|
+
{
|
|
26348
|
+
"in": "query",
|
|
26349
|
+
"name": "search",
|
|
26350
|
+
"schema": {
|
|
26351
|
+
"type": "string"
|
|
26352
|
+
},
|
|
26353
|
+
"description": "Search query",
|
|
26354
|
+
"required": false
|
|
26355
|
+
}
|
|
26356
|
+
],
|
|
26357
|
+
"responses": {
|
|
26358
|
+
"200": {
|
|
26359
|
+
"description": "Successful response",
|
|
26360
|
+
"content": {
|
|
26361
|
+
"application/json": {
|
|
26362
|
+
"schema": {
|
|
26363
|
+
"type": "object",
|
|
26364
|
+
"properties": {
|
|
26365
|
+
"status": {
|
|
26366
|
+
"type": "string",
|
|
26367
|
+
"enum": [
|
|
26368
|
+
"ok"
|
|
26369
|
+
]
|
|
26370
|
+
},
|
|
26371
|
+
"message": {
|
|
26372
|
+
"type": "string",
|
|
26373
|
+
"example": "Success message."
|
|
26374
|
+
},
|
|
26375
|
+
"data": {
|
|
26376
|
+
"type": "object"
|
|
26377
|
+
},
|
|
26378
|
+
"count": {
|
|
26379
|
+
"type": "integer",
|
|
26380
|
+
"example": 100
|
|
26381
|
+
}
|
|
26382
|
+
},
|
|
26383
|
+
"required": [
|
|
26384
|
+
"status",
|
|
26385
|
+
"message",
|
|
26386
|
+
"data"
|
|
26387
|
+
]
|
|
26388
|
+
}
|
|
26389
|
+
}
|
|
26390
|
+
}
|
|
26391
|
+
}
|
|
26392
|
+
},
|
|
26393
|
+
"tags": [
|
|
26394
|
+
"Events::Passes::Attributes"
|
|
26395
|
+
]
|
|
26396
|
+
},
|
|
26397
|
+
"put": {
|
|
26398
|
+
"operationId": "UpdateEventPassAttributes",
|
|
26399
|
+
"summary": "Update Event Pass Attributes",
|
|
26400
|
+
"description": "Update Event Pass Attributes endpoint",
|
|
26401
|
+
"parameters": [
|
|
26402
|
+
{
|
|
26403
|
+
"in": "path",
|
|
26404
|
+
"name": "eventId",
|
|
26405
|
+
"schema": {
|
|
26406
|
+
"type": "string"
|
|
26407
|
+
},
|
|
26408
|
+
"description": "The event identifier",
|
|
26409
|
+
"required": true
|
|
26410
|
+
},
|
|
26411
|
+
{
|
|
26412
|
+
"in": "path",
|
|
26413
|
+
"name": "passId",
|
|
26414
|
+
"schema": {
|
|
26415
|
+
"type": "string"
|
|
26416
|
+
},
|
|
26417
|
+
"description": "The pass identifier",
|
|
26418
|
+
"required": true
|
|
26419
|
+
}
|
|
26420
|
+
],
|
|
26421
|
+
"requestBody": {
|
|
26422
|
+
"required": true,
|
|
26423
|
+
"content": {
|
|
26424
|
+
"application/json": {
|
|
26425
|
+
"schema": {
|
|
26426
|
+
"$ref": "#/components/schemas/PassAttributesUpdateInputs"
|
|
26427
|
+
}
|
|
26428
|
+
}
|
|
26429
|
+
}
|
|
26430
|
+
},
|
|
26431
|
+
"responses": {
|
|
26432
|
+
"200": {
|
|
26433
|
+
"description": "Successful response",
|
|
26434
|
+
"content": {
|
|
26435
|
+
"application/json": {
|
|
26436
|
+
"schema": {
|
|
26437
|
+
"type": "object",
|
|
26438
|
+
"properties": {
|
|
26439
|
+
"status": {
|
|
26440
|
+
"type": "string",
|
|
26441
|
+
"enum": [
|
|
26442
|
+
"ok"
|
|
26443
|
+
]
|
|
26444
|
+
},
|
|
26445
|
+
"message": {
|
|
26446
|
+
"type": "string",
|
|
26447
|
+
"example": "Success message."
|
|
26448
|
+
},
|
|
26449
|
+
"data": {
|
|
26450
|
+
"type": "object"
|
|
26451
|
+
}
|
|
26452
|
+
},
|
|
26453
|
+
"required": [
|
|
26454
|
+
"status",
|
|
26455
|
+
"message",
|
|
26456
|
+
"data"
|
|
26457
|
+
]
|
|
26458
|
+
}
|
|
26459
|
+
}
|
|
26460
|
+
}
|
|
26461
|
+
}
|
|
26462
|
+
},
|
|
26463
|
+
"tags": [
|
|
26464
|
+
"Events::Passes::Attributes"
|
|
26465
|
+
]
|
|
26466
|
+
}
|
|
26467
|
+
},
|
|
26468
|
+
"/events/{eventId}/passes/{passId}/attributes/{attributeId}": {
|
|
26469
|
+
"delete": {
|
|
26470
|
+
"operationId": "RemoveEventPassAttribute",
|
|
26471
|
+
"summary": "Remove Event Pass Attribute",
|
|
26472
|
+
"description": "Remove Event Pass Attribute endpoint",
|
|
26473
|
+
"parameters": [
|
|
26474
|
+
{
|
|
26475
|
+
"in": "path",
|
|
26476
|
+
"name": "eventId",
|
|
26477
|
+
"schema": {
|
|
26478
|
+
"type": "string"
|
|
26479
|
+
},
|
|
26480
|
+
"description": "The event identifier",
|
|
26481
|
+
"required": true
|
|
26482
|
+
},
|
|
26483
|
+
{
|
|
26484
|
+
"in": "path",
|
|
26485
|
+
"name": "passId",
|
|
26486
|
+
"schema": {
|
|
26487
|
+
"type": "string"
|
|
26488
|
+
},
|
|
26489
|
+
"description": "The pass identifier",
|
|
26490
|
+
"required": true
|
|
26491
|
+
},
|
|
26492
|
+
{
|
|
26493
|
+
"in": "path",
|
|
26494
|
+
"name": "attributeId",
|
|
26495
|
+
"schema": {
|
|
26496
|
+
"type": "string"
|
|
26497
|
+
},
|
|
26498
|
+
"description": "The attribute identifier",
|
|
26499
|
+
"required": true
|
|
26500
|
+
}
|
|
26501
|
+
],
|
|
26502
|
+
"responses": {
|
|
26503
|
+
"200": {
|
|
26504
|
+
"description": "Successful response",
|
|
26505
|
+
"content": {
|
|
26506
|
+
"application/json": {
|
|
26507
|
+
"schema": {
|
|
26508
|
+
"type": "object",
|
|
26509
|
+
"properties": {
|
|
26510
|
+
"status": {
|
|
26511
|
+
"type": "string",
|
|
26512
|
+
"enum": [
|
|
26513
|
+
"ok"
|
|
26514
|
+
]
|
|
26515
|
+
},
|
|
26516
|
+
"message": {
|
|
26517
|
+
"type": "string",
|
|
26518
|
+
"example": "Success message."
|
|
26519
|
+
},
|
|
26520
|
+
"data": {
|
|
26521
|
+
"type": "object"
|
|
25915
26522
|
}
|
|
25916
26523
|
},
|
|
25917
26524
|
"required": [
|
|
@@ -25925,7 +26532,7 @@
|
|
|
25925
26532
|
}
|
|
25926
26533
|
},
|
|
25927
26534
|
"tags": [
|
|
25928
|
-
"Events::
|
|
26535
|
+
"Events::Passes::Attributes"
|
|
25929
26536
|
]
|
|
25930
26537
|
}
|
|
25931
26538
|
},
|
|
@@ -74674,6 +75281,9 @@
|
|
|
74674
75281
|
"type": "string",
|
|
74675
75282
|
"nullable": true
|
|
74676
75283
|
},
|
|
75284
|
+
"continuousScanning": {
|
|
75285
|
+
"type": "boolean"
|
|
75286
|
+
},
|
|
74677
75287
|
"createdAt": {
|
|
74678
75288
|
"type": "string"
|
|
74679
75289
|
},
|
|
@@ -74688,6 +75298,7 @@
|
|
|
74688
75298
|
"image",
|
|
74689
75299
|
"protectionCode",
|
|
74690
75300
|
"longDescription",
|
|
75301
|
+
"continuousScanning",
|
|
74691
75302
|
"createdAt",
|
|
74692
75303
|
"updatedAt"
|
|
74693
75304
|
]
|
|
@@ -76765,6 +77376,104 @@
|
|
|
76765
77376
|
"updatedAt"
|
|
76766
77377
|
]
|
|
76767
77378
|
},
|
|
77379
|
+
"BaseEventAttribute": {
|
|
77380
|
+
"type": "object",
|
|
77381
|
+
"properties": {
|
|
77382
|
+
"id": {
|
|
77383
|
+
"type": "string"
|
|
77384
|
+
},
|
|
77385
|
+
"name": {
|
|
77386
|
+
"type": "string"
|
|
77387
|
+
}
|
|
77388
|
+
},
|
|
77389
|
+
"required": [
|
|
77390
|
+
"id",
|
|
77391
|
+
"name"
|
|
77392
|
+
]
|
|
77393
|
+
},
|
|
77394
|
+
"EventAttribute": {
|
|
77395
|
+
"allOf": [
|
|
77396
|
+
{
|
|
77397
|
+
"$ref": "#/components/schemas/BaseEventAttribute"
|
|
77398
|
+
},
|
|
77399
|
+
{
|
|
77400
|
+
"type": "object",
|
|
77401
|
+
"properties": {
|
|
77402
|
+
"createdAt": {
|
|
77403
|
+
"type": "string"
|
|
77404
|
+
},
|
|
77405
|
+
"updatedAt": {
|
|
77406
|
+
"type": "string"
|
|
77407
|
+
}
|
|
77408
|
+
},
|
|
77409
|
+
"required": [
|
|
77410
|
+
"createdAt",
|
|
77411
|
+
"updatedAt"
|
|
77412
|
+
]
|
|
77413
|
+
}
|
|
77414
|
+
]
|
|
77415
|
+
},
|
|
77416
|
+
"BasePassAttribute": {
|
|
77417
|
+
"type": "object",
|
|
77418
|
+
"properties": {
|
|
77419
|
+
"id": {
|
|
77420
|
+
"type": "string"
|
|
77421
|
+
},
|
|
77422
|
+
"attributeId": {
|
|
77423
|
+
"type": "string"
|
|
77424
|
+
},
|
|
77425
|
+
"attribute": {
|
|
77426
|
+
"type": "object",
|
|
77427
|
+
"properties": {
|
|
77428
|
+
"id": {
|
|
77429
|
+
"type": "string"
|
|
77430
|
+
},
|
|
77431
|
+
"name": {
|
|
77432
|
+
"type": "string"
|
|
77433
|
+
}
|
|
77434
|
+
},
|
|
77435
|
+
"required": [
|
|
77436
|
+
"id",
|
|
77437
|
+
"name"
|
|
77438
|
+
]
|
|
77439
|
+
},
|
|
77440
|
+
"value": {
|
|
77441
|
+
"type": "string"
|
|
77442
|
+
}
|
|
77443
|
+
},
|
|
77444
|
+
"required": [
|
|
77445
|
+
"id",
|
|
77446
|
+
"attributeId",
|
|
77447
|
+
"attribute",
|
|
77448
|
+
"value"
|
|
77449
|
+
]
|
|
77450
|
+
},
|
|
77451
|
+
"PassAttribute": {
|
|
77452
|
+
"allOf": [
|
|
77453
|
+
{
|
|
77454
|
+
"$ref": "#/components/schemas/BasePassAttribute"
|
|
77455
|
+
},
|
|
77456
|
+
{
|
|
77457
|
+
"type": "object",
|
|
77458
|
+
"properties": {
|
|
77459
|
+
"attribute": {
|
|
77460
|
+
"$ref": "#/components/schemas/BaseEventAttribute"
|
|
77461
|
+
},
|
|
77462
|
+
"createdAt": {
|
|
77463
|
+
"type": "string"
|
|
77464
|
+
},
|
|
77465
|
+
"updatedAt": {
|
|
77466
|
+
"type": "string"
|
|
77467
|
+
}
|
|
77468
|
+
},
|
|
77469
|
+
"required": [
|
|
77470
|
+
"attribute",
|
|
77471
|
+
"createdAt",
|
|
77472
|
+
"updatedAt"
|
|
77473
|
+
]
|
|
77474
|
+
}
|
|
77475
|
+
]
|
|
77476
|
+
},
|
|
76768
77477
|
"EventActivationTranslation": {
|
|
76769
77478
|
"type": "object",
|
|
76770
77479
|
"properties": {
|
|
@@ -77487,6 +78196,9 @@
|
|
|
77487
78196
|
],
|
|
77488
78197
|
"nullable": true
|
|
77489
78198
|
},
|
|
78199
|
+
"continuousScanning": {
|
|
78200
|
+
"type": "boolean"
|
|
78201
|
+
},
|
|
77490
78202
|
"options": {
|
|
77491
78203
|
"type": "object",
|
|
77492
78204
|
"nullable": true
|
|
@@ -77530,6 +78242,7 @@
|
|
|
77530
78242
|
"activityFeedEnabled",
|
|
77531
78243
|
"meetingId",
|
|
77532
78244
|
"meeting",
|
|
78245
|
+
"continuousScanning",
|
|
77533
78246
|
"options"
|
|
77534
78247
|
]
|
|
77535
78248
|
}
|
|
@@ -80331,6 +81044,16 @@
|
|
|
80331
81044
|
}
|
|
80332
81045
|
],
|
|
80333
81046
|
"nullable": true
|
|
81047
|
+
},
|
|
81048
|
+
"attributes": {
|
|
81049
|
+
"type": "array",
|
|
81050
|
+
"items": {
|
|
81051
|
+
"$ref": "#/components/schemas/BasePassAttribute"
|
|
81052
|
+
}
|
|
81053
|
+
},
|
|
81054
|
+
"badgeColor": {
|
|
81055
|
+
"type": "string",
|
|
81056
|
+
"nullable": true
|
|
80334
81057
|
}
|
|
80335
81058
|
},
|
|
80336
81059
|
"required": [
|
|
@@ -80340,7 +81063,9 @@
|
|
|
80340
81063
|
"lineItem",
|
|
80341
81064
|
"payerId",
|
|
80342
81065
|
"payer",
|
|
80343
|
-
"seriesRegistration"
|
|
81066
|
+
"seriesRegistration",
|
|
81067
|
+
"attributes",
|
|
81068
|
+
"badgeColor"
|
|
80344
81069
|
]
|
|
80345
81070
|
}
|
|
80346
81071
|
]
|
|
@@ -83003,14 +83728,6 @@
|
|
|
83003
83728
|
}
|
|
83004
83729
|
],
|
|
83005
83730
|
"nullable": true
|
|
83006
|
-
},
|
|
83007
|
-
"_count": {
|
|
83008
|
-
"type": "object",
|
|
83009
|
-
"properties": {
|
|
83010
|
-
"questions": {
|
|
83011
|
-
"type": "number"
|
|
83012
|
-
}
|
|
83013
|
-
}
|
|
83014
83731
|
}
|
|
83015
83732
|
},
|
|
83016
83733
|
"required": [
|
|
@@ -83406,6 +84123,15 @@
|
|
|
83406
84123
|
}
|
|
83407
84124
|
],
|
|
83408
84125
|
"nullable": true
|
|
84126
|
+
},
|
|
84127
|
+
"allowedTiers": {
|
|
84128
|
+
"type": "array",
|
|
84129
|
+
"items": {
|
|
84130
|
+
"$ref": "#/components/schemas/BaseTier"
|
|
84131
|
+
}
|
|
84132
|
+
},
|
|
84133
|
+
"continuousScanning": {
|
|
84134
|
+
"type": "boolean"
|
|
83409
84135
|
}
|
|
83410
84136
|
},
|
|
83411
84137
|
"required": [
|
|
@@ -83419,7 +84145,9 @@
|
|
|
83419
84145
|
"meeting",
|
|
83420
84146
|
"blocks",
|
|
83421
84147
|
"activationId",
|
|
83422
|
-
"activation"
|
|
84148
|
+
"activation",
|
|
84149
|
+
"allowedTiers",
|
|
84150
|
+
"continuousScanning"
|
|
83423
84151
|
]
|
|
83424
84152
|
}
|
|
83425
84153
|
]
|
|
@@ -86345,6 +87073,13 @@
|
|
|
86345
87073
|
],
|
|
86346
87074
|
"nullable": true
|
|
86347
87075
|
},
|
|
87076
|
+
"printable": {
|
|
87077
|
+
"type": "boolean"
|
|
87078
|
+
},
|
|
87079
|
+
"badgeColor": {
|
|
87080
|
+
"type": "string",
|
|
87081
|
+
"nullable": true
|
|
87082
|
+
},
|
|
86348
87083
|
"_count": {
|
|
86349
87084
|
"type": "object",
|
|
86350
87085
|
"properties": {
|
|
@@ -86365,6 +87100,8 @@
|
|
|
86365
87100
|
"disallowedTiers",
|
|
86366
87101
|
"groupPassDescription",
|
|
86367
87102
|
"requiredPassType",
|
|
87103
|
+
"printable",
|
|
87104
|
+
"badgeColor",
|
|
86368
87105
|
"_count"
|
|
86369
87106
|
]
|
|
86370
87107
|
}
|
|
@@ -93749,6 +94486,9 @@
|
|
|
93749
94486
|
},
|
|
93750
94487
|
"accessLevel": {
|
|
93751
94488
|
"$ref": "#/components/schemas/PassTypeAccessLevel"
|
|
94489
|
+
},
|
|
94490
|
+
"continuousScanning": {
|
|
94491
|
+
"type": "boolean"
|
|
93752
94492
|
}
|
|
93753
94493
|
},
|
|
93754
94494
|
"required": [
|
|
@@ -93830,6 +94570,9 @@
|
|
|
93830
94570
|
},
|
|
93831
94571
|
"accessLevel": {
|
|
93832
94572
|
"$ref": "#/components/schemas/PassTypeAccessLevel"
|
|
94573
|
+
},
|
|
94574
|
+
"continuousScanning": {
|
|
94575
|
+
"type": "boolean"
|
|
93833
94576
|
}
|
|
93834
94577
|
}
|
|
93835
94578
|
},
|
|
@@ -94029,6 +94772,52 @@
|
|
|
94029
94772
|
}
|
|
94030
94773
|
}
|
|
94031
94774
|
},
|
|
94775
|
+
"EventAttributeCreateInputs": {
|
|
94776
|
+
"type": "object",
|
|
94777
|
+
"properties": {
|
|
94778
|
+
"name": {
|
|
94779
|
+
"type": "string"
|
|
94780
|
+
}
|
|
94781
|
+
},
|
|
94782
|
+
"required": [
|
|
94783
|
+
"name"
|
|
94784
|
+
]
|
|
94785
|
+
},
|
|
94786
|
+
"EventAttributeUpdateInputs": {
|
|
94787
|
+
"type": "object",
|
|
94788
|
+
"properties": {
|
|
94789
|
+
"name": {
|
|
94790
|
+
"type": "string",
|
|
94791
|
+
"nullable": true
|
|
94792
|
+
}
|
|
94793
|
+
}
|
|
94794
|
+
},
|
|
94795
|
+
"PassAttributesUpdateInputs": {
|
|
94796
|
+
"type": "object",
|
|
94797
|
+
"properties": {
|
|
94798
|
+
"values": {
|
|
94799
|
+
"type": "array",
|
|
94800
|
+
"items": {
|
|
94801
|
+
"type": "object",
|
|
94802
|
+
"properties": {
|
|
94803
|
+
"attributeId": {
|
|
94804
|
+
"type": "string"
|
|
94805
|
+
},
|
|
94806
|
+
"value": {
|
|
94807
|
+
"type": "string"
|
|
94808
|
+
}
|
|
94809
|
+
},
|
|
94810
|
+
"required": [
|
|
94811
|
+
"attributeId",
|
|
94812
|
+
"value"
|
|
94813
|
+
]
|
|
94814
|
+
}
|
|
94815
|
+
}
|
|
94816
|
+
},
|
|
94817
|
+
"required": [
|
|
94818
|
+
"values"
|
|
94819
|
+
]
|
|
94820
|
+
},
|
|
94032
94821
|
"EventBadgeFieldUpdateInputs": {
|
|
94033
94822
|
"type": "object",
|
|
94034
94823
|
"properties": {
|
|
@@ -94617,6 +95406,9 @@
|
|
|
94617
95406
|
"meetingId": {
|
|
94618
95407
|
"type": "string",
|
|
94619
95408
|
"nullable": true
|
|
95409
|
+
},
|
|
95410
|
+
"continuousScanning": {
|
|
95411
|
+
"type": "boolean"
|
|
94620
95412
|
}
|
|
94621
95413
|
},
|
|
94622
95414
|
"required": [
|
|
@@ -94878,6 +95670,9 @@
|
|
|
94878
95670
|
"meetingId": {
|
|
94879
95671
|
"type": "string",
|
|
94880
95672
|
"nullable": true
|
|
95673
|
+
},
|
|
95674
|
+
"continuousScanning": {
|
|
95675
|
+
"type": "boolean"
|
|
94881
95676
|
}
|
|
94882
95677
|
}
|
|
94883
95678
|
},
|
|
@@ -95129,6 +95924,10 @@
|
|
|
95129
95924
|
"usedAt": {
|
|
95130
95925
|
"type": "string",
|
|
95131
95926
|
"nullable": true
|
|
95927
|
+
},
|
|
95928
|
+
"badgeColor": {
|
|
95929
|
+
"type": "string",
|
|
95930
|
+
"nullable": true
|
|
95132
95931
|
}
|
|
95133
95932
|
}
|
|
95134
95933
|
},
|
|
@@ -95158,6 +95957,10 @@
|
|
|
95158
95957
|
"usedAt": {
|
|
95159
95958
|
"type": "string",
|
|
95160
95959
|
"nullable": true
|
|
95960
|
+
},
|
|
95961
|
+
"badgeColor": {
|
|
95962
|
+
"type": "string",
|
|
95963
|
+
"nullable": true
|
|
95161
95964
|
}
|
|
95162
95965
|
}
|
|
95163
95966
|
},
|
|
@@ -95642,6 +96445,9 @@
|
|
|
95642
96445
|
"activationId": {
|
|
95643
96446
|
"type": "string",
|
|
95644
96447
|
"nullable": true
|
|
96448
|
+
},
|
|
96449
|
+
"continuousScanning": {
|
|
96450
|
+
"type": "boolean"
|
|
95645
96451
|
}
|
|
95646
96452
|
},
|
|
95647
96453
|
"required": [
|
|
@@ -95799,6 +96605,9 @@
|
|
|
95799
96605
|
"activationId": {
|
|
95800
96606
|
"type": "string",
|
|
95801
96607
|
"nullable": true
|
|
96608
|
+
},
|
|
96609
|
+
"continuousScanning": {
|
|
96610
|
+
"type": "boolean"
|
|
95802
96611
|
}
|
|
95803
96612
|
}
|
|
95804
96613
|
},
|
|
@@ -98887,6 +99696,13 @@
|
|
|
98887
99696
|
},
|
|
98888
99697
|
"taxLocation": {
|
|
98889
99698
|
"$ref": "#/components/schemas/TaxLocationType"
|
|
99699
|
+
},
|
|
99700
|
+
"printable": {
|
|
99701
|
+
"type": "boolean"
|
|
99702
|
+
},
|
|
99703
|
+
"badgeColor": {
|
|
99704
|
+
"type": "string",
|
|
99705
|
+
"nullable": true
|
|
98890
99706
|
}
|
|
98891
99707
|
},
|
|
98892
99708
|
"required": [
|
|
@@ -99050,6 +99866,13 @@
|
|
|
99050
99866
|
},
|
|
99051
99867
|
"taxLocation": {
|
|
99052
99868
|
"$ref": "#/components/schemas/TaxLocationType"
|
|
99869
|
+
},
|
|
99870
|
+
"printable": {
|
|
99871
|
+
"type": "boolean"
|
|
99872
|
+
},
|
|
99873
|
+
"badgeColor": {
|
|
99874
|
+
"type": "string",
|
|
99875
|
+
"nullable": true
|
|
99053
99876
|
}
|
|
99054
99877
|
}
|
|
99055
99878
|
},
|