@seamapi/types 1.134.0 → 1.136.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 +3 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +23 -0
- package/lib/seam/connect/openapi.d.ts +9 -0
- package/lib/seam/connect/openapi.js +3 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +3 -0
- package/src/lib/seam/connect/route-types.ts +14 -0
package/dist/connect.d.cts
CHANGED
|
@@ -734,6 +734,9 @@ declare const _default: {
|
|
|
734
734
|
can_program_online_access_codes: {
|
|
735
735
|
type: string;
|
|
736
736
|
};
|
|
737
|
+
can_remotely_lock: {
|
|
738
|
+
type: string;
|
|
739
|
+
};
|
|
737
740
|
can_remotely_unlock: {
|
|
738
741
|
type: string;
|
|
739
742
|
};
|
|
@@ -2359,6 +2362,9 @@ declare const _default: {
|
|
|
2359
2362
|
can_program_online_access_codes: {
|
|
2360
2363
|
type: string;
|
|
2361
2364
|
};
|
|
2365
|
+
can_remotely_lock: {
|
|
2366
|
+
type: string;
|
|
2367
|
+
};
|
|
2362
2368
|
can_remotely_unlock: {
|
|
2363
2369
|
type: string;
|
|
2364
2370
|
};
|
|
@@ -2589,6 +2595,9 @@ declare const _default: {
|
|
|
2589
2595
|
can_program_online_access_codes: {
|
|
2590
2596
|
type: string;
|
|
2591
2597
|
};
|
|
2598
|
+
can_remotely_lock: {
|
|
2599
|
+
type: string;
|
|
2600
|
+
};
|
|
2592
2601
|
can_remotely_unlock: {
|
|
2593
2602
|
type: string;
|
|
2594
2603
|
};
|
|
@@ -18676,6 +18685,7 @@ interface Routes {
|
|
|
18676
18685
|
client_session_id: string;
|
|
18677
18686
|
user_identifier_key: string | null;
|
|
18678
18687
|
created_at: string;
|
|
18688
|
+
token: string;
|
|
18679
18689
|
device_count: number;
|
|
18680
18690
|
connected_account_ids: string[];
|
|
18681
18691
|
connect_webview_ids: string[];
|
|
@@ -19425,6 +19435,7 @@ interface Routes {
|
|
|
19425
19435
|
is_managed: true;
|
|
19426
19436
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
19427
19437
|
can_remotely_unlock?: boolean | undefined;
|
|
19438
|
+
can_remotely_lock?: boolean | undefined;
|
|
19428
19439
|
can_program_online_access_codes?: boolean | undefined;
|
|
19429
19440
|
};
|
|
19430
19441
|
};
|
|
@@ -19923,6 +19934,7 @@ interface Routes {
|
|
|
19923
19934
|
is_managed: true;
|
|
19924
19935
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
19925
19936
|
can_remotely_unlock?: boolean | undefined;
|
|
19937
|
+
can_remotely_lock?: boolean | undefined;
|
|
19926
19938
|
can_program_online_access_codes?: boolean | undefined;
|
|
19927
19939
|
}>;
|
|
19928
19940
|
};
|
|
@@ -20016,6 +20028,7 @@ interface Routes {
|
|
|
20016
20028
|
};
|
|
20017
20029
|
};
|
|
20018
20030
|
can_remotely_unlock?: boolean | undefined;
|
|
20031
|
+
can_remotely_lock?: boolean | undefined;
|
|
20019
20032
|
can_program_online_access_codes?: boolean | undefined;
|
|
20020
20033
|
};
|
|
20021
20034
|
};
|
|
@@ -20101,6 +20114,7 @@ interface Routes {
|
|
|
20101
20114
|
};
|
|
20102
20115
|
};
|
|
20103
20116
|
can_remotely_unlock?: boolean | undefined;
|
|
20117
|
+
can_remotely_lock?: boolean | undefined;
|
|
20104
20118
|
can_program_online_access_codes?: boolean | undefined;
|
|
20105
20119
|
}>;
|
|
20106
20120
|
};
|
|
@@ -20744,6 +20758,7 @@ interface Routes {
|
|
|
20744
20758
|
is_managed: true;
|
|
20745
20759
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
20746
20760
|
can_remotely_unlock?: boolean | undefined;
|
|
20761
|
+
can_remotely_lock?: boolean | undefined;
|
|
20747
20762
|
can_program_online_access_codes?: boolean | undefined;
|
|
20748
20763
|
};
|
|
20749
20764
|
device: {
|
|
@@ -21219,6 +21234,7 @@ interface Routes {
|
|
|
21219
21234
|
is_managed: true;
|
|
21220
21235
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
21221
21236
|
can_remotely_unlock?: boolean | undefined;
|
|
21237
|
+
can_remotely_lock?: boolean | undefined;
|
|
21222
21238
|
can_program_online_access_codes?: boolean | undefined;
|
|
21223
21239
|
};
|
|
21224
21240
|
};
|
|
@@ -21717,6 +21733,7 @@ interface Routes {
|
|
|
21717
21733
|
is_managed: true;
|
|
21718
21734
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
21719
21735
|
can_remotely_unlock?: boolean | undefined;
|
|
21736
|
+
can_remotely_lock?: boolean | undefined;
|
|
21720
21737
|
can_program_online_access_codes?: boolean | undefined;
|
|
21721
21738
|
}>;
|
|
21722
21739
|
devices: Array<{
|
|
@@ -22192,6 +22209,7 @@ interface Routes {
|
|
|
22192
22209
|
is_managed: true;
|
|
22193
22210
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
22194
22211
|
can_remotely_unlock?: boolean | undefined;
|
|
22212
|
+
can_remotely_lock?: boolean | undefined;
|
|
22195
22213
|
can_program_online_access_codes?: boolean | undefined;
|
|
22196
22214
|
}>;
|
|
22197
22215
|
};
|
|
@@ -22545,6 +22563,7 @@ interface Routes {
|
|
|
22545
22563
|
is_managed: true;
|
|
22546
22564
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
22547
22565
|
can_remotely_unlock?: boolean | undefined;
|
|
22566
|
+
can_remotely_lock?: boolean | undefined;
|
|
22548
22567
|
can_program_online_access_codes?: boolean | undefined;
|
|
22549
22568
|
}>;
|
|
22550
22569
|
};
|
|
@@ -22618,6 +22637,7 @@ interface Routes {
|
|
|
22618
22637
|
is_managed: true;
|
|
22619
22638
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
22620
22639
|
can_remotely_unlock?: boolean | undefined;
|
|
22640
|
+
can_remotely_lock?: boolean | undefined;
|
|
22621
22641
|
can_program_online_access_codes?: boolean | undefined;
|
|
22622
22642
|
};
|
|
22623
22643
|
};
|
|
@@ -23304,6 +23324,7 @@ interface Routes {
|
|
|
23304
23324
|
is_managed: true;
|
|
23305
23325
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
23306
23326
|
can_remotely_unlock?: boolean | undefined;
|
|
23327
|
+
can_remotely_lock?: boolean | undefined;
|
|
23307
23328
|
can_program_online_access_codes?: boolean | undefined;
|
|
23308
23329
|
};
|
|
23309
23330
|
};
|
|
@@ -23878,6 +23899,7 @@ interface Routes {
|
|
|
23878
23899
|
is_managed: true;
|
|
23879
23900
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
23880
23901
|
can_remotely_unlock?: boolean | undefined;
|
|
23902
|
+
can_remotely_lock?: boolean | undefined;
|
|
23881
23903
|
can_program_online_access_codes?: boolean | undefined;
|
|
23882
23904
|
}>;
|
|
23883
23905
|
};
|
|
@@ -24637,6 +24659,7 @@ interface Routes {
|
|
|
24637
24659
|
is_managed: true;
|
|
24638
24660
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
24639
24661
|
can_remotely_unlock?: boolean | undefined;
|
|
24662
|
+
can_remotely_lock?: boolean | undefined;
|
|
24640
24663
|
can_program_online_access_codes?: boolean | undefined;
|
|
24641
24664
|
}>;
|
|
24642
24665
|
};
|
|
@@ -660,6 +660,9 @@ declare const _default: {
|
|
|
660
660
|
can_program_online_access_codes: {
|
|
661
661
|
type: string;
|
|
662
662
|
};
|
|
663
|
+
can_remotely_lock: {
|
|
664
|
+
type: string;
|
|
665
|
+
};
|
|
663
666
|
can_remotely_unlock: {
|
|
664
667
|
type: string;
|
|
665
668
|
};
|
|
@@ -2285,6 +2288,9 @@ declare const _default: {
|
|
|
2285
2288
|
can_program_online_access_codes: {
|
|
2286
2289
|
type: string;
|
|
2287
2290
|
};
|
|
2291
|
+
can_remotely_lock: {
|
|
2292
|
+
type: string;
|
|
2293
|
+
};
|
|
2288
2294
|
can_remotely_unlock: {
|
|
2289
2295
|
type: string;
|
|
2290
2296
|
};
|
|
@@ -2515,6 +2521,9 @@ declare const _default: {
|
|
|
2515
2521
|
can_program_online_access_codes: {
|
|
2516
2522
|
type: string;
|
|
2517
2523
|
};
|
|
2524
|
+
can_remotely_lock: {
|
|
2525
|
+
type: string;
|
|
2526
|
+
};
|
|
2518
2527
|
can_remotely_unlock: {
|
|
2519
2528
|
type: string;
|
|
2520
2529
|
};
|
|
@@ -505,6 +505,7 @@ export default {
|
|
|
505
505
|
device: {
|
|
506
506
|
properties: {
|
|
507
507
|
can_program_online_access_codes: { type: 'boolean' },
|
|
508
|
+
can_remotely_lock: { type: 'boolean' },
|
|
508
509
|
can_remotely_unlock: { type: 'boolean' },
|
|
509
510
|
capabilities_supported: {
|
|
510
511
|
description: 'Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
|
|
@@ -1829,6 +1830,7 @@ export default {
|
|
|
1829
1830
|
phone: {
|
|
1830
1831
|
properties: {
|
|
1831
1832
|
can_program_online_access_codes: { type: 'boolean' },
|
|
1833
|
+
can_remotely_lock: { type: 'boolean' },
|
|
1832
1834
|
can_remotely_unlock: { type: 'boolean' },
|
|
1833
1835
|
capabilities_supported: {
|
|
1834
1836
|
description: 'Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
|
|
@@ -2042,6 +2044,7 @@ export default {
|
|
|
2042
2044
|
unmanaged_device: {
|
|
2043
2045
|
properties: {
|
|
2044
2046
|
can_program_online_access_codes: { type: 'boolean' },
|
|
2047
|
+
can_remotely_lock: { type: 'boolean' },
|
|
2045
2048
|
can_remotely_unlock: { type: 'boolean' },
|
|
2046
2049
|
capabilities_supported: {
|
|
2047
2050
|
description: 'Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
|