@connectedxm/admin 6.9.4 → 6.9.6

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
@@ -62014,6 +62014,107 @@
62014
62014
  ]
62015
62015
  }
62016
62016
  },
62017
+ "/series/{seriesId}/payments": {
62018
+ "get": {
62019
+ "operationId": "GetSeriesPayments",
62020
+ "summary": "Get Series Payments",
62021
+ "description": "Get Series Payments endpoint",
62022
+ "parameters": [
62023
+ {
62024
+ "in": "path",
62025
+ "name": "seriesId",
62026
+ "schema": {
62027
+ "type": "string"
62028
+ },
62029
+ "description": "The series identifier",
62030
+ "required": true
62031
+ },
62032
+ {
62033
+ "in": "query",
62034
+ "name": "page",
62035
+ "schema": {
62036
+ "type": "integer",
62037
+ "minimum": 1,
62038
+ "default": 1
62039
+ },
62040
+ "description": "Page number",
62041
+ "required": false
62042
+ },
62043
+ {
62044
+ "in": "query",
62045
+ "name": "pageSize",
62046
+ "schema": {
62047
+ "type": "integer",
62048
+ "minimum": 1,
62049
+ "maximum": 100,
62050
+ "default": 25
62051
+ },
62052
+ "description": "Number of items per page",
62053
+ "required": false
62054
+ },
62055
+ {
62056
+ "in": "query",
62057
+ "name": "orderBy",
62058
+ "schema": {
62059
+ "type": "string"
62060
+ },
62061
+ "description": "Field to order by",
62062
+ "required": false
62063
+ },
62064
+ {
62065
+ "in": "query",
62066
+ "name": "search",
62067
+ "schema": {
62068
+ "type": "string"
62069
+ },
62070
+ "description": "Search query",
62071
+ "required": false
62072
+ }
62073
+ ],
62074
+ "responses": {
62075
+ "200": {
62076
+ "description": "Successful response",
62077
+ "content": {
62078
+ "application/json": {
62079
+ "schema": {
62080
+ "type": "object",
62081
+ "properties": {
62082
+ "status": {
62083
+ "type": "string",
62084
+ "enum": [
62085
+ "ok"
62086
+ ]
62087
+ },
62088
+ "message": {
62089
+ "type": "string",
62090
+ "example": "Success message."
62091
+ },
62092
+ "data": {
62093
+ "type": "array",
62094
+ "items": {
62095
+ "$ref": "#/components/schemas/Payment"
62096
+ }
62097
+ },
62098
+ "count": {
62099
+ "type": "integer",
62100
+ "example": 100
62101
+ }
62102
+ },
62103
+ "required": [
62104
+ "status",
62105
+ "message",
62106
+ "data"
62107
+ ]
62108
+ }
62109
+ }
62110
+ }
62111
+ }
62112
+ },
62113
+ "tags": [
62114
+ "Series"
62115
+ ]
62116
+ }
62117
+ },
62017
62118
  "/series/{seriesId}/registrations": {
62018
62119
  "get": {
62019
62120
  "operationId": "GetSeriesRegistrations",
@@ -62481,6 +62582,113 @@
62481
62582
  ]
62482
62583
  }
62483
62584
  },
