@seamapi/types 1.658.0 → 1.660.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 +54 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +169 -0
- package/dist/index.cjs +54 -15
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +5 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +26 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +4 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +11 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js +11 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +45 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +20 -0
- package/lib/seam/connect/openapi.d.ts +28 -0
- package/lib/seam/connect/openapi.js +28 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +65 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +6 -0
- package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +22 -0
- package/src/lib/seam/connect/openapi.ts +34 -0
- package/src/lib/seam/connect/route-types.ts +83 -0
|
@@ -148,6 +148,7 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
148
148
|
door_id: z.ZodOptional<z.ZodString>;
|
|
149
149
|
door_name: z.ZodOptional<z.ZodString>;
|
|
150
150
|
door_description: z.ZodOptional<z.ZodString>;
|
|
151
|
+
audit_on_keys: z.ZodOptional<z.ZodBoolean>;
|
|
151
152
|
room_name: z.ZodOptional<z.ZodString>;
|
|
152
153
|
room_description: z.ZodOptional<z.ZodString>;
|
|
153
154
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -155,6 +156,7 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
155
156
|
door_id?: string | undefined;
|
|
156
157
|
ext_door_id?: string | undefined;
|
|
157
158
|
door_description?: string | undefined;
|
|
159
|
+
audit_on_keys?: boolean | undefined;
|
|
158
160
|
room_name?: string | undefined;
|
|
159
161
|
room_description?: string | undefined;
|
|
160
162
|
}, {
|
|
@@ -162,6 +164,7 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
162
164
|
door_id?: string | undefined;
|
|
163
165
|
ext_door_id?: string | undefined;
|
|
164
166
|
door_description?: string | undefined;
|
|
167
|
+
audit_on_keys?: boolean | undefined;
|
|
165
168
|
room_name?: string | undefined;
|
|
166
169
|
room_description?: string | undefined;
|
|
167
170
|
}>>;
|
|
@@ -236,6 +239,7 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
236
239
|
door_id?: string | undefined;
|
|
237
240
|
ext_door_id?: string | undefined;
|
|
238
241
|
door_description?: string | undefined;
|
|
242
|
+
audit_on_keys?: boolean | undefined;
|
|
239
243
|
room_name?: string | undefined;
|
|
240
244
|
room_description?: string | undefined;
|
|
241
245
|
} | undefined;
|
|
@@ -301,6 +305,7 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
301
305
|
door_id?: string | undefined;
|
|
302
306
|
ext_door_id?: string | undefined;
|
|
303
307
|
door_description?: string | undefined;
|
|
308
|
+
audit_on_keys?: boolean | undefined;
|
|
304
309
|
room_name?: string | undefined;
|
|
305
310
|
room_description?: string | undefined;
|
|
306
311
|
} | undefined;
|
|
@@ -719,6 +719,13 @@ export declare const acs_user: z.ZodObject<{
|
|
|
719
719
|
}>]>, "many">>;
|
|
720
720
|
last_successful_sync_at: z.ZodNullable<z.ZodString>;
|
|
721
721
|
connected_account_id: z.ZodString;
|
|
722
|
+
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
723
|
+
audit_openings: z.ZodOptional<z.ZodBoolean>;
|
|
724
|
+
}, "strip", z.ZodTypeAny, {
|
|
725
|
+
audit_openings?: boolean | undefined;
|
|
726
|
+
}, {
|
|
727
|
+
audit_openings?: boolean | undefined;
|
|
728
|
+
}>>;
|
|
722
729
|
} & {
|
|
723
730
|
full_name: z.ZodOptional<z.ZodString>;
|
|
724
731
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -781,6 +788,9 @@ export declare const acs_user: z.ZodObject<{
|
|
|
781
788
|
user_identity_id?: string | undefined;
|
|
782
789
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
783
790
|
external_type_display_name?: string | undefined;
|
|
791
|
+
salto_space_metadata?: {
|
|
792
|
+
audit_openings?: boolean | undefined;
|
|
793
|
+
} | undefined;
|
|
784
794
|
email_address?: string | undefined;
|
|
785
795
|
full_name?: string | undefined;
|
|
786
796
|
phone_number?: string | undefined;
|
|
@@ -908,6 +918,9 @@ export declare const acs_user: z.ZodObject<{
|
|
|
908
918
|
user_identity_id?: string | undefined;
|
|
909
919
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
910
920
|
external_type_display_name?: string | undefined;
|
|
921
|
+
salto_space_metadata?: {
|
|
922
|
+
audit_openings?: boolean | undefined;
|
|
923
|
+
} | undefined;
|
|
911
924
|
email_address?: string | undefined;
|
|
912
925
|
full_name?: string | undefined;
|
|
913
926
|
phone_number?: string | undefined;
|
|
@@ -1368,6 +1381,13 @@ export declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
1368
1381
|
}>]>, "many">>;
|
|
1369
1382
|
last_successful_sync_at: z.ZodNullable<z.ZodString>;
|
|
1370
1383
|
connected_account_id: z.ZodString;
|
|
1384
|
+
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
1385
|
+
audit_openings: z.ZodOptional<z.ZodBoolean>;
|
|
1386
|
+
}, "strip", z.ZodTypeAny, {
|
|
1387
|
+
audit_openings?: boolean | undefined;
|
|
1388
|
+
}, {
|
|
1389
|
+
audit_openings?: boolean | undefined;
|
|
1390
|
+
}>>;
|
|
1371
1391
|
} & {
|
|
1372
1392
|
full_name: z.ZodOptional<z.ZodString>;
|
|
1373
1393
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1430,6 +1450,9 @@ export declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
1430
1450
|
user_identity_id?: string | undefined;
|
|
1431
1451
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
1432
1452
|
external_type_display_name?: string | undefined;
|
|
1453
|
+
salto_space_metadata?: {
|
|
1454
|
+
audit_openings?: boolean | undefined;
|
|
1455
|
+
} | undefined;
|
|
1433
1456
|
email_address?: string | undefined;
|
|
1434
1457
|
full_name?: string | undefined;
|
|
1435
1458
|
phone_number?: string | undefined;
|
|
@@ -1557,6 +1580,9 @@ export declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
1557
1580
|
user_identity_id?: string | undefined;
|
|
1558
1581
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
1559
1582
|
external_type_display_name?: string | undefined;
|
|
1583
|
+
salto_space_metadata?: {
|
|
1584
|
+
audit_openings?: boolean | undefined;
|
|
1585
|
+
} | undefined;
|
|
1560
1586
|
email_address?: string | undefined;
|
|
1561
1587
|
full_name?: string | undefined;
|
|
1562
1588
|
phone_number?: string | undefined;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { phone_number } from '../../phone-number.js';
|
|
3
3
|
import { schedule } from '../../schedule.js';
|
|
4
|
+
import { acs_user_salto_space_metadata } from '../metadata/salto-space.js';
|
|
4
5
|
import { acs_user_pending_mutations } from './pending-mutations.js';
|
|
5
6
|
export const acs_user_external_type = z.enum([
|
|
6
7
|
'pti_user',
|
|
@@ -218,6 +219,9 @@ const common_acs_user = z
|
|
|
218
219
|
connected_account_id: z.string().uuid().describe(`
|
|
219
220
|
The ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) that is associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).
|
|
220
221
|
`),
|
|
222
|
+
salto_space_metadata: acs_user_salto_space_metadata
|
|
223
|
+
.optional()
|
|
224
|
+
.describe('Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management).'),
|
|
221
225
|
})
|
|
222
226
|
.merge(user_fields);
|
|
223
227
|
export const acs_user = common_acs_user.merge(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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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/metadata/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAA;AACtC,cAAc,yBAAyB,CAAA;AACvC,cAAc,0BAA0B,CAAA;AACxC,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/metadata/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAA;AACtC,cAAc,yBAAyB,CAAA;AACvC,cAAc,0BAA0B,CAAA;AACxC,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA;AAC1B,cAAc,kBAAkB,CAAA;AAChC,cAAc,iBAAiB,CAAA"}
|
|
@@ -4,6 +4,7 @@ export declare const acs_entrance_salto_space_metadata: z.ZodObject<{
|
|
|
4
4
|
door_id: z.ZodOptional<z.ZodString>;
|
|
5
5
|
door_name: z.ZodOptional<z.ZodString>;
|
|
6
6
|
door_description: z.ZodOptional<z.ZodString>;
|
|
7
|
+
audit_on_keys: z.ZodOptional<z.ZodBoolean>;
|
|
7
8
|
room_name: z.ZodOptional<z.ZodString>;
|
|
8
9
|
room_description: z.ZodOptional<z.ZodString>;
|
|
9
10
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11,6 +12,7 @@ export declare const acs_entrance_salto_space_metadata: z.ZodObject<{
|
|
|
11
12
|
door_id?: string | undefined;
|
|
12
13
|
ext_door_id?: string | undefined;
|
|
13
14
|
door_description?: string | undefined;
|
|
15
|
+
audit_on_keys?: boolean | undefined;
|
|
14
16
|
room_name?: string | undefined;
|
|
15
17
|
room_description?: string | undefined;
|
|
16
18
|
}, {
|
|
@@ -18,7 +20,16 @@ export declare const acs_entrance_salto_space_metadata: z.ZodObject<{
|
|
|
18
20
|
door_id?: string | undefined;
|
|
19
21
|
ext_door_id?: string | undefined;
|
|
20
22
|
door_description?: string | undefined;
|
|
23
|
+
audit_on_keys?: boolean | undefined;
|
|
21
24
|
room_name?: string | undefined;
|
|
22
25
|
room_description?: string | undefined;
|
|
23
26
|
}>;
|
|
24
27
|
export type AcsEntranceSaltoSpaceMetadata = z.infer<typeof acs_entrance_salto_space_metadata>;
|
|
28
|
+
export declare const acs_user_salto_space_metadata: z.ZodObject<{
|
|
29
|
+
audit_openings: z.ZodOptional<z.ZodBoolean>;
|
|
30
|
+
}, "strip", z.ZodTypeAny, {
|
|
31
|
+
audit_openings?: boolean | undefined;
|
|
32
|
+
}, {
|
|
33
|
+
audit_openings?: boolean | undefined;
|
|
34
|
+
}>;
|
|
35
|
+
export type AcsUserSaltoSpaceMetadata = z.infer<typeof acs_user_salto_space_metadata>;
|
|
@@ -13,6 +13,9 @@ export const acs_entrance_salto_space_metadata = z
|
|
|
13
13
|
door_description: z
|
|
14
14
|
.string()
|
|
15
15
|
.describe('Description of the door in the Salto Space access system.'),
|
|
16
|
+
audit_on_keys: z
|
|
17
|
+
.boolean()
|
|
18
|
+
.describe('Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system.'),
|
|
16
19
|
room_name: z
|
|
17
20
|
.string()
|
|
18
21
|
.describe('Name of the room in the Salto Space access system.'),
|
|
@@ -22,4 +25,12 @@ export const acs_entrance_salto_space_metadata = z
|
|
|
22
25
|
})
|
|
23
26
|
.partial()
|
|
24
27
|
.describe('Salto Space-specific metadata associated with the entrance.');
|
|
28
|
+
export const acs_user_salto_space_metadata = z
|
|
29
|
+
.object({
|
|
30
|
+
audit_openings: z
|
|
31
|
+
.boolean()
|
|
32
|
+
.optional()
|
|
33
|
+
.describe('Indicates whether AuditOpenings is enabled for the user in the Salto Space access system.'),
|
|
34
|
+
})
|
|
35
|
+
.describe('Salto Space-specific metadata associated with the access system user.');
|
|
25
36
|
//# sourceMappingURL=salto-space.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"salto-space.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/metadata/salto-space.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC;KAC/C,MAAM,CAAC;IACN,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC;;;;KAIhC,CAAC;IACF,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2CAA2C,CAAC;IACzE,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,CAAC,oDAAoD,CAAC;IACjE,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,CAAC,2DAA2D,CAAC;IACxE,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,CAAC,oDAAoD,CAAC;IACjE,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,CAAC,2DAA2D,CAAC;CACzE,CAAC;KACD,OAAO,EAAE;KACT,QAAQ,CAAC,6DAA6D,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"salto-space.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/metadata/salto-space.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC;KAC/C,MAAM,CAAC;IACN,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC;;;;KAIhC,CAAC;IACF,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2CAA2C,CAAC;IACzE,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,CAAC,oDAAoD,CAAC;IACjE,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,CAAC,2DAA2D,CAAC;IACxE,aAAa,EAAE,CAAC;SACb,OAAO,EAAE;SACT,QAAQ,CACP,yFAAyF,CAC1F;IACH,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,CAAC,oDAAoD,CAAC;IACjE,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,CAAC,2DAA2D,CAAC;CACzE,CAAC;KACD,OAAO,EAAE;KACT,QAAQ,CAAC,6DAA6D,CAAC,CAAA;AAM1E,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAAC;KAC3C,MAAM,CAAC;IACN,cAAc,EAAE,CAAC;SACd,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,2FAA2F,CAC5F;CACJ,CAAC;KACD,QAAQ,CACP,uEAAuE,CACxE,CAAA"}
|
|
@@ -4920,6 +4920,7 @@ export declare const batch: z.ZodObject<{
|
|
|
4920
4920
|
door_id: z.ZodOptional<z.ZodString>;
|
|
4921
4921
|
door_name: z.ZodOptional<z.ZodString>;
|
|
4922
4922
|
door_description: z.ZodOptional<z.ZodString>;
|
|
4923
|
+
audit_on_keys: z.ZodOptional<z.ZodBoolean>;
|
|
4923
4924
|
room_name: z.ZodOptional<z.ZodString>;
|
|
4924
4925
|
room_description: z.ZodOptional<z.ZodString>;
|
|
4925
4926
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4927,6 +4928,7 @@ export declare const batch: z.ZodObject<{
|
|
|
4927
4928
|
door_id?: string | undefined;
|
|
4928
4929
|
ext_door_id?: string | undefined;
|
|
4929
4930
|
door_description?: string | undefined;
|
|
4931
|
+
audit_on_keys?: boolean | undefined;
|
|
4930
4932
|
room_name?: string | undefined;
|
|
4931
4933
|
room_description?: string | undefined;
|
|
4932
4934
|
}, {
|
|
@@ -4934,6 +4936,7 @@ export declare const batch: z.ZodObject<{
|
|
|
4934
4936
|
door_id?: string | undefined;
|
|
4935
4937
|
ext_door_id?: string | undefined;
|
|
4936
4938
|
door_description?: string | undefined;
|
|
4939
|
+
audit_on_keys?: boolean | undefined;
|
|
4937
4940
|
room_name?: string | undefined;
|
|
4938
4941
|
room_description?: string | undefined;
|
|
4939
4942
|
}>>;
|
|
@@ -5008,6 +5011,7 @@ export declare const batch: z.ZodObject<{
|
|
|
5008
5011
|
door_id?: string | undefined;
|
|
5009
5012
|
ext_door_id?: string | undefined;
|
|
5010
5013
|
door_description?: string | undefined;
|
|
5014
|
+
audit_on_keys?: boolean | undefined;
|
|
5011
5015
|
room_name?: string | undefined;
|
|
5012
5016
|
room_description?: string | undefined;
|
|
5013
5017
|
} | undefined;
|
|
@@ -5073,6 +5077,7 @@ export declare const batch: z.ZodObject<{
|
|
|
5073
5077
|
door_id?: string | undefined;
|
|
5074
5078
|
ext_door_id?: string | undefined;
|
|
5075
5079
|
door_description?: string | undefined;
|
|
5080
|
+
audit_on_keys?: boolean | undefined;
|
|
5076
5081
|
room_name?: string | undefined;
|
|
5077
5082
|
room_description?: string | undefined;
|
|
5078
5083
|
} | undefined;
|
|
@@ -5760,6 +5765,13 @@ export declare const batch: z.ZodObject<{
|
|
|
5760
5765
|
}>]>, "many">>;
|
|
5761
5766
|
last_successful_sync_at: z.ZodNullable<z.ZodString>;
|
|
5762
5767
|
connected_account_id: z.ZodString;
|
|
5768
|
+
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
5769
|
+
audit_openings: z.ZodOptional<z.ZodBoolean>;
|
|
5770
|
+
}, "strip", z.ZodTypeAny, {
|
|
5771
|
+
audit_openings?: boolean | undefined;
|
|
5772
|
+
}, {
|
|
5773
|
+
audit_openings?: boolean | undefined;
|
|
5774
|
+
}>>;
|
|
5763
5775
|
} & {
|
|
5764
5776
|
full_name: z.ZodOptional<z.ZodString>;
|
|
5765
5777
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -5822,6 +5834,9 @@ export declare const batch: z.ZodObject<{
|
|
|
5822
5834
|
user_identity_id?: string | undefined;
|
|
5823
5835
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
5824
5836
|
external_type_display_name?: string | undefined;
|
|
5837
|
+
salto_space_metadata?: {
|
|
5838
|
+
audit_openings?: boolean | undefined;
|
|
5839
|
+
} | undefined;
|
|
5825
5840
|
email_address?: string | undefined;
|
|
5826
5841
|
full_name?: string | undefined;
|
|
5827
5842
|
phone_number?: string | undefined;
|
|
@@ -5949,6 +5964,9 @@ export declare const batch: z.ZodObject<{
|
|
|
5949
5964
|
user_identity_id?: string | undefined;
|
|
5950
5965
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
5951
5966
|
external_type_display_name?: string | undefined;
|
|
5967
|
+
salto_space_metadata?: {
|
|
5968
|
+
audit_openings?: boolean | undefined;
|
|
5969
|
+
} | undefined;
|
|
5952
5970
|
email_address?: string | undefined;
|
|
5953
5971
|
full_name?: string | undefined;
|
|
5954
5972
|
phone_number?: string | undefined;
|
|
@@ -10998,6 +11016,13 @@ export declare const batch: z.ZodObject<{
|
|
|
10998
11016
|
}>]>, "many">>;
|
|
10999
11017
|
last_successful_sync_at: z.ZodNullable<z.ZodString>;
|
|
11000
11018
|
connected_account_id: z.ZodString;
|
|
11019
|
+
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
11020
|
+
audit_openings: z.ZodOptional<z.ZodBoolean>;
|
|
11021
|
+
}, "strip", z.ZodTypeAny, {
|
|
11022
|
+
audit_openings?: boolean | undefined;
|
|
11023
|
+
}, {
|
|
11024
|
+
audit_openings?: boolean | undefined;
|
|
11025
|
+
}>>;
|
|
11001
11026
|
} & {
|
|
11002
11027
|
full_name: z.ZodOptional<z.ZodString>;
|
|
11003
11028
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -11060,6 +11085,9 @@ export declare const batch: z.ZodObject<{
|
|
|
11060
11085
|
user_identity_id?: string | undefined;
|
|
11061
11086
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
11062
11087
|
external_type_display_name?: string | undefined;
|
|
11088
|
+
salto_space_metadata?: {
|
|
11089
|
+
audit_openings?: boolean | undefined;
|
|
11090
|
+
} | undefined;
|
|
11063
11091
|
email_address?: string | undefined;
|
|
11064
11092
|
full_name?: string | undefined;
|
|
11065
11093
|
phone_number?: string | undefined;
|
|
@@ -11187,6 +11215,9 @@ export declare const batch: z.ZodObject<{
|
|
|
11187
11215
|
user_identity_id?: string | undefined;
|
|
11188
11216
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
11189
11217
|
external_type_display_name?: string | undefined;
|
|
11218
|
+
salto_space_metadata?: {
|
|
11219
|
+
audit_openings?: boolean | undefined;
|
|
11220
|
+
} | undefined;
|
|
11190
11221
|
email_address?: string | undefined;
|
|
11191
11222
|
full_name?: string | undefined;
|
|
11192
11223
|
phone_number?: string | undefined;
|
|
@@ -22215,6 +22246,7 @@ export declare const batch: z.ZodObject<{
|
|
|
22215
22246
|
door_id?: string | undefined;
|
|
22216
22247
|
ext_door_id?: string | undefined;
|
|
22217
22248
|
door_description?: string | undefined;
|
|
22249
|
+
audit_on_keys?: boolean | undefined;
|
|
22218
22250
|
room_name?: string | undefined;
|
|
22219
22251
|
room_description?: string | undefined;
|
|
22220
22252
|
} | undefined;
|
|
@@ -22343,6 +22375,9 @@ export declare const batch: z.ZodObject<{
|
|
|
22343
22375
|
user_identity_id?: string | undefined;
|
|
22344
22376
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
22345
22377
|
external_type_display_name?: string | undefined;
|
|
22378
|
+
salto_space_metadata?: {
|
|
22379
|
+
audit_openings?: boolean | undefined;
|
|
22380
|
+
} | undefined;
|
|
22346
22381
|
email_address?: string | undefined;
|
|
22347
22382
|
full_name?: string | undefined;
|
|
22348
22383
|
phone_number?: string | undefined;
|
|
@@ -23389,6 +23424,9 @@ export declare const batch: z.ZodObject<{
|
|
|
23389
23424
|
user_identity_id?: string | undefined;
|
|
23390
23425
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
23391
23426
|
external_type_display_name?: string | undefined;
|
|
23427
|
+
salto_space_metadata?: {
|
|
23428
|
+
audit_openings?: boolean | undefined;
|
|
23429
|
+
} | undefined;
|
|
23392
23430
|
email_address?: string | undefined;
|
|
23393
23431
|
full_name?: string | undefined;
|
|
23394
23432
|
phone_number?: string | undefined;
|
|
@@ -26239,6 +26277,7 @@ export declare const batch: z.ZodObject<{
|
|
|
26239
26277
|
door_id?: string | undefined;
|
|
26240
26278
|
ext_door_id?: string | undefined;
|
|
26241
26279
|
door_description?: string | undefined;
|
|
26280
|
+
audit_on_keys?: boolean | undefined;
|
|
26242
26281
|
room_name?: string | undefined;
|
|
26243
26282
|
room_description?: string | undefined;
|
|
26244
26283
|
} | undefined;
|
|
@@ -26367,6 +26406,9 @@ export declare const batch: z.ZodObject<{
|
|
|
26367
26406
|
user_identity_id?: string | undefined;
|
|
26368
26407
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
26369
26408
|
external_type_display_name?: string | undefined;
|
|
26409
|
+
salto_space_metadata?: {
|
|
26410
|
+
audit_openings?: boolean | undefined;
|
|
26411
|
+
} | undefined;
|
|
26370
26412
|
email_address?: string | undefined;
|
|
26371
26413
|
full_name?: string | undefined;
|
|
26372
26414
|
phone_number?: string | undefined;
|
|
@@ -27413,6 +27455,9 @@ export declare const batch: z.ZodObject<{
|
|
|
27413
27455
|
user_identity_id?: string | undefined;
|
|
27414
27456
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
27415
27457
|
external_type_display_name?: string | undefined;
|
|
27458
|
+
salto_space_metadata?: {
|
|
27459
|
+
audit_openings?: boolean | undefined;
|
|
27460
|
+
} | undefined;
|
|
27416
27461
|
email_address?: string | undefined;
|
|
27417
27462
|
full_name?: string | undefined;
|
|
27418
27463
|
phone_number?: string | undefined;
|
|
@@ -316,6 +316,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
316
316
|
door_id: z.ZodOptional<z.ZodString>;
|
|
317
317
|
door_name: z.ZodOptional<z.ZodString>;
|
|
318
318
|
door_description: z.ZodOptional<z.ZodString>;
|
|
319
|
+
audit_on_keys: z.ZodOptional<z.ZodBoolean>;
|
|
319
320
|
room_name: z.ZodOptional<z.ZodString>;
|
|
320
321
|
room_description: z.ZodOptional<z.ZodString>;
|
|
321
322
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -323,6 +324,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
323
324
|
door_id?: string | undefined;
|
|
324
325
|
ext_door_id?: string | undefined;
|
|
325
326
|
door_description?: string | undefined;
|
|
327
|
+
audit_on_keys?: boolean | undefined;
|
|
326
328
|
room_name?: string | undefined;
|
|
327
329
|
room_description?: string | undefined;
|
|
328
330
|
}, {
|
|
@@ -330,6 +332,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
330
332
|
door_id?: string | undefined;
|
|
331
333
|
ext_door_id?: string | undefined;
|
|
332
334
|
door_description?: string | undefined;
|
|
335
|
+
audit_on_keys?: boolean | undefined;
|
|
333
336
|
room_name?: string | undefined;
|
|
334
337
|
room_description?: string | undefined;
|
|
335
338
|
}>>;
|
|
@@ -404,6 +407,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
404
407
|
door_id?: string | undefined;
|
|
405
408
|
ext_door_id?: string | undefined;
|
|
406
409
|
door_description?: string | undefined;
|
|
410
|
+
audit_on_keys?: boolean | undefined;
|
|
407
411
|
room_name?: string | undefined;
|
|
408
412
|
room_description?: string | undefined;
|
|
409
413
|
} | undefined;
|
|
@@ -469,6 +473,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
469
473
|
door_id?: string | undefined;
|
|
470
474
|
ext_door_id?: string | undefined;
|
|
471
475
|
door_description?: string | undefined;
|
|
476
|
+
audit_on_keys?: boolean | undefined;
|
|
472
477
|
room_name?: string | undefined;
|
|
473
478
|
room_description?: string | undefined;
|
|
474
479
|
} | undefined;
|
|
@@ -573,6 +578,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
573
578
|
door_id?: string | undefined;
|
|
574
579
|
ext_door_id?: string | undefined;
|
|
575
580
|
door_description?: string | undefined;
|
|
581
|
+
audit_on_keys?: boolean | undefined;
|
|
576
582
|
room_name?: string | undefined;
|
|
577
583
|
room_description?: string | undefined;
|
|
578
584
|
} | undefined;
|
|
@@ -711,6 +717,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
711
717
|
door_id?: string | undefined;
|
|
712
718
|
ext_door_id?: string | undefined;
|
|
713
719
|
door_description?: string | undefined;
|
|
720
|
+
audit_on_keys?: boolean | undefined;
|
|
714
721
|
room_name?: string | undefined;
|
|
715
722
|
room_description?: string | undefined;
|
|
716
723
|
} | undefined;
|
|
@@ -851,6 +858,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
851
858
|
door_id?: string | undefined;
|
|
852
859
|
ext_door_id?: string | undefined;
|
|
853
860
|
door_description?: string | undefined;
|
|
861
|
+
audit_on_keys?: boolean | undefined;
|
|
854
862
|
room_name?: string | undefined;
|
|
855
863
|
room_description?: string | undefined;
|
|
856
864
|
} | undefined;
|
|
@@ -997,6 +1005,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
997
1005
|
door_id?: string | undefined;
|
|
998
1006
|
ext_door_id?: string | undefined;
|
|
999
1007
|
door_description?: string | undefined;
|
|
1008
|
+
audit_on_keys?: boolean | undefined;
|
|
1000
1009
|
room_name?: string | undefined;
|
|
1001
1010
|
room_description?: string | undefined;
|
|
1002
1011
|
} | undefined;
|
|
@@ -1364,6 +1373,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1364
1373
|
door_id: z.ZodOptional<z.ZodString>;
|
|
1365
1374
|
door_name: z.ZodOptional<z.ZodString>;
|
|
1366
1375
|
door_description: z.ZodOptional<z.ZodString>;
|
|
1376
|
+
audit_on_keys: z.ZodOptional<z.ZodBoolean>;
|
|
1367
1377
|
room_name: z.ZodOptional<z.ZodString>;
|
|
1368
1378
|
room_description: z.ZodOptional<z.ZodString>;
|
|
1369
1379
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1371,6 +1381,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1371
1381
|
door_id?: string | undefined;
|
|
1372
1382
|
ext_door_id?: string | undefined;
|
|
1373
1383
|
door_description?: string | undefined;
|
|
1384
|
+
audit_on_keys?: boolean | undefined;
|
|
1374
1385
|
room_name?: string | undefined;
|
|
1375
1386
|
room_description?: string | undefined;
|
|
1376
1387
|
}, {
|
|
@@ -1378,6 +1389,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1378
1389
|
door_id?: string | undefined;
|
|
1379
1390
|
ext_door_id?: string | undefined;
|
|
1380
1391
|
door_description?: string | undefined;
|
|
1392
|
+
audit_on_keys?: boolean | undefined;
|
|
1381
1393
|
room_name?: string | undefined;
|
|
1382
1394
|
room_description?: string | undefined;
|
|
1383
1395
|
}>>;
|
|
@@ -1452,6 +1464,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1452
1464
|
door_id?: string | undefined;
|
|
1453
1465
|
ext_door_id?: string | undefined;
|
|
1454
1466
|
door_description?: string | undefined;
|
|
1467
|
+
audit_on_keys?: boolean | undefined;
|
|
1455
1468
|
room_name?: string | undefined;
|
|
1456
1469
|
room_description?: string | undefined;
|
|
1457
1470
|
} | undefined;
|
|
@@ -1517,6 +1530,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1517
1530
|
door_id?: string | undefined;
|
|
1518
1531
|
ext_door_id?: string | undefined;
|
|
1519
1532
|
door_description?: string | undefined;
|
|
1533
|
+
audit_on_keys?: boolean | undefined;
|
|
1520
1534
|
room_name?: string | undefined;
|
|
1521
1535
|
room_description?: string | undefined;
|
|
1522
1536
|
} | undefined;
|
|
@@ -1621,6 +1635,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1621
1635
|
door_id?: string | undefined;
|
|
1622
1636
|
ext_door_id?: string | undefined;
|
|
1623
1637
|
door_description?: string | undefined;
|
|
1638
|
+
audit_on_keys?: boolean | undefined;
|
|
1624
1639
|
room_name?: string | undefined;
|
|
1625
1640
|
room_description?: string | undefined;
|
|
1626
1641
|
} | undefined;
|
|
@@ -1759,6 +1774,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1759
1774
|
door_id?: string | undefined;
|
|
1760
1775
|
ext_door_id?: string | undefined;
|
|
1761
1776
|
door_description?: string | undefined;
|
|
1777
|
+
audit_on_keys?: boolean | undefined;
|
|
1762
1778
|
room_name?: string | undefined;
|
|
1763
1779
|
room_description?: string | undefined;
|
|
1764
1780
|
} | undefined;
|
|
@@ -1899,6 +1915,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1899
1915
|
door_id?: string | undefined;
|
|
1900
1916
|
ext_door_id?: string | undefined;
|
|
1901
1917
|
door_description?: string | undefined;
|
|
1918
|
+
audit_on_keys?: boolean | undefined;
|
|
1902
1919
|
room_name?: string | undefined;
|
|
1903
1920
|
room_description?: string | undefined;
|
|
1904
1921
|
} | undefined;
|
|
@@ -2045,6 +2062,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2045
2062
|
door_id?: string | undefined;
|
|
2046
2063
|
ext_door_id?: string | undefined;
|
|
2047
2064
|
door_description?: string | undefined;
|
|
2065
|
+
audit_on_keys?: boolean | undefined;
|
|
2048
2066
|
room_name?: string | undefined;
|
|
2049
2067
|
room_description?: string | undefined;
|
|
2050
2068
|
} | undefined;
|
|
@@ -2305,6 +2323,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2305
2323
|
door_id?: string | undefined;
|
|
2306
2324
|
ext_door_id?: string | undefined;
|
|
2307
2325
|
door_description?: string | undefined;
|
|
2326
|
+
audit_on_keys?: boolean | undefined;
|
|
2308
2327
|
room_name?: string | undefined;
|
|
2309
2328
|
room_description?: string | undefined;
|
|
2310
2329
|
} | undefined;
|
|
@@ -2481,6 +2500,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2481
2500
|
door_id?: string | undefined;
|
|
2482
2501
|
ext_door_id?: string | undefined;
|
|
2483
2502
|
door_description?: string | undefined;
|
|
2503
|
+
audit_on_keys?: boolean | undefined;
|
|
2484
2504
|
room_name?: string | undefined;
|
|
2485
2505
|
room_description?: string | undefined;
|
|
2486
2506
|
} | undefined;
|
|
@@ -1310,6 +1310,10 @@ declare const _default: {
|
|
|
1310
1310
|
salto_space_metadata: {
|
|
1311
1311
|
description: string;
|
|
1312
1312
|
properties: {
|
|
1313
|
+
audit_on_keys: {
|
|
1314
|
+
description: string;
|
|
1315
|
+
type: string;
|
|
1316
|
+
};
|
|
1313
1317
|
door_description: {
|
|
1314
1318
|
description: string;
|
|
1315
1319
|
type: string;
|
|
@@ -2059,6 +2063,16 @@ declare const _default: {
|
|
|
2059
2063
|
description: string;
|
|
2060
2064
|
type: string;
|
|
2061
2065
|
};
|
|
2066
|
+
salto_space_metadata: {
|
|
2067
|
+
description: string;
|
|
2068
|
+
properties: {
|
|
2069
|
+
audit_openings: {
|
|
2070
|
+
description: string;
|
|
2071
|
+
type: string;
|
|
2072
|
+
};
|
|
2073
|
+
};
|
|
2074
|
+
type: string;
|
|
2075
|
+
};
|
|
2062
2076
|
user_identity_email_address: {
|
|
2063
2077
|
description: string;
|
|
2064
2078
|
nullable: boolean;
|
|
@@ -12193,6 +12207,10 @@ declare const _default: {
|
|
|
12193
12207
|
salto_space_metadata: {
|
|
12194
12208
|
description: string;
|
|
12195
12209
|
properties: {
|
|
12210
|
+
audit_on_keys: {
|
|
12211
|
+
description: string;
|
|
12212
|
+
type: string;
|
|
12213
|
+
};
|
|
12196
12214
|
door_description: {
|
|
12197
12215
|
description: string;
|
|
12198
12216
|
type: string;
|
|
@@ -14084,6 +14102,16 @@ declare const _default: {
|
|
|
14084
14102
|
description: string;
|
|
14085
14103
|
type: string;
|
|
14086
14104
|
};
|
|
14105
|
+
salto_space_metadata: {
|
|
14106
|
+
description: string;
|
|
14107
|
+
properties: {
|
|
14108
|
+
audit_openings: {
|
|
14109
|
+
description: string;
|
|
14110
|
+
type: string;
|
|
14111
|
+
};
|
|
14112
|
+
};
|
|
14113
|
+
type: string;
|
|
14114
|
+
};
|
|
14087
14115
|
user_identity_email_address: {
|
|
14088
14116
|
description: string;
|
|
14089
14117
|
nullable: boolean;
|