@connectedxm/admin 7.8.1 → 7.9.1

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
@@ -308,6 +308,10 @@
308
308
  "name": "Events::Passtypes",
309
309
  "description": "Create and configure pass types with unique names, descriptions, prices, access levels, and rules that define what each pass enables"
310
310
  },
311
+ {
312
+ "name": "Events::Passtypes::Exchangetargets",
313
+ "description": "Operations for events::passtypes::exchangetargets"
314
+ },
311
315
  {
312
316
  "name": "Events::Passtypes::Priceschedules",
313
317
  "description": "Set dynamic pricing that automatically changes on specific dates, allowing for early bird pricing, regular pricing, and late registration fees"
@@ -3023,68 +3027,6 @@
3023
3027
  ]
3024
3028
  }
3025
3029
  },
3026
- "/accounts/{accountId}/impersonate/{username}": {
3027
- "post": {
3028
- "operationId": "ImpersonateAccount",
3029
- "summary": "Impersonate account",
3030
- "description": "Starts an admin impersonation session for the specified account, returning a token that lets an admin act as the given user identified by account ID and username.",
3031
- "parameters": [
3032
- {
3033
- "in": "path",
3034
- "name": "accountId",
3035
- "schema": {
3036
- "type": "string"
3037
- },
3038
- "description": "The account identifier",
3039
- "required": true
3040
- },
3041
- {
3042
- "in": "path",
3043
- "name": "username",
3044
- "schema": {
3045
- "type": "string"
3046
- },
3047
- "description": "The username identifier",
3048
- "required": true
3049
- }
3050
- ],
3051
- "responses": {
3052
- "200": {
3053
- "description": "Successful response",
3054
- "content": {
3055
- "application/json": {
3056
- "schema": {
3057
- "type": "object",
3058
- "properties": {
3059
- "status": {
3060
- "type": "string",
3061
- "enum": [
3062
- "ok"
3063
- ]
3064
- },
3065
- "message": {
3066
- "type": "string",
3067
- "example": "Success message."
3068
- },
3069
- "data": {
3070
- "type": "string"
3071
- }
3072
- },
3073
- "required": [
3074
- "status",
3075
- "message",
3076
- "data"
3077
- ]
3078
- }
3079
- }
3080
- }
3081
- }
3082
- },
3083
- "tags": [
3084
- "Accounts"
3085
- ]
3086
- }
3087
- },
3088
3030
  "/accounts/{accountId}/interests": {
3089
3031
  "get": {
3090
3032
  "operationId": "GetAccountInterests",
@@ -33112,11 +33054,11 @@
33112
33054
  ]
33113
33055
  }
33114
33056
  },
