@connectedxm/admin 6.8.9 → 6.9.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/openapi.json CHANGED
@@ -476,6 +476,10 @@
476
476
  "name": "Series",
477
477
  "description": "Operations for managing event series"
478
478
  },
479
+ {
480
+ "name": "Series::Registrations",
481
+ "description": "Manage account registrations for event series"
482
+ },
479
483
  {
480
484
  "name": "Sponsors",
481
485
  "description": "Operations for managing sponsorship levels"
@@ -35313,11 +35317,11 @@
35313
35317
  ]
35314
35318
  }
35315
35319
  },
35316
- "/events/{eventId}/sessions/{sessionId}/passTypes": {
35317
- "get": {
35318
- "operationId": "GetEventSessionPassTypes",
35319
- "summary": "Get Event Session Pass Types",
35320
- "description": "Get Event Session Pass Types endpoint",
35320
+ "/events/{eventId}/sessions/{sessionId}/clone": {
35321
+ "post": {
35322
+ "operationId": "CloneEventSession",
35323
+ "summary": "Clone Event Session",
35324
+ "description": "Clone Event Session endpoint",
35321
35325
  "parameters": [
35322
35326
  {
35323
35327
  "in": "path",
@@ -35336,49 +35340,18 @@
35336
35340
  },
35337
35341
  "description": "The session identifier",
35338
35342
  "required": true
35339
- },
35340
- {
35341
- "in": "query",
35342
- "name": "page",
35343
- "schema": {
35344
- "type": "integer",
35345
- "minimum": 1,
35346
- "default": 1
35347
- },
35348
- "description": "Page number",
35349
- "required": false
35350
- },
35351
- {
35352
- "in": "query",
35353
- "name": "pageSize",
35354
- "schema": {
35355
- "type": "integer",
35356
- "minimum": 1,
35357
- "maximum": 100,
35358
- "default": 25
35359
- },
35360
- "description": "Number of items per page",
35361
- "required": false
35362
- },
35363
- {
35364
- "in": "query",
35365
- "name": "orderBy",
35366
- "schema": {
35367
- "type": "string"
35368
- },
35369
- "description": "Field to order by",
35370
- "required": false
35371
- },
35372
- {
35373
- "in": "query",
35374
- "name": "search",
35375
- "schema": {
35376
- "type": "string"
35377
- },
35378
- "description": "Search query",
35379
- "required": false
35380
35343
  }
35381
35344
  ],
35345
+ "requestBody": {
35346
+ "required": true,
35347
+ "content": {
35348
+ "application/json": {
35349
+ "schema": {
35350
+ "$ref": "#/components/schemas/EventSessionCloneOptions"
35351
+ }
35352
+ }
35353
+ }
35354
+ },
35382
35355
  "responses": {
35383
35356
  "200": {
35384
35357
  "description": "Successful response",
@@ -35398,11 +35371,7 @@
35398
35371
  "example": "Success message."
35399
35372
  },
35400
35373
  "data": {
35401
- "type": "object"
35402
- },
35403
- "count": {
35404
- "type": "integer",
35405
- "example": 100
35374
+ "$ref": "#/components/schemas/EventSession"
35406
35375
  }
35407
35376
  },
35408
35377
  "required": [
@@ -35420,11 +35389,11 @@
35420
35389
  ]
35421
35390
  }
35422
35391
  },
35423
- "/events/{eventId}/sessions/{sessionId}/passTypes/{passTypeId}": {
35424
- "post": {
35425
- "operationId": "AddEventSessionPassType",
35426
- "summary": "Add Event Session Pass Type",
35427
- "description": "Add Event Session Pass Type endpoint",
35392
+ "/events/{eventId}/sessions/{sessionId}/passTypes": {
35393
+ "get": {
35394
+ "operationId": "GetEventSessionPassTypes",
35395
+ "summary": "Get Event Session Pass Types",
35396
+ "description": "Get Event Session Pass Types endpoint",
35428
35397
  "parameters": [
35429
35398
  {
35430
35399
  "in": "path",
@@ -35445,82 +35414,45 @@
35445
35414
  "required": true
35446
35415
  },
35447
35416
  {
35448
- "in": "path",
35449
- "name": "passTypeId",
35417
+ "in": "query",
35418
+ "name": "page",
35450
35419
  "schema": {
35451
- "type": "string"
35420
+ "type": "integer",
35421
+ "minimum": 1,
35422
+ "default": 1
35452
35423
  },
35453
- "description": "The passType identifier",
35454
- "required": true
35455
- }
35456
- ],
35457
- "responses": {
35458
- "200": {
35459
- "description": "Successful response",
35460
- "content": {
35461
- "application/json": {
35462
- "schema": {
35463
- "type": "object",
35464
- "properties": {
35465
- "status": {
35466
- "type": "string",
35467
- "enum": [
35468
- "ok"
35469
- ]
35470
- },
35471
- "message": {
35472
- "type": "string",
35473
- "example": "Success message."
35474
- },
35475
- "data": {
35476
- "type": "object"
35477
- }
35478
- },
35479
- "required": [
35480
- "status",
35481
- "message",
35482
- "data"
35483
- ]
35484
- }
35485
- }
35486
- }
35487
- }
35488
- },
35489
- "tags": [
35490
- "Events::Sessions"
35491
- ]
35492
- },
35493
- "delete": {
35494
- "operationId": "RemoveEventSessionPassType",
35495
- "summary": "Remove Event Session Pass Type",
35496
- "description": "Remove Event Session Pass Type endpoint",
35497
- "parameters": [
35424
+ "description": "Page number",
35425
+ "required": false
35426
+ },
35498
35427
  {
35499
- "in": "path",
35500
- "name": "eventId",
35428
+ "in": "query",
35429
+ "name": "pageSize",
35501
35430
  "schema": {
35502
- "type": "string"
35431
+ "type": "integer",
35432
+ "minimum": 1,
35433
+ "maximum": 100,
35434
+ "default": 25
35503
35435
  },
35504
- "description": "The event identifier",
35505
- "required": true
35436
+ "description": "Number of items per page",
35437
+ "required": false
35506
35438
  },
35507
35439
  {
35508
- "in": "path",
35509
- "name": "sessionId",
35440
+ "in": "query",
35441
+ "name": "orderBy",
35510
35442
  "schema": {
35511
35443
  "type": "string"
35512
35444
  },
35513
- "description": "The session identifier",
35514
- "required": true
35445
+ "description": "Field to order by",
35446
+ "required": false
35515
35447
  },
35516
35448
  {
35517
- "in": "path",
35518
- "name": "passTypeId",
35449
+ "in": "query",
35450
+ "name": "search",
35519
35451
  "schema": {
35520
35452
  "type": "string"
35521
35453
  },
35522
- "description": "The passType identifier",
35523
- "required": true
35454
+ "description": "Search query",
35455
+ "required": false
35524
35456
  }
35525
35457
  ],
35526
35458
  "responses": {
@@ -35543,6 +35475,10 @@
35543
35475
  },
35544
35476
  "data": {
35545
35477
  "type": "object"
35478
+ },
35479
+ "count": {
35480
+ "type": "integer",
35481
+ "example": 100
35546
35482
  }
35547
35483
  },
35548
35484
  "required": [
@@ -35560,80 +35496,11 @@
35560
35496
  ]
35561
35497
  }
35562
35498
  },
35563
- "/events/{eventId}/sessions/{sessionId}/passes/{passId}": {
35564
- "get": {
35565
- "operationId": "GetEventSessionAccess",
35566
- "summary": "Get Event Session Access",
35567
- "description": "Get Event Session Access endpoint",
35568
- "parameters": [
35569
- {
35570
- "in": "path",
35571
- "name": "eventId",
35572
- "schema": {
35573
- "type": "string"
35574
- },
35575
- "description": "The event identifier",
35576
- "required": true
35577
- },
35578
- {
35579
- "in": "path",
35580
- "name": "sessionId",
35581
- "schema": {
35582
- "type": "string"
35583
- },
35584
- "description": "The session identifier",
35585
- "required": true
35586
- },
35587
- {
35588
- "in": "path",
35589
- "name": "passId",
35590
- "schema": {
35591
- "type": "string"
35592
- },
35593
- "description": "The pass identifier",
35594
- "required": true
35595
- }
35596
- ],
35597
- "responses": {
35598
- "200": {
35599
- "description": "Successful response",
35600
- "content": {
35601
- "application/json": {
35602
- "schema": {
35603
- "type": "object",
35604
- "properties": {
35605
- "status": {
35606
- "type": "string",
35607
- "enum": [
35608
- "ok"
35609
- ]
35610
- },
35611
- "message": {
35612
- "type": "string",
35613
- "example": "Success message."
35614
- },
35615
- "data": {
35616
- "type": "object"
35617
- }
35618
- },
35619
- "required": [
35620
- "status",
35621
- "message",
35622
- "data"
35623
- ]
35624
- }
35625
- }
35626
- }
35627
- }
35628
- },
35629
- "tags": [
35630
- "Events::Sessions::Accesses"
35631
- ]
35632
- },
35499
+ "/events/{eventId}/sessions/{sessionId}/passTypes/{passTypeId}": {
35633
35500
  "post": {
35634
- "operationId": "CreateEventSessionAccess",
35635
- "summary": "Create Event Session Access",
35636
- "description": "Create Event Session Access endpoint",
35501
+ "operationId": "AddEventSessionPassType",
35502
+ "summary": "Add Event Session Pass Type",
35503
+ "description": "Add Event Session Pass Type endpoint",
35637
35504
  "parameters": [
35638
35505
  {
35639
35506
  "in": "path",
@@ -35655,11 +35522,11 @@
35655
35522
  },
35656
35523
  {
35657
35524
  "in": "path",
35658
- "name": "passId",
35525
+ "name": "passTypeId",
35659
35526
  "schema": {
35660
35527
  "type": "string"
35661
35528
  },
35662
- "description": "The pass identifier",
35529
+ "description": "The passType identifier",
35663
35530
  "required": true
35664
35531
  }
35665
35532
  ],
@@ -35696,13 +35563,13 @@
35696
35563
  }
35697
35564
  },
35698
35565
  "tags": [
35699
- "Events::Passes"
35566
+ "Events::Sessions"
35700
35567
  ]
35701
35568
  },
35702
- "put": {
35703
- "operationId": "UpdateEventSessionAccess",
35704
- "summary": "Update Event Session Access",
35705
- "description": "Update Event Session Access endpoint",
35569
+ "delete": {
35570
+ "operationId": "RemoveEventSessionPassType",
35571
+ "summary": "Remove Event Session Pass Type",
35572
+ "description": "Remove Event Session Pass Type endpoint",
35706
35573
  "parameters": [
35707
35574
  {
35708
35575
  "in": "path",
@@ -35724,24 +35591,14 @@
35724
35591
  },
35725
35592
  {
35726
35593
  "in": "path",
35727
- "name": "passId",
35594
+ "name": "passTypeId",
35728
35595
  "schema": {
35729
35596
  "type": "string"
35730
35597
  },
35731
- "description": "The pass identifier",
35598
+ "description": "The passType identifier",
35732
35599
  "required": true
35733
35600
  }
35734
35601
  ],
35735
- "requestBody": {
35736
- "required": true,
35737
- "content": {
35738
- "application/json": {
35739
- "schema": {
35740
- "$ref": "#/components/schemas/EventSessionAccessUpdateInputs"
35741
- }
35742
- }
35743
- }
35744
- },
35745
35602
  "responses": {
35746
35603
  "200": {
35747
35604
  "description": "Successful response",
@@ -35775,13 +35632,84 @@
35775
35632
  }
35776
35633
  },
35777
35634
  "tags": [
35778
- "Events::Passes"
35635
+ "Events::Sessions"
35636
+ ]
35637
+ }
35638
+ },
35639
+ "/events/{eventId}/sessions/{sessionId}/passes/{passId}": {
35640
+ "get": {
35641
+ "operationId": "GetEventSessionAccess",
35642
+ "summary": "Get Event Session Access",
35643
+ "description": "Get Event Session Access endpoint",
35644
+ "parameters": [
35645
+ {
35646
+ "in": "path",
35647
+ "name": "eventId",
35648
+ "schema": {
35649
+ "type": "string"
35650
+ },
35651
+ "description": "The event identifier",
35652
+ "required": true
35653
+ },
35654
+ {
35655
+ "in": "path",
35656
+ "name": "sessionId",
35657
+ "schema": {
35658
+ "type": "string"
35659
+ },
35660
+ "description": "The session identifier",
35661
+ "required": true
35662
+ },
35663
+ {
35664
+ "in": "path",
35665
+ "name": "passId",
35666
+ "schema": {
35667
+ "type": "string"
35668
+ },
35669
+ "description": "The pass identifier",
35670
+ "required": true
35671
+ }
35672
+ ],
35673
+ "responses": {
35674
+ "200": {
35675
+ "description": "Successful response",
35676
+ "content": {
35677
+ "application/json": {
35678
+ "schema": {
35679
+ "type": "object",
35680
+ "properties": {
35681
+ "status": {
35682
+ "type": "string",
35683
+ "enum": [
35684
+ "ok"
35685
+ ]
35686
+ },
35687
+ "message": {
35688
+ "type": "string",
35689
+ "example": "Success message."
35690
+ },
35691
+ "data": {
35692
+ "type": "object"
35693
+ }
35694
+ },
35695
+ "required": [
35696
+ "status",
35697
+ "message",
35698
+ "data"
35699
+ ]
35700
+ }
35701
+ }
35702
+ }
35703
+ }
35704
+ },
35705
+ "tags": [
35706
+ "Events::Sessions::Accesses"
35779
35707
  ]
35780
35708
  },
35781
- "delete": {
35782
- "operationId": "DeleteEventSessionAccess",
35783
- "summary": "Delete Event Session Access",
35784
- "description": "Delete Event Session Access endpoint",
35709
+ "post": {
35710
+ "operationId": "CreateEventSessionAccess",
35711
+ "summary": "Create Event Session Access",
35712
+ "description": "Create Event Session Access endpoint",
35785
35713
  "parameters": [
35786
35714
  {
35787
35715
  "in": "path",
@@ -35830,7 +35758,7 @@
35830
35758
  "example": "Success message."
35831
35759
  },
35832
35760
  "data": {
35833
- "nullable": true
35761
+ "type": "object"
35834
35762
  }
35835
35763
  },
35836
35764
  "required": [
@@ -35846,13 +35774,11 @@
35846
35774
  "tags": [
35847
35775
  "Events::Passes"
35848
35776
  ]
35849
- }
35850
- },
35851
- "/events/{eventId}/sessions/{sessionId}/passes/{passId}/responses": {
35777
+ },
35852
35778
  "put": {
35853
- "operationId": "UpdateEventSessionAccessResponses",
35854
- "summary": "Update Event Session Access Responses",
35855
- "description": "Update Event Session Access Responses endpoint",
35779
+ "operationId": "UpdateEventSessionAccess",
35780
+ "summary": "Update Event Session Access",
35781
+ "description": "Update Event Session Access endpoint",
35856
35782
  "parameters": [
35857
35783
  {
35858
35784
  "in": "path",
@@ -35887,10 +35813,7 @@
35887
35813
  "content": {
35888
35814
  "application/json": {
35889
35815
  "schema": {
35890
- "type": "array",
35891
- "items": {
35892
- "type": "object"
35893
- }
35816
+ "$ref": "#/components/schemas/EventSessionAccessUpdateInputs"
35894
35817
  }
35895
35818
  }
35896
35819
  }
@@ -35930,13 +35853,11 @@
35930
35853
  "tags": [
35931
35854
  "Events::Passes"
35932
35855
  ]
35933
- }
35934
- },
35935
- "/events/{eventId}/sessions/{sessionId}/passes/{passId}/responses/{questionId}/changes": {
35936
- "get": {
35937
- "operationId": "GetEventSessionAccessResponseChanges",
35938
- "summary": "Get Event Session Access Response Changes",
35939
- "description": "Get Event Session Access Response Changes endpoint",
35856
+ },
35857
+ "delete": {
35858
+ "operationId": "DeleteEventSessionAccess",
35859
+ "summary": "Delete Event Session Access",
35860
+ "description": "Delete Event Session Access endpoint",
35940
35861
  "parameters": [
35941
35862
  {
35942
35863
  "in": "path",
@@ -35964,58 +35885,92 @@
35964
35885
  },
35965
35886
  "description": "The pass identifier",
35966
35887
  "required": true
35967
- },
35888
+ }
35889
+ ],
35890
+ "responses": {
35891
+ "200": {
35892
+ "description": "Successful response",
35893
+ "content": {
35894
+ "application/json": {
35895
+ "schema": {
35896
+ "type": "object",
35897
+ "properties": {
35898
+ "status": {
35899
+ "type": "string",
35900
+ "enum": [
35901
+ "ok"
35902
+ ]
35903
+ },
35904
+ "message": {
35905
+ "type": "string",
35906
+ "example": "Success message."
35907
+ },
35908
+ "data": {
35909
+ "nullable": true
35910
+ }
35911
+ },
35912
+ "required": [
35913
+ "status",
35914
+ "message",
35915
+ "data"
35916
+ ]
35917
+ }
35918
+ }
35919
+ }
35920
+ }
35921
+ },
35922
+ "tags": [
35923
+ "Events::Passes"
35924
+ ]
35925
+ }
35926
+ },
35927
+ "/events/{eventId}/sessions/{sessionId}/passes/{passId}/responses": {
35928
+ "put": {
35929
+ "operationId": "UpdateEventSessionAccessResponses",
35930
+ "summary": "Update Event Session Access Responses",
35931
+ "description": "Update Event Session Access Responses endpoint",
35932
+ "parameters": [
35968
35933
  {
35969
35934
  "in": "path",
35970
- "name": "questionId",
35935
+ "name": "eventId",
35971
35936
  "schema": {
35972
35937
  "type": "string"
35973
35938
  },
35974
- "description": "The question identifier",
35939
+ "description": "The event identifier",
35975
35940
  "required": true
35976
35941
  },
35977
35942
  {
35978
- "in": "query",
35979
- "name": "page",
35980
- "schema": {
35981
- "type": "integer",
35982
- "minimum": 1,
35983
- "default": 1
35984
- },
35985
- "description": "Page number",
35986
- "required": false
35987
- },
35988
- {
35989
- "in": "query",
35990
- "name": "pageSize",
35991
- "schema": {
35992
- "type": "integer",
35993
- "minimum": 1,
35994
- "maximum": 100,
35995
- "default": 25
35996
- },
35997
- "description": "Number of items per page",
35998
- "required": false
35999
- },
36000
- {
36001
- "in": "query",
36002
- "name": "orderBy",
35943
+ "in": "path",
35944
+ "name": "sessionId",
36003
35945
  "schema": {
36004
35946
  "type": "string"
36005
35947
  },
36006
- "description": "Field to order by",
36007
- "required": false
35948
+ "description": "The session identifier",
35949
+ "required": true
36008
35950
  },
36009
35951
  {
36010
- "in": "query",
36011
- "name": "search",
35952
+ "in": "path",
35953
+ "name": "passId",
36012
35954
  "schema": {
36013
35955
  "type": "string"
36014
35956
  },
36015
- "description": "Search query",
36016
- "required": false
35957
+ "description": "The pass identifier",
35958
+ "required": true
36017
35959
  }
36018
35960
  ],
35961
+ "requestBody": {
35962
+ "required": true,
35963
+ "content": {
35964
+ "application/json": {
35965
+ "schema": {
35966
+ "type": "array",
35967
+ "items": {
35968
+ "type": "object"
35969
+ }
35970
+ }
35971
+ }
35972
+ }
35973
+ },
36019
35974
  "responses": {
36020
35975
  "200": {
36021
35976
  "description": "Successful response",
@@ -36036,10 +35991,6 @@
36036
35991
  },
36037
35992
  "data": {
36038
35993
  "type": "object"
36039
- },
36040
- "count": {
36041
- "type": "integer",
36042
- "example": 100
36043
35994
  }
36044
35995
  },
36045
35996
  "required": [
@@ -36053,15 +36004,15 @@
36053
36004
  }
36054
36005
  },
36055
36006
  "tags": [
36056
- "Events::Sessions::Accesses"
36007
+ "Events::Passes"
36057
36008
  ]
36058
36009
  }
36059
36010
  },
36060
- "/events/{eventId}/sessions/{sessionId}/passes/{passId}/sections": {
36011
+ "/events/{eventId}/sessions/{sessionId}/passes/{passId}/responses/{questionId}/changes": {
36061
36012
  "get": {
36062
- "operationId": "GetEventSessionAccessQuestionSections",
36063
- "summary": "Get Event Session Access Question Sections",
36064
- "description": "Get Event Session Access Question Sections endpoint",
36013
+ "operationId": "GetEventSessionAccessResponseChanges",
36014
+ "summary": "Get Event Session Access Response Changes",
36015
+ "description": "Get Event Session Access Response Changes endpoint",
36065
36016
  "parameters": [
36066
36017
  {
36067
36018
  "in": "path",
@@ -36090,6 +36041,15 @@
36090
36041
  "description": "The pass identifier",
36091
36042
  "required": true
36092
36043
  },
36044
+ {
36045
+ "in": "path",
36046
+ "name": "questionId",
36047
+ "schema": {
36048
+ "type": "string"
36049
+ },
36050
+ "description": "The question identifier",
36051
+ "required": true
36052
+ },
36093
36053
  {
36094
36054
  "in": "query",
36095
36055
  "name": "page",
@@ -36173,11 +36133,11 @@
36173
36133
  ]
36174
36134
  }
36175
36135
  },
36176
- "/events/{eventId}/sessions/{sessionId}/payments": {
36136
+ "/events/{eventId}/sessions/{sessionId}/passes/{passId}/sections": {
36177
36137
  "get": {
36178
- "operationId": "GetEventSessionPayments",
36179
- "summary": "Get Event Session Payments",
36180
- "description": "Get Event Session Payments endpoint",
36138
+ "operationId": "GetEventSessionAccessQuestionSections",
36139
+ "summary": "Get Event Session Access Question Sections",
36140
+ "description": "Get Event Session Access Question Sections endpoint",
36181
36141
  "parameters": [
36182
36142
  {
36183
36143
  "in": "path",
@@ -36197,6 +36157,15 @@
36197
36157
  "description": "The session identifier",
36198
36158
  "required": true
36199
36159
  },
36160
+ {
36161
+ "in": "path",
36162
+ "name": "passId",
36163
+ "schema": {
36164
+ "type": "string"
36165
+ },
36166
+ "description": "The pass identifier",
36167
+ "required": true
36168
+ },
36200
36169
  {
36201
36170
  "in": "query",
36202
36171
  "name": "page",
@@ -36258,10 +36227,7 @@
36258
36227
  "example": "Success message."
36259
36228
  },
36260
36229
  "data": {
36261
- "type": "array",
36262
- "items": {
36263
- "$ref": "#/components/schemas/Payment"
36264
- }
36230
+ "type": "object"
36265
36231
  },
36266
36232
  "count": {
36267
36233
  "type": "integer",
@@ -36279,15 +36245,125 @@
36279
36245
  }
36280
36246
  },
36281
36247
  "tags": [
36282
- "Events::Sessions"
36248
+ "Events::Sessions::Accesses"
36283
36249
  ]
36284
36250
  }
36285
36251
  },
36286
- "/events/{eventId}/sessions/{sessionId}/questions": {
36252
+ "/events/{eventId}/sessions/{sessionId}/payments": {
36287
36253
  "get": {
36288
- "operationId": "GetEventSessionQuestions",
36289
- "summary": "Get Event Session Questions",
36290
- "description": "Get Event Session Questions endpoint",
36254
+ "operationId": "GetEventSessionPayments",
36255
+ "summary": "Get Event Session Payments",
36256
+ "description": "Get Event Session Payments endpoint",
36257
+ "parameters": [
36258
+ {
36259
+ "in": "path",
36260
+ "name": "eventId",
36261
+ "schema": {
36262
+ "type": "string"
36263
+ },
36264
+ "description": "The event identifier",
36265
+ "required": true
36266
+ },
36267
+ {
36268
+ "in": "path",
36269
+ "name": "sessionId",
36270
+ "schema": {
36271
+ "type": "string"
36272
+ },
36273
+ "description": "The session identifier",
36274
+ "required": true
36275
+ },
36276
+ {
36277
+ "in": "query",
36278
+ "name": "page",
36279
+ "schema": {
36280
+ "type": "integer",
36281
+ "minimum": 1,
36282
+ "default": 1
36283
+ },
36284
+ "description": "Page number",
36285
+ "required": false
36286
+ },
36287
+ {
36288
+ "in": "query",
36289
+ "name": "pageSize",
36290
+ "schema": {
36291
+ "type": "integer",
36292
+ "minimum": 1,
36293
+ "maximum": 100,
36294
+ "default": 25
36295
+ },
36296
+ "description": "Number of items per page",
36297
+ "required": false
36298
+ },
36299
+ {
36300
+ "in": "query",
36301
+ "name": "orderBy",
36302
+ "schema": {
36303
+ "type": "string"
36304
+ },
36305
+ "description": "Field to order by",
36306
+ "required": false
36307
+ },
36308
+ {
36309
+ "in": "query",
36310
+ "name": "search",
36311
+ "schema": {
36312
+ "type": "string"
36313
+ },
36314
+ "description": "Search query",
36315
+ "required": false
36316
+ }
36317
+ ],
36318
+ "responses": {
36319
+ "200": {
36320
+ "description": "Successful response",
36321
+ "content": {
36322
+ "application/json": {
36323
+ "schema": {
36324
+ "type": "object",
36325
+ "properties": {
36326
+ "status": {
36327
+ "type": "string",
36328
+ "enum": [
36329
+ "ok"
36330
+ ]
36331
+ },
36332
+ "message": {
36333
+ "type": "string",
36334
+ "example": "Success message."
36335
+ },
36336
+ "data": {
36337
+ "type": "array",
36338
+ "items": {
36339
+ "$ref": "#/components/schemas/Payment"
36340
+ }
36341
+ },
36342
+ "count": {
36343
+ "type": "integer",
36344
+ "example": 100
36345
+ }
36346
+ },
36347
+ "required": [
36348
+ "status",
36349
+ "message",
36350
+ "data"
36351
+ ]
36352
+ }
36353
+ }
36354
+ }
36355
+ }
36356
+ },
36357
+ "tags": [
36358
+ "Events::Sessions"
36359
+ ]
36360
+ }
36361
+ },
36362
+ "/events/{eventId}/sessions/{sessionId}/questions": {
36363
+ "get": {
36364
+ "operationId": "GetEventSessionQuestions",
36365
+ "summary": "Get Event Session Questions",
36366
+ "description": "Get Event Session Questions endpoint",
36291
36367
  "parameters": [
36292
36368
  {
36293
36369
  "in": "path",
@@ -61112,7 +61188,481 @@
61112
61188
  "example": "Success message."
61113
61189
  },
61114
61190
  "data": {
61115
- "nullable": true
61191
+ "nullable": true
61192
+ }
61193
+ },
61194
+ "required": [
61195
+ "status",
61196
+ "message",
61197
+ "data"
61198
+ ]
61199
+ }
61200
+ }
61201
+ }
61202
+ }
61203
+ },
61204
+ "tags": [
61205
+ "Self::Apikeys"
61206
+ ]
61207
+ }
61208
+ },
61209
+ "/self/image": {
61210
+ "put": {
61211
+ "operationId": "UpdateUserImage",
61212
+ "summary": "Update User Image",
61213
+ "description": "Update User Image endpoint",
61214
+ "requestBody": {
61215
+ "required": true,
61216
+ "content": {
61217
+ "application/json": {
61218
+ "schema": {
61219
+ "$ref": "#/components/schemas/UserImageUpdateInputs"
61220
+ }
61221
+ }
61222
+ }
61223
+ },
61224
+ "responses": {
61225
+ "200": {
61226
+ "description": "Successful response",
61227
+ "content": {
61228
+ "application/json": {
61229
+ "schema": {
61230
+ "type": "object",
61231
+ "properties": {
61232
+ "status": {
61233
+ "type": "string",
61234
+ "enum": [
61235
+ "ok"
61236
+ ]
61237
+ },
61238
+ "message": {
61239
+ "type": "string",
61240
+ "example": "Success message."
61241
+ },
61242
+ "data": {
61243
+ "$ref": "#/components/schemas/User"
61244
+ }
61245
+ },
61246
+ "required": [
61247
+ "status",
61248
+ "message",
61249
+ "data"
61250
+ ]
61251
+ }
61252
+ }
61253
+ }
61254
+ }
61255
+ },
61256
+ "tags": [
61257
+ "Self::Images"
61258
+ ]
61259
+ },
61260
+ "delete": {
61261
+ "operationId": "DeleteUserImage",
61262
+ "summary": "Delete User Image",
61263
+ "description": "Delete User Image endpoint",
61264
+ "responses": {
61265
+ "200": {
61266
+ "description": "Successful response",
61267
+ "content": {
61268
+ "application/json": {
61269
+ "schema": {
61270
+ "type": "object",
61271
+ "properties": {
61272
+ "status": {
61273
+ "type": "string",
61274
+ "enum": [
61275
+ "ok"
61276
+ ]
61277
+ },
61278
+ "message": {
61279
+ "type": "string",
61280
+ "example": "Success message."
61281
+ },
61282
+ "data": {
61283
+ "$ref": "#/components/schemas/User"
61284
+ }
61285
+ },
61286
+ "required": [
61287
+ "status",
61288
+ "message",
61289
+ "data"
61290
+ ]
61291
+ }
61292
+ }
61293
+ }
61294
+ }
61295
+ },
61296
+ "tags": [
61297
+ "Self::Images"
61298
+ ]
61299
+ }
61300
+ },
61301
+ "/self/organization-membership": {
61302
+ "get": {
61303
+ "operationId": "GetSelfOrgMembership",
61304
+ "summary": "Get Self Org Membership",
61305
+ "description": "Get Self Org Membership endpoint",
61306
+ "responses": {
61307
+ "200": {
61308
+ "description": "Successful response",
61309
+ "content": {
61310
+ "application/json": {
61311
+ "schema": {
61312
+ "type": "object",
61313
+ "properties": {
61314
+ "status": {
61315
+ "type": "string",
61316
+ "enum": [
61317
+ "ok"
61318
+ ]
61319
+ },
61320
+ "message": {
61321
+ "type": "string",
61322
+ "example": "Success message."
61323
+ },
61324
+ "data": {
61325
+ "type": "object"
61326
+ }
61327
+ },
61328
+ "required": [
61329
+ "status",
61330
+ "message",
61331
+ "data"
61332
+ ]
61333
+ }
61334
+ }
61335
+ }
61336
+ }
61337
+ },
61338
+ "tags": [
61339
+ "Self"
61340
+ ]
61341
+ }
61342
+ },
61343
+ "/self/organizations": {
61344
+ "get": {
61345
+ "operationId": "GetSelfOrganizations",
61346
+ "summary": "Get Self Organizations",
61347
+ "description": "Get Self Organizations endpoint",
61348
+ "parameters": [
61349
+ {
61350
+ "in": "query",
61351
+ "name": "page",
61352
+ "schema": {
61353
+ "type": "integer",
61354
+ "minimum": 1,
61355
+ "default": 1
61356
+ },
61357
+ "description": "Page number",
61358
+ "required": false
61359
+ },
61360
+ {
61361
+ "in": "query",
61362
+ "name": "pageSize",
61363
+ "schema": {
61364
+ "type": "integer",
61365
+ "minimum": 1,
61366
+ "maximum": 100,
61367
+ "default": 25
61368
+ },
61369
+ "description": "Number of items per page",
61370
+ "required": false
61371
+ },
61372
+ {
61373
+ "in": "query",
61374
+ "name": "orderBy",
61375
+ "schema": {
61376
+ "type": "string"
61377
+ },
61378
+ "description": "Field to order by",
61379
+ "required": false
61380
+ },
61381
+ {
61382
+ "in": "query",
61383
+ "name": "search",
61384
+ "schema": {
61385
+ "type": "string"
61386
+ },
61387
+ "description": "Search query",
61388
+ "required": false
61389
+ }
61390
+ ],
61391
+ "responses": {
61392
+ "200": {
61393
+ "description": "Successful response",
61394
+ "content": {
61395
+ "application/json": {
61396
+ "schema": {
61397
+ "type": "object",
61398
+ "properties": {
61399
+ "status": {
61400
+ "type": "string",
61401
+ "enum": [
61402
+ "ok"
61403
+ ]
61404
+ },
61405
+ "message": {
61406
+ "type": "string",
61407
+ "example": "Success message."
61408
+ },
61409
+ "data": {
61410
+ "type": "array",
61411
+ "items": {
61412
+ "$ref": "#/components/schemas/Organization"
61413
+ }
61414
+ },
61415
+ "count": {
61416
+ "type": "integer",
61417
+ "example": 100
61418
+ }
61419
+ },
61420
+ "required": [
61421
+ "status",
61422
+ "message",
61423
+ "data"
61424
+ ]
61425
+ }
61426
+ }
61427
+ }
61428
+ }
61429
+ },
61430
+ "tags": [
61431
+ "Self"
61432
+ ]
61433
+ }
61434
+ },
61435
+ "/self/organizations/{organizationId}": {
61436
+ "delete": {
61437
+ "operationId": "SelfLeaveOrganization",
61438
+ "summary": "Self Leave Organization",
61439
+ "description": "Self Leave Organization endpoint",
61440
+ "parameters": [
61441
+ {
61442
+ "in": "path",
61443
+ "name": "organizationId",
61444
+ "schema": {
61445
+ "type": "string"
61446
+ },
61447
+ "description": "The organization identifier",
61448
+ "required": true
61449
+ }
61450
+ ],
61451
+ "responses": {
61452
+ "200": {
61453
+ "description": "Successful response",
61454
+ "content": {
61455
+ "application/json": {
61456
+ "schema": {
61457
+ "type": "object",
61458
+ "properties": {
61459
+ "status": {
61460
+ "type": "string",
61461
+ "enum": [
61462
+ "ok"
61463
+ ]
61464
+ },
61465
+ "message": {
61466
+ "type": "string",
61467
+ "example": "Success message."
61468
+ },
61469
+ "data": {
61470
+ "$ref": "#/components/schemas/User"
61471
+ }
61472
+ },
61473
+ "required": [
61474
+ "status",
61475
+ "message",
61476
+ "data"
61477
+ ]
61478
+ }
61479
+ }
61480
+ }
61481
+ }
61482
+ },
61483
+ "tags": [
61484
+ "Self"
61485
+ ]
61486
+ }
61487
+ },
61488
+ "/series": {
61489
+ "get": {
61490
+ "operationId": "GetSeriesList",
61491
+ "summary": "Get Series List",
61492
+ "description": "Get Series List endpoint",
61493
+ "parameters": [
61494
+ {
61495
+ "in": "query",
61496
+ "name": "page",
61497
+ "schema": {
61498
+ "type": "integer",
61499
+ "minimum": 1,
61500
+ "default": 1
61501
+ },
61502
+ "description": "Page number",
61503
+ "required": false
61504
+ },
61505
+ {
61506
+ "in": "query",
61507
+ "name": "pageSize",
61508
+ "schema": {
61509
+ "type": "integer",
61510
+ "minimum": 1,
61511
+ "maximum": 100,
61512
+ "default": 25
61513
+ },
61514
+ "description": "Number of items per page",
61515
+ "required": false
61516
+ },
61517
+ {
61518
+ "in": "query",
61519
+ "name": "orderBy",
61520
+ "schema": {
61521
+ "type": "string"
61522
+ },
61523
+ "description": "Field to order by",
61524
+ "required": false
61525
+ },
61526
+ {
61527
+ "in": "query",
61528
+ "name": "search",
61529
+ "schema": {
61530
+ "type": "string"
61531
+ },
61532
+ "description": "Search query",
61533
+ "required": false
61534
+ }
61535
+ ],
61536
+ "responses": {
61537
+ "200": {
61538
+ "description": "Successful response",
61539
+ "content": {
61540
+ "application/json": {
61541
+ "schema": {
61542
+ "type": "object",
61543
+ "properties": {
61544
+ "status": {
61545
+ "type": "string",
61546
+ "enum": [
61547
+ "ok"
61548
+ ]
61549
+ },
61550
+ "message": {
61551
+ "type": "string",
61552
+ "example": "Success message."
61553
+ },
61554
+ "data": {
61555
+ "type": "array",
61556
+ "items": {
61557
+ "$ref": "#/components/schemas/Series"
61558
+ }
61559
+ },
61560
+ "count": {
61561
+ "type": "integer",
61562
+ "example": 100
61563
+ }
61564
+ },
61565
+ "required": [
61566
+ "status",
61567
+ "message",
61568
+ "data"
61569
+ ]
61570
+ }
61571
+ }
61572
+ }
61573
+ }
61574
+ },
61575
+ "tags": [
61576
+ "Series"
61577
+ ]
61578
+ },
61579
+ "post": {
61580
+ "operationId": "CreateSeries",
61581
+ "summary": "Create Series",
61582
+ "description": "Create Series endpoint",
61583
+ "requestBody": {
61584
+ "required": true,
61585
+ "content": {
61586
+ "application/json": {
61587
+ "schema": {
61588
+ "$ref": "#/components/schemas/SeriesCreateInputs"
61589
+ }
61590
+ }
61591
+ }
61592
+ },
61593
+ "responses": {
61594
+ "200": {
61595
+ "description": "Successful response",
61596
+ "content": {
61597
+ "application/json": {
61598
+ "schema": {
61599
+ "type": "object",
61600
+ "properties": {
61601
+ "status": {
61602
+ "type": "string",
61603
+ "enum": [
61604
+ "ok"
61605
+ ]
61606
+ },
61607
+ "message": {
61608
+ "type": "string",
61609
+ "example": "Success message."
61610
+ },
61611
+ "data": {
61612
+ "$ref": "#/components/schemas/Series"
61613
+ }
61614
+ },
61615
+ "required": [
61616
+ "status",
61617
+ "message",
61618
+ "data"
61619
+ ]
61620
+ }
61621
+ }
61622
+ }
61623
+ }
61624
+ },
61625
+ "tags": [
61626
+ "Series"
61627
+ ]
61628
+ }
61629
+ },
61630
+ "/series/{seriesId}": {
61631
+ "get": {
61632
+ "operationId": "GetSeries",
61633
+ "summary": "Get Series",
61634
+ "description": "Get Series endpoint",
61635
+ "parameters": [
61636
+ {
61637
+ "in": "path",
61638
+ "name": "seriesId",
61639
+ "schema": {
61640
+ "type": "string"
61641
+ },
61642
+ "description": "The series identifier",
61643
+ "required": true
61644
+ }
61645
+ ],
61646
+ "responses": {
61647
+ "200": {
61648
+ "description": "Successful response",
61649
+ "content": {
61650
+ "application/json": {
61651
+ "schema": {
61652
+ "type": "object",
61653
+ "properties": {
61654
+ "status": {
61655
+ "type": "string",
61656
+ "enum": [
61657
+ "ok"
61658
+ ]
61659
+ },
61660
+ "message": {
61661
+ "type": "string",
61662
+ "example": "Success message."
61663
+ },
61664
+ "data": {
61665
+ "$ref": "#/components/schemas/Series"
61116
61666
  }
61117
61667
  },
61118
61668
  "required": [
@@ -61126,25 +61676,33 @@
61126
61676
  }
61127
61677
  },
61128
61678
  "tags": [
61129
- "Self::Apikeys"
61679
+ "Series"
61130
61680
  ]
61131
- }
61132
- },
61133
- "/self/image": {
61681
+ },
61134
61682
  "put": {
61135
- "operationId": "UpdateUserImage",
61136
- "summary": "Update User Image",
61137
- "description": "Update User Image endpoint",
61138
- "requestBody": {
61139
- "required": true,
61140
- "content": {
61141
- "application/json": {
61142
- "schema": {
61143
- "$ref": "#/components/schemas/UserImageUpdateInputs"
61144
- }
61145
- }
61683
+ "operationId": "UpdateSeries",
61684
+ "summary": "Update Series",
61685
+ "description": "Update Series endpoint",
61686
+ "parameters": [
61687
+ {
61688
+ "in": "path",
61689
+ "name": "seriesId",
61690
+ "schema": {
61691
+ "type": "string"
61692
+ },
61693
+ "description": "The series identifier",
61694
+ "required": true
61695
+ },
61696
+ {
61697
+ "in": "query",
61698
+ "name": "series",
61699
+ "schema": {
61700
+ "$ref": "#/components/schemas/SeriesUpdateInputs"
61701
+ },
61702
+ "description": "Filter by series",
61703
+ "required": true
61146
61704
  }
61147
- },
61705
+ ],
61148
61706
  "responses": {
61149
61707
  "200": {
61150
61708
  "description": "Successful response",
@@ -61164,7 +61722,7 @@
61164
61722
  "example": "Success message."
61165
61723
  },
61166
61724
  "data": {
61167
- "$ref": "#/components/schemas/User"
61725
+ "$ref": "#/components/schemas/Series"
61168
61726
  }
61169
61727
  },
61170
61728
  "required": [
@@ -61178,55 +61736,24 @@
61178
61736
  }
61179
61737
  },
61180
61738
  "tags": [
61181
- "Self::Images"
61739
+ "Series"
61182
61740
  ]
61183
61741
  },
61184
61742
  "delete": {
61185
- "operationId": "DeleteUserImage",
61186
- "summary": "Delete User Image",
61187
- "description": "Delete User Image endpoint",
61188
- "responses": {
61189
- "200": {
61190
- "description": "Successful response",
61191
- "content": {
61192
- "application/json": {
61193
- "schema": {
61194
- "type": "object",
61195
- "properties": {
61196
- "status": {
61197
- "type": "string",
61198
- "enum": [
61199
- "ok"
61200
- ]
61201
- },
61202
- "message": {
61203
- "type": "string",
61204
- "example": "Success message."
61205
- },
61206
- "data": {
61207
- "$ref": "#/components/schemas/User"
61208
- }
61209
- },
61210
- "required": [
61211
- "status",
61212
- "message",
61213
- "data"
61214
- ]
61215
- }
61216
- }
61217
- }
61743
+ "operationId": "DeleteSeries",
61744
+ "summary": "Delete Series",
61745
+ "description": "Delete Series endpoint",
61746
+ "parameters": [
61747
+ {
61748
+ "in": "path",
61749
+ "name": "seriesId",
61750
+ "schema": {
61751
+ "type": "string"
61752
+ },
61753
+ "description": "The series identifier",
61754
+ "required": true
61218
61755
  }
61219
- },
61220
- "tags": [
61221
- "Self::Images"
61222
- ]
61223
- }
61224
- },
61225
- "/self/organization-membership": {
61226
- "get": {
61227
- "operationId": "GetSelfOrgMembership",
61228
- "summary": "Get Self Org Membership",
61229
- "description": "Get Self Org Membership endpoint",
61756
+ ],
61230
61757
  "responses": {
61231
61758
  "200": {
61232
61759
  "description": "Successful response",
@@ -61246,7 +61773,7 @@
61246
61773
  "example": "Success message."
61247
61774
  },
61248
61775
  "data": {
61249
- "type": "object"
61776
+ "nullable": true
61250
61777
  }
61251
61778
  },
61252
61779
  "required": [
@@ -61260,16 +61787,25 @@
61260
61787
  }
61261
61788
  },
61262
61789
  "tags": [
61263
- "Self"
61790
+ "Series"
61264
61791
  ]
61265
61792
  }
61266
61793
  },
61267
- "/self/organizations": {
61794
+ "/series/{seriesId}/events": {
61268
61795
  "get": {
61269
- "operationId": "GetSelfOrganizations",
61270
- "summary": "Get Self Organizations",
61271
- "description": "Get Self Organizations endpoint",
61796
+ "operationId": "GetSeriesEvents",
61797
+ "summary": "Get Series Events",
61798
+ "description": "Get Series Events endpoint",
61272
61799
  "parameters": [
61800
+ {
61801
+ "in": "path",
61802
+ "name": "seriesId",
61803
+ "schema": {
61804
+ "type": "string"
61805
+ },
61806
+ "description": "The series identifier",
61807
+ "required": true
61808
+ },
61273
61809
  {
61274
61810
  "in": "query",
61275
61811
  "name": "page",
@@ -61333,7 +61869,7 @@
61333
61869
  "data": {
61334
61870
  "type": "array",
61335
61871
  "items": {
61336
- "$ref": "#/components/schemas/Organization"
61872
+ "$ref": "#/components/schemas/Event"
61337
61873
  }
61338
61874
  },
61339
61875
  "count": {
@@ -61352,23 +61888,92 @@
61352
61888
  }
61353
61889
  },
61354
61890
  "tags": [
61355
- "Self"
61891
+ "Series"
61356
61892
  ]
61357
61893
  }
61358
61894
  },
61359
- "/self/organizations/{organizationId}": {
61895
+ "/series/{seriesId}/events/{eventId}": {
61896
+ "post": {
61897
+ "operationId": "AddSeriesEvent",
61898
+ "summary": "Add Series Event",
61899
+ "description": "Add Series Event endpoint",
61900
+ "parameters": [
61901
+ {
61902
+ "in": "path",
61903
+ "name": "seriesId",
61904
+ "schema": {
61905
+ "type": "string"
61906
+ },
61907
+ "description": "The series identifier",
61908
+ "required": true
61909
+ },
61910
+ {
61911
+ "in": "path",
61912
+ "name": "eventId",
61913
+ "schema": {
61914
+ "type": "string"
61915
+ },
61916
+ "description": "The event identifier",
61917
+ "required": true
61918
+ }
61919
+ ],
61920
+ "responses": {
61921
+ "200": {
61922
+ "description": "Successful response",
61923
+ "content": {
61924
+ "application/json": {
61925
+ "schema": {
61926
+ "type": "object",
61927
+ "properties": {
61928
+ "status": {
61929
+ "type": "string",
61930
+ "enum": [
61931
+ "ok"
61932
+ ]
61933
+ },
61934
+ "message": {
61935
+ "type": "string",
61936
+ "example": "Success message."
61937
+ },
61938
+ "data": {
61939
+ "$ref": "#/components/schemas/Series"
61940
+ }
61941
+ },
61942
+ "required": [
61943
+ "status",
61944
+ "message",
61945
+ "data"
61946
+ ]
61947
+ }
61948
+ }
61949
+ }
61950
+ }
61951
+ },
61952
+ "tags": [
61953
+ "Series"
61954
+ ]
61955
+ },
61360
61956
  "delete": {
61361
- "operationId": "SelfLeaveOrganization",
61362
- "summary": "Self Leave Organization",
61363
- "description": "Self Leave Organization endpoint",
61957
+ "operationId": "RemoveSeriesEvent",
61958
+ "summary": "Remove Series Event",
61959
+ "description": "Remove Series Event endpoint",
61364
61960
  "parameters": [
61365
61961
  {
61366
61962
  "in": "path",
61367
- "name": "organizationId",
61963
+ "name": "seriesId",
61368
61964
  "schema": {
61369
61965
  "type": "string"
61370
61966
  },
61371
- "description": "The organization identifier",
61967
+ "description": "The series identifier",
61968
+ "required": true
61969
+ },
61970
+ {
61971
+ "in": "path",
61972
+ "name": "eventId",
61973
+ "schema": {
61974
+ "type": "string"
61975
+ },
61976
+ "description": "The event identifier",
61372
61977
  "required": true
61373
61978
  }
61374
61979
  ],
@@ -61391,7 +61996,7 @@
61391
61996
  "example": "Success message."
61392
61997
  },
61393
61998
  "data": {
61394
- "$ref": "#/components/schemas/User"
61999
+ "$ref": "#/components/schemas/Series"
61395
62000
  }
61396
62001
  },
61397
62002
  "required": [
@@ -61405,16 +62010,34 @@
61405
62010
  }
61406
62011
  },
61407
62012
  "tags": [
61408
- "Self"
62013
+ "Series"
61409
62014
  ]
61410
62015
  }
61411
62016
  },
61412
- "/series": {
62017
+ "/series/{seriesId}/registrations": {
61413
62018
  "get": {
61414
- "operationId": "GetSeriesList",
61415
- "summary": "Get Series List",
61416
- "description": "Get Series List endpoint",
62019
+ "operationId": "GetSeriesRegistrations",
62020
+ "summary": "Get Series Registrations",
62021
+ "description": "Get Series Registrations endpoint",
61417
62022
  "parameters": [
62023
+ {
62024
+ "in": "path",
62025
+ "name": "seriesId",
62026
+ "schema": {
62027
+ "type": "string"
62028
+ },
62029
+ "description": "The series identifier",
62030
+ "required": true
62031
+ },
62032
+ {
62033
+ "in": "query",
62034
+ "name": "status",
62035
+ "schema": {
62036
+ "$ref": "#/components/schemas/PurchaseStatus"
62037
+ },
62038
+ "description": "Filter by status",
62039
+ "required": false
62040
+ },
61418
62041
  {
61419
62042
  "in": "query",
61420
62043
  "name": "page",
@@ -61476,10 +62099,7 @@
61476
62099
  "example": "Success message."
61477
62100
  },
61478
62101
  "data": {
61479
- "type": "array",
61480
- "items": {
61481
- "$ref": "#/components/schemas/Series"
61482
- }
62102
+ "type": "object"
61483
62103
  },
61484
62104
  "count": {
61485
62105
  "type": "integer",
@@ -61497,19 +62117,30 @@
61497
62117
  }
61498
62118
  },
61499
62119
  "tags": [
61500
- "Series"
62120
+ "Series::Registrations"
61501
62121
  ]
61502
62122
  },
61503
62123
  "post": {
61504
- "operationId": "CreateSeries",
61505
- "summary": "Create Series",
61506
- "description": "Create Series endpoint",
62124
+ "operationId": "CreateSeriesRegistration",
62125
+ "summary": "Create Series Registration",
62126
+ "description": "Create Series Registration endpoint",
62127
+ "parameters": [
62128
+ {
62129
+ "in": "path",
62130
+ "name": "seriesId",
62131
+ "schema": {
62132
+ "type": "string"
62133
+ },
62134
+ "description": "The series identifier",
62135
+ "required": true
62136
+ }
62137
+ ],
61507
62138
  "requestBody": {
61508
62139
  "required": true,
61509
62140
  "content": {
61510
62141
  "application/json": {
61511
62142
  "schema": {
61512
- "$ref": "#/components/schemas/SeriesCreateInputs"
62143
+ "$ref": "#/components/schemas/SeriesRegistrationCreateInputs"
61513
62144
  }
61514
62145
  }
61515
62146
  }
@@ -61533,7 +62164,7 @@
61533
62164
  "example": "Success message."
61534
62165
  },
61535
62166
  "data": {
61536
- "$ref": "#/components/schemas/Series"
62167
+ "type": "object"
61537
62168
  }
61538
62169
  },
61539
62170
  "required": [
@@ -61547,15 +62178,15 @@
61547
62178
  }
61548
62179
  },
61549
62180
  "tags": [
61550
- "Series"
62181
+ "Series::Registrations"
61551
62182
  ]
61552
62183
  }
61553
62184
  },
61554
- "/series/{seriesId}": {
62185
+ "/series/{seriesId}/registrations/{registrationId}": {
61555
62186
  "get": {
61556
- "operationId": "GetSeries",
61557
- "summary": "Get Series",
61558
- "description": "Get Series endpoint",
62187
+ "operationId": "GetSeriesRegistration",
62188
+ "summary": "Get Series Registration",
62189
+ "description": "Get Series Registration endpoint",
61559
62190
  "parameters": [
61560
62191
  {
61561
62192
  "in": "path",
@@ -61565,6 +62196,15 @@
61565
62196
  },
61566
62197
  "description": "The series identifier",
61567
62198
  "required": true
62199
+ },
62200
+ {
62201
+ "in": "path",
62202
+ "name": "registrationId",
62203
+ "schema": {
62204
+ "type": "string"
62205
+ },
62206
+ "description": "The registration identifier",
62207
+ "required": true
61568
62208
  }
61569
62209
  ],
61570
62210
  "responses": {
@@ -61586,7 +62226,7 @@
61586
62226
  "example": "Success message."
61587
62227
  },
61588
62228
  "data": {
61589
- "$ref": "#/components/schemas/Series"
62229
+ "type": "object"
61590
62230
  }
61591
62231
  },
61592
62232
  "required": [
@@ -61600,13 +62240,13 @@
61600
62240
  }
61601
62241
  },
61602
62242
  "tags": [
61603
- "Series"
62243
+ "Series::Registrations"
61604
62244
  ]
61605
62245
  },
61606
62246
  "put": {
61607
- "operationId": "UpdateSeries",
61608
- "summary": "Update Series",
61609
- "description": "Update Series endpoint",
62247
+ "operationId": "UpdateSeriesRegistration",
62248
+ "summary": "Update Series Registration",
62249
+ "description": "Update Series Registration endpoint",
61610
62250
  "parameters": [
61611
62251
  {
61612
62252
  "in": "path",
@@ -61618,15 +62258,25 @@
61618
62258
  "required": true
61619
62259
  },
61620
62260
  {
61621
- "in": "query",
61622
- "name": "series",
62261
+ "in": "path",
62262
+ "name": "registrationId",
61623
62263
  "schema": {
61624
- "$ref": "#/components/schemas/SeriesUpdateInputs"
62264
+ "type": "string"
61625
62265
  },
61626
- "description": "Filter by series",
62266
+ "description": "The registration identifier",
61627
62267
  "required": true
61628
62268
  }
61629
62269
  ],
62270
+ "requestBody": {
62271
+ "required": true,
62272
+ "content": {
62273
+ "application/json": {
62274
+ "schema": {
62275
+ "$ref": "#/components/schemas/SeriesRegistrationUpdateInputs"
62276
+ }
62277
+ }
62278
+ }
62279
+ },
61630
62280
  "responses": {
61631
62281
  "200": {
61632
62282
  "description": "Successful response",
@@ -61646,7 +62296,7 @@
61646
62296
  "example": "Success message."
61647
62297
  },
61648
62298
  "data": {
61649
- "$ref": "#/components/schemas/Series"
62299
+ "type": "object"
61650
62300
  }
61651
62301
  },
61652
62302
  "required": [
@@ -61660,13 +62310,13 @@
61660
62310
  }
61661
62311
  },
61662
62312
  "tags": [
61663
- "Series"
62313
+ "Series::Registrations"
61664
62314
  ]
61665
62315
  },
