@connectedxm/admin 6.8.3 → 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 +4 -0
- package/dist/index.d.ts +4 -0
- package/openapi.json +22 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3849,6 +3849,8 @@ interface BaseSurveySubmission {
|
|
|
3849
3849
|
id: string;
|
|
3850
3850
|
accountId: string | null;
|
|
3851
3851
|
account: BaseAccount | null;
|
|
3852
|
+
passId: string | null;
|
|
3853
|
+
pass: BaseEventPass | null;
|
|
3852
3854
|
status: PurchaseStatus;
|
|
3853
3855
|
responses: BaseSurveyQuestionResponse[];
|
|
3854
3856
|
}
|
|
@@ -6320,6 +6322,8 @@ interface SurveyTranslationUpdateInputs {
|
|
|
6320
6322
|
}
|
|
6321
6323
|
interface SurveySubmissionUpdateInputs {
|
|
6322
6324
|
status?: keyof typeof PurchaseStatus;
|
|
6325
|
+
accountId?: string | null;
|
|
6326
|
+
passId?: string | null;
|
|
6323
6327
|
}
|
|
6324
6328
|
interface SurveyQuestionChoiceCreateInputs {
|
|
6325
6329
|
value: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -3849,6 +3849,8 @@ interface BaseSurveySubmission {
|
|
|
3849
3849
|
id: string;
|
|
3850
3850
|
accountId: string | null;
|
|
3851
3851
|
account: BaseAccount | null;
|
|
3852
|
+
passId: string | null;
|
|
3853
|
+
pass: BaseEventPass | null;
|
|
3852
3854
|
status: PurchaseStatus;
|
|
3853
3855
|
responses: BaseSurveyQuestionResponse[];
|
|
3854
3856
|
}
|
|
@@ -6320,6 +6322,8 @@ interface SurveyTranslationUpdateInputs {
|
|
|
6320
6322
|
}
|
|
6321
6323
|
interface SurveySubmissionUpdateInputs {
|
|
6322
6324
|
status?: keyof typeof PurchaseStatus;
|
|
6325
|
+
accountId?: string | null;
|
|
6326
|
+
passId?: string | null;
|
|
6323
6327
|
}
|
|
6324
6328
|
interface SurveyQuestionChoiceCreateInputs {
|
|
6325
6329
|
value: string;
|
package/openapi.json
CHANGED
|
@@ -87323,6 +87323,18 @@
|
|
|
87323
87323
|
],
|
|
87324
87324
|
"nullable": true
|
|
87325
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
|
+
},
|
|
87326
87338
|
"status": {
|
|
87327
87339
|
"$ref": "#/components/schemas/PurchaseStatus"
|
|
87328
87340
|
},
|
|
@@ -87337,6 +87349,8 @@
|
|
|
87337
87349
|
"id",
|
|
87338
87350
|
"accountId",
|
|
87339
87351
|
"account",
|
|
87352
|
+
"passId",
|
|
87353
|
+
"pass",
|
|
87340
87354
|
"status",
|
|
87341
87355
|
"responses"
|
|
87342
87356
|
]
|
|
@@ -97651,6 +97665,14 @@
|
|
|
97651
97665
|
"properties": {
|
|
97652
97666
|
"status": {
|
|
97653
97667
|
"$ref": "#/components/schemas/PurchaseStatus"
|
|
97668
|
+
},
|
|
97669
|
+
"accountId": {
|
|
97670
|
+
"type": "string",
|
|
97671
|
+
"nullable": true
|
|
97672
|
+
},
|
|
97673
|
+
"passId": {
|
|
97674
|
+
"type": "string",
|
|
97675
|
+
"nullable": true
|
|
97654
97676
|
}
|
|
97655
97677
|
}
|
|
97656
97678
|
},
|