33115
- "/events/{eventId}/passTypes/{passTypeId}/groupPassTiers": {
33057
+ "/events/{eventId}/passTypes/{passTypeId}/exchangeTargets": {
33116
33058
  "get": {
33117
- "operationId": "GetEventPassTypeGroupPassTiers",
33118
- "summary": "List an event pass type's group pass tiers",
33119
- "description": "Returns a paginated list of the registration tiers allowed to purchase an event pass type as part of a group pass, with optional search and orderBy filters; requires read access to the event and to tiers.",
33059
+ "operationId": "GetEventPassTypeExchangeTargets",
33060
+ "summary": "Get Event Pass Type Exchange Targets",
33061
+ "description": "Get Event Pass Type Exchange Targets endpoint",
33120
33062
  "parameters": [
33121
33063
  {
33122
33064
  "in": "path",
@@ -33199,7 +33141,7 @@
33199
33141
  "data": {
33200
33142
  "type": "array",
33201
33143
  "items": {
33202
- "$ref": "#/components/schemas/Tier"
33144
+ "$ref": "#/components/schemas/EventPassTypeExchangeTarget"
33203
33145
  }
33204
33146
  },
33205
33147
  "count": {
@@ -33218,15 +33160,13 @@
33218
33160
  }
33219
33161
  },
33220
33162
  "tags": [
33221
- "Events::Passtypes"
33163
+ "Events::Passtypes::Exchangetargets"
33222
33164
  ]
33223
- }
33224
- },
33225
- "/events/{eventId}/passTypes/{passTypeId}/groupPassTiers/{tierId}": {
33165
+ },
33226
33166
  "post": {
33227
- "operationId": "AddEventPassTypeGroupPassTier",
33228
- "summary": "Allow a tier to purchase a group pass type",
33229
- "description": "Adds an account tier to the list of tiers allowed to purchase a pass type as a group pass, rejecting the request if the tier has already been added; requires update permission on events and read permission on tiers.",
33167
+ "operationId": "AddEventPassTypeExchangeTarget",
33168
+ "summary": "Add Event Pass Type Exchange Target",
33169
+ "description": "Add Event Pass Type Exchange Target endpoint",
33230
33170
  "parameters": [
33231
33171
  {
33232
33172
  "in": "path",
@@ -33245,86 +33185,18 @@
33245
33185
  },
33246
33186
  "description": "The passType identifier",
33247
33187
  "required": true
33248
- },
33249
- {
33250
- "in": "path",
33251
- "name": "tierId",
33252
- "schema": {
33253
- "type": "string"
33254
- },
33255
- "description": "The tier identifier",
33256
- "required": true
33257
33188
  }
33258
33189
  ],
33259
- "responses": {
33260
- "200": {
33261
- "description": "Successful response",
33262
- "content": {
33263
- "application/json": {
33264
- "schema": {
33265
- "type": "object",
33266
- "properties": {
33267
- "status": {
33268
- "type": "string",
33269
- "enum": [
33270
- "ok"
33271
- ]
33272
- },
33273
- "message": {
33274
- "type": "string",
33275
- "example": "Success message."
33276
- },
33277
- "data": {
33278
- "$ref": "#/components/schemas/EventPassType"
33279
- }
33280
- },
33281
- "required": [
33282
- "status",
33283
- "message",
33284
- "data"
33285
- ]
33286
- }
33190
+ "requestBody": {
33191
+ "required": true,
33192
+ "content": {
33193
+ "application/json": {
33194
+ "schema": {
33195
+ "$ref": "#/components/schemas/PassTypeExchangeTargetCreateInputs"
33287
33196
  }
33288
33197
  }
33289
33198
  }
33290
33199
  },
33291
- "tags": [
33292
- "Events::Passtypes"
33293
- ]
33294
- },
33295
- "delete": {
33296
- "operationId": "RemoveEventPassTypeGroupPassTier",
33297
- "summary": "Remove an account tier from a pass type's group tiers",
33298
- "description": "Removes an account tier from the list of tiers allowed to purchase an event pass type as a group pass; requires update permission on events.",
33299
- "parameters": [
33300
- {
33301
- "in": "path",
33302
- "name": "eventId",
33303
- "schema": {
33304
- "type": "string"
33305
- },
33306
- "description": "The event identifier",
33307
- "required": true
33308
- },
33309
- {
33310
- "in": "path",
33311
- "name": "passTypeId",
33312
- "schema": {
33313
- "type": "string"
33314
- },
33315
- "description": "The passType identifier",
33316
- "required": true
33317
- },
33318
- {
33319
- "in": "path",
33320
- "name": "tierId",
33321
- "schema": {
33322
- "type": "string"
33323
- },
33324
- "description": "The tier identifier",
33325
- "required": true
33326
- }
33327
- ],
33328
33200
  "responses": {
33329
33201
  "200": {
33330
33202
  "description": "Successful response",
@@ -33344,7 +33216,7 @@
33344
33216
  "example": "Success message."
33345
33217
  },
33346
33218
  "data": {
33347
- "$ref": "#/components/schemas/EventPassType"
33219
+ "$ref": "#/components/schemas/EventPassTypeExchangeTarget"
33348
33220
  }
33349
33221
  },
33350
33222
  "required": [
@@ -33358,15 +33230,15 @@
33358
33230
  }
33359
33231
  },
33360
33232
  "tags": [
33361
- "Events::Passtypes"
33233
+ "Events::Passtypes::Exchangetargets"
33362
33234
  ]
33363
33235
  }
33364
33236
  },
33365
- "/events/{eventId}/passTypes/{passTypeId}/passes": {
33366
- "get": {
33367
- "operationId": "GetEventPassTypePasses",
33368
- "summary": "List passes purchased for an event pass type",
33369
- "description": "Returns a paginated list of purchased passes for a given event pass type, optionally filtered to only checked-in or not-checked-in passes, with search and orderBy support; requires read access to the event and to attendees.",
33237
+ "/events/{eventId}/passTypes/{passTypeId}/exchangeTargets/{exchangeTargetId}": {
33238
+ "put": {
33239
+ "operationId": "UpdateEventPassTypeExchangeTarget",
33240
+ "summary": "Update Event Pass Type Exchange Target",
33241
+ "description": "Update Event Pass Type Exchange Target endpoint",
33370
33242
  "parameters": [
33371
33243
  {
33372
33244
  "in": "path",
@@ -33387,56 +33259,25 @@
33387
33259
  "required": true
33388
33260
  },
33389
33261
  {
33390
- "in": "query",
33391
- "name": "checkedIn",
33392
- "schema": {
33393
- "type": "boolean"
33394
- },
33395
- "description": "Filter by checkedIn",
33396
- "required": false
33397
- },
33398
- {
33399
- "in": "query",
33400
- "name": "page",
33401
- "schema": {
33402
- "type": "integer",
33403
- "minimum": 1,
33404
- "default": 1
33405
- },
33406
- "description": "Page number",
33407
- "required": false
33408
- },
33409
- {
33410
- "in": "query",
33411
- "name": "pageSize",
33412
- "schema": {
33413
- "type": "integer",
33414
- "minimum": 1,
33415
- "maximum": 100,
33416
- "default": 25
33417
- },
33418
- "description": "Number of items per page",
33419
- "required": false
33420
- },
33421
- {
33422
- "in": "query",
33423
- "name": "orderBy",
33424
- "schema": {
33425
- "type": "string"
33426
- },
33427
- "description": "Field to order by",
33428
- "required": false
33429
- },
33430
- {
33431
- "in": "query",
33432
- "name": "search",
33262
+ "in": "path",
33263
+ "name": "exchangeTargetId",
33433
33264
  "schema": {
33434
33265
  "type": "string"
33435
33266
  },
33436
- "description": "Search query",
33437
- "required": false
33267
+ "description": "The exchangeTarget identifier",
33268
+ "required": true
33438
33269
  }
33439
33270
  ],
33271
+ "requestBody": {
33272
+ "required": true,
33273
+ "content": {
33274
+ "application/json": {
33275
+ "schema": {
33276
+ "$ref": "#/components/schemas/PassTypeExchangeTargetUpdateInputs"
33277
+ }
33278
+ }
33279
+ }
33280
+ },
33440
33281
  "responses": {
33441
33282
  "200": {
33442
33283
  "description": "Successful response",
@@ -33456,14 +33297,7 @@
33456
33297
  "example": "Success message."
33457
33298
  },
33458
33299
  "data": {
33459
- "type": "array",
33460
- "items": {
33461
- "$ref": "#/components/schemas/EventPass"
33462
- }
33463
- },
33464
- "count": {
33465
- "type": "integer",
33466
- "example": 100
33300
+ "$ref": "#/components/schemas/EventPassTypeExchangeTarget"
33467
33301
  }
33468
33302
  },
33469
33303
  "required": [
@@ -33477,15 +33311,13 @@
33477
33311
  }
33478
33312
  },
33479
33313
  "tags": [
33480
- "Events::Passtypes"
33314
+ "Events::Passtypes::Exchangetargets"
33481
33315
  ]
33482
- }
33483
- },
33484
- "/events/{eventId}/passTypes/{passTypeId}/payments": {
33485
- "get": {
33486
- "operationId": "GetEventPassTypePayments",
33487
- "summary": "List payments for a pass type",
33488
- "description": "Returns a paginated list of payments made for a specific pass type on an event, supporting search and ordering; requires read permission on events and payments.",
33316
+ },
33317
+ "delete": {
33318
+ "operationId": "RemoveEventPassTypeExchangeTarget",
33319
+ "summary": "Remove Event Pass Type Exchange Target",
33320
+ "description": "Remove Event Pass Type Exchange Target endpoint",
33489
33321
  "parameters": [
33490
33322
  {
33491
33323
  "in": "path",
@@ -33506,45 +33338,13 @@
33506
33338
  "required": true
33507
33339
  },
33508
33340
  {
33509
- "in": "query",
33510
- "name": "page",
33511
- "schema": {
33512
- "type": "integer",
33513
- "minimum": 1,
33514
- "default": 1
33515
- },
33516
- "description": "Page number",
33517
- "required": false
33518
- },
33519
- {
33520
- "in": "query",
33521
- "name": "pageSize",
33522
- "schema": {
33523
- "type": "integer",
33524
- "minimum": 1,
33525
- "maximum": 100,
33526
- "default": 25
33527
- },
33528
- "description": "Number of items per page",
33529
- "required": false
33530
- },
33531
- {
33532
- "in": "query",
33533
- "name": "orderBy",
33534
- "schema": {
33535
- "type": "string"
33536
- },
33537
- "description": "Field to order by",
33538
- "required": false
33539
- },
33540
- {
33541
- "in": "query",
33542
- "name": "search",
33341
+ "in": "path",
33342
+ "name": "exchangeTargetId",
33543
33343
  "schema": {
33544
33344
  "type": "string"
33545
33345
  },
33546
- "description": "Search query",
33547
- "required": false
33346
+ "description": "The exchangeTarget identifier",
33347
+ "required": true
33548
33348
  }
33549
33349
  ],
33550
33350
  "responses": {
@@ -33566,14 +33366,7 @@
33566
33366
  "example": "Success message."
33567
33367
  },
33568
33368
  "data": {
33569
- "type": "array",
33570
- "items": {
33571
- "$ref": "#/components/schemas/Payment"
33572
- }
33573
- },
33574
- "count": {
33575
- "type": "integer",
33576
- "example": 100
33369
+ "$ref": "#/components/schemas/EventPassTypeExchangeTarget"
33577
33370
  }
33578
33371
  },
33579
33372
  "required": [
@@ -33587,15 +33380,15 @@
33587
33380
  }
33588
33381
  },
33589
33382
  "tags": [
33590
- "Events::Passtypes"
33383
+ "Events::Passtypes::Exchangetargets"
33591
33384
  ]
33592
33385
  }
33593
33386
  },
33594
- "/events/{eventId}/passTypes/{passTypeId}/priceSchedules": {
33387
+ "/events/{eventId}/passTypes/{passTypeId}/exchangeTargets/{exchangeTargetId}/exchanges": {
33595
33388
  "get": {
33596
- "operationId": "GetEventPassTypePriceSchedules",
33597
- "summary": "List a pass type's price schedules",
33598
- "description": "Returns a paginated list of scheduled price changes for a specific event pass type, used to automate price increases or discounts on set dates, and requires the read events permission.",
33389
+ "operationId": "GetEventPassTypeExchangeTargetExchanges",
33390
+ "summary": "Get Event Pass Type Exchange Target Exchanges",
33391
+ "description": "Get Event Pass Type Exchange Target Exchanges endpoint",
33599
33392
  "parameters": [
33600
33393
  {
33601
33394
  "in": "path",
@@ -33615,6 +33408,15 @@
33615
33408
  "description": "The passType identifier",
33616
33409
  "required": true
33617
33410
  },
33411
+ {
33412
+ "in": "path",
33413
+ "name": "exchangeTargetId",
33414
+ "schema": {
33415
+ "type": "string"
33416
+ },
33417
+ "description": "The exchangeTarget identifier",
33418
+ "required": true
33419
+ },
33618
33420
  {
33619
33421
  "in": "query",
33620
33422
  "name": "page",
@@ -33678,7 +33480,7 @@
33678
33480
  "data": {
33679
33481
  "type": "array",
33680
33482
  "items": {
33681
- "$ref": "#/components/schemas/EventPassTypePriceSchedule"
33483
+ "$ref": "#/components/schemas/PassExchange"
33682
33484
  }
33683
33485
  },
33684
33486
  "count": {
@@ -33697,13 +33499,15 @@
33697
33499
  }
33698
33500
  },
33699
33501
  "tags": [
33700
- "Events::Passtypes::Priceschedules"
33502
+ "Events::Passtypes::Exchangetargets"
33701
33503
  ]
33702
- },
33703
- "post": {
33704
- "operationId": "CreateEventPassTypePriceSchedule",
33705
- "summary": "Create a pass type price schedule",
33706
- "description": "Creates a time-windowed price schedule for an event pass type, rejecting the request if its date range overlaps an existing schedule; requires update permission on events.",
33504
+ }
33505
+ },
33506
+ "/events/{eventId}/passTypes/{passTypeId}/exchangeTargets/{exchangeTargetId}/payments": {
33507
+ "get": {
33508
+ "operationId": "GetEventPassTypeExchangeTargetPayments",
33509
+ "summary": "Get Event Pass Type Exchange Target Payments",
33510
+ "description": "Get Event Pass Type Exchange Target Payments endpoint",
33707
33511
  "parameters": [
33708
33512
  {
33709
33513
  "in": "path",
@@ -33722,18 +33526,58 @@
33722
33526
  },
33723
33527
  "description": "The passType identifier",
33724
33528
  "required": true
33529
+ },
33530
+ {
33531
+ "in": "path",
33532
+ "name": "exchangeTargetId",
33533
+ "schema": {
33534
+ "type": "string"
33535
+ },
33536
+ "description": "The exchangeTarget identifier",
33537
+ "required": true
33538
+ },
33539
+ {
33540
+ "in": "query",
33541
+ "name": "page",
33542
+ "schema": {
33543
+ "type": "integer",
33544
+ "minimum": 1,
33545
+ "default": 1
33546
+ },
33547
+ "description": "Page number",
33548
+ "required": false
33549
+ },
33550
+ {
33551
+ "in": "query",
33552
+ "name": "pageSize",
33553
+ "schema": {
33554
+ "type": "integer",
33555
+ "minimum": 1,
33556
+ "maximum": 100,
33557
+ "default": 25
33558
+ },
33559
+ "description": "Number of items per page",
33560
+ "required": false
33561
+ },
33562
+ {
33563
+ "in": "query",
33564
+ "name": "orderBy",
33565
+ "schema": {
33566
+ "type": "string"
33567
+ },
33568
+ "description": "Field to order by",
33569
+ "required": false
33570
+ },
33571
+ {
33572
+ "in": "query",
33573
+ "name": "search",
33574
+ "schema": {
33575
+ "type": "string"
33576
+ },
33577
+ "description": "Search query",
33578
+ "required": false
33725
33579
  }
33726
33580
  ],
33727
- "requestBody": {
33728
- "required": true,
33729
- "content": {
33730
- "application/json": {
33731
- "schema": {
33732
- "$ref": "#/components/schemas/PassTypePriceScheduleCreateInputs"
33733
- }
33734
- }
33735
- }
33736
- },
33737
33581
  "responses": {
33738
33582
  "200": {
33739
33583
  "description": "Successful response",
@@ -33753,7 +33597,14 @@
33753
33597
  "example": "Success message."
33754
33598
  },
33755
33599
  "data": {
33756
- "$ref": "#/components/schemas/EventPassType"
33600
+ "type": "array",
33601
+ "items": {
33602
+ "$ref": "#/components/schemas/Payment"
33603
+ }
33604
+ },
33605
+ "count": {
33606
+ "type": "integer",
33607
+ "example": 100
33757
33608
  }
33758
33609
  },
33759
33610
  "required": [
@@ -33767,15 +33618,15 @@
33767
33618
  }
33768
33619
  },
33769
33620
  "tags": [
33770
- "Events::Passtypes::Priceschedules"
33621
+ "Events::Passtypes::Exchangetargets"
33771
33622
  ]
33772
33623
  }
33773
33624
  },
33774
- "/events/{eventId}/passTypes/{passTypeId}/priceSchedules/{scheduleId}": {
33625
+ "/events/{eventId}/passTypes/{passTypeId}/groupPassTiers": {
33775
33626
  "get": {
33776
- "operationId": "GetEventPassTypePriceSchedule",
33777
- "summary": "Get a single pass type price schedule",
33778
- "description": "Returns a single scheduled price change for a specific event pass type, including its scheduled date and new price, and requires the read events permission.",
33627
+ "operationId": "GetEventPassTypeGroupPassTiers",
33628
+ "summary": "List an event pass type's group pass tiers",
33629
+ "description": "Returns a paginated list of the registration tiers allowed to purchase an event pass type as part of a group pass, with optional search and orderBy filters; requires read access to the event and to tiers.",
33779
33630
  "parameters": [
33780
33631
  {
33781
33632
  "in": "path",
@@ -33796,13 +33647,45 @@
33796
33647
  "required": true
33797
33648
  },
33798
33649
  {
33799
- "in": "path",
33800
- "name": "scheduleId",
33650
+ "in": "query",
33651
+ "name": "page",
33652
+ "schema": {
33653
+ "type": "integer",
33654
+ "minimum": 1,
33655
+ "default": 1
33656
+ },
33657
+ "description": "Page number",
33658
+ "required": false
33659
+ },
33660
+ {
33661
+ "in": "query",
33662
+ "name": "pageSize",
33663
+ "schema": {
33664
+ "type": "integer",
33665
+ "minimum": 1,
33666
+ "maximum": 100,
33667
+ "default": 25
33668
+ },
33669
+ "description": "Number of items per page",
33670
+ "required": false
33671
+ },
33672
+ {
33673
+ "in": "query",
33674
+ "name": "orderBy",
33801
33675
  "schema": {
33802
33676
  "type": "string"
33803
33677
  },
33804
- "description": "The schedule identifier",
33805
- "required": true
33678
+ "description": "Field to order by",
33679
+ "required": false
33680
+ },
33681
+ {
33682
+ "in": "query",
33683
+ "name": "search",
33684
+ "schema": {
33685
+ "type": "string"
33686
+ },
33687
+ "description": "Search query",
33688
+ "required": false
33806
33689
  }
33807
33690
  ],
33808
33691
  "responses": {
@@ -33824,7 +33707,14 @@
33824
33707
  "example": "Success message."
33825
33708
  },
33826
33709
  "data": {
33827
- "$ref": "#/components/schemas/EventPassTypePriceSchedule"
33710
+ "type": "array",
33711
+ "items": {
33712
+ "$ref": "#/components/schemas/Tier"
33713
+ }
33714
+ },
33715
+ "count": {
33716
+ "type": "integer",
33717
+ "example": 100
33828
33718
  }
33829
33719
  },
33830
33720
  "required": [
@@ -33838,13 +33728,15 @@
33838
33728
  }
33839
33729
  },
33840
33730
  "tags": [
33841
- "Events::Passtypes::Priceschedules"
33731
+ "Events::Passtypes"
33842
33732
  ]
33843
- },
33844
- "put": {
33845
- "operationId": "UpdateEventPassTypePriceSchedule",
33846
- "summary": "Update a pass type price schedule",
33847
- "description": "Updates the date range and price of an existing price schedule on an event pass type, rejecting the request if the new date range overlaps another schedule; requires update permission on events.",
33733
+ }
33734
+ },
33735
+ "/events/{eventId}/passTypes/{passTypeId}/groupPassTiers/{tierId}": {
33736
+ "post": {
33737
+ "operationId": "AddEventPassTypeGroupPassTier",
33738
+ "summary": "Allow a tier to purchase a group pass type",
33739
+ "description": "Adds an account tier to the list of tiers allowed to purchase a pass type as a group pass, rejecting the request if the tier has already been added; requires update permission on events and read permission on tiers.",
33848
33740
  "parameters": [
33849
33741
  {
33850
33742
  "in": "path",
@@ -33866,24 +33758,14 @@
33866
33758
  },
33867
33759
  {
33868
33760
  "in": "path",
33869
- "name": "scheduleId",
33761
+ "name": "tierId",
33870
33762
  "schema": {
33871
33763
  "type": "string"
33872
33764
  },
33873
- "description": "The schedule identifier",
33765
+ "description": "The tier identifier",
33874
33766
  "required": true
33875
33767
  }
33876
33768
  ],
33877
- "requestBody": {
33878
- "required": true,
33879
- "content": {
33880
- "application/json": {
33881
- "schema": {
33882
- "$ref": "#/components/schemas/PassTypePriceScheduleUpdateInputs"
33883
- }
33884
- }
33885
- }
33886
- },
33887
33769
  "responses": {
33888
33770
  "200": {
33889
33771
  "description": "Successful response",
@@ -33903,7 +33785,7 @@
33903
33785
  "example": "Success message."
33904
33786
  },
33905
33787
  "data": {
33906
- "type": "object"
33788
+ "$ref": "#/components/schemas/EventPassType"
33907
33789
  }
33908
33790
  },
33909
33791
  "required": [
@@ -33917,13 +33799,13 @@
33917
33799
  }
33918
33800
  },
33919
33801
  "tags": [
33920
- "Events::Passtypes::Priceschedules"
33802
+ "Events::Passtypes"
33921
33803
  ]
33922
33804
  },
33923
33805
  "delete": {
33924
- "operationId": "DeleteEventPassTypePriceSchedule",
33925
- "summary": "Delete a pass type price schedule",
33926
- "description": "Permanently removes a price schedule from an event pass type by its schedule ID; requires update permission on events.",
33806
+ "operationId": "RemoveEventPassTypeGroupPassTier",
33807
+ "summary": "Remove an account tier from a pass type's group tiers",
33808
+ "description": "Removes an account tier from the list of tiers allowed to purchase an event pass type as a group pass; requires update permission on events.",
33927
33809
  "parameters": [
33928
33810
  {
33929
33811
  "in": "path",
@@ -33945,11 +33827,11 @@
33945
33827
  },
33946
33828
  {
33947
33829
  "in": "path",
33948
- "name": "scheduleId",
33830
+ "name": "tierId",
33949
33831
  "schema": {
33950
33832
  "type": "string"
33951
33833
  },
33952
- "description": "The schedule identifier",
33834
+ "description": "The tier identifier",
33953
33835
  "required": true
33954
33836
  }
33955
33837
  ],
@@ -33972,7 +33854,7 @@
33972
33854
  "example": "Success message."
33973
33855
  },
33974
33856
  "data": {
33975
- "type": "object"
33857
+ "$ref": "#/components/schemas/EventPassType"
33976
33858
  }
33977
33859
  },
