@connectedxm/admin 6.14.2 → 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 +6 -0
- package/dist/index.d.ts +6 -0
- package/openapi.json +36 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -431,6 +431,7 @@ interface BaseEventActivation {
|
|
|
431
431
|
startAfter: string | null;
|
|
432
432
|
type: keyof typeof EventActivationType;
|
|
433
433
|
accessLevel: keyof typeof PassTypeAccessLevel;
|
|
434
|
+
sortOrder: number;
|
|
434
435
|
survey: BaseSurvey | null;
|
|
435
436
|
_count: {
|
|
436
437
|
sessions: number;
|
|
@@ -3996,6 +3997,7 @@ interface Survey extends BaseSurvey {
|
|
|
3996
3997
|
updatedAt: string;
|
|
3997
3998
|
eventId: string | null;
|
|
3998
3999
|
event: BaseEvent | null;
|
|
4000
|
+
requireCheckIn: boolean;
|
|
3999
4001
|
activationId: string | null;
|
|
4000
4002
|
activation: BaseEventActivation | null;
|
|
4001
4003
|
passTypes: BaseEventPassType[] | null;
|
|
@@ -4940,6 +4942,7 @@ interface EventActivationCreateInputs {
|
|
|
4940
4942
|
accessLevel?: keyof typeof PassTypeAccessLevel;
|
|
4941
4943
|
continuousScanning?: boolean;
|
|
4942
4944
|
scanType?: keyof typeof OnSiteScanType | null;
|
|
4945
|
+
sortOrder?: number | string | null;
|
|
4943
4946
|
}
|
|
4944
4947
|
interface EventActivationTranslationUpdateInputs {
|
|
4945
4948
|
name?: string | null;
|
|
@@ -4960,6 +4963,7 @@ interface EventActivationUpdateInputs {
|
|
|
4960
4963
|
accessLevel?: keyof typeof PassTypeAccessLevel;
|
|
4961
4964
|
continuousScanning?: boolean;
|
|
4962
4965
|
scanType?: keyof typeof OnSiteScanType | null;
|
|
4966
|
+
sortOrder?: number | string | null;
|
|
4963
4967
|
}
|
|
4964
4968
|
interface EventActivationCompletionCreateInputs {
|
|
4965
4969
|
passId: string;
|
|
@@ -6596,6 +6600,7 @@ interface SurveyCreateInputs {
|
|
|
6596
6600
|
description?: string | null;
|
|
6597
6601
|
imageId?: string | null;
|
|
6598
6602
|
requireAuth?: boolean;
|
|
6603
|
+
requireCheckIn?: boolean;
|
|
6599
6604
|
submissionsPerAccount?: string | number;
|
|
6600
6605
|
replyTo?: string | null;
|
|
6601
6606
|
emailBody?: string | null;
|
|
@@ -6609,6 +6614,7 @@ interface SurveyUpdateInputs {
|
|
|
6609
6614
|
description?: string | null;
|
|
6610
6615
|
imageId?: string | null;
|
|
6611
6616
|
requireAuth?: boolean;
|
|
6617
|
+
requireCheckIn?: boolean;
|
|
6612
6618
|
submissionsPerAccount?: string | number;
|
|
6613
6619
|
replyTo?: string | null;
|
|
6614
6620
|
emailBody?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -431,6 +431,7 @@ interface BaseEventActivation {
|
|
|
431
431
|
startAfter: string | null;
|
|
432
432
|
type: keyof typeof EventActivationType;
|
|
433
433
|
accessLevel: keyof typeof PassTypeAccessLevel;
|
|
434
|
+
sortOrder: number;
|
|
434
435
|
survey: BaseSurvey | null;
|
|
435
436
|
_count: {
|
|
436
437
|
sessions: number;
|
|
@@ -3996,6 +3997,7 @@ interface Survey extends BaseSurvey {
|
|
|
3996
3997
|
updatedAt: string;
|
|
3997
3998
|
eventId: string | null;
|
|
3998
3999
|
event: BaseEvent | null;
|
|
4000
|
+
requireCheckIn: boolean;
|
|
3999
4001
|
activationId: string | null;
|
|
4000
4002
|
activation: BaseEventActivation | null;
|
|
4001
4003
|
passTypes: BaseEventPassType[] | null;
|
|
@@ -4940,6 +4942,7 @@ interface EventActivationCreateInputs {
|
|
|
4940
4942
|
accessLevel?: keyof typeof PassTypeAccessLevel;
|
|
4941
4943
|
continuousScanning?: boolean;
|
|
4942
4944
|
scanType?: keyof typeof OnSiteScanType | null;
|
|
4945
|
+
sortOrder?: number | string | null;
|
|
4943
4946
|
}
|
|
4944
4947
|
interface EventActivationTranslationUpdateInputs {
|
|
4945
4948
|
name?: string | null;
|
|
@@ -4960,6 +4963,7 @@ interface EventActivationUpdateInputs {
|
|
|
4960
4963
|
accessLevel?: keyof typeof PassTypeAccessLevel;
|
|
4961
4964
|
continuousScanning?: boolean;
|
|
4962
4965
|
scanType?: keyof typeof OnSiteScanType | null;
|
|
4966
|
+
sortOrder?: number | string | null;
|
|
4963
4967
|
}
|
|
4964
4968
|
interface EventActivationCompletionCreateInputs {
|
|
4965
4969
|
passId: string;
|
|
@@ -6596,6 +6600,7 @@ interface SurveyCreateInputs {
|
|
|
6596
6600
|
description?: string | null;
|
|
6597
6601
|
imageId?: string | null;
|
|
6598
6602
|
requireAuth?: boolean;
|
|
6603
|
+
requireCheckIn?: boolean;
|
|
6599
6604
|
submissionsPerAccount?: string | number;
|
|
6600
6605
|
replyTo?: string | null;
|
|
6601
6606
|
emailBody?: string | null;
|
|
@@ -6609,6 +6614,7 @@ interface SurveyUpdateInputs {
|
|
|
6609
6614
|
description?: string | null;
|
|
6610
6615
|
imageId?: string | null;
|
|
6611
6616
|
requireAuth?: boolean;
|
|
6617
|
+
requireCheckIn?: boolean;
|
|
6612
6618
|
submissionsPerAccount?: string | number;
|
|
6613
6619
|
replyTo?: string | null;
|
|
6614
6620
|
emailBody?: string | null;
|
package/openapi.json
CHANGED
|
@@ -75475,6 +75475,9 @@
|
|
|
75475
75475
|
"accessLevel": {
|
|
75476
75476
|
"$ref": "#/components/schemas/PassTypeAccessLevel"
|
|
75477
75477
|
},
|
|
75478
|
+
"sortOrder": {
|
|
75479
|
+
"type": "number"
|
|
75480
|
+
},
|
|
75478
75481
|
"survey": {
|
|
75479
75482
|
"allOf": [
|
|
75480
75483
|
{
|
|
@@ -75505,6 +75508,7 @@
|
|
|
75505
75508
|
"startAfter",
|
|
75506
75509
|
"type",
|
|
75507
75510
|
"accessLevel",
|
|
75511
|
+
"sortOrder",
|
|
75508
75512
|
"survey",
|
|
75509
75513
|
"_count"
|
|
75510
75514
|
]
|
|
@@ -90737,6 +90741,9 @@
|
|
|
90737
90741
|
],
|
|
90738
90742
|
"nullable": true
|
|
90739
90743
|
},
|
|
90744
|
+
"requireCheckIn": {
|
|
90745
|
+
"type": "boolean"
|
|
90746
|
+
},
|
|
90740
90747
|
"activationId": {
|
|
90741
90748
|
"type": "string",
|
|
90742
90749
|
"nullable": true
|
|
@@ -90775,6 +90782,7 @@
|
|
|
90775
90782
|
"updatedAt",
|
|
90776
90783
|
"eventId",
|
|
90777
90784
|
"event",
|
|
90785
|
+
"requireCheckIn",
|
|
90778
90786
|
"activationId",
|
|
90779
90787
|
"activation",
|
|
90780
90788
|
"passTypes",
|
|
@@ -94695,6 +94703,17 @@
|
|
|
94695
94703
|
}
|
|
94696
94704
|
],
|
|
94697
94705
|
"nullable": true
|
|
94706
|
+
},
|
|
94707
|
+
"sortOrder": {
|
|
94708
|
+
"oneOf": [
|
|
94709
|
+
{
|
|
94710
|
+
"type": "number"
|
|
94711
|
+
},
|
|
94712
|
+
{
|
|
94713
|
+
"type": "string"
|
|
94714
|
+
}
|
|
94715
|
+
],
|
|
94716
|
+
"nullable": true
|
|
94698
94717
|
}
|
|
94699
94718
|
},
|
|
94700
94719
|
"required": [
|
|
@@ -94787,6 +94806,17 @@
|
|
|
94787
94806
|
}
|
|
94788
94807
|
],
|
|
94789
94808
|
"nullable": true
|
|
94809
|
+
},
|
|
94810
|
+
"sortOrder": {
|
|
94811
|
+
"oneOf": [
|
|
94812
|
+
{
|
|
94813
|
+
"type": "number"
|
|
94814
|
+
},
|
|
94815
|
+
{
|
|
94816
|
+
"type": "string"
|
|
94817
|
+
}
|
|
94818
|
+
],
|
|
94819
|
+
"nullable": true
|
|
94790
94820
|
}
|
|
94791
94821
|
}
|
|
94792
94822
|
},
|
|
@@ -101610,6 +101640,9 @@
|
|
|
101610
101640
|
"requireAuth": {
|
|
101611
101641
|
"type": "boolean"
|
|
101612
101642
|
},
|
|
101643
|
+
"requireCheckIn": {
|
|
101644
|
+
"type": "boolean"
|
|
101645
|
+
},
|
|
101613
101646
|
"submissionsPerAccount": {
|
|
101614
101647
|
"oneOf": [
|
|
101615
101648
|
{
|
|
@@ -101664,6 +101697,9 @@
|
|
|
101664
101697
|
"requireAuth": {
|
|
101665
101698
|
"type": "boolean"
|
|
101666
101699
|
},
|
|
101700
|
+
"requireCheckIn": {
|
|
101701
|
+
"type": "boolean"
|
|
101702
|
+
},
|
|
101667
101703
|
"submissionsPerAccount": {
|
|
101668
101704
|
"oneOf": [
|
|
101669
101705
|
{
|