@seamapi/types 1.151.0 → 1.153.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 +26 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +62 -6
- package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +3 -3
- package/lib/seam/connect/models/connect-webviews/connect-webview.js +10 -3
- package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +10 -0
- package/lib/seam/connect/models/devices/device-metadata.js +2 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/managed-device.d.ts +18 -0
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +12 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +51 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +14 -3
- package/src/lib/seam/connect/models/devices/device-metadata.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +14 -3
- package/src/lib/seam/connect/route-types.ts +51 -3
package/dist/connect.d.cts
CHANGED
|
@@ -9,8 +9,8 @@ declare const connect_webview: z.ZodObject<{
|
|
|
9
9
|
device_selection_mode: z.ZodEnum<["none", "single", "multiple"]>;
|
|
10
10
|
accepted_providers: z.ZodArray<z.ZodString, "many">;
|
|
11
11
|
accepted_devices: z.ZodArray<z.ZodString, "many">;
|
|
12
|
-
any_provider_allowed: z.ZodBoolean;
|
|
13
12
|
any_device_allowed: z.ZodBoolean;
|
|
13
|
+
any_provider_allowed: z.ZodBoolean;
|
|
14
14
|
login_successful: z.ZodBoolean;
|
|
15
15
|
status: z.ZodEnum<["pending", "failed", "authorized"]>;
|
|
16
16
|
custom_redirect_url: z.ZodNullable<z.ZodString>;
|
|
@@ -30,8 +30,8 @@ declare const connect_webview: z.ZodObject<{
|
|
|
30
30
|
device_selection_mode: "none" | "single" | "multiple";
|
|
31
31
|
accepted_providers: string[];
|
|
32
32
|
accepted_devices: string[];
|
|
33
|
-
any_provider_allowed: boolean;
|
|
34
33
|
any_device_allowed: boolean;
|
|
34
|
+
any_provider_allowed: boolean;
|
|
35
35
|
login_successful: boolean;
|
|
36
36
|
custom_redirect_url: string | null;
|
|
37
37
|
custom_redirect_failure_url: string | null;
|
|
@@ -50,8 +50,8 @@ declare const connect_webview: z.ZodObject<{
|
|
|
50
50
|
device_selection_mode: "none" | "single" | "multiple";
|
|
51
51
|
accepted_providers: string[];
|
|
52
52
|
accepted_devices: string[];
|
|
53
|
-
any_provider_allowed: boolean;
|
|
54
53
|
any_device_allowed: boolean;
|
|
54
|
+
any_provider_allowed: boolean;
|
|
55
55
|
login_successful: boolean;
|
|
56
56
|
custom_redirect_url: string | null;
|
|
57
57
|
custom_redirect_failure_url: string | null;
|
|
@@ -560,6 +560,7 @@ declare const _default: {
|
|
|
560
560
|
connect_webview: {
|
|
561
561
|
properties: {
|
|
562
562
|
accepted_devices: {
|
|
563
|
+
description: string;
|
|
563
564
|
items: {
|
|
564
565
|
type: string;
|
|
565
566
|
};
|
|
@@ -572,6 +573,7 @@ declare const _default: {
|
|
|
572
573
|
type: string;
|
|
573
574
|
};
|
|
574
575
|
any_device_allowed: {
|
|
576
|
+
description: string;
|
|
575
577
|
type: string;
|
|
576
578
|
};
|
|
577
579
|
any_provider_allowed: {
|
|
@@ -1539,6 +1541,12 @@ declare const _default: {
|
|
|
1539
1541
|
device_name: {
|
|
1540
1542
|
type: string;
|
|
1541
1543
|
};
|
|
1544
|
+
keypad_uuid: {
|
|
1545
|
+
type: string;
|
|
1546
|
+
};
|
|
1547
|
+
locker_status_hardlock: {
|
|
1548
|
+
type: string;
|
|
1549
|
+
};
|
|
1542
1550
|
product_model: {
|
|
1543
1551
|
type: string;
|
|
1544
1552
|
};
|
|
@@ -19030,9 +19038,19 @@ interface Routes {
|
|
|
19030
19038
|
url: string;
|
|
19031
19039
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
19032
19040
|
accepted_providers: string[];
|
|
19041
|
+
/**
|
|
19042
|
+
---
|
|
19043
|
+
deprecated: Unused. Will be removed.
|
|
19044
|
+
---
|
|
19045
|
+
*/
|
|
19033
19046
|
accepted_devices: string[];
|
|
19034
|
-
|
|
19047
|
+
/**
|
|
19048
|
+
---
|
|
19049
|
+
deprecated: Unused. Will be removed.
|
|
19050
|
+
---
|
|
19051
|
+
*/
|
|
19035
19052
|
any_device_allowed: boolean;
|
|
19053
|
+
any_provider_allowed: boolean;
|
|
19036
19054
|
login_successful: boolean;
|
|
19037
19055
|
status: 'pending' | 'failed' | 'authorized';
|
|
19038
19056
|
custom_redirect_url: string | null;
|
|
@@ -19074,9 +19092,19 @@ interface Routes {
|
|
|
19074
19092
|
url: string;
|
|
19075
19093
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
19076
19094
|
accepted_providers: string[];
|
|
19095
|
+
/**
|
|
19096
|
+
---
|
|
19097
|
+
deprecated: Unused. Will be removed.
|
|
19098
|
+
---
|
|
19099
|
+
*/
|
|
19077
19100
|
accepted_devices: string[];
|
|
19078
|
-
|
|
19101
|
+
/**
|
|
19102
|
+
---
|
|
19103
|
+
deprecated: Unused. Will be removed.
|
|
19104
|
+
---
|
|
19105
|
+
*/
|
|
19079
19106
|
any_device_allowed: boolean;
|
|
19107
|
+
any_provider_allowed: boolean;
|
|
19080
19108
|
login_successful: boolean;
|
|
19081
19109
|
status: 'pending' | 'failed' | 'authorized';
|
|
19082
19110
|
custom_redirect_url: string | null;
|
|
@@ -19109,9 +19137,19 @@ interface Routes {
|
|
|
19109
19137
|
url: string;
|
|
19110
19138
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
19111
19139
|
accepted_providers: string[];
|
|
19140
|
+
/**
|
|
19141
|
+
---
|
|
19142
|
+
deprecated: Unused. Will be removed.
|
|
19143
|
+
---
|
|
19144
|
+
*/
|
|
19112
19145
|
accepted_devices: string[];
|
|
19113
|
-
|
|
19146
|
+
/**
|
|
19147
|
+
---
|
|
19148
|
+
deprecated: Unused. Will be removed.
|
|
19149
|
+
---
|
|
19150
|
+
*/
|
|
19114
19151
|
any_device_allowed: boolean;
|
|
19152
|
+
any_provider_allowed: boolean;
|
|
19115
19153
|
login_successful: boolean;
|
|
19116
19154
|
status: 'pending' | 'failed' | 'authorized';
|
|
19117
19155
|
custom_redirect_url: string | null;
|
|
@@ -19529,6 +19567,8 @@ interface Routes {
|
|
|
19529
19567
|
product_type: string;
|
|
19530
19568
|
product_model: string;
|
|
19531
19569
|
device_info_model: string;
|
|
19570
|
+
keypad_uuid?: string | undefined;
|
|
19571
|
+
locker_status_hardlock?: number | undefined;
|
|
19532
19572
|
} | undefined;
|
|
19533
19573
|
tedee_metadata?: {
|
|
19534
19574
|
device_id: number;
|
|
@@ -20061,6 +20101,8 @@ interface Routes {
|
|
|
20061
20101
|
product_type: string;
|
|
20062
20102
|
product_model: string;
|
|
20063
20103
|
device_info_model: string;
|
|
20104
|
+
keypad_uuid?: string | undefined;
|
|
20105
|
+
locker_status_hardlock?: number | undefined;
|
|
20064
20106
|
} | undefined;
|
|
20065
20107
|
tedee_metadata?: {
|
|
20066
20108
|
device_id: number;
|
|
@@ -20967,6 +21009,8 @@ interface Routes {
|
|
|
20967
21009
|
product_type: string;
|
|
20968
21010
|
product_model: string;
|
|
20969
21011
|
device_info_model: string;
|
|
21012
|
+
keypad_uuid?: string | undefined;
|
|
21013
|
+
locker_status_hardlock?: number | undefined;
|
|
20970
21014
|
} | undefined;
|
|
20971
21015
|
tedee_metadata?: {
|
|
20972
21016
|
device_id: number;
|
|
@@ -21474,6 +21518,8 @@ interface Routes {
|
|
|
21474
21518
|
product_type: string;
|
|
21475
21519
|
product_model: string;
|
|
21476
21520
|
device_info_model: string;
|
|
21521
|
+
keypad_uuid?: string | undefined;
|
|
21522
|
+
locker_status_hardlock?: number | undefined;
|
|
21477
21523
|
} | undefined;
|
|
21478
21524
|
tedee_metadata?: {
|
|
21479
21525
|
device_id: number;
|
|
@@ -22006,6 +22052,8 @@ interface Routes {
|
|
|
22006
22052
|
product_type: string;
|
|
22007
22053
|
product_model: string;
|
|
22008
22054
|
device_info_model: string;
|
|
22055
|
+
keypad_uuid?: string | undefined;
|
|
22056
|
+
locker_status_hardlock?: number | undefined;
|
|
22009
22057
|
} | undefined;
|
|
22010
22058
|
tedee_metadata?: {
|
|
22011
22059
|
device_id: number;
|
|
@@ -22513,6 +22561,8 @@ interface Routes {
|
|
|
22513
22561
|
product_type: string;
|
|
22514
22562
|
product_model: string;
|
|
22515
22563
|
device_info_model: string;
|
|
22564
|
+
keypad_uuid?: string | undefined;
|
|
22565
|
+
locker_status_hardlock?: number | undefined;
|
|
22516
22566
|
} | undefined;
|
|
22517
22567
|
tedee_metadata?: {
|
|
22518
22568
|
device_id: number;
|
|
@@ -23661,6 +23711,8 @@ interface Routes {
|
|
|
23661
23711
|
product_type: string;
|
|
23662
23712
|
product_model: string;
|
|
23663
23713
|
device_info_model: string;
|
|
23714
|
+
keypad_uuid?: string | undefined;
|
|
23715
|
+
locker_status_hardlock?: number | undefined;
|
|
23664
23716
|
} | undefined;
|
|
23665
23717
|
tedee_metadata?: {
|
|
23666
23718
|
device_id: number;
|
|
@@ -24269,6 +24321,8 @@ interface Routes {
|
|
|
24269
24321
|
product_type: string;
|
|
24270
24322
|
product_model: string;
|
|
24271
24323
|
device_info_model: string;
|
|
24324
|
+
keypad_uuid?: string | undefined;
|
|
24325
|
+
locker_status_hardlock?: number | undefined;
|
|
24272
24326
|
} | undefined;
|
|
24273
24327
|
tedee_metadata?: {
|
|
24274
24328
|
device_id: number;
|
|
@@ -25060,6 +25114,8 @@ interface Routes {
|
|
|
25060
25114
|
product_type: string;
|
|
25061
25115
|
product_model: string;
|
|
25062
25116
|
device_info_model: string;
|
|
25117
|
+
keypad_uuid?: string | undefined;
|
|
25118
|
+
locker_status_hardlock?: number | undefined;
|
|
25063
25119
|
} | undefined;
|
|
25064
25120
|
tedee_metadata?: {
|
|
25065
25121
|
device_id: number;
|
|
@@ -9,8 +9,8 @@ export declare const connect_webview: z.ZodObject<{
|
|
|
9
9
|
device_selection_mode: z.ZodEnum<["none", "single", "multiple"]>;
|
|
10
10
|
accepted_providers: z.ZodArray<z.ZodString, "many">;
|
|
11
11
|
accepted_devices: z.ZodArray<z.ZodString, "many">;
|
|
12
|
-
any_provider_allowed: z.ZodBoolean;
|
|
13
12
|
any_device_allowed: z.ZodBoolean;
|
|
13
|
+
any_provider_allowed: z.ZodBoolean;
|
|
14
14
|
login_successful: z.ZodBoolean;
|
|
15
15
|
status: z.ZodEnum<["pending", "failed", "authorized"]>;
|
|
16
16
|
custom_redirect_url: z.ZodNullable<z.ZodString>;
|
|
@@ -30,8 +30,8 @@ export declare const connect_webview: z.ZodObject<{
|
|
|
30
30
|
device_selection_mode: "none" | "multiple" | "single";
|
|
31
31
|
accepted_providers: string[];
|
|
32
32
|
accepted_devices: string[];
|
|
33
|
-
any_provider_allowed: boolean;
|
|
34
33
|
any_device_allowed: boolean;
|
|
34
|
+
any_provider_allowed: boolean;
|
|
35
35
|
login_successful: boolean;
|
|
36
36
|
custom_redirect_url: string | null;
|
|
37
37
|
custom_redirect_failure_url: string | null;
|
|
@@ -50,8 +50,8 @@ export declare const connect_webview: z.ZodObject<{
|
|
|
50
50
|
device_selection_mode: "none" | "multiple" | "single";
|
|
51
51
|
accepted_providers: string[];
|
|
52
52
|
accepted_devices: string[];
|
|
53
|
-
any_provider_allowed: boolean;
|
|
54
53
|
any_device_allowed: boolean;
|
|
54
|
+
any_provider_allowed: boolean;
|
|
55
55
|
login_successful: boolean;
|
|
56
56
|
custom_redirect_url: string | null;
|
|
57
57
|
custom_redirect_failure_url: string | null;
|
|
@@ -14,10 +14,17 @@ export const connect_webview = z.object({
|
|
|
14
14
|
device_selection_mode: connect_webview_device_selection_mode,
|
|
15
15
|
// TODO: Use enum value.
|
|
16
16
|
accepted_providers: z.array(z.string()),
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
accepted_devices: z.array(z.string()).describe(`
|
|
18
|
+
---
|
|
19
|
+
deprecated: Unused. Will be removed.
|
|
20
|
+
---
|
|
21
|
+
`),
|
|
22
|
+
any_device_allowed: z.boolean().describe(`
|
|
23
|
+
---
|
|
24
|
+
deprecated: Unused. Will be removed.
|
|
25
|
+
---
|
|
26
|
+
`),
|
|
19
27
|
any_provider_allowed: z.boolean(),
|
|
20
|
-
any_device_allowed: z.boolean(),
|
|
21
28
|
login_successful: z.boolean(),
|
|
22
29
|
status: z.enum(['pending', 'failed', 'authorized']),
|
|
23
30
|
custom_redirect_url: z.string().url().nullable(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connect-webview.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/connect-webviews/connect-webview.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAA;AAEvD,MAAM,CAAC,MAAM,qCAAqC,GAAG,CAAC,CAAC,IAAI,CAAC;IAC1D,MAAM;IACN,QAAQ;IACR,UAAU;CACX,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACrC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAClD,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACrB,qBAAqB,EAAE,qCAAqC;IAE5D,wBAAwB;IACxB,kBAAkB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAEvC,
|
|
1
|
+
{"version":3,"file":"connect-webview.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/connect-webviews/connect-webview.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAA;AAEvD,MAAM,CAAC,MAAM,qCAAqC,GAAG,CAAC,CAAC,IAAI,CAAC;IAC1D,MAAM;IACN,QAAQ;IACR,UAAU;CACX,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACrC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAClD,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACrB,qBAAqB,EAAE,qCAAqC;IAE5D,wBAAwB;IACxB,kBAAkB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAEvC,gBAAgB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAC5C;;;;OAIG,CACJ;IACD,kBAAkB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CACtC;;;;OAIG,CACJ;IAED,oBAAoB,EAAE,CAAC,CAAC,OAAO,EAAE;IACjC,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE;IAC7B,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC;IACnD,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IAChD,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACxD,eAAe;IACf,gCAAgC,EAAE,CAAC,CAAC,OAAO,EAAE;IAC7C,wBAAwB,EAAE,CAAC,CAAC,OAAO,EAAE;IACrC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC/C,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACzC,CAAC,CAAA"}
|
|
@@ -588,6 +588,8 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
588
588
|
product_type: z.ZodString;
|
|
589
589
|
product_model: z.ZodString;
|
|
590
590
|
device_info_model: z.ZodString;
|
|
591
|
+
keypad_uuid: z.ZodOptional<z.ZodString>;
|
|
592
|
+
locker_status_hardlock: z.ZodOptional<z.ZodNumber>;
|
|
591
593
|
}, "strip", z.ZodTypeAny, {
|
|
592
594
|
device_id: string;
|
|
593
595
|
device_name: string;
|
|
@@ -595,6 +597,8 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
595
597
|
product_type: string;
|
|
596
598
|
product_model: string;
|
|
597
599
|
device_info_model: string;
|
|
600
|
+
keypad_uuid?: string | undefined;
|
|
601
|
+
locker_status_hardlock?: number | undefined;
|
|
598
602
|
}, {
|
|
599
603
|
device_id: string;
|
|
600
604
|
device_name: string;
|
|
@@ -602,6 +606,8 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
602
606
|
product_type: string;
|
|
603
607
|
product_model: string;
|
|
604
608
|
device_info_model: string;
|
|
609
|
+
keypad_uuid?: string | undefined;
|
|
610
|
+
locker_status_hardlock?: number | undefined;
|
|
605
611
|
}>>;
|
|
606
612
|
tedee_metadata: z.ZodOptional<z.ZodObject<{
|
|
607
613
|
device_id: z.ZodNumber;
|
|
@@ -803,6 +809,8 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
803
809
|
product_type: string;
|
|
804
810
|
product_model: string;
|
|
805
811
|
device_info_model: string;
|
|
812
|
+
keypad_uuid?: string | undefined;
|
|
813
|
+
locker_status_hardlock?: number | undefined;
|
|
806
814
|
} | undefined;
|
|
807
815
|
tedee_metadata?: {
|
|
808
816
|
device_id: number;
|
|
@@ -988,6 +996,8 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
988
996
|
product_type: string;
|
|
989
997
|
product_model: string;
|
|
990
998
|
device_info_model: string;
|
|
999
|
+
keypad_uuid?: string | undefined;
|
|
1000
|
+
locker_status_hardlock?: number | undefined;
|
|
991
1001
|
} | undefined;
|
|
992
1002
|
tedee_metadata?: {
|
|
993
1003
|
device_id: number;
|
|
@@ -178,6 +178,8 @@ export const device_metadata = z
|
|
|
178
178
|
product_type: z.string(),
|
|
179
179
|
product_model: z.string(),
|
|
180
180
|
device_info_model: z.string(),
|
|
181
|
+
keypad_uuid: z.string().optional(),
|
|
182
|
+
locker_status_hardlock: z.number().optional(),
|
|
181
183
|
}),
|
|
182
184
|
tedee_metadata: z.object({
|
|
183
185
|
device_id: z.number(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device-metadata.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-metadata.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"device-metadata.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-metadata.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,WAAW;IACX,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,WAAW;IACX,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE;IAE1B,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;IACvB,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE;IAC7B,WAAW,EAAE,CAAC,CAAC,OAAO,EAAE;IACxB,SAAS,EAAE,CAAC,CAAC,OAAO,EAAE;IAEtB,uCAAuC,EAAE,CAAC,CAAC,MAAM,EAAE;IACnD,+BAA+B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;CACnD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC;KAC7B,MAAM,CAAC;IACN,eAAe,EAAE,CAAC,CAAC,MAAM,CAAC;QACxB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;QACnB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;QACtB,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;QACvB,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC3C,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC5B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAChC,CAAC;IAEF,sBAAsB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;QACtB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;QACpB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;QACnB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;QACnB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;KACtB,CAAC;IAEF,gBAAgB,EAAE,CAAC,CAAC,MAAM,CAAC;QACzB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACzC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAC7B,CAAC;IAEF,oBAAoB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC7B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC5B,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KACnC,CAAC;IAEF,eAAe,EAAE,CAAC,CAAC,MAAM,CAAC;QACxB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAC7B,CAAC;IAEF,aAAa,EAAE,CAAC,CAAC,MAAM,CAAC;QACtB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;QAC/C,aAAa,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;QACrC,eAAe,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;KACxC,CAAC;IAEF,gBAAgB,EAAE,CAAC,CAAC,MAAM,CAAC;QACzB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;KACzB,CAAC;IAEF,cAAc,EAAE,CAAC,CAAC,MAAM,CAAC;QACvB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;QACnB,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;QAC9B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;QACzB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;QACxB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAC7B,CAAC;IAEF,cAAc,EAAE,CAAC,CAAC,MAAM,CAAC;QACvB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;KACtB,CAAC;IAEF,cAAc,EAAE,CAAC,CAAC,MAAM,CAAC;QACvB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;KACxB,CAAC;IAEF,cAAc,EAAE,CAAC,CAAC,MAAM,CAAC;QACvB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAC7B,CAAC;IAEF,mBAAmB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC5B,YAAY,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,SAAS,CAAC,CAAC;QAC3C,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE;QAC3B,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE;QAC/B,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;KACtB,CAAC;IAEF,cAAc,EAAE,CAAC,CAAC,MAAM,CAAC;QACvB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,oBAAoB,EAAE,CAAC,CAAC,MAAM,CAAC;YAC7B,WAAW,EAAE,CAAC,CAAC,MAAM,CAAC;gBACpB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;gBAChB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;aAClB,CAAC;YACF,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC;gBACd,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;gBAChB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;aAClB,CAAC;YACF,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC;gBACjB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;gBAChB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;aAClB,CAAC;YACF,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC;gBACjB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;gBAChB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;aAClB,CAAC;YACF,eAAe,EAAE,CAAC,CAAC,MAAM,CAAC;gBACxB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;gBAChB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;aAClB,CAAC;SACH,CAAC;KACH,CAAC;IACF,oBAAoB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC7B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE;KACrC,CAAC;IAEF,cAAc,EAAE,CAAC,CAAC,MAAM,CAAC;QACvB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;KACxB,CAAC;IAEF,qBAAqB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC9B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAClC,CAAC;IAEF,eAAe,EAAE,CAAC,CAAC,MAAM,CAAC;QACxB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;QACnB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;KACvB,CAAC;IAEF,oBAAoB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC7B,aAAa,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,UAAU,CAAC,CAAC,CAAC,QAAQ,EAAE;QACxD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;QACtB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;KACjB,CAAC;IAEF,kBAAkB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC3B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAChC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAClC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KACjC,CAAC;IAEF,aAAa,EAAE,CAAC,CAAC,MAAM,CAAC;QACtB,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE;QAC1B,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,gBAAgB;QACzC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,sBAAsB;KAChD,CAAC;IAEF,eAAe,EAAE,CAAC,CAAC,MAAM,CAAC;QACxB,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE;QAC5B,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;KACxB,CAAC;IAEF,0BAA0B,EAAE,CAAC,CAAC,MAAM,CAAC;QACnC,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE;QACvC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;KACxB,CAAC;IAEF,gBAAgB,EAAE,CAAC,CAAC,MAAM,CAAC;QACzB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;KACzB,CAAC;IAEF,0BAA0B,EAAE,CAAC,CAAC,MAAM,CAAC;QACnC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;QACnB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAChC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;QACnB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACpC,qBAAqB,EAAE,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC,QAAQ,EAAE;KACvE,CAAC;IAEF,aAAa,EAAE,CAAC,CAAC,MAAM,CAAC;QACtB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;QACxB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;QACxB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;QACzB,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE;QAC7B,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAClC,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAC9C,CAAC;IAEF,cAAc,EAAE,CAAC,CAAC,MAAM,CAAC;QACvB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;QACzB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;QACxB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;QACvB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KACjC,CAAC;CACH,CAAC;KACD,OAAO,EAAE,CAAA"}
|
|
@@ -949,6 +949,8 @@ export declare const managed_device: z.ZodObject<{
|
|
|
949
949
|
product_type: z.ZodString;
|
|
950
950
|
product_model: z.ZodString;
|
|
951
951
|
device_info_model: z.ZodString;
|
|
952
|
+
keypad_uuid: z.ZodOptional<z.ZodString>;
|
|
953
|
+
locker_status_hardlock: z.ZodOptional<z.ZodNumber>;
|
|
952
954
|
}, "strip", z.ZodTypeAny, {
|
|
953
955
|
device_id: string;
|
|
954
956
|
device_name: string;
|
|
@@ -956,6 +958,8 @@ export declare const managed_device: z.ZodObject<{
|
|
|
956
958
|
product_type: string;
|
|
957
959
|
product_model: string;
|
|
958
960
|
device_info_model: string;
|
|
961
|
+
keypad_uuid?: string | undefined;
|
|
962
|
+
locker_status_hardlock?: number | undefined;
|
|
959
963
|
}, {
|
|
960
964
|
device_id: string;
|
|
961
965
|
device_name: string;
|
|
@@ -963,6 +967,8 @@ export declare const managed_device: z.ZodObject<{
|
|
|
963
967
|
product_type: string;
|
|
964
968
|
product_model: string;
|
|
965
969
|
device_info_model: string;
|
|
970
|
+
keypad_uuid?: string | undefined;
|
|
971
|
+
locker_status_hardlock?: number | undefined;
|
|
966
972
|
}>>;
|
|
967
973
|
tedee_metadata: z.ZodOptional<z.ZodObject<{
|
|
968
974
|
device_id: z.ZodNumber;
|
|
@@ -1164,6 +1170,8 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1164
1170
|
product_type: string;
|
|
1165
1171
|
product_model: string;
|
|
1166
1172
|
device_info_model: string;
|
|
1173
|
+
keypad_uuid?: string | undefined;
|
|
1174
|
+
locker_status_hardlock?: number | undefined;
|
|
1167
1175
|
} | undefined;
|
|
1168
1176
|
tedee_metadata?: {
|
|
1169
1177
|
device_id: number;
|
|
@@ -1349,6 +1357,8 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1349
1357
|
product_type: string;
|
|
1350
1358
|
product_model: string;
|
|
1351
1359
|
device_info_model: string;
|
|
1360
|
+
keypad_uuid?: string | undefined;
|
|
1361
|
+
locker_status_hardlock?: number | undefined;
|
|
1352
1362
|
} | undefined;
|
|
1353
1363
|
tedee_metadata?: {
|
|
1354
1364
|
device_id: number;
|
|
@@ -2416,6 +2426,8 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2416
2426
|
product_type: string;
|
|
2417
2427
|
product_model: string;
|
|
2418
2428
|
device_info_model: string;
|
|
2429
|
+
keypad_uuid?: string | undefined;
|
|
2430
|
+
locker_status_hardlock?: number | undefined;
|
|
2419
2431
|
} | undefined;
|
|
2420
2432
|
tedee_metadata?: {
|
|
2421
2433
|
device_id: number;
|
|
@@ -2839,6 +2851,8 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2839
2851
|
product_type: string;
|
|
2840
2852
|
product_model: string;
|
|
2841
2853
|
device_info_model: string;
|
|
2854
|
+
keypad_uuid?: string | undefined;
|
|
2855
|
+
locker_status_hardlock?: number | undefined;
|
|
2842
2856
|
} | undefined;
|
|
2843
2857
|
tedee_metadata?: {
|
|
2844
2858
|
device_id: number;
|
|
@@ -3291,6 +3305,8 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3291
3305
|
product_type: string;
|
|
3292
3306
|
product_model: string;
|
|
3293
3307
|
device_info_model: string;
|
|
3308
|
+
keypad_uuid?: string | undefined;
|
|
3309
|
+
locker_status_hardlock?: number | undefined;
|
|
3294
3310
|
} | undefined;
|
|
3295
3311
|
tedee_metadata?: {
|
|
3296
3312
|
device_id: number;
|
|
@@ -3714,6 +3730,8 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3714
3730
|
product_type: string;
|
|
3715
3731
|
product_model: string;
|
|
3716
3732
|
device_info_model: string;
|
|
3733
|
+
keypad_uuid?: string | undefined;
|
|
3734
|
+
locker_status_hardlock?: number | undefined;
|
|
3717
3735
|
} | undefined;
|
|
3718
3736
|
tedee_metadata?: {
|
|
3719
3737
|
device_id: number;
|
|
@@ -486,6 +486,7 @@ declare const _default: {
|
|
|
486
486
|
connect_webview: {
|
|
487
487
|
properties: {
|
|
488
488
|
accepted_devices: {
|
|
489
|
+
description: string;
|
|
489
490
|
items: {
|
|
490
491
|
type: string;
|
|
491
492
|
};
|
|
@@ -498,6 +499,7 @@ declare const _default: {
|
|
|
498
499
|
type: string;
|
|
499
500
|
};
|
|
500
501
|
any_device_allowed: {
|
|
502
|
+
description: string;
|
|
501
503
|
type: string;
|
|
502
504
|
};
|
|
503
505
|
any_provider_allowed: {
|
|
@@ -1465,6 +1467,12 @@ declare const _default: {
|
|
|
1465
1467
|
device_name: {
|
|
1466
1468
|
type: string;
|
|
1467
1469
|
};
|
|
1470
|
+
keypad_uuid: {
|
|
1471
|
+
type: string;
|
|
1472
|
+
};
|
|
1473
|
+
locker_status_hardlock: {
|
|
1474
|
+
type: string;
|
|
1475
|
+
};
|
|
1468
1476
|
product_model: {
|
|
1469
1477
|
type: string;
|
|
1470
1478
|
};
|
|
@@ -397,9 +397,16 @@ export default {
|
|
|
397
397
|
},
|
|
398
398
|
connect_webview: {
|
|
399
399
|
properties: {
|
|
400
|
-
accepted_devices: {
|
|
400
|
+
accepted_devices: {
|
|
401
|
+
description: '\n ---\n deprecated: Unused. Will be removed.\n ---\n ',
|
|
402
|
+
items: { type: 'string' },
|
|
403
|
+
type: 'array',
|
|
404
|
+
},
|
|
401
405
|
accepted_providers: { items: { type: 'string' }, type: 'array' },
|
|
402
|
-
any_device_allowed: {
|
|
406
|
+
any_device_allowed: {
|
|
407
|
+
description: '\n ---\n deprecated: Unused. Will be removed.\n ---\n ',
|
|
408
|
+
type: 'boolean',
|
|
409
|
+
},
|
|
403
410
|
any_provider_allowed: { type: 'boolean' },
|
|
404
411
|
authorized_at: {
|
|
405
412
|
format: 'date-time',
|
|
@@ -450,8 +457,8 @@ export default {
|
|
|
450
457
|
'device_selection_mode',
|
|
451
458
|
'accepted_providers',
|
|
452
459
|
'accepted_devices',
|
|
453
|
-
'any_provider_allowed',
|
|
454
460
|
'any_device_allowed',
|
|
461
|
+
'any_provider_allowed',
|
|
455
462
|
'login_successful',
|
|
456
463
|
'status',
|
|
457
464
|
'custom_redirect_url',
|
|
@@ -1196,6 +1203,8 @@ export default {
|
|
|
1196
1203
|
device_id: { type: 'string' },
|
|
1197
1204
|
device_info_model: { type: 'string' },
|
|
1198
1205
|
device_name: { type: 'string' },
|
|
1206
|
+
keypad_uuid: { type: 'string' },
|
|
1207
|
+
locker_status_hardlock: { type: 'number' },
|
|
1199
1208
|
product_model: { type: 'string' },
|
|
1200
1209
|
product_name: { type: 'string' },
|
|
1201
1210
|
product_type: { type: 'string' },
|