62585
+ "/series/{seriesId}/registrations/{registrationId}/payments": {
62586
+ "get": {
62587
+ "operationId": "GetSeriesRegistrationPayments",
62588
+ "summary": "Get Series Registration Payments",
62589
+ "description": "Get Series Registration Payments endpoint",
62590
+ "parameters": [
62591
+ {
62592
+ "in": "path",
62593
+ "name": "seriesId",
62594
+ "schema": {
62595
+ "type": "string"
62596
+ },
62597
+ "description": "The series identifier",
62598
+ "required": true
62599
+ },
62600
+ {
62601
+ "in": "path",
62602
+ "name": "registrationId",
62603
+ "schema": {
62604
+ "type": "string"
62605
+ },
62606
+ "description": "The registration identifier",
62607
+ "required": true
62608
+ },
62609
+ {
62610
+ "in": "query",
62611
+ "name": "page",
62612
+ "schema": {
62613
+ "type": "integer",
62614
+ "minimum": 1,
62615
+ "default": 1
62616
+ },
62617
+ "description": "Page number",
62618
+ "required": false
62619
+ },
62620
+ {
62621
+ "in": "query",
62622
+ "name": "pageSize",
62623
+ "schema": {
62624
+ "type": "integer",
62625
+ "minimum": 1,
62626
+ "maximum": 100,
62627
+ "default": 25
62628
+ },
62629
+ "description": "Number of items per page",
62630
+ "required": false
62631
+ },
62632
+ {
62633
+ "in": "query",
62634
+ "name": "orderBy",
62635
+ "schema": {
62636
+ "type": "string"
62637
+ },
62638
+ "description": "Field to order by",
62639
+ "required": false
62640
+ },
62641
+ {
62642
+ "in": "query",
62643
+ "name": "search",
62644
+ "schema": {
62645
+ "type": "string"
62646
+ },
62647
+ "description": "Search query",
62648
+ "required": false
62649
+ }
62650
+ ],
62651
+ "responses": {
62652
+ "200": {
62653
+ "description": "Successful response",
62654
+ "content": {
62655
+ "application/json": {
62656
+ "schema": {
62657
+ "type": "object",
62658
+ "properties": {
62659
+ "status": {
62660
+ "type": "string",
62661
+ "enum": [
62662
+ "ok"
62663
+ ]
62664
+ },
62665
+ "message": {
62666
+ "type": "string",
62667
+ "example": "Success message."
62668
+ },
62669
+ "data": {
62670
+ "type": "object"
62671
+ },
62672
+ "count": {
62673
+ "type": "integer",
62674
+ "example": 100
62675
+ }
62676
+ },
62677
+ "required": [
62678
+ "status",
62679
+ "message",
62680
+ "data"
62681
+ ]
62682
+ }
62683
+ }
62684
+ }
62685
+ }
62686
+ },
62687
+ "tags": [
62688
+ "Series::Registrations"
62689
+ ]
62690
+ }
62691
+ },
62484
62692
  "/streams": {
62485
62693
  "get": {
62486
62694
  "operationId": "GetStreamInputs",
@@ -79229,6 +79437,10 @@
79229
79437
  "type": "string",
79230
79438
  "nullable": true
79231
79439
  },
79440
+ "seriesId": {
79441
+ "type": "string",
79442
+ "nullable": true
79443
+ },
79232
79444
  "lineItems": {
79233
79445
  "type": "array",
79234
79446
  "items": {
@@ -79266,6 +79478,7 @@
79266
79478
  "membershipId",
79267
79479
  "couponId",
79268
79480
  "invoiceId",
79481
+ "seriesId",
79269
79482
  "lineItems",
79270
79483
  "createdAt"
79271
79484
  ]
@@ -79440,6 +79653,14 @@
79440
79653
  ],
79441
79654
  "nullable": true
79442
79655
  },
79656
+ "series": {
79657
+ "allOf": [
79658
+ {
79659
+ "$ref": "#/components/schemas/BaseSeries"
79660
+ }
79661
+ ],
79662
+ "nullable": true
79663
+ },
79443
79664
  "metadata": {
79444
79665
  "type": "object"
79445
79666
  },
@@ -79475,6 +79696,7 @@
79475
79696
  "space",
79476
79697
  "coupon",
79477
79698
  "invoice",
79699
+ "series",
79478
79700
  "lineItems"
79479
79701
  ]
79480
79702
  }
@@ -79492,6 +79714,7 @@
79492
79714
  "invoice",
79493
79715
  "booking",
79494
79716
  "coupon",
79717
+ "series",
79495
79718
  "refund"
79496
79719
  ]
79497
79720
  },
@@ -79662,6 +79885,14 @@
79662
79885
  ],
79663
79886
  "nullable": true
79664
79887
  },
79888
+ "seriesRegistration": {
79889
+ "allOf": [
79890
+ {
79891
+ "$ref": "#/components/schemas/BaseSeriesRegistration"
79892
+ }
79893
+ ],
79894
+ "nullable": true
79895
+ },
79665
79896
  "payment": {
79666
79897
  "$ref": "#/components/schemas/BasePayment"
79667
79898
  }
@@ -79674,6 +79905,7 @@
79674
79905
  "access",
79675
79906
  "booking",
79676
79907
  "coupon",
79908
+ "seriesRegistration",
79677
79909
  "payment"
79678
79910
  ]
79679
79911
  }
@@ -81236,6 +81468,18 @@
81236
81468
  "taxLocation": {
81237
81469
  "$ref": "#/components/schemas/TaxLocationType"
81238
81470
  },
81471
+ "subject": {
81472
+ "type": "string",
81473
+ "nullable": true
81474
+ },
81475
+ "replyTo": {
81476
+ "type": "string",
81477
+ "nullable": true
81478
+ },
81479
+ "body": {
81480
+ "type": "string",
81481
+ "nullable": true
81482
+ },
81239
81483
  "createdAt": {
81240
81484
  "type": "string"
81241
81485
  },
