@connectedxm/admin 7.8.0 → 7.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/openapi.json CHANGED
@@ -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",
@@ -32957,12 +32899,564 @@
32957
32899
  },
32958
32900
  {
32959
32901
  "in": "path",
32960
- "name": "addOnId",
32902
+ "name": "addOnId",
32903
+ "schema": {
32904
+ "type": "string"
32905
+ },
32906
+ "description": "The addOn identifier",
32907
+ "required": true
32908
+ }
32909
+ ],
32910
+ "responses": {
32911
+ "200": {
32912
+ "description": "Successful response",
32913
+ "content": {
32914
+ "application/json": {
32915
+ "schema": {
32916
+ "type": "object",
32917
+ "properties": {
32918
+ "status": {
32919
+ "type": "string",
32920
+ "enum": [
32921
+ "ok"
32922
+ ]
32923
+ },
32924
+ "message": {
32925
+ "type": "string",
32926
+ "example": "Success message."
32927
+ },
32928
+ "data": {
32929
+ "$ref": "#/components/schemas/EventPassType"
32930
+ }
32931
+ },
32932
+ "required": [
32933
+ "status",
32934
+ "message",
32935
+ "data"
32936
+ ]
32937
+ }
32938
+ }
32939
+ }
32940
+ }
32941
+ },
32942
+ "tags": [
32943
+ "Events::Passtypes"
32944
+ ]
32945
+ }
32946
+ },
32947
+ "/events/{eventId}/passTypes/{passTypeId}/coupons": {
32948
+ "get": {
32949
+ "operationId": "EventGetPassTypeCoupons",
32950
+ "summary": "List an event pass type's coupons",
32951
+ "description": "Returns a paginated list of coupons that apply to an event pass type, with optional search and orderBy filters; requires read access to the event.",
32952
+ "parameters": [
32953
+ {
32954
+ "in": "path",
32955
+ "name": "eventId",
32956
+ "schema": {
32957
+ "type": "string"
32958
+ },
32959
+ "description": "The event identifier",
32960
+ "required": true
32961
+ },
32962
+ {
32963
+ "in": "path",
32964
+ "name": "passTypeId",
32965
+ "schema": {
32966
+ "type": "string"
32967
+ },
32968
+ "description": "The passType identifier",
32969
+ "required": true
32970
+ },
32971
+ {
32972
+ "in": "query",
32973
+ "name": "page",
32974
+ "schema": {
32975
+ "type": "integer",
32976
+ "minimum": 1,
32977
+ "default": 1
32978
+ },
32979
+ "description": "Page number",
32980
+ "required": false
32981
+ },
32982
+ {
32983
+ "in": "query",
32984
+ "name": "pageSize",
32985
+ "schema": {
32986
+ "type": "integer",
32987
+ "minimum": 1,
32988
+ "maximum": 100,
32989
+ "default": 25
32990
+ },
32991
+ "description": "Number of items per page",
32992
+ "required": false
32993
+ },
32994
+ {
32995
+ "in": "query",
32996
+ "name": "orderBy",
32997
+ "schema": {
32998
+ "type": "string"
32999
+ },
33000
+ "description": "Field to order by",
33001
+ "required": false
33002
+ },
33003
+ {
33004
+ "in": "query",
33005
+ "name": "search",
33006
+ "schema": {
33007
+ "type": "string"
33008
+ },
33009
+ "description": "Search query",
33010
+ "required": false
33011
+ }
33012
+ ],
33013
+ "responses": {
33014
+ "200": {
33015
+ "description": "Successful response",
33016
+ "content": {
33017
+ "application/json": {
33018
+ "schema": {
33019
+ "type": "object",
33020
+ "properties": {
33021
+ "status": {
33022
+ "type": "string",
33023
+ "enum": [
33024
+ "ok"
33025
+ ]
33026
+ },
33027
+ "message": {
33028
+ "type": "string",
33029
+ "example": "Success message."
33030
+ },
33031
+ "data": {
33032
+ "type": "array",
33033
+ "items": {
33034
+ "$ref": "#/components/schemas/Coupon"
33035
+ }
33036
+ },
33037
+ "count": {
33038
+ "type": "integer",
33039
+ "example": 100
33040
+ }
33041
+ },
33042
+ "required": [
33043
+ "status",
33044
+ "message",
33045
+ "data"
33046
+ ]
33047
+ }
33048
+ }
33049
+ }
33050
+ }
33051
+ },
33052
+ "tags": [
33053
+ "Events::Passtypes"
33054
+ ]
33055
+ }
33056
+ },
33057
+ "/events/{eventId}/passTypes/{passTypeId}/exchangeTargets": {
33058
+ "get": {
33059
+ "operationId": "GetEventPassTypeExchangeTargets",
33060
+ "summary": "Get Event Pass Type Exchange Targets",
33061
+ "description": "Get Event Pass Type Exchange Targets endpoint",
33062
+ "parameters": [
33063
+ {
33064
+ "in": "path",
33065
+ "name": "eventId",
33066
+ "schema": {
33067
+ "type": "string"
33068
+ },
33069
+ "description": "The event identifier",
33070
+ "required": true
33071
+ },
33072
+ {
33073
+ "in": "path",
33074
+ "name": "passTypeId",
33075
+ "schema": {
33076
+ "type": "string"
33077
+ },
33078
+ "description": "The passType identifier",
33079
+ "required": true
33080
+ },
33081
+ {
33082
+ "in": "query",
33083
+ "name": "page",
33084
+ "schema": {
33085
+ "type": "integer",
33086
+ "minimum": 1,
33087
+ "default": 1
33088
+ },
33089
+ "description": "Page number",
33090
+ "required": false
33091
+ },
33092
+ {
33093
+ "in": "query",
33094
+ "name": "pageSize",
33095
+ "schema": {
33096
+ "type": "integer",
33097
+ "minimum": 1,
33098
+ "maximum": 100,
33099
+ "default": 25
33100
+ },
33101
+ "description": "Number of items per page",
33102
+ "required": false
33103
+ },
33104
+ {
33105
+ "in": "query",
33106
+ "name": "orderBy",
33107
+ "schema": {
33108
+ "type": "string"
33109
+ },
33110
+ "description": "Field to order by",
33111
+ "required": false
33112
+ },
33113
+ {
33114
+ "in": "query",
33115
+ "name": "search",
33116
+ "schema": {
33117
+ "type": "string"
33118
+ },
33119
+ "description": "Search query",
33120
+ "required": false
33121
+ }
33122
+ ],
33123
+ "responses": {
33124
+ "200": {
33125
+ "description": "Successful response",
33126
+ "content": {
33127
+ "application/json": {
33128
+ "schema": {
33129
+ "type": "object",
33130
+ "properties": {
33131
+ "status": {
33132
+ "type": "string",
33133
+ "enum": [
33134
+ "ok"
33135
+ ]
33136
+ },
33137
+ "message": {
33138
+ "type": "string",
33139
+ "example": "Success message."
33140
+ },
33141
+ "data": {
33142
+ "type": "array",
33143
+ "items": {
33144
+ "$ref": "#/components/schemas/EventPassTypeExchangeTarget"
33145
+ }
33146
+ },
33147
+ "count": {
33148
+ "type": "integer",
33149
+ "example": 100
33150
+ }
33151
+ },
33152
+ "required": [
33153
+ "status",
33154
+ "message",
33155
+ "data"
33156
+ ]
33157
+ }
33158
+ }
33159
+ }
33160
+ }
33161
+ },
33162
+ "tags": [
33163
+ "Events::Passtypes::Exchangetargets"
33164
+ ]
33165
+ },
33166
+ "post": {
33167
+ "operationId": "AddEventPassTypeExchangeTarget",
33168
+ "summary": "Add Event Pass Type Exchange Target",
33169
+ "description": "Add Event Pass Type Exchange Target endpoint",
33170
+ "parameters": [
33171
+ {
33172
+ "in": "path",
33173
+ "name": "eventId",
33174
+ "schema": {
33175
+ "type": "string"
33176
+ },
33177
+ "description": "The event identifier",
33178
+ "required": true
33179
+ },
33180
+ {
33181
+ "in": "path",
33182
+ "name": "passTypeId",
33183
+ "schema": {
33184
+ "type": "string"
33185
+ },
33186
+ "description": "The passType identifier",
33187
+ "required": true
33188
+ }
33189
+ ],
33190
+ "requestBody": {
33191
+ "required": true,
33192
+ "content": {
33193
+ "application/json": {
33194
+ "schema": {
33195
+ "$ref": "#/components/schemas/PassTypeExchangeTargetCreateInputs"
33196
+ }
33197
+ }
33198
+ }
33199
+ },
33200
+ "responses": {
33201
+ "200": {
33202
+ "description": "Successful response",
33203
+ "content": {
33204
+ "application/json": {
33205
+ "schema": {
33206
+ "type": "object",
33207
+ "properties": {
33208
+ "status": {
33209
+ "type": "string",
33210
+ "enum": [
33211
+ "ok"
33212
+ ]
33213
+ },
33214
+ "message": {
33215
+ "type": "string",
33216
+ "example": "Success message."
33217
+ },
33218
+ "data": {
33219
+ "$ref": "#/components/schemas/EventPassTypeExchangeTarget"
33220
+ }
33221
+ },
33222
+ "required": [
33223
+ "status",
33224
+ "message",
33225
+ "data"
33226
+ ]
33227
+ }
33228
+ }
33229
+ }
33230
+ }
33231
+ },
33232
+ "tags": [
33233
+ "Events::Passtypes::Exchangetargets"
33234
+ ]
33235
+ }
33236
+ },
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",
33242
+ "parameters": [
33243
+ {
33244
+ "in": "path",
33245
+ "name": "eventId",
33246
+ "schema": {
33247
+ "type": "string"
33248
+ },
33249
+ "description": "The event identifier",
33250
+ "required": true
33251
+ },
33252
+ {
33253
+ "in": "path",
33254
+ "name": "passTypeId",
33255
+ "schema": {
33256
+ "type": "string"
33257
+ },
33258
+ "description": "The passType identifier",
33259
+ "required": true
33260
+ },
33261
+ {
33262
+ "in": "path",
33263
+ "name": "exchangeTargetId",
33264
+ "schema": {
33265
+ "type": "string"
33266
+ },
33267
+ "description": "The exchangeTarget identifier",
33268
+ "required": true
33269
+ }
33270
+ ],
33271
+ "requestBody": {
33272
+ "required": true,
33273
+ "content": {
33274
+ "application/json": {
33275
+ "schema": {
33276
+ "$ref": "#/components/schemas/PassTypeExchangeTargetUpdateInputs"
33277
+ }
33278
+ }
33279
+ }
33280
+ },
33281
+ "responses": {
33282
+ "200": {
33283
+ "description": "Successful response",
33284
+ "content": {
33285
+ "application/json": {
33286
+ "schema": {
33287
+ "type": "object",
33288
+ "properties": {
33289
+ "status": {
33290
+ "type": "string",
33291
+ "enum": [
33292
+ "ok"
33293
+ ]
33294
+ },
33295
+ "message": {
33296
+ "type": "string",
33297
+ "example": "Success message."
33298
+ },
33299
+ "data": {
33300
+ "$ref": "#/components/schemas/EventPassTypeExchangeTarget"
33301
+ }
33302
+ },
33303
+ "required": [
33304
+ "status",
33305
+ "message",
33306
+ "data"
33307
+ ]
33308
+ }
33309
+ }
33310
+ }
33311
+ }
33312
+ },
33313
+ "tags": [
33314
+ "Events::Passtypes::Exchangetargets"
33315
+ ]
33316
+ },
33317
+ "delete": {
33318
+ "operationId": "RemoveEventPassTypeExchangeTarget",
33319
+ "summary": "Remove Event Pass Type Exchange Target",
33320
+ "description": "Remove Event Pass Type Exchange Target endpoint",
33321
+ "parameters": [
33322
+ {
33323
+ "in": "path",
33324
+ "name": "eventId",
33325
+ "schema": {
33326
+ "type": "string"
33327
+ },
33328
+ "description": "The event identifier",
33329
+ "required": true
33330
+ },
33331
+ {
33332
+ "in": "path",
33333
+ "name": "passTypeId",
33334
+ "schema": {
33335
+ "type": "string"
33336
+ },
33337
+ "description": "The passType identifier",
33338
+ "required": true
33339
+ },
33340
+ {
33341
+ "in": "path",
33342
+ "name": "exchangeTargetId",
33343
+ "schema": {
33344
+ "type": "string"
33345
+ },
33346
+ "description": "The exchangeTarget identifier",
33347
+ "required": true
33348
+ }
33349
+ ],
33350
+ "responses": {
33351
+ "200": {
33352
+ "description": "Successful response",
33353
+ "content": {
33354
+ "application/json": {
33355
+ "schema": {
33356
+ "type": "object",
33357
+ "properties": {
33358
+ "status": {
33359
+ "type": "string",
33360
+ "enum": [
33361
+ "ok"
33362
+ ]
33363
+ },
33364
+ "message": {
33365
+ "type": "string",
33366
+ "example": "Success message."
33367
+ },
33368
+ "data": {
33369
+ "$ref": "#/components/schemas/EventPassTypeExchangeTarget"
33370
+ }
33371
+ },
33372
+ "required": [
33373
+ "status",
33374
+ "message",
33375
+ "data"
33376
+ ]
33377
+ }
33378
+ }
33379
+ }
33380
+ }
33381
+ },
33382
+ "tags": [
33383
+ "Events::Passtypes::Exchangetargets"
33384
+ ]
33385
+ }
33386
+ },
33387
+ "/events/{eventId}/passTypes/{passTypeId}/exchangeTargets/{exchangeTargetId}/exchanges": {
33388
+ "get": {
33389
+ "operationId": "GetEventPassTypeExchangeTargetExchanges",
33390
+ "summary": "Get Event Pass Type Exchange Target Exchanges",
33391
+ "description": "Get Event Pass Type Exchange Target Exchanges endpoint",
33392
+ "parameters": [
33393
+ {
33394
+ "in": "path",
33395
+ "name": "eventId",
33396
+ "schema": {
33397
+ "type": "string"
33398
+ },
33399
+ "description": "The event identifier",
33400
+ "required": true
33401
+ },
33402
+ {
33403
+ "in": "path",
33404
+ "name": "passTypeId",
33405
+ "schema": {
33406
+ "type": "string"
33407
+ },
33408
+ "description": "The passType identifier",
33409
+ "required": true
33410
+ },
33411
+ {
33412
+ "in": "path",
33413
+ "name": "exchangeTargetId",
32961
33414
  "schema": {
32962
33415
  "type": "string"
32963
33416
  },
32964
- "description": "The addOn identifier",
33417
+ "description": "The exchangeTarget identifier",
32965
33418
  "required": true
33419
+ },
33420
+ {
33421
+ "in": "query",
33422
+ "name": "page",
33423
+ "schema": {
33424
+ "type": "integer",
33425
+ "minimum": 1,
33426
+ "default": 1
33427
+ },
33428
+ "description": "Page number",
33429
+ "required": false
33430
+ },
33431
+ {
33432
+ "in": "query",
33433
+ "name": "pageSize",
33434
+ "schema": {
33435
+ "type": "integer",
33436
+ "minimum": 1,
33437
+ "maximum": 100,
33438
+ "default": 25
33439
+ },
33440
+ "description": "Number of items per page",
33441
+ "required": false
33442
+ },
33443
+ {
33444
+ "in": "query",
33445
+ "name": "orderBy",
33446
+ "schema": {
33447
+ "type": "string"
33448
+ },
33449
+ "description": "Field to order by",
33450
+ "required": false
33451
+ },
33452
+ {
33453
+ "in": "query",
33454
+ "name": "search",
33455
+ "schema": {
33456
+ "type": "string"
33457
+ },
33458
+ "description": "Search query",
33459
+ "required": false
32966
33460
  }
32967
33461
  ],
32968
33462
  "responses": {
@@ -32984,7 +33478,14 @@
32984
33478
  "example": "Success message."
32985
33479
  },
32986
33480
  "data": {
32987
- "$ref": "#/components/schemas/EventPassType"
33481
+ "type": "array",
33482
+ "items": {
33483
+ "$ref": "#/components/schemas/PassExchange"
33484
+ }
33485
+ },
33486
+ "count": {
33487
+ "type": "integer",
33488
+ "example": 100
32988
33489
  }
32989
33490
  },
32990
33491
  "required": [
@@ -32998,15 +33499,15 @@
32998
33499
  }
32999
33500
  },
