@seamapi/types 1.59.0 → 1.59.1
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 +21 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +91 -4
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +21 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +67 -4
- package/lib/seam/connect/unstable/models/acs/system.d.ts +7 -7
- package/lib/seam/connect/unstable/models/acs/system.js +1 -1
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +45 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +11 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +73 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +21 -2
- package/src/lib/seam/connect/route-types.ts +85 -4
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -1
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +13 -0
|
@@ -991,10 +991,10 @@ export interface Routes {
|
|
|
991
991
|
jsonResponse: {
|
|
992
992
|
acs_system: {
|
|
993
993
|
acs_system_id: string;
|
|
994
|
-
external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | '
|
|
994
|
+
external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service_user';
|
|
995
995
|
external_type_display_name: string;
|
|
996
996
|
/** deprecated: use external_type */
|
|
997
|
-
system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | '
|
|
997
|
+
system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service_user';
|
|
998
998
|
/** deprecated: use external_type_display_name */
|
|
999
999
|
system_type_display_name: string;
|
|
1000
1000
|
name: string;
|
|
@@ -1016,10 +1016,10 @@ export interface Routes {
|
|
|
1016
1016
|
jsonResponse: {
|
|
1017
1017
|
acs_systems: Array<{
|
|
1018
1018
|
acs_system_id: string;
|
|
1019
|
-
external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | '
|
|
1019
|
+
external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service_user';
|
|
1020
1020
|
external_type_display_name: string;
|
|
1021
1021
|
/** deprecated: use external_type */
|
|
1022
|
-
system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | '
|
|
1022
|
+
system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service_user';
|
|
1023
1023
|
/** deprecated: use external_type_display_name */
|
|
1024
1024
|
system_type_display_name: string;
|
|
1025
1025
|
name: string;
|
|
@@ -1821,6 +1821,13 @@ export interface Routes {
|
|
|
1821
1821
|
device_id?: number | undefined;
|
|
1822
1822
|
site_id: number;
|
|
1823
1823
|
site_name: string;
|
|
1824
|
+
iana_timezone?: string | undefined;
|
|
1825
|
+
predefined_time_slots?: Array<{
|
|
1826
|
+
name: string;
|
|
1827
|
+
prefix: number;
|
|
1828
|
+
check_in_time: string;
|
|
1829
|
+
check_out_time: string;
|
|
1830
|
+
}> | undefined;
|
|
1824
1831
|
} | undefined;
|
|
1825
1832
|
wyze_metadata?: {
|
|
1826
1833
|
device_id: string;
|
|
@@ -2267,6 +2274,13 @@ export interface Routes {
|
|
|
2267
2274
|
device_id?: number | undefined;
|
|
2268
2275
|
site_id: number;
|
|
2269
2276
|
site_name: string;
|
|
2277
|
+
iana_timezone?: string | undefined;
|
|
2278
|
+
predefined_time_slots?: Array<{
|
|
2279
|
+
name: string;
|
|
2280
|
+
prefix: number;
|
|
2281
|
+
check_in_time: string;
|
|
2282
|
+
check_out_time: string;
|
|
2283
|
+
}> | undefined;
|
|
2270
2284
|
} | undefined;
|
|
2271
2285
|
wyze_metadata?: {
|
|
2272
2286
|
device_id: string;
|
|
@@ -2992,6 +3006,13 @@ export interface Routes {
|
|
|
2992
3006
|
device_id?: number | undefined;
|
|
2993
3007
|
site_id: number;
|
|
2994
3008
|
site_name: string;
|
|
3009
|
+
iana_timezone?: string | undefined;
|
|
3010
|
+
predefined_time_slots?: Array<{
|
|
3011
|
+
name: string;
|
|
3012
|
+
prefix: number;
|
|
3013
|
+
check_in_time: string;
|
|
3014
|
+
check_out_time: string;
|
|
3015
|
+
}> | undefined;
|
|
2995
3016
|
} | undefined;
|
|
2996
3017
|
wyze_metadata?: {
|
|
2997
3018
|
device_id: string;
|
|
@@ -3416,6 +3437,13 @@ export interface Routes {
|
|
|
3416
3437
|
device_id?: number | undefined;
|
|
3417
3438
|
site_id: number;
|
|
3418
3439
|
site_name: string;
|
|
3440
|
+
iana_timezone?: string | undefined;
|
|
3441
|
+
predefined_time_slots?: Array<{
|
|
3442
|
+
name: string;
|
|
3443
|
+
prefix: number;
|
|
3444
|
+
check_in_time: string;
|
|
3445
|
+
check_out_time: string;
|
|
3446
|
+
}> | undefined;
|
|
3419
3447
|
} | undefined;
|
|
3420
3448
|
wyze_metadata?: {
|
|
3421
3449
|
device_id: string;
|
|
@@ -3862,6 +3890,13 @@ export interface Routes {
|
|
|
3862
3890
|
device_id?: number | undefined;
|
|
3863
3891
|
site_id: number;
|
|
3864
3892
|
site_name: string;
|
|
3893
|
+
iana_timezone?: string | undefined;
|
|
3894
|
+
predefined_time_slots?: Array<{
|
|
3895
|
+
name: string;
|
|
3896
|
+
prefix: number;
|
|
3897
|
+
check_in_time: string;
|
|
3898
|
+
check_out_time: string;
|
|
3899
|
+
}> | undefined;
|
|
3865
3900
|
} | undefined;
|
|
3866
3901
|
wyze_metadata?: {
|
|
3867
3902
|
device_id: string;
|
|
@@ -4286,6 +4321,13 @@ export interface Routes {
|
|
|
4286
4321
|
device_id?: number | undefined;
|
|
4287
4322
|
site_id: number;
|
|
4288
4323
|
site_name: string;
|
|
4324
|
+
iana_timezone?: string | undefined;
|
|
4325
|
+
predefined_time_slots?: Array<{
|
|
4326
|
+
name: string;
|
|
4327
|
+
prefix: number;
|
|
4328
|
+
check_in_time: string;
|
|
4329
|
+
check_out_time: string;
|
|
4330
|
+
}> | undefined;
|
|
4289
4331
|
} | undefined;
|
|
4290
4332
|
wyze_metadata?: {
|
|
4291
4333
|
device_id: string;
|
|
@@ -5140,6 +5182,13 @@ export interface Routes {
|
|
|
5140
5182
|
device_id?: number | undefined;
|
|
5141
5183
|
site_id: number;
|
|
5142
5184
|
site_name: string;
|
|
5185
|
+
iana_timezone?: string | undefined;
|
|
5186
|
+
predefined_time_slots?: Array<{
|
|
5187
|
+
name: string;
|
|
5188
|
+
prefix: number;
|
|
5189
|
+
check_in_time: string;
|
|
5190
|
+
check_out_time: string;
|
|
5191
|
+
}> | undefined;
|
|
5143
5192
|
} | undefined;
|
|
5144
5193
|
wyze_metadata?: {
|
|
5145
5194
|
device_id: string;
|
|
@@ -5616,6 +5665,13 @@ export interface Routes {
|
|
|
5616
5665
|
device_id?: number | undefined;
|
|
5617
5666
|
site_id: number;
|
|
5618
5667
|
site_name: string;
|
|
5668
|
+
iana_timezone?: string | undefined;
|
|
5669
|
+
predefined_time_slots?: Array<{
|
|
5670
|
+
name: string;
|
|
5671
|
+
prefix: number;
|
|
5672
|
+
check_in_time: string;
|
|
5673
|
+
check_out_time: string;
|
|
5674
|
+
}> | undefined;
|
|
5619
5675
|
} | undefined;
|
|
5620
5676
|
wyze_metadata?: {
|
|
5621
5677
|
device_id: string;
|
|
@@ -6189,6 +6245,13 @@ export interface Routes {
|
|
|
6189
6245
|
device_id?: number | undefined;
|
|
6190
6246
|
site_id: number;
|
|
6191
6247
|
site_name: string;
|
|
6248
|
+
iana_timezone?: string | undefined;
|
|
6249
|
+
predefined_time_slots?: Array<{
|
|
6250
|
+
name: string;
|
|
6251
|
+
prefix: number;
|
|
6252
|
+
check_in_time: string;
|
|
6253
|
+
check_out_time: string;
|
|
6254
|
+
}> | undefined;
|
|
6192
6255
|
} | undefined;
|
|
6193
6256
|
wyze_metadata?: {
|
|
6194
6257
|
device_id: string;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const acs_system_external_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_account", "
|
|
2
|
+
export declare const acs_system_external_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service_user"]>;
|
|
3
3
|
export type AcsSystemExternalType = z.infer<typeof acs_system_external_type>;
|
|
4
4
|
export declare const acs_system: z.ZodObject<{
|
|
5
5
|
acs_system_id: z.ZodString;
|
|
6
|
-
external_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_account", "
|
|
6
|
+
external_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service_user"]>;
|
|
7
7
|
external_type_display_name: z.ZodString;
|
|
8
|
-
system_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_account", "
|
|
8
|
+
system_type: z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service_user"]>;
|
|
9
9
|
system_type_display_name: z.ZodString;
|
|
10
10
|
name: z.ZodString;
|
|
11
11
|
created_at: z.ZodString;
|
|
@@ -16,9 +16,9 @@ export declare const acs_system: z.ZodObject<{
|
|
|
16
16
|
workspace_id: string;
|
|
17
17
|
created_at: string;
|
|
18
18
|
acs_system_id: string;
|
|
19
|
-
external_type: "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "
|
|
19
|
+
external_type: "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "assa_abloy_credential_service_user";
|
|
20
20
|
external_type_display_name: string;
|
|
21
|
-
system_type: "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "
|
|
21
|
+
system_type: "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "assa_abloy_credential_service_user";
|
|
22
22
|
system_type_display_name: string;
|
|
23
23
|
connected_account_ids: string[];
|
|
24
24
|
}, {
|
|
@@ -26,9 +26,9 @@ export declare const acs_system: z.ZodObject<{
|
|
|
26
26
|
workspace_id: string;
|
|
27
27
|
created_at: string;
|
|
28
28
|
acs_system_id: string;
|
|
29
|
-
external_type: "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "
|
|
29
|
+
external_type: "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "assa_abloy_credential_service_user";
|
|
30
30
|
external_type_display_name: string;
|
|
31
|
-
system_type: "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "
|
|
31
|
+
system_type: "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "assa_abloy_credential_service_user";
|
|
32
32
|
system_type_display_name: string;
|
|
33
33
|
connected_account_ids: string[];
|
|
34
34
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"system.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,kEAAkE;AAClE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,UAAU;IACV,UAAU;IACV,YAAY;IACZ,eAAe;IACf,
|
|
1
|
+
{"version":3,"file":"system.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,kEAAkE;AAClE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,UAAU;IACV,UAAU;IACV,YAAY;IACZ,eAAe;IACf,qCAAqC;IACrC,mBAAmB;IACnB,oCAAoC;CACrC,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC;IACjC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,aAAa,EAAE,wBAAwB;IACvC,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;IACtC,WAAW,EAAE,wBAAwB,CAAC,QAAQ,CAC5C,+BAA+B,CAChC;IACD,wBAAwB,EAAE,CAAC;SACxB,MAAM,EAAE;SACR,QAAQ,CAAC,4CAA4C,CAAC;IACzD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CAC3C,CAAC,CAAA"}
|
|
@@ -454,18 +454,49 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
454
454
|
device_id: z.ZodOptional<z.ZodNumber>;
|
|
455
455
|
site_id: z.ZodNumber;
|
|
456
456
|
site_name: z.ZodString;
|
|
457
|
+
iana_timezone: z.ZodOptional<z.ZodString>;
|
|
458
|
+
predefined_time_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
459
|
+
name: z.ZodString;
|
|
460
|
+
prefix: z.ZodNumber;
|
|
461
|
+
check_in_time: z.ZodString;
|
|
462
|
+
check_out_time: z.ZodString;
|
|
463
|
+
}, "strip", z.ZodTypeAny, {
|
|
464
|
+
name: string;
|
|
465
|
+
prefix: number;
|
|
466
|
+
check_in_time: string;
|
|
467
|
+
check_out_time: string;
|
|
468
|
+
}, {
|
|
469
|
+
name: string;
|
|
470
|
+
prefix: number;
|
|
471
|
+
check_in_time: string;
|
|
472
|
+
check_out_time: string;
|
|
473
|
+
}>, "many">>;
|
|
457
474
|
}, "strip", z.ZodTypeAny, {
|
|
458
475
|
site_id: number;
|
|
459
476
|
site_name: string;
|
|
460
477
|
door_id: number;
|
|
461
478
|
door_name: string;
|
|
462
479
|
device_id?: number | undefined;
|
|
480
|
+
iana_timezone?: string | undefined;
|
|
481
|
+
predefined_time_slots?: {
|
|
482
|
+
name: string;
|
|
483
|
+
prefix: number;
|
|
484
|
+
check_in_time: string;
|
|
485
|
+
check_out_time: string;
|
|
486
|
+
}[] | undefined;
|
|
463
487
|
}, {
|
|
464
488
|
site_id: number;
|
|
465
489
|
site_name: string;
|
|
466
490
|
door_id: number;
|
|
467
491
|
door_name: string;
|
|
468
492
|
device_id?: number | undefined;
|
|
493
|
+
iana_timezone?: string | undefined;
|
|
494
|
+
predefined_time_slots?: {
|
|
495
|
+
name: string;
|
|
496
|
+
prefix: number;
|
|
497
|
+
check_in_time: string;
|
|
498
|
+
check_out_time: string;
|
|
499
|
+
}[] | undefined;
|
|
469
500
|
}>>;
|
|
470
501
|
wyze_metadata: z.ZodOptional<z.ZodObject<{
|
|
471
502
|
device_id: z.ZodString;
|
|
@@ -636,6 +667,13 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
636
667
|
door_id: number;
|
|
637
668
|
door_name: string;
|
|
638
669
|
device_id?: number | undefined;
|
|
670
|
+
iana_timezone?: string | undefined;
|
|
671
|
+
predefined_time_slots?: {
|
|
672
|
+
name: string;
|
|
673
|
+
prefix: number;
|
|
674
|
+
check_in_time: string;
|
|
675
|
+
check_out_time: string;
|
|
676
|
+
}[] | undefined;
|
|
639
677
|
} | undefined;
|
|
640
678
|
wyze_metadata?: {
|
|
641
679
|
device_id: string;
|
|
@@ -792,6 +830,13 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
792
830
|
door_id: number;
|
|
793
831
|
door_name: string;
|
|
794
832
|
device_id?: number | undefined;
|
|
833
|
+
iana_timezone?: string | undefined;
|
|
834
|
+
predefined_time_slots?: {
|
|
835
|
+
name: string;
|
|
836
|
+
prefix: number;
|
|
837
|
+
check_in_time: string;
|
|
838
|
+
check_out_time: string;
|
|
839
|
+
}[] | undefined;
|
|
795
840
|
} | undefined;
|
|
796
841
|
wyze_metadata?: {
|
|
797
842
|
device_id: string;
|
|
@@ -147,6 +147,17 @@ export const device_metadata = z
|
|
|
147
147
|
device_id: z.number().optional(),
|
|
148
148
|
site_id: z.number(),
|
|
149
149
|
site_name: z.string(),
|
|
150
|
+
iana_timezone: z.string().optional(),
|
|
151
|
+
predefined_time_slots: z
|
|
152
|
+
.array(z.object({
|
|
153
|
+
name: z.string(),
|
|
154
|
+
prefix: z.number(),
|
|
155
|
+
// Seam TOD
|
|
156
|
+
check_in_time: z.string(),
|
|
157
|
+
// Seam TOD
|
|
158
|
+
check_out_time: z.string(),
|
|
159
|
+
}))
|
|
160
|
+
.optional(),
|
|
150
161
|
}),
|
|
151
162
|
wyze_metadata: z.object({
|
|
152
163
|
device_id: z.string(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device-metadata.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/device-metadata.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"device-metadata.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/device-metadata.ts"],"names":[],"mappings":"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"}
|
|
@@ -643,18 +643,49 @@ export declare const managed_device: z.ZodObject<{
|
|
|
643
643
|
device_id: z.ZodOptional<z.ZodNumber>;
|
|
644
644
|
site_id: z.ZodNumber;
|
|
645
645
|
site_name: z.ZodString;
|
|
646
|
+
iana_timezone: z.ZodOptional<z.ZodString>;
|
|
647
|
+
predefined_time_slots: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
648
|
+
name: z.ZodString;
|
|
649
|
+
prefix: z.ZodNumber;
|
|
650
|
+
check_in_time: z.ZodString;
|
|
651
|
+
check_out_time: z.ZodString;
|
|
652
|
+
}, "strip", z.ZodTypeAny, {
|
|
653
|
+
name: string;
|
|
654
|
+
prefix: number;
|
|
655
|
+
check_in_time: string;
|
|
656
|
+
check_out_time: string;
|
|
657
|
+
}, {
|
|
658
|
+
name: string;
|
|
659
|
+
prefix: number;
|
|
660
|
+
check_in_time: string;
|
|
661
|
+
check_out_time: string;
|
|
662
|
+
}>, "many">>;
|
|
646
663
|
}, "strip", z.ZodTypeAny, {
|
|
647
664
|
site_id: number;
|
|
648
665
|
site_name: string;
|
|
649
666
|
door_id: number;
|
|
650
667
|
door_name: string;
|
|
651
668
|
device_id?: number | undefined;
|
|
669
|
+
iana_timezone?: string | undefined;
|
|
670
|
+
predefined_time_slots?: {
|
|
671
|
+
name: string;
|
|
672
|
+
prefix: number;
|
|
673
|
+
check_in_time: string;
|
|
674
|
+
check_out_time: string;
|
|
675
|
+
}[] | undefined;
|
|
652
676
|
}, {
|
|
653
677
|
site_id: number;
|
|
654
678
|
site_name: string;
|
|
655
679
|
door_id: number;
|
|
656
680
|
door_name: string;
|
|
657
681
|
device_id?: number | undefined;
|
|
682
|
+
iana_timezone?: string | undefined;
|
|
683
|
+
predefined_time_slots?: {
|
|
684
|
+
name: string;
|
|
685
|
+
prefix: number;
|
|
686
|
+
check_in_time: string;
|
|
687
|
+
check_out_time: string;
|
|
688
|
+
}[] | undefined;
|
|
658
689
|
}>>;
|
|
659
690
|
wyze_metadata: z.ZodOptional<z.ZodObject<{
|
|
660
691
|
device_id: z.ZodString;
|
|
@@ -825,6 +856,13 @@ export declare const managed_device: z.ZodObject<{
|
|
|
825
856
|
door_id: number;
|
|
826
857
|
door_name: string;
|
|
827
858
|
device_id?: number | undefined;
|
|
859
|
+
iana_timezone?: string | undefined;
|
|
860
|
+
predefined_time_slots?: {
|
|
861
|
+
name: string;
|
|
862
|
+
prefix: number;
|
|
863
|
+
check_in_time: string;
|
|
864
|
+
check_out_time: string;
|
|
865
|
+
}[] | undefined;
|
|
828
866
|
} | undefined;
|
|
829
867
|
wyze_metadata?: {
|
|
830
868
|
device_id: string;
|
|
@@ -981,6 +1019,13 @@ export declare const managed_device: z.ZodObject<{
|
|
|
981
1019
|
door_id: number;
|
|
982
1020
|
door_name: string;
|
|
983
1021
|
device_id?: number | undefined;
|
|
1022
|
+
iana_timezone?: string | undefined;
|
|
1023
|
+
predefined_time_slots?: {
|
|
1024
|
+
name: string;
|
|
1025
|
+
prefix: number;
|
|
1026
|
+
check_in_time: string;
|
|
1027
|
+
check_out_time: string;
|
|
1028
|
+
}[] | undefined;
|
|
984
1029
|
} | undefined;
|
|
985
1030
|
wyze_metadata?: {
|
|
986
1031
|
device_id: string;
|
|
@@ -1999,6 +2044,13 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1999
2044
|
door_id: number;
|
|
2000
2045
|
door_name: string;
|
|
2001
2046
|
device_id?: number | undefined;
|
|
2047
|
+
iana_timezone?: string | undefined;
|
|
2048
|
+
predefined_time_slots?: {
|
|
2049
|
+
name: string;
|
|
2050
|
+
prefix: number;
|
|
2051
|
+
check_in_time: string;
|
|
2052
|
+
check_out_time: string;
|
|
2053
|
+
}[] | undefined;
|
|
2002
2054
|
} | undefined;
|
|
2003
2055
|
wyze_metadata?: {
|
|
2004
2056
|
device_id: string;
|
|
@@ -2370,6 +2422,13 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2370
2422
|
door_id: number;
|
|
2371
2423
|
door_name: string;
|
|
2372
2424
|
device_id?: number | undefined;
|
|
2425
|
+
iana_timezone?: string | undefined;
|
|
2426
|
+
predefined_time_slots?: {
|
|
2427
|
+
name: string;
|
|
2428
|
+
prefix: number;
|
|
2429
|
+
check_in_time: string;
|
|
2430
|
+
check_out_time: string;
|
|
2431
|
+
}[] | undefined;
|
|
2373
2432
|
} | undefined;
|
|
2374
2433
|
wyze_metadata?: {
|
|
2375
2434
|
device_id: string;
|
|
@@ -2762,6 +2821,13 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2762
2821
|
door_id: number;
|
|
2763
2822
|
door_name: string;
|
|
2764
2823
|
device_id?: number | undefined;
|
|
2824
|
+
iana_timezone?: string | undefined;
|
|
2825
|
+
predefined_time_slots?: {
|
|
2826
|
+
name: string;
|
|
2827
|
+
prefix: number;
|
|
2828
|
+
check_in_time: string;
|
|
2829
|
+
check_out_time: string;
|
|
2830
|
+
}[] | undefined;
|
|
2765
2831
|
} | undefined;
|
|
2766
2832
|
wyze_metadata?: {
|
|
2767
2833
|
device_id: string;
|
|
@@ -3133,6 +3199,13 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3133
3199
|
door_id: number;
|
|
3134
3200
|
door_name: string;
|
|
3135
3201
|
device_id?: number | undefined;
|
|
3202
|
+
iana_timezone?: string | undefined;
|
|
3203
|
+
predefined_time_slots?: {
|
|
3204
|
+
name: string;
|
|
3205
|
+
prefix: number;
|
|
3206
|
+
check_in_time: string;
|
|
3207
|
+
check_out_time: string;
|
|
3208
|
+
}[] | undefined;
|
|
3136
3209
|
} | undefined;
|
|
3137
3210
|
wyze_metadata?: {
|
|
3138
3211
|
device_id: string;
|
package/package.json
CHANGED
|
@@ -193,7 +193,7 @@ export default {
|
|
|
193
193
|
'alta_org',
|
|
194
194
|
'salto_site',
|
|
195
195
|
'brivo_account',
|
|
196
|
-
'
|
|
196
|
+
'hid_credential_manager_organization',
|
|
197
197
|
'visionline_system',
|
|
198
198
|
'assa_abloy_credential_service_user',
|
|
199
199
|
],
|
|
@@ -208,7 +208,7 @@ export default {
|
|
|
208
208
|
'alta_org',
|
|
209
209
|
'salto_site',
|
|
210
210
|
'brivo_account',
|
|
211
|
-
'
|
|
211
|
+
'hid_credential_manager_organization',
|
|
212
212
|
'visionline_system',
|
|
213
213
|
'assa_abloy_credential_service_user',
|
|
214
214
|
],
|
|
@@ -773,6 +773,25 @@ export default {
|
|
|
773
773
|
device_id: { type: 'number' },
|
|
774
774
|
door_id: { type: 'number' },
|
|
775
775
|
door_name: { type: 'string' },
|
|
776
|
+
iana_timezone: { type: 'string' },
|
|
777
|
+
predefined_time_slots: {
|
|
778
|
+
items: {
|
|
779
|
+
properties: {
|
|
780
|
+
check_in_time: { type: 'string' },
|
|
781
|
+
check_out_time: { type: 'string' },
|
|
782
|
+
name: { type: 'string' },
|
|
783
|
+
prefix: { type: 'number' },
|
|
784
|
+
},
|
|
785
|
+
required: [
|
|
786
|
+
'name',
|
|
787
|
+
'prefix',
|
|
788
|
+
'check_in_time',
|
|
789
|
+
'check_out_time',
|
|
790
|
+
],
|
|
791
|
+
type: 'object',
|
|
792
|
+
},
|
|
793
|
+
type: 'array',
|
|
794
|
+
},
|
|
776
795
|
site_id: { type: 'number' },
|
|
777
796
|
site_name: { type: 'string' },
|
|
778
797
|
},
|