@seamapi/types 1.185.0 → 1.187.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 +365 -30
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +726 -86
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +0 -17
- package/lib/seam/connect/models/acs/acs-credential.js +1 -6
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +36 -53
- package/lib/seam/connect/models/acs/acs-entrance.js +5 -31
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +87 -24
- package/lib/seam/connect/models/acs/acs-system.js +33 -18
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/index.js +1 -0
- package/lib/seam/connect/models/acs/index.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/index.d.ts +2 -0
- package/lib/seam/connect/models/acs/metadata/index.js +3 -0
- package/lib/seam/connect/models/acs/metadata/index.js.map +1 -0
- package/lib/seam/connect/models/acs/metadata/latch.d.ts +18 -0
- package/lib/seam/connect/models/acs/metadata/latch.js +8 -0
- package/lib/seam/connect/models/acs/metadata/latch.js.map +1 -0
- package/lib/seam/connect/models/acs/metadata/visionline.d.ts +47 -0
- package/lib/seam/connect/models/acs/metadata/visionline.js +24 -0
- package/lib/seam/connect/models/acs/metadata/visionline.js.map +1 -0
- package/lib/seam/connect/models/devices/managed-device.d.ts +12 -0
- package/lib/seam/connect/models/devices/managed-device.js +2 -0
- package/lib/seam/connect/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.d.ts +6 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +6 -0
- package/lib/seam/connect/openapi.d.ts +160 -20
- package/lib/seam/connect/openapi.js +137 -21
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +122 -64
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/model-types.ts +5 -0
- package/src/lib/seam/connect/models/acs/acs-credential.ts +2 -11
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +8 -37
- package/src/lib/seam/connect/models/acs/acs-system.ts +45 -23
- package/src/lib/seam/connect/models/acs/index.ts +1 -0
- package/src/lib/seam/connect/models/acs/metadata/index.ts +2 -0
- package/src/lib/seam/connect/models/acs/metadata/latch.ts +12 -0
- package/src/lib/seam/connect/models/acs/metadata/visionline.ts +35 -0
- package/src/lib/seam/connect/models/devices/managed-device.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +137 -21
- package/src/lib/seam/connect/route-types.ts +226 -124
- package/src/lib/seam/connect/schemas.ts +5 -0
|
@@ -5,18 +5,24 @@ export declare const device_capability_flags: z.ZodObject<{
|
|
|
5
5
|
can_program_offline_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
6
6
|
can_program_online_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
7
7
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
8
|
+
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
9
|
+
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
8
10
|
}, "strip", z.ZodTypeAny, {
|
|
9
11
|
can_remotely_unlock?: boolean | undefined;
|
|
10
12
|
can_remotely_lock?: boolean | undefined;
|
|
11
13
|
can_program_offline_access_codes?: boolean | undefined;
|
|
12
14
|
can_program_online_access_codes?: boolean | undefined;
|
|
13
15
|
can_simulate_removal?: boolean | undefined;
|
|
16
|
+
can_simulate_connection?: boolean | undefined;
|
|
17
|
+
can_simulate_disconnection?: boolean | undefined;
|
|
14
18
|
}, {
|
|
15
19
|
can_remotely_unlock?: boolean | undefined;
|
|
16
20
|
can_remotely_lock?: boolean | undefined;
|
|
17
21
|
can_program_offline_access_codes?: boolean | undefined;
|
|
18
22
|
can_program_online_access_codes?: boolean | undefined;
|
|
19
23
|
can_simulate_removal?: boolean | undefined;
|
|
24
|
+
can_simulate_connection?: boolean | undefined;
|
|
25
|
+
can_simulate_disconnection?: boolean | undefined;
|
|
20
26
|
}>;
|
|
21
27
|
export declare const battery_status: z.ZodEnum<["critical", "low", "good", "full"]>;
|
|
22
28
|
export type BatteryStatus = z.infer<typeof battery_status>;
|
|
@@ -2213,6 +2219,8 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2213
2219
|
can_program_offline_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
2214
2220
|
can_program_online_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
2215
2221
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
2222
|
+
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2223
|
+
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
2216
2224
|
}, "strip", z.ZodTypeAny, {
|
|
2217
2225
|
location: {
|
|
2218
2226
|
location_name?: string | undefined;
|
|
@@ -3102,6 +3110,8 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3102
3110
|
can_program_offline_access_codes?: boolean | undefined;
|
|
3103
3111
|
can_program_online_access_codes?: boolean | undefined;
|
|
3104
3112
|
can_simulate_removal?: boolean | undefined;
|
|
3113
|
+
can_simulate_connection?: boolean | undefined;
|
|
3114
|
+
can_simulate_disconnection?: boolean | undefined;
|
|
3105
3115
|
}, {
|
|
3106
3116
|
location: {
|
|
3107
3117
|
location_name?: string | undefined;
|
|
@@ -3991,5 +4001,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3991
4001
|
can_program_offline_access_codes?: boolean | undefined;
|
|
3992
4002
|
can_program_online_access_codes?: boolean | undefined;
|
|
3993
4003
|
can_simulate_removal?: boolean | undefined;
|
|
4004
|
+
can_simulate_connection?: boolean | undefined;
|
|
4005
|
+
can_simulate_disconnection?: boolean | undefined;
|
|
3994
4006
|
}>;
|
|
3995
4007
|
export type ManagedDevice = z.infer<typeof managed_device>;
|
|
@@ -8,6 +8,8 @@ import { any_device_type } from './device-type.js';
|
|
|
8
8
|
import { phone_specific_properties } from './phone-properties.js';
|
|
9
9
|
export const device_capability_flags = devicedb_schemas.device_capability_flags.extend({
|
|
10
10
|
can_simulate_removal: z.boolean().optional(),
|
|
11
|
+
can_simulate_connection: z.boolean().optional(),
|
|
12
|
+
can_simulate_disconnection: z.boolean().optional(),
|
|
11
13
|
});
|
|
12
14
|
export const battery_status = z.enum(['critical', 'low', 'good', 'full']);
|
|
13
15
|
export const common_device_properties = z.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"managed-device.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/managed-device.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,yBAAyB,CAAA;AAErE,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAA;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAA;AAC1D,OAAO,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAA;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AAClD,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAA;AAEjE,MAAM,CAAC,MAAM,uBAAuB,GAClC,gBAAgB,CAAC,uBAAuB,CAAC,MAAM,CAAC;IAC9C,oBAAoB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"managed-device.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/managed-device.ts"],"names":[],"mappings":"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"}
|
|
@@ -42,6 +42,8 @@ export declare const phone: z.ZodObject<{
|
|
|
42
42
|
can_program_offline_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
43
43
|
can_program_online_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
44
44
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
45
|
+
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
46
|
+
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
45
47
|
device_type: z.ZodEnum<["android_phone", "ios_phone"]>;
|
|
46
48
|
nickname: z.ZodOptional<z.ZodString>;
|
|
47
49
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -123,6 +125,8 @@ export declare const phone: z.ZodObject<{
|
|
|
123
125
|
can_program_offline_access_codes?: boolean | undefined;
|
|
124
126
|
can_program_online_access_codes?: boolean | undefined;
|
|
125
127
|
can_simulate_removal?: boolean | undefined;
|
|
128
|
+
can_simulate_connection?: boolean | undefined;
|
|
129
|
+
can_simulate_disconnection?: boolean | undefined;
|
|
126
130
|
nickname?: string | undefined;
|
|
127
131
|
}, {
|
|
128
132
|
location: {
|
|
@@ -159,5 +163,7 @@ export declare const phone: z.ZodObject<{
|
|
|
159
163
|
can_program_offline_access_codes?: boolean | undefined;
|
|
160
164
|
can_program_online_access_codes?: boolean | undefined;
|
|
161
165
|
can_simulate_removal?: boolean | undefined;
|
|
166
|
+
can_simulate_connection?: boolean | undefined;
|
|
167
|
+
can_simulate_disconnection?: boolean | undefined;
|
|
162
168
|
nickname?: string | undefined;
|
|
163
169
|
}>;
|
|
@@ -166,6 +166,8 @@ export declare const unmanaged_device: z.ZodObject<{
|
|
|
166
166
|
can_program_offline_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
167
167
|
can_program_online_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
168
168
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
169
|
+
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
170
|
+
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
169
171
|
}, "strip", z.ZodTypeAny, {
|
|
170
172
|
device_id: string;
|
|
171
173
|
created_at: string;
|
|
@@ -216,6 +218,8 @@ export declare const unmanaged_device: z.ZodObject<{
|
|
|
216
218
|
can_program_offline_access_codes?: boolean | undefined;
|
|
217
219
|
can_program_online_access_codes?: boolean | undefined;
|
|
218
220
|
can_simulate_removal?: boolean | undefined;
|
|
221
|
+
can_simulate_connection?: boolean | undefined;
|
|
222
|
+
can_simulate_disconnection?: boolean | undefined;
|
|
219
223
|
}, {
|
|
220
224
|
device_id: string;
|
|
221
225
|
created_at: string;
|
|
@@ -266,5 +270,7 @@ export declare const unmanaged_device: z.ZodObject<{
|
|
|
266
270
|
can_program_offline_access_codes?: boolean | undefined;
|
|
267
271
|
can_program_online_access_codes?: boolean | undefined;
|
|
268
272
|
can_simulate_removal?: boolean | undefined;
|
|
273
|
+
can_simulate_connection?: boolean | undefined;
|
|
274
|
+
can_simulate_disconnection?: boolean | undefined;
|
|
269
275
|
}>;
|
|
270
276
|
export type UnmanagedDevice = z.infer<typeof unmanaged_device>;
|
|
@@ -372,7 +372,6 @@ declare const _default: {
|
|
|
372
372
|
type: string;
|
|
373
373
|
};
|
|
374
374
|
latch_metadata: {
|
|
375
|
-
nullable: boolean;
|
|
376
375
|
properties: {
|
|
377
376
|
accessibility_type: {
|
|
378
377
|
type: string;
|
|
@@ -391,7 +390,6 @@ declare const _default: {
|
|
|
391
390
|
type: string;
|
|
392
391
|
};
|
|
393
392
|
visionline_metadata: {
|
|
394
|
-
nullable: boolean;
|
|
395
393
|
properties: {
|
|
396
394
|
door_category: {
|
|
397
395
|
enum: string[];
|
|
@@ -444,6 +442,7 @@ declare const _default: {
|
|
|
444
442
|
};
|
|
445
443
|
connected_account_ids: {
|
|
446
444
|
items: {
|
|
445
|
+
format: string;
|
|
447
446
|
type: string;
|
|
448
447
|
};
|
|
449
448
|
type: string;
|
|
@@ -454,16 +453,23 @@ declare const _default: {
|
|
|
454
453
|
};
|
|
455
454
|
errors: {
|
|
456
455
|
items: {
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
456
|
+
oneOf: {
|
|
457
|
+
properties: {
|
|
458
|
+
created_at: {
|
|
459
|
+
format: string;
|
|
460
|
+
type: string;
|
|
461
|
+
};
|
|
462
|
+
error_code: {
|
|
463
|
+
enum: string[];
|
|
464
|
+
type: string;
|
|
465
|
+
};
|
|
466
|
+
message: {
|
|
467
|
+
type: string;
|
|
468
|
+
};
|
|
463
469
|
};
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
470
|
+
required: string[];
|
|
471
|
+
type: string;
|
|
472
|
+
}[];
|
|
467
473
|
};
|
|
468
474
|
type: string;
|
|
469
475
|
};
|
|
@@ -494,15 +500,7 @@ declare const _default: {
|
|
|
494
500
|
};
|
|
495
501
|
warnings: {
|
|
496
502
|
items: {
|
|
497
|
-
properties: {
|
|
498
|
-
message: {
|
|
499
|
-
type: string;
|
|
500
|
-
};
|
|
501
|
-
warning_code: {
|
|
502
|
-
type: string;
|
|
503
|
-
};
|
|
504
|
-
};
|
|
505
|
-
required: string[];
|
|
503
|
+
properties: {};
|
|
506
504
|
type: string;
|
|
507
505
|
};
|
|
508
506
|
type: string;
|
|
@@ -1079,6 +1077,12 @@ declare const _default: {
|
|
|
1079
1077
|
can_remotely_unlock: {
|
|
1080
1078
|
type: string;
|
|
1081
1079
|
};
|
|
1080
|
+
can_simulate_connection: {
|
|
1081
|
+
type: string;
|
|
1082
|
+
};
|
|
1083
|
+
can_simulate_disconnection: {
|
|
1084
|
+
type: string;
|
|
1085
|
+
};
|
|
1082
1086
|
can_simulate_removal: {
|
|
1083
1087
|
type: string;
|
|
1084
1088
|
};
|
|
@@ -2819,6 +2823,12 @@ declare const _default: {
|
|
|
2819
2823
|
can_remotely_unlock: {
|
|
2820
2824
|
type: string;
|
|
2821
2825
|
};
|
|
2826
|
+
can_simulate_connection: {
|
|
2827
|
+
type: string;
|
|
2828
|
+
};
|
|
2829
|
+
can_simulate_disconnection: {
|
|
2830
|
+
type: string;
|
|
2831
|
+
};
|
|
2822
2832
|
can_simulate_removal: {
|
|
2823
2833
|
type: string;
|
|
2824
2834
|
};
|
|
@@ -3044,6 +3054,12 @@ declare const _default: {
|
|
|
3044
3054
|
can_remotely_unlock: {
|
|
3045
3055
|
type: string;
|
|
3046
3056
|
};
|
|
3057
|
+
can_simulate_connection: {
|
|
3058
|
+
type: string;
|
|
3059
|
+
};
|
|
3060
|
+
can_simulate_disconnection: {
|
|
3061
|
+
type: string;
|
|
3062
|
+
};
|
|
3047
3063
|
can_simulate_removal: {
|
|
3048
3064
|
type: string;
|
|
3049
3065
|
};
|
|
@@ -10020,6 +10036,130 @@ declare const _default: {
|
|
|
10020
10036
|
'x-fern-sdk-return-value': string;
|
|
10021
10037
|
};
|
|
10022
10038
|
};
|
|
10039
|
+
'/devices/simulate/connect': {
|
|
10040
|
+
post: {
|
|
10041
|
+
operationId: string;
|
|
10042
|
+
requestBody: {
|
|
10043
|
+
content: {
|
|
10044
|
+
'application/json': {
|
|
10045
|
+
schema: {
|
|
10046
|
+
properties: {
|
|
10047
|
+
device_id: {
|
|
10048
|
+
format: string;
|
|
10049
|
+
type: string;
|
|
10050
|
+
};
|
|
10051
|
+
};
|
|
10052
|
+
required: string[];
|
|
10053
|
+
type: string;
|
|
10054
|
+
};
|
|
10055
|
+
};
|
|
10056
|
+
};
|
|
10057
|
+
};
|
|
10058
|
+
responses: {
|
|
10059
|
+
200: {
|
|
10060
|
+
content: {
|
|
10061
|
+
'application/json': {
|
|
10062
|
+
schema: {
|
|
10063
|
+
properties: {
|
|
10064
|
+
ok: {
|
|
10065
|
+
type: string;
|
|
10066
|
+
};
|
|
10067
|
+
};
|
|
10068
|
+
required: string[];
|
|
10069
|
+
type: string;
|
|
10070
|
+
};
|
|
10071
|
+
};
|
|
10072
|
+
};
|
|
10073
|
+
description: string;
|
|
10074
|
+
};
|
|
10075
|
+
400: {
|
|
10076
|
+
description: string;
|
|
10077
|
+
};
|
|
10078
|
+
401: {
|
|
10079
|
+
description: string;
|
|
10080
|
+
};
|
|
10081
|
+
};
|
|
10082
|
+
security: ({
|
|
10083
|
+
api_key: never[];
|
|
10084
|
+
pat_with_workspace?: never;
|
|
10085
|
+
console_session?: never;
|
|
10086
|
+
} | {
|
|
10087
|
+
pat_with_workspace: never[];
|
|
10088
|
+
api_key?: never;
|
|
10089
|
+
console_session?: never;
|
|
10090
|
+
} | {
|
|
10091
|
+
console_session: never[];
|
|
10092
|
+
api_key?: never;
|
|
10093
|
+
pat_with_workspace?: never;
|
|
10094
|
+
})[];
|
|
10095
|
+
summary: string;
|
|
10096
|
+
tags: string[];
|
|
10097
|
+
'x-fern-sdk-group-name': string[];
|
|
10098
|
+
'x-fern-sdk-method-name': string;
|
|
10099
|
+
};
|
|
10100
|
+
};
|
|
10101
|
+
'/devices/simulate/disconnect': {
|
|
10102
|
+
post: {
|
|
10103
|
+
operationId: string;
|
|
10104
|
+
requestBody: {
|
|
10105
|
+
content: {
|
|
10106
|
+
'application/json': {
|
|
10107
|
+
schema: {
|
|
10108
|
+
properties: {
|
|
10109
|
+
device_id: {
|
|
10110
|
+
format: string;
|
|
10111
|
+
type: string;
|
|
10112
|
+
};
|
|
10113
|
+
};
|
|
10114
|
+
required: string[];
|
|
10115
|
+
type: string;
|
|
10116
|
+
};
|
|
10117
|
+
};
|
|
10118
|
+
};
|
|
10119
|
+
};
|
|
10120
|
+
responses: {
|
|
10121
|
+
200: {
|
|
10122
|
+
content: {
|
|
10123
|
+
'application/json': {
|
|
10124
|
+
schema: {
|
|
10125
|
+
properties: {
|
|
10126
|
+
ok: {
|
|
10127
|
+
type: string;
|
|
10128
|
+
};
|
|
10129
|
+
};
|
|
10130
|
+
required: string[];
|
|
10131
|
+
type: string;
|
|
10132
|
+
};
|
|
10133
|
+
};
|
|
10134
|
+
};
|
|
10135
|
+
description: string;
|
|
10136
|
+
};
|
|
10137
|
+
400: {
|
|
10138
|
+
description: string;
|
|
10139
|
+
};
|
|
10140
|
+
401: {
|
|
10141
|
+
description: string;
|
|
10142
|
+
};
|
|
10143
|
+
};
|
|
10144
|
+
security: ({
|
|
10145
|
+
api_key: never[];
|
|
10146
|
+
pat_with_workspace?: never;
|
|
10147
|
+
console_session?: never;
|
|
10148
|
+
} | {
|
|
10149
|
+
pat_with_workspace: never[];
|
|
10150
|
+
api_key?: never;
|
|
10151
|
+
console_session?: never;
|
|
10152
|
+
} | {
|
|
10153
|
+
console_session: never[];
|
|
10154
|
+
api_key?: never;
|
|
10155
|
+
pat_with_workspace?: never;
|
|
10156
|
+
})[];
|
|
10157
|
+
summary: string;
|
|
10158
|
+
tags: string[];
|
|
10159
|
+
'x-fern-sdk-group-name': string[];
|
|
10160
|
+
'x-fern-sdk-method-name': string;
|
|
10161
|
+
};
|
|
10162
|
+
};
|
|
10023
10163
|
'/devices/simulate/remove': {
|
|
10024
10164
|
post: {
|
|
10025
10165
|
operationId: string;
|
|
@@ -313,7 +313,6 @@ export default {
|
|
|
313
313
|
type: 'array',
|
|
314
314
|
},
|
|
315
315
|
latch_metadata: {
|
|
316
|
-
nullable: true,
|
|
317
316
|
properties: {
|
|
318
317
|
accessibility_type: { type: 'string' },
|
|
319
318
|
door_name: { type: 'string' },
|
|
@@ -329,7 +328,6 @@ export default {
|
|
|
329
328
|
type: 'object',
|
|
330
329
|
},
|
|
331
330
|
visionline_metadata: {
|
|
332
|
-
nullable: true,
|
|
333
331
|
properties: {
|
|
334
332
|
door_category: {
|
|
335
333
|
enum: [
|
|
@@ -365,13 +363,11 @@ export default {
|
|
|
365
363
|
},
|
|
366
364
|
},
|
|
367
365
|
required: [
|
|
368
|
-
'acs_entrance_id',
|
|
369
|
-
'display_name',
|
|
370
366
|
'acs_system_id',
|
|
367
|
+
'acs_entrance_id',
|
|
371
368
|
'created_at',
|
|
372
|
-
'
|
|
369
|
+
'display_name',
|
|
373
370
|
'errors',
|
|
374
|
-
'visionline_metadata',
|
|
375
371
|
],
|
|
376
372
|
type: 'object',
|
|
377
373
|
},
|
|
@@ -382,16 +378,39 @@ export default {
|
|
|
382
378
|
can_automate_enrollment: { type: 'boolean' },
|
|
383
379
|
can_create_acs_access_groups: { type: 'boolean' },
|
|
384
380
|
can_remove_acs_users_from_acs_access_groups: { type: 'boolean' },
|
|
385
|
-
connected_account_ids: {
|
|
381
|
+
connected_account_ids: {
|
|
382
|
+
items: { format: 'uuid', type: 'string' },
|
|
383
|
+
type: 'array',
|
|
384
|
+
},
|
|
386
385
|
created_at: { format: 'date-time', type: 'string' },
|
|
387
386
|
errors: {
|
|
388
387
|
items: {
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
388
|
+
oneOf: [
|
|
389
|
+
{
|
|
390
|
+
properties: {
|
|
391
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
392
|
+
error_code: {
|
|
393
|
+
enum: ['seam_bridge_disconnected'],
|
|
394
|
+
type: 'string',
|
|
395
|
+
},
|
|
396
|
+
message: { type: 'string' },
|
|
397
|
+
},
|
|
398
|
+
required: ['created_at', 'message', 'error_code'],
|
|
399
|
+
type: 'object',
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
properties: {
|
|
403
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
404
|
+
error_code: {
|
|
405
|
+
enum: ['visionline_instance_unreachable'],
|
|
406
|
+
type: 'string',
|
|
407
|
+
},
|
|
408
|
+
message: { type: 'string' },
|
|
409
|
+
},
|
|
410
|
+
required: ['created_at', 'message', 'error_code'],
|
|
411
|
+
type: 'object',
|
|
412
|
+
},
|
|
413
|
+
],
|
|
395
414
|
},
|
|
396
415
|
type: 'array',
|
|
397
416
|
},
|
|
@@ -431,14 +450,7 @@ export default {
|
|
|
431
450
|
type: 'string',
|
|
432
451
|
},
|
|
433
452
|
warnings: {
|
|
434
|
-
items: {
|
|
435
|
-
properties: {
|
|
436
|
-
message: { type: 'string' },
|
|
437
|
-
warning_code: { type: 'string' },
|
|
438
|
-
},
|
|
439
|
-
required: ['warning_code', 'message'],
|
|
440
|
-
type: 'object',
|
|
441
|
-
},
|
|
453
|
+
items: { properties: {}, type: 'object' },
|
|
442
454
|
type: 'array',
|
|
443
455
|
},
|
|
444
456
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
@@ -1736,6 +1748,8 @@ export default {
|
|
|
1736
1748
|
can_program_online_access_codes: { type: 'boolean' },
|
|
1737
1749
|
can_remotely_lock: { type: 'boolean' },
|
|
1738
1750
|
can_remotely_unlock: { type: 'boolean' },
|
|
1751
|
+
can_simulate_connection: { type: 'boolean' },
|
|
1752
|
+
can_simulate_disconnection: { type: 'boolean' },
|
|
1739
1753
|
can_simulate_removal: { type: 'boolean' },
|
|
1740
1754
|
capabilities_supported: {
|
|
1741
1755
|
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.',
|
|
@@ -3128,6 +3142,8 @@ export default {
|
|
|
3128
3142
|
can_program_online_access_codes: { type: 'boolean' },
|
|
3129
3143
|
can_remotely_lock: { type: 'boolean' },
|
|
3130
3144
|
can_remotely_unlock: { type: 'boolean' },
|
|
3145
|
+
can_simulate_connection: { type: 'boolean' },
|
|
3146
|
+
can_simulate_disconnection: { type: 'boolean' },
|
|
3131
3147
|
can_simulate_removal: { type: 'boolean' },
|
|
3132
3148
|
capabilities_supported: {
|
|
3133
3149
|
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.',
|
|
@@ -3340,6 +3356,8 @@ export default {
|
|
|
3340
3356
|
can_program_online_access_codes: { type: 'boolean' },
|
|
3341
3357
|
can_remotely_lock: { type: 'boolean' },
|
|
3342
3358
|
can_remotely_unlock: { type: 'boolean' },
|
|
3359
|
+
can_simulate_connection: { type: 'boolean' },
|
|
3360
|
+
can_simulate_disconnection: { type: 'boolean' },
|
|
3343
3361
|
can_simulate_removal: { type: 'boolean' },
|
|
3344
3362
|
capabilities_supported: {
|
|
3345
3363
|
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.',
|
|
@@ -8155,6 +8173,8 @@ export default {
|
|
|
8155
8173
|
'can_program_offline_access_codes',
|
|
8156
8174
|
'can_program_online_access_codes',
|
|
8157
8175
|
'can_simulate_removal',
|
|
8176
|
+
'can_simulate_connection',
|
|
8177
|
+
'can_simulate_disconnection',
|
|
8158
8178
|
],
|
|
8159
8179
|
type: 'string',
|
|
8160
8180
|
},
|
|
@@ -8168,6 +8188,8 @@ export default {
|
|
|
8168
8188
|
'can_program_offline_access_codes',
|
|
8169
8189
|
'can_program_online_access_codes',
|
|
8170
8190
|
'can_simulate_removal',
|
|
8191
|
+
'can_simulate_connection',
|
|
8192
|
+
'can_simulate_disconnection',
|
|
8171
8193
|
],
|
|
8172
8194
|
type: 'string',
|
|
8173
8195
|
},
|
|
@@ -8314,6 +8336,88 @@ export default {
|
|
|
8314
8336
|
'x-fern-sdk-return-value': 'device_providers',
|
|
8315
8337
|
},
|
|
8316
8338
|
},
|
|
8339
|
+
'/devices/simulate/connect': {
|
|
8340
|
+
post: {
|
|
8341
|
+
operationId: 'devicesSimulateConnectPost',
|
|
8342
|
+
requestBody: {
|
|
8343
|
+
content: {
|
|
8344
|
+
'application/json': {
|
|
8345
|
+
schema: {
|
|
8346
|
+
properties: { device_id: { format: 'uuid', type: 'string' } },
|
|
8347
|
+
required: ['device_id'],
|
|
8348
|
+
type: 'object',
|
|
8349
|
+
},
|
|
8350
|
+
},
|
|
8351
|
+
},
|
|
8352
|
+
},
|
|
8353
|
+
responses: {
|
|
8354
|
+
200: {
|
|
8355
|
+
content: {
|
|
8356
|
+
'application/json': {
|
|
8357
|
+
schema: {
|
|
8358
|
+
properties: { ok: { type: 'boolean' } },
|
|
8359
|
+
required: ['ok'],
|
|
8360
|
+
type: 'object',
|
|
8361
|
+
},
|
|
8362
|
+
},
|
|
8363
|
+
},
|
|
8364
|
+
description: 'OK',
|
|
8365
|
+
},
|
|
8366
|
+
400: { description: 'Bad Request' },
|
|
8367
|
+
401: { description: 'Unauthorized' },
|
|
8368
|
+
},
|
|
8369
|
+
security: [
|
|
8370
|
+
{ api_key: [] },
|
|
8371
|
+
{ pat_with_workspace: [] },
|
|
8372
|
+
{ console_session: [] },
|
|
8373
|
+
],
|
|
8374
|
+
summary: '/devices/simulate/connect',
|
|
8375
|
+
tags: ['/devices'],
|
|
8376
|
+
'x-fern-sdk-group-name': ['devices', 'simulate'],
|
|
8377
|
+
'x-fern-sdk-method-name': 'connect',
|
|
8378
|
+
},
|
|
8379
|
+
},
|
|
8380
|
+
'/devices/simulate/disconnect': {
|
|
8381
|
+
post: {
|
|
8382
|
+
operationId: 'devicesSimulateDisconnectPost',
|
|
8383
|
+
requestBody: {
|
|
8384
|
+
content: {
|
|
8385
|
+
'application/json': {
|
|
8386
|
+
schema: {
|
|
8387
|
+
properties: { device_id: { format: 'uuid', type: 'string' } },
|
|
8388
|
+
required: ['device_id'],
|
|
8389
|
+
type: 'object',
|
|
8390
|
+
},
|
|
8391
|
+
},
|
|
8392
|
+
},
|
|
8393
|
+
},
|
|
8394
|
+
responses: {
|
|
8395
|
+
200: {
|
|
8396
|
+
content: {
|
|
8397
|
+
'application/json': {
|
|
8398
|
+
schema: {
|
|
8399
|
+
properties: { ok: { type: 'boolean' } },
|
|
8400
|
+
required: ['ok'],
|
|
8401
|
+
type: 'object',
|
|
8402
|
+
},
|
|
8403
|
+
},
|
|
8404
|
+
},
|
|
8405
|
+
description: 'OK',
|
|
8406
|
+
},
|
|
8407
|
+
400: { description: 'Bad Request' },
|
|
8408
|
+
401: { description: 'Unauthorized' },
|
|
8409
|
+
},
|
|
8410
|
+
security: [
|
|
8411
|
+
{ api_key: [] },
|
|
8412
|
+
{ pat_with_workspace: [] },
|
|
8413
|
+
{ console_session: [] },
|
|
8414
|
+
],
|
|
8415
|
+
summary: '/devices/simulate/disconnect',
|
|
8416
|
+
tags: ['/devices'],
|
|
8417
|
+
'x-fern-sdk-group-name': ['devices', 'simulate'],
|
|
8418
|
+
'x-fern-sdk-method-name': 'disconnect',
|
|
8419
|
+
},
|
|
8420
|
+
},
|
|
8317
8421
|
'/devices/simulate/remove': {
|
|
8318
8422
|
post: {
|
|
8319
8423
|
operationId: 'devicesSimulateRemovePost',
|
|
@@ -8546,6 +8650,8 @@ export default {
|
|
|
8546
8650
|
'can_program_offline_access_codes',
|
|
8547
8651
|
'can_program_online_access_codes',
|
|
8548
8652
|
'can_simulate_removal',
|
|
8653
|
+
'can_simulate_connection',
|
|
8654
|
+
'can_simulate_disconnection',
|
|
8549
8655
|
],
|
|
8550
8656
|
type: 'string',
|
|
8551
8657
|
},
|
|
@@ -8559,6 +8665,8 @@ export default {
|
|
|
8559
8665
|
'can_program_offline_access_codes',
|
|
8560
8666
|
'can_program_online_access_codes',
|
|
8561
8667
|
'can_simulate_removal',
|
|
8668
|
+
'can_simulate_connection',
|
|
8669
|
+
'can_simulate_disconnection',
|
|
8562
8670
|
],
|
|
8563
8671
|
type: 'string',
|
|
8564
8672
|
},
|
|
@@ -9291,6 +9399,8 @@ export default {
|
|
|
9291
9399
|
'can_program_offline_access_codes',
|
|
9292
9400
|
'can_program_online_access_codes',
|
|
9293
9401
|
'can_simulate_removal',
|
|
9402
|
+
'can_simulate_connection',
|
|
9403
|
+
'can_simulate_disconnection',
|
|
9294
9404
|
],
|
|
9295
9405
|
type: 'string',
|
|
9296
9406
|
},
|
|
@@ -9304,6 +9414,8 @@ export default {
|
|
|
9304
9414
|
'can_program_offline_access_codes',
|
|
9305
9415
|
'can_program_online_access_codes',
|
|
9306
9416
|
'can_simulate_removal',
|
|
9417
|
+
'can_simulate_connection',
|
|
9418
|
+
'can_simulate_disconnection',
|
|
9307
9419
|
],
|
|
9308
9420
|
type: 'string',
|
|
9309
9421
|
},
|
|
@@ -10994,6 +11106,8 @@ export default {
|
|
|
10994
11106
|
'can_program_offline_access_codes',
|
|
10995
11107
|
'can_program_online_access_codes',
|
|
10996
11108
|
'can_simulate_removal',
|
|
11109
|
+
'can_simulate_connection',
|
|
11110
|
+
'can_simulate_disconnection',
|
|
10997
11111
|
],
|
|
10998
11112
|
type: 'string',
|
|
10999
11113
|
},
|
|
@@ -11007,6 +11121,8 @@ export default {
|
|
|
11007
11121
|
'can_program_offline_access_codes',
|
|
11008
11122
|
'can_program_online_access_codes',
|
|
11009
11123
|
'can_simulate_removal',
|
|
11124
|
+
'can_simulate_connection',
|
|
11125
|
+
'can_simulate_disconnection',
|
|
11010
11126
|
],
|
|
11011
11127
|
type: 'string',
|
|
11012
11128
|
},
|