@connectedxm/admin 6.7.1 → 6.7.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
@@ -316,10 +316,6 @@
316
316
  "name": "Groups::Sponsors",
317
317
  "description": "Associate sponsors with groups, recognizing supporting organizations or individuals within group contexts"
318
318
  },
319
- {
320
- "name": "Images",
321
- "description": "Operations for managing images"
322
- },
323
319
  {
324
320
  "name": "Imports",
325
321
  "description": "Operations for data imports"
@@ -336,14 +332,6 @@
336
332
  "name": "Invoices::Lineitems",
337
333
  "description": "View and manage individual line items on invoices, tracking specific charges, quantities, and prices for detailed financial records"
338
334
  },
339
- {
340
- "name": "Levels",
341
- "description": "Operations for managing membership levels"
342
- },
343
- {
344
- "name": "Levels::Accounts",
345
- "description": "Associate accounts with membership levels to grant tier-based access, pricing, and benefits based on membership status"
346
- },
347
335
  {
348
336
  "name": "Logins",
349
337
  "description": "Operations for managing login records"
@@ -485,8 +473,28 @@
485
473
  "description": "Operations for managing event series"
486
474
  },
487
475
  {
488
- "name": "Storage",
489
- "description": "Seamless and secure media storage for video, image, and file storage related to live events"
476
+ "name": "Sponsors",
477
+ "description": "Operations for sponsors"
478
+ },
479
+ {
480
+ "name": "Sponsors::Accounts",
481
+ "description": "Operations for sponsors::accounts"
482
+ },
483
+ {
484
+ "name": "Storage::Files",
485
+ "description": "Operations for storage::files"
486
+ },
487
+ {
488
+ "name": "Storage::Images",
489
+ "description": "Operations for storage::images"
490
+ },
491
+ {
492
+ "name": "Storage::Videos",
493
+ "description": "Operations for storage::videos"
494
+ },
495
+ {
496
+ "name": "Storage::Videos::Captions",
497
+ "description": "Operations for storage::videos::captions"
490
498
  },
491
499
  {
492
500
  "name": "Streams",
@@ -512,18 +520,6 @@
512
520
  "name": "Support::Notes",
513
521
  "description": "Add internal notes to support tickets for team collaboration, tracking resolution steps, and maintaining support history"
514
522
  },
515
- {
516
- "name": "Supporttickets",
517
- "description": "Operations for supporttickets"
518
- },
519
- {
520
- "name": "Supporttickets::Messages",
521
- "description": "Exchange messages within support tickets, facilitating communication between support staff and users to resolve issues"
522
- },
523
- {
524
- "name": "Supporttickets::Notes",
525
- "description": "Add administrative notes to support tickets for internal tracking, documenting resolution steps, and team coordination"
526
- },
527
523
  {
528
524
  "name": "Surveys",
529
525
  "description": "Easily gather insights and feedback by using surveys"
@@ -579,14 +575,6 @@
579
575
  {
580
576
  "name": "Tiers",
581
577
  "description": "Operations for managing membership tiers"
582
- },
583
- {
584
- "name": "Videos",
585
- "description": "Operations for managing videos"
586
- },
587
- {
588
- "name": "Videos::Captions",
589
- "description": "Upload, manage, and configure closed captions and subtitles for videos, improving accessibility and multilingual support"
590
578
  }
591
579
  ],
592
580
  "paths": {
@@ -3563,6 +3551,104 @@
3563
3551
  ]
3564
3552
  }
3565
3553
  },
