@connectedxm/admin 6.8.7 → 6.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
@@ -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"
@@ -61938,6 +61942,428 @@
61938
61942
  ]
61939
61943
  }
61940
61944
  },
61945
+ "/series/{seriesId}/registrations": {
61946
+ "get": {
61947
+ "operationId": "GetSeriesRegistrations",
61948
+ "summary": "Get Series Registrations",
61949
+ "description": "Get Series Registrations endpoint",
61950
+ "parameters": [
61951
+ {
61952
+ "in": "path",
61953
+ "name": "seriesId",
61954
+ "schema": {
61955
+ "type": "string"
61956
+ },
61957
+ "description": "The series identifier",
61958
+ "required": true
61959
+ },
61960
+ {
61961
+ "in": "query",
61962
+ "name": "status",
61963
+ "schema": {
61964
+ "$ref": "#/components/schemas/PurchaseStatus"
61965
+ },
61966
+ "description": "Filter by status",
61967
+ "required": false
61968
+ },
61969
+ {
61970
+ "in": "query",
61971
+ "name": "page",
61972
+ "schema": {
61973
+ "type": "integer",
61974
+ "minimum": 1,
61975
+ "default": 1
61976
+ },
61977
+ "description": "Page number",
61978
+ "required": false
61979
+ },
61980
+ {
61981
+ "in": "query",
61982
+ "name": "pageSize",
61983
+ "schema": {
61984
+ "type": "integer",
61985
+ "minimum": 1,
61986
+ "maximum": 100,
61987
+ "default": 25
61988
+ },
61989
+ "description": "Number of items per page",
61990
+ "required": false
61991
+ },
61992
+ {
61993
+ "in": "query",
61994
+ "name": "orderBy",
61995
+ "schema": {
61996
+ "type": "string"
61997
+ },
61998
+ "description": "Field to order by",
61999
+ "required": false
62000
+ },
62001
+ {
62002
+ "in": "query",
62003
+ "name": "search",
62004
+ "schema": {
62005
+ "type": "string"
62006
+ },
62007
+ "description": "Search query",
62008
+ "required": false
62009
+ }
62010
+ ],
62011
+ "responses": {
62012
+ "200": {
62013
+ "description": "Successful response",
62014
+ "content": {
62015
+ "application/json": {
62016
+ "schema": {
62017
+ "type": "object",
62018
+ "properties": {
62019
+ "status": {
62020
+ "type": "string",
62021
+ "enum": [
62022
+ "ok"
62023
+ ]
62024
+ },
62025
+ "message": {
62026
+ "type": "string",
62027
+ "example": "Success message."
62028
+ },
62029
+ "data": {
62030
+ "type": "object"
62031
+ },
62032
+ "count": {
62033
+ "type": "integer",
62034
+ "example": 100
62035
+ }
62036
+ },
62037
+ "required": [
62038
+ "status",
62039
+ "message",
62040
+ "data"
62041
+ ]
62042
+ }
62043
+ }
62044
+ }
62045
+ }
62046
+ },
62047
+ "tags": [
62048
+ "Series::Registrations"
62049
+ ]
62050
+ },
62051
+ "post": {
62052
+ "operationId": "CreateSeriesRegistration",
62053
+ "summary": "Create Series Registration",
62054
+ "description": "Create Series Registration endpoint",
62055
+ "parameters": [
62056
+ {
62057
+ "in": "path",
62058
+ "name": "seriesId",
62059
+ "schema": {
62060
+ "type": "string"
62061
+ },
62062
+ "description": "The series identifier",
62063
+ "required": true
62064
+ }
62065
+ ],
62066
+ "requestBody": {
62067
+ "required": true,
62068
+ "content": {
62069
+ "application/json": {
62070
+ "schema": {
62071
+ "$ref": "#/components/schemas/SeriesRegistrationCreateInputs"
62072
+ }
62073
+ }
62074
+ }
62075
+ },
62076
+ "responses": {
62077
+ "200": {
62078
+ "description": "Successful response",
62079
+ "content": {
62080
+ "application/json": {
62081
+ "schema": {
62082
+ "type": "object",
62083
+ "properties": {
62084
+ "status": {
62085
+ "type": "string",
62086
+ "enum": [
62087
+ "ok"
62088
+ ]
62089
+ },
62090
+ "message": {
62091
+ "type": "string",
62092
+ "example": "Success message."
62093
+ },
62094
+ "data": {
62095
+ "type": "object"
62096
+ }
62097
+ },
62098
+ "required": [
62099
+ "status",
62100
+ "message",
62101
+ "data"
62102
+ ]
62103
+ }
62104
+ }
62105
+ }
62106
+ }
62107
+ },
62108
+ "tags": [
62109
+ "Series::Registrations"
62110
+ ]
62111
+ }
62112
+ },
62113
+ "/series/{seriesId}/registrations/{registrationId}": {
62114
+ "get": {
62115
+ "operationId": "GetSeriesRegistration",
62116
+ "summary": "Get Series Registration",
62117
+ "description": "Get Series Registration endpoint",
62118
+ "parameters": [
62119
+ {
62120
+ "in": "path",
62121
+ "name": "seriesId",
62122
+ "schema": {
62123
+ "type": "string"
62124
+ },
62125
+ "description": "The series identifier",
62126
+ "required": true
62127
+ },
62128
+ {
62129
+ "in": "path",
62130
+ "name": "registrationId",
62131
+ "schema": {
62132
+ "type": "string"
62133
+ },
62134
+ "description": "The registration identifier",
62135
+ "required": true
62136
+ }
62137
+ ],
62138
+ "responses": {
62139
+ "200": {
62140
+ "description": "Successful response",
62141
+ "content": {
62142
+ "application/json": {
62143
+ "schema": {
62144
+ "type": "object",
62145
+ "properties": {
62146
+ "status": {
62147
+ "type": "string",
62148
+ "enum": [
62149
+ "ok"
62150
+ ]
62151
+ },
62152
+ "message": {
62153
+ "type": "string",
62154
+ "example": "Success message."
62155
+ },
62156
+ "data": {
62157
+ "type": "object"
62158
+ }
62159
+ },
62160
+ "required": [
62161
+ "status",
62162
+ "message",
62163
+ "data"
62164
+ ]
62165
+ }
62166
+ }
62167
+ }
62168
+ }
62169
+ },
62170
+ "tags": [
62171
+ "Series::Registrations"
62172
+ ]
62173
+ },
62174
+ "put": {
62175
+ "operationId": "UpdateSeriesRegistration",
62176
+ "summary": "Update Series Registration",
62177
+ "description": "Update Series Registration endpoint",
62178
+ "parameters": [
62179
+ {
62180
+ "in": "path",
62181
+ "name": "seriesId",
62182
+ "schema": {
62183
+ "type": "string"
62184
+ },
62185
+ "description": "The series identifier",
62186
+ "required": true
62187
+ },
62188
+ {
62189
+ "in": "path",
62190
+ "name": "registrationId",
62191
+ "schema": {
62192
+ "type": "string"
62193
+ },
62194
+ "description": "The registration identifier",
62195
+ "required": true
62196
+ }
62197
+ ],
62198
+ "requestBody": {
62199
+ "required": true,
62200
+ "content": {
62201
+ "application/json": {
62202
+ "schema": {
62203
+ "$ref": "#/components/schemas/SeriesRegistrationUpdateInputs"
62204
+ }
62205
+ }
62206
+ }
62207
+ },
62208
+ "responses": {
62209
+ "200": {
62210
+ "description": "Successful response",
62211
+ "content": {
62212
+ "application/json": {
62213
+ "schema": {
62214
+ "type": "object",
62215
+ "properties": {
62216
+ "status": {
62217
+ "type": "string",
62218
+ "enum": [
62219
+ "ok"
62220
+ ]
62221
+ },
62222
+ "message": {
62223
+ "type": "string",
62224
+ "example": "Success message."
62225
+ },
62226
+ "data": {
62227
+ "type": "object"
62228
+ }
62229
+ },
62230
+ "required": [
62231
+ "status",
62232
+ "message",
62233
+ "data"
62234
+ ]
62235
+ }
62236
+ }
62237
+ }
62238
+ }
62239
+ },
62240
+ "tags": [
62241
+ "Series::Registrations"
62242
+ ]
62243
+ },
62244
+ "delete": {
62245
+ "operationId": "DeleteSeriesRegistration",
62246
+ "summary": "Delete Series Registration",
62247
+ "description": "Delete Series Registration endpoint",
62248
+ "parameters": [
62249
+ {
62250
+ "in": "path",
62251
+ "name": "seriesId",
62252
+ "schema": {
62253
+ "type": "string"
62254
+ },
62255
+ "description": "The series identifier",
62256
+ "required": true
62257
+ },
62258
+ {
62259
+ "in": "path",
62260
+ "name": "registrationId",
62261
+ "schema": {
62262
+ "type": "string"
62263
+ },
62264
+ "description": "The registration identifier",
62265
+ "required": true
62266
+ }
62267
+ ],
62268
+ "responses": {
62269
+ "200": {
62270
+ "description": "Successful response",
62271
+ "content": {
62272
+ "application/json": {
62273
+ "schema": {
62274
+ "type": "object",
62275
+ "properties": {
62276
+ "status": {
62277
+ "type": "string",
62278
+ "enum": [
62279
+ "ok"
62280
+ ]
62281
+ },
62282
+ "message": {
62283
+ "type": "string",
62284
+ "example": "Success message."
62285
+ },
62286
+ "data": {
62287
+ "nullable": true
62288
+ }
62289
+ },
62290
+ "required": [
62291
+ "status",
62292
+ "message",
62293
+ "data"
62294
+ ]
62295
+ }
62296
+ }
62297
+ }
62298
+ }
62299
+ },
62300
+ "tags": [
62301
+ "Series::Registrations"
62302
+ ]
62303
+ }
62304
+ },
62305
+ "/series/{seriesId}/registrations/{registrationId}/passes": {
62306
+ "get": {
62307
+ "operationId": "GetSeriesRegistrationPasses",
62308
+ "summary": "Get Series Registration Passes",
62309
+ "description": "Get Series Registration Passes endpoint",
62310
+ "parameters": [
62311
+ {
62312
+ "in": "path",
62313
+ "name": "seriesId",
62314
+ "schema": {
62315
+ "type": "string"
62316
+ },
62317
+ "description": "The series identifier",
62318
+ "required": true
62319
+ },
62320
+ {
62321
+ "in": "path",
62322
+ "name": "registrationId",
62323
+ "schema": {
62324
+ "type": "string"
62325
+ },
62326
+ "description": "The registration identifier",
62327
+ "required": true
62328
+ }
62329
+ ],
62330
+ "responses": {
62331
+ "200": {
62332
+ "description": "Successful response",
62333
+ "content": {
62334
+ "application/json": {
62335
+ "schema": {
62336
+ "type": "object",
62337
+ "properties": {
62338
+ "status": {
62339
+ "type": "string",
62340
+ "enum": [
62341
+ "ok"
62342
+ ]
62343
+ },
62344
+ "message": {
62345
+ "type": "string",
62346
+ "example": "Success message."
62347
+ },
62348
+ "data": {
62349
+ "type": "object"
62350
+ }
62351
+ },
62352
+ "required": [
62353
+ "status",
62354
+ "message",
62355
+ "data"
62356
+ ]
62357
+ }
62358
+ }
62359
+ }
62360
+ }
62361
+ },
62362
+ "tags": [
62363
+ "Series::Registrations"
62364
+ ]
62365
+ }
62366
+ },
61941
62367
  "/streams": {
61942
62368
  "get": {
61943
62369
  "operationId": "GetStreamInputs",
@@ -80665,6 +81091,20 @@
80665
81091
  "sortOrder": {
80666
81092
  "type": "number"
80667
81093
  },
81094
+ "price": {
81095
+ "type": "number",
81096
+ "nullable": true
81097
+ },
81098
+ "taxCode": {
81099
+ "type": "string",
81100
+ "nullable": true
81101
+ },
81102
+ "taxIncluded": {
81103
+ "type": "boolean"
81104
+ },
81105
+ "taxLocation": {
81106
+ "$ref": "#/components/schemas/TaxLocationType"
81107
+ },
80668
81108
  "createdAt": {
80669
81109
  "type": "string"
80670
81110
  },
@@ -80676,6 +81116,67 @@
80676
81116
  "templateId",
80677
81117
  "template",
80678
81118
  "sortOrder",
81119
+ "price",
81120
+ "taxCode",
81121
+ "taxIncluded",
81122
+ "taxLocation",
81123
+ "createdAt",
81124
+ "updatedAt"
81125
+ ]
81126
+ }
81127
+ ]
81128
+ },
81129
+ "BaseSeriesRegistration": {
81130
+ "type": "object",
81131
+ "properties": {
81132
+ "id": {
81133
+ "type": "string"
81134
+ },
81135
+ "organizationId": {
81136
+ "type": "string"
81137
+ },
81138
+ "seriesId": {
81139
+ "type": "string"
81140
+ },
81141
+ "series": {
81142
+ "$ref": "#/components/schemas/BaseSeries"
81143
+ },
81144
+ "accountId": {
81145
+ "type": "string"
81146
+ },
81147
+ "account": {
81148
+ "$ref": "#/components/schemas/BaseAccount"
81149
+ },
81150
+ "status": {
81151
+ "$ref": "#/components/schemas/PurchaseStatus"
81152
+ }
81153
+ },
81154
+ "required": [
81155
+ "id",
81156
+ "organizationId",
81157
+ "seriesId",
81158
+ "series",
81159
+ "accountId",
81160
+ "account",
81161
+ "status"
81162
+ ]
81163
+ },
81164
+ "SeriesRegistration": {
81165
+ "allOf": [
81166
+ {
81167
+ "$ref": "#/components/schemas/BaseSeriesRegistration"
81168
+ },
81169
+ {
81170
+ "type": "object",
81171
+ "properties": {
81172
+ "createdAt": {
81173
+ "type": "string"
81174
+ },
81175
+ "updatedAt": {
81176
+ "type": "string"
81177
+ }
81178
+ },
81179
+ "required": [
80679
81180
  "createdAt",
80680
81181
  "updatedAt"
80681
81182
  ]
@@ -81811,6 +82312,10 @@
81811
82312
  "name": {
81812
82313
  "type": "string"
81813
82314
  },
82315
+ "description": {
82316
+ "type": "string",
82317
+ "nullable": true
82318
+ },
81814
82319
  "limit": {
81815
82320
  "type": "number"
81816
82321
  },
@@ -81821,6 +82326,7 @@
81821
82326
  "required": [
81822
82327
  "id",
81823
82328
  "name",
82329
+ "description",
81824
82330
  "limit",
81825
82331
  "grouped"
81826
82332
  ]
@@ -89719,6 +90225,9 @@
89719
90225
  "type": "object",
89720
90226
  "additionalProperties": true,
89721
90227
  "nullable": true
90228
+ },
90229
+ "confirmationEmailCount": {
90230
+ "type": "number"
89722
90231
  }
89723
90232
  },
89724
90233
  "required": [
@@ -89834,6 +90343,9 @@
89834
90343
  "type": "object",
89835
90344
  "additionalProperties": true,
89836
90345
  "nullable": true
90346
+ },
90347
+ "confirmationEmailCount": {
90348
+ "type": "number"
89837
90349
  }
89838
90350
  }
