@seamapi/types 1.387.0 → 1.389.0
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/connect.cjs +63 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +220 -136
- package/lib/seam/connect/models/acs/acs-credential.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-credential.js +1 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +93 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +7 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -24
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -10
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -14
- package/lib/seam/connect/openapi.js +46 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +148 -106
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +10 -0
- package/src/lib/seam/connect/openapi.ts +52 -0
- package/src/lib/seam/connect/route-types.ts +155 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const acs_credential_external_type: z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key"]>;
|
|
2
|
+
export declare const acs_credential_external_type: z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access"]>;
|
|
3
3
|
export declare const acs_credential_access_method_type: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
4
4
|
export type AcsCredentialExternalType = z.infer<typeof acs_credential_external_type>;
|
|
5
5
|
export declare const unknown_issue_with_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -178,7 +178,7 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
178
178
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
179
179
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
180
180
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
181
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key"]>>;
|
|
181
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access"]>>;
|
|
182
182
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
183
183
|
created_at: z.ZodString;
|
|
184
184
|
workspace_id: z.ZodString;
|
|
@@ -384,7 +384,7 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
384
384
|
} | undefined;
|
|
385
385
|
is_one_time_use?: boolean | undefined;
|
|
386
386
|
issued_at?: string | null | undefined;
|
|
387
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
387
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
388
388
|
external_type_display_name?: string | undefined;
|
|
389
389
|
acs_user_id?: string | undefined;
|
|
390
390
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -453,7 +453,7 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
453
453
|
} | undefined;
|
|
454
454
|
is_one_time_use?: boolean | undefined;
|
|
455
455
|
issued_at?: string | null | undefined;
|
|
456
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
456
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
457
457
|
external_type_display_name?: string | undefined;
|
|
458
458
|
acs_user_id?: string | undefined;
|
|
459
459
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -477,7 +477,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
477
477
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
478
478
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
479
479
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
480
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key"]>>;
|
|
480
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access"]>>;
|
|
481
481
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
482
482
|
created_at: z.ZodString;
|
|
483
483
|
workspace_id: z.ZodString;
|
|
@@ -683,7 +683,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
683
683
|
} | undefined;
|
|
684
684
|
is_one_time_use?: boolean | undefined;
|
|
685
685
|
issued_at?: string | null | undefined;
|
|
686
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
686
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
687
687
|
external_type_display_name?: string | undefined;
|
|
688
688
|
acs_user_id?: string | undefined;
|
|
689
689
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -752,7 +752,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
752
752
|
} | undefined;
|
|
753
753
|
is_one_time_use?: boolean | undefined;
|
|
754
754
|
issued_at?: string | null | undefined;
|
|
755
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
755
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
756
756
|
external_type_display_name?: string | undefined;
|
|
757
757
|
acs_user_id?: string | undefined;
|
|
758
758
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,kCAAkC,EAClC,8BAA8B,GAC/B,MAAM,qBAAqB,CAAA;AAE5B,wEAAwE;AACxE,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC;IACjD,UAAU;IACV,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;IACjB,qBAAqB;IACrB,uBAAuB;IACvB,iBAAiB;
|
|
1
|
+
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"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"}
|
|
@@ -140,6 +140,20 @@ export declare const unknown_issue_with_acs_user: z.ZodObject<z.objectUtil.exten
|
|
|
140
140
|
created_at: string;
|
|
141
141
|
warning_code: "unknown_issue_with_acs_user";
|
|
142
142
|
}>;
|
|
143
|
+
export declare const latch_resident_user: z.ZodObject<z.objectUtil.extendShape<{
|
|
144
|
+
created_at: z.ZodString;
|
|
145
|
+
message: z.ZodString;
|
|
146
|
+
}, {
|
|
147
|
+
warning_code: z.ZodLiteral<"latch_resident_user">;
|
|
148
|
+
}>, "strip", z.ZodTypeAny, {
|
|
149
|
+
message: string;
|
|
150
|
+
created_at: string;
|
|
151
|
+
warning_code: "latch_resident_user";
|
|
152
|
+
}, {
|
|
153
|
+
message: string;
|
|
154
|
+
created_at: string;
|
|
155
|
+
warning_code: "latch_resident_user";
|
|
156
|
+
}>;
|
|
143
157
|
export declare const acs_users_warning_map: z.ZodObject<{
|
|
144
158
|
being_deleted: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
145
159
|
created_at: z.ZodString;
|
|
@@ -183,6 +197,20 @@ export declare const acs_users_warning_map: z.ZodObject<{
|
|
|
183
197
|
created_at: string;
|
|
184
198
|
warning_code: "unknown_issue_with_acs_user";
|
|
185
199
|
}>>>;
|
|
200
|
+
latch_resident_user: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
201
|
+
created_at: z.ZodString;
|
|
202
|
+
message: z.ZodString;
|
|
203
|
+
}, {
|
|
204
|
+
warning_code: z.ZodLiteral<"latch_resident_user">;
|
|
205
|
+
}>, "strip", z.ZodTypeAny, {
|
|
206
|
+
message: string;
|
|
207
|
+
created_at: string;
|
|
208
|
+
warning_code: "latch_resident_user";
|
|
209
|
+
}, {
|
|
210
|
+
message: string;
|
|
211
|
+
created_at: string;
|
|
212
|
+
warning_code: "latch_resident_user";
|
|
213
|
+
}>>>;
|
|
186
214
|
}, "strip", z.ZodTypeAny, {
|
|
187
215
|
salto_ks_user_not_subscribed?: {
|
|
188
216
|
message: string;
|
|
@@ -199,6 +227,11 @@ export declare const acs_users_warning_map: z.ZodObject<{
|
|
|
199
227
|
created_at: string;
|
|
200
228
|
warning_code: "unknown_issue_with_acs_user";
|
|
201
229
|
} | null | undefined;
|
|
230
|
+
latch_resident_user?: {
|
|
231
|
+
message: string;
|
|
232
|
+
created_at: string;
|
|
233
|
+
warning_code: "latch_resident_user";
|
|
234
|
+
} | null | undefined;
|
|
202
235
|
}, {
|
|
203
236
|
salto_ks_user_not_subscribed?: {
|
|
204
237
|
message: string;
|
|
@@ -215,6 +248,11 @@ export declare const acs_users_warning_map: z.ZodObject<{
|
|
|
215
248
|
created_at: string;
|
|
216
249
|
warning_code: "unknown_issue_with_acs_user";
|
|
217
250
|
} | null | undefined;
|
|
251
|
+
latch_resident_user?: {
|
|
252
|
+
message: string;
|
|
253
|
+
created_at: string;
|
|
254
|
+
warning_code: "latch_resident_user";
|
|
255
|
+
} | null | undefined;
|
|
218
256
|
}>;
|
|
219
257
|
export declare const acs_users_warnings: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
220
258
|
created_at: z.ZodString;
|
|
@@ -255,6 +293,19 @@ export declare const acs_users_warnings: z.ZodDiscriminatedUnion<"warning_code",
|
|
|
255
293
|
message: string;
|
|
256
294
|
created_at: string;
|
|
257
295
|
warning_code: "unknown_issue_with_acs_user";
|
|
296
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
297
|
+
created_at: z.ZodString;
|
|
298
|
+
message: z.ZodString;
|
|
299
|
+
}, {
|
|
300
|
+
warning_code: z.ZodLiteral<"latch_resident_user">;
|
|
301
|
+
}>, "strip", z.ZodTypeAny, {
|
|
302
|
+
message: string;
|
|
303
|
+
created_at: string;
|
|
304
|
+
warning_code: "latch_resident_user";
|
|
305
|
+
}, {
|
|
306
|
+
message: string;
|
|
307
|
+
created_at: string;
|
|
308
|
+
warning_code: "latch_resident_user";
|
|
258
309
|
}>]>;
|
|
259
310
|
export type AcsUsersWarningMap = z.infer<typeof acs_users_warning_map>;
|
|
260
311
|
export declare const acs_user_unapplied_modification_map: z.ZodObject<{
|
|
@@ -373,6 +424,19 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
373
424
|
message: string;
|
|
374
425
|
created_at: string;
|
|
375
426
|
warning_code: "unknown_issue_with_acs_user";
|
|
427
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
428
|
+
created_at: z.ZodString;
|
|
429
|
+
message: z.ZodString;
|
|
430
|
+
}, {
|
|
431
|
+
warning_code: z.ZodLiteral<"latch_resident_user">;
|
|
432
|
+
}>, "strip", z.ZodTypeAny, {
|
|
433
|
+
message: string;
|
|
434
|
+
created_at: string;
|
|
435
|
+
warning_code: "latch_resident_user";
|
|
436
|
+
}, {
|
|
437
|
+
message: string;
|
|
438
|
+
created_at: string;
|
|
439
|
+
warning_code: "latch_resident_user";
|
|
376
440
|
}>]>, "many">;
|
|
377
441
|
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
378
442
|
created_at: z.ZodString;
|
|
@@ -696,6 +760,10 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
696
760
|
message: string;
|
|
697
761
|
created_at: string;
|
|
698
762
|
warning_code: "unknown_issue_with_acs_user";
|
|
763
|
+
} | {
|
|
764
|
+
message: string;
|
|
765
|
+
created_at: string;
|
|
766
|
+
warning_code: "latch_resident_user";
|
|
699
767
|
})[];
|
|
700
768
|
workspace_id: string;
|
|
701
769
|
is_managed: true;
|
|
@@ -808,6 +876,10 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
808
876
|
message: string;
|
|
809
877
|
created_at: string;
|
|
810
878
|
warning_code: "unknown_issue_with_acs_user";
|
|
879
|
+
} | {
|
|
880
|
+
message: string;
|
|
881
|
+
created_at: string;
|
|
882
|
+
warning_code: "latch_resident_user";
|
|
811
883
|
})[];
|
|
812
884
|
workspace_id: string;
|
|
813
885
|
is_managed: true;
|
|
@@ -948,6 +1020,19 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
948
1020
|
message: string;
|
|
949
1021
|
created_at: string;
|
|
950
1022
|
warning_code: "unknown_issue_with_acs_user";
|
|
1023
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1024
|
+
created_at: z.ZodString;
|
|
1025
|
+
message: z.ZodString;
|
|
1026
|
+
}, {
|
|
1027
|
+
warning_code: z.ZodLiteral<"latch_resident_user">;
|
|
1028
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1029
|
+
message: string;
|
|
1030
|
+
created_at: string;
|
|
1031
|
+
warning_code: "latch_resident_user";
|
|
1032
|
+
}, {
|
|
1033
|
+
message: string;
|
|
1034
|
+
created_at: string;
|
|
1035
|
+
warning_code: "latch_resident_user";
|
|
951
1036
|
}>]>, "many">;
|
|
952
1037
|
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
953
1038
|
created_at: z.ZodString;
|
|
@@ -1271,6 +1356,10 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1271
1356
|
message: string;
|
|
1272
1357
|
created_at: string;
|
|
1273
1358
|
warning_code: "unknown_issue_with_acs_user";
|
|
1359
|
+
} | {
|
|
1360
|
+
message: string;
|
|
1361
|
+
created_at: string;
|
|
1362
|
+
warning_code: "latch_resident_user";
|
|
1274
1363
|
})[];
|
|
1275
1364
|
workspace_id: string;
|
|
1276
1365
|
is_managed: false;
|
|
@@ -1383,6 +1472,10 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1383
1472
|
message: string;
|
|
1384
1473
|
created_at: string;
|
|
1385
1474
|
warning_code: "unknown_issue_with_acs_user";
|
|
1475
|
+
} | {
|
|
1476
|
+
message: string;
|
|
1477
|
+
created_at: string;
|
|
1478
|
+
warning_code: "latch_resident_user";
|
|
1386
1479
|
})[];
|
|
1387
1480
|
workspace_id: string;
|
|
1388
1481
|
is_managed: false;
|
|
@@ -91,6 +91,11 @@ export const unknown_issue_with_acs_user = common_acs_user_warning
|
|
|
91
91
|
warning_code: z.literal('unknown_issue_with_acs_user'),
|
|
92
92
|
})
|
|
93
93
|
.describe('An unknown issue occurred while syncing the state of this [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) with the provider. This issue may affect the proper functioning of this user.');
|
|
94
|
+
export const latch_resident_user = common_acs_user_warning
|
|
95
|
+
.extend({
|
|
96
|
+
warning_code: z.literal('latch_resident_user'),
|
|
97
|
+
})
|
|
98
|
+
.describe('Indicates that the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was created on Latch Mission Control. Please use the Latch Mission Control to manage this user.');
|
|
94
99
|
export const acs_users_warning_map = z.object({
|
|
95
100
|
being_deleted: acs_users_being_deleted.optional().nullable(),
|
|
96
101
|
salto_ks_user_not_subscribed: acs_users_salto_ks_user_not_subscribed
|
|
@@ -99,12 +104,14 @@ export const acs_users_warning_map = z.object({
|
|
|
99
104
|
unknown_issue_with_acs_user: unknown_issue_with_acs_user
|
|
100
105
|
.optional()
|
|
101
106
|
.nullable(),
|
|
107
|
+
latch_resident_user: latch_resident_user.optional().nullable(),
|
|
102
108
|
});
|
|
103
109
|
export const acs_users_warnings = z
|
|
104
110
|
.discriminatedUnion('warning_code', [
|
|
105
111
|
acs_users_being_deleted,
|
|
106
112
|
acs_users_salto_ks_user_not_subscribed,
|
|
107
113
|
unknown_issue_with_acs_user,
|
|
114
|
+
latch_resident_user,
|
|
108
115
|
])
|
|
109
116
|
.describe('Warnings associated with the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).');
|
|
110
117
|
const common_acs_user_modification = z.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-user.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/acs-users/acs-user.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"acs-user.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/acs-users/acs-user.ts"],"names":[],"mappings":"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"}
|
|
@@ -285,7 +285,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
285
285
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
286
286
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
287
287
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
288
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key"]>>;
|
|
288
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access"]>>;
|
|
289
289
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
290
290
|
created_at: z.ZodString;
|
|
291
291
|
workspace_id: z.ZodString;
|
|
@@ -491,7 +491,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
491
491
|
} | undefined;
|
|
492
492
|
is_one_time_use?: boolean | undefined;
|
|
493
493
|
issued_at?: string | null | undefined;
|
|
494
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
494
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
495
495
|
external_type_display_name?: string | undefined;
|
|
496
496
|
acs_user_id?: string | undefined;
|
|
497
497
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -560,7 +560,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
560
560
|
} | undefined;
|
|
561
561
|
is_one_time_use?: boolean | undefined;
|
|
562
562
|
issued_at?: string | null | undefined;
|
|
563
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
563
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
564
564
|
external_type_display_name?: string | undefined;
|
|
565
565
|
acs_user_id?: string | undefined;
|
|
566
566
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -583,7 +583,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
583
583
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
584
584
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
585
585
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
586
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key"]>>;
|
|
586
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access"]>>;
|
|
587
587
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
588
588
|
created_at: z.ZodString;
|
|
589
589
|
workspace_id: z.ZodString;
|
|
@@ -789,7 +789,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
789
789
|
} | undefined;
|
|
790
790
|
is_one_time_use?: boolean | undefined;
|
|
791
791
|
issued_at?: string | null | undefined;
|
|
792
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
792
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
793
793
|
external_type_display_name?: string | undefined;
|
|
794
794
|
acs_user_id?: string | undefined;
|
|
795
795
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -858,7 +858,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
858
858
|
} | undefined;
|
|
859
859
|
is_one_time_use?: boolean | undefined;
|
|
860
860
|
issued_at?: string | null | undefined;
|
|
861
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
861
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
862
862
|
external_type_display_name?: string | undefined;
|
|
863
863
|
acs_user_id?: string | undefined;
|
|
864
864
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -964,7 +964,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
964
964
|
} | undefined;
|
|
965
965
|
is_one_time_use?: boolean | undefined;
|
|
966
966
|
issued_at?: string | null | undefined;
|
|
967
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
967
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
968
968
|
external_type_display_name?: string | undefined;
|
|
969
969
|
acs_user_id?: string | undefined;
|
|
970
970
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1033,7 +1033,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1033
1033
|
} | undefined;
|
|
1034
1034
|
is_one_time_use?: boolean | undefined;
|
|
1035
1035
|
issued_at?: string | null | undefined;
|
|
1036
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1036
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1037
1037
|
external_type_display_name?: string | undefined;
|
|
1038
1038
|
acs_user_id?: string | undefined;
|
|
1039
1039
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1129,7 +1129,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1129
1129
|
} | undefined;
|
|
1130
1130
|
is_one_time_use?: boolean | undefined;
|
|
1131
1131
|
issued_at?: string | null | undefined;
|
|
1132
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1132
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1133
1133
|
external_type_display_name?: string | undefined;
|
|
1134
1134
|
acs_user_id?: string | undefined;
|
|
1135
1135
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1198,7 +1198,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1198
1198
|
} | undefined;
|
|
1199
1199
|
is_one_time_use?: boolean | undefined;
|
|
1200
1200
|
issued_at?: string | null | undefined;
|
|
1201
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1201
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1202
1202
|
external_type_display_name?: string | undefined;
|
|
1203
1203
|
acs_user_id?: string | undefined;
|
|
1204
1204
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1299,7 +1299,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1299
1299
|
} | undefined;
|
|
1300
1300
|
is_one_time_use?: boolean | undefined;
|
|
1301
1301
|
issued_at?: string | null | undefined;
|
|
1302
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1302
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1303
1303
|
external_type_display_name?: string | undefined;
|
|
1304
1304
|
acs_user_id?: string | undefined;
|
|
1305
1305
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1368,7 +1368,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1368
1368
|
} | undefined;
|
|
1369
1369
|
is_one_time_use?: boolean | undefined;
|
|
1370
1370
|
issued_at?: string | null | undefined;
|
|
1371
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1371
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1372
1372
|
external_type_display_name?: string | undefined;
|
|
1373
1373
|
acs_user_id?: string | undefined;
|
|
1374
1374
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1470,7 +1470,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1470
1470
|
} | undefined;
|
|
1471
1471
|
is_one_time_use?: boolean | undefined;
|
|
1472
1472
|
issued_at?: string | null | undefined;
|
|
1473
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1473
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1474
1474
|
external_type_display_name?: string | undefined;
|
|
1475
1475
|
acs_user_id?: string | undefined;
|
|
1476
1476
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1539,7 +1539,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1539
1539
|
} | undefined;
|
|
1540
1540
|
is_one_time_use?: boolean | undefined;
|
|
1541
1541
|
issued_at?: string | null | undefined;
|
|
1542
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1542
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1543
1543
|
external_type_display_name?: string | undefined;
|
|
1544
1544
|
acs_user_id?: string | undefined;
|
|
1545
1545
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1843,7 +1843,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1843
1843
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1844
1844
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1845
1845
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
1846
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key"]>>;
|
|
1846
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access"]>>;
|
|
1847
1847
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1848
1848
|
created_at: z.ZodString;
|
|
1849
1849
|
workspace_id: z.ZodString;
|
|
@@ -2049,7 +2049,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2049
2049
|
} | undefined;
|
|
2050
2050
|
is_one_time_use?: boolean | undefined;
|
|
2051
2051
|
issued_at?: string | null | undefined;
|
|
2052
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2052
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2053
2053
|
external_type_display_name?: string | undefined;
|
|
2054
2054
|
acs_user_id?: string | undefined;
|
|
2055
2055
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2118,7 +2118,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2118
2118
|
} | undefined;
|
|
2119
2119
|
is_one_time_use?: boolean | undefined;
|
|
2120
2120
|
issued_at?: string | null | undefined;
|
|
2121
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2121
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2122
2122
|
external_type_display_name?: string | undefined;
|
|
2123
2123
|
acs_user_id?: string | undefined;
|
|
2124
2124
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2141,7 +2141,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2141
2141
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
2142
2142
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2143
2143
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
2144
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key"]>>;
|
|
2144
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access"]>>;
|
|
2145
2145
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
2146
2146
|
created_at: z.ZodString;
|
|
2147
2147
|
workspace_id: z.ZodString;
|
|
@@ -2347,7 +2347,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2347
2347
|
} | undefined;
|
|
2348
2348
|
is_one_time_use?: boolean | undefined;
|
|
2349
2349
|
issued_at?: string | null | undefined;
|
|
2350
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2350
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2351
2351
|
external_type_display_name?: string | undefined;
|
|
2352
2352
|
acs_user_id?: string | undefined;
|
|
2353
2353
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2416,7 +2416,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2416
2416
|
} | undefined;
|
|
2417
2417
|
is_one_time_use?: boolean | undefined;
|
|
2418
2418
|
issued_at?: string | null | undefined;
|
|
2419
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2419
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2420
2420
|
external_type_display_name?: string | undefined;
|
|
2421
2421
|
acs_user_id?: string | undefined;
|
|
2422
2422
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2490,7 +2490,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2490
2490
|
} | undefined;
|
|
2491
2491
|
is_one_time_use?: boolean | undefined;
|
|
2492
2492
|
issued_at?: string | null | undefined;
|
|
2493
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2493
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2494
2494
|
external_type_display_name?: string | undefined;
|
|
2495
2495
|
acs_user_id?: string | undefined;
|
|
2496
2496
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2559,7 +2559,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2559
2559
|
} | undefined;
|
|
2560
2560
|
is_one_time_use?: boolean | undefined;
|
|
2561
2561
|
issued_at?: string | null | undefined;
|
|
2562
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2562
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2563
2563
|
external_type_display_name?: string | undefined;
|
|
2564
2564
|
acs_user_id?: string | undefined;
|
|
2565
2565
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2634,7 +2634,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2634
2634
|
} | undefined;
|
|
2635
2635
|
is_one_time_use?: boolean | undefined;
|
|
2636
2636
|
issued_at?: string | null | undefined;
|
|
2637
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2637
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2638
2638
|
external_type_display_name?: string | undefined;
|
|
2639
2639
|
acs_user_id?: string | undefined;
|
|
2640
2640
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2703,7 +2703,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2703
2703
|
} | undefined;
|
|
2704
2704
|
is_one_time_use?: boolean | undefined;
|
|
2705
2705
|
issued_at?: string | null | undefined;
|
|
2706
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2706
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2707
2707
|
external_type_display_name?: string | undefined;
|
|
2708
2708
|
acs_user_id?: string | undefined;
|
|
2709
2709
|
acs_credential_pool_id?: string | undefined;
|