@connectedxm/admin 6.14.2 → 6.14.3
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 +26 -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;
|
|
@@ -4940,6 +4941,7 @@ interface EventActivationCreateInputs {
|
|
|
4940
4941
|
accessLevel?: keyof typeof PassTypeAccessLevel;
|
|
4941
4942
|
continuousScanning?: boolean;
|
|
4942
4943
|
scanType?: keyof typeof OnSiteScanType | null;
|
|
4944
|
+
sortOrder?: number | string | null;
|
|
4943
4945
|
}
|
|
4944
4946
|
interface EventActivationTranslationUpdateInputs {
|
|
4945
4947
|
name?: string | null;
|
|
@@ -4960,6 +4962,7 @@ interface EventActivationUpdateInputs {
|
|
|
4960
4962
|
accessLevel?: keyof typeof PassTypeAccessLevel;
|
|
4961
4963
|
continuousScanning?: boolean;
|
|
4962
4964
|
scanType?: keyof typeof OnSiteScanType | null;
|
|
4965
|
+
sortOrder?: number | string | null;
|
|
4963
4966
|
}
|
|
4964
4967
|
interface EventActivationCompletionCreateInputs {
|
|
4965
4968
|
passId: string;
|
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;
|
|
@@ -4940,6 +4941,7 @@ interface EventActivationCreateInputs {
|
|
|
4940
4941
|
accessLevel?: keyof typeof PassTypeAccessLevel;
|
|
4941
4942
|
continuousScanning?: boolean;
|
|
4942
4943
|
scanType?: keyof typeof OnSiteScanType | null;
|
|
4944
|
+
sortOrder?: number | string | null;
|
|
4943
4945
|
}
|
|
4944
4946
|
interface EventActivationTranslationUpdateInputs {
|
|
4945
4947
|
name?: string | null;
|
|
@@ -4960,6 +4962,7 @@ interface EventActivationUpdateInputs {
|
|
|
4960
4962
|
accessLevel?: keyof typeof PassTypeAccessLevel;
|
|
4961
4963
|
continuousScanning?: boolean;
|
|
4962
4964
|
scanType?: keyof typeof OnSiteScanType | null;
|
|
4965
|
+
sortOrder?: number | string | null;
|
|
4963
4966
|
}
|
|
4964
4967
|
interface EventActivationCompletionCreateInputs {
|
|
4965
4968
|
passId: string;
|
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
|
]
|
|
@@ -94695,6 +94699,17 @@
|
|
|
94695
94699
|
}
|
|
94696
94700
|
],
|
|
94697
94701
|
"nullable": true
|
|
94702
|
+
},
|
|
94703
|
+
"sortOrder": {
|
|
94704
|
+
"oneOf": [
|
|
94705
|
+
{
|
|
94706
|
+
"type": "number"
|
|
94707
|
+
},
|
|
94708
|
+
{
|
|
94709
|
+
"type": "string"
|
|
94710
|
+
}
|
|
94711
|
+
],
|
|
94712
|
+
"nullable": true
|
|
94698
94713
|
}
|
|
94699
94714
|
},
|
|
94700
94715
|
"required": [
|
|
@@ -94787,6 +94802,17 @@
|
|
|
94787
94802
|
}
|
|
94788
94803
|
],
|
|
94789
94804
|
"nullable": true
|
|
94805
|
+
},
|
|
94806
|
+
"sortOrder": {
|
|
94807
|
+
"oneOf": [
|
|
94808
|
+
{
|
|
94809
|
+
"type": "number"
|
|
94810
|
+
},
|
|
94811
|
+
{
|
|
94812
|
+
"type": "string"
|
|
94813
|
+
}
|
|
94814
|
+
],
|
|
94815
|
+
"nullable": true
|
|
94790
94816
|
}
|
|
94791
94817
|
}
|
|
94792
94818
|
},
|