@connectedxm/admin 6.13.2 → 6.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.prettierrc +23 -0
- package/dist/index.cjs +394 -1
- package/dist/index.d.cts +255 -7
- package/dist/index.d.ts +255 -7
- package/dist/index.js +365 -1
- package/openapi.json +640 -44
- package/package.json +1 -1
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,6 +12841,253 @@
|
|
|
12833
12841
|
]
|
|
12834
12842
|
}
|
|
12835
12843
|
},
|
|
12844
|
+
"/events/{eventId}/activations/{activationId}/sessions": {
|
|
12845
|
+
"get": {
|
|
12846
|
+
"operationId": "GetEventActivationSessions",
|
|
12847
|
+
"summary": "Get Event Activation Sessions",
|
|
12848
|
+
"description": "Get Event Activation Sessions endpoint",
|
|
12849
|
+
"parameters": [
|
|
12850
|
+
{
|
|
12851
|
+
"in": "path",
|
|
12852
|
+
"name": "eventId",
|
|
12853
|
+
"schema": {
|
|
12854
|
+
"type": "string"
|
|
12855
|
+
},
|
|
12856
|
+
"description": "The event identifier",
|
|
12857
|
+
"required": true
|
|
12858
|
+
},
|
|
12859
|
+
{
|
|
12860
|
+
"in": "path",
|
|
12861
|
+
"name": "activationId",
|
|
12862
|
+
"schema": {
|
|
12863
|
+
"type": "string"
|
|
12864
|
+
},
|
|
12865
|
+
"description": "The activation identifier",
|
|
12866
|
+
"required": true
|
|
12867
|
+
},
|
|
12868
|
+
{
|
|
12869
|
+
"in": "query",
|
|
12870
|
+
"name": "page",
|
|
12871
|
+
"schema": {
|
|
12872
|
+
"type": "integer",
|
|
12873
|
+
"minimum": 1,
|
|
12874
|
+
"default": 1
|
|
12875
|
+
},
|
|
12876
|
+
"description": "Page number",
|
|
12877
|
+
"required": false
|
|
12878
|
+
},
|
|
12879
|
+
{
|
|
12880
|
+
"in": "query",
|
|
12881
|
+
"name": "pageSize",
|
|
12882
|
+
"schema": {
|
|
12883
|
+
"type": "integer",
|
|
12884
|
+
"minimum": 1,
|
|
12885
|
+
"maximum": 100,
|
|
12886
|
+
"default": 25
|
|
12887
|
+
},
|
|
12888
|
+
"description": "Number of items per page",
|
|
12889
|
+
"required": false
|
|
12890
|
+
},
|
|
12891
|
+
{
|
|
12892
|
+
"in": "query",
|
|
12893
|
+
"name": "orderBy",
|
|
12894
|
+
"schema": {
|
|
12895
|
+
"type": "string"
|
|
12896
|
+
},
|
|
12897
|
+
"description": "Field to order by",
|
|
12898
|
+
"required": false
|
|
12899
|
+
},
|
|
12900
|
+
{
|
|
12901
|
+
"in": "query",
|
|
12902
|
+
"name": "search",
|
|
12903
|
+
"schema": {
|
|
12904
|
+
"type": "string"
|
|
12905
|
+
},
|
|
12906
|
+
"description": "Search query",
|
|
12907
|
+
"required": false
|
|
12908
|
+
}
|
|
12909
|
+
],
|
|
12910
|
+
"responses": {
|
|
12911
|
+
"200": {
|
|
12912
|
+
"description": "Successful response",
|
|
12913
|
+
"content": {
|
|
12914
|
+
"application/json": {
|
|
12915
|
+
"schema": {
|
|
12916
|
+
"type": "object",
|
|
12917
|
+
"properties": {
|
|
12918
|
+
"status": {
|
|
12919
|
+
"type": "string",
|
|
12920
|
+
"enum": [
|
|
12921
|
+
"ok"
|
|
12922
|
+
]
|
|
12923
|
+
},
|
|
12924
|
+
"message": {
|
|
12925
|
+
"type": "string",
|
|
12926
|
+
"example": "Success message."
|
|
12927
|
+
},
|
|
12928
|
+
"data": {
|
|
12929
|
+
"type": "object"
|
|
12930
|
+
},
|
|
12931
|
+
"count": {
|
|
12932
|
+
"type": "integer",
|
|
12933
|
+
"example": 100
|
|
12934
|
+
}
|
|
12935
|
+
},
|
|
12936
|
+
"required": [
|
|
12937
|
+
"status",
|
|
12938
|
+
"message",
|
|
12939
|
+
"data"
|
|
12940
|
+
]
|
|
12941
|
+
}
|
|
12942
|
+
}
|
|
12943
|
+
}
|
|
12944
|
+
}
|
|
12945
|
+
},
|
|
12946
|
+
"tags": [
|
|
12947
|
+
"Events::Activations"
|
|
12948
|
+
]
|
|
12949
|
+
}
|
|
12950
|
+
},
|
|
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",
|
|
12956
|
+
"parameters": [
|
|
12957
|
+
{
|
|
12958
|
+
"in": "path",
|
|
12959
|
+
"name": "eventId",
|
|
12960
|
+
"schema": {
|
|
12961
|
+
"type": "string"
|
|
12962
|
+
},
|
|
12963
|
+
"description": "The event identifier",
|
|
12964
|
+
"required": true
|
|
12965
|
+
},
|
|
12966
|
+
{
|
|
12967
|
+
"in": "path",
|
|
12968
|
+
"name": "activationId",
|
|
12969
|
+
"schema": {
|
|
12970
|
+
"type": "string"
|
|
12971
|
+
},
|
|
12972
|
+
"description": "The activation identifier",
|
|
12973
|
+
"required": true
|
|
12974
|
+
},
|
|
12975
|
+
{
|
|
12976
|
+
"in": "path",
|
|
12977
|
+
"name": "sessionId",
|
|
12978
|
+
"schema": {
|
|
12979
|
+
"type": "string"
|
|
12980
|
+
},
|
|
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
|
+
},
|
|
12836
13091
|
"/events/{eventId}/activities": {
|
|
12837
13092
|
"get": {
|
|
12838
13093
|
"operationId": "GetEventActivities",
|
|
@@ -64228,17 +64483,18 @@
|
|
|
64228
64483
|
},
|
|
64229
64484
|
"description": "The registration identifier",
|
|
64230
64485
|
"required": true
|
|
64231
|
-
},
|
|
64232
|
-
{
|
|
64233
|
-
"in": "query",
|
|
64234
|
-
"name": "responses",
|
|
64235
|
-
"schema": {
|
|
64236
|
-
"$ref": "#/components/schemas/SeriesRegistrationResponsesUpdateInputs[\"responses\"]"
|
|
64237
|
-
},
|
|
64238
|
-
"description": "Filter by responses",
|
|
64239
|
-
"required": true
|
|
64240
64486
|
}
|
|
64241
64487
|
],
|
|
64488
|
+
"requestBody": {
|
|
64489
|
+
"required": true,
|
|
64490
|
+
"content": {
|
|
64491
|
+
"application/json": {
|
|
64492
|
+
"schema": {
|
|
64493
|
+
"$ref": "#/components/schemas/SeriesRegistrationResponsesUpdateInputs"
|
|
64494
|
+
}
|
|
64495
|
+
}
|
|
64496
|
+
}
|
|
64497
|
+
},
|
|
64242
64498
|
"responses": {
|
|
64243
64499
|
"200": {
|
|
64244
64500
|
"description": "Successful response",
|
|
@@ -64258,7 +64514,7 @@
|
|
|
64258
64514
|
"example": "Success message."
|
|
64259
64515
|
},
|
|
64260
64516
|
"data": {
|
|
64261
|
-
"
|
|
64517
|
+
"type": "object"
|
|
64262
64518
|
}
|
|
64263
64519
|
},
|
|
64264
64520
|
"required": [
|
|
@@ -69077,11 +69333,234 @@
|
|
|
69077
69333
|
]
|
|
69078
69334
|
}
|
|
69079
69335
|
},
|
|
69080
|
-
"/surveys/{surveyId}/
|
|
69336
|
+
"/surveys/{surveyId}/sessions": {
|
|
69081
69337
|
"get": {
|
|
69082
|
-
"operationId": "
|
|
69083
|
-
"summary": "Get Survey
|
|
69084
|
-
"description": "Get Survey
|
|
69338
|
+
"operationId": "GetSurveySessions",
|
|
69339
|
+
"summary": "Get Survey Sessions",
|
|
69340
|
+
"description": "Get Survey Sessions endpoint",
|
|
69341
|
+
"parameters": [
|
|
69342
|
+
{
|
|
69343
|
+
"in": "path",
|
|
69344
|
+
"name": "surveyId",
|
|
69345
|
+
"schema": {
|
|
69346
|
+
"type": "string"
|
|
69347
|
+
},
|
|
69348
|
+
"description": "The survey identifier",
|
|
69349
|
+
"required": true
|
|
69350
|
+
},
|
|
69351
|
+
{
|
|
69352
|
+
"in": "query",
|
|
69353
|
+
"name": "page",
|
|
69354
|
+
"schema": {
|
|
69355
|
+
"type": "integer",
|
|
69356
|
+
"minimum": 1,
|
|
69357
|
+
"default": 1
|
|
69358
|
+
},
|
|
69359
|
+
"description": "Page number",
|
|
69360
|
+
"required": false
|
|
69361
|
+
},
|
|
69362
|
+
{
|
|
69363
|
+
"in": "query",
|
|
69364
|
+
"name": "pageSize",
|
|
69365
|
+
"schema": {
|
|
69366
|
+
"type": "integer",
|
|
69367
|
+
"minimum": 1,
|
|
69368
|
+
"maximum": 100,
|
|
69369
|
+
"default": 25
|
|
69370
|
+
},
|
|
69371
|
+
"description": "Number of items per page",
|
|
69372
|
+
"required": false
|
|
69373
|
+
},
|
|
69374
|
+
{
|
|
69375
|
+
"in": "query",
|
|
69376
|
+
"name": "orderBy",
|
|
69377
|
+
"schema": {
|
|
69378
|
+
"type": "string"
|
|
69379
|
+
},
|
|
69380
|
+
"description": "Field to order by",
|
|
69381
|
+
"required": false
|
|
69382
|
+
},
|
|
69383
|
+
{
|
|
69384
|
+
"in": "query",
|
|
69385
|
+
"name": "search",
|
|
69386
|
+
"schema": {
|
|
69387
|
+
"type": "string"
|
|
69388
|
+
},
|
|
69389
|
+
"description": "Search query",
|
|
69390
|
+
"required": false
|
|
69391
|
+
}
|
|
69392
|
+
],
|
|
69393
|
+
"responses": {
|
|
69394
|
+
"200": {
|
|
69395
|
+
"description": "Successful response",
|
|
69396
|
+
"content": {
|
|
69397
|
+
"application/json": {
|
|
69398
|
+
"schema": {
|
|
69399
|
+
"type": "object",
|
|
69400
|
+
"properties": {
|
|
69401
|
+
"status": {
|
|
69402
|
+
"type": "string",
|
|
69403
|
+
"enum": [
|
|
69404
|
+
"ok"
|
|
69405
|
+
]
|
|
69406
|
+
},
|
|
69407
|
+
"message": {
|
|
69408
|
+
"type": "string",
|
|
69409
|
+
"example": "Success message."
|
|
69410
|
+
},
|
|
69411
|
+
"data": {
|
|
69412
|
+
"type": "array",
|
|
69413
|
+
"items": {
|
|
69414
|
+
"$ref": "#/components/schemas/EventSession"
|
|
69415
|
+
}
|
|
69416
|
+
},
|
|
69417
|
+
"count": {
|
|
69418
|
+
"type": "integer",
|
|
69419
|
+
"example": 100
|
|
69420
|
+
}
|
|
69421
|
+
},
|
|
69422
|
+
"required": [
|
|
69423
|
+
"status",
|
|
69424
|
+
"message",
|
|
69425
|
+
"data"
|
|
69426
|
+
]
|
|
69427
|
+
}
|
|
69428
|
+
}
|
|
69429
|
+
}
|
|
69430
|
+
}
|
|
69431
|
+
},
|
|
69432
|
+
"tags": [
|
|
69433
|
+
"Surveys"
|
|
69434
|
+
]
|
|
69435
|
+
}
|
|
69436
|
+
},
|
|
69437
|
+
"/surveys/{surveyId}/sessions/{sessionId}": {
|
|
69438
|
+
"post": {
|
|
69439
|
+
"operationId": "AddSurveySession",
|
|
69440
|
+
"summary": "Add Survey Session",
|
|
69441
|
+
"description": "Add Survey Session endpoint",
|
|
69442
|
+
"parameters": [
|
|
69443
|
+
{
|
|
69444
|
+
"in": "path",
|
|
69445
|
+
"name": "surveyId",
|
|
69446
|
+
"schema": {
|
|
69447
|
+
"type": "string"
|
|
69448
|
+
},
|
|
69449
|
+
"description": "The survey identifier",
|
|
69450
|
+
"required": true
|
|
69451
|
+
},
|
|
69452
|
+
{
|
|
69453
|
+
"in": "path",
|
|
69454
|
+
"name": "sessionId",
|
|
69455
|
+
"schema": {
|
|
69456
|
+
"type": "string"
|
|
69457
|
+
},
|
|
69458
|
+
"description": "The session identifier",
|
|
69459
|
+
"required": true
|
|
69460
|
+
}
|
|
69461
|
+
],
|
|
69462
|
+
"responses": {
|
|
69463
|
+
"200": {
|
|
69464
|
+
"description": "Successful response",
|
|
69465
|
+
"content": {
|
|
69466
|
+
"application/json": {
|
|
69467
|
+
"schema": {
|
|
69468
|
+
"type": "object",
|
|
69469
|
+
"properties": {
|
|
69470
|
+
"status": {
|
|
69471
|
+
"type": "string",
|
|
69472
|
+
"enum": [
|
|
69473
|
+
"ok"
|
|
69474
|
+
]
|
|
69475
|
+
},
|
|
69476
|
+
"message": {
|
|
69477
|
+
"type": "string",
|
|
69478
|
+
"example": "Success message."
|
|
69479
|
+
},
|
|
69480
|
+
"data": {
|
|
69481
|
+
"$ref": "#/components/schemas/Survey"
|
|
69482
|
+
}
|
|
69483
|
+
},
|
|
69484
|
+
"required": [
|
|
69485
|
+
"status",
|
|
69486
|
+
"message",
|
|
69487
|
+
"data"
|
|
69488
|
+
]
|
|
69489
|
+
}
|
|
69490
|
+
}
|
|
69491
|
+
}
|
|
69492
|
+
}
|
|
69493
|
+
},
|
|
69494
|
+
"tags": [
|
|
69495
|
+
"Surveys::Sessions"
|
|
69496
|
+
]
|
|
69497
|
+
},
|
|
69498
|
+
"delete": {
|
|
69499
|
+
"operationId": "RemoveSurveySession",
|
|
69500
|
+
"summary": "Remove Survey Session",
|
|
69501
|
+
"description": "Remove Survey Session endpoint",
|
|
69502
|
+
"parameters": [
|
|
69503
|
+
{
|
|
69504
|
+
"in": "path",
|
|
69505
|
+
"name": "surveyId",
|
|
69506
|
+
"schema": {
|
|
69507
|
+
"type": "string"
|
|
69508
|
+
},
|
|
69509
|
+
"description": "The survey identifier",
|
|
69510
|
+
"required": true
|
|
69511
|
+
},
|
|
69512
|
+
{
|
|
69513
|
+
"in": "path",
|
|
69514
|
+
"name": "sessionId",
|
|
69515
|
+
"schema": {
|
|
69516
|
+
"type": "string"
|
|
69517
|
+
},
|
|
69518
|
+
"description": "The session identifier",
|
|
69519
|
+
"required": true
|
|
69520
|
+
}
|
|
69521
|
+
],
|
|
69522
|
+
"responses": {
|
|
69523
|
+
"200": {
|
|
69524
|
+
"description": "Successful response",
|
|
69525
|
+
"content": {
|
|
69526
|
+
"application/json": {
|
|
69527
|
+
"schema": {
|
|
69528
|
+
"type": "object",
|
|
69529
|
+
"properties": {
|
|
69530
|
+
"status": {
|
|
69531
|
+
"type": "string",
|
|
69532
|
+
"enum": [
|
|
69533
|
+
"ok"
|
|
69534
|
+
]
|
|
69535
|
+
},
|
|
69536
|
+
"message": {
|
|
69537
|
+
"type": "string",
|
|
69538
|
+
"example": "Success message."
|
|
69539
|
+
},
|
|
69540
|
+
"data": {
|
|
69541
|
+
"$ref": "#/components/schemas/Survey"
|
|
69542
|
+
}
|
|
69543
|
+
},
|
|
69544
|
+
"required": [
|
|
69545
|
+
"status",
|
|
69546
|
+
"message",
|
|
69547
|
+
"data"
|
|
69548
|
+
]
|
|
69549
|
+
}
|
|
69550
|
+
}
|
|
69551
|
+
}
|
|
69552
|
+
}
|
|
69553
|
+
},
|
|
69554
|
+
"tags": [
|
|
69555
|
+
"Surveys::Sessions"
|
|
69556
|
+
]
|
|
69557
|
+
}
|
|
69558
|
+
},
|
|
69559
|
+
"/surveys/{surveyId}/submissions": {
|
|
69560
|
+
"get": {
|
|
69561
|
+
"operationId": "GetSurveySubmissions",
|
|
69562
|
+
"summary": "Get Survey Submissions",
|
|
69563
|
+
"description": "Get Survey Submissions endpoint",
|
|
69085
69564
|
"parameters": [
|
|
69086
69565
|
{
|
|
69087
69566
|
"in": "path",
|
|
@@ -73828,6 +74307,14 @@
|
|
|
73828
74307
|
"countryStateCity"
|
|
73829
74308
|
]
|
|
73830
74309
|
},
|
|
74310
|
+
"OnSiteScanType": {
|
|
74311
|
+
"type": "string",
|
|
74312
|
+
"enum": [
|
|
74313
|
+
"both",
|
|
74314
|
+
"qr",
|
|
74315
|
+
"code128"
|
|
74316
|
+
]
|
|
74317
|
+
},
|
|
73831
74318
|
"BaseOrganizationModule": {
|
|
73832
74319
|
"type": "object",
|
|
73833
74320
|
"properties": {
|
|
@@ -74996,13 +75483,16 @@
|
|
|
74996
75483
|
],
|
|
74997
75484
|
"nullable": true
|
|
74998
75485
|
},
|
|
74999
|
-
"
|
|
75000
|
-
"
|
|
75001
|
-
|
|
75002
|
-
|
|
75486
|
+
"_count": {
|
|
75487
|
+
"type": "object",
|
|
75488
|
+
"properties": {
|
|
75489
|
+
"sessions": {
|
|
75490
|
+
"type": "number"
|
|
75003
75491
|
}
|
|
75004
|
-
|
|
75005
|
-
"
|
|
75492
|
+
},
|
|
75493
|
+
"required": [
|
|
75494
|
+
"sessions"
|
|
75495
|
+
]
|
|
75006
75496
|
}
|
|
75007
75497
|
},
|
|
75008
75498
|
"required": [
|
|
@@ -75016,7 +75506,7 @@
|
|
|
75016
75506
|
"type",
|
|
75017
75507
|
"accessLevel",
|
|
75018
75508
|
"survey",
|
|
75019
|
-
"
|
|
75509
|
+
"_count"
|
|
75020
75510
|
]
|
|
75021
75511
|
},
|
|
75022
75512
|
"EventActivation": {
|
|
@@ -75056,6 +75546,9 @@
|
|
|
75056
75546
|
"continuousScanning": {
|
|
75057
75547
|
"type": "boolean"
|
|
75058
75548
|
},
|
|
75549
|
+
"scanType": {
|
|
75550
|
+
"$ref": "#/components/schemas/OnSiteScanType"
|
|
75551
|
+
},
|
|
75059
75552
|
"createdAt": {
|
|
75060
75553
|
"type": "string"
|
|
75061
75554
|
},
|
|
@@ -75071,6 +75564,7 @@
|
|
|
75071
75564
|
"protectionCode",
|
|
75072
75565
|
"longDescription",
|
|
75073
75566
|
"continuousScanning",
|
|
75567
|
+
"scanType",
|
|
75074
75568
|
"createdAt",
|
|
75075
75569
|
"updatedAt"
|
|
75076
75570
|
]
|
|
@@ -77851,6 +78345,13 @@
|
|
|
77851
78345
|
"continuousScanning": {
|
|
77852
78346
|
"type": "boolean"
|
|
77853
78347
|
},
|
|
78348
|
+
"scanType": {
|
|
78349
|
+
"$ref": "#/components/schemas/OnSiteScanType"
|
|
78350
|
+
},
|
|
78351
|
+
"activationsDescription": {
|
|
78352
|
+
"type": "string",
|
|
78353
|
+
"nullable": true
|
|
78354
|
+
},
|
|
77854
78355
|
"options": {
|
|
77855
78356
|
"type": "object",
|
|
77856
78357
|
"nullable": true
|
|
@@ -77895,6 +78396,8 @@
|
|
|
77895
78396
|
"meetingId",
|
|
77896
78397
|
"meeting",
|
|
77897
78398
|
"continuousScanning",
|
|
78399
|
+
"scanType",
|
|
78400
|
+
"activationsDescription",
|
|
77898
78401
|
"options"
|
|
77899
78402
|
]
|
|
77900
78403
|
}
|
|
@@ -77935,6 +78438,10 @@
|
|
|
77935
78438
|
],
|
|
77936
78439
|
"nullable": true
|
|
77937
78440
|
},
|
|
78441
|
+
"activationsDescription": {
|
|
78442
|
+
"type": "string",
|
|
78443
|
+
"nullable": true
|
|
78444
|
+
},
|
|
77938
78445
|
"createdAt": {
|
|
77939
78446
|
"type": "string"
|
|
77940
78447
|
},
|
|
@@ -77951,6 +78458,7 @@
|
|
|
77951
78458
|
"reservationDescription",
|
|
77952
78459
|
"imageId",
|
|
77953
78460
|
"image",
|
|
78461
|
+
"activationsDescription",
|
|
77954
78462
|
"createdAt",
|
|
77955
78463
|
"updatedAt"
|
|
77956
78464
|
]
|
|
@@ -83784,6 +84292,9 @@
|
|
|
83784
84292
|
},
|
|
83785
84293
|
"continuousScanning": {
|
|
83786
84294
|
"type": "boolean"
|
|
84295
|
+
},
|
|
84296
|
+
"scanType": {
|
|
84297
|
+
"$ref": "#/components/schemas/OnSiteScanType"
|
|
83787
84298
|
}
|
|
83788
84299
|
},
|
|
83789
84300
|
"required": [
|
|
@@ -83799,7 +84310,8 @@
|
|
|
83799
84310
|
"activationId",
|
|
83800
84311
|
"activation",
|
|
83801
84312
|
"allowedTiers",
|
|
83802
|
-
"continuousScanning"
|
|
84313
|
+
"continuousScanning",
|
|
84314
|
+
"scanType"
|
|
83803
84315
|
]
|
|
83804
84316
|
}
|
|
83805
84317
|
]
|
|
@@ -89922,6 +90434,39 @@
|
|
|
89922
90434
|
}
|
|
89923
90435
|
]
|
|
89924
90436
|
},
|
|
90437
|
+
"EventMediaItemTranslation": {
|
|
90438
|
+
"type": "object",
|
|
90439
|
+
"properties": {
|
|
90440
|
+
"id": {
|
|
90441
|
+
"type": "string"
|
|
90442
|
+
},
|
|
90443
|
+
"locale": {
|
|
90444
|
+
"type": "string"
|
|
90445
|
+
},
|
|
90446
|
+
"name": {
|
|
90447
|
+
"type": "string",
|
|
90448
|
+
"nullable": true
|
|
90449
|
+
},
|
|
90450
|
+
"description": {
|
|
90451
|
+
"type": "string",
|
|
90452
|
+
"nullable": true
|
|
90453
|
+
},
|
|
90454
|
+
"createdAt": {
|
|
90455
|
+
"type": "string"
|
|
90456
|
+
},
|
|
90457
|
+
"updatedAt": {
|
|
90458
|
+
"type": "string"
|
|
90459
|
+
}
|
|
90460
|
+
},
|
|
90461
|
+
"required": [
|
|
90462
|
+
"id",
|
|
90463
|
+
"locale",
|
|
90464
|
+
"name",
|
|
90465
|
+
"description",
|
|
90466
|
+
"createdAt",
|
|
90467
|
+
"updatedAt"
|
|
90468
|
+
]
|
|
90469
|
+
},
|
|
89925
90470
|
"BaseEventSponsorshipLevel": {
|
|
89926
90471
|
"type": "object",
|
|
89927
90472
|
"properties": {
|
|
@@ -90192,18 +90737,6 @@
|
|
|
90192
90737
|
],
|
|
90193
90738
|
"nullable": true
|
|
90194
90739
|
},
|
|
90195
|
-
"sessionId": {
|
|
90196
|
-
"type": "string",
|
|
90197
|
-
"nullable": true
|
|
90198
|
-
},
|
|
90199
|
-
"session": {
|
|
90200
|
-
"allOf": [
|
|
90201
|
-
{
|
|
90202
|
-
"$ref": "#/components/schemas/BaseEventSession"
|
|
90203
|
-
}
|
|
90204
|
-
],
|
|
90205
|
-
"nullable": true
|
|
90206
|
-
},
|
|
90207
90740
|
"activationId": {
|
|
90208
90741
|
"type": "string",
|
|
90209
90742
|
"nullable": true
|
|
@@ -90242,8 +90775,6 @@
|
|
|
90242
90775
|
"updatedAt",
|
|
90243
90776
|
"eventId",
|
|
90244
90777
|
"event",
|
|
90245
|
-
"sessionId",
|
|
90246
|
-
"session",
|
|
90247
90778
|
"activationId",
|
|
90248
90779
|
"activation",
|
|
90249
90780
|
"passTypes",
|
|
@@ -94156,6 +94687,14 @@
|
|
|
94156
94687
|
},
|
|
94157
94688
|
"continuousScanning": {
|
|
94158
94689
|
"type": "boolean"
|
|
94690
|
+
},
|
|
94691
|
+
"scanType": {
|
|
94692
|
+
"allOf": [
|
|
94693
|
+
{
|
|
94694
|
+
"$ref": "#/components/schemas/OnSiteScanType"
|
|
94695
|
+
}
|
|
94696
|
+
],
|
|
94697
|
+
"nullable": true
|
|
94159
94698
|
}
|
|
94160
94699
|
},
|
|
94161
94700
|
"required": [
|
|
@@ -94240,6 +94779,14 @@
|
|
|
94240
94779
|
},
|
|
94241
94780
|
"continuousScanning": {
|
|
94242
94781
|
"type": "boolean"
|
|
94782
|
+
},
|
|
94783
|
+
"scanType": {
|
|
94784
|
+
"allOf": [
|
|
94785
|
+
{
|
|
94786
|
+
"$ref": "#/components/schemas/OnSiteScanType"
|
|
94787
|
+
}
|
|
94788
|
+
],
|
|
94789
|
+
"nullable": true
|
|
94243
94790
|
}
|
|
94244
94791
|
}
|
|
94245
94792
|
},
|
|
@@ -95017,6 +95564,18 @@
|
|
|
95017
95564
|
},
|
|
95018
95565
|
"continuousScanning": {
|
|
95019
95566
|
"type": "boolean"
|
|
95567
|
+
},
|
|
95568
|
+
"scanType": {
|
|
95569
|
+
"allOf": [
|
|
95570
|
+
{
|
|
95571
|
+
"$ref": "#/components/schemas/OnSiteScanType"
|
|
95572
|
+
}
|
|
95573
|
+
],
|
|
95574
|
+
"nullable": true
|
|
95575
|
+
},
|
|
95576
|
+
"activationsDescription": {
|
|
95577
|
+
"type": "string",
|
|
95578
|
+
"nullable": true
|
|
95020
95579
|
}
|
|
95021
95580
|
},
|
|
95022
95581
|
"required": [
|
|
@@ -95281,6 +95840,18 @@
|
|
|
95281
95840
|
},
|
|
95282
95841
|
"continuousScanning": {
|
|
95283
95842
|
"type": "boolean"
|
|
95843
|
+
},
|
|
95844
|
+
"scanType": {
|
|
95845
|
+
"allOf": [
|
|
95846
|
+
{
|
|
95847
|
+
"$ref": "#/components/schemas/OnSiteScanType"
|
|
95848
|
+
}
|
|
95849
|
+
],
|
|
95850
|
+
"nullable": true
|
|
95851
|
+
},
|
|
95852
|
+
"activationsDescription": {
|
|
95853
|
+
"type": "string",
|
|
95854
|
+
"nullable": true
|
|
95284
95855
|
}
|
|
95285
95856
|
}
|
|
95286
95857
|
},
|
|
@@ -96056,6 +96627,14 @@
|
|
|
96056
96627
|
},
|
|
96057
96628
|
"continuousScanning": {
|
|
96058
96629
|
"type": "boolean"
|
|
96630
|
+
},
|
|
96631
|
+
"scanType": {
|
|
96632
|
+
"allOf": [
|
|
96633
|
+
{
|
|
96634
|
+
"$ref": "#/components/schemas/OnSiteScanType"
|
|
96635
|
+
}
|
|
96636
|
+
],
|
|
96637
|
+
"nullable": true
|
|
96059
96638
|
}
|
|
96060
96639
|
},
|
|
96061
96640
|
"required": [
|
|
@@ -96216,6 +96795,14 @@
|
|
|
96216
96795
|
},
|
|
96217
96796
|
"continuousScanning": {
|
|
96218
96797
|
"type": "boolean"
|
|
96798
|
+
},
|
|
96799
|
+
"scanType": {
|
|
96800
|
+
"allOf": [
|
|
96801
|
+
{
|
|
96802
|
+
"$ref": "#/components/schemas/OnSiteScanType"
|
|
96803
|
+
}
|
|
96804
|
+
],
|
|
96805
|
+
"nullable": true
|
|
96219
96806
|
}
|
|
96220
96807
|
}
|
|
96221
96808
|
},
|
|
@@ -97050,6 +97637,10 @@
|
|
|
97050
97637
|
"imageId": {
|
|
97051
97638
|
"type": "string",
|
|
97052
97639
|
"nullable": true
|
|
97640
|
+
},
|
|
97641
|
+
"activationsDescription": {
|
|
97642
|
+
"type": "string",
|
|
97643
|
+
"nullable": true
|
|
97053
97644
|
}
|
|
97054
97645
|
}
|
|
97055
97646
|
},
|
|
@@ -101041,10 +101632,6 @@
|
|
|
101041
101632
|
"type": "string",
|
|
101042
101633
|
"nullable": true
|
|
101043
101634
|
},
|
|
101044
|
-
"sessionId": {
|
|
101045
|
-
"type": "string",
|
|
101046
|
-
"nullable": true
|
|
101047
|
-
},
|
|
101048
101635
|
"activationId": {
|
|
101049
101636
|
"type": "string",
|
|
101050
101637
|
"nullable": true
|
|
@@ -101099,10 +101686,6 @@
|
|
|
101099
101686
|
"type": "string",
|
|
101100
101687
|
"nullable": true
|
|
101101
101688
|
},
|
|
101102
|
-
"sessionId": {
|
|
101103
|
-
"type": "string",
|
|
101104
|
-
"nullable": true
|
|
101105
|
-
},
|
|
101106
101689
|
"activationId": {
|
|
101107
101690
|
"type": "string",
|
|
101108
101691
|
"nullable": true
|
|
@@ -101757,6 +102340,19 @@
|
|
|
101757
102340
|
}
|
|
101758
102341
|
}
|
|
101759
102342
|
},
|
|
102343
|
+
"EventMediaItemTranslationUpdateInputs": {
|
|
102344
|
+
"type": "object",
|
|
102345
|
+
"properties": {
|
|
102346
|
+
"name": {
|
|
102347
|
+
"type": "string",
|
|
102348
|
+
"nullable": true
|
|
102349
|
+
},
|
|
102350
|
+
"description": {
|
|
102351
|
+
"type": "string",
|
|
102352
|
+
"nullable": true
|
|
102353
|
+
}
|
|
102354
|
+
}
|
|
102355
|
+
},
|
|
101760
102356
|
"EventSponsorshipLevelCreateInputs": {
|
|
101761
102357
|
"type": "object",
|
|
101762
102358
|
"properties": {
|