33978
33860
  "required": [
@@ -33986,15 +33868,15 @@
33986
33868
  }
33987
33869
  },
33988
33870
  "tags": [
33989
- "Events::Passtypes::Priceschedules"
33871
+ "Events::Passtypes"
33990
33872
  ]
33991
33873
  }
33992
33874
  },
33993
- "/events/{eventId}/passTypes/{passTypeId}/refundSchedules": {
33875
+ "/events/{eventId}/passTypes/{passTypeId}/passes": {
33994
33876
  "get": {
33995
- "operationId": "GetEventPassTypeRefundSchedules",
33996
- "summary": "List a pass type's refund schedules",
33997
- "description": "Returns a paginated list of refund schedules configured for an event pass type, ordered by start date by default, and supports search and orderBy filters; requires read access to the event.",
33877
+ "operationId": "GetEventPassTypePasses",
33878
+ "summary": "List passes purchased for an event pass type",
33879
+ "description": "Returns a paginated list of purchased passes for a given event pass type, optionally filtered to only checked-in or not-checked-in passes, with search and orderBy support; requires read access to the event and to attendees.",
33998
33880
  "parameters": [
33999
33881
  {
34000
33882
  "in": "path",
@@ -34014,6 +33896,15 @@
34014
33896
  "description": "The passType identifier",
34015
33897
  "required": true
34016
33898
  },
33899
+ {
33900
+ "in": "query",
33901
+ "name": "checkedIn",
33902
+ "schema": {
33903
+ "type": "boolean"
33904
+ },
33905
+ "description": "Filter by checkedIn",
33906
+ "required": false
33907
+ },
34017
33908
  {
34018
33909
  "in": "query",
34019
33910
  "name": "page",
@@ -34077,7 +33968,7 @@
34077
33968
  "data": {
34078
33969
  "type": "array",
34079
33970
  "items": {
34080
- "$ref": "#/components/schemas/EventPassTypeRefundSchedule"
33971
+ "$ref": "#/components/schemas/EventPass"
34081
33972
  }
34082
33973
  },
34083
33974
  "count": {
@@ -34096,13 +33987,15 @@
34096
33987
  }
34097
33988
  },
34098
33989
  "tags": [
34099
- "Events::Passtypes::Refundschedules"
33990
+ "Events::Passtypes"
34100
33991
  ]
34101
- },
34102
- "post": {
34103
- "operationId": "CreateEventPassTypeRefundSchedule",
34104
- "summary": "Create a pass type refund schedule",
34105
- "description": "Creates a time-windowed refund schedule for an event pass type, defining the refund terms available during that date range; requires update permission on events.",
33992
+ }
33993
+ },
33994
+ "/events/{eventId}/passTypes/{passTypeId}/payments": {
33995
+ "get": {
33996
+ "operationId": "GetEventPassTypePayments",
33997
+ "summary": "List payments for a pass type",
33998
+ "description": "Returns a paginated list of payments made for a specific pass type on an event, supporting search and ordering; requires read permission on events and payments.",
34106
33999
  "parameters": [
34107
34000
  {
34108
34001
  "in": "path",
@@ -34121,18 +34014,49 @@
34121
34014
  },
34122
34015
  "description": "The passType identifier",
34123
34016
  "required": true
34017
+ },
34018
+ {
34019
+ "in": "query",
34020
+ "name": "page",
34021
+ "schema": {
34022
+ "type": "integer",
34023
+ "minimum": 1,
34024
+ "default": 1
34025
+ },
34026
+ "description": "Page number",
34027
+ "required": false
34028
+ },
34029
+ {
34030
+ "in": "query",
34031
+ "name": "pageSize",
34032
+ "schema": {
34033
+ "type": "integer",
34034
+ "minimum": 1,
34035
+ "maximum": 100,
34036
+ "default": 25
34037
+ },
34038
+ "description": "Number of items per page",
34039
+ "required": false
34040
+ },
34041
+ {
34042
+ "in": "query",
34043
+ "name": "orderBy",
34044
+ "schema": {
34045
+ "type": "string"
34046
+ },
34047
+ "description": "Field to order by",
34048
+ "required": false
34049
+ },
34050
+ {
34051
+ "in": "query",
34052
+ "name": "search",
34053
+ "schema": {
34054
+ "type": "string"
34055
+ },
34056
+ "description": "Search query",
34057
+ "required": false
34124
34058
  }
34125
34059
  ],
34126
- "requestBody": {
34127
- "required": true,
34128
- "content": {
34129
- "application/json": {
34130
- "schema": {
34131
- "$ref": "#/components/schemas/PassTypeRefundScheduleCreateInputs"
34132
- }
34133
- }
34134
- }
34135
- },
34136
34060
  "responses": {
34137
34061
  "200": {
34138
34062
  "description": "Successful response",
@@ -34152,7 +34076,14 @@
34152
34076
  "example": "Success message."
34153
34077
  },
34154
34078
  "data": {
34155
- "$ref": "#/components/schemas/EventPassType"
34079
+ "type": "array",
34080
+ "items": {
34081
+ "$ref": "#/components/schemas/Payment"
34082
+ }
34083
+ },
34084
+ "count": {
34085
+ "type": "integer",
34086
+ "example": 100
34156
34087
  }
34157
34088
  },
34158
34089
  "required": [
@@ -34166,15 +34097,594 @@
34166
34097
  }
34167
34098
  },
34168
34099
  "tags": [
34169
- "Events::Passtypes::Refundschedules"
34100
+ "Events::Passtypes"
34170
34101
  ]
34171
34102
  }
34172
34103
  },