61666
62316
  "delete": {
61667
- "operationId": "DeleteSeries",
61668
- "summary": "Delete Series",
61669
- "description": "Delete Series endpoint",
62317
+ "operationId": "DeleteSeriesRegistration",
62318
+ "summary": "Delete Series Registration",
62319
+ "description": "Delete Series Registration endpoint",
61670
62320
  "parameters": [
61671
62321
  {
61672
62322
  "in": "path",
@@ -61676,6 +62326,15 @@
61676
62326
  },
61677
62327
  "description": "The series identifier",
61678
62328
  "required": true
62329
+ },
62330
+ {
62331
+ "in": "path",
62332
+ "name": "registrationId",
62333
+ "schema": {
62334
+ "type": "string"
62335
+ },
62336
+ "description": "The registration identifier",
62337
+ "required": true
61679
62338
  }
61680
62339
  ],
61681
62340
  "responses": {
@@ -61711,15 +62370,15 @@
61711
62370
  }
61712
62371
  },
61713
62372
  "tags": [
61714
- "Series"
62373
+ "Series::Registrations"
61715
62374
  ]
61716
62375
  }
61717
62376
  },
61718
- "/series/{seriesId}/events": {
62377
+ "/series/{seriesId}/registrations/{registrationId}/registrations": {
61719
62378
  "get": {
61720
- "operationId": "GetSeriesEvents",
61721
- "summary": "Get Series Events",
61722
- "description": "Get Series Events endpoint",
62379
+ "operationId": "GetSeriesRegistrationRegistrations",
62380
+ "summary": "Get Series Registration Registrations",
62381
+ "description": "Get Series Registration Registrations endpoint",
61723
62382
  "parameters": [
61724
62383
  {
61725
62384
  "in": "path",
@@ -61730,6 +62389,15 @@
61730
62389
  "description": "The series identifier",
61731
62390
  "required": true
61732
62391
  },
62392
+ {
62393
+ "in": "path",
62394
+ "name": "registrationId",
62395
+ "schema": {
62396
+ "type": "string"
62397
+ },
62398
+ "description": "The registration identifier",
62399
+ "required": true
62400
+ },
61733
62401
  {
61734
62402
  "in": "query",
61735
62403
  "name": "page",
@@ -61791,10 +62459,7 @@
61791
62459
  "example": "Success message."
61792
62460
  },
61793
62461
  "data": {
61794
- "type": "array",
61795
- "items": {
61796
- "$ref": "#/components/schemas/Event"
61797
- }
62462
+ "type": "object"
61798
62463
  },
61799
62464
  "count": {
61800
62465
  "type": "integer",
@@ -61812,129 +62477,7 @@
61812
62477
  }
61813
62478
  },
61814
62479
  "tags": [
61815
- "Series"
61816
- ]
61817
- }
61818
- },
61819
- "/series/{seriesId}/events/{eventId}": {
61820
- "post": {
61821
- "operationId": "AddSeriesEvent",
61822
- "summary": "Add Series Event",
61823
- "description": "Add Series Event endpoint",
61824
- "parameters": [
61825
- {
61826
- "in": "path",
61827
- "name": "seriesId",
61828
- "schema": {
61829
- "type": "string"
61830
- },
61831
- "description": "The series identifier",
61832
- "required": true
61833
- },
61834
- {
61835
- "in": "path",
61836
- "name": "eventId",
61837
- "schema": {
61838
- "type": "string"
61839
- },
61840
- "description": "The event identifier",
61841
- "required": true
61842
- }
61843
- ],
61844
- "responses": {
61845
- "200": {
61846
- "description": "Successful response",
61847
- "content": {
61848
- "application/json": {
61849
- "schema": {
61850
- "type": "object",
61851
- "properties": {
61852
- "status": {
61853
- "type": "string",
61854
- "enum": [
61855
- "ok"
61856
- ]
61857
- },
61858
- "message": {
61859
- "type": "string",
61860
- "example": "Success message."
61861
- },
61862
- "data": {
61863
- "$ref": "#/components/schemas/Series"
61864
- }
61865
- },
61866
- "required": [
61867
- "status",
61868
- "message",
61869
- "data"
61870
- ]
61871
- }
61872
- }
61873
- }
61874
- }
61875
- },
61876
- "tags": [
61877
- "Series"
61878
- ]
61879
- },
61880
- "delete": {
61881
- "operationId": "RemoveSeriesEvent",
61882
- "summary": "Remove Series Event",
61883
- "description": "Remove Series Event endpoint",
61884
- "parameters": [
61885
- {
61886
- "in": "path",
61887
- "name": "seriesId",
61888
- "schema": {
61889
- "type": "string"
61890
- },
61891
- "description": "The series identifier",
61892
- "required": true
61893
- },
61894
- {
61895
- "in": "path",
61896
- "name": "eventId",
61897
- "schema": {
61898
- "type": "string"
61899
- },
61900
- "description": "The event identifier",
61901
- "required": true
61902
- }
61903
- ],
61904
- "responses": {
61905
- "200": {
61906
- "description": "Successful response",
61907
- "content": {
61908
- "application/json": {
61909
- "schema": {
61910
- "type": "object",
61911
- "properties": {
61912
- "status": {
61913
- "type": "string",
61914
- "enum": [
61915
- "ok"
61916
- ]
61917
- },
61918
- "message": {
61919
- "type": "string",
61920
- "example": "Success message."
61921
- },
61922
- "data": {
61923
- "$ref": "#/components/schemas/Series"
61924
- }
61925
- },
61926
- "required": [
61927
- "status",
61928
- "message",
61929
- "data"
61930
- ]
61931
- }
61932
- }
61933
- }
61934
- }
61935
- },
61936
- "tags": [
61937
- "Series"
62480
+ "Series::Registrations"
61938
62481
  ]
61939
62482
  }
61940
62483
  },
@@ -80285,6 +80828,22 @@
80285
80828
  "$ref": "#/components/schemas/BaseAttendeePackage"
80286
80829
  }
