@connectedxm/admin 6.14.3 → 6.14.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 +3 -0
- package/dist/index.d.ts +3 -0
- package/openapi.json +10 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3997,6 +3997,7 @@ interface Survey extends BaseSurvey {
|
|
|
3997
3997
|
updatedAt: string;
|
|
3998
3998
|
eventId: string | null;
|
|
3999
3999
|
event: BaseEvent | null;
|
|
4000
|
+
requireCheckIn: boolean;
|
|
4000
4001
|
activationId: string | null;
|
|
4001
4002
|
activation: BaseEventActivation | null;
|
|
4002
4003
|
passTypes: BaseEventPassType[] | null;
|
|
@@ -6599,6 +6600,7 @@ interface SurveyCreateInputs {
|
|
|
6599
6600
|
description?: string | null;
|
|
6600
6601
|
imageId?: string | null;
|
|
6601
6602
|
requireAuth?: boolean;
|
|
6603
|
+
requireCheckIn?: boolean;
|
|
6602
6604
|
submissionsPerAccount?: string | number;
|
|
6603
6605
|
replyTo?: string | null;
|
|
6604
6606
|
emailBody?: string | null;
|
|
@@ -6612,6 +6614,7 @@ interface SurveyUpdateInputs {
|
|
|
6612
6614
|
description?: string | null;
|
|
6613
6615
|
imageId?: string | null;
|
|
6614
6616
|
requireAuth?: boolean;
|
|
6617
|
+
requireCheckIn?: boolean;
|
|
6615
6618
|
submissionsPerAccount?: string | number;
|
|
6616
6619
|
replyTo?: string | null;
|
|
6617
6620
|
emailBody?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -3997,6 +3997,7 @@ interface Survey extends BaseSurvey {
|
|
|
3997
3997
|
updatedAt: string;
|
|
3998
3998
|
eventId: string | null;
|
|
3999
3999
|
event: BaseEvent | null;
|
|
4000
|
+
requireCheckIn: boolean;
|
|
4000
4001
|
activationId: string | null;
|
|
4001
4002
|
activation: BaseEventActivation | null;
|
|
4002
4003
|
passTypes: BaseEventPassType[] | null;
|
|
@@ -6599,6 +6600,7 @@ interface SurveyCreateInputs {
|
|
|
6599
6600
|
description?: string | null;
|
|
6600
6601
|
imageId?: string | null;
|
|
6601
6602
|
requireAuth?: boolean;
|
|
6603
|
+
requireCheckIn?: boolean;
|
|
6602
6604
|
submissionsPerAccount?: string | number;
|
|
6603
6605
|
replyTo?: string | null;
|
|
6604
6606
|
emailBody?: string | null;
|
|
@@ -6612,6 +6614,7 @@ interface SurveyUpdateInputs {
|
|
|
6612
6614
|
description?: string | null;
|
|
6613
6615
|
imageId?: string | null;
|
|
6614
6616
|
requireAuth?: boolean;
|
|
6617
|
+
requireCheckIn?: boolean;
|
|
6615
6618
|
submissionsPerAccount?: string | number;
|
|
6616
6619
|
replyTo?: string | null;
|
|
6617
6620
|
emailBody?: string | null;
|
package/openapi.json
CHANGED
|
@@ -90741,6 +90741,9 @@
|
|
|
90741
90741
|
],
|
|
90742
90742
|
"nullable": true
|
|
90743
90743
|
},
|
|
90744
|
+
"requireCheckIn": {
|
|
90745
|
+
"type": "boolean"
|
|
90746
|
+
},
|
|
90744
90747
|
"activationId": {
|
|
90745
90748
|
"type": "string",
|
|
90746
90749
|
"nullable": true
|
|
@@ -90779,6 +90782,7 @@
|
|
|
90779
90782
|
"updatedAt",
|
|
90780
90783
|
"eventId",
|
|
90781
90784
|
"event",
|
|
90785
|
+
"requireCheckIn",
|
|
90782
90786
|
"activationId",
|
|
90783
90787
|
"activation",
|
|
90784
90788
|
"passTypes",
|
|
@@ -101636,6 +101640,9 @@
|
|
|
101636
101640
|
"requireAuth": {
|
|
101637
101641
|
"type": "boolean"
|
|
101638
101642
|
},
|
|
101643
|
+
"requireCheckIn": {
|
|
101644
|
+
"type": "boolean"
|
|
101645
|
+
},
|
|
101639
101646
|
"submissionsPerAccount": {
|
|
101640
101647
|
"oneOf": [
|
|
101641
101648
|
{
|
|
@@ -101690,6 +101697,9 @@
|
|
|
101690
101697
|
"requireAuth": {
|
|
101691
101698
|
"type": "boolean"
|
|
101692
101699
|
},
|
|
101700
|
+
"requireCheckIn": {
|
|
101701
|
+
"type": "boolean"
|
|
101702
|
+
},
|
|
101693
101703
|
"submissionsPerAccount": {
|
|
101694
101704
|
"oneOf": [
|
|
101695
101705
|
{
|