33000
33501
  "tags": [
33001
- "Events::Passtypes"
33502
+ "Events::Passtypes::Exchangetargets"
33002
33503
  ]
33003
33504
  }
33004
33505
  },
33005
- "/events/{eventId}/passTypes/{passTypeId}/coupons": {
33506
+ "/events/{eventId}/passTypes/{passTypeId}/exchangeTargets/{exchangeTargetId}/payments": {
33006
33507
  "get": {
33007
- "operationId": "EventGetPassTypeCoupons",
33008
- "summary": "List an event pass type's coupons",
33009
- "description": "Returns a paginated list of coupons that apply to an event pass type, with optional search and orderBy filters; requires read access to the event.",
33508
+ "operationId": "GetEventPassTypeExchangeTargetPayments",
33509
+ "summary": "Get Event Pass Type Exchange Target Payments",
33510
+ "description": "Get Event Pass Type Exchange Target Payments endpoint",
33010
33511
  "parameters": [
33011
33512
  {
33012
33513
  "in": "path",
@@ -33026,6 +33527,15 @@
33026
33527
  "description": "The passType identifier",
33027
33528
  "required": true
33028
33529
  },
33530
+ {
33531
+ "in": "path",
33532
+ "name": "exchangeTargetId",
33533
+ "schema": {
33534
+ "type": "string"
33535
+ },
33536
+ "description": "The exchangeTarget identifier",
33537
+ "required": true
33538
+ },
33029
33539
  {
33030
33540
  "in": "query",
33031
33541
  "name": "page",
@@ -33089,7 +33599,7 @@
33089
33599
  "data": {
33090
33600
  "type": "array",
33091
33601
  "items": {
33092
- "$ref": "#/components/schemas/Coupon"
33602
+ "$ref": "#/components/schemas/Payment"
33093
33603
  }
33094
33604
  },
33095
33605
  "count": {
@@ -33108,7 +33618,7 @@
33108
33618
  }
33109
33619
  },
33110
33620
  "tags": [
33111
- "Events::Passtypes"
33621
+ "Events::Passtypes::Exchangetargets"
33112
33622
  ]
33113
33623
  }
33114
33624
  },
@@ -101223,6 +101733,14 @@
101223
101733
  ],
101224
101734
  "nullable": true
101225
101735
  },