34173
- "/events/{eventId}/passTypes/{passTypeId}/refundSchedules/{scheduleId}": {
34104
+ "/events/{eventId}/passTypes/{passTypeId}/priceSchedules": {
34174
34105
  "get": {
34175
- "operationId": "GetEventPassTypeRefundSchedule",
34176
- "summary": "Get a pass type refund schedule",
34177
- "description": "Retrieves a single refund schedule entry for an event pass type by its ID, including the refund window and percentage; requires read access to the event.",
34106
+ "operationId": "GetEventPassTypePriceSchedules",
34107
+ "summary": "List a pass type's price schedules",
34108
+ "description": "Returns a paginated list of scheduled price changes for a specific event pass type, used to automate price increases or discounts on set dates, and requires the read events permission.",
34109
+ "parameters": [
34110
+ {
34111
+ "in": "path",
34112
+ "name": "eventId",
34113
+ "schema": {
34114
+ "type": "string"
34115
+ },
34116
+ "description": "The event identifier",
34117
+ "required": true
34118
+ },
34119
+ {
34120
+ "in": "path",
34121
+ "name": "passTypeId",
34122
+ "schema": {
34123
+ "type": "string"
34124
+ },
34125
+ "description": "The passType identifier",
34126
+ "required": true
34127
+ },
34128
+ {
34129
+ "in": "query",
34130
+ "name": "page",
34131
+ "schema": {
34132
+ "type": "integer",
34133
+ "minimum": 1,
34134
+ "default": 1
34135
+ },
34136
+ "description": "Page number",
34137
+ "required": false
34138
+ },
34139
+ {
34140
+ "in": "query",
34141
+ "name": "pageSize",
34142
+ "schema": {
34143
+ "type": "integer",
34144
+ "minimum": 1,
34145
+ "maximum": 100,
34146
+ "default": 25
34147
+ },
34148
+ "description": "Number of items per page",
34149
+ "required": false
34150
+ },
34151
+ {
34152
+ "in": "query",
34153
+ "name": "orderBy",
34154
+ "schema": {
34155
+ "type": "string"
34156
+ },
34157
+ "description": "Field to order by",
34158
+ "required": false
34159
+ },
34160
+ {
34161
+ "in": "query",
34162
+ "name": "search",
34163
+ "schema": {
34164
+ "type": "string"
34165
+ },
34166
+ "description": "Search query",
34167
+ "required": false
34168
+ }
34169
+ ],
34170
+ "responses": {
34171
+ "200": {
34172
+ "description": "Successful response",
34173
+ "content": {
34174
+ "application/json": {
34175
+ "schema": {
34176
+ "type": "object",
34177
+ "properties": {
34178
+ "status": {
34179
+ "type": "string",
34180
+ "enum": [
34181
+ "ok"
34182
+ ]
34183
+ },
34184
+ "message": {
34185
+ "type": "string",
34186
+ "example": "Success message."
34187
+ },
34188
+ "data": {
34189
+ "type": "array",
34190
+ "items": {
34191
+ "$ref": "#/components/schemas/EventPassTypePriceSchedule"
34192
+ }
34193
+ },
34194
+ "count": {
34195
+ "type": "integer",
34196
+ "example": 100
34197
+ }
34198
+ },
34199
+ "required": [
34200
+ "status",
34201
+ "message",
34202
+ "data"
34203
+ ]
34204
+ }
34205
+ }
34206
+ }
34207
+ }
34208
+ },
34209
+ "tags": [
34210
+ "Events::Passtypes::Priceschedules"
34211
+ ]
34212
+ },
34213
+ "post": {
34214
+ "operationId": "CreateEventPassTypePriceSchedule",
34215
+ "summary": "Create a pass type price schedule",
34216
+ "description": "Creates a time-windowed price schedule for an event pass type, rejecting the request if its date range overlaps an existing schedule; requires update permission on events.",
34217
+ "parameters": [
34218
+ {
34219
+ "in": "path",
34220
+ "name": "eventId",
34221
+ "schema": {
34222
+ "type": "string"
34223
+ },
34224
+ "description": "The event identifier",
34225
+ "required": true
34226
+ },
34227
+ {
34228
+ "in": "path",
34229
+ "name": "passTypeId",
34230
+ "schema": {
34231
+ "type": "string"
34232
+ },
34233
+ "description": "The passType identifier",
34234
+ "required": true
34235
+ }
34236
+ ],
34237
+ "requestBody": {
34238
+ "required": true,
34239
+ "content": {
34240
+ "application/json": {
34241
+ "schema": {
34242
+ "$ref": "#/components/schemas/PassTypePriceScheduleCreateInputs"
34243
+ }
34244
+ }
34245
+ }
34246
+ },
34247
+ "responses": {
34248
+ "200": {
34249
+ "description": "Successful response",
34250
+ "content": {
34251
+ "application/json": {
34252
+ "schema": {
34253
+ "type": "object",
34254
+ "properties": {
34255
+ "status": {
34256
+ "type": "string",
34257
+ "enum": [
34258
+ "ok"
34259
+ ]
34260
+ },
34261
+ "message": {
34262
+ "type": "string",
34263
+ "example": "Success message."
34264
+ },
34265
+ "data": {
34266
+ "$ref": "#/components/schemas/EventPassType"
34267
+ }
34268
+ },
34269
+ "required": [
34270
+ "status",
34271
+ "message",
34272
+ "data"
34273
+ ]
34274
+ }
34275
+ }
34276
+ }
34277
+ }
34278
+ },
34279
+ "tags": [
34280
+ "Events::Passtypes::Priceschedules"
34281
+ ]
34282
+ }
34283
+ },
34284
+ "/events/{eventId}/passTypes/{passTypeId}/priceSchedules/{scheduleId}": {
34285
+ "get": {
34286
+ "operationId": "GetEventPassTypePriceSchedule",
34287
+ "summary": "Get a single pass type price schedule",
34288
+ "description": "Returns a single scheduled price change for a specific event pass type, including its scheduled date and new price, and requires the read events permission.",
34289
+ "parameters": [
34290
+ {
34291
+ "in": "path",
34292
+ "name": "eventId",
34293
+ "schema": {
34294
+ "type": "string"
34295
+ },
34296
+ "description": "The event identifier",
34297
+ "required": true
34298
+ },
34299
+ {
34300
+ "in": "path",
34301
+ "name": "passTypeId",
34302
+ "schema": {
34303
+ "type": "string"
34304
+ },
34305
+ "description": "The passType identifier",
34306
+ "required": true
34307
+ },
34308
+ {
34309
+ "in": "path",
34310
+ "name": "scheduleId",
34311
+ "schema": {
34312
+ "type": "string"
34313
+ },
34314
+ "description": "The schedule identifier",
34315
+ "required": true
34316
+ }
34317
+ ],
34318
+ "responses": {
34319
+ "200": {
34320
+ "description": "Successful response",
34321
+ "content": {
34322
+ "application/json": {
34323
+ "schema": {
34324
+ "type": "object",
34325
+ "properties": {
34326
+ "status": {
34327
+ "type": "string",
34328
+ "enum": [
34329
+ "ok"
34330
+ ]
34331
+ },
34332
+ "message": {
34333
+ "type": "string",
34334
+ "example": "Success message."
34335
+ },
34336
+ "data": {
34337
+ "$ref": "#/components/schemas/EventPassTypePriceSchedule"
34338
+ }
34339
+ },
34340
+ "required": [
34341
+ "status",
34342
+ "message",
34343
+ "data"
34344
+ ]
34345
+ }
34346
+ }
34347
+ }
34348
+ }
34349
+ },
34350
+ "tags": [
34351
+ "Events::Passtypes::Priceschedules"
34352
+ ]
34353
+ },
34354
+ "put": {
34355
+ "operationId": "UpdateEventPassTypePriceSchedule",
34356
+ "summary": "Update a pass type price schedule",
34357
+ "description": "Updates the date range and price of an existing price schedule on an event pass type, rejecting the request if the new date range overlaps another schedule; requires update permission on events.",
34358
+ "parameters": [
34359
+ {
34360
+ "in": "path",
34361
+ "name": "eventId",
34362
+ "schema": {
34363
+ "type": "string"
34364
+ },
34365
+ "description": "The event identifier",
34366
+ "required": true
34367
+ },
34368
+ {
34369
+ "in": "path",
34370
+ "name": "passTypeId",
34371
+ "schema": {
34372
+ "type": "string"
34373
+ },
34374
+ "description": "The passType identifier",
34375
+ "required": true
34376
+ },
34377
+ {
34378
+ "in": "path",
34379
+ "name": "scheduleId",
34380
+ "schema": {
34381
+ "type": "string"
34382
+ },
34383
+ "description": "The schedule identifier",
34384
+ "required": true
34385
+ }
34386
+ ],
34387
+ "requestBody": {
34388
+ "required": true,
34389
+ "content": {
34390
+ "application/json": {
34391
+ "schema": {
34392
+ "$ref": "#/components/schemas/PassTypePriceScheduleUpdateInputs"
34393
+ }
34394
+ }
34395
+ }
34396
+ },
34397
+ "responses": {
34398
+ "200": {
34399
+ "description": "Successful response",
34400
+ "content": {
34401
+ "application/json": {
34402
+ "schema": {
34403
+ "type": "object",
34404
+ "properties": {
34405
+ "status": {
34406
+ "type": "string",
34407
+ "enum": [
34408
+ "ok"
34409
+ ]
34410
+ },
34411
+ "message": {
34412
+ "type": "string",
34413
+ "example": "Success message."
34414
+ },
34415
+ "data": {
34416
+ "type": "object"
34417
+ }
34418
+ },
34419
+ "required": [
34420
+ "status",
34421
+ "message",
34422
+ "data"
34423
+ ]
34424
+ }
34425
+ }
34426
+ }
34427
+ }
34428
+ },
34429
+ "tags": [
34430
+ "Events::Passtypes::Priceschedules"
34431
+ ]
34432
+ },
34433
+ "delete": {
34434
+ "operationId": "DeleteEventPassTypePriceSchedule",
34435
+ "summary": "Delete a pass type price schedule",
34436
+ "description": "Permanently removes a price schedule from an event pass type by its schedule ID; requires update permission on events.",
34437
+ "parameters": [
34438
+ {
34439
+ "in": "path",
34440
+ "name": "eventId",
34441
+ "schema": {
34442
+ "type": "string"
34443
+ },
34444
+ "description": "The event identifier",
34445
+ "required": true
34446
+ },
34447
+ {
34448
+ "in": "path",
34449
+ "name": "passTypeId",
34450
+ "schema": {
34451
+ "type": "string"
34452
+ },
34453
+ "description": "The passType identifier",
34454
+ "required": true
34455
+ },
34456
+ {
34457
+ "in": "path",
34458
+ "name": "scheduleId",
34459
+ "schema": {
34460
+ "type": "string"
34461
+ },
34462
+ "description": "The schedule identifier",
34463
+ "required": true
34464
+ }
34465
+ ],
34466
+ "responses": {
34467
+ "200": {
34468
+ "description": "Successful response",
34469
+ "content": {
34470
+ "application/json": {
34471
+ "schema": {
34472
+ "type": "object",
34473
+ "properties": {
34474
+ "status": {
34475
+ "type": "string",
34476
+ "enum": [
34477
+ "ok"
34478
+ ]
34479
+ },
34480
+ "message": {
34481
+ "type": "string",
34482
+ "example": "Success message."
34483
+ },
34484
+ "data": {
34485
+ "type": "object"
34486
+ }
34487
+ },
34488
+ "required": [
34489
+ "status",
34490
+ "message",
34491
+ "data"
34492
+ ]
34493
+ }
34494
+ }
34495
+ }
34496
+ }
34497
+ },
34498
+ "tags": [
34499
+ "Events::Passtypes::Priceschedules"
34500
+ ]
34501
+ }
34502
+ },
34503
+ "/events/{eventId}/passTypes/{passTypeId}/refundSchedules": {
34504
+ "get": {
34505
+ "operationId": "GetEventPassTypeRefundSchedules",
34506
+ "summary": "List a pass type's refund schedules",
34507
+ "description": "Returns a paginated list of refund schedules configured for an event pass type, ordered by start date by default, and supports search and orderBy filters; requires read access to the event.",
34508
+ "parameters": [
34509
+ {
34510
+ "in": "path",
34511
+ "name": "eventId",
34512
+ "schema": {
34513
+ "type": "string"
34514
+ },
34515
+ "description": "The event identifier",
34516
+ "required": true
34517
+ },
34518
+ {
34519
+ "in": "path",
34520
+ "name": "passTypeId",
34521
+ "schema": {
34522
+ "type": "string"
34523
+ },
34524
+ "description": "The passType identifier",
34525
+ "required": true
34526
+ },
34527
+ {
34528
+ "in": "query",
34529
+ "name": "page",
34530
+ "schema": {
34531
+ "type": "integer",
34532
+ "minimum": 1,
34533
+ "default": 1
34534
+ },
34535
+ "description": "Page number",
34536
+ "required": false
34537
+ },
34538
+ {
34539
+ "in": "query",
34540
+ "name": "pageSize",
34541
+ "schema": {
34542
+ "type": "integer",
34543
+ "minimum": 1,
34544
+ "maximum": 100,
34545
+ "default": 25
34546
+ },
34547
+ "description": "Number of items per page",
34548
+ "required": false
34549
+ },
34550
+ {
34551
+ "in": "query",
34552
+ "name": "orderBy",
34553
+ "schema": {
34554
+ "type": "string"
34555
+ },
34556
+ "description": "Field to order by",
34557
+ "required": false
34558
+ },
34559
+ {
34560
+ "in": "query",
34561
+ "name": "search",
34562
+ "schema": {
34563
+ "type": "string"
34564
+ },
34565
+ "description": "Search query",
34566
+ "required": false
34567
+ }
34568
+ ],
34569
+ "responses": {
34570
+ "200": {
34571
+ "description": "Successful response",
34572
+ "content": {
34573
+ "application/json": {
34574
+ "schema": {
34575
+ "type": "object",
34576
+ "properties": {
34577
+ "status": {
34578
+ "type": "string",
34579
+ "enum": [
34580
+ "ok"
34581
+ ]
34582
+ },
34583
+ "message": {
34584
+ "type": "string",
34585
+ "example": "Success message."
34586
+ },
34587
+ "data": {
34588
+ "type": "array",
34589
+ "items": {
34590
+ "$ref": "#/components/schemas/EventPassTypeRefundSchedule"
34591
+ }
34592
+ },
34593
+ "count": {
34594
+ "type": "integer",
34595
+ "example": 100
34596
+ }
34597
+ },
34598
+ "required": [
34599
+ "status",
34600
+ "message",
34601
+ "data"
34602
+ ]
34603
+ }
34604
+ }
34605
+ }
34606
+ }
34607
+ },
34608
+ "tags": [
34609
+ "Events::Passtypes::Refundschedules"
34610
+ ]
34611
+ },
34612
+ "post": {
34613
+ "operationId": "CreateEventPassTypeRefundSchedule",
34614
+ "summary": "Create a pass type refund schedule",
34615
+ "description": "Creates a time-windowed refund schedule for an event pass type, defining the refund terms available during that date range; requires update permission on events.",
34616
+ "parameters": [
34617
+ {
34618
+ "in": "path",
34619
+ "name": "eventId",
34620
+ "schema": {
34621
+ "type": "string"
34622
+ },
34623
+ "description": "The event identifier",
34624
+ "required": true
34625
+ },
34626
+ {
34627
+ "in": "path",
34628
+ "name": "passTypeId",
34629
+ "schema": {
34630
+ "type": "string"
34631
+ },
34632
+ "description": "The passType identifier",
34633
+ "required": true
34634
+ }
34635
+ ],
34636
+ "requestBody": {
34637
+ "required": true,
34638
+ "content": {
34639
+ "application/json": {
34640
+ "schema": {
34641
+ "$ref": "#/components/schemas/PassTypeRefundScheduleCreateInputs"
34642
+ }
34643
+ }
34644
+ }
34645
+ },
34646
+ "responses": {
34647
+ "200": {
34648
+ "description": "Successful response",
34649
+ "content": {
34650
+ "application/json": {
34651
+ "schema": {
34652
+ "type": "object",
34653
+ "properties": {
34654
+ "status": {
34655
+ "type": "string",
34656
+ "enum": [
34657
+ "ok"
34658
+ ]
34659
+ },
34660
+ "message": {
34661
+ "type": "string",
34662
+ "example": "Success message."
34663
+ },
34664
+ "data": {
34665
+ "$ref": "#/components/schemas/EventPassType"
34666
+ }
34667
+ },
34668
+ "required": [
34669
+ "status",
34670
+ "message",
34671
+ "data"
34672
+ ]
34673
+ }
34674
+ }
34675
+ }
34676
+ }
34677
+ },
34678
+ "tags": [
34679
+ "Events::Passtypes::Refundschedules"
34680
+ ]
34681
+ }
34682
+ },
34683
+ "/events/{eventId}/passTypes/{passTypeId}/refundSchedules/{scheduleId}": {
34684
+ "get": {
34685
+ "operationId": "GetEventPassTypeRefundSchedule",
34686
+ "summary": "Get a pass type refund schedule",
34687
+ "description": "Retrieves a single refund schedule entry for an event pass type by its ID, including the refund window and percentage; requires read access to the event.",
34178
34688
  "parameters": [
34179
34689
  {
34180
34690
  "in": "path",
@@ -97704,6 +98214,9 @@
97704
98214
  "groupOnly": {
97705
98215
  "type": "boolean"
97706
98216
  },
98217
+ "guestRegistration": {
98218
+ "type": "boolean"
98219
+ },
97707
98220
  "backgroundImageId": {
97708
98221
  "type": "string",
97709
98222
  "nullable": true
@@ -97811,6 +98324,7 @@
97811
98324
  "groupId",
97812
98325
  "group",
97813
98326
  "groupOnly",
98327
+ "guestRegistration",
97814
98328
  "backgroundImageId",
97815
98329
  "backgroundImage",
97816
98330
  "registrationHeaderImageId",
@@ -101223,6 +101737,14 @@
101223
101737
  ],
101224
101738
  "nullable": true
101225
101739
  },
101740
+ "exchangeTarget": {
101741
+ "allOf": [
101742
+ {
101743
+ "$ref": "#/components/schemas/BaseEventPassTypeExchangeTarget"
101744
+ }
101745
+ ],
101746
+ "nullable": true
101747
+ },
101226
101748
  "metadata": {
101227
101749
  "type": "object"
101228
101750
  },
@@ -101259,6 +101781,7 @@
101259
101781
  "coupon",
101260
101782
  "invoice",
101261
101783
  "series",
101784
+ "exchangeTarget",
101262
101785
  "lineItems"
101263
101786
  ]
101264
101787
  }
@@ -106981,6 +107504,151 @@
106981
107504
  }
106982
107505
  ]
