@connectedxm/admin 6.25.2 → 6.27.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/openapi.json CHANGED
@@ -54758,11 +54758,11 @@
54758
54758
  ]
54759
54759
  }
54760
54760
  },
54761
- "/events/{eventId}/speakers": {
54761
+ "/events/{eventId}/sessions/{sessionId}/visiblePassTypes": {
54762
54762
  "get": {
54763
- "operationId": "GetEventSpeakers",
54764
- "summary": "Get Event Speakers",
54765
- "description": "Get Event Speakers endpoint",
54763
+ "operationId": "GetEventSessionVisiblePassTypes",
54764
+ "summary": "Get Event Session Visible Pass Types",
54765
+ "description": "Get Event Session Visible Pass Types endpoint",
54766
54766
  "parameters": [
54767
54767
  {
54768
54768
  "in": "path",
@@ -54773,6 +54773,15 @@
54773
54773
  "description": "The event identifier",
54774
54774
  "required": true
54775
54775
  },
54776
+ {
54777
+ "in": "path",
54778
+ "name": "sessionId",
54779
+ "schema": {
54780
+ "type": "string"
54781
+ },
54782
+ "description": "The session identifier",
54783
+ "required": true
54784
+ },
54776
54785
  {
54777
54786
  "in": "query",
54778
54787
  "name": "page",
@@ -54836,7 +54845,7 @@
54836
54845
  "data": {
54837
54846
  "type": "array",
54838
54847
  "items": {
54839
- "$ref": "#/components/schemas/EventSpeaker"
54848
+ "$ref": "#/components/schemas/EventPassType"
54840
54849
  }
54841
54850
  },
54842
54851
  "count": {
@@ -54855,13 +54864,15 @@
54855
54864
  }
54856
54865
  },
54857
54866
  "tags": [
54858
- "Events::Speakers"
54867
+ "Events::Sessions"
54859
54868
  ]
54860
- },
54869
+ }
54870
+ },
54871
+ "/events/{eventId}/sessions/{sessionId}/visiblePassTypes/{passTypeId}": {
54861
54872
  "post": {
54862
- "operationId": "CreateEventSpeaker",
54863
- "summary": "Create Event Speaker",
54864
- "description": "Create Event Speaker endpoint",
54873
+ "operationId": "AddEventSessionVisiblePassType",
54874
+ "summary": "Add Event Session Visible Pass Type",
54875
+ "description": "Add Event Session Visible Pass Type endpoint",
54865
54876
  "parameters": [
54866
54877
  {
54867
54878
  "in": "path",
@@ -54871,18 +54882,95 @@
54871
54882
  },
54872
54883
  "description": "The event identifier",
54873
54884
  "required": true
54885
+ },
54886
+ {
54887
+ "in": "path",
54888
+ "name": "sessionId",
54889
+ "schema": {
54890
+ "type": "string"
54891
+ },
54892
+ "description": "The session identifier",
54893
+ "required": true
54894
+ },
54895
+ {
54896
+ "in": "path",
54897
+ "name": "passTypeId",
54898
+ "schema": {
54899
+ "type": "string"
54900
+ },
54901
+ "description": "The passType identifier",
54902
+ "required": true
54874
54903
  }
54875
54904
  ],
54876
- "requestBody": {
54877
- "required": true,
54878
- "content": {
54879
- "application/json": {
54880
- "schema": {
54881
- "$ref": "#/components/schemas/EventSpeakerCreateInputs"
54905
+ "responses": {
54906
+ "200": {
54907
+ "description": "Successful response",
54908
+ "content": {
54909
+ "application/json": {
54910
+ "schema": {
54911
+ "type": "object",
54912
+ "properties": {
54913
+ "status": {
54914
+ "type": "string",
54915
+ "enum": [
54916
+ "ok"
54917
+ ]
54918
+ },
54919
+ "message": {
54920
+ "type": "string",
54921
+ "example": "Success message."
54922
+ },
54923
+ "data": {
54924
+ "$ref": "#/components/schemas/EventSession"
54925
+ }
54926
+ },
54927
+ "required": [
54928
+ "status",
54929
+ "message",
54930
+ "data"
54931
+ ]
54932
+ }
54882
54933
  }
54883
54934
  }
54884
54935
  }
54885
54936
  },
54937
+ "tags": [
54938
+ "Events::Sessions"
54939
+ ]
54940
+ },
54941
+ "delete": {
54942
+ "operationId": "RemoveEventSessionVisiblePassType",
54943
+ "summary": "Remove Event Session Visible Pass Type",
54944
+ "description": "Remove Event Session Visible Pass Type endpoint",
54945
+ "parameters": [
54946
+ {
54947
+ "in": "path",
54948
+ "name": "eventId",
54949
+ "schema": {
54950
+ "type": "string"
54951
+ },
54952
+ "description": "The event identifier",
54953
+ "required": true
54954
+ },
54955
+ {
54956
+ "in": "path",
54957
+ "name": "sessionId",
54958
+ "schema": {
54959
+ "type": "string"
54960
+ },
54961
+ "description": "The session identifier",
54962
+ "required": true
54963
+ },
54964
+ {
54965
+ "in": "path",
54966
+ "name": "passTypeId",
54967
+ "schema": {
54968
+ "type": "string"
54969
+ },
54970
+ "description": "The passType identifier",
54971
+ "required": true
54972
+ }
54973
+ ],
54886
54974
  "responses": {
54887
54975
  "200": {
54888
54976
  "description": "Successful response",
@@ -54902,7 +54990,7 @@
54902
54990
  "example": "Success message."
54903
54991
  },
54904
54992
  "data": {
54905
- "$ref": "#/components/schemas/EventSpeaker"
54993
+ "$ref": "#/components/schemas/EventSession"
54906
54994
  }
54907
54995
  },
54908
54996
  "required": [
@@ -54916,15 +55004,15 @@
54916
55004
  }
54917
55005
  },
54918
55006
  "tags": [
54919
- "Events::Speakers"
55007
+ "Events::Sessions"
54920
55008
  ]
54921
55009
  }
54922
55010
  },
54923
- "/events/{eventId}/speakers/{speakerId}": {
55011
+ "/events/{eventId}/sessions/{sessionId}/visibleTiers": {
54924
55012
  "get": {
54925
- "operationId": "GetEventSpeaker",
54926
- "summary": "Get Event Speaker",
54927
- "description": "Get Event Speaker endpoint",
55013
+ "operationId": "GetEventSessionVisibleTiers",
55014
+ "summary": "Get Event Session Visible Tiers",
55015
+ "description": "Get Event Session Visible Tiers endpoint",
54928
55016
  "parameters": [
54929
55017
  {
54930
55018
  "in": "path",
@@ -54937,12 +55025,53 @@
54937
55025
  },
54938
55026
  {
54939
55027
  "in": "path",
54940
- "name": "speakerId",
55028
+ "name": "sessionId",
54941
55029
  "schema": {
54942
55030
  "type": "string"
54943
55031
  },
54944
- "description": "The speaker identifier",
55032
+ "description": "The session identifier",
54945
55033
  "required": true
55034
+ },
55035
+ {
55036
+ "in": "query",
55037
+ "name": "page",
55038
+ "schema": {
55039
+ "type": "integer",
55040
+ "minimum": 1,
55041
+ "default": 1
55042
+ },
55043
+ "description": "Page number",
55044
+ "required": false
55045
+ },
55046
+ {
55047
+ "in": "query",
55048
+ "name": "pageSize",
55049
+ "schema": {
55050
+ "type": "integer",
55051
+ "minimum": 1,
55052
+ "maximum": 100,
55053
+ "default": 25
55054
+ },
55055
+ "description": "Number of items per page",
55056
+ "required": false
55057
+ },
55058
+ {
55059
+ "in": "query",
55060
+ "name": "orderBy",
55061
+ "schema": {
55062
+ "type": "string"
55063
+ },
55064
+ "description": "Field to order by",
55065
+ "required": false
55066
+ },
55067
+ {
55068
+ "in": "query",
55069
+ "name": "search",
55070
+ "schema": {
55071
+ "type": "string"
55072
+ },
55073
+ "description": "Search query",
55074
+ "required": false
54946
55075
  }
54947
55076
  ],
54948
55077
  "responses": {
@@ -54964,7 +55093,14 @@
54964
55093
  "example": "Success message."
54965
55094
  },
54966
55095
  "data": {
54967
- "$ref": "#/components/schemas/EventSpeaker"
55096
+ "type": "array",
55097
+ "items": {
55098
+ "$ref": "#/components/schemas/Tier"
55099
+ }
55100
+ },
55101
+ "count": {
55102
+ "type": "integer",
55103
+ "example": 100
54968
55104
  }
54969
55105
  },
54970
55106
  "required": [
@@ -54978,13 +55114,15 @@
54978
55114
  }
54979
55115
  },
54980
55116
  "tags": [
54981
- "Events::Speakers"
55117
+ "Events::Sessions"
54982
55118
  ]
54983
- },
54984
- "put": {
54985
- "operationId": "UpdateEventSpeaker",
54986
- "summary": "Update Event Speaker",
54987
- "description": "Update Event Speaker endpoint",
55119
+ }
55120
+ },
55121
+ "/events/{eventId}/sessions/{sessionId}/visibleTiers/{tierId}": {
55122
+ "post": {
55123
+ "operationId": "AddEventSessionVisibleTier",
55124
+ "summary": "Add Event Session Visible Tier",
55125
+ "description": "Add Event Session Visible Tier endpoint",
54988
55126
  "parameters": [
54989
55127
  {
54990
55128
  "in": "path",
@@ -54997,20 +55135,20 @@
54997
55135
  },
54998
55136
  {
54999
55137
  "in": "path",
55000
- "name": "speakerId",
55138
+ "name": "sessionId",
55001
55139
  "schema": {
55002
55140
  "type": "string"
55003
55141
  },
55004
- "description": "The speaker identifier",
55142
+ "description": "The session identifier",
55005
55143
  "required": true
55006
55144
  },
55007
55145
  {
55008
- "in": "query",
55009
- "name": "speaker",
55146
+ "in": "path",
55147
+ "name": "tierId",
55010
55148
  "schema": {
55011
- "$ref": "#/components/schemas/EventSpeakerUpdateInputs"
55149
+ "type": "string"
55012
55150
  },
55013
- "description": "Filter by speaker",
55151
+ "description": "The tier identifier",
55014
55152
  "required": true
55015
55153
  }
55016
55154
  ],
@@ -55033,7 +55171,7 @@
55033
55171
  "example": "Success message."
55034
55172
  },
55035
55173
  "data": {
55036
- "$ref": "#/components/schemas/EventSpeaker"
55174
+ "$ref": "#/components/schemas/EventSession"
55037
55175
  }
55038
55176
  },
55039
55177
  "required": [
@@ -55047,13 +55185,13 @@
55047
55185
  }
55048
55186
  },
55049
55187
  "tags": [
55050
- "Events::Speakers"
55188
+ "Events::Sessions"
55051
55189
  ]
55052
55190
  },