101736
+ "exchangeTarget": {
101737
+ "allOf": [
101738
+ {
101739
+ "$ref": "#/components/schemas/BaseEventPassTypeExchangeTarget"
101740
+ }
101741
+ ],
101742
+ "nullable": true
101743
+ },
101226
101744
  "metadata": {
101227
101745
  "type": "object"
101228
101746
  },
@@ -101259,6 +101777,7 @@
101259
101777
  "coupon",
101260
101778
  "invoice",
101261
101779
  "series",
101780
+ "exchangeTarget",
101262
101781
  "lineItems"
101263
101782
  ]
101264
101783
  }
@@ -103910,6 +104429,10 @@
103910
104429
  "name": {
103911
104430
  "type": "string"
103912
104431
  },
104432
+ "room": {
104433
+ "type": "string",
104434
+ "nullable": true
104435
+ },
103913
104436
  "address1": {
103914
104437
  "type": "string",
103915
104438
  "nullable": true
@@ -103950,6 +104473,7 @@
103950
104473
  "required": [
103951
104474
  "id",
103952
104475
  "name",
104476
+ "room",
103953
104477
  "address1",
103954
104478
  "address2",
103955
104479
  "zip",
@@ -106976,6 +107500,151 @@
106976
107500
  }
106977
107501
  ]
