@awarevue/api-types 1.0.60 → 1.0.62
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.
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
import z from 'zod';
|
|
2
2
|
export declare const sCredentialType: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
3
|
+
export declare const sCredentialValue: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
3
4
|
export declare const sAssignedCredential: z.ZodObject<{
|
|
4
5
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
5
|
-
value: z.ZodString
|
|
6
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
6
7
|
note: z.ZodNullable<z.ZodString>;
|
|
7
8
|
}, "strip", z.ZodTypeAny, {
|
|
8
9
|
type: "card" | "pin" | "fingerprint";
|
|
9
|
-
value: string
|
|
10
|
+
value: string | Record<string, unknown>;
|
|
10
11
|
note: string | null;
|
|
11
12
|
}, {
|
|
12
13
|
type: "card" | "pin" | "fingerprint";
|
|
13
|
-
value: string
|
|
14
|
+
value: string | Record<string, unknown>;
|
|
14
15
|
note: string | null;
|
|
15
16
|
}>;
|
|
16
17
|
export type CredentialType = z.infer<typeof sCredentialType>;
|
|
18
|
+
export type CredentialValue = z.infer<typeof sCredentialValue>;
|
|
17
19
|
export type AssignedCredential = z.infer<typeof sAssignedCredential>;
|
|
@@ -3,11 +3,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.sAssignedCredential = exports.sCredentialType = void 0;
|
|
6
|
+
exports.sAssignedCredential = exports.sCredentialValue = exports.sCredentialType = void 0;
|
|
7
7
|
const zod_1 = __importDefault(require("zod"));
|
|
8
8
|
exports.sCredentialType = zod_1.default.enum(['card', 'pin', 'fingerprint']);
|
|
9
|
+
exports.sCredentialValue = zod_1.default.union([
|
|
10
|
+
zod_1.default.string().nonempty(),
|
|
11
|
+
zod_1.default.record(zod_1.default.unknown()),
|
|
12
|
+
]);
|
|
9
13
|
exports.sAssignedCredential = zod_1.default.object({
|
|
10
14
|
type: exports.sCredentialType,
|
|
11
|
-
value:
|
|
15
|
+
value: exports.sCredentialValue,
|
|
12
16
|
note: zod_1.default.string().nullable(),
|
|
13
17
|
});
|
|
@@ -24,15 +24,15 @@ export declare const sPersonDto: z.ZodObject<{
|
|
|
24
24
|
avatarId: z.ZodNullable<z.ZodString>;
|
|
25
25
|
credentials: z.ZodArray<z.ZodObject<{
|
|
26
26
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
27
|
-
value: z.ZodString
|
|
27
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
28
28
|
note: z.ZodNullable<z.ZodString>;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
30
|
type: "card" | "pin" | "fingerprint";
|
|
31
|
-
value: string
|
|
31
|
+
value: string | Record<string, unknown>;
|
|
32
32
|
note: string | null;
|
|
33
33
|
}, {
|
|
34
34
|
type: "card" | "pin" | "fingerprint";
|
|
35
|
-
value: string
|
|
35
|
+
value: string | Record<string, unknown>;
|
|
36
36
|
note: string | null;
|
|
37
37
|
}>, "many">;
|
|
38
38
|
accessRules: z.ZodArray<z.ZodObject<{
|
|
@@ -65,7 +65,7 @@ export declare const sPersonDto: z.ZodObject<{
|
|
|
65
65
|
staffMember: boolean;
|
|
66
66
|
credentials: {
|
|
67
67
|
type: "card" | "pin" | "fingerprint";
|
|
68
|
-
value: string
|
|
68
|
+
value: string | Record<string, unknown>;
|
|
69
69
|
note: string | null;
|
|
70
70
|
}[];
|
|
71
71
|
accessRules: {
|
|
@@ -90,7 +90,7 @@ export declare const sPersonDto: z.ZodObject<{
|
|
|
90
90
|
staffMember: boolean;
|
|
91
91
|
credentials: {
|
|
92
92
|
type: "card" | "pin" | "fingerprint";
|
|
93
|
-
value: string
|
|
93
|
+
value: string | Record<string, unknown>;
|
|
94
94
|
note: string | null;
|
|
95
95
|
}[];
|
|
96
96
|
accessRules: {
|
|
@@ -110,15 +110,15 @@ export declare const sCreatePersonRequest: z.ZodObject<{
|
|
|
110
110
|
avatarId: z.ZodNullable<z.ZodString>;
|
|
111
111
|
credentials: z.ZodArray<z.ZodObject<{
|
|
112
112
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
113
|
-
value: z.ZodString
|
|
113
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
114
114
|
note: z.ZodNullable<z.ZodString>;
|
|
115
115
|
}, "strip", z.ZodTypeAny, {
|
|
116
116
|
type: "card" | "pin" | "fingerprint";
|
|
117
|
-
value: string
|
|
117
|
+
value: string | Record<string, unknown>;
|
|
118
118
|
note: string | null;
|
|
119
119
|
}, {
|
|
120
120
|
type: "card" | "pin" | "fingerprint";
|
|
121
|
-
value: string
|
|
121
|
+
value: string | Record<string, unknown>;
|
|
122
122
|
note: string | null;
|
|
123
123
|
}>, "many">;
|
|
124
124
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
@@ -134,7 +134,7 @@ export declare const sCreatePersonRequest: z.ZodObject<{
|
|
|
134
134
|
staffMember: boolean;
|
|
135
135
|
credentials: {
|
|
136
136
|
type: "card" | "pin" | "fingerprint";
|
|
137
|
-
value: string
|
|
137
|
+
value: string | Record<string, unknown>;
|
|
138
138
|
note: string | null;
|
|
139
139
|
}[];
|
|
140
140
|
accessRules: string[];
|
|
@@ -150,7 +150,7 @@ export declare const sCreatePersonRequest: z.ZodObject<{
|
|
|
150
150
|
staffMember: boolean;
|
|
151
151
|
credentials: {
|
|
152
152
|
type: "card" | "pin" | "fingerprint";
|
|
153
|
-
value: string
|
|
153
|
+
value: string | Record<string, unknown>;
|
|
154
154
|
note: string | null;
|
|
155
155
|
}[];
|
|
156
156
|
accessRules: string[];
|
|
@@ -167,15 +167,15 @@ export declare const sUpdatePersonRequest: z.ZodObject<{
|
|
|
167
167
|
avatarId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
168
168
|
credentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
169
169
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
170
|
-
value: z.ZodString
|
|
170
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
171
171
|
note: z.ZodNullable<z.ZodString>;
|
|
172
172
|
}, "strip", z.ZodTypeAny, {
|
|
173
173
|
type: "card" | "pin" | "fingerprint";
|
|
174
|
-
value: string
|
|
174
|
+
value: string | Record<string, unknown>;
|
|
175
175
|
note: string | null;
|
|
176
176
|
}, {
|
|
177
177
|
type: "card" | "pin" | "fingerprint";
|
|
178
|
-
value: string
|
|
178
|
+
value: string | Record<string, unknown>;
|
|
179
179
|
note: string | null;
|
|
180
180
|
}>, "many">>;
|
|
181
181
|
accessRules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -193,7 +193,7 @@ export declare const sUpdatePersonRequest: z.ZodObject<{
|
|
|
193
193
|
staffMember?: boolean | undefined;
|
|
194
194
|
credentials?: {
|
|
195
195
|
type: "card" | "pin" | "fingerprint";
|
|
196
|
-
value: string
|
|
196
|
+
value: string | Record<string, unknown>;
|
|
197
197
|
note: string | null;
|
|
198
198
|
}[] | undefined;
|
|
199
199
|
accessRules?: string[] | undefined;
|
|
@@ -210,7 +210,7 @@ export declare const sUpdatePersonRequest: z.ZodObject<{
|
|
|
210
210
|
staffMember?: boolean | undefined;
|
|
211
211
|
credentials?: {
|
|
212
212
|
type: "card" | "pin" | "fingerprint";
|
|
213
|
-
value: string
|
|
213
|
+
value: string | Record<string, unknown>;
|
|
214
214
|
note: string | null;
|
|
215
215
|
}[] | undefined;
|
|
216
216
|
accessRules?: string[] | undefined;
|
|
@@ -1838,15 +1838,15 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
1838
1838
|
avatarId: z.ZodNullable<z.ZodString>;
|
|
1839
1839
|
credentials: z.ZodArray<z.ZodObject<{
|
|
1840
1840
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
1841
|
-
value: z.ZodString
|
|
1841
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
1842
1842
|
note: z.ZodNullable<z.ZodString>;
|
|
1843
1843
|
}, "strip", z.ZodTypeAny, {
|
|
1844
1844
|
type: "card" | "pin" | "fingerprint";
|
|
1845
|
-
value: string
|
|
1845
|
+
value: string | Record<string, unknown>;
|
|
1846
1846
|
note: string | null;
|
|
1847
1847
|
}, {
|
|
1848
1848
|
type: "card" | "pin" | "fingerprint";
|
|
1849
|
-
value: string
|
|
1849
|
+
value: string | Record<string, unknown>;
|
|
1850
1850
|
note: string | null;
|
|
1851
1851
|
}>, "many">;
|
|
1852
1852
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
@@ -1862,7 +1862,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
1862
1862
|
staffMember: boolean;
|
|
1863
1863
|
credentials: {
|
|
1864
1864
|
type: "card" | "pin" | "fingerprint";
|
|
1865
|
-
value: string
|
|
1865
|
+
value: string | Record<string, unknown>;
|
|
1866
1866
|
note: string | null;
|
|
1867
1867
|
}[];
|
|
1868
1868
|
accessRules: string[];
|
|
@@ -1878,7 +1878,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
1878
1878
|
staffMember: boolean;
|
|
1879
1879
|
credentials: {
|
|
1880
1880
|
type: "card" | "pin" | "fingerprint";
|
|
1881
|
-
value: string
|
|
1881
|
+
value: string | Record<string, unknown>;
|
|
1882
1882
|
note: string | null;
|
|
1883
1883
|
}[];
|
|
1884
1884
|
accessRules: string[];
|
|
@@ -1900,7 +1900,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
1900
1900
|
staffMember: boolean;
|
|
1901
1901
|
credentials: {
|
|
1902
1902
|
type: "card" | "pin" | "fingerprint";
|
|
1903
|
-
value: string
|
|
1903
|
+
value: string | Record<string, unknown>;
|
|
1904
1904
|
note: string | null;
|
|
1905
1905
|
}[];
|
|
1906
1906
|
accessRules: string[];
|
|
@@ -1922,7 +1922,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
1922
1922
|
staffMember: boolean;
|
|
1923
1923
|
credentials: {
|
|
1924
1924
|
type: "card" | "pin" | "fingerprint";
|
|
1925
|
-
value: string
|
|
1925
|
+
value: string | Record<string, unknown>;
|
|
1926
1926
|
note: string | null;
|
|
1927
1927
|
}[];
|
|
1928
1928
|
accessRules: string[];
|
|
@@ -1943,15 +1943,15 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
1943
1943
|
avatarId: z.ZodNullable<z.ZodString>;
|
|
1944
1944
|
credentials: z.ZodArray<z.ZodObject<{
|
|
1945
1945
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
1946
|
-
value: z.ZodString
|
|
1946
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
1947
1947
|
note: z.ZodNullable<z.ZodString>;
|
|
1948
1948
|
}, "strip", z.ZodTypeAny, {
|
|
1949
1949
|
type: "card" | "pin" | "fingerprint";
|
|
1950
|
-
value: string
|
|
1950
|
+
value: string | Record<string, unknown>;
|
|
1951
1951
|
note: string | null;
|
|
1952
1952
|
}, {
|
|
1953
1953
|
type: "card" | "pin" | "fingerprint";
|
|
1954
|
-
value: string
|
|
1954
|
+
value: string | Record<string, unknown>;
|
|
1955
1955
|
note: string | null;
|
|
1956
1956
|
}>, "many">;
|
|
1957
1957
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
@@ -1967,7 +1967,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
1967
1967
|
staffMember: boolean;
|
|
1968
1968
|
credentials: {
|
|
1969
1969
|
type: "card" | "pin" | "fingerprint";
|
|
1970
|
-
value: string
|
|
1970
|
+
value: string | Record<string, unknown>;
|
|
1971
1971
|
note: string | null;
|
|
1972
1972
|
}[];
|
|
1973
1973
|
accessRules: string[];
|
|
@@ -1983,7 +1983,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
1983
1983
|
staffMember: boolean;
|
|
1984
1984
|
credentials: {
|
|
1985
1985
|
type: "card" | "pin" | "fingerprint";
|
|
1986
|
-
value: string
|
|
1986
|
+
value: string | Record<string, unknown>;
|
|
1987
1987
|
note: string | null;
|
|
1988
1988
|
}[];
|
|
1989
1989
|
accessRules: string[];
|
|
@@ -2000,15 +2000,15 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2000
2000
|
avatarId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2001
2001
|
credentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2002
2002
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
2003
|
-
value: z.ZodString
|
|
2003
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
2004
2004
|
note: z.ZodNullable<z.ZodString>;
|
|
2005
2005
|
}, "strip", z.ZodTypeAny, {
|
|
2006
2006
|
type: "card" | "pin" | "fingerprint";
|
|
2007
|
-
value: string
|
|
2007
|
+
value: string | Record<string, unknown>;
|
|
2008
2008
|
note: string | null;
|
|
2009
2009
|
}, {
|
|
2010
2010
|
type: "card" | "pin" | "fingerprint";
|
|
2011
|
-
value: string
|
|
2011
|
+
value: string | Record<string, unknown>;
|
|
2012
2012
|
note: string | null;
|
|
2013
2013
|
}>, "many">>;
|
|
2014
2014
|
accessRules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -2024,7 +2024,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2024
2024
|
staffMember?: boolean | undefined;
|
|
2025
2025
|
credentials?: {
|
|
2026
2026
|
type: "card" | "pin" | "fingerprint";
|
|
2027
|
-
value: string
|
|
2027
|
+
value: string | Record<string, unknown>;
|
|
2028
2028
|
note: string | null;
|
|
2029
2029
|
}[] | undefined;
|
|
2030
2030
|
accessRules?: string[] | undefined;
|
|
@@ -2040,7 +2040,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2040
2040
|
staffMember?: boolean | undefined;
|
|
2041
2041
|
credentials?: {
|
|
2042
2042
|
type: "card" | "pin" | "fingerprint";
|
|
2043
|
-
value: string
|
|
2043
|
+
value: string | Record<string, unknown>;
|
|
2044
2044
|
note: string | null;
|
|
2045
2045
|
}[] | undefined;
|
|
2046
2046
|
accessRules?: string[] | undefined;
|
|
@@ -2061,7 +2061,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2061
2061
|
staffMember: boolean;
|
|
2062
2062
|
credentials: {
|
|
2063
2063
|
type: "card" | "pin" | "fingerprint";
|
|
2064
|
-
value: string
|
|
2064
|
+
value: string | Record<string, unknown>;
|
|
2065
2065
|
note: string | null;
|
|
2066
2066
|
}[];
|
|
2067
2067
|
accessRules: string[];
|
|
@@ -2078,7 +2078,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2078
2078
|
staffMember?: boolean | undefined;
|
|
2079
2079
|
credentials?: {
|
|
2080
2080
|
type: "card" | "pin" | "fingerprint";
|
|
2081
|
-
value: string
|
|
2081
|
+
value: string | Record<string, unknown>;
|
|
2082
2082
|
note: string | null;
|
|
2083
2083
|
}[] | undefined;
|
|
2084
2084
|
accessRules?: string[] | undefined;
|
|
@@ -2099,7 +2099,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2099
2099
|
staffMember: boolean;
|
|
2100
2100
|
credentials: {
|
|
2101
2101
|
type: "card" | "pin" | "fingerprint";
|
|
2102
|
-
value: string
|
|
2102
|
+
value: string | Record<string, unknown>;
|
|
2103
2103
|
note: string | null;
|
|
2104
2104
|
}[];
|
|
2105
2105
|
accessRules: string[];
|
|
@@ -2116,7 +2116,7 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2116
2116
|
staffMember?: boolean | undefined;
|
|
2117
2117
|
credentials?: {
|
|
2118
2118
|
type: "card" | "pin" | "fingerprint";
|
|
2119
|
-
value: string
|
|
2119
|
+
value: string | Record<string, unknown>;
|
|
2120
2120
|
note: string | null;
|
|
2121
2121
|
}[] | undefined;
|
|
2122
2122
|
accessRules?: string[] | undefined;
|
|
@@ -2483,15 +2483,15 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
2483
2483
|
avatarId: z.ZodNullable<z.ZodString>;
|
|
2484
2484
|
credentials: z.ZodArray<z.ZodObject<{
|
|
2485
2485
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
2486
|
-
value: z.ZodString
|
|
2486
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
2487
2487
|
note: z.ZodNullable<z.ZodString>;
|
|
2488
2488
|
}, "strip", z.ZodTypeAny, {
|
|
2489
2489
|
type: "card" | "pin" | "fingerprint";
|
|
2490
|
-
value: string
|
|
2490
|
+
value: string | Record<string, unknown>;
|
|
2491
2491
|
note: string | null;
|
|
2492
2492
|
}, {
|
|
2493
2493
|
type: "card" | "pin" | "fingerprint";
|
|
2494
|
-
value: string
|
|
2494
|
+
value: string | Record<string, unknown>;
|
|
2495
2495
|
note: string | null;
|
|
2496
2496
|
}>, "many">;
|
|
2497
2497
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
@@ -2507,7 +2507,7 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
2507
2507
|
staffMember: boolean;
|
|
2508
2508
|
credentials: {
|
|
2509
2509
|
type: "card" | "pin" | "fingerprint";
|
|
2510
|
-
value: string
|
|
2510
|
+
value: string | Record<string, unknown>;
|
|
2511
2511
|
note: string | null;
|
|
2512
2512
|
}[];
|
|
2513
2513
|
accessRules: string[];
|
|
@@ -2523,7 +2523,7 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
2523
2523
|
staffMember: boolean;
|
|
2524
2524
|
credentials: {
|
|
2525
2525
|
type: "card" | "pin" | "fingerprint";
|
|
2526
|
-
value: string
|
|
2526
|
+
value: string | Record<string, unknown>;
|
|
2527
2527
|
note: string | null;
|
|
2528
2528
|
}[];
|
|
2529
2529
|
accessRules: string[];
|
|
@@ -2544,7 +2544,7 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
2544
2544
|
staffMember: boolean;
|
|
2545
2545
|
credentials: {
|
|
2546
2546
|
type: "card" | "pin" | "fingerprint";
|
|
2547
|
-
value: string
|
|
2547
|
+
value: string | Record<string, unknown>;
|
|
2548
2548
|
note: string | null;
|
|
2549
2549
|
}[];
|
|
2550
2550
|
accessRules: string[];
|
|
@@ -2565,7 +2565,7 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
2565
2565
|
staffMember: boolean;
|
|
2566
2566
|
credentials: {
|
|
2567
2567
|
type: "card" | "pin" | "fingerprint";
|
|
2568
|
-
value: string
|
|
2568
|
+
value: string | Record<string, unknown>;
|
|
2569
2569
|
note: string | null;
|
|
2570
2570
|
}[];
|
|
2571
2571
|
accessRules: string[];
|
|
@@ -3392,15 +3392,15 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3392
3392
|
avatarId: z.ZodNullable<z.ZodString>;
|
|
3393
3393
|
credentials: z.ZodArray<z.ZodObject<{
|
|
3394
3394
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
3395
|
-
value: z.ZodString
|
|
3395
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
3396
3396
|
note: z.ZodNullable<z.ZodString>;
|
|
3397
3397
|
}, "strip", z.ZodTypeAny, {
|
|
3398
3398
|
type: "card" | "pin" | "fingerprint";
|
|
3399
|
-
value: string
|
|
3399
|
+
value: string | Record<string, unknown>;
|
|
3400
3400
|
note: string | null;
|
|
3401
3401
|
}, {
|
|
3402
3402
|
type: "card" | "pin" | "fingerprint";
|
|
3403
|
-
value: string
|
|
3403
|
+
value: string | Record<string, unknown>;
|
|
3404
3404
|
note: string | null;
|
|
3405
3405
|
}>, "many">;
|
|
3406
3406
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
@@ -3416,7 +3416,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3416
3416
|
staffMember: boolean;
|
|
3417
3417
|
credentials: {
|
|
3418
3418
|
type: "card" | "pin" | "fingerprint";
|
|
3419
|
-
value: string
|
|
3419
|
+
value: string | Record<string, unknown>;
|
|
3420
3420
|
note: string | null;
|
|
3421
3421
|
}[];
|
|
3422
3422
|
accessRules: string[];
|
|
@@ -3432,7 +3432,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3432
3432
|
staffMember: boolean;
|
|
3433
3433
|
credentials: {
|
|
3434
3434
|
type: "card" | "pin" | "fingerprint";
|
|
3435
|
-
value: string
|
|
3435
|
+
value: string | Record<string, unknown>;
|
|
3436
3436
|
note: string | null;
|
|
3437
3437
|
}[];
|
|
3438
3438
|
accessRules: string[];
|
|
@@ -3454,7 +3454,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3454
3454
|
staffMember: boolean;
|
|
3455
3455
|
credentials: {
|
|
3456
3456
|
type: "card" | "pin" | "fingerprint";
|
|
3457
|
-
value: string
|
|
3457
|
+
value: string | Record<string, unknown>;
|
|
3458
3458
|
note: string | null;
|
|
3459
3459
|
}[];
|
|
3460
3460
|
accessRules: string[];
|
|
@@ -3476,7 +3476,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3476
3476
|
staffMember: boolean;
|
|
3477
3477
|
credentials: {
|
|
3478
3478
|
type: "card" | "pin" | "fingerprint";
|
|
3479
|
-
value: string
|
|
3479
|
+
value: string | Record<string, unknown>;
|
|
3480
3480
|
note: string | null;
|
|
3481
3481
|
}[];
|
|
3482
3482
|
accessRules: string[];
|
|
@@ -3497,15 +3497,15 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3497
3497
|
avatarId: z.ZodNullable<z.ZodString>;
|
|
3498
3498
|
credentials: z.ZodArray<z.ZodObject<{
|
|
3499
3499
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
3500
|
-
value: z.ZodString
|
|
3500
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
3501
3501
|
note: z.ZodNullable<z.ZodString>;
|
|
3502
3502
|
}, "strip", z.ZodTypeAny, {
|
|
3503
3503
|
type: "card" | "pin" | "fingerprint";
|
|
3504
|
-
value: string
|
|
3504
|
+
value: string | Record<string, unknown>;
|
|
3505
3505
|
note: string | null;
|
|
3506
3506
|
}, {
|
|
3507
3507
|
type: "card" | "pin" | "fingerprint";
|
|
3508
|
-
value: string
|
|
3508
|
+
value: string | Record<string, unknown>;
|
|
3509
3509
|
note: string | null;
|
|
3510
3510
|
}>, "many">;
|
|
3511
3511
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
@@ -3521,7 +3521,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3521
3521
|
staffMember: boolean;
|
|
3522
3522
|
credentials: {
|
|
3523
3523
|
type: "card" | "pin" | "fingerprint";
|
|
3524
|
-
value: string
|
|
3524
|
+
value: string | Record<string, unknown>;
|
|
3525
3525
|
note: string | null;
|
|
3526
3526
|
}[];
|
|
3527
3527
|
accessRules: string[];
|
|
@@ -3537,7 +3537,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3537
3537
|
staffMember: boolean;
|
|
3538
3538
|
credentials: {
|
|
3539
3539
|
type: "card" | "pin" | "fingerprint";
|
|
3540
|
-
value: string
|
|
3540
|
+
value: string | Record<string, unknown>;
|
|
3541
3541
|
note: string | null;
|
|
3542
3542
|
}[];
|
|
3543
3543
|
accessRules: string[];
|
|
@@ -3554,15 +3554,15 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3554
3554
|
avatarId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3555
3555
|
credentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3556
3556
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
3557
|
-
value: z.ZodString
|
|
3557
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
3558
3558
|
note: z.ZodNullable<z.ZodString>;
|
|
3559
3559
|
}, "strip", z.ZodTypeAny, {
|
|
3560
3560
|
type: "card" | "pin" | "fingerprint";
|
|
3561
|
-
value: string
|
|
3561
|
+
value: string | Record<string, unknown>;
|
|
3562
3562
|
note: string | null;
|
|
3563
3563
|
}, {
|
|
3564
3564
|
type: "card" | "pin" | "fingerprint";
|
|
3565
|
-
value: string
|
|
3565
|
+
value: string | Record<string, unknown>;
|
|
3566
3566
|
note: string | null;
|
|
3567
3567
|
}>, "many">>;
|
|
3568
3568
|
accessRules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -3578,7 +3578,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3578
3578
|
staffMember?: boolean | undefined;
|
|
3579
3579
|
credentials?: {
|
|
3580
3580
|
type: "card" | "pin" | "fingerprint";
|
|
3581
|
-
value: string
|
|
3581
|
+
value: string | Record<string, unknown>;
|
|
3582
3582
|
note: string | null;
|
|
3583
3583
|
}[] | undefined;
|
|
3584
3584
|
accessRules?: string[] | undefined;
|
|
@@ -3594,7 +3594,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3594
3594
|
staffMember?: boolean | undefined;
|
|
3595
3595
|
credentials?: {
|
|
3596
3596
|
type: "card" | "pin" | "fingerprint";
|
|
3597
|
-
value: string
|
|
3597
|
+
value: string | Record<string, unknown>;
|
|
3598
3598
|
note: string | null;
|
|
3599
3599
|
}[] | undefined;
|
|
3600
3600
|
accessRules?: string[] | undefined;
|
|
@@ -3615,7 +3615,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3615
3615
|
staffMember: boolean;
|
|
3616
3616
|
credentials: {
|
|
3617
3617
|
type: "card" | "pin" | "fingerprint";
|
|
3618
|
-
value: string
|
|
3618
|
+
value: string | Record<string, unknown>;
|
|
3619
3619
|
note: string | null;
|
|
3620
3620
|
}[];
|
|
3621
3621
|
accessRules: string[];
|
|
@@ -3632,7 +3632,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3632
3632
|
staffMember?: boolean | undefined;
|
|
3633
3633
|
credentials?: {
|
|
3634
3634
|
type: "card" | "pin" | "fingerprint";
|
|
3635
|
-
value: string
|
|
3635
|
+
value: string | Record<string, unknown>;
|
|
3636
3636
|
note: string | null;
|
|
3637
3637
|
}[] | undefined;
|
|
3638
3638
|
accessRules?: string[] | undefined;
|
|
@@ -3653,7 +3653,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3653
3653
|
staffMember: boolean;
|
|
3654
3654
|
credentials: {
|
|
3655
3655
|
type: "card" | "pin" | "fingerprint";
|
|
3656
|
-
value: string
|
|
3656
|
+
value: string | Record<string, unknown>;
|
|
3657
3657
|
note: string | null;
|
|
3658
3658
|
}[];
|
|
3659
3659
|
accessRules: string[];
|
|
@@ -3670,7 +3670,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3670
3670
|
staffMember?: boolean | undefined;
|
|
3671
3671
|
credentials?: {
|
|
3672
3672
|
type: "card" | "pin" | "fingerprint";
|
|
3673
|
-
value: string
|
|
3673
|
+
value: string | Record<string, unknown>;
|
|
3674
3674
|
note: string | null;
|
|
3675
3675
|
}[] | undefined;
|
|
3676
3676
|
accessRules?: string[] | undefined;
|
|
@@ -4036,15 +4036,15 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4036
4036
|
avatarId: z.ZodNullable<z.ZodString>;
|
|
4037
4037
|
credentials: z.ZodArray<z.ZodObject<{
|
|
4038
4038
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
4039
|
-
value: z.ZodString
|
|
4039
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
4040
4040
|
note: z.ZodNullable<z.ZodString>;
|
|
4041
4041
|
}, "strip", z.ZodTypeAny, {
|
|
4042
4042
|
type: "card" | "pin" | "fingerprint";
|
|
4043
|
-
value: string
|
|
4043
|
+
value: string | Record<string, unknown>;
|
|
4044
4044
|
note: string | null;
|
|
4045
4045
|
}, {
|
|
4046
4046
|
type: "card" | "pin" | "fingerprint";
|
|
4047
|
-
value: string
|
|
4047
|
+
value: string | Record<string, unknown>;
|
|
4048
4048
|
note: string | null;
|
|
4049
4049
|
}>, "many">;
|
|
4050
4050
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
@@ -4060,7 +4060,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4060
4060
|
staffMember: boolean;
|
|
4061
4061
|
credentials: {
|
|
4062
4062
|
type: "card" | "pin" | "fingerprint";
|
|
4063
|
-
value: string
|
|
4063
|
+
value: string | Record<string, unknown>;
|
|
4064
4064
|
note: string | null;
|
|
4065
4065
|
}[];
|
|
4066
4066
|
accessRules: string[];
|
|
@@ -4076,7 +4076,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4076
4076
|
staffMember: boolean;
|
|
4077
4077
|
credentials: {
|
|
4078
4078
|
type: "card" | "pin" | "fingerprint";
|
|
4079
|
-
value: string
|
|
4079
|
+
value: string | Record<string, unknown>;
|
|
4080
4080
|
note: string | null;
|
|
4081
4081
|
}[];
|
|
4082
4082
|
accessRules: string[];
|
|
@@ -4097,7 +4097,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4097
4097
|
staffMember: boolean;
|
|
4098
4098
|
credentials: {
|
|
4099
4099
|
type: "card" | "pin" | "fingerprint";
|
|
4100
|
-
value: string
|
|
4100
|
+
value: string | Record<string, unknown>;
|
|
4101
4101
|
note: string | null;
|
|
4102
4102
|
}[];
|
|
4103
4103
|
accessRules: string[];
|
|
@@ -4118,7 +4118,7 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4118
4118
|
staffMember: boolean;
|
|
4119
4119
|
credentials: {
|
|
4120
4120
|
type: "card" | "pin" | "fingerprint";
|
|
4121
|
-
value: string
|
|
4121
|
+
value: string | Record<string, unknown>;
|
|
4122
4122
|
note: string | null;
|
|
4123
4123
|
}[];
|
|
4124
4124
|
accessRules: string[];
|
|
@@ -4952,15 +4952,15 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
4952
4952
|
avatarId: z.ZodNullable<z.ZodString>;
|
|
4953
4953
|
credentials: z.ZodArray<z.ZodObject<{
|
|
4954
4954
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
4955
|
-
value: z.ZodString
|
|
4955
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
4956
4956
|
note: z.ZodNullable<z.ZodString>;
|
|
4957
4957
|
}, "strip", z.ZodTypeAny, {
|
|
4958
4958
|
type: "card" | "pin" | "fingerprint";
|
|
4959
|
-
value: string
|
|
4959
|
+
value: string | Record<string, unknown>;
|
|
4960
4960
|
note: string | null;
|
|
4961
4961
|
}, {
|
|
4962
4962
|
type: "card" | "pin" | "fingerprint";
|
|
4963
|
-
value: string
|
|
4963
|
+
value: string | Record<string, unknown>;
|
|
4964
4964
|
note: string | null;
|
|
4965
4965
|
}>, "many">;
|
|
4966
4966
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
@@ -4976,7 +4976,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
4976
4976
|
staffMember: boolean;
|
|
4977
4977
|
credentials: {
|
|
4978
4978
|
type: "card" | "pin" | "fingerprint";
|
|
4979
|
-
value: string
|
|
4979
|
+
value: string | Record<string, unknown>;
|
|
4980
4980
|
note: string | null;
|
|
4981
4981
|
}[];
|
|
4982
4982
|
accessRules: string[];
|
|
@@ -4992,7 +4992,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
4992
4992
|
staffMember: boolean;
|
|
4993
4993
|
credentials: {
|
|
4994
4994
|
type: "card" | "pin" | "fingerprint";
|
|
4995
|
-
value: string
|
|
4995
|
+
value: string | Record<string, unknown>;
|
|
4996
4996
|
note: string | null;
|
|
4997
4997
|
}[];
|
|
4998
4998
|
accessRules: string[];
|
|
@@ -5014,7 +5014,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5014
5014
|
staffMember: boolean;
|
|
5015
5015
|
credentials: {
|
|
5016
5016
|
type: "card" | "pin" | "fingerprint";
|
|
5017
|
-
value: string
|
|
5017
|
+
value: string | Record<string, unknown>;
|
|
5018
5018
|
note: string | null;
|
|
5019
5019
|
}[];
|
|
5020
5020
|
accessRules: string[];
|
|
@@ -5036,7 +5036,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5036
5036
|
staffMember: boolean;
|
|
5037
5037
|
credentials: {
|
|
5038
5038
|
type: "card" | "pin" | "fingerprint";
|
|
5039
|
-
value: string
|
|
5039
|
+
value: string | Record<string, unknown>;
|
|
5040
5040
|
note: string | null;
|
|
5041
5041
|
}[];
|
|
5042
5042
|
accessRules: string[];
|
|
@@ -5057,15 +5057,15 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5057
5057
|
avatarId: z.ZodNullable<z.ZodString>;
|
|
5058
5058
|
credentials: z.ZodArray<z.ZodObject<{
|
|
5059
5059
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
5060
|
-
value: z.ZodString
|
|
5060
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
5061
5061
|
note: z.ZodNullable<z.ZodString>;
|
|
5062
5062
|
}, "strip", z.ZodTypeAny, {
|
|
5063
5063
|
type: "card" | "pin" | "fingerprint";
|
|
5064
|
-
value: string
|
|
5064
|
+
value: string | Record<string, unknown>;
|
|
5065
5065
|
note: string | null;
|
|
5066
5066
|
}, {
|
|
5067
5067
|
type: "card" | "pin" | "fingerprint";
|
|
5068
|
-
value: string
|
|
5068
|
+
value: string | Record<string, unknown>;
|
|
5069
5069
|
note: string | null;
|
|
5070
5070
|
}>, "many">;
|
|
5071
5071
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
@@ -5081,7 +5081,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5081
5081
|
staffMember: boolean;
|
|
5082
5082
|
credentials: {
|
|
5083
5083
|
type: "card" | "pin" | "fingerprint";
|
|
5084
|
-
value: string
|
|
5084
|
+
value: string | Record<string, unknown>;
|
|
5085
5085
|
note: string | null;
|
|
5086
5086
|
}[];
|
|
5087
5087
|
accessRules: string[];
|
|
@@ -5097,7 +5097,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5097
5097
|
staffMember: boolean;
|
|
5098
5098
|
credentials: {
|
|
5099
5099
|
type: "card" | "pin" | "fingerprint";
|
|
5100
|
-
value: string
|
|
5100
|
+
value: string | Record<string, unknown>;
|
|
5101
5101
|
note: string | null;
|
|
5102
5102
|
}[];
|
|
5103
5103
|
accessRules: string[];
|
|
@@ -5114,15 +5114,15 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5114
5114
|
avatarId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5115
5115
|
credentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5116
5116
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
5117
|
-
value: z.ZodString
|
|
5117
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
5118
5118
|
note: z.ZodNullable<z.ZodString>;
|
|
5119
5119
|
}, "strip", z.ZodTypeAny, {
|
|
5120
5120
|
type: "card" | "pin" | "fingerprint";
|
|
5121
|
-
value: string
|
|
5121
|
+
value: string | Record<string, unknown>;
|
|
5122
5122
|
note: string | null;
|
|
5123
5123
|
}, {
|
|
5124
5124
|
type: "card" | "pin" | "fingerprint";
|
|
5125
|
-
value: string
|
|
5125
|
+
value: string | Record<string, unknown>;
|
|
5126
5126
|
note: string | null;
|
|
5127
5127
|
}>, "many">>;
|
|
5128
5128
|
accessRules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -5138,7 +5138,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5138
5138
|
staffMember?: boolean | undefined;
|
|
5139
5139
|
credentials?: {
|
|
5140
5140
|
type: "card" | "pin" | "fingerprint";
|
|
5141
|
-
value: string
|
|
5141
|
+
value: string | Record<string, unknown>;
|
|
5142
5142
|
note: string | null;
|
|
5143
5143
|
}[] | undefined;
|
|
5144
5144
|
accessRules?: string[] | undefined;
|
|
@@ -5154,7 +5154,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5154
5154
|
staffMember?: boolean | undefined;
|
|
5155
5155
|
credentials?: {
|
|
5156
5156
|
type: "card" | "pin" | "fingerprint";
|
|
5157
|
-
value: string
|
|
5157
|
+
value: string | Record<string, unknown>;
|
|
5158
5158
|
note: string | null;
|
|
5159
5159
|
}[] | undefined;
|
|
5160
5160
|
accessRules?: string[] | undefined;
|
|
@@ -5175,7 +5175,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5175
5175
|
staffMember: boolean;
|
|
5176
5176
|
credentials: {
|
|
5177
5177
|
type: "card" | "pin" | "fingerprint";
|
|
5178
|
-
value: string
|
|
5178
|
+
value: string | Record<string, unknown>;
|
|
5179
5179
|
note: string | null;
|
|
5180
5180
|
}[];
|
|
5181
5181
|
accessRules: string[];
|
|
@@ -5192,7 +5192,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5192
5192
|
staffMember?: boolean | undefined;
|
|
5193
5193
|
credentials?: {
|
|
5194
5194
|
type: "card" | "pin" | "fingerprint";
|
|
5195
|
-
value: string
|
|
5195
|
+
value: string | Record<string, unknown>;
|
|
5196
5196
|
note: string | null;
|
|
5197
5197
|
}[] | undefined;
|
|
5198
5198
|
accessRules?: string[] | undefined;
|
|
@@ -5213,7 +5213,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5213
5213
|
staffMember: boolean;
|
|
5214
5214
|
credentials: {
|
|
5215
5215
|
type: "card" | "pin" | "fingerprint";
|
|
5216
|
-
value: string
|
|
5216
|
+
value: string | Record<string, unknown>;
|
|
5217
5217
|
note: string | null;
|
|
5218
5218
|
}[];
|
|
5219
5219
|
accessRules: string[];
|
|
@@ -5230,7 +5230,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5230
5230
|
staffMember?: boolean | undefined;
|
|
5231
5231
|
credentials?: {
|
|
5232
5232
|
type: "card" | "pin" | "fingerprint";
|
|
5233
|
-
value: string
|
|
5233
|
+
value: string | Record<string, unknown>;
|
|
5234
5234
|
note: string | null;
|
|
5235
5235
|
}[] | undefined;
|
|
5236
5236
|
accessRules?: string[] | undefined;
|
|
@@ -5596,15 +5596,15 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5596
5596
|
avatarId: z.ZodNullable<z.ZodString>;
|
|
5597
5597
|
credentials: z.ZodArray<z.ZodObject<{
|
|
5598
5598
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
5599
|
-
value: z.ZodString
|
|
5599
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
5600
5600
|
note: z.ZodNullable<z.ZodString>;
|
|
5601
5601
|
}, "strip", z.ZodTypeAny, {
|
|
5602
5602
|
type: "card" | "pin" | "fingerprint";
|
|
5603
|
-
value: string
|
|
5603
|
+
value: string | Record<string, unknown>;
|
|
5604
5604
|
note: string | null;
|
|
5605
5605
|
}, {
|
|
5606
5606
|
type: "card" | "pin" | "fingerprint";
|
|
5607
|
-
value: string
|
|
5607
|
+
value: string | Record<string, unknown>;
|
|
5608
5608
|
note: string | null;
|
|
5609
5609
|
}>, "many">;
|
|
5610
5610
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
@@ -5620,7 +5620,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5620
5620
|
staffMember: boolean;
|
|
5621
5621
|
credentials: {
|
|
5622
5622
|
type: "card" | "pin" | "fingerprint";
|
|
5623
|
-
value: string
|
|
5623
|
+
value: string | Record<string, unknown>;
|
|
5624
5624
|
note: string | null;
|
|
5625
5625
|
}[];
|
|
5626
5626
|
accessRules: string[];
|
|
@@ -5636,7 +5636,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5636
5636
|
staffMember: boolean;
|
|
5637
5637
|
credentials: {
|
|
5638
5638
|
type: "card" | "pin" | "fingerprint";
|
|
5639
|
-
value: string
|
|
5639
|
+
value: string | Record<string, unknown>;
|
|
5640
5640
|
note: string | null;
|
|
5641
5641
|
}[];
|
|
5642
5642
|
accessRules: string[];
|
|
@@ -5657,7 +5657,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5657
5657
|
staffMember: boolean;
|
|
5658
5658
|
credentials: {
|
|
5659
5659
|
type: "card" | "pin" | "fingerprint";
|
|
5660
|
-
value: string
|
|
5660
|
+
value: string | Record<string, unknown>;
|
|
5661
5661
|
note: string | null;
|
|
5662
5662
|
}[];
|
|
5663
5663
|
accessRules: string[];
|
|
@@ -5678,7 +5678,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5678
5678
|
staffMember: boolean;
|
|
5679
5679
|
credentials: {
|
|
5680
5680
|
type: "card" | "pin" | "fingerprint";
|
|
5681
|
-
value: string
|
|
5681
|
+
value: string | Record<string, unknown>;
|
|
5682
5682
|
note: string | null;
|
|
5683
5683
|
}[];
|
|
5684
5684
|
accessRules: string[];
|
|
@@ -5862,7 +5862,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5862
5862
|
staffMember: boolean;
|
|
5863
5863
|
credentials: {
|
|
5864
5864
|
type: "card" | "pin" | "fingerprint";
|
|
5865
|
-
value: string
|
|
5865
|
+
value: string | Record<string, unknown>;
|
|
5866
5866
|
note: string | null;
|
|
5867
5867
|
}[];
|
|
5868
5868
|
accessRules: string[];
|
|
@@ -5883,7 +5883,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5883
5883
|
staffMember: boolean;
|
|
5884
5884
|
credentials: {
|
|
5885
5885
|
type: "card" | "pin" | "fingerprint";
|
|
5886
|
-
value: string
|
|
5886
|
+
value: string | Record<string, unknown>;
|
|
5887
5887
|
note: string | null;
|
|
5888
5888
|
}[];
|
|
5889
5889
|
accessRules: string[];
|
|
@@ -5900,7 +5900,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5900
5900
|
staffMember?: boolean | undefined;
|
|
5901
5901
|
credentials?: {
|
|
5902
5902
|
type: "card" | "pin" | "fingerprint";
|
|
5903
|
-
value: string
|
|
5903
|
+
value: string | Record<string, unknown>;
|
|
5904
5904
|
note: string | null;
|
|
5905
5905
|
}[] | undefined;
|
|
5906
5906
|
accessRules?: string[] | undefined;
|
|
@@ -5986,7 +5986,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5986
5986
|
staffMember: boolean;
|
|
5987
5987
|
credentials: {
|
|
5988
5988
|
type: "card" | "pin" | "fingerprint";
|
|
5989
|
-
value: string
|
|
5989
|
+
value: string | Record<string, unknown>;
|
|
5990
5990
|
note: string | null;
|
|
5991
5991
|
}[];
|
|
5992
5992
|
accessRules: string[];
|
|
@@ -6148,7 +6148,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6148
6148
|
staffMember: boolean;
|
|
6149
6149
|
credentials: {
|
|
6150
6150
|
type: "card" | "pin" | "fingerprint";
|
|
6151
|
-
value: string
|
|
6151
|
+
value: string | Record<string, unknown>;
|
|
6152
6152
|
note: string | null;
|
|
6153
6153
|
}[];
|
|
6154
6154
|
accessRules: string[];
|
|
@@ -6169,7 +6169,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6169
6169
|
staffMember: boolean;
|
|
6170
6170
|
credentials: {
|
|
6171
6171
|
type: "card" | "pin" | "fingerprint";
|
|
6172
|
-
value: string
|
|
6172
|
+
value: string | Record<string, unknown>;
|
|
6173
6173
|
note: string | null;
|
|
6174
6174
|
}[];
|
|
6175
6175
|
accessRules: string[];
|
|
@@ -6186,7 +6186,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6186
6186
|
staffMember?: boolean | undefined;
|
|
6187
6187
|
credentials?: {
|
|
6188
6188
|
type: "card" | "pin" | "fingerprint";
|
|
6189
|
-
value: string
|
|
6189
|
+
value: string | Record<string, unknown>;
|
|
6190
6190
|
note: string | null;
|
|
6191
6191
|
}[] | undefined;
|
|
6192
6192
|
accessRules?: string[] | undefined;
|
|
@@ -6272,7 +6272,7 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6272
6272
|
staffMember: boolean;
|
|
6273
6273
|
credentials: {
|
|
6274
6274
|
type: "card" | "pin" | "fingerprint";
|
|
6275
|
-
value: string
|
|
6275
|
+
value: string | Record<string, unknown>;
|
|
6276
6276
|
note: string | null;
|
|
6277
6277
|
}[];
|
|
6278
6278
|
accessRules: string[];
|
|
@@ -7157,15 +7157,15 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7157
7157
|
avatarId: z.ZodNullable<z.ZodString>;
|
|
7158
7158
|
credentials: z.ZodArray<z.ZodObject<{
|
|
7159
7159
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
7160
|
-
value: z.ZodString
|
|
7160
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
7161
7161
|
note: z.ZodNullable<z.ZodString>;
|
|
7162
7162
|
}, "strip", z.ZodTypeAny, {
|
|
7163
7163
|
type: "card" | "pin" | "fingerprint";
|
|
7164
|
-
value: string
|
|
7164
|
+
value: string | Record<string, unknown>;
|
|
7165
7165
|
note: string | null;
|
|
7166
7166
|
}, {
|
|
7167
7167
|
type: "card" | "pin" | "fingerprint";
|
|
7168
|
-
value: string
|
|
7168
|
+
value: string | Record<string, unknown>;
|
|
7169
7169
|
note: string | null;
|
|
7170
7170
|
}>, "many">;
|
|
7171
7171
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
@@ -7181,7 +7181,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7181
7181
|
staffMember: boolean;
|
|
7182
7182
|
credentials: {
|
|
7183
7183
|
type: "card" | "pin" | "fingerprint";
|
|
7184
|
-
value: string
|
|
7184
|
+
value: string | Record<string, unknown>;
|
|
7185
7185
|
note: string | null;
|
|
7186
7186
|
}[];
|
|
7187
7187
|
accessRules: string[];
|
|
@@ -7197,7 +7197,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7197
7197
|
staffMember: boolean;
|
|
7198
7198
|
credentials: {
|
|
7199
7199
|
type: "card" | "pin" | "fingerprint";
|
|
7200
|
-
value: string
|
|
7200
|
+
value: string | Record<string, unknown>;
|
|
7201
7201
|
note: string | null;
|
|
7202
7202
|
}[];
|
|
7203
7203
|
accessRules: string[];
|
|
@@ -7219,7 +7219,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7219
7219
|
staffMember: boolean;
|
|
7220
7220
|
credentials: {
|
|
7221
7221
|
type: "card" | "pin" | "fingerprint";
|
|
7222
|
-
value: string
|
|
7222
|
+
value: string | Record<string, unknown>;
|
|
7223
7223
|
note: string | null;
|
|
7224
7224
|
}[];
|
|
7225
7225
|
accessRules: string[];
|
|
@@ -7241,7 +7241,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7241
7241
|
staffMember: boolean;
|
|
7242
7242
|
credentials: {
|
|
7243
7243
|
type: "card" | "pin" | "fingerprint";
|
|
7244
|
-
value: string
|
|
7244
|
+
value: string | Record<string, unknown>;
|
|
7245
7245
|
note: string | null;
|
|
7246
7246
|
}[];
|
|
7247
7247
|
accessRules: string[];
|
|
@@ -7262,15 +7262,15 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7262
7262
|
avatarId: z.ZodNullable<z.ZodString>;
|
|
7263
7263
|
credentials: z.ZodArray<z.ZodObject<{
|
|
7264
7264
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
7265
|
-
value: z.ZodString
|
|
7265
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
7266
7266
|
note: z.ZodNullable<z.ZodString>;
|
|
7267
7267
|
}, "strip", z.ZodTypeAny, {
|
|
7268
7268
|
type: "card" | "pin" | "fingerprint";
|
|
7269
|
-
value: string
|
|
7269
|
+
value: string | Record<string, unknown>;
|
|
7270
7270
|
note: string | null;
|
|
7271
7271
|
}, {
|
|
7272
7272
|
type: "card" | "pin" | "fingerprint";
|
|
7273
|
-
value: string
|
|
7273
|
+
value: string | Record<string, unknown>;
|
|
7274
7274
|
note: string | null;
|
|
7275
7275
|
}>, "many">;
|
|
7276
7276
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
@@ -7286,7 +7286,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7286
7286
|
staffMember: boolean;
|
|
7287
7287
|
credentials: {
|
|
7288
7288
|
type: "card" | "pin" | "fingerprint";
|
|
7289
|
-
value: string
|
|
7289
|
+
value: string | Record<string, unknown>;
|
|
7290
7290
|
note: string | null;
|
|
7291
7291
|
}[];
|
|
7292
7292
|
accessRules: string[];
|
|
@@ -7302,7 +7302,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7302
7302
|
staffMember: boolean;
|
|
7303
7303
|
credentials: {
|
|
7304
7304
|
type: "card" | "pin" | "fingerprint";
|
|
7305
|
-
value: string
|
|
7305
|
+
value: string | Record<string, unknown>;
|
|
7306
7306
|
note: string | null;
|
|
7307
7307
|
}[];
|
|
7308
7308
|
accessRules: string[];
|
|
@@ -7319,15 +7319,15 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7319
7319
|
avatarId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7320
7320
|
credentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7321
7321
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
7322
|
-
value: z.ZodString
|
|
7322
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
7323
7323
|
note: z.ZodNullable<z.ZodString>;
|
|
7324
7324
|
}, "strip", z.ZodTypeAny, {
|
|
7325
7325
|
type: "card" | "pin" | "fingerprint";
|
|
7326
|
-
value: string
|
|
7326
|
+
value: string | Record<string, unknown>;
|
|
7327
7327
|
note: string | null;
|
|
7328
7328
|
}, {
|
|
7329
7329
|
type: "card" | "pin" | "fingerprint";
|
|
7330
|
-
value: string
|
|
7330
|
+
value: string | Record<string, unknown>;
|
|
7331
7331
|
note: string | null;
|
|
7332
7332
|
}>, "many">>;
|
|
7333
7333
|
accessRules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -7343,7 +7343,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7343
7343
|
staffMember?: boolean | undefined;
|
|
7344
7344
|
credentials?: {
|
|
7345
7345
|
type: "card" | "pin" | "fingerprint";
|
|
7346
|
-
value: string
|
|
7346
|
+
value: string | Record<string, unknown>;
|
|
7347
7347
|
note: string | null;
|
|
7348
7348
|
}[] | undefined;
|
|
7349
7349
|
accessRules?: string[] | undefined;
|
|
@@ -7359,7 +7359,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7359
7359
|
staffMember?: boolean | undefined;
|
|
7360
7360
|
credentials?: {
|
|
7361
7361
|
type: "card" | "pin" | "fingerprint";
|
|
7362
|
-
value: string
|
|
7362
|
+
value: string | Record<string, unknown>;
|
|
7363
7363
|
note: string | null;
|
|
7364
7364
|
}[] | undefined;
|
|
7365
7365
|
accessRules?: string[] | undefined;
|
|
@@ -7380,7 +7380,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7380
7380
|
staffMember: boolean;
|
|
7381
7381
|
credentials: {
|
|
7382
7382
|
type: "card" | "pin" | "fingerprint";
|
|
7383
|
-
value: string
|
|
7383
|
+
value: string | Record<string, unknown>;
|
|
7384
7384
|
note: string | null;
|
|
7385
7385
|
}[];
|
|
7386
7386
|
accessRules: string[];
|
|
@@ -7397,7 +7397,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7397
7397
|
staffMember?: boolean | undefined;
|
|
7398
7398
|
credentials?: {
|
|
7399
7399
|
type: "card" | "pin" | "fingerprint";
|
|
7400
|
-
value: string
|
|
7400
|
+
value: string | Record<string, unknown>;
|
|
7401
7401
|
note: string | null;
|
|
7402
7402
|
}[] | undefined;
|
|
7403
7403
|
accessRules?: string[] | undefined;
|
|
@@ -7418,7 +7418,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7418
7418
|
staffMember: boolean;
|
|
7419
7419
|
credentials: {
|
|
7420
7420
|
type: "card" | "pin" | "fingerprint";
|
|
7421
|
-
value: string
|
|
7421
|
+
value: string | Record<string, unknown>;
|
|
7422
7422
|
note: string | null;
|
|
7423
7423
|
}[];
|
|
7424
7424
|
accessRules: string[];
|
|
@@ -7435,7 +7435,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7435
7435
|
staffMember?: boolean | undefined;
|
|
7436
7436
|
credentials?: {
|
|
7437
7437
|
type: "card" | "pin" | "fingerprint";
|
|
7438
|
-
value: string
|
|
7438
|
+
value: string | Record<string, unknown>;
|
|
7439
7439
|
note: string | null;
|
|
7440
7440
|
}[] | undefined;
|
|
7441
7441
|
accessRules?: string[] | undefined;
|
|
@@ -7801,15 +7801,15 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7801
7801
|
avatarId: z.ZodNullable<z.ZodString>;
|
|
7802
7802
|
credentials: z.ZodArray<z.ZodObject<{
|
|
7803
7803
|
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
7804
|
-
value: z.ZodString
|
|
7804
|
+
value: z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
|
|
7805
7805
|
note: z.ZodNullable<z.ZodString>;
|
|
7806
7806
|
}, "strip", z.ZodTypeAny, {
|
|
7807
7807
|
type: "card" | "pin" | "fingerprint";
|
|
7808
|
-
value: string
|
|
7808
|
+
value: string | Record<string, unknown>;
|
|
7809
7809
|
note: string | null;
|
|
7810
7810
|
}, {
|
|
7811
7811
|
type: "card" | "pin" | "fingerprint";
|
|
7812
|
-
value: string
|
|
7812
|
+
value: string | Record<string, unknown>;
|
|
7813
7813
|
note: string | null;
|
|
7814
7814
|
}>, "many">;
|
|
7815
7815
|
accessRules: z.ZodArray<z.ZodString, "many">;
|
|
@@ -7825,7 +7825,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7825
7825
|
staffMember: boolean;
|
|
7826
7826
|
credentials: {
|
|
7827
7827
|
type: "card" | "pin" | "fingerprint";
|
|
7828
|
-
value: string
|
|
7828
|
+
value: string | Record<string, unknown>;
|
|
7829
7829
|
note: string | null;
|
|
7830
7830
|
}[];
|
|
7831
7831
|
accessRules: string[];
|
|
@@ -7841,7 +7841,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7841
7841
|
staffMember: boolean;
|
|
7842
7842
|
credentials: {
|
|
7843
7843
|
type: "card" | "pin" | "fingerprint";
|
|
7844
|
-
value: string
|
|
7844
|
+
value: string | Record<string, unknown>;
|
|
7845
7845
|
note: string | null;
|
|
7846
7846
|
}[];
|
|
7847
7847
|
accessRules: string[];
|
|
@@ -7862,7 +7862,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7862
7862
|
staffMember: boolean;
|
|
7863
7863
|
credentials: {
|
|
7864
7864
|
type: "card" | "pin" | "fingerprint";
|
|
7865
|
-
value: string
|
|
7865
|
+
value: string | Record<string, unknown>;
|
|
7866
7866
|
note: string | null;
|
|
7867
7867
|
}[];
|
|
7868
7868
|
accessRules: string[];
|
|
@@ -7883,7 +7883,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
7883
7883
|
staffMember: boolean;
|
|
7884
7884
|
credentials: {
|
|
7885
7885
|
type: "card" | "pin" | "fingerprint";
|
|
7886
|
-
value: string
|
|
7886
|
+
value: string | Record<string, unknown>;
|
|
7887
7887
|
note: string | null;
|
|
7888
7888
|
}[];
|
|
7889
7889
|
accessRules: string[];
|
|
@@ -8067,7 +8067,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8067
8067
|
staffMember: boolean;
|
|
8068
8068
|
credentials: {
|
|
8069
8069
|
type: "card" | "pin" | "fingerprint";
|
|
8070
|
-
value: string
|
|
8070
|
+
value: string | Record<string, unknown>;
|
|
8071
8071
|
note: string | null;
|
|
8072
8072
|
}[];
|
|
8073
8073
|
accessRules: string[];
|
|
@@ -8088,7 +8088,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8088
8088
|
staffMember: boolean;
|
|
8089
8089
|
credentials: {
|
|
8090
8090
|
type: "card" | "pin" | "fingerprint";
|
|
8091
|
-
value: string
|
|
8091
|
+
value: string | Record<string, unknown>;
|
|
8092
8092
|
note: string | null;
|
|
8093
8093
|
}[];
|
|
8094
8094
|
accessRules: string[];
|
|
@@ -8105,7 +8105,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8105
8105
|
staffMember?: boolean | undefined;
|
|
8106
8106
|
credentials?: {
|
|
8107
8107
|
type: "card" | "pin" | "fingerprint";
|
|
8108
|
-
value: string
|
|
8108
|
+
value: string | Record<string, unknown>;
|
|
8109
8109
|
note: string | null;
|
|
8110
8110
|
}[] | undefined;
|
|
8111
8111
|
accessRules?: string[] | undefined;
|
|
@@ -8191,7 +8191,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8191
8191
|
staffMember: boolean;
|
|
8192
8192
|
credentials: {
|
|
8193
8193
|
type: "card" | "pin" | "fingerprint";
|
|
8194
|
-
value: string
|
|
8194
|
+
value: string | Record<string, unknown>;
|
|
8195
8195
|
note: string | null;
|
|
8196
8196
|
}[];
|
|
8197
8197
|
accessRules: string[];
|
|
@@ -8353,7 +8353,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8353
8353
|
staffMember: boolean;
|
|
8354
8354
|
credentials: {
|
|
8355
8355
|
type: "card" | "pin" | "fingerprint";
|
|
8356
|
-
value: string
|
|
8356
|
+
value: string | Record<string, unknown>;
|
|
8357
8357
|
note: string | null;
|
|
8358
8358
|
}[];
|
|
8359
8359
|
accessRules: string[];
|
|
@@ -8374,7 +8374,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8374
8374
|
staffMember: boolean;
|
|
8375
8375
|
credentials: {
|
|
8376
8376
|
type: "card" | "pin" | "fingerprint";
|
|
8377
|
-
value: string
|
|
8377
|
+
value: string | Record<string, unknown>;
|
|
8378
8378
|
note: string | null;
|
|
8379
8379
|
}[];
|
|
8380
8380
|
accessRules: string[];
|
|
@@ -8391,7 +8391,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8391
8391
|
staffMember?: boolean | undefined;
|
|
8392
8392
|
credentials?: {
|
|
8393
8393
|
type: "card" | "pin" | "fingerprint";
|
|
8394
|
-
value: string
|
|
8394
|
+
value: string | Record<string, unknown>;
|
|
8395
8395
|
note: string | null;
|
|
8396
8396
|
}[] | undefined;
|
|
8397
8397
|
accessRules?: string[] | undefined;
|
|
@@ -8477,7 +8477,7 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8477
8477
|
staffMember: boolean;
|
|
8478
8478
|
credentials: {
|
|
8479
8479
|
type: "card" | "pin" | "fingerprint";
|
|
8480
|
-
value: string
|
|
8480
|
+
value: string | Record<string, unknown>;
|
|
8481
8481
|
note: string | null;
|
|
8482
8482
|
}[];
|
|
8483
8483
|
accessRules: string[];
|
package/dist/module-config.d.ts
CHANGED
|
@@ -6,6 +6,11 @@ export interface ModuleConfig {
|
|
|
6
6
|
};
|
|
7
7
|
[moduleName: string]: Record<string, unknown>;
|
|
8
8
|
}
|
|
9
|
+
export interface SaveProviderConfigRq {
|
|
10
|
+
provider: string;
|
|
11
|
+
enabled: boolean;
|
|
12
|
+
config: Record<string, unknown>;
|
|
13
|
+
}
|
|
9
14
|
export interface ModuleConfigMetadata {
|
|
10
15
|
allModules: string[];
|
|
11
16
|
moduleTitles: Record<string, string>;
|
package/dist/package.json
CHANGED