55053
55191
  "delete": {
55054
- "operationId": "DeleteEventSpeaker",
55055
- "summary": "Delete Event Speaker",
55056
- "description": "Delete Event Speaker endpoint",
55192
+ "operationId": "RemoveEventSessionVisibleTier",
55193
+ "summary": "Remove Event Session Visible Tier",
55194
+ "description": "Remove Event Session Visible Tier endpoint",
55057
55195
  "parameters": [
55058
55196
  {
55059
55197
  "in": "path",
@@ -55066,11 +55204,20 @@
55066
55204
  },
55067
55205
  {
55068
55206
  "in": "path",
55069
- "name": "speakerId",
55207
+ "name": "sessionId",
55070
55208
  "schema": {
55071
55209
  "type": "string"
55072
55210
  },
55073
- "description": "The speaker identifier",
55211
+ "description": "The session identifier",
55212
+ "required": true
55213
+ },
55214
+ {
55215
+ "in": "path",
55216
+ "name": "tierId",
55217
+ "schema": {
55218
+ "type": "string"
55219
+ },
55220
+ "description": "The tier identifier",
55074
55221
  "required": true
55075
55222
  }
55076
55223
  ],
@@ -55093,7 +55240,7 @@
55093
55240
  "example": "Success message."
55094
55241
  },