106978
107502
  },
107503
+ "BaseEventPassTypeExchangeTarget": {
107504
+ "type": "object",
107505
+ "properties": {
107506
+ "id": {
107507
+ "type": "string"
107508
+ },
107509
+ "enabled": {
107510
+ "type": "boolean"
107511
+ },
107512
+ "sourcePassTypeId": {
107513
+ "type": "string"
107514
+ },
107515
+ "sourcePassType": {
107516
+ "$ref": "#/components/schemas/BaseEventPassType"
107517
+ },
107518
+ "targetPassTypeId": {
107519
+ "type": "string"
107520
+ },
107521
+ "targetPassType": {
107522
+ "$ref": "#/components/schemas/BaseEventPassType"
107523
+ },
107524
+ "fixedPricing": {
107525
+ "type": "boolean"
107526
+ },
107527
+ "amount": {
107528
+ "type": "number"
107529
+ },
107530
+ "startDate": {
107531
+ "type": "string",
107532
+ "nullable": true
107533
+ },
107534
+ "endDate": {
107535
+ "type": "string",
107536
+ "nullable": true
107537
+ }
107538
+ },
107539
+ "required": [
107540
+ "id",
107541
+ "enabled",
107542
+ "sourcePassTypeId",
107543
+ "sourcePassType",
107544
+ "targetPassTypeId",
107545
+ "targetPassType",
107546
+ "fixedPricing",
107547
+ "amount",
107548
+ "startDate",
107549
+ "endDate"
107550
+ ]
107551
+ },
107552
+ "EventPassTypeExchangeTarget": {
107553
+ "allOf": [
107554
+ {
107555
+ "$ref": "#/components/schemas/BaseEventPassTypeExchangeTarget"
107556
+ },
107557
+ {
107558
+ "type": "object",
107559
+ "properties": {
107560
+ "createdAt": {
107561
+ "type": "string"
107562
+ },
107563
+ "updatedAt": {
107564
+ "type": "string"
107565
+ }
107566
+ },
107567
+ "required": [
107568
+ "createdAt",
107569
+ "updatedAt"
107570
+ ]
107571
+ }
107572
+ ]
107573
+ },
107574
+ "ExchangeType": {
107575
+ "type": "string",
107576
+ "enum": [
107577
+ "upgrade",
107578
+ "downgrade",
107579
+ "swap"
107580
+ ]
107581
+ },
107582
+ "BasePassExchange": {
107583
+ "type": "object",
107584
+ "properties": {
107585
+ "id": {
107586
+ "type": "string"
107587
+ },
107588
+ "accountId": {
107589
+ "type": "string"
107590
+ },
107591
+ "passId": {
107592
+ "type": "string"
107593
+ },
107594
+ "exchangeType": {
107595
+ "$ref": "#/components/schemas/ExchangeType"
107596
+ },
107597
+ "exchangeTargetId": {
107598
+ "type": "string"
107599
+ },
107600
+ "exchangeTarget": {
107601
+ "$ref": "#/components/schemas/EventPassTypeExchangeTarget"
107602
+ },
107603
+ "lineItem": {
107604
+ "allOf": [
107605
+ {
107606
+ "$ref": "#/components/schemas/BasePaymentLineItem"
107607
+ }
107608
+ ],
107609
+ "nullable": true
107610
+ }
107611
+ },
107612
+ "required": [
107613
+ "id",
107614
+ "accountId",
107615
+ "passId",
107616
+ "exchangeType",
107617
+ "exchangeTargetId",
107618
+ "exchangeTarget",
107619
+ "lineItem"
107620
+ ]
107621
+ },
107622
+ "PassExchange": {
107623
+ "allOf": [
107624
+ {
107625
+ "$ref": "#/components/schemas/BasePassExchange"
107626
+ },
107627
+ {
107628
+ "type": "object",
107629
+ "properties": {
107630
+ "account": {
107631
+ "$ref": "#/components/schemas/BaseAccount"
107632
+ },
107633
+ "pass": {
107634
+ "$ref": "#/components/schemas/BaseEventPass"
107635
+ },
107636
+ "createdAt": {
107637
+ "type": "string"
107638
+ }
107639
+ },
107640
+ "required": [
107641
+ "account",
107642
+ "pass",
107643
+ "createdAt"
107644
+ ]
107645
+ }
107646
+ ]
107647
+ },
106979
107648
  "EventPassTypeTranslation": {
106980
107649
  "type": "object",
106981
107650
  "properties": {
@@ -116953,6 +117622,10 @@
116953
117622
  "name": {
116954
117623
  "type": "string"
116955
117624
  },
117625
+ "room": {
117626
+ "type": "string",
117627
+ "nullable": true
117628
+ },
116956
117629
  "description": {
116957
117630
  "type": "string",
116958
117631
  "nullable": true
@@ -116984,6 +117657,14 @@
116984
117657
  "zip": {
116985
117658
  "type": "string",
116986
117659
  "nullable": true
117660
+ },
117661
+ "latitude": {
117662
+ "type": "number",
117663
+ "nullable": true
117664
+ },
117665
+ "longitude": {
117666
+ "type": "number",
117667
+ "nullable": true
116987
117668
  }
116988
117669
  },
116989
117670
  "required": [
@@ -117013,6 +117694,10 @@
117013
117694
  "name": {
117014
117695
  "type": "string"
117015
117696
  },
117697
+ "room": {
117698
+ "type": "string",
117699
+ "nullable": true
117700
+ },
117016
117701
  "description": {
117017
117702
  "type": "string",
117018
117703
  "nullable": true
@@ -117044,6 +117729,14 @@
117044
117729
  "zip": {
117045
117730
  "type": "string",
117046
117731
  "nullable": true
117732
+ },
117733
+ "latitude": {
117734
+ "type": "number",
117735
+ "nullable": true
117736
+ },
117737
+ "longitude": {
117738
+ "type": "number",
117739
+ "nullable": true
117047
117740
  }
117048
117741
  }
117049
117742
  },
@@ -120592,6 +121285,57 @@
120592
121285
  }
120593
121286
  }
