@connectedxm/admin 6.26.0 → 6.27.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/dist/index.cjs +221 -0
- package/dist/index.d.cts +132 -1
- package/dist/index.d.ts +132 -1
- package/dist/index.js +205 -0
- package/openapi.json +501 -0
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -54758,6 +54758,506 @@
|
|
|
54758
54758
|
]
|
|
54759
54759
|
}
|
|
54760
54760
|
},
|
|
54761
|
+
"/events/{eventId}/sessions/{sessionId}/visiblePassTypes": {
|
|
54762
|
+
"get": {
|
|
54763
|
+
"operationId": "GetEventSessionVisiblePassTypes",
|
|
54764
|
+
"summary": "Get Event Session Visible Pass Types",
|
|
54765
|
+
"description": "Get Event Session Visible Pass Types endpoint",
|
|
54766
|
+
"parameters": [
|
|
54767
|
+
{
|
|
54768
|
+
"in": "path",
|
|
54769
|
+
"name": "eventId",
|
|
54770
|
+
"schema": {
|
|
54771
|
+
"type": "string"
|
|
54772
|
+
},
|
|
54773
|
+
"description": "The event identifier",
|
|
54774
|
+
"required": true
|
|
54775
|
+
},
|
|
54776
|
+
{
|
|
54777
|
+
"in": "path",
|
|
54778
|
+
"name": "sessionId",
|
|
54779
|
+
"schema": {
|
|
54780
|
+
"type": "string"
|
|
54781
|
+
},
|
|
54782
|
+
"description": "The session identifier",
|
|
54783
|
+
"required": true
|
|
54784
|
+
},
|
|
54785
|
+
{
|
|
54786
|
+
"in": "query",
|
|
54787
|
+
"name": "page",
|
|
54788
|
+
"schema": {
|
|
54789
|
+
"type": "integer",
|
|
54790
|
+
"minimum": 1,
|
|
54791
|
+
"default": 1
|
|
54792
|
+
},
|
|
54793
|
+
"description": "Page number",
|
|
54794
|
+
"required": false
|
|
54795
|
+
},
|
|
54796
|
+
{
|
|
54797
|
+
"in": "query",
|
|
54798
|
+
"name": "pageSize",
|
|
54799
|
+
"schema": {
|
|
54800
|
+
"type": "integer",
|
|
54801
|
+
"minimum": 1,
|
|
54802
|
+
"maximum": 100,
|
|
54803
|
+
"default": 25
|
|
54804
|
+
},
|
|
54805
|
+
"description": "Number of items per page",
|
|
54806
|
+
"required": false
|
|
54807
|
+
},
|
|
54808
|
+
{
|
|
54809
|
+
"in": "query",
|
|
54810
|
+
"name": "orderBy",
|
|
54811
|
+
"schema": {
|
|
54812
|
+
"type": "string"
|
|
54813
|
+
},
|
|
54814
|
+
"description": "Field to order by",
|
|
54815
|
+
"required": false
|
|
54816
|
+
},
|
|
54817
|
+
{
|
|
54818
|
+
"in": "query",
|
|
54819
|
+
"name": "search",
|
|
54820
|
+
"schema": {
|
|
54821
|
+
"type": "string"
|
|
54822
|
+
},
|
|
54823
|
+
"description": "Search query",
|
|
54824
|
+
"required": false
|
|
54825
|
+
}
|
|
54826
|
+
],
|
|
54827
|
+
"responses": {
|
|
54828
|
+
"200": {
|
|
54829
|
+
"description": "Successful response",
|
|
54830
|
+
"content": {
|
|
54831
|
+
"application/json": {
|
|
54832
|
+
"schema": {
|
|
54833
|
+
"type": "object",
|
|
54834
|
+
"properties": {
|
|
54835
|
+
"status": {
|
|
54836
|
+
"type": "string",
|
|
54837
|
+
"enum": [
|
|
54838
|
+
"ok"
|
|
54839
|
+
]
|
|
54840
|
+
},
|
|
54841
|
+
"message": {
|
|
54842
|
+
"type": "string",
|
|
54843
|
+
"example": "Success message."
|
|
54844
|
+
},
|
|
54845
|
+
"data": {
|
|
54846
|
+
"type": "array",
|
|
54847
|
+
"items": {
|
|
54848
|
+
"$ref": "#/components/schemas/EventPassType"
|
|
54849
|
+
}
|
|
54850
|
+
},
|
|
54851
|
+
"count": {
|
|
54852
|
+
"type": "integer",
|
|
54853
|
+
"example": 100
|
|
54854
|
+
}
|
|
54855
|
+
},
|
|
54856
|
+
"required": [
|
|
54857
|
+
"status",
|
|
54858
|
+
"message",
|
|
54859
|
+
"data"
|
|
54860
|
+
]
|
|
54861
|
+
}
|
|
54862
|
+
}
|
|
54863
|
+
}
|
|
54864
|
+
}
|
|
54865
|
+
},
|
|
54866
|
+
"tags": [
|
|
54867
|
+
"Events::Sessions"
|
|
54868
|
+
]
|
|
54869
|
+
}
|
|
54870
|
+
},
|
|
54871
|
+
"/events/{eventId}/sessions/{sessionId}/visiblePassTypes/{passTypeId}": {
|
|
54872
|
+
"post": {
|
|
54873
|
+
"operationId": "AddEventSessionVisiblePassType",
|
|
54874
|
+
"summary": "Add Event Session Visible Pass Type",
|
|
54875
|
+
"description": "Add Event Session Visible Pass Type endpoint",
|
|
54876
|
+
"parameters": [
|
|
54877
|
+
{
|
|
54878
|
+
"in": "path",
|
|
54879
|
+
"name": "eventId",
|
|
54880
|
+
"schema": {
|
|
54881
|
+
"type": "string"
|
|
54882
|
+
},
|
|
54883
|
+
"description": "The event identifier",
|
|
54884
|
+
"required": true
|
|
54885
|
+
},
|
|
54886
|
+
{
|
|
54887
|
+
"in": "path",
|
|
54888
|
+
"name": "sessionId",
|
|
54889
|
+
"schema": {
|
|
54890
|
+
"type": "string"
|
|
54891
|
+
},
|
|
54892
|
+
"description": "The session identifier",
|
|
54893
|
+
"required": true
|
|
54894
|
+
},
|
|
54895
|
+
{
|
|
54896
|
+
"in": "path",
|
|
54897
|
+
"name": "passTypeId",
|
|
54898
|
+
"schema": {
|
|
54899
|
+
"type": "string"
|
|
54900
|
+
},
|
|
54901
|
+
"description": "The passType identifier",
|
|
54902
|
+
"required": true
|
|
54903
|
+
}
|
|
54904
|
+
],
|
|
54905
|
+
"responses": {
|
|
54906
|
+
"200": {
|
|
54907
|
+
"description": "Successful response",
|
|
54908
|
+
"content": {
|
|
54909
|
+
"application/json": {
|
|
54910
|
+
"schema": {
|
|
54911
|
+
"type": "object",
|
|
54912
|
+
"properties": {
|
|
54913
|
+
"status": {
|
|
54914
|
+
"type": "string",
|
|
54915
|
+
"enum": [
|
|
54916
|
+
"ok"
|
|
54917
|
+
]
|
|
54918
|
+
},
|
|
54919
|
+
"message": {
|
|
54920
|
+
"type": "string",
|
|
54921
|
+
"example": "Success message."
|
|
54922
|
+
},
|
|
54923
|
+
"data": {
|
|
54924
|
+
"$ref": "#/components/schemas/EventSession"
|
|
54925
|
+
}
|
|
54926
|
+
},
|
|
54927
|
+
"required": [
|
|
54928
|
+
"status",
|
|
54929
|
+
"message",
|
|
54930
|
+
"data"
|
|
54931
|
+
]
|
|
54932
|
+
}
|
|
54933
|
+
}
|
|
54934
|
+
}
|
|
54935
|
+
}
|
|
54936
|
+
},
|
|
54937
|
+
"tags": [
|
|
54938
|
+
"Events::Sessions"
|
|
54939
|
+
]
|
|
54940
|
+
},
|
|
54941
|
+
"delete": {
|
|
54942
|
+
"operationId": "RemoveEventSessionVisiblePassType",
|
|
54943
|
+
"summary": "Remove Event Session Visible Pass Type",
|
|
54944
|
+
"description": "Remove Event Session Visible Pass Type endpoint",
|
|
54945
|
+
"parameters": [
|
|
54946
|
+
{
|
|
54947
|
+
"in": "path",
|
|
54948
|
+
"name": "eventId",
|
|
54949
|
+
"schema": {
|
|
54950
|
+
"type": "string"
|
|
54951
|
+
},
|
|
54952
|
+
"description": "The event identifier",
|
|
54953
|
+
"required": true
|
|
54954
|
+
},
|
|
54955
|
+
{
|
|
54956
|
+
"in": "path",
|
|
54957
|
+
"name": "sessionId",
|
|
54958
|
+
"schema": {
|
|
54959
|
+
"type": "string"
|
|
54960
|
+
},
|
|
54961
|
+
"description": "The session identifier",
|
|
54962
|
+
"required": true
|
|
54963
|
+
},
|
|
54964
|
+
{
|
|
54965
|
+
"in": "path",
|
|
54966
|
+
"name": "passTypeId",
|
|
54967
|
+
"schema": {
|
|
54968
|
+
"type": "string"
|
|
54969
|
+
},
|
|
54970
|
+
"description": "The passType identifier",
|
|
54971
|
+
"required": true
|
|
54972
|
+
}
|
|
54973
|
+
],
|
|
54974
|
+
"responses": {
|
|
54975
|
+
"200": {
|
|
54976
|
+
"description": "Successful response",
|
|
54977
|
+
"content": {
|
|
54978
|
+
"application/json": {
|
|
54979
|
+
"schema": {
|
|
54980
|
+
"type": "object",
|
|
54981
|
+
"properties": {
|
|
54982
|
+
"status": {
|
|
54983
|
+
"type": "string",
|
|
54984
|
+
"enum": [
|
|
54985
|
+
"ok"
|
|
54986
|
+
]
|
|
54987
|
+
},
|
|
54988
|
+
"message": {
|
|
54989
|
+
"type": "string",
|
|
54990
|
+
"example": "Success message."
|
|
54991
|
+
},
|
|
54992
|
+
"data": {
|
|
54993
|
+
"$ref": "#/components/schemas/EventSession"
|
|
54994
|
+
}
|
|
54995
|
+
},
|
|
54996
|
+
"required": [
|
|
54997
|
+
"status",
|
|
54998
|
+
"message",
|
|
54999
|
+
"data"
|
|
55000
|
+
]
|
|
55001
|
+
}
|
|
55002
|
+
}
|
|
55003
|
+
}
|
|
55004
|
+
}
|
|
55005
|
+
},
|
|
55006
|
+
"tags": [
|
|
55007
|
+
"Events::Sessions"
|
|
55008
|
+
]
|
|
55009
|
+
}
|
|
55010
|
+
},
|
|
55011
|
+
"/events/{eventId}/sessions/{sessionId}/visibleTiers": {
|
|
55012
|
+
"get": {
|
|
55013
|
+
"operationId": "GetEventSessionVisibleTiers",
|
|
55014
|
+
"summary": "Get Event Session Visible Tiers",
|
|
55015
|
+
"description": "Get Event Session Visible Tiers endpoint",
|
|
55016
|
+
"parameters": [
|
|
55017
|
+
{
|
|
55018
|
+
"in": "path",
|
|
55019
|
+
"name": "eventId",
|
|
55020
|
+
"schema": {
|
|
55021
|
+
"type": "string"
|
|
55022
|
+
},
|
|
55023
|
+
"description": "The event identifier",
|
|
55024
|
+
"required": true
|
|
55025
|
+
},
|
|
55026
|
+
{
|
|
55027
|
+
"in": "path",
|
|
55028
|
+
"name": "sessionId",
|
|
55029
|
+
"schema": {
|
|
55030
|
+
"type": "string"
|
|
55031
|
+
},
|
|
55032
|
+
"description": "The session identifier",
|
|
55033
|
+
"required": true
|
|
55034
|
+
},
|
|
55035
|
+
{
|
|
55036
|
+
"in": "query",
|
|
55037
|
+
"name": "page",
|
|
55038
|
+
"schema": {
|
|
55039
|
+
"type": "integer",
|
|
55040
|
+
"minimum": 1,
|
|
55041
|
+
"default": 1
|
|
55042
|
+
},
|
|
55043
|
+
"description": "Page number",
|
|
55044
|
+
"required": false
|
|
55045
|
+
},
|
|
55046
|
+
{
|
|
55047
|
+
"in": "query",
|
|
55048
|
+
"name": "pageSize",
|
|
55049
|
+
"schema": {
|
|
55050
|
+
"type": "integer",
|
|
55051
|
+
"minimum": 1,
|
|
55052
|
+
"maximum": 100,
|
|
55053
|
+
"default": 25
|
|
55054
|
+
},
|
|
55055
|
+
"description": "Number of items per page",
|
|
55056
|
+
"required": false
|
|
55057
|
+
},
|
|
55058
|
+
{
|
|
55059
|
+
"in": "query",
|
|
55060
|
+
"name": "orderBy",
|
|
55061
|
+
"schema": {
|
|
55062
|
+
"type": "string"
|
|
55063
|
+
},
|
|
55064
|
+
"description": "Field to order by",
|
|
55065
|
+
"required": false
|
|
55066
|
+
},
|
|
55067
|
+
{
|
|
55068
|
+
"in": "query",
|
|
55069
|
+
"name": "search",
|
|
55070
|
+
"schema": {
|
|
55071
|
+
"type": "string"
|
|
55072
|
+
},
|
|
55073
|
+
"description": "Search query",
|
|
55074
|
+
"required": false
|
|
55075
|
+
}
|
|
55076
|
+
],
|
|
55077
|
+
"responses": {
|
|
55078
|
+
"200": {
|
|
55079
|
+
"description": "Successful response",
|
|
55080
|
+
"content": {
|
|
55081
|
+
"application/json": {
|
|
55082
|
+
"schema": {
|
|
55083
|
+
"type": "object",
|
|
55084
|
+
"properties": {
|
|
55085
|
+
"status": {
|
|
55086
|
+
"type": "string",
|
|
55087
|
+
"enum": [
|
|
55088
|
+
"ok"
|
|
55089
|
+
]
|
|
55090
|
+
},
|
|
55091
|
+
"message": {
|
|
55092
|
+
"type": "string",
|
|
55093
|
+
"example": "Success message."
|
|
55094
|
+
},
|
|
55095
|
+
"data": {
|
|
55096
|
+
"type": "array",
|
|
55097
|
+
"items": {
|
|
55098
|
+
"$ref": "#/components/schemas/Tier"
|
|
55099
|
+
}
|
|
55100
|
+
},
|
|
55101
|
+
"count": {
|
|
55102
|
+
"type": "integer",
|
|
55103
|
+
"example": 100
|
|
55104
|
+
}
|
|
55105
|
+
},
|
|
55106
|
+
"required": [
|
|
55107
|
+
"status",
|
|
55108
|
+
"message",
|
|
55109
|
+
"data"
|
|
55110
|
+
]
|
|
55111
|
+
}
|
|
55112
|
+
}
|
|
55113
|
+
}
|
|
55114
|
+
}
|
|
55115
|
+
},
|
|
55116
|
+
"tags": [
|
|
55117
|
+
"Events::Sessions"
|
|
55118
|
+
]
|
|
55119
|
+
}
|
|
55120
|
+
},
|
|
55121
|
+
"/events/{eventId}/sessions/{sessionId}/visibleTiers/{tierId}": {
|
|
55122
|
+
"post": {
|
|
55123
|
+
"operationId": "AddEventSessionVisibleTier",
|
|
55124
|
+
"summary": "Add Event Session Visible Tier",
|
|
55125
|
+
"description": "Add Event Session Visible Tier endpoint",
|
|
55126
|
+
"parameters": [
|
|
55127
|
+
{
|
|
55128
|
+
"in": "path",
|
|
55129
|
+
"name": "eventId",
|
|
55130
|
+
"schema": {
|
|
55131
|
+
"type": "string"
|
|
55132
|
+
},
|
|
55133
|
+
"description": "The event identifier",
|
|
55134
|
+
"required": true
|
|
55135
|
+
},
|
|
55136
|
+
{
|
|
55137
|
+
"in": "path",
|
|
55138
|
+
"name": "sessionId",
|
|
55139
|
+
"schema": {
|
|
55140
|
+
"type": "string"
|
|
55141
|
+
},
|
|
55142
|
+
"description": "The session identifier",
|
|
55143
|
+
"required": true
|
|
55144
|
+
},
|
|
55145
|
+
{
|
|
55146
|
+
"in": "path",
|
|
55147
|
+
"name": "tierId",
|
|
55148
|
+
"schema": {
|
|
55149
|
+
"type": "string"
|
|
55150
|
+
},
|
|
55151
|
+
"description": "The tier identifier",
|
|
55152
|
+
"required": true
|
|
55153
|
+
}
|
|
55154
|
+
],
|
|
55155
|
+
"responses": {
|
|
55156
|
+
"200": {
|
|
55157
|
+
"description": "Successful response",
|
|
55158
|
+
"content": {
|
|
55159
|
+
"application/json": {
|
|
55160
|
+
"schema": {
|
|
55161
|
+
"type": "object",
|
|
55162
|
+
"properties": {
|
|
55163
|
+
"status": {
|
|
55164
|
+
"type": "string",
|
|
55165
|
+
"enum": [
|
|
55166
|
+
"ok"
|
|
55167
|
+
]
|
|
55168
|
+
},
|
|
55169
|
+
"message": {
|
|
55170
|
+
"type": "string",
|
|
55171
|
+
"example": "Success message."
|
|
55172
|
+
},
|
|
55173
|
+
"data": {
|
|
55174
|
+
"$ref": "#/components/schemas/EventSession"
|
|
55175
|
+
}
|
|
55176
|
+
},
|
|
55177
|
+
"required": [
|
|
55178
|
+
"status",
|
|
55179
|
+
"message",
|
|
55180
|
+
"data"
|
|
55181
|
+
]
|
|
55182
|
+
}
|
|
55183
|
+
}
|
|
55184
|
+
}
|
|
55185
|
+
}
|
|
55186
|
+
},
|
|
55187
|
+
"tags": [
|
|
55188
|
+
"Events::Sessions"
|
|
55189
|
+
]
|
|
55190
|
+
},
|
|
55191
|
+
"delete": {
|
|
55192
|
+
"operationId": "RemoveEventSessionVisibleTier",
|
|
55193
|
+
"summary": "Remove Event Session Visible Tier",
|
|
55194
|
+
"description": "Remove Event Session Visible Tier endpoint",
|
|
55195
|
+
"parameters": [
|
|
55196
|
+
{
|
|
55197
|
+
"in": "path",
|
|
55198
|
+
"name": "eventId",
|
|
55199
|
+
"schema": {
|
|
55200
|
+
"type": "string"
|
|
55201
|
+
},
|
|
55202
|
+
"description": "The event identifier",
|
|
55203
|
+
"required": true
|
|
55204
|
+
},
|
|
55205
|
+
{
|
|
55206
|
+
"in": "path",
|
|
55207
|
+
"name": "sessionId",
|
|
55208
|
+
"schema": {
|
|
55209
|
+
"type": "string"
|
|
55210
|
+
},
|
|
55211
|
+
"description": "The session identifier",
|
|
55212
|
+
"required": true
|
|
55213
|
+
},
|
|
55214
|
+
{
|
|
55215
|
+
"in": "path",
|
|
55216
|
+
"name": "tierId",
|
|
55217
|
+
"schema": {
|
|
55218
|
+
"type": "string"
|
|
55219
|
+
},
|
|
55220
|
+
"description": "The tier identifier",
|
|
55221
|
+
"required": true
|
|
55222
|
+
}
|
|
55223
|
+
],
|
|
55224
|
+
"responses": {
|
|
55225
|
+
"200": {
|
|
55226
|
+
"description": "Successful response",
|
|
55227
|
+
"content": {
|
|
55228
|
+
"application/json": {
|
|
55229
|
+
"schema": {
|
|
55230
|
+
"type": "object",
|
|
55231
|
+
"properties": {
|
|
55232
|
+
"status": {
|
|
55233
|
+
"type": "string",
|
|
55234
|
+
"enum": [
|
|
55235
|
+
"ok"
|
|
55236
|
+
]
|
|
55237
|
+
},
|
|
55238
|
+
"message": {
|
|
55239
|
+
"type": "string",
|
|
55240
|
+
"example": "Success message."
|
|
55241
|
+
},
|
|
55242
|
+
"data": {
|
|
55243
|
+
"$ref": "#/components/schemas/EventSession"
|
|
55244
|
+
}
|
|
55245
|
+
},
|
|
55246
|
+
"required": [
|
|
55247
|
+
"status",
|
|
55248
|
+
"message",
|
|
55249
|
+
"data"
|
|
55250
|
+
]
|
|
55251
|
+
}
|
|
55252
|
+
}
|
|
55253
|
+
}
|
|
55254
|
+
}
|
|
55255
|
+
},
|
|
55256
|
+
"tags": [
|
|
55257
|
+
"Events::Sessions"
|
|
55258
|
+
]
|
|
55259
|
+
}
|
|
55260
|
+
},
|
|
54761
55261
|
"/events/{eventId}/speakers": {
|
|
54762
55262
|
"get": {
|
|
54763
55263
|
"operationId": "GetEventSpeakers",
|
|
@@ -101786,6 +102286,7 @@
|
|
|
101786
102286
|
"type": "string",
|
|
101787
102287
|
"enum": [
|
|
101788
102288
|
"PUBLIC",
|
|
102289
|
+
"PREVIEW",
|
|
101789
102290
|
"RESTRICTED",
|
|
101790
102291
|
"REGISTERED",
|
|
101791
102292
|
"HIDDEN"
|