89839
90351
  },
@@ -92625,6 +93137,25 @@
92625
93137
  "accountId"
92626
93138
  ]
92627
93139
  },
93140
+ "SeriesRegistrationCreateInputs": {
93141
+ "type": "object",
93142
+ "properties": {
93143
+ "accountId": {
93144
+ "type": "string"
93145
+ }
93146
+ },
93147
+ "required": [
93148
+ "accountId"
93149
+ ]
93150
+ },
93151
+ "SeriesRegistrationUpdateInputs": {
93152
+ "type": "object",
93153
+ "properties": {
93154
+ "status": {
93155
+ "$ref": "#/components/schemas/PurchaseStatus"
93156
+ }
93157
+ }
93158
+ },
92628
93159
  "EventRegistrationBypassUpdateInputs": {
92629
93160
  "type": "object",
92630
93161
  "properties": {
@@ -93442,6 +93973,9 @@
93442
93973
  "name": {
93443
93974
  "type": "string"
93444
93975
  },
93976
+ "description": {
93977
+ "type": "string"
93978
+ },
93445
93979
  "limit": {
93446
93980
  "type": "number"
93447
93981
  },
@@ -93459,6 +93993,10 @@
93459
93993
  "name": {
93460
93994
  "type": "string"
93461
93995
  },
93996
+ "description": {
93997
+ "type": "string",
93998
+ "nullable": true
93999
+ },
93462
94000
  "limit": {
93463
94001
  "type": "number"
93464
94002
  },
@@ -95127,6 +95665,22 @@
95127
95665
  "endDate": {
95128
95666
  "type": "string",
95129
95667
  "nullable": true
95668
+ },
95669
+ "registration": {
95670
+ "type": "boolean"
95671
+ },
95672
+ "price": {
95673
+ "type": "number"
95674
+ },
95675
+ "taxCode": {
95676
+ "type": "string",
95677
+ "nullable": true
95678
+ },
95679
+ "taxIncluded": {
95680
+ "type": "boolean"
95681
+ },
95682
+ "taxLocation": {
95683
+ "$ref": "#/components/schemas/TaxLocationType"
95130
95684
  }
95131
95685
  },
95132
95686
  "required": [
@@ -95167,6 +95721,22 @@
95167
95721
  "endDate": {
95168
95722
  "type": "string",
95169
95723
  "nullable": true
95724
+ },
95725
+ "registration": {
95726
+ "type": "boolean"
95727
+ },
95728
+ "price": {
95729
+ "type": "number"
95730
+ },
95731
+ "taxCode": {
95732
+ "type": "string",
95733
+ "nullable": true
95734
+ },
95735
+ "taxIncluded": {
95736
+ "type": "boolean"
95737
+ },
95738
+ "taxLocation": {
95739
+ "$ref": "#/components/schemas/TaxLocationType"
95170
95740
  }
95171
95741
  }
95172
95742
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.8.7",
3
+ "version": "6.9.0",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",