@seamapi/types 1.140.0 → 1.141.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 +13 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +56 -24
- package/lib/seam/connect/index.d.ts +2 -2
- package/lib/seam/connect/index.js +2 -2
- package/lib/seam/connect/index.js.map +1 -1
- package/lib/seam/connect/model-types.js.map +1 -0
- package/lib/seam/connect/models/connect-webview.js.map +1 -0
- package/lib/seam/connect/models/custom-metadata.js.map +1 -0
- package/lib/seam/connect/models/index.js.map +1 -0
- package/lib/seam/connect/openapi.d.ts +43 -24
- package/lib/seam/connect/openapi.js +11 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +13 -0
- package/lib/seam/connect/schemas.js.map +1 -0
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +22 -0
- package/lib/seam/connect/unstable/models/devices/managed-device.js +5 -2
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/phone.d.ts +3 -0
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +3 -0
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.js +2 -3
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/index.ts +2 -2
- package/src/lib/seam/connect/openapi.ts +11 -6
- package/src/lib/seam/connect/route-types.ts +13 -0
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +7 -2
- package/src/lib/seam/connect/unstable/models/devices/unmanaged-device.ts +6 -4
- package/lib/seam/connect/stable/model-types.js.map +0 -1
- package/lib/seam/connect/stable/models/connect-webview.js.map +0 -1
- package/lib/seam/connect/stable/models/custom-metadata.js.map +0 -1
- package/lib/seam/connect/stable/models/index.js.map +0 -1
- package/lib/seam/connect/stable/schemas.js.map +0 -1
- /package/lib/seam/connect/{stable/model-types.d.ts → model-types.d.ts} +0 -0
- /package/lib/seam/connect/{stable/model-types.js → model-types.js} +0 -0
- /package/lib/seam/connect/{stable/models → models}/connect-webview.d.ts +0 -0
- /package/lib/seam/connect/{stable/models → models}/connect-webview.js +0 -0
- /package/lib/seam/connect/{stable/models → models}/custom-metadata.d.ts +0 -0
- /package/lib/seam/connect/{stable/models → models}/custom-metadata.js +0 -0
- /package/lib/seam/connect/{stable/models → models}/index.d.ts +0 -0
- /package/lib/seam/connect/{stable/models → models}/index.js +0 -0
- /package/lib/seam/connect/{stable/schemas.d.ts → schemas.d.ts} +0 -0
- /package/lib/seam/connect/{stable/schemas.js → schemas.js} +0 -0
- /package/src/lib/seam/connect/{stable/model-types.ts → model-types.ts} +0 -0
- /package/src/lib/seam/connect/{stable/models → models}/connect-webview.ts +0 -0
- /package/src/lib/seam/connect/{stable/models → models}/custom-metadata.ts +0 -0
- /package/src/lib/seam/connect/{stable/models → models}/index.ts +0 -0
- /package/src/lib/seam/connect/{stable/schemas.ts → schemas.ts} +0 -0
|
@@ -2437,6 +2437,7 @@ export interface Routes {
|
|
|
2437
2437
|
can_remotely_unlock?: boolean | undefined;
|
|
2438
2438
|
can_remotely_lock?: boolean | undefined;
|
|
2439
2439
|
can_program_online_access_codes?: boolean | undefined;
|
|
2440
|
+
can_simulate_removal?: boolean | undefined;
|
|
2440
2441
|
};
|
|
2441
2442
|
};
|
|
2442
2443
|
};
|
|
@@ -2945,6 +2946,7 @@ export interface Routes {
|
|
|
2945
2946
|
can_remotely_unlock?: boolean | undefined;
|
|
2946
2947
|
can_remotely_lock?: boolean | undefined;
|
|
2947
2948
|
can_program_online_access_codes?: boolean | undefined;
|
|
2949
|
+
can_simulate_removal?: boolean | undefined;
|
|
2948
2950
|
}>;
|
|
2949
2951
|
};
|
|
2950
2952
|
};
|
|
@@ -3054,6 +3056,7 @@ export interface Routes {
|
|
|
3054
3056
|
can_remotely_unlock?: boolean | undefined;
|
|
3055
3057
|
can_remotely_lock?: boolean | undefined;
|
|
3056
3058
|
can_program_online_access_codes?: boolean | undefined;
|
|
3059
|
+
can_simulate_removal?: boolean | undefined;
|
|
3057
3060
|
};
|
|
3058
3061
|
};
|
|
3059
3062
|
};
|
|
@@ -3144,6 +3147,7 @@ export interface Routes {
|
|
|
3144
3147
|
can_remotely_unlock?: boolean | undefined;
|
|
3145
3148
|
can_remotely_lock?: boolean | undefined;
|
|
3146
3149
|
can_program_online_access_codes?: boolean | undefined;
|
|
3150
|
+
can_simulate_removal?: boolean | undefined;
|
|
3147
3151
|
}>;
|
|
3148
3152
|
};
|
|
3149
3153
|
};
|
|
@@ -3797,6 +3801,7 @@ export interface Routes {
|
|
|
3797
3801
|
can_remotely_unlock?: boolean | undefined;
|
|
3798
3802
|
can_remotely_lock?: boolean | undefined;
|
|
3799
3803
|
can_program_online_access_codes?: boolean | undefined;
|
|
3804
|
+
can_simulate_removal?: boolean | undefined;
|
|
3800
3805
|
};
|
|
3801
3806
|
device: {
|
|
3802
3807
|
/** Unique identifier for the device. */
|
|
@@ -4282,6 +4287,7 @@ export interface Routes {
|
|
|
4282
4287
|
can_remotely_unlock?: boolean | undefined;
|
|
4283
4288
|
can_remotely_lock?: boolean | undefined;
|
|
4284
4289
|
can_program_online_access_codes?: boolean | undefined;
|
|
4290
|
+
can_simulate_removal?: boolean | undefined;
|
|
4285
4291
|
};
|
|
4286
4292
|
};
|
|
4287
4293
|
};
|
|
@@ -4790,6 +4796,7 @@ export interface Routes {
|
|
|
4790
4796
|
can_remotely_unlock?: boolean | undefined;
|
|
4791
4797
|
can_remotely_lock?: boolean | undefined;
|
|
4792
4798
|
can_program_online_access_codes?: boolean | undefined;
|
|
4799
|
+
can_simulate_removal?: boolean | undefined;
|
|
4793
4800
|
}>;
|
|
4794
4801
|
devices: Array<{
|
|
4795
4802
|
/** Unique identifier for the device. */
|
|
@@ -5275,6 +5282,7 @@ export interface Routes {
|
|
|
5275
5282
|
can_remotely_unlock?: boolean | undefined;
|
|
5276
5283
|
can_remotely_lock?: boolean | undefined;
|
|
5277
5284
|
can_program_online_access_codes?: boolean | undefined;
|
|
5285
|
+
can_simulate_removal?: boolean | undefined;
|
|
5278
5286
|
}>;
|
|
5279
5287
|
};
|
|
5280
5288
|
};
|
|
@@ -5629,6 +5637,7 @@ export interface Routes {
|
|
|
5629
5637
|
can_remotely_unlock?: boolean | undefined;
|
|
5630
5638
|
can_remotely_lock?: boolean | undefined;
|
|
5631
5639
|
can_program_online_access_codes?: boolean | undefined;
|
|
5640
|
+
can_simulate_removal?: boolean | undefined;
|
|
5632
5641
|
}>;
|
|
5633
5642
|
};
|
|
5634
5643
|
};
|
|
@@ -5703,6 +5712,7 @@ export interface Routes {
|
|
|
5703
5712
|
can_remotely_unlock?: boolean | undefined;
|
|
5704
5713
|
can_remotely_lock?: boolean | undefined;
|
|
5705
5714
|
can_program_online_access_codes?: boolean | undefined;
|
|
5715
|
+
can_simulate_removal?: boolean | undefined;
|
|
5706
5716
|
};
|
|
5707
5717
|
};
|
|
5708
5718
|
};
|
|
@@ -6399,6 +6409,7 @@ export interface Routes {
|
|
|
6399
6409
|
can_remotely_unlock?: boolean | undefined;
|
|
6400
6410
|
can_remotely_lock?: boolean | undefined;
|
|
6401
6411
|
can_program_online_access_codes?: boolean | undefined;
|
|
6412
|
+
can_simulate_removal?: boolean | undefined;
|
|
6402
6413
|
};
|
|
6403
6414
|
};
|
|
6404
6415
|
};
|
|
@@ -6983,6 +6994,7 @@ export interface Routes {
|
|
|
6983
6994
|
can_remotely_unlock?: boolean | undefined;
|
|
6984
6995
|
can_remotely_lock?: boolean | undefined;
|
|
6985
6996
|
can_program_online_access_codes?: boolean | undefined;
|
|
6997
|
+
can_simulate_removal?: boolean | undefined;
|
|
6986
6998
|
}>;
|
|
6987
6999
|
};
|
|
6988
7000
|
};
|
|
@@ -7752,6 +7764,7 @@ export interface Routes {
|
|
|
7752
7764
|
can_remotely_unlock?: boolean | undefined;
|
|
7753
7765
|
can_remotely_lock?: boolean | undefined;
|
|
7754
7766
|
can_program_online_access_codes?: boolean | undefined;
|
|
7767
|
+
can_simulate_removal?: boolean | undefined;
|
|
7755
7768
|
}>;
|
|
7756
7769
|
};
|
|
7757
7770
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../src/lib/seam/connect/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA"}
|
|
@@ -1,6 +1,25 @@
|
|
|
1
1
|
import type { SetRequired, Simplify } from 'type-fest';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { device_metadata } from './device-metadata.js';
|
|
4
|
+
export declare const device_capability_flags: z.ZodObject<{
|
|
5
|
+
can_remotely_unlock: z.ZodOptional<z.ZodBoolean>;
|
|
6
|
+
can_remotely_lock: z.ZodOptional<z.ZodBoolean>;
|
|
7
|
+
can_program_offline_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
8
|
+
can_program_online_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
9
|
+
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
10
|
+
}, "strip", z.ZodTypeAny, {
|
|
11
|
+
can_remotely_unlock?: boolean | undefined;
|
|
12
|
+
can_remotely_lock?: boolean | undefined;
|
|
13
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
14
|
+
can_program_online_access_codes?: boolean | undefined;
|
|
15
|
+
can_simulate_removal?: boolean | undefined;
|
|
16
|
+
}, {
|
|
17
|
+
can_remotely_unlock?: boolean | undefined;
|
|
18
|
+
can_remotely_lock?: boolean | undefined;
|
|
19
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
20
|
+
can_program_online_access_codes?: boolean | undefined;
|
|
21
|
+
can_simulate_removal?: boolean | undefined;
|
|
22
|
+
}>;
|
|
4
23
|
export declare const battery_status: z.ZodEnum<["critical", "low", "good", "full"]>;
|
|
5
24
|
export type BatteryStatus = z.infer<typeof battery_status>;
|
|
6
25
|
export declare const common_device_properties: z.ZodObject<{
|
|
@@ -2100,6 +2119,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2100
2119
|
can_remotely_lock: z.ZodOptional<z.ZodBoolean>;
|
|
2101
2120
|
can_program_offline_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
2102
2121
|
can_program_online_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
2122
|
+
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
2103
2123
|
}, "strip", z.ZodTypeAny, {
|
|
2104
2124
|
location: {
|
|
2105
2125
|
location_name?: string | undefined;
|
|
@@ -2960,6 +2980,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2960
2980
|
can_remotely_lock?: boolean | undefined;
|
|
2961
2981
|
can_program_offline_access_codes?: boolean | undefined;
|
|
2962
2982
|
can_program_online_access_codes?: boolean | undefined;
|
|
2983
|
+
can_simulate_removal?: boolean | undefined;
|
|
2963
2984
|
}, {
|
|
2964
2985
|
location: {
|
|
2965
2986
|
location_name?: string | undefined;
|
|
@@ -3820,6 +3841,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3820
3841
|
can_remotely_lock?: boolean | undefined;
|
|
3821
3842
|
can_program_offline_access_codes?: boolean | undefined;
|
|
3822
3843
|
can_program_online_access_codes?: boolean | undefined;
|
|
3844
|
+
can_simulate_removal?: boolean | undefined;
|
|
3823
3845
|
}>;
|
|
3824
3846
|
export type ManagedDevice = z.infer<typeof managed_device>;
|
|
3825
3847
|
export type ManagedDeviceWithBackendMetadata<MetadataKey extends keyof z.infer<typeof device_metadata>> = Simplify<ManagedDevice & {
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { schemas as devicedb_schemas } from '../../../../../../devicedb.js';
|
|
3
|
-
import { custom_metadata } from '../../../
|
|
3
|
+
import { custom_metadata } from '../../../models/custom-metadata.js';
|
|
4
4
|
import { capability_properties } from '../capability-properties/index.js';
|
|
5
5
|
import { capabilities } from './capabilities-supported.js';
|
|
6
6
|
import { device_metadata } from './device-metadata.js';
|
|
7
7
|
import { any_device_type } from './device-type.js';
|
|
8
8
|
import { phone_specific_properties } from './phone-properties.js';
|
|
9
|
+
export const device_capability_flags = devicedb_schemas.device_capability_flags.extend({
|
|
10
|
+
can_simulate_removal: z.boolean().optional(),
|
|
11
|
+
});
|
|
9
12
|
export const battery_status = z.enum(['critical', 'low', 'good', 'full']);
|
|
10
13
|
export const common_device_properties = z.object({
|
|
11
14
|
online: z.boolean().describe('Indicates whether the device is online.'),
|
|
@@ -156,5 +159,5 @@ export const managed_device = z
|
|
|
156
159
|
.describe('Indicates whether Seam manages the device.'),
|
|
157
160
|
custom_metadata: custom_metadata.optional(),
|
|
158
161
|
})
|
|
159
|
-
.merge(
|
|
162
|
+
.merge(device_capability_flags);
|
|
160
163
|
//# sourceMappingURL=managed-device.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"managed-device.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/managed-device.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,yBAAyB,CAAA;AAErE,OAAO,EAAE,eAAe,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"managed-device.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/managed-device.ts"],"names":[],"mappings":"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"}
|
|
@@ -43,6 +43,7 @@ export declare const phone: z.ZodObject<{
|
|
|
43
43
|
can_remotely_lock: z.ZodOptional<z.ZodBoolean>;
|
|
44
44
|
can_program_offline_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
45
45
|
can_program_online_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
46
|
+
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
46
47
|
nickname: z.ZodOptional<z.ZodString>;
|
|
47
48
|
properties: z.ZodObject<{
|
|
48
49
|
assa_abloy_credential_service_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -121,6 +122,7 @@ export declare const phone: z.ZodObject<{
|
|
|
121
122
|
can_remotely_lock?: boolean | undefined;
|
|
122
123
|
can_program_offline_access_codes?: boolean | undefined;
|
|
123
124
|
can_program_online_access_codes?: boolean | undefined;
|
|
125
|
+
can_simulate_removal?: boolean | undefined;
|
|
124
126
|
nickname?: string | undefined;
|
|
125
127
|
}, {
|
|
126
128
|
location: {
|
|
@@ -156,5 +158,6 @@ export declare const phone: z.ZodObject<{
|
|
|
156
158
|
can_remotely_lock?: boolean | undefined;
|
|
157
159
|
can_program_offline_access_codes?: boolean | undefined;
|
|
158
160
|
can_program_online_access_codes?: boolean | undefined;
|
|
161
|
+
can_simulate_removal?: boolean | undefined;
|
|
159
162
|
nickname?: string | undefined;
|
|
160
163
|
}>;
|
|
@@ -138,6 +138,7 @@ export declare const unmanaged_device: z.ZodObject<{
|
|
|
138
138
|
can_remotely_lock: z.ZodOptional<z.ZodBoolean>;
|
|
139
139
|
can_program_offline_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
140
140
|
can_program_online_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
141
|
+
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
141
142
|
}, "strip", z.ZodTypeAny, {
|
|
142
143
|
connected_account_id: string;
|
|
143
144
|
workspace_id: string;
|
|
@@ -181,6 +182,7 @@ export declare const unmanaged_device: z.ZodObject<{
|
|
|
181
182
|
can_remotely_lock?: boolean | undefined;
|
|
182
183
|
can_program_offline_access_codes?: boolean | undefined;
|
|
183
184
|
can_program_online_access_codes?: boolean | undefined;
|
|
185
|
+
can_simulate_removal?: boolean | undefined;
|
|
184
186
|
}, {
|
|
185
187
|
connected_account_id: string;
|
|
186
188
|
workspace_id: string;
|
|
@@ -224,5 +226,6 @@ export declare const unmanaged_device: z.ZodObject<{
|
|
|
224
226
|
can_remotely_lock?: boolean | undefined;
|
|
225
227
|
can_program_offline_access_codes?: boolean | undefined;
|
|
226
228
|
can_program_online_access_codes?: boolean | undefined;
|
|
229
|
+
can_simulate_removal?: boolean | undefined;
|
|
227
230
|
}>;
|
|
228
231
|
export type UnmanagedDevice = z.infer<typeof unmanaged_device>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import {
|
|
3
|
-
import { common_device_properties, managed_device } from './managed-device.js';
|
|
2
|
+
import { common_device_properties, device_capability_flags, managed_device, } from './managed-device.js';
|
|
4
3
|
export const unmanaged_device = managed_device
|
|
5
4
|
.pick({
|
|
6
5
|
device_id: true,
|
|
@@ -27,5 +26,5 @@ export const unmanaged_device = managed_device
|
|
|
27
26
|
model: true,
|
|
28
27
|
}),
|
|
29
28
|
})
|
|
30
|
-
.merge(
|
|
29
|
+
.merge(device_capability_flags);
|
|
31
30
|
//# sourceMappingURL=unmanaged-device.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"unmanaged-device.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/unmanaged-device.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,
|
|
1
|
+
{"version":3,"file":"unmanaged-device.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/unmanaged-device.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,wBAAwB,EACxB,uBAAuB,EACvB,cAAc,GACf,MAAM,qBAAqB,CAAA;AAE5B,MAAM,CAAC,MAAM,gBAAgB,GAAG,cAAc;KAC3C,IAAI,CAAC;IACJ,SAAS,EAAE,IAAI;IACf,WAAW,EAAE,IAAI;IACjB,oBAAoB,EAAE,IAAI;IAC1B,sBAAsB,EAAE,IAAI;IAC5B,YAAY,EAAE,IAAI;IAClB,MAAM,EAAE,IAAI;IACZ,QAAQ,EAAE,IAAI;IACd,UAAU,EAAE,IAAI;CACjB,CAAC;KACD,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;IAC5B,UAAU,EAAE,wBAAwB,CAAC,IAAI,CAAC;QACxC,IAAI,EAAE,IAAI;QACV,MAAM,EAAE,IAAI;QACZ,YAAY,EAAE,IAAI;QAClB,SAAS,EAAE,IAAI;QACf,cAAc,EAAE,IAAI;QACpB,aAAa,EAAE,IAAI;QACnB,OAAO,EAAE,IAAI;QACb,2BAA2B,EAAE,IAAI;QACjC,4BAA4B,EAAE,IAAI;QAClC,KAAK,EAAE,IAAI;KACZ,CAAC;CACH,CAAC;KACD,KAAK,CAAC,uBAAuB,CAAC,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as schemas from './
|
|
1
|
+
import * as schemas from './schemas.js'
|
|
2
2
|
|
|
3
3
|
export { schemas }
|
|
4
4
|
|
|
5
|
+
export * from './model-types.js'
|
|
5
6
|
export { default as openapi } from './openapi.js'
|
|
6
7
|
export * from './route-types.js'
|
|
7
|
-
export * from './stable/model-types.js'
|
|
8
8
|
|
|
9
9
|
// UPSTREAM: Reserve this named export until nextlove is able to generate this.
|
|
10
10
|
export const routes = {}
|
|
@@ -525,6 +525,7 @@ export default {
|
|
|
525
525
|
can_program_online_access_codes: { type: 'boolean' },
|
|
526
526
|
can_remotely_lock: { type: 'boolean' },
|
|
527
527
|
can_remotely_unlock: { type: 'boolean' },
|
|
528
|
+
can_simulate_removal: { type: 'boolean' },
|
|
528
529
|
capabilities_supported: {
|
|
529
530
|
description:
|
|
530
531
|
'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.',
|
|
@@ -1900,6 +1901,7 @@ export default {
|
|
|
1900
1901
|
can_program_online_access_codes: { type: 'boolean' },
|
|
1901
1902
|
can_remotely_lock: { type: 'boolean' },
|
|
1902
1903
|
can_remotely_unlock: { type: 'boolean' },
|
|
1904
|
+
can_simulate_removal: { type: 'boolean' },
|
|
1903
1905
|
capabilities_supported: {
|
|
1904
1906
|
description:
|
|
1905
1907
|
'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.',
|
|
@@ -2129,6 +2131,7 @@ export default {
|
|
|
2129
2131
|
can_program_online_access_codes: { type: 'boolean' },
|
|
2130
2132
|
can_remotely_lock: { type: 'boolean' },
|
|
2131
2133
|
can_remotely_unlock: { type: 'boolean' },
|
|
2134
|
+
can_simulate_removal: { type: 'boolean' },
|
|
2132
2135
|
capabilities_supported: {
|
|
2133
2136
|
description:
|
|
2134
2137
|
'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.',
|
|
@@ -7744,9 +7747,10 @@ export default {
|
|
|
7744
7747
|
401: { description: 'Unauthorized' },
|
|
7745
7748
|
},
|
|
7746
7749
|
security: [
|
|
7747
|
-
{
|
|
7748
|
-
{
|
|
7749
|
-
{
|
|
7750
|
+
{ client_session: [] },
|
|
7751
|
+
{ pat_with_workspace: [] },
|
|
7752
|
+
{ console_session: [] },
|
|
7753
|
+
{ api_key: [] },
|
|
7750
7754
|
],
|
|
7751
7755
|
summary: '/devices/get',
|
|
7752
7756
|
tags: ['/devices'],
|
|
@@ -9049,9 +9053,10 @@ export default {
|
|
|
9049
9053
|
401: { description: 'Unauthorized' },
|
|
9050
9054
|
},
|
|
9051
9055
|
security: [
|
|
9052
|
-
{
|
|
9053
|
-
{
|
|
9054
|
-
{
|
|
9056
|
+
{ client_session: [] },
|
|
9057
|
+
{ pat_with_workspace: [] },
|
|
9058
|
+
{ console_session: [] },
|
|
9059
|
+
{ api_key: [] },
|
|
9055
9060
|
],
|
|
9056
9061
|
summary: '/locks/get',
|
|
9057
9062
|
tags: ['/locks'],
|
|
@@ -2910,6 +2910,7 @@ export interface Routes {
|
|
|
2910
2910
|
can_remotely_unlock?: boolean | undefined
|
|
2911
2911
|
can_remotely_lock?: boolean | undefined
|
|
2912
2912
|
can_program_online_access_codes?: boolean | undefined
|
|
2913
|
+
can_simulate_removal?: boolean | undefined
|
|
2913
2914
|
}
|
|
2914
2915
|
}
|
|
2915
2916
|
}
|
|
@@ -3748,6 +3749,7 @@ export interface Routes {
|
|
|
3748
3749
|
can_remotely_unlock?: boolean | undefined
|
|
3749
3750
|
can_remotely_lock?: boolean | undefined
|
|
3750
3751
|
can_program_online_access_codes?: boolean | undefined
|
|
3752
|
+
can_simulate_removal?: boolean | undefined
|
|
3751
3753
|
}>
|
|
3752
3754
|
}
|
|
3753
3755
|
}
|
|
@@ -3952,6 +3954,7 @@ export interface Routes {
|
|
|
3952
3954
|
can_remotely_unlock?: boolean | undefined
|
|
3953
3955
|
can_remotely_lock?: boolean | undefined
|
|
3954
3956
|
can_program_online_access_codes?: boolean | undefined
|
|
3957
|
+
can_simulate_removal?: boolean | undefined
|
|
3955
3958
|
}
|
|
3956
3959
|
}
|
|
3957
3960
|
}
|
|
@@ -4199,6 +4202,7 @@ export interface Routes {
|
|
|
4199
4202
|
can_remotely_unlock?: boolean | undefined
|
|
4200
4203
|
can_remotely_lock?: boolean | undefined
|
|
4201
4204
|
can_program_online_access_codes?: boolean | undefined
|
|
4205
|
+
can_simulate_removal?: boolean | undefined
|
|
4202
4206
|
}>
|
|
4203
4207
|
}
|
|
4204
4208
|
}
|
|
@@ -5181,6 +5185,7 @@ export interface Routes {
|
|
|
5181
5185
|
can_remotely_unlock?: boolean | undefined
|
|
5182
5186
|
can_remotely_lock?: boolean | undefined
|
|
5183
5187
|
can_program_online_access_codes?: boolean | undefined
|
|
5188
|
+
can_simulate_removal?: boolean | undefined
|
|
5184
5189
|
}
|
|
5185
5190
|
device: {
|
|
5186
5191
|
/** Unique identifier for the device. */
|
|
@@ -5883,6 +5888,7 @@ export interface Routes {
|
|
|
5883
5888
|
can_remotely_unlock?: boolean | undefined
|
|
5884
5889
|
can_remotely_lock?: boolean | undefined
|
|
5885
5890
|
can_program_online_access_codes?: boolean | undefined
|
|
5891
|
+
can_simulate_removal?: boolean | undefined
|
|
5886
5892
|
}
|
|
5887
5893
|
}
|
|
5888
5894
|
}
|
|
@@ -6721,6 +6727,7 @@ export interface Routes {
|
|
|
6721
6727
|
can_remotely_unlock?: boolean | undefined
|
|
6722
6728
|
can_remotely_lock?: boolean | undefined
|
|
6723
6729
|
can_program_online_access_codes?: boolean | undefined
|
|
6730
|
+
can_simulate_removal?: boolean | undefined
|
|
6724
6731
|
}>
|
|
6725
6732
|
devices: Array<{
|
|
6726
6733
|
/** Unique identifier for the device. */
|
|
@@ -7423,6 +7430,7 @@ export interface Routes {
|
|
|
7423
7430
|
can_remotely_unlock?: boolean | undefined
|
|
7424
7431
|
can_remotely_lock?: boolean | undefined
|
|
7425
7432
|
can_program_online_access_codes?: boolean | undefined
|
|
7433
|
+
can_simulate_removal?: boolean | undefined
|
|
7426
7434
|
}>
|
|
7427
7435
|
}
|
|
7428
7436
|
}
|
|
@@ -7801,6 +7809,7 @@ export interface Routes {
|
|
|
7801
7809
|
can_remotely_unlock?: boolean | undefined
|
|
7802
7810
|
can_remotely_lock?: boolean | undefined
|
|
7803
7811
|
can_program_online_access_codes?: boolean | undefined
|
|
7812
|
+
can_simulate_removal?: boolean | undefined
|
|
7804
7813
|
}>
|
|
7805
7814
|
}
|
|
7806
7815
|
}
|
|
@@ -7884,6 +7893,7 @@ export interface Routes {
|
|
|
7884
7893
|
can_remotely_unlock?: boolean | undefined
|
|
7885
7894
|
can_remotely_lock?: boolean | undefined
|
|
7886
7895
|
can_program_online_access_codes?: boolean | undefined
|
|
7896
|
+
can_simulate_removal?: boolean | undefined
|
|
7887
7897
|
}
|
|
7888
7898
|
}
|
|
7889
7899
|
}
|
|
@@ -8800,6 +8810,7 @@ export interface Routes {
|
|
|
8800
8810
|
can_remotely_unlock?: boolean | undefined
|
|
8801
8811
|
can_remotely_lock?: boolean | undefined
|
|
8802
8812
|
can_program_online_access_codes?: boolean | undefined
|
|
8813
|
+
can_simulate_removal?: boolean | undefined
|
|
8803
8814
|
}
|
|
8804
8815
|
}
|
|
8805
8816
|
}
|
|
@@ -9720,6 +9731,7 @@ export interface Routes {
|
|
|
9720
9731
|
can_remotely_unlock?: boolean | undefined
|
|
9721
9732
|
can_remotely_lock?: boolean | undefined
|
|
9722
9733
|
can_program_online_access_codes?: boolean | undefined
|
|
9734
|
+
can_simulate_removal?: boolean | undefined
|
|
9723
9735
|
}>
|
|
9724
9736
|
}
|
|
9725
9737
|
}
|
|
@@ -10714,6 +10726,7 @@ export interface Routes {
|
|
|
10714
10726
|
can_remotely_unlock?: boolean | undefined
|
|
10715
10727
|
can_remotely_lock?: boolean | undefined
|
|
10716
10728
|
can_program_online_access_codes?: boolean | undefined
|
|
10729
|
+
can_simulate_removal?: boolean | undefined
|
|
10717
10730
|
}>
|
|
10718
10731
|
}
|
|
10719
10732
|
}
|
|
@@ -3,13 +3,18 @@ import { z } from 'zod'
|
|
|
3
3
|
|
|
4
4
|
import { schemas as devicedb_schemas } from '@seamapi/types/devicedb'
|
|
5
5
|
|
|
6
|
-
import { custom_metadata } from '../../../
|
|
6
|
+
import { custom_metadata } from '../../../models/custom-metadata.js'
|
|
7
7
|
import { capability_properties } from '../capability-properties/index.js'
|
|
8
8
|
import { capabilities } from './capabilities-supported.js'
|
|
9
9
|
import { device_metadata } from './device-metadata.js'
|
|
10
10
|
import { any_device_type } from './device-type.js'
|
|
11
11
|
import { phone_specific_properties } from './phone-properties.js'
|
|
12
12
|
|
|
13
|
+
export const device_capability_flags =
|
|
14
|
+
devicedb_schemas.device_capability_flags.extend({
|
|
15
|
+
can_simulate_removal: z.boolean().optional(),
|
|
16
|
+
})
|
|
17
|
+
|
|
13
18
|
export const battery_status = z.enum(['critical', 'low', 'good', 'full'])
|
|
14
19
|
|
|
15
20
|
export type BatteryStatus = z.infer<typeof battery_status>
|
|
@@ -202,7 +207,7 @@ export const managed_device = z
|
|
|
202
207
|
.describe('Indicates whether Seam manages the device.'),
|
|
203
208
|
custom_metadata: custom_metadata.optional(),
|
|
204
209
|
})
|
|
205
|
-
.merge(
|
|
210
|
+
.merge(device_capability_flags)
|
|
206
211
|
|
|
207
212
|
export type ManagedDevice = z.infer<typeof managed_device>
|
|
208
213
|
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { z } from 'zod'
|
|
2
2
|
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
import {
|
|
4
|
+
common_device_properties,
|
|
5
|
+
device_capability_flags,
|
|
6
|
+
managed_device,
|
|
7
|
+
} from './managed-device.js'
|
|
6
8
|
|
|
7
9
|
export const unmanaged_device = managed_device
|
|
8
10
|
.pick({
|
|
@@ -30,6 +32,6 @@ export const unmanaged_device = managed_device
|
|
|
30
32
|
model: true,
|
|
31
33
|
}),
|
|
32
34
|
})
|
|
33
|
-
.merge(
|
|
35
|
+
.merge(device_capability_flags)
|
|
34
36
|
|
|
35
37
|
export type UnmanagedDevice = z.infer<typeof unmanaged_device>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"model-types.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/stable/model-types.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"connect-webview.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/stable/models/connect-webview.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAEtD,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACrC,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAClD,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACrB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,qBAAqB,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,QAAQ,EAAE,UAAU,CAAC,CAAC;IAC7D,kBAAkB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACvC,gBAAgB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACrC,oBAAoB,EAAE,CAAC,CAAC,OAAO,EAAE;IACjC,kBAAkB,EAAE,CAAC,CAAC,OAAO,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"custom-metadata.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/stable/models/custom-metadata.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC;KAC7B,MAAM,CACL,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAClB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,CACtD;KACA,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,IAAI,EAAE,EAAE;IAC9C,OAAO,EAAE,oDAAoD;CAC9D,CAAC,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/stable/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/stable/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|