106983
107506
  },
107507
+ "BaseEventPassTypeExchangeTarget": {
107508
+ "type": "object",
107509
+ "properties": {
107510
+ "id": {
107511
+ "type": "string"
107512
+ },
107513
+ "enabled": {
107514
+ "type": "boolean"
107515
+ },
107516
+ "sourcePassTypeId": {
107517
+ "type": "string"
107518
+ },
107519
+ "sourcePassType": {
107520
+ "$ref": "#/components/schemas/BaseEventPassType"
107521
+ },
107522
+ "targetPassTypeId": {
107523
+ "type": "string"
107524
+ },
107525
+ "targetPassType": {
107526
+ "$ref": "#/components/schemas/BaseEventPassType"
107527
+ },
107528
+ "fixedPricing": {
107529
+ "type": "boolean"
107530
+ },
107531
+ "amount": {
107532
+ "type": "number"
107533
+ },
107534
+ "startDate": {
107535
+ "type": "string",
107536
+ "nullable": true
107537
+ },
107538
+ "endDate": {
107539
+ "type": "string",
107540
+ "nullable": true
107541
+ }
107542
+ },
107543
+ "required": [
107544
+ "id",
107545
+ "enabled",
107546
+ "sourcePassTypeId",
107547
+ "sourcePassType",
107548
+ "targetPassTypeId",
107549
+ "targetPassType",
107550
+ "fixedPricing",
107551
+ "amount",
107552
+ "startDate",
107553
+ "endDate"
107554
+ ]
107555
+ },
107556
+ "EventPassTypeExchangeTarget": {
107557
+ "allOf": [
107558
+ {
107559
+ "$ref": "#/components/schemas/BaseEventPassTypeExchangeTarget"
107560
+ },
107561
+ {
107562
+ "type": "object",
107563
+ "properties": {
107564
+ "createdAt": {
107565
+ "type": "string"
107566
+ },
107567
+ "updatedAt": {
107568
+ "type": "string"
107569
+ }
107570
+ },
107571
+ "required": [
107572
+ "createdAt",
107573
+ "updatedAt"
107574
+ ]
107575
+ }
107576
+ ]
107577
+ },
107578
+ "ExchangeType": {
107579
+ "type": "string",
107580
+ "enum": [
107581
+ "upgrade",
107582
+ "downgrade",
107583
+ "swap"
107584
+ ]
107585
+ },
107586
+ "BasePassExchange": {
107587
+ "type": "object",
107588
+ "properties": {
107589
+ "id": {
107590
+ "type": "string"
107591
+ },
107592
+ "accountId": {
107593
+ "type": "string"
107594
+ },
107595
+ "passId": {
107596
+ "type": "string"
107597
+ },
107598
+ "exchangeType": {
107599
+ "$ref": "#/components/schemas/ExchangeType"
107600
+ },
107601
+ "exchangeTargetId": {
107602
+ "type": "string"
107603
+ },
107604
+ "exchangeTarget": {
107605
+ "$ref": "#/components/schemas/EventPassTypeExchangeTarget"
107606
+ },
107607
+ "lineItem": {
107608
+ "allOf": [
107609
+ {
107610
+ "$ref": "#/components/schemas/BasePaymentLineItem"
107611
+ }
107612
+ ],
107613
+ "nullable": true
107614
+ }
107615
+ },
107616
+ "required": [
107617
+ "id",
107618
+ "accountId",
107619
+ "passId",
107620
+ "exchangeType",
107621
+ "exchangeTargetId",
107622
+ "exchangeTarget",
107623
+ "lineItem"
107624
+ ]
107625
+ },
107626
+ "PassExchange": {
107627
+ "allOf": [
107628
+ {
107629
+ "$ref": "#/components/schemas/BasePassExchange"
107630
+ },
107631
+ {
107632
+ "type": "object",
107633
+ "properties": {
107634
+ "account": {
107635
+ "$ref": "#/components/schemas/BaseAccount"
107636
+ },
107637
+ "pass": {
107638
+ "$ref": "#/components/schemas/BaseEventPass"
107639
+ },
107640
+ "createdAt": {
107641
+ "type": "string"
107642
+ }
107643
+ },
107644
+ "required": [
107645
+ "account",
107646
+ "pass",
107647
+ "createdAt"
107648
+ ]
107649
+ }
107650
+ ]
107651
+ },
106984
107652
  "EventPassTypeTranslation": {
106985
107653
  "type": "object",
106986
107654
  "properties": {
@@ -115645,265 +116313,271 @@
115645
116313
  "groupOnly": {
115646
116314
  "type": "boolean"
115647
116315
  },
115648
- "passSupply": {
115649
- "oneOf": [
115650
- {
115651
- "type": "number"
115652
- },
115653
- {
115654
- "type": "string"
115655
- }
115656
- ],
115657
- "nullable": true
115658
- },
115659
- "passLimitPerAccount": {
115660
- "oneOf": [
115661
- {
115662
- "type": "string"
115663
- },
115664
- {
115665
- "type": "number"
115666
- }
115667
- ],
115668
- "nullable": true
115669
- },
115670
- "roundName": {
115671
- "type": "string",
115672
- "nullable": true
115673
- },
115674
- "matchName": {
115675
- "type": "string",
115676
- "nullable": true
115677
- },
115678
- "activityFeedEnabled": {
115679
- "type": "boolean"
115680
- },
115681
- "options": {
115682
- "type": "object",
115683
- "nullable": true
115684
- },
115685
- "paymentIntegrationId": {
115686
- "type": "string",
115687
- "nullable": true
115688
- },
115689
- "template": {
115690
- "type": "boolean"
115691
- },
115692
- "meetingId": {
115693
- "type": "string",
115694
- "nullable": true
115695
- },
115696
- "continuousScanning": {
115697
- "type": "boolean"
115698
- },
115699
- "scanType": {
115700
- "allOf": [
115701
- {
115702
- "$ref": "#/components/schemas/OnSiteScanType"
115703
- }
115704
- ],
115705
- "nullable": true
115706
- },
115707
- "activationsDescription": {
115708
- "type": "string",
115709
- "nullable": true
115710
- },
115711
- "activationsLabel": {
115712
- "type": "string"
115713
- }
115714
- },
115715
- "required": [
115716
- "eventType",
115717
- "name",
115718
- "shortDescription",
115719
- "timezone",
115720
- "eventStart",
115721
- "eventEnd"
115722
- ]
115723
- },
115724
- "EventUpdateInputs": {
115725
- "type": "object",
115726
- "properties": {
115727
- "featured": {
115728
- "type": "boolean"
115729
- },
115730
- "visible": {
115731
- "type": "boolean"
115732
- },
115733
- "archived": {
115734
- "type": "boolean"
115735
- },
115736
- "name": {
115737
- "type": "string",
115738
- "nullable": true
115739
- },
115740
- "eventType": {
115741
- "allOf": [
115742
- {
115743
- "$ref": "#/components/schemas/EventType"
115744
- }
115745
- ],
115746
- "nullable": true
115747
- },
115748
- "slug": {
115749
- "type": "string",
115750
- "nullable": true
115751
- },
115752
- "internalRefId": {
115753
- "type": "string",
115754
- "nullable": true
115755
- },
115756
- "shortDescription": {
115757
- "type": "string",
115758
- "nullable": true
115759
- },
115760
- "longDescription": {
115761
- "type": "string",
115762
- "nullable": true
115763
- },
115764
- "reservationDescription": {
115765
- "type": "string",
115766
- "nullable": true
115767
- },
115768
- "timezone": {
115769
- "type": "string",
115770
- "nullable": true
115771
- },
115772
- "eventStart": {
115773
- "type": "string",
115774
- "nullable": true
115775
- },
115776
- "eventEnd": {
115777
- "type": "string",
115778
- "nullable": true
115779
- },
115780
- "externalUrl": {
115781
- "type": "string",
115782
- "nullable": true
115783
- },
115784
- "externalMeetingUrl": {
115785
- "type": "string",
115786
- "nullable": true
115787
- },
115788
- "imageId": {
115789
- "type": "string",
115790
- "nullable": true
115791
- },
115792
- "squareImageId": {
115793
- "type": "string",
115794
- "nullable": true
115795
- },
115796
- "backgroundImageId": {
115797
- "type": "string",
115798
- "nullable": true
115799
- },
115800
- "creatorId": {
115801
- "type": "string",
115802
- "nullable": true
115803
- },
115804
- "seriesId": {
115805
- "type": "string",
115806
- "nullable": true
115807
- },
115808
- "registration": {
115809
- "type": "boolean"
115810
- },
115811
- "registrationStart": {
115812
- "type": "string",
115813
- "nullable": true
115814
- },
115815
- "registrationEnd": {
115816
- "type": "string",
115817
- "nullable": true
115818
- },
115819
- "registrationHeaderImageId": {
115820
- "type": "string",
115821
- "nullable": true
115822
- },
115823
- "registrationFooterImageId": {
115824
- "type": "string",
115825
- "nullable": true
115826
- },
115827
- "registrationHideTitle": {
115828
- "type": "boolean"
115829
- },
115830
- "registrationLimit": {
115831
- "oneOf": [
115832
- {
115833
- "type": "number"
115834
- },
115835
- {
115836
- "type": "string"
115837
- }
115838
- ],
115839
- "nullable": true
115840
- },
115841
- "allowMultipleRegistrations": {
115842
- "type": "boolean"
115843
- },
115844
- "allowSplitPayment": {
115845
- "type": "boolean"
115846
- },
115847
- "splitPaymentPercentage": {
115848
- "oneOf": [
115849
- {
115850
- "type": "number"
115851
- },
115852
- {
115853
- "type": "string"
115854
- }
115855
- ]
115856
- },
115857
- "splitPaymentNetDays": {
115858
- "oneOf": [
115859
- {
115860
- "type": "number"
115861
- },
115862
- {
115863
- "type": "string"
115864
- }
115865
- ],
115866
- "nullable": true
115867
- },
115868
- "splitPaymentDueDate": {
115869
- "type": "string",
115870
- "nullable": true
115871
- },
115872
- "publicRegistrants": {
115873
- "type": "boolean"
115874
- },
115875
- "sessionsVisibility": {
115876
- "$ref": "#/components/schemas/EventAgendaVisibility"
115877
- },
115878
- "speakersVisibility": {
115879
- "$ref": "#/components/schemas/EventAgendaVisibility"
115880
- },
115881
- "inviteOnly": {
115882
- "type": "boolean"
115883
- },
115884
- "iosAppLink": {
115885
- "type": "string",
115886
- "nullable": true
115887
- },
115888
- "androidAppLink": {
115889
- "type": "string",
115890
- "nullable": true
115891
- },
115892
- "newActivityCreatorEmailNotification": {
115893
- "type": "boolean"
115894
- },
115895
- "newActivityCreatorPushNotification": {
115896
- "type": "boolean"
115897
- },
115898
- "streamReplayId": {
115899
- "type": "string",
115900
- "nullable": true
115901
- },
115902
- "groupId": {
115903
- "type": "string",
115904
- "nullable": true
115905
- },
115906
- "groupOnly": {
116316
+ "guestRegistration": {
116317
+ "type": "boolean"
116318
+ },
116319
+ "passSupply": {
116320
+ "oneOf": [
116321
+ {
116322
+ "type": "number"
116323
+ },
116324
+ {
116325
+ "type": "string"
116326
+ }
116327
+ ],
116328
+ "nullable": true
116329
+ },
116330
+ "passLimitPerAccount": {
116331
+ "oneOf": [
116332
+ {
116333
+ "type": "string"
116334
+ },
116335
+ {
116336
+ "type": "number"
116337
+ }
116338
+ ],
116339
+ "nullable": true
116340
+ },
116341
+ "roundName": {
116342
+ "type": "string",
116343
+ "nullable": true
116344
+ },
116345
+ "matchName": {
116346
+ "type": "string",
116347
+ "nullable": true
116348
+ },
116349
+ "activityFeedEnabled": {
116350
+ "type": "boolean"
116351
+ },
116352
+ "options": {
116353
+ "type": "object",
116354
+ "nullable": true
116355
+ },
116356
+ "paymentIntegrationId": {
116357
+ "type": "string",
116358
+ "nullable": true
116359
+ },
116360
+ "template": {
116361
+ "type": "boolean"
116362
+ },
116363
+ "meetingId": {
116364
+ "type": "string",
116365
+ "nullable": true
116366
+ },
116367
+ "continuousScanning": {
116368
+ "type": "boolean"
116369
+ },
116370
+ "scanType": {
116371
+ "allOf": [
116372
+ {
116373
+ "$ref": "#/components/schemas/OnSiteScanType"
116374
+ }
116375
+ ],
116376
+ "nullable": true
116377
+ },
116378
+ "activationsDescription": {
116379
+ "type": "string",
116380
+ "nullable": true
116381
+ },
116382
+ "activationsLabel": {
116383
+ "type": "string"
116384
+ }
116385
+ },
116386
+ "required": [
116387
+ "eventType",
116388
+ "name",
116389
+ "shortDescription",
116390
+ "timezone",
116391
+ "eventStart",
116392
+ "eventEnd"
116393
+ ]
116394
+ },
116395
+ "EventUpdateInputs": {
116396
+ "type": "object",
116397
+ "properties": {
116398
+ "featured": {
116399
+ "type": "boolean"
116400
+ },
116401
+ "visible": {
116402
+ "type": "boolean"
116403
+ },
116404
+ "archived": {
116405
+ "type": "boolean"
116406
+ },
116407
+ "name": {
116408
+ "type": "string",
116409
+ "nullable": true
116410
+ },
116411
+ "eventType": {
116412
+ "allOf": [
116413
+ {
116414
+ "$ref": "#/components/schemas/EventType"
116415
+ }
116416
+ ],
116417
+ "nullable": true
116418
+ },
116419
+ "slug": {
116420
+ "type": "string",
116421
+ "nullable": true
116422
+ },
116423
+ "internalRefId": {
116424
+ "type": "string",
116425
+ "nullable": true
116426
+ },
116427
+ "shortDescription": {
116428
+ "type": "string",
116429
+ "nullable": true
116430
+ },
116431
+ "longDescription": {
116432
+ "type": "string",
116433
+ "nullable": true
116434
+ },
116435
+ "reservationDescription": {
116436
+ "type": "string",
116437
+ "nullable": true
116438
+ },
116439
+ "timezone": {
116440
+ "type": "string",
116441
+ "nullable": true
116442
+ },
116443
+ "eventStart": {
116444
+ "type": "string",
116445
+ "nullable": true
116446
+ },
116447
+ "eventEnd": {
116448
+ "type": "string",
116449
+ "nullable": true
116450
+ },
116451
+ "externalUrl": {
116452
+ "type": "string",
116453
+ "nullable": true
116454
+ },
116455
+ "externalMeetingUrl": {
116456
+ "type": "string",
116457
+ "nullable": true
116458
+ },
116459
+ "imageId": {
116460
+ "type": "string",
116461
+ "nullable": true
116462
+ },
116463
+ "squareImageId": {
116464
+ "type": "string",
116465
+ "nullable": true
116466
+ },
116467
+ "backgroundImageId": {
116468
+ "type": "string",
116469
+ "nullable": true
116470
+ },
116471
+ "creatorId": {
116472
+ "type": "string",
116473
+ "nullable": true
116474
+ },
116475
+ "seriesId": {
116476
+ "type": "string",
116477
+ "nullable": true
116478
+ },
116479
+ "registration": {
116480
+ "type": "boolean"
116481
+ },
116482
+ "registrationStart": {
116483
+ "type": "string",
116484
+ "nullable": true
116485
+ },
116486
+ "registrationEnd": {
116487
+ "type": "string",
116488
+ "nullable": true
116489
+ },
116490
+ "registrationHeaderImageId": {
116491
+ "type": "string",
116492
+ "nullable": true
116493
+ },
116494
+ "registrationFooterImageId": {
116495
+ "type": "string",
116496
+ "nullable": true
116497
+ },
116498
+ "registrationHideTitle": {
116499
+ "type": "boolean"
116500
+ },
116501
+ "registrationLimit": {
116502
+ "oneOf": [
116503
+ {
116504
+ "type": "number"
116505
+ },
116506
+ {
116507
+ "type": "string"
116508
+ }
116509
+ ],
116510
+ "nullable": true
116511
+ },
116512
+ "allowMultipleRegistrations": {
116513
+ "type": "boolean"
116514
+ },
116515
+ "allowSplitPayment": {
116516
+ "type": "boolean"
116517
+ },
116518
+ "splitPaymentPercentage": {
116519
+ "oneOf": [
116520
+ {
116521
+ "type": "number"
116522
+ },
116523
+ {
116524
+ "type": "string"
116525
+ }
116526
+ ]
116527
+ },
116528
+ "splitPaymentNetDays": {
116529
+ "oneOf": [
116530
+ {
116531
+ "type": "number"
116532
+ },
116533
+ {
116534
+ "type": "string"
116535
+ }
116536
+ ],
116537
+ "nullable": true
116538
+ },
116539
+ "splitPaymentDueDate": {
116540
+ "type": "string",
116541
+ "nullable": true
116542
+ },
116543
+ "publicRegistrants": {
116544
+ "type": "boolean"
116545
+ },
116546
+ "sessionsVisibility": {
116547
+ "$ref": "#/components/schemas/EventAgendaVisibility"
116548
+ },
116549
+ "speakersVisibility": {
116550
+ "$ref": "#/components/schemas/EventAgendaVisibility"
116551
+ },
116552
+ "inviteOnly": {
116553
+ "type": "boolean"
116554
+ },
116555
+ "iosAppLink": {
116556
+ "type": "string",
116557
+ "nullable": true
116558
+ },
116559
+ "androidAppLink": {
116560
+ "type": "string",
116561
+ "nullable": true
116562
+ },
116563
+ "newActivityCreatorEmailNotification": {
116564
+ "type": "boolean"
116565
+ },
116566
+ "newActivityCreatorPushNotification": {
116567
+ "type": "boolean"
116568
+ },
116569
+ "streamReplayId": {
116570
+ "type": "string",
116571
+ "nullable": true
116572
+ },
116573
+ "groupId": {
116574
+ "type": "string",
116575
+ "nullable": true
116576
+ },
116577
+ "groupOnly": {
116578
+ "type": "boolean"
116579
+ },
116580
+ "guestRegistration": {
115907
116581
  "type": "boolean"
115908
116582
  },
115909
116583
  "passSupply": {
@@ -120621,6 +121295,57 @@
120621
121295
  }
120622
121296
  }
120623
121297
  },
121298
+ "PassTypeExchangeTargetCreateInputs": {
121299
+ "type": "object",
121300
+ "properties": {
121301
+ "enabled": {
121302
+ "type": "boolean"
121303
+ },
121304
+ "targetPassTypeId": {
121305
+ "type": "string"
121306
+ },
121307
+ "fixedPricing": {
121308
+ "type": "boolean"
121309
+ },
121310
+ "amount": {
121311
+ "type": "number"
121312
+ },
121313
+ "startDate": {
121314
+ "type": "string",
121315
+ "nullable": true
121316
+ },
121317
+ "endDate": {
121318
+ "type": "string",
121319
+ "nullable": true
121320
+ }
121321
+ },
121322
+ "required": [
121323
+ "enabled",
121324
+ "targetPassTypeId"
121325
+ ]
121326
+ },
121327
+ "PassTypeExchangeTargetUpdateInputs": {
121328
+ "type": "object",
121329
+ "properties": {
121330
+ "enabled": {
121331
+ "type": "boolean"
121332
+ },
121333
+ "fixedPricing": {
121334
+ "type": "boolean"
121335
+ },
121336
+ "amount": {
121337
+ "type": "number"
121338
+ },
121339
+ "startDate": {
121340
+ "type": "string",
121341
+ "nullable": true
121342
+ },
121343
+ "endDate": {
121344
+ "type": "string",
121345
+ "nullable": true
121346
+ }
121347
+ }
121348
+ },
120624
121349
  "IntegrationCreateInputs": {
120625
121350
  "type": "object",
120626
121351
  "properties": {