3554
+ "/accounts/{accountId}/registrations": {
3555
+ "get": {
3556
+ "operationId": "GetAccountRegistrations",
3557
+ "summary": "Get Account Registrations",
3558
+ "description": "Get Account Registrations endpoint",
3559
+ "parameters": [
3560
+ {
3561
+ "in": "path",
3562
+ "name": "accountId",
3563
+ "schema": {
3564
+ "type": "string"
3565
+ },
3566
+ "description": "The account identifier",
3567
+ "required": true
3568
+ },
3569
+ {
3570
+ "in": "query",
3571
+ "name": "page",
3572
+ "schema": {
3573
+ "type": "integer",
3574
+ "minimum": 1,
3575
+ "default": 1
3576
+ },
3577
+ "description": "Page number",
3578
+ "required": false
3579
+ },
3580
+ {
3581
+ "in": "query",
3582
+ "name": "pageSize",
3583
+ "schema": {
3584
+ "type": "integer",
3585
+ "minimum": 1,
3586
+ "maximum": 100,
3587
+ "default": 25
3588
+ },
3589
+ "description": "Number of items per page",
3590
+ "required": false
3591
+ },
3592
+ {
3593
+ "in": "query",
3594
+ "name": "orderBy",
3595
+ "schema": {
3596
+ "type": "string"
3597
+ },
3598
+ "description": "Field to order by",
3599
+ "required": false
3600
+ },
3601
+ {
3602
+ "in": "query",
3603
+ "name": "search",
3604
+ "schema": {
3605
+ "type": "string"
3606
+ },
3607
+ "description": "Search query",
3608
+ "required": false
3609
+ }
3610
+ ],
3611
+ "responses": {
3612
+ "200": {
3613
+ "description": "Successful response",
3614
+ "content": {
3615
+ "application/json": {
3616
+ "schema": {
3617
+ "type": "object",
3618
+ "properties": {
3619
+ "status": {
3620
+ "type": "string",
3621
+ "enum": [
3622
+ "ok"
3623
+ ]
3624
+ },
3625
+ "message": {
3626
+ "type": "string",
3627
+ "example": "Success message."
3628
+ },
3629
+ "data": {
3630
+ "type": "object"
3631
+ },
3632
+ "count": {
3633
+ "type": "integer",
3634
+ "example": 100
3635
+ }
3636
+ },
3637
+ "required": [
3638
+ "status",
3639
+ "message",
3640
+ "data"
3641
+ ]
3642
+ }
3643
+ }
3644
+ }
3645
+ }
3646
+ },
3647
+ "tags": [
3648
+ "Accounts"
3649
+ ]
3650
+ }
3651
+ },
3566
3652
  "/accounts/{accountId}/threads": {
3567
3653
  "get": {
3568
3654
  "operationId": "GetAccountThreads",
@@ -43094,7 +43180,7 @@
43094
43180
  }
43095
43181
  },
43096
43182
  "tags": [
43097
- "Files"
43183
+ "Storage::Files"
43098
43184
  ]
43099
43185
  },
43100
43186
  "post": {
@@ -43167,7 +43253,7 @@
43167
43253
  }
43168
43254
  },
43169
43255
  "tags": [
43170
- "Storage"
43256
+ "Storage::Files"
43171
43257
  ]
43172
43258
  }
43173
43259
  },
@@ -43220,7 +43306,7 @@
43220
43306
  }
43221
43307
  },
43222
43308
  "tags": [
43223
- "Files"
43309
+ "Storage::Files"
43224
43310
  ]
43225
43311
  },
43226
43312
  "put": {
@@ -45937,7 +46023,7 @@
45937
46023
  }
45938
46024
  },
45939
46025
  "tags": [
45940
- "Images"
46026
+ "Storage::Images"
45941
46027
  ]
45942
46028
  },
45943
46029
  "post": {
@@ -45987,7 +46073,7 @@
45987
46073
  }
45988
46074
  },
45989
46075
  "tags": [
45990
- "Images"
46076
+ "Storage::Images"
45991
46077
  ]
45992
46078
  }
45993
46079
  },
@@ -45996,20 +46082,16 @@
45996
46082
  "operationId": "DeleteManyImages",
45997
46083
  "summary": "Delete Many Images",
45998
46084
  "description": "Delete Many Images endpoint",
45999
- "parameters": [
46000
- {
46001
- "in": "query",
46002
- "name": "imageIds",
46003
- "schema": {
46004
- "type": "array",
46005
- "items": {
46006
- "type": "string"
46085
+ "requestBody": {
46086
+ "required": true,
46087
+ "content": {
46088
+ "application/json": {
46089
+ "schema": {
46090
+ "$ref": "#/components/schemas/DeleteManyImagesInput"
46007
46091
  }
46008
- },
46009
- "description": "Filter by imageIds",
46010
- "required": true
46092
+ }
46011
46093
  }
46012
- ],
46094
+ },
46013
46095
  "responses": {
46014
46096
  "200": {
46015
46097
  "description": "Successful response",
@@ -46043,7 +46125,7 @@
46043
46125
  }
46044
46126
  },
46045
46127
  "tags": [
46046
- "Images"
46128
+ "Storage::Images"
46047
46129
  ]
46048
46130
  }
46049
46131
  },
@@ -46096,7 +46178,7 @@
46096
46178
  }
46097
46179
  },
46098
46180
  "tags": [
46099
- "Images"
46181
+ "Storage::Images"
46100
46182
  ]
46101
46183
  },
46102
46184
  "put": {
@@ -46157,7 +46239,7 @@
46157
46239
  }
46158
46240
  },
46159
46241
  "tags": [
46160
- "Images"
46242
+ "Storage::Images"
46161
46243
  ]
46162
46244
  },
46163
46245
  "delete": {
@@ -46208,7 +46290,7 @@
46208
46290
  }
46209
46291
  },
46210
46292
  "tags": [
46211
- "Images"
46293
+ "Storage::Images"
46212
46294
  ]
46213
46295
  }
46214
46296
  },
@@ -46270,7 +46352,7 @@
46270
46352
  }