@@ -81251,12 +81495,67 @@
81251
81495
  "taxCode",
81252
81496
  "taxIncluded",
81253
81497
  "taxLocation",
81498
+ "subject",
81499
+ "replyTo",
81500
+ "body",
81254
81501
  "createdAt",
81255
81502
  "updatedAt"
81256
81503
  ]
81257
81504
  }
81258
81505
  ]
81259
81506
  },
81507
+ "SeriesTranslation": {
81508
+ "type": "object",
81509
+ "properties": {
81510
+ "id": {
81511
+ "type": "number"
81512
+ },
81513
+ "locale": {
81514
+ "type": "string"
81515
+ },
81516
+ "name": {
81517
+ "type": "string"
81518
+ },
81519
+ "description": {
81520
+ "type": "string",
81521
+ "nullable": true
81522
+ },
81523
+ "longDescription": {
81524
+ "type": "string",
81525
+ "nullable": true
81526
+ },
81527
+ "subject": {
81528
+ "type": "string",
81529
+ "nullable": true
81530
+ },
81531
+ "replyTo": {
81532
+ "type": "string",
81533
+ "nullable": true
81534
+ },
81535
+ "body": {
81536
+ "type": "string",
81537
+ "nullable": true
81538
+ },
81539
+ "createdAt": {
81540
+ "type": "string"
81541
+ },
81542
+ "updatedAt": {
81543
+ "type": "string"
81544
+ }
81545
+ },
81546
+ "required": [
81547
+ "id",
81548
+ "locale",
81549
+ "name",
81550
+ "description",
81551
+ "longDescription",
81552
+ "subject",
81553
+ "replyTo",
81554
+ "body",
81555
+ "createdAt",
81556
+ "updatedAt"
81557
+ ]
81558
+ },
81260
81559
  "BaseSeriesRegistration": {
81261
81560
  "type": "object",
81262
81561
  "properties": {
@@ -81305,11 +81604,23 @@
81305
81604
  },
81306
81605
  "updatedAt": {
81307
81606
  "type": "string"
81607
+ },
81608
+ "_count": {
81609
+ "type": "object",
81610
+ "properties": {
81611
+ "passes": {
81612
+ "type": "number"
81613
+ }
81614
+ },
81615
+ "required": [
81616
+ "passes"
81617
+ ]
81308
81618
  }
81309
81619
  },
81310
81620
  "required": [
81311
81621
  "createdAt",
81312
- "updatedAt"
81622
+ "updatedAt",
81623
+ "_count"
81313
81624
  ]
81314
81625
  }
81315
81626
  ]
@@ -95823,6 +96134,18 @@
95823
96134
  },
95824
96135
  "taxLocation": {
95825
96136
  "$ref": "#/components/schemas/TaxLocationType"
96137
+ },
96138
+ "subject": {
96139
+ "type": "string",
96140
+ "nullable": true
96141
+ },
96142
+ "replyTo": {
96143
+ "type": "string",
96144
+ "nullable": true
96145
+ },
96146
+ "body": {
96147
+ "type": "string",
96148
+ "nullable": true
95826
96149
  }
95827
96150
  },
95828
96151
  "required": [
@@ -95879,6 +96202,43 @@
95879
96202
  },
95880
96203
  "taxLocation": {
95881
96204
  "$ref": "#/components/schemas/TaxLocationType"
96205
+ },
96206
+ "subject": {
96207
+ "type": "string",
96208
+ "nullable": true
96209
+ },
96210
+ "replyTo": {
96211
+ "type": "string",
96212
+ "nullable": true
96213
+ },
96214
+ "body": {
96215
+ "type": "string",
96216
+ "nullable": true
96217
+ }
96218
+ }
96219
+ },
96220
+ "SeriesTranslationUpdateInputs": {
96221
+ "type": "object",
96222
+ "properties": {
96223
+ "name": {
96224
+ "type": "string",
96225
+ "nullable": true
96226
+ },
96227
+ "description": {
96228
+ "type": "string",
96229
+ "nullable": true
96230
+ },
96231
+ "longDescription": {
96232
+ "type": "string",
96233
+ "nullable": true
96234
+ },
96235
+ "subject": {
96236
+ "type": "string",
96237
+ "nullable": true
96238
+ },
96239
+ "body": {
96240
+ "type": "string",
96241
+ "nullable": true
95882
96242
  }
95883
96243
  }
95884
96244
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.9.4",
3
+ "version": "6.9.6",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",