55095
55242
  "data": {
55096
- "nullable": true
55243
+ "$ref": "#/components/schemas/EventSession"
55097
55244
  }
55098
55245
  },
55099
55246
  "required": [
@@ -55107,15 +55254,15 @@
55107
55254
  }
55108
55255
  },
55109
55256
  "tags": [
55110
- "Events::Speakers"
55257
+ "Events::Sessions"
55111
55258
  ]
55112
55259
  }
55113
55260
  },
55114
- "/events/{eventId}/speakers/{speakerId}/sessions": {
55261
+ "/events/{eventId}/speakers": {
55115
55262
  "get": {
55116
- "operationId": "GetEventSpeakerSessions",
55117
- "summary": "Get Event Speaker Sessions",
55118
- "description": "Get Event Speaker Sessions endpoint",
55263
+ "operationId": "GetEventSpeakers",
55264
+ "summary": "Get Event Speakers",
55265
+ "description": "Get Event Speakers endpoint",
55119
55266
  "parameters": [
55120
55267
  {
55121
55268
  "in": "path",
@@ -55126,15 +55273,6 @@
55126
55273
  "description": "The event identifier",
55127
55274
  "required": true
55128
55275
  },
55129
- {
55130
- "in": "path",
55131
- "name": "speakerId",
55132
- "schema": {
55133
- "type": "string"
55134
- },
55135
- "description": "The speaker identifier",
55136
- "required": true
55137
- },
55138
55276
  {
55139
55277
  "in": "query",
55140
55278
  "name": "page",
@@ -55198,7 +55336,7 @@
55198
55336
  "data": {
55199
55337
  "type": "array",
55200
55338
  "items": {
55201
- "$ref": "#/components/schemas/EventSession"
55339
+ "$ref": "#/components/schemas/EventSpeaker"
55202
55340
  }
55203
55341
  },
55204
55342
  "count": {
@@ -55219,13 +55357,11 @@
55219
55357
  "tags": [
55220
55358
  "Events::Speakers"
55221
55359
  ]
55222
- }
55223
- },
55224
- "/events/{eventId}/speakers/{speakerId}/sessions/{sessionId}": {
55360
+ },
55225
55361
  "post": {
55226
- "operationId": "AddEventSpeakerSession",
55227
- "summary": "Add Event Speaker Session",
55228
- "description": "Add Event Speaker Session endpoint",
55362
+ "operationId": "CreateEventSpeaker",
55363
+ "summary": "Create Event Speaker",
55364
+ "description": "Create Event Speaker endpoint",
55229
55365
  "parameters": [
55230
55366
  {
55231
55367
  "in": "path",
@@ -55235,26 +55371,18 @@
55235
55371
  },
55236
55372
  "description": "The event identifier",
55237
55373
  "required": true
55238
- },
55239
- {
55240
- "in": "path",
55241
- "name": "speakerId",
55242
- "schema": {
55243
- "type": "string"
55244
- },
55245
- "description": "The speaker identifier",
55246
- "required": true
55247
- },
55248
- {
55249
- "in": "path",
55250
- "name": "sessionId",
55251
- "schema": {
55252
- "type": "string"
55253
- },
55254
- "description": "The session identifier",
55255
- "required": true
55256
55374
  }
55257
55375
  ],
55376
+ "requestBody": {
55377
+ "required": true,
55378
+ "content": {
55379
+ "application/json": {
55380
+ "schema": {
55381
+ "$ref": "#/components/schemas/EventSpeakerCreateInputs"
55382
+ }
55383
+ }
55384
+ }
55385
+ },
55258
55386
  "responses": {
55259
55387
  "200": {
55260
55388
  "description": "Successful response",
@@ -55290,11 +55418,13 @@
55290
55418
  "tags": [
55291
55419
  "Events::Speakers"
55292
55420
  ]
55293
- },
55294
- "delete": {
55295
- "operationId": "RemoveEventSpeakerSession",
55296
- "summary": "Remove Event Speaker Session",
55297
- "description": "Remove Event Speaker Session endpoint",
55421
+ }
55422
+ },
55423
+ "/events/{eventId}/speakers/{speakerId}": {
55424
+ "get": {
55425
+ "operationId": "GetEventSpeaker",
55426
+ "summary": "Get Event Speaker",
55427
+ "description": "Get Event Speaker endpoint",
55298
55428
  "parameters": [
55299
55429
  {
55300
55430
  "in": "path",
@@ -55313,15 +55443,385 @@
55313
55443
  },
55314
55444
  "description": "The speaker identifier",
55315
55445
  "required": true
55316
- },
55317
- {
55318
- "in": "path",
55319
- "name": "sessionId",
55320
- "schema": {
55321
- "type": "string"
55322
- },
55323
- "description": "The session identifier",
55324
- "required": true
55446
+ }
55447
+ ],
55448
+ "responses": {
55449
+ "200": {
55450
+ "description": "Successful response",
55451
+ "content": {
55452
+ "application/json": {
55453
+ "schema": {
55454
+ "type": "object",
55455
+ "properties": {
55456
+ "status": {
55457
+ "type": "string",
55458
+ "enum": [
55459
+ "ok"
55460
+ ]
55461
+ },
55462
+ "message": {
55463
+ "type": "string",
55464
+ "example": "Success message."
55465
+ },
55466
+ "data": {
55467
+ "$ref": "#/components/schemas/EventSpeaker"
55468
+ }
55469
+ },
55470
+ "required": [
55471
+ "status",
55472
+ "message",
55473
+ "data"
55474
+ ]
55475
+ }
55476
+ }
55477
+ }
55478
+ }
55479
+ },
55480
+ "tags": [
55481
+ "Events::Speakers"
55482
+ ]
55483
+ },
55484
+ "put": {
55485
+ "operationId": "UpdateEventSpeaker",
55486
+ "summary": "Update Event Speaker",
55487
+ "description": "Update Event Speaker endpoint",
55488
+ "parameters": [
55489
+ {
55490
+ "in": "path",
55491
+ "name": "eventId",
55492
+ "schema": {
55493
+ "type": "string"
55494
+ },
55495
+ "description": "The event identifier",
55496
+ "required": true
55497
+ },
55498
+ {
55499
+ "in": "path",
55500
+ "name": "speakerId",
55501
+ "schema": {
55502
+ "type": "string"
55503
+ },
55504
+ "description": "The speaker identifier",
55505
+ "required": true
55506
+ },
55507
+ {
55508
+ "in": "query",
55509
+ "name": "speaker",
55510
+ "schema": {
55511
+ "$ref": "#/components/schemas/EventSpeakerUpdateInputs"
55512
+ },
55513
+ "description": "Filter by speaker",
55514
+ "required": true
55515
+ }
55516
+ ],
55517
+ "responses": {
55518
+ "200": {
55519
+ "description": "Successful response",
55520
+ "content": {
55521
+ "application/json": {
55522
+ "schema": {
55523
+ "type": "object",
55524
+ "properties": {
55525
+ "status": {
55526
+ "type": "string",
55527
+ "enum": [
55528
+ "ok"
55529
+ ]
55530
+ },
55531
+ "message": {
55532
+ "type": "string",
55533
+ "example": "Success message."
55534
+ },
55535
+ "data": {
55536
+ "$ref": "#/components/schemas/EventSpeaker"
55537
+ }
55538
+ },
55539
+ "required": [
55540
+ "status",
55541
+ "message",
55542
+ "data"
55543
+ ]
55544
+ }
55545
+ }
55546
+ }
55547
+ }
55548
+ },
55549
+ "tags": [
55550
+ "Events::Speakers"
55551
+ ]
55552
+ },
55553
+ "delete": {
55554
+ "operationId": "DeleteEventSpeaker",
55555
+ "summary": "Delete Event Speaker",
55556
+ "description": "Delete Event Speaker endpoint",
55557
+ "parameters": [
55558
+ {
55559
+ "in": "path",
55560
+ "name": "eventId",
55561
+ "schema": {
55562
+ "type": "string"
55563
+ },
55564
+ "description": "The event identifier",
55565
+ "required": true
55566
+ },
55567
+ {
55568
+ "in": "path",
55569
+ "name": "speakerId",
55570
+ "schema": {
55571
+ "type": "string"
55572
+ },
55573
+ "description": "The speaker identifier",
55574
+ "required": true
55575
+ }
55576
+ ],
55577
+ "responses": {
55578
+ "200": {
55579
+ "description": "Successful response",
55580
+ "content": {
55581
+ "application/json": {
55582
+ "schema": {
55583
+ "type": "object",
55584
+ "properties": {
55585
+ "status": {
55586
+ "type": "string",
55587
+ "enum": [
55588
+ "ok"
55589
+ ]
55590
+ },
55591
+ "message": {
55592
+ "type": "string",
55593
+ "example": "Success message."
55594
+ },
55595
+ "data": {
55596
+ "nullable": true
55597
+ }
55598
+ },
55599
+ "required": [
55600
+ "status",
55601
+ "message",
55602
+ "data"
55603
+ ]
55604
+ }
55605
+ }
55606
+ }
55607
+ }
55608
+ },
55609
+ "tags": [
55610
+ "Events::Speakers"
55611
+ ]
55612
+ }
55613
+ },
55614
+ "/events/{eventId}/speakers/{speakerId}/sessions": {
55615
+ "get": {
55616
+ "operationId": "GetEventSpeakerSessions",
55617
+ "summary": "Get Event Speaker Sessions",
55618
+ "description": "Get Event Speaker Sessions endpoint",
55619
+ "parameters": [
55620
+ {
55621
+ "in": "path",
55622
+ "name": "eventId",
55623
+ "schema": {
55624
+ "type": "string"
55625
+ },
55626
+ "description": "The event identifier",
55627
+ "required": true
55628
+ },
55629
+ {
55630
+ "in": "path",
55631
+ "name": "speakerId",
55632
+ "schema": {
55633
+ "type": "string"
55634
+ },
55635
+ "description": "The speaker identifier",
55636
+ "required": true
55637
+ },
55638
+ {
55639
+ "in": "query",
55640
+ "name": "page",
55641
+ "schema": {
55642
+ "type": "integer",
55643
+ "minimum": 1,
55644
+ "default": 1
55645
+ },
55646
+ "description": "Page number",
55647
+ "required": false
55648
+ },
55649
+ {
55650
+ "in": "query",
55651
+ "name": "pageSize",
55652
+ "schema": {
55653
+ "type": "integer",
55654
+ "minimum": 1,
55655
+ "maximum": 100,
55656
+ "default": 25
55657
+ },
55658
+ "description": "Number of items per page",
55659
+ "required": false
55660
+ },
55661
+ {
55662
+ "in": "query",
55663
+ "name": "orderBy",
55664
+ "schema": {
55665
+ "type": "string"
55666
+ },
55667
+ "description": "Field to order by",
55668
+ "required": false
55669
+ },
55670
+ {
55671
+ "in": "query",
55672
+ "name": "search",
55673
+ "schema": {
55674
+ "type": "string"
55675
+ },
55676
+ "description": "Search query",
55677
+ "required": false
55678
+ }
55679
+ ],
55680
+ "responses": {
55681
+ "200": {
55682
+ "description": "Successful response",
55683
+ "content": {
55684
+ "application/json": {
55685
+ "schema": {
55686
+ "type": "object",
55687
+ "properties": {
55688
+ "status": {
55689
+ "type": "string",
55690
+ "enum": [
55691
+ "ok"
55692
+ ]
55693
+ },
55694
+ "message": {
55695
+ "type": "string",
55696
+ "example": "Success message."
55697
+ },
55698
+ "data": {
55699
+ "type": "array",
55700
+ "items": {
55701
+ "$ref": "#/components/schemas/EventSession"
55702
+ }
55703
+ },
55704
+ "count": {
55705
+ "type": "integer",
55706
+ "example": 100
55707
+ }
55708
+ },
55709
+ "required": [
55710
+ "status",
55711
+ "message",
55712
+ "data"
55713
+ ]
55714
+ }
55715
+ }
55716
+ }
55717
+ }
55718
+ },
55719
+ "tags": [
55720
+ "Events::Speakers"
55721
+ ]
55722
+ }
55723
+ },
55724
+ "/events/{eventId}/speakers/{speakerId}/sessions/{sessionId}": {
55725
+ "post": {
55726
+ "operationId": "AddEventSpeakerSession",
55727
+ "summary": "Add Event Speaker Session",
55728
+ "description": "Add Event Speaker Session endpoint",
55729
+ "parameters": [
55730
+ {
55731
+ "in": "path",
55732
+ "name": "eventId",
55733
+ "schema": {
55734
+ "type": "string"
55735
+ },
55736
+ "description": "The event identifier",
55737
+ "required": true
55738
+ },
55739
+ {
55740
+ "in": "path",
55741
+ "name": "speakerId",
55742
+ "schema": {
55743
+ "type": "string"
55744
+ },
55745
+ "description": "The speaker identifier",
55746
+ "required": true
55747
+ },
55748
+ {
55749
+ "in": "path",
55750
+ "name": "sessionId",
55751
+ "schema": {
55752
+ "type": "string"
55753
+ },
55754
+ "description": "The session identifier",
55755
+ "required": true
55756
+ }
55757
+ ],
55758
+ "responses": {
55759
+ "200": {
55760
+ "description": "Successful response",
55761
+ "content": {
55762
+ "application/json": {
55763
+ "schema": {
55764
+ "type": "object",
55765
+ "properties": {
55766
+ "status": {
55767
+ "type": "string",
55768
+ "enum": [
55769
+ "ok"
55770
+ ]
55771
+ },
55772
+ "message": {
55773
+ "type": "string",
55774
+ "example": "Success message."
55775
+ },
55776
+ "data": {
55777
+ "$ref": "#/components/schemas/EventSpeaker"
55778
+ }
55779
+ },
55780
+ "required": [
55781
+ "status",
55782
+ "message",
55783
+ "data"
55784
+ ]
55785
+ }
55786
+ }
55787
+ }
55788
+ }
55789
+ },
55790
+ "tags": [
55791
+ "Events::Speakers"
55792
+ ]
55793
+ },
55794
+ "delete": {
55795
+ "operationId": "RemoveEventSpeakerSession",
55796
+ "summary": "Remove Event Speaker Session",
55797
+ "description": "Remove Event Speaker Session endpoint",
55798
+ "parameters": [
55799
+ {
55800
+ "in": "path",
55801
+ "name": "eventId",
55802
+ "schema": {
55803
+ "type": "string"
55804
+ },
55805
+ "description": "The event identifier",
55806
+ "required": true
55807
+ },
55808
+ {
55809
+ "in": "path",
55810
+ "name": "speakerId",
55811
+ "schema": {
55812
+ "type": "string"
55813
+ },
55814
+ "description": "The speaker identifier",
55815
+ "required": true
55816
+ },
55817
+ {
55818
+ "in": "path",
55819
+ "name": "sessionId",
55820
+ "schema": {
55821
+ "type": "string"
55822
+ },
55823
+ "description": "The session identifier",
55824
+ "required": true
55325
55825
  }
55326
55826
  ],
55327
55827
  "responses": {
@@ -75792,7 +76292,268 @@
75792
76292
  "example": "Success message."
75793
76293
  },
75794
76294
  "data": {
75795
- "$ref": "#/components/schemas/PushDevice"
76295
+ "$ref": "#/components/schemas/PushDevice"
76296
+ }
76297
+ },
76298
+ "required": [
76299
+ "status",
76300
+ "message",
76301
+ "data"
76302
+ ]
76303
+ }
76304
+ }
76305
+ }
76306
+ }
76307
+ },
76308
+ "tags": [
76309
+ "PushDevices"
76310
+ ]
76311
+ },
76312
+ "delete": {
76313
+ "operationId": "DeletePushDevice",
76314
+ "summary": "Delete Push Device",
76315
+ "description": "Delete Push Device endpoint",
76316
+ "parameters": [
76317
+ {
76318
+ "in": "path",
76319
+ "name": "pushDeviceId",
76320
+ "schema": {
76321
+ "type": "string"
76322
+ },
76323
+ "description": "The pushDevice identifier",
76324
+ "required": true
76325
+ }
76326
+ ],
76327
+ "responses": {
76328
+ "200": {
76329
+ "description": "Successful response",
76330
+ "content": {
76331
+ "application/json": {
76332
+ "schema": {
76333
+ "type": "object",
76334
+ "properties": {
76335
+ "status": {
76336
+ "type": "string",
76337
+ "enum": [
76338
+ "ok"
76339
+ ]
76340
+ },
76341
+ "message": {
76342
+ "type": "string",
76343
+ "example": "Success message."
76344
+ },
76345
+ "data": {
76346
+ "nullable": true
76347
+ }
76348
+ },
76349
+ "required": [
76350
+ "status",
76351
+ "message",
76352
+ "data"
76353
+ ]
76354
+ }
76355
+ }
76356
+ }
76357
+ }
76358
+ },
76359
+ "tags": [
76360
+ "PushDevices"
76361
+ ]
76362
+ }
76363
+ },
76364
+ "/reports": {
76365
+ "get": {
76366
+ "operationId": "GetReports",
76367
+ "summary": "Get Reports",
76368
+ "description": "Get Reports endpoint",
76369
+ "parameters": [
76370
+ {
76371
+ "in": "query",
76372
+ "name": "type",
76373
+ "schema": {
76374
+ "$ref": "#/components/schemas/ReportType"
76375
+ },
76376
+ "description": "Filter by type",
76377
+ "required": true
76378
+ }
76379
+ ],
76380
+ "responses": {
76381
+ "200": {
76382
+ "description": "Successful response",
76383
+ "content": {
76384
+ "application/json": {
76385
+ "schema": {
76386
+ "type": "object",
76387
+ "properties": {
76388
+ "status": {
76389
+ "type": "string",
76390
+ "enum": [
76391
+ "ok"
76392
+ ]
76393
+ },
76394
+ "message": {
76395
+ "type": "string",
76396
+ "example": "Success message."
76397
+ },
76398
+ "data": {
76399
+ "type": "array",
76400
+ "items": {
76401
+ "$ref": "#/components/schemas/BaseStandardReport"
76402
+ }
76403
+ }
76404
+ },
76405
+ "required": [
76406
+ "status",
76407
+ "message",
76408
+ "data"
76409
+ ]
76410
+ }
76411
+ }
76412
+ }
76413
+ }
76414
+ },
76415
+ "tags": [
76416
+ "Reports"
76417
+ ]
76418
+ }
76419
+ },
76420
+ "/reports/custom": {
76421
+ "get": {
76422
+ "operationId": "GetCustomReports",
76423
+ "summary": "Get Custom Reports",
76424
+ "description": "Get Custom Reports endpoint",
76425
+ "parameters": [
76426
+ {
76427
+ "in": "query",
76428
+ "name": "filters",
76429
+ "schema": {
76430
+ "$ref": "#/components/schemas/ReportFilters"
76431
+ },
76432
+ "description": "Filter by filters",
76433
+ "required": false
76434
+ },
76435
+ {
76436
+ "in": "query",
76437
+ "name": "page",
76438
+ "schema": {
76439
+ "type": "integer",
76440
+ "minimum": 1,
76441
+ "default": 1
76442
+ },
76443
+ "description": "Page number",
76444
+ "required": false
76445
+ },
76446
+ {
76447
+ "in": "query",
76448
+ "name": "pageSize",
76449
+ "schema": {
76450
+ "type": "integer",
76451
+ "minimum": 1,
76452
+ "maximum": 100,
76453
+ "default": 25
76454
+ },
76455
+ "description": "Number of items per page",
76456
+ "required": false
76457
+ },
76458
+ {
76459
+ "in": "query",
76460
+ "name": "orderBy",
76461
+ "schema": {
76462
+ "type": "string"
76463
+ },
76464
+ "description": "Field to order by",
76465
+ "required": false
76466
+ },
76467
+ {
76468
+ "in": "query",
76469
+ "name": "search",
76470
+ "schema": {
76471
+ "type": "string"
76472
+ },
76473
+ "description": "Search query",
76474
+ "required": false
76475
+ }
76476
+ ],
76477
+ "responses": {
76478
+ "200": {
76479
+ "description": "Successful response",
76480
+ "content": {
76481
+ "application/json": {
76482
+ "schema": {
76483
+ "type": "object",
76484
+ "properties": {
76485
+ "status": {
76486
+ "type": "string",
76487
+ "enum": [
76488
+ "ok"
76489
+ ]
76490
+ },
76491
+ "message": {
76492
+ "type": "string",
76493
+ "example": "Success message."
76494
+ },
76495
+ "data": {
76496
+ "type": "array",
76497
+ "items": {
76498
+ "$ref": "#/components/schemas/CustomReport"
76499
+ }
76500
+ },
76501
+ "count": {
76502
+ "type": "integer",
76503
+ "example": 100
76504
+ }
76505
+ },
76506
+ "required": [
76507
+ "status",
76508
+ "message",
76509
+ "data"
76510
+ ]
76511
+ }
76512
+ }
76513
+ }
76514
+ }
76515
+ },
76516
+ "tags": [
76517
+ "Reports"
76518
+ ]
76519
+ }
76520
+ },
76521
+ "/reports/custom/{reportId}": {
76522
+ "get": {
76523
+ "operationId": "GetCustomReport",
76524
+ "summary": "Get Custom Report",
76525
+ "description": "Get Custom Report endpoint",
76526
+ "parameters": [
76527
+ {
76528
+ "in": "path",
76529
+ "name": "reportId",
76530
+ "schema": {
76531
+ "type": "string"
76532
+ },
76533
+ "description": "The report identifier",
76534
+ "required": true
76535
+ }
76536
+ ],
76537
+ "responses": {
76538
+ "200": {
76539
+ "description": "Successful response",
76540
+ "content": {
76541
+ "application/json": {
76542
+ "schema": {
76543
+ "type": "object",
76544
+ "properties": {
76545
+ "status": {
76546
+ "type": "string",
76547
+ "enum": [
76548
+ "ok"
76549
+ ]
76550
+ },
76551
+ "message": {
76552
+ "type": "string",
76553
+ "example": "Success message."
76554
+ },
76555
+ "data": {
76556
+ "$ref": "#/components/schemas/CustomReport"
75796
76557
  }
75797
76558
  },
75798
76559
  "required": [
@@ -75806,74 +76567,30 @@
75806
76567
  }
75807
76568
  },
75808
76569
  "tags": [
75809
- "PushDevices"
76570
+ "Reports"
75810
76571
  ]
75811
76572
  },
75812
- "delete": {
75813
- "operationId": "DeletePushDevice",
75814
- "summary": "Delete Push Device",
75815
- "description": "Delete Push Device endpoint",
76573
+ "put": {
76574
+ "operationId": "UpdateCustomReport",
76575
+ "summary": "Update Custom Report",
76576
+ "description": "Update Custom Report endpoint",
75816
76577
  "parameters": [
75817
76578
  {
75818
76579
  "in": "path",
75819
- "name": "pushDeviceId",
76580
+ "name": "reportId",
75820
76581
  "schema": {
75821
76582
  "type": "string"
75822
76583
  },
75823
- "description": "The pushDevice identifier",
76584
+ "description": "The report identifier",
75824
76585
  "required": true
75825
- }
75826
- ],
75827
- "responses": {
75828
- "200": {
75829
- "description": "Successful response",
75830
- "content": {
75831
- "application/json": {
75832
- "schema": {
75833
- "type": "object",
75834
- "properties": {
75835
- "status": {
75836
- "type": "string",
75837
- "enum": [
75838
- "ok"
75839
- ]
75840
- },
75841
- "message": {
75842
- "type": "string",
75843
- "example": "Success message."
75844
- },
75845
- "data": {
75846
- "nullable": true
75847
- }
75848
- },
75849
- "required": [
75850
- "status",
75851
- "message",
75852
- "data"
75853
- ]
75854
- }
75855
- }
75856
- }
75857
- }
75858
- },
75859
- "tags": [
75860
- "PushDevices"
75861
- ]
75862
- }
75863
- },
75864
- "/reports": {
75865
- "get": {
75866
- "operationId": "GetReports",
75867
- "summary": "Get Reports",
75868
- "description": "Get Reports endpoint",
75869
- "parameters": [
76586
+ },
75870
76587
  {
75871
76588
  "in": "query",
75872
- "name": "type",
76589
+ "name": "report",
75873
76590
  "schema": {
75874
- "$ref": "#/components/schemas/ReportType"
76591
+ "$ref": "#/components/schemas/CustomReportUpdateInputs"
75875
76592
  },
75876
- "description": "Filter by type",
76593
+ "description": "Filter by report",
75877
76594
  "required": true
75878
76595
  }
75879
76596
  ],
@@ -75896,10 +76613,7 @@
75896
76613
  "example": "Success message."
75897
76614
  },
75898
76615
  "data": {
75899
- "type": "array",
75900
- "items": {
75901
- "$ref": "#/components/schemas/BaseStandardReport"
75902
- }
76616
+ "$ref": "#/components/schemas/CustomReport"
75903
76617
  }
75904
76618
  },
75905
76619
  "required": [
@@ -75915,63 +76629,20 @@
75915
76629
  "tags": [
75916
76630
  "Reports"
75917
76631
  ]
75918
- }
75919
- },
75920
- "/reports/custom": {
75921
- "get": {
75922
- "operationId": "GetCustomReports",
75923
- "summary": "Get Custom Reports",
75924
- "description": "Get Custom Reports endpoint",
76632
+ },
76633
+ "delete": {
76634
+ "operationId": "DeleteCustomReport",
76635
+ "summary": "Delete Custom Report",
76636
+ "description": "Delete Custom Report endpoint",
75925
76637
  "parameters": [
75926
76638
  {
75927
- "in": "query",
75928
- "name": "filters",
75929
- "schema": {
75930
- "$ref": "#/components/schemas/ReportFilters"
75931
- },
75932
- "description": "Filter by filters",
75933
- "required": false
75934
- },
75935
- {
75936
- "in": "query",
75937
- "name": "page",
75938
- "schema": {
75939
- "type": "integer",
75940
- "minimum": 1,
75941
- "default": 1
75942
- },
75943
- "description": "Page number",
75944
- "required": false
75945
- },
75946
- {
75947
- "in": "query",
75948
- "name": "pageSize",
75949
- "schema": {
75950
- "type": "integer",
75951
- "minimum": 1,
75952
- "maximum": 100,
75953
- "default": 25
75954
- },
75955
- "description": "Number of items per page",
75956
- "required": false
75957
- },
75958
- {
75959
- "in": "query",
75960
- "name": "orderBy",
75961
- "schema": {
75962
- "type": "string"
75963
- },
75964
- "description": "Field to order by",
75965
- "required": false
75966
- },
75967
- {
75968
- "in": "query",
75969
- "name": "search",
76639
+ "in": "path",
76640
+ "name": "reportId",
75970
76641
  "schema": {
75971
76642
  "type": "string"
75972
76643
  },
75973
- "description": "Search query",
75974
- "required": false
76644
+ "description": "The report identifier",
76645
+ "required": true
75975
76646
  }
75976
76647
  ],
75977
76648
  "responses": {
@@ -75993,14 +76664,7 @@
75993
76664
  "example": "Success message."
75994
76665
  },
75995
76666
  "data": {
75996
- "type": "array",
75997
- "items": {
75998
- "$ref": "#/components/schemas/CustomReport"
75999
- }
76000
- },
76001
- "count": {
76002
- "type": "integer",
76003
- "example": 100
76667
+ "nullable": true
76004
76668
  }
76005
76669
  },
76006
76670
  "required": [
@@ -76018,11 +76682,11 @@
76018
76682
  ]
76019
76683
  }
76020
76684
  },
76021
- "/reports/custom/{reportId}": {
76022
- "get": {
76023
- "operationId": "GetCustomReport",
76024
- "summary": "Get Custom Report",
76025
- "description": "Get Custom Report endpoint",
76685
+ "/reports/custom/{reportId}/export": {
76686
+ "post": {
76687
+ "operationId": "ExportCustomReport",
76688
+ "summary": "Export Custom Report",
76689
+ "description": "Export Custom Report endpoint",
76026
76690
  "parameters": [
76027
76691
  {
76028
76692
  "in": "path",
@@ -76034,6 +76698,16 @@
76034
76698
  "required": true
76035
76699
  }
76036
76700
  ],
76701
+ "requestBody": {
76702
+ "required": true,
76703
+ "content": {
76704
+ "application/json": {
76705
+ "schema": {
76706
+ "$ref": "#/components/schemas/CustomReportExportInputs"
76707
+ }
76708
+ }
76709
+ }
76710
+ },
76037
76711
  "responses": {
76038
76712
  "200": {
76039
76713
  "description": "Successful response",
@@ -76053,7 +76727,7 @@
76053
76727
  "example": "Success message."
76054
76728
  },
76055
76729
  "data": {
76056
- "$ref": "#/components/schemas/CustomReport"
76730
+ "nullable": true
76057
76731
  }
76058
76732
  },
76059
76733
  "required": [
@@ -76069,11 +76743,13 @@
76069
76743
  "tags": [
76070
76744
  "Reports"
76071
76745
  ]
76072
- },
76073
- "put": {
76074
- "operationId": "UpdateCustomReport",
76075
- "summary": "Update Custom Report",
76076
- "description": "Update Custom Report endpoint",
76746
+ }
76747
+ },
76748
+ "/reports/custom/{reportId}/schedule": {
76749
+ "get": {
76750
+ "operationId": "GetCustomReportSchedule",
76751
+ "summary": "Get Custom Report Schedule",
76752
+ "description": "Get Custom Report Schedule endpoint",
76077
76753
  "parameters": [
76078
76754
  {
76079
76755
  "in": "path",
@@ -76083,15 +76759,6 @@
76083
76759
  },
76084
76760
  "description": "The report identifier",
76085
76761
  "required": true
76086
- },
76087
- {
76088
- "in": "query",
76089
- "name": "report",
76090
- "schema": {
76091
- "$ref": "#/components/schemas/CustomReportUpdateInputs"
76092
- },
76093
- "description": "Filter by report",
76094
- "required": true
76095
76762
  }
76096
76763
  ],
76097
76764
  "responses": {
@@ -76113,7 +76780,12 @@
76113
76780
  "example": "Success message."
76114
76781
  },
76115
76782
  "data": {
76116
- "$ref": "#/components/schemas/CustomReport"
76783
+ "allOf": [
76784
+ {
76785
+ "$ref": "#/components/schemas/CustomReportSchedule"
76786
+ }
76787
+ ],
76788
+ "nullable": true
76117
76789
  }
76118
76790
  },
76119
76791
  "required": [
@@ -76130,10 +76802,10 @@
76130
76802
  "Reports"
76131
76803
  ]
76132
76804
  },
76133
- "delete": {
76134
- "operationId": "DeleteCustomReport",
76135
- "summary": "Delete Custom Report",
76136
- "description": "Delete Custom Report endpoint",
76805
+ "post": {
76806
+ "operationId": "UpsertCustomReportSchedule",
76807
+ "summary": "Upsert Custom Report Schedule",
76808
+ "description": "Upsert Custom Report Schedule endpoint",
76137
76809
  "parameters": [
76138
76810
  {
76139
76811
  "in": "path",
@@ -76145,6 +76817,16 @@
76145
76817
  "required": true
76146
76818
  }
76147
76819
  ],
76820
+ "requestBody": {
76821
+ "required": true,
76822
+ "content": {
76823
+ "application/json": {
76824
+ "schema": {
76825
+ "$ref": "#/components/schemas/CustomReportScheduleInputs"
76826
+ }
76827
+ }
76828
+ }
76829
+ },
76148
76830
  "responses": {
76149
76831
  "200": {
76150
76832
  "description": "Successful response",
@@ -76164,7 +76846,7 @@
76164
76846
  "example": "Success message."
76165
76847
  },
76166
76848
  "data": {
76167
- "nullable": true
76849
+ "$ref": "#/components/schemas/CustomReportSchedule"
76168
76850
  }
76169
76851
  },
76170
76852
  "required": [
@@ -76180,13 +76862,11 @@
76180
76862
  "tags": [
76181
76863
  "Reports"
76182
76864
  ]
76183
- }
76184
- },
76185
- "/reports/custom/{reportId}/export": {
76186
- "post": {
76187
- "operationId": "ExportCustomReport",
76188
- "summary": "Export Custom Report",
76189
- "description": "Export Custom Report endpoint",
76865
+ },
76866
+ "delete": {
76867
+ "operationId": "DeleteCustomReportSchedule",
76868
+ "summary": "Delete Custom Report Schedule",
76869
+ "description": "Delete Custom Report Schedule endpoint",
76190
76870
  "parameters": [
76191
76871
  {
76192
76872
  "in": "path",
@@ -76198,16 +76878,6 @@
76198
76878
  "required": true
76199
76879
  }
76200
76880
  ],
76201
- "requestBody": {
76202
- "required": true,
76203
- "content": {
76204
- "application/json": {
76205
- "schema": {
76206
- "$ref": "#/components/schemas/CustomReportExportInputs"
76207
- }
76208
- }
76209
- }
76210
- },
76211
76881
  "responses": {
76212
76882
  "200": {
76213
76883
  "description": "Successful response",
@@ -76227,6 +76897,11 @@
76227
76897
  "example": "Success message."
76228
76898
  },
76229
76899
  "data": {
76900
+ "allOf": [
76901
+ {
76902
+ "$ref": "#/components/schemas/CustomReportSchedule"
76903
+ }
76904
+ ],
76230
76905
  "nullable": true
76231
76906
  }
76232
76907
  },
@@ -100902,6 +101577,31 @@
100902
101577
  "updatedAt"
100903
101578
  ]
100904
101579
  },
101580
+ "CustomReportSchedule": {
101581
+ "type": "object",
101582
+ "properties": {
101583
+ "scheduleExpression": {
101584
+ "type": "string",
101585
+ "nullable": true
101586
+ },
101587
+ "scheduleTimezone": {
101588
+ "type": "string",
101589
+ "nullable": true
101590
+ },
101591
+ "scheduleEmails": {
101592
+ "type": "array",
101593
+ "items": {
101594
+ "type": "string"
101595
+ },
101596
+ "nullable": true
101597
+ }
101598
+ },
101599
+ "required": [
101600
+ "scheduleExpression",
101601
+ "scheduleTimezone",
101602
+ "scheduleEmails"
101603
+ ]
101604
+ },
100905
101605
  "SearchField": {
100906
101606
  "type": "object",
100907
101607
  "properties": {
@@ -101586,6 +102286,7 @@
101586
102286
  "type": "string",
101587
102287
  "enum": [
101588
102288
  "PUBLIC",
102289
+ "PREVIEW",
101589
102290
  "RESTRICTED",
101590
102291
  "REGISTERED",
101591
102292
  "HIDDEN"
@@ -116991,6 +117692,26 @@
116991
117692
  }
116992
117693
  }
116993
117694
  },
117695
+ "CustomReportScheduleInputs": {
117696
+ "type": "object",
117697
+ "properties": {
117698
+ "scheduleExpression": {
117699
+ "type": "string",
117700
+ "nullable": true
117701
+ },
117702
+ "scheduleTimezone": {
117703
+ "type": "string",
117704
+ "nullable": true
117705
+ },
117706
+ "scheduleEmails": {
117707
+ "type": "array",
117708
+ "items": {
117709
+ "type": "string"
117710
+ },
117711
+ "nullable": true
117712
+ }
117713
+ }
117714
+ },
116994
117715
  "EventSectionCreateInputs": {
116995
117716
  "type": "object",
116996
117717
  "properties": {