46271
46353
  },
46272
46354
  "tags": [
46273
- "Images"
46355
+ "Storage::Images"
46274
46356
  ]
46275
46357
  }
46276
46358
  },
@@ -46323,7 +46405,7 @@
46323
46405
  }
46324
46406
  },
46325
46407
  "tags": [
46326
- "Images"
46408
+ "Storage::Images"
46327
46409
  ]
46328
46410
  }
46329
46411
  },
@@ -48556,7 +48638,7 @@
48556
48638
  }
48557
48639
  },
48558
48640
  "tags": [
48559
- "Levels"
48641
+ "Sponsors"
48560
48642
  ]
48561
48643
  },
48562
48644
  "post": {
@@ -48606,7 +48688,7 @@
48606
48688
  }
48607
48689
  },
48608
48690
  "tags": [
48609
- "Levels"
48691
+ "Sponsors"
48610
48692
  ]
48611
48693
  }
48612
48694
  },
@@ -48668,7 +48750,7 @@
48668
48750
  }
48669
48751
  },
48670
48752
  "tags": [
48671
- "Levels"
48753
+ "Sponsors"
48672
48754
  ]
48673
48755
  },
48674
48756
  "delete": {
@@ -48719,7 +48801,7 @@
48719
48801
  }
48720
48802
  },
48721
48803
  "tags": [
48722
- "Levels"
48804
+ "Sponsors"
48723
48805
  ]
48724
48806
  }
48725
48807
  },
@@ -48820,7 +48902,7 @@
48820
48902
  }
48821
48903
  },
48822
48904
  "tags": [
48823
- "Levels::Accounts"
48905
+ "Sponsors::Accounts"
48824
48906
  ]
48825
48907
  }
48826
48908
  },
@@ -48882,7 +48964,7 @@
48882
48964
  }
48883
48965
  },
48884
48966
  "tags": [
48885
- "Levels::Accounts"
48967
+ "Sponsors::Accounts"
48886
48968
  ]
48887
48969
  },
48888
48970
  "delete": {
@@ -48942,7 +49024,7 @@
48942
49024
  }
48943
49025
  },
48944
49026
  "tags": [
48945
- "Levels::Accounts"
49027
+ "Sponsors::Accounts"
48946
49028
  ]
48947
49029
  }
48948
49030
  },
@@ -48995,7 +49077,7 @@
48995
49077
  }
48996
49078
  },
48997
49079
  "tags": [
48998
- "Levels"
49080
+ "Sponsors"
48999
49081
  ]
49000
49082
  }
49001
49083
  },
@@ -61255,7 +61337,7 @@
61255
61337
  "example": "Success message."
61256
61338
  },
61257
61339
  "data": {
61258
- "$ref": "#/components/schemas/StreamInput"
61340
+ "type": "object"
61259
61341
  }
61260
61342
  },
61261
61343
  "required": [
@@ -62319,7 +62401,7 @@
62319
62401
  }
62320
62402
  },
62321
62403
  "tags": [
62322
- "Supporttickets"
62404
+ "Support"
62323
62405
  ]
62324
62406
  },
62325
62407
  "post": {
@@ -62422,7 +62504,7 @@
62422
62504
  }
62423
62505
  },
62424
62506
  "tags": [
62425
- "Supporttickets"
62507
+ "Support"
62426
62508
  ]
62427
62509
  },
62428
62510
  "put": {
@@ -62587,7 +62669,7 @@
62587
62669
  }
62588
62670
  },
62589
62671
  "tags": [
62590
- "Supporttickets"
62672
+ "Support"
62591
62673
  ]
62592
62674
  }
62593
62675
  },
@@ -62685,7 +62767,7 @@
62685
62767
  }
62686
62768
  },
62687
62769
  "tags": [
62688
- "Supporttickets::Messages"
62770
+ "Support::Messages"
62689
62771
  ]
62690
62772
  },
62691
62773
  "post": {
@@ -62844,7 +62926,7 @@
62844
62926
  }
62845
62927
  },
62846
62928
  "tags": [
62847
- "Supporttickets::Notes"
62929
+ "Support::Notes"
62848
62930
  ]
62849
62931
  },
62850
62932
  "post": {
@@ -63074,7 +63156,7 @@
63074
63156
  }
63075
63157
  },
63076
63158
  "tags": [
63077
- "Supporttickets"
63159
+ "Support"
63078
63160
  ]
63079
63161
  }
63080
63162
  },
@@ -69645,7 +69727,7 @@
69645
69727
  }
69646
69728
  },
69647
69729
  "tags": [
69648
- "Videos"
69730
+ "Storage::Videos"
69649
69731
  ]
69650
69732
  }
69651
69733
  },
@@ -69654,20 +69736,16 @@
69654
69736
  "operationId": "DeleteManyVideos",
