@connectedxm/admin 6.8.1 → 6.8.4
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.d.cts +13 -0
- package/dist/index.d.ts +13 -0
- package/openapi.json +68 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3818,6 +3818,7 @@ interface BaseSurvey {
|
|
|
3818
3818
|
id: string;
|
|
3819
3819
|
slug: string;
|
|
3820
3820
|
name: string;
|
|
3821
|
+
active: boolean;
|
|
3821
3822
|
description: string | null;
|
|
3822
3823
|
image: BaseImage;
|
|
3823
3824
|
requireAuth: boolean;
|
|
@@ -3832,6 +3833,9 @@ interface Survey extends BaseSurvey {
|
|
|
3832
3833
|
event: BaseEvent | null;
|
|
3833
3834
|
sessionId: string | null;
|
|
3834
3835
|
session: BaseEventSession | null;
|
|
3836
|
+
activationId: string | null;
|
|
3837
|
+
activation: BaseEventActivation | null;
|
|
3838
|
+
passTypes: BaseEventPassType[] | null;
|
|
3835
3839
|
}
|
|
3836
3840
|
interface SurveyTranslation {
|
|
3837
3841
|
id: string;
|
|
@@ -3843,7 +3847,10 @@ interface SurveyTranslation {
|
|
|
3843
3847
|
}
|
|
3844
3848
|
interface BaseSurveySubmission {
|
|
3845
3849
|
id: string;
|
|
3850
|
+
accountId: string | null;
|
|
3846
3851
|
account: BaseAccount | null;
|
|
3852
|
+
passId: string | null;
|
|
3853
|
+
pass: BaseEventPass | null;
|
|
3847
3854
|
status: PurchaseStatus;
|
|
3848
3855
|
responses: BaseSurveyQuestionResponse[];
|
|
3849
3856
|
}
|
|
@@ -6283,6 +6290,7 @@ interface DashboardWidgetUpdateInputs {
|
|
|
6283
6290
|
interface SurveyCreateInputs {
|
|
6284
6291
|
name: string;
|
|
6285
6292
|
slug?: string;
|
|
6293
|
+
active?: boolean;
|
|
6286
6294
|
description?: string | null;
|
|
6287
6295
|
imageId?: string | null;
|
|
6288
6296
|
requireAuth?: boolean;
|
|
@@ -6291,9 +6299,11 @@ interface SurveyCreateInputs {
|
|
|
6291
6299
|
emailBody?: string | null;
|
|
6292
6300
|
eventId?: string | null;
|
|
6293
6301
|
sessionId?: string | null;
|
|
6302
|
+
activationId?: string | null;
|
|
6294
6303
|
}
|
|
6295
6304
|
interface SurveyUpdateInputs {
|
|
6296
6305
|
name?: string;
|
|
6306
|
+
active?: boolean;
|
|
6297
6307
|
slug?: string;
|
|
6298
6308
|
description?: string | null;
|
|
6299
6309
|
imageId?: string | null;
|
|
@@ -6303,6 +6313,7 @@ interface SurveyUpdateInputs {
|
|
|
6303
6313
|
emailBody?: string | null;
|
|
6304
6314
|
eventId?: string | null;
|
|
6305
6315
|
sessionId?: string | null;
|
|
6316
|
+
activationId?: string | null;
|
|
6306
6317
|
}
|
|
6307
6318
|
interface SurveyTranslationUpdateInputs {
|
|
6308
6319
|
name?: string | null;
|
|
@@ -6311,6 +6322,8 @@ interface SurveyTranslationUpdateInputs {
|
|
|
6311
6322
|
}
|
|
6312
6323
|
interface SurveySubmissionUpdateInputs {
|
|
6313
6324
|
status?: keyof typeof PurchaseStatus;
|
|
6325
|
+
accountId?: string | null;
|
|
6326
|
+
passId?: string | null;
|
|
6314
6327
|
}
|
|
6315
6328
|
interface SurveyQuestionChoiceCreateInputs {
|
|
6316
6329
|
value: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -3818,6 +3818,7 @@ interface BaseSurvey {
|
|
|
3818
3818
|
id: string;
|
|
3819
3819
|
slug: string;
|
|
3820
3820
|
name: string;
|
|
3821
|
+
active: boolean;
|
|
3821
3822
|
description: string | null;
|
|
3822
3823
|
image: BaseImage;
|
|
3823
3824
|
requireAuth: boolean;
|
|
@@ -3832,6 +3833,9 @@ interface Survey extends BaseSurvey {
|
|
|
3832
3833
|
event: BaseEvent | null;
|
|
3833
3834
|
sessionId: string | null;
|
|
3834
3835
|
session: BaseEventSession | null;
|
|
3836
|
+
activationId: string | null;
|
|
3837
|
+
activation: BaseEventActivation | null;
|
|
3838
|
+
passTypes: BaseEventPassType[] | null;
|
|
3835
3839
|
}
|
|
3836
3840
|
interface SurveyTranslation {
|
|
3837
3841
|
id: string;
|
|
@@ -3843,7 +3847,10 @@ interface SurveyTranslation {
|
|
|
3843
3847
|
}
|
|
3844
3848
|
interface BaseSurveySubmission {
|
|
3845
3849
|
id: string;
|
|
3850
|
+
accountId: string | null;
|
|
3846
3851
|
account: BaseAccount | null;
|
|
3852
|
+
passId: string | null;
|
|
3853
|
+
pass: BaseEventPass | null;
|
|
3847
3854
|
status: PurchaseStatus;
|
|
3848
3855
|
responses: BaseSurveyQuestionResponse[];
|
|
3849
3856
|
}
|
|
@@ -6283,6 +6290,7 @@ interface DashboardWidgetUpdateInputs {
|
|
|
6283
6290
|
interface SurveyCreateInputs {
|
|
6284
6291
|
name: string;
|
|
6285
6292
|
slug?: string;
|
|
6293
|
+
active?: boolean;
|
|
6286
6294
|
description?: string | null;
|
|
6287
6295
|
imageId?: string | null;
|
|
6288
6296
|
requireAuth?: boolean;
|
|
@@ -6291,9 +6299,11 @@ interface SurveyCreateInputs {
|
|
|
6291
6299
|
emailBody?: string | null;
|
|
6292
6300
|
eventId?: string | null;
|
|
6293
6301
|
sessionId?: string | null;
|
|
6302
|
+
activationId?: string | null;
|
|
6294
6303
|
}
|
|
6295
6304
|
interface SurveyUpdateInputs {
|
|
6296
6305
|
name?: string;
|
|
6306
|
+
active?: boolean;
|
|
6297
6307
|
slug?: string;
|
|
6298
6308
|
description?: string | null;
|
|
6299
6309
|
imageId?: string | null;
|
|
@@ -6303,6 +6313,7 @@ interface SurveyUpdateInputs {
|
|
|
6303
6313
|
emailBody?: string | null;
|
|
6304
6314
|
eventId?: string | null;
|
|
6305
6315
|
sessionId?: string | null;
|
|
6316
|
+
activationId?: string | null;
|
|
6306
6317
|
}
|
|
6307
6318
|
interface SurveyTranslationUpdateInputs {
|
|
6308
6319
|
name?: string | null;
|
|
@@ -6311,6 +6322,8 @@ interface SurveyTranslationUpdateInputs {
|
|
|
6311
6322
|
}
|
|
6312
6323
|
interface SurveySubmissionUpdateInputs {
|
|
6313
6324
|
status?: keyof typeof PurchaseStatus;
|
|
6325
|
+
accountId?: string | null;
|
|
6326
|
+
passId?: string | null;
|
|
6314
6327
|
}
|
|
6315
6328
|
interface SurveyQuestionChoiceCreateInputs {
|
|
6316
6329
|
value: string;
|
package/openapi.json
CHANGED
|
@@ -87163,6 +87163,9 @@
|
|
|
87163
87163
|
"name": {
|
|
87164
87164
|
"type": "string"
|
|
87165
87165
|
},
|
|
87166
|
+
"active": {
|
|
87167
|
+
"type": "boolean"
|
|
87168
|
+
},
|
|
87166
87169
|
"description": {
|
|
87167
87170
|
"type": "string",
|
|
87168
87171
|
"nullable": true
|
|
@@ -87181,6 +87184,7 @@
|
|
|
87181
87184
|
"id",
|
|
87182
87185
|
"slug",
|
|
87183
87186
|
"name",
|
|
87187
|
+
"active",
|
|
87184
87188
|
"description",
|
|
87185
87189
|
"image",
|
|
87186
87190
|
"requireAuth",
|
|
@@ -87232,6 +87236,25 @@
|
|
|
87232
87236
|
}
|
|
87233
87237
|
],
|
|
87234
87238
|
"nullable": true
|
|
87239
|
+
},
|
|
87240
|
+
"activationId": {
|
|
87241
|
+
"type": "string",
|
|
87242
|
+
"nullable": true
|
|
87243
|
+
},
|
|
87244
|
+
"activation": {
|
|
87245
|
+
"allOf": [
|
|
87246
|
+
{
|
|
87247
|
+
"$ref": "#/components/schemas/BaseEventActivation"
|
|
87248
|
+
}
|
|
87249
|
+
],
|
|
87250
|
+
"nullable": true
|
|
87251
|
+
},
|
|
87252
|
+
"passTypes": {
|
|
87253
|
+
"type": "array",
|
|
87254
|
+
"items": {
|
|
87255
|
+
"$ref": "#/components/schemas/BaseEventPassType"
|
|
87256
|
+
},
|
|
87257
|
+
"nullable": true
|
|
87235
87258
|
}
|
|
87236
87259
|
},
|
|
87237
87260
|
"required": [
|
|
@@ -87242,7 +87265,10 @@
|
|
|
87242
87265
|
"eventId",
|
|
87243
87266
|
"event",
|
|
87244
87267
|
"sessionId",
|
|
87245
|
-
"session"
|
|
87268
|
+
"session",
|
|
87269
|
+
"activationId",
|
|
87270
|
+
"activation",
|
|
87271
|
+
"passTypes"
|
|
87246
87272
|
]
|
|
87247
87273
|
}
|
|
87248
87274
|
]
|
|
@@ -87285,6 +87311,10 @@
|
|
|
87285
87311
|
"id": {
|
|
87286
87312
|
"type": "string"
|
|
87287
87313
|
},
|
|
87314
|
+
"accountId": {
|
|
87315
|
+
"type": "string",
|
|
87316
|
+
"nullable": true
|
|
87317
|
+
},
|
|
87288
87318
|
"account": {
|
|
87289
87319
|
"allOf": [
|
|
87290
87320
|
{
|
|
@@ -87293,6 +87323,18 @@
|
|
|
87293
87323
|
],
|
|
87294
87324
|
"nullable": true
|
|
87295
87325
|
},
|
|
87326
|
+
"passId": {
|
|
87327
|
+
"type": "string",
|
|
87328
|
+
"nullable": true
|
|
87329
|
+
},
|
|
87330
|
+
"pass": {
|
|
87331
|
+
"allOf": [
|
|
87332
|
+
{
|
|
87333
|
+
"$ref": "#/components/schemas/BaseEventPass"
|
|
87334
|
+
}
|
|
87335
|
+
],
|
|
87336
|
+
"nullable": true
|
|
87337
|
+
},
|
|
87296
87338
|
"status": {
|
|
87297
87339
|
"$ref": "#/components/schemas/PurchaseStatus"
|
|
87298
87340
|
},
|
|
@@ -87305,7 +87347,10 @@
|
|
|
87305
87347
|
},
|
|
87306
87348
|
"required": [
|
|
87307
87349
|
"id",
|
|
87350
|
+
"accountId",
|
|
87308
87351
|
"account",
|
|
87352
|
+
"passId",
|
|
87353
|
+
"pass",
|
|
87309
87354
|
"status",
|
|
87310
87355
|
"responses"
|
|
87311
87356
|
]
|
|
@@ -97494,6 +97539,9 @@
|
|
|
97494
97539
|
"slug": {
|
|
97495
97540
|
"type": "string"
|
|
97496
97541
|
},
|
|
97542
|
+
"active": {
|
|
97543
|
+
"type": "boolean"
|
|
97544
|
+
},
|
|
97497
97545
|
"description": {
|
|
97498
97546
|
"type": "string",
|
|
97499
97547
|
"nullable": true
|
|
@@ -97530,6 +97578,10 @@
|
|
|
97530
97578
|
"sessionId": {
|
|
97531
97579
|
"type": "string",
|
|
97532
97580
|
"nullable": true
|
|
97581
|
+
},
|
|
97582
|
+
"activationId": {
|
|
97583
|
+
"type": "string",
|
|
97584
|
+
"nullable": true
|
|
97533
97585
|
}
|
|
97534
97586
|
},
|
|
97535
97587
|
"required": [
|
|
@@ -97542,6 +97594,9 @@
|
|
|
97542
97594
|
"name": {
|
|
97543
97595
|
"type": "string"
|
|
97544
97596
|
},
|
|
97597
|
+
"active": {
|
|
97598
|
+
"type": "boolean"
|
|
97599
|
+
},
|
|
97545
97600
|
"slug": {
|
|
97546
97601
|
"type": "string"
|
|
97547
97602
|
},
|
|
@@ -97581,6 +97636,10 @@
|
|
|
97581
97636
|
"sessionId": {
|
|
97582
97637
|
"type": "string",
|
|
97583
97638
|
"nullable": true
|
|
97639
|
+
},
|
|
97640
|
+
"activationId": {
|
|
97641
|
+
"type": "string",
|
|
97642
|
+
"nullable": true
|
|
97584
97643
|
}
|
|
97585
97644
|
}
|
|
97586
97645
|
},
|
|
@@ -97606,6 +97665,14 @@
|
|
|
97606
97665
|
"properties": {
|
|
97607
97666
|
"status": {
|
|
97608
97667
|
"$ref": "#/components/schemas/PurchaseStatus"
|
|
97668
|
+
},
|
|
97669
|
+
"accountId": {
|
|
97670
|
+
"type": "string",
|
|
97671
|
+
"nullable": true
|
|
97672
|
+
},
|
|
97673
|
+
"passId": {
|
|
97674
|
+
"type": "string",
|
|
97675
|
+
"nullable": true
|
|
97609
97676
|
}
|
|
97610
97677
|
}
|
|
97611
97678
|
},
|