80287
80830
  },
80831
+ "seriesId": {
80832
+ "type": "string",
80833
+ "nullable": true
80834
+ },
80835
+ "seriesRegistrationId": {
80836
+ "type": "string",
80837
+ "nullable": true
80838
+ },
80839
+ "seriesRegistration": {
80840
+ "allOf": [
80841
+ {
80842
+ "$ref": "#/components/schemas/BaseSeriesRegistration"
80843
+ }
80844
+ ],
80845
+ "nullable": true
80846
+ },
80288
80847
  "createdAt": {
80289
80848
  "type": "string"
80290
80849
  },
@@ -80310,6 +80869,9 @@
80310
80869
  "required": [
80311
80870
  "passes",
80312
80871
  "packages",
80872
+ "seriesId",
80873
+ "seriesRegistrationId",
80874
+ "seriesRegistration",
80313
80875
  "createdAt",
80314
80876
  "updatedAt",
80315
80877
  "_count"
@@ -80665,6 +81227,20 @@
80665
81227
  "sortOrder": {
80666
81228
  "type": "number"
80667
81229
  },
81230
+ "price": {
81231
+ "type": "number",
81232
+ "nullable": true
81233
+ },
81234
+ "taxCode": {
81235
+ "type": "string",
81236
+ "nullable": true
81237
+ },
81238
+ "taxIncluded": {
81239
+ "type": "boolean"
81240
+ },
81241
+ "taxLocation": {
81242
+ "$ref": "#/components/schemas/TaxLocationType"
81243
+ },
80668
81244
  "createdAt": {
80669
81245
  "type": "string"
80670
81246
  },
@@ -80676,6 +81252,67 @@
80676
81252
  "templateId",
80677
81253
  "template",
80678
81254
  "sortOrder",
81255
+ "price",
81256
+ "taxCode",
81257
+ "taxIncluded",
81258
+ "taxLocation",
81259
+ "createdAt",
81260
+ "updatedAt"
81261
+ ]
81262
+ }
81263
+ ]
81264
+ },
81265
+ "BaseSeriesRegistration": {
81266
+ "type": "object",
81267
+ "properties": {
81268
+ "id": {
81269
+ "type": "string"
81270
+ },
81271
+ "organizationId": {
81272
+ "type": "string"
81273
+ },
81274
+ "seriesId": {
81275
+ "type": "string"
81276
+ },
81277
+ "series": {
81278
+ "$ref": "#/components/schemas/BaseSeries"
81279
+ },
81280
+ "accountId": {
81281
+ "type": "string"
81282
+ },
81283
+ "account": {
81284
+ "$ref": "#/components/schemas/BaseAccount"
81285
+ },
81286
+ "status": {
81287
+ "$ref": "#/components/schemas/PurchaseStatus"
81288
+ }
81289
+ },
81290
+ "required": [
81291
+ "id",
81292
+ "organizationId",
81293
+ "seriesId",
81294
+ "series",
81295
+ "accountId",
81296
+ "account",
81297
+ "status"
81298
+ ]
81299
+ },
81300
+ "SeriesRegistration": {
81301
+ "allOf": [
81302
+ {
81303
+ "$ref": "#/components/schemas/BaseSeriesRegistration"
81304
+ },
81305
+ {
81306
+ "type": "object",
81307
+ "properties": {
81308
+ "createdAt": {
81309
+ "type": "string"
81310
+ },
81311
+ "updatedAt": {
81312
+ "type": "string"
81313
+ }
81314
+ },
81315
+ "required": [
80679
81316
  "createdAt",
80680
81317
  "updatedAt"
80681
81318
  ]
@@ -92636,6 +93273,25 @@
92636
93273
  "accountId"
92637
93274
  ]
92638
93275
  },
93276
+ "SeriesRegistrationCreateInputs": {
93277
+ "type": "object",
93278
+ "properties": {
93279
+ "accountId": {
93280
+ "type": "string"
93281
+ }
93282
+ },
93283
+ "required": [
93284
+ "accountId"
93285
+ ]
93286
+ },
93287
+ "SeriesRegistrationUpdateInputs": {
93288
+ "type": "object",
93289
+ "properties": {
93290
+ "status": {
93291
+ "$ref": "#/components/schemas/PurchaseStatus"
93292
+ }
93293
+ }
93294
+ },
92639
93295
  "EventRegistrationBypassUpdateInputs": {
92640
93296
  "type": "object",
92641
93297
  "properties": {
@@ -92796,6 +93452,17 @@
92796
93452
  }
92797
93453
  }
92798
93454
  },