69655
69737
  "summary": "Delete Many Videos",
69656
69738
  "description": "Delete Many Videos endpoint",
69657
- "parameters": [
69658
- {
69659
- "in": "query",
69660
- "name": "videoIds",
69661
- "schema": {
69662
- "type": "array",
69663
- "items": {
69664
- "type": "string"
69739
+ "requestBody": {
69740
+ "required": true,
69741
+ "content": {
69742
+ "application/json": {
69743
+ "schema": {
69744
+ "$ref": "#/components/schemas/DeleteManyVideosInput"
69665
69745
  }
69666
- },
69667
- "description": "Filter by videoIds",
69668
- "required": true
69746
+ }
69669
69747
  }
69670
- ],
69748
+ },
69671
69749
  "responses": {
69672
69750
  "200": {
69673
69751
  "description": "Successful response",
@@ -69701,7 +69779,7 @@
69701
69779
  }
69702
69780
  },
69703
69781
  "tags": [
69704
- "Videos"
69782
+ "Storage::Videos"
69705
69783
  ]
69706
69784
  }
69707
69785
  },
@@ -69754,7 +69832,7 @@
69754
69832
  }
69755
69833
  },
69756
69834
  "tags": [
69757
- "Videos"
69835
+ "Storage::Videos"
69758
69836
  ]
69759
69837
  },
69760
69838
  "put": {
@@ -69815,7 +69893,7 @@
69815
69893
  }
69816
69894
  },
69817
69895
  "tags": [
69818
- "Videos"
69896
+ "Storage::Videos"
69819
69897
  ]
69820
69898
  },
69821
69899
  "delete": {
@@ -69866,7 +69944,7 @@
69866
69944
  }
69867
69945
  },
69868
69946
  "tags": [
69869
- "Videos"
69947
+ "Storage::Videos"
69870
69948
  ]
69871
69949
  }
69872
69950
  },
@@ -69967,7 +70045,7 @@
69967
70045
  }
69968
70046
  },
69969
70047
  "tags": [
69970
- "Videos::Captions"
70048
+ "Storage::Videos::Captions"
69971
70049
  ]
69972
70050
  }
69973
70051
  },
@@ -70047,7 +70125,7 @@
70047
70125
  }
70048
70126
  },
70049
70127
  "tags": [
70050
- "Videos::Captions"
70128
+ "Storage::Videos::Captions"
70051
70129
  ]
70052
70130
  },
70053
70131
  "delete": {
@@ -70107,7 +70185,7 @@
70107
70185
  }
70108
70186
  },
70109
70187
  "tags": [
70110
- "Videos::Captions"
70188
+ "Storage::Videos::Captions"
70111
70189
  ]
70112
70190
  }
70113
70191
  },
@@ -70169,7 +70247,7 @@
70169
70247
  }
70170
70248
  },
70171
70249
  "tags": [
70172
- "Videos::Captions"
70250
+ "Storage::Videos::Captions"
70173
70251
  ]
70174
70252
  }
70175
70253
  },
@@ -70231,7 +70309,7 @@
70231
70309
  }
70232
70310
  },
70233
70311
  "tags": [
70234
- "Videos::Captions"
70312
+ "Storage::Videos::Captions"
70235
70313
  ]
70236
70314
  }
70237
70315
  },
@@ -70284,7 +70362,7 @@
70284
70362
  }
70285
70363
  },
70286
70364
  "tags": [
70287
- "Videos"
70365
+ "Storage::Videos"
70288
70366
  ]
70289
70367
  },
70290
70368
  "post": {
@@ -70335,7 +70413,7 @@
70335
70413
  }
70336
70414
  },
70337
70415
  "tags": [
70338
- "Videos"
70416
+ "Storage::Videos"
70339
70417
  ]
70340
70418
  }
70341
70419
  }
@@ -97957,6 +98035,34 @@
97957
98035
  "required": [
97958
98036
  "notificationIds"
97959
98037
  ]
98038
+ },
98039
+ "DeleteManyImagesInput": {
98040
+ "type": "object",
98041
+ "properties": {
98042
+ "imageIds": {
98043
+ "type": "array",
98044
+ "items": {
98045
+ "type": "string"
98046
+ }
98047
+ }
98048
+ },
98049
+ "required": [
98050
+ "imageIds"
98051
+ ]
98052
+ },
98053
+ "DeleteManyVideosInput": {
98054
+ "type": "object",
98055
+ "properties": {
98056
+ "videoIds": {
98057
+ "type": "array",
98058
+ "items": {
98059
+ "type": "string"
98060
+ }
98061
+ }
98062
+ },
98063
+ "required": [
98064
+ "videoIds"
98065
+ ]
97960
98066
  }
97961
98067
  }
97962
98068
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.7.1",
3
+ "version": "6.7.6",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",