120594
121287
  },
121288
+ "PassTypeExchangeTargetCreateInputs": {
121289
+ "type": "object",
121290
+ "properties": {
121291
+ "enabled": {
121292
+ "type": "boolean"
121293
+ },
121294
+ "targetPassTypeId": {
121295
+ "type": "string"
121296
+ },
121297
+ "fixedPricing": {
121298
+ "type": "boolean"
121299
+ },
121300
+ "amount": {
121301
+ "type": "number"
121302
+ },
121303
+ "startDate": {
121304
+ "type": "string",
121305
+ "nullable": true
121306
+ },
121307
+ "endDate": {
121308
+ "type": "string",
121309
+ "nullable": true
121310
+ }
121311
+ },
121312
+ "required": [
121313
+ "enabled",
121314
+ "targetPassTypeId"
121315
+ ]
121316
+ },
121317
+ "PassTypeExchangeTargetUpdateInputs": {
121318
+ "type": "object",
121319
+ "properties": {
121320
+ "enabled": {
121321
+ "type": "boolean"
121322
+ },
121323
+ "fixedPricing": {
121324
+ "type": "boolean"
121325
+ },
121326
+ "amount": {
121327
+ "type": "number"
121328
+ },
121329
+ "startDate": {
121330
+ "type": "string",
121331
+ "nullable": true
121332
+ },
121333
+ "endDate": {
121334
+ "type": "string",
121335
+ "nullable": true
121336
+ }
121337
+ }
121338
+ },
120595
121339
  "IntegrationCreateInputs": {
120596
121340
  "type": "object",
120597
121341
  "properties": {