93455
+ "EventSessionCloneOptions": {
93456
+ "type": "object",
93457
+ "properties": {
93458
+ "name": {
93459
+ "type": "string"
93460
+ },
93461
+ "startTime": {
93462
+ "type": "string"
93463
+ }
93464
+ }
93465
+ },
92799
93466
  "EventSessionUpdateInputs": {
92800
93467
  "type": "object",
92801
93468
  "properties": {
@@ -95145,6 +95812,22 @@
95145
95812
  "endDate": {
95146
95813
  "type": "string",
95147
95814
  "nullable": true
95815
+ },
95816
+ "registration": {
95817
+ "type": "boolean"
95818
+ },
95819
+ "price": {
95820
+ "type": "number"
95821
+ },
95822
+ "taxCode": {
95823
+ "type": "string",
95824
+ "nullable": true
95825
+ },
95826
+ "taxIncluded": {
95827
+ "type": "boolean"
95828
+ },
95829
+ "taxLocation": {
95830
+ "$ref": "#/components/schemas/TaxLocationType"
95148
95831
  }
95149
95832
  },
95150
95833
  "required": [
@@ -95185,6 +95868,22 @@
95185
95868
  "endDate": {
95186
95869
  "type": "string",
95187
95870
  "nullable": true
95871
+ },
95872
+ "registration": {
95873
+ "type": "boolean"
95874
+ },
95875
+ "price": {
95876
+ "type": "number"
95877
+ },
95878
+ "taxCode": {
95879
+ "type": "string",
95880
+ "nullable": true
95881
+ },
95882
+ "taxIncluded": {
95883
+ "type": "boolean"
95884
+ },
95885
+ "taxLocation": {
95886
+ "$ref": "#/components/schemas/TaxLocationType"
95188
95887
  }
95189
95888
  }
95190
95889
  },