@seamapi/types 1.91.1 → 1.91.3
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 +823 -2005
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1283 -2683
- package/lib/seam/connect/openapi.d.ts +1037 -2419
- package/lib/seam/connect/openapi.js +815 -1997
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +81 -99
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +6 -6
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +95 -125
- package/lib/seam/connect/unstable/models/devices/managed-device.js +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/phone-properties.d.ts +35 -57
- package/lib/seam/connect/unstable/models/devices/phone-properties.js +9 -11
- package/lib/seam/connect/unstable/models/devices/phone-properties.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/phone.js +1 -1
- package/lib/seam/connect/unstable/models/devices/phone.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +817 -2018
- package/src/lib/seam/connect/route-types.ts +126 -135
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +1 -1
- package/src/lib/seam/connect/unstable/models/devices/phone-properties.ts +11 -13
- package/src/lib/seam/connect/unstable/models/devices/phone.ts +1 -1
|
@@ -1811,6 +1811,14 @@ export interface Routes {
|
|
|
1811
1811
|
/** Deprecated. Use offline_access_codes_enabled. */
|
|
1812
1812
|
supports_offline_access_codes?: boolean | undefined;
|
|
1813
1813
|
} & {
|
|
1814
|
+
assa_abloy_credential_service_metadata?: ({
|
|
1815
|
+
has_active_endpoint: boolean;
|
|
1816
|
+
endpoints: Array<{
|
|
1817
|
+
endpoint_id: string;
|
|
1818
|
+
is_active: boolean;
|
|
1819
|
+
}>;
|
|
1820
|
+
} | undefined) | undefined;
|
|
1821
|
+
}) & {
|
|
1814
1822
|
august_metadata?: {
|
|
1815
1823
|
lock_id: string;
|
|
1816
1824
|
lock_name: string;
|
|
@@ -2177,17 +2185,7 @@ export interface Routes {
|
|
|
2177
2185
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
2178
2186
|
max_cooling_set_point_celsius?: number | undefined;
|
|
2179
2187
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
2180
|
-
}))
|
|
2181
|
-
properties?: {
|
|
2182
|
-
assa_abloy_credential_service_metadata?: {
|
|
2183
|
-
has_active_endpoint: boolean;
|
|
2184
|
-
endpoints: Array<{
|
|
2185
|
-
endpoint_id: string;
|
|
2186
|
-
is_active: boolean;
|
|
2187
|
-
}>;
|
|
2188
|
-
} | undefined;
|
|
2189
|
-
} | undefined;
|
|
2190
|
-
};
|
|
2188
|
+
}));
|
|
2191
2189
|
/** Location information for the device. */
|
|
2192
2190
|
location: {
|
|
2193
2191
|
/** Name of the device location. */
|
|
@@ -2289,6 +2287,14 @@ export interface Routes {
|
|
|
2289
2287
|
/** Deprecated. Use offline_access_codes_enabled. */
|
|
2290
2288
|
supports_offline_access_codes?: boolean | undefined;
|
|
2291
2289
|
} & {
|
|
2290
|
+
assa_abloy_credential_service_metadata?: ({
|
|
2291
|
+
has_active_endpoint: boolean;
|
|
2292
|
+
endpoints: Array<{
|
|
2293
|
+
endpoint_id: string;
|
|
2294
|
+
is_active: boolean;
|
|
2295
|
+
}>;
|
|
2296
|
+
} | undefined) | undefined;
|
|
2297
|
+
}) & {
|
|
2292
2298
|
august_metadata?: {
|
|
2293
2299
|
lock_id: string;
|
|
2294
2300
|
lock_name: string;
|
|
@@ -2655,17 +2661,7 @@ export interface Routes {
|
|
|
2655
2661
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
2656
2662
|
max_cooling_set_point_celsius?: number | undefined;
|
|
2657
2663
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
2658
|
-
}))
|
|
2659
|
-
properties?: {
|
|
2660
|
-
assa_abloy_credential_service_metadata?: {
|
|
2661
|
-
has_active_endpoint: boolean;
|
|
2662
|
-
endpoints: Array<{
|
|
2663
|
-
endpoint_id: string;
|
|
2664
|
-
is_active: boolean;
|
|
2665
|
-
}>;
|
|
2666
|
-
} | undefined;
|
|
2667
|
-
} | undefined;
|
|
2668
|
-
};
|
|
2664
|
+
}));
|
|
2669
2665
|
/** Location information for the device. */
|
|
2670
2666
|
location: {
|
|
2671
2667
|
/** Name of the device location. */
|
|
@@ -3086,6 +3082,14 @@ export interface Routes {
|
|
|
3086
3082
|
/** Deprecated. Use offline_access_codes_enabled. */
|
|
3087
3083
|
supports_offline_access_codes?: boolean | undefined;
|
|
3088
3084
|
} & {
|
|
3085
|
+
assa_abloy_credential_service_metadata?: ({
|
|
3086
|
+
has_active_endpoint: boolean;
|
|
3087
|
+
endpoints: Array<{
|
|
3088
|
+
endpoint_id: string;
|
|
3089
|
+
is_active: boolean;
|
|
3090
|
+
}>;
|
|
3091
|
+
} | undefined) | undefined;
|
|
3092
|
+
}) & {
|
|
3089
3093
|
august_metadata?: {
|
|
3090
3094
|
lock_id: string;
|
|
3091
3095
|
lock_name: string;
|
|
@@ -3452,17 +3456,7 @@ export interface Routes {
|
|
|
3452
3456
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
3453
3457
|
max_cooling_set_point_celsius?: number | undefined;
|
|
3454
3458
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
3455
|
-
}))
|
|
3456
|
-
properties?: {
|
|
3457
|
-
assa_abloy_credential_service_metadata?: {
|
|
3458
|
-
has_active_endpoint: boolean;
|
|
3459
|
-
endpoints: Array<{
|
|
3460
|
-
endpoint_id: string;
|
|
3461
|
-
is_active: boolean;
|
|
3462
|
-
}>;
|
|
3463
|
-
} | undefined;
|
|
3464
|
-
} | undefined;
|
|
3465
|
-
};
|
|
3459
|
+
}));
|
|
3466
3460
|
/** Location information for the device. */
|
|
3467
3461
|
location: {
|
|
3468
3462
|
/** Name of the device location. */
|
|
@@ -3541,6 +3535,14 @@ export interface Routes {
|
|
|
3541
3535
|
/** Deprecated. Use offline_access_codes_enabled. */
|
|
3542
3536
|
supports_offline_access_codes?: boolean | undefined;
|
|
3543
3537
|
} & {
|
|
3538
|
+
assa_abloy_credential_service_metadata?: ({
|
|
3539
|
+
has_active_endpoint: boolean;
|
|
3540
|
+
endpoints: Array<{
|
|
3541
|
+
endpoint_id: string;
|
|
3542
|
+
is_active: boolean;
|
|
3543
|
+
}>;
|
|
3544
|
+
} | undefined) | undefined;
|
|
3545
|
+
}) & {
|
|
3544
3546
|
august_metadata?: {
|
|
3545
3547
|
lock_id: string;
|
|
3546
3548
|
lock_name: string;
|
|
@@ -3907,17 +3909,7 @@ export interface Routes {
|
|
|
3907
3909
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
3908
3910
|
max_cooling_set_point_celsius?: number | undefined;
|
|
3909
3911
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
3910
|
-
}))
|
|
3911
|
-
properties?: {
|
|
3912
|
-
assa_abloy_credential_service_metadata?: {
|
|
3913
|
-
has_active_endpoint: boolean;
|
|
3914
|
-
endpoints: Array<{
|
|
3915
|
-
endpoint_id: string;
|
|
3916
|
-
is_active: boolean;
|
|
3917
|
-
}>;
|
|
3918
|
-
} | undefined;
|
|
3919
|
-
} | undefined;
|
|
3920
|
-
};
|
|
3912
|
+
}));
|
|
3921
3913
|
/** Location information for the device. */
|
|
3922
3914
|
location: {
|
|
3923
3915
|
/** Name of the device location. */
|
|
@@ -4019,6 +4011,14 @@ export interface Routes {
|
|
|
4019
4011
|
/** Deprecated. Use offline_access_codes_enabled. */
|
|
4020
4012
|
supports_offline_access_codes?: boolean | undefined;
|
|
4021
4013
|
} & {
|
|
4014
|
+
assa_abloy_credential_service_metadata?: ({
|
|
4015
|
+
has_active_endpoint: boolean;
|
|
4016
|
+
endpoints: Array<{
|
|
4017
|
+
endpoint_id: string;
|
|
4018
|
+
is_active: boolean;
|
|
4019
|
+
}>;
|
|
4020
|
+
} | undefined) | undefined;
|
|
4021
|
+
}) & {
|
|
4022
4022
|
august_metadata?: {
|
|
4023
4023
|
lock_id: string;
|
|
4024
4024
|
lock_name: string;
|
|
@@ -4385,17 +4385,7 @@ export interface Routes {
|
|
|
4385
4385
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
4386
4386
|
max_cooling_set_point_celsius?: number | undefined;
|
|
4387
4387
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
4388
|
-
}))
|
|
4389
|
-
properties?: {
|
|
4390
|
-
assa_abloy_credential_service_metadata?: {
|
|
4391
|
-
has_active_endpoint: boolean;
|
|
4392
|
-
endpoints: Array<{
|
|
4393
|
-
endpoint_id: string;
|
|
4394
|
-
is_active: boolean;
|
|
4395
|
-
}>;
|
|
4396
|
-
} | undefined;
|
|
4397
|
-
} | undefined;
|
|
4398
|
-
};
|
|
4388
|
+
}));
|
|
4399
4389
|
/** Location information for the device. */
|
|
4400
4390
|
location: {
|
|
4401
4391
|
/** Name of the device location. */
|
|
@@ -4474,6 +4464,14 @@ export interface Routes {
|
|
|
4474
4464
|
/** Deprecated. Use offline_access_codes_enabled. */
|
|
4475
4465
|
supports_offline_access_codes?: boolean | undefined;
|
|
4476
4466
|
} & {
|
|
4467
|
+
assa_abloy_credential_service_metadata?: ({
|
|
4468
|
+
has_active_endpoint: boolean;
|
|
4469
|
+
endpoints: Array<{
|
|
4470
|
+
endpoint_id: string;
|
|
4471
|
+
is_active: boolean;
|
|
4472
|
+
}>;
|
|
4473
|
+
} | undefined) | undefined;
|
|
4474
|
+
}) & {
|
|
4477
4475
|
august_metadata?: {
|
|
4478
4476
|
lock_id: string;
|
|
4479
4477
|
lock_name: string;
|
|
@@ -4840,17 +4838,7 @@ export interface Routes {
|
|
|
4840
4838
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
4841
4839
|
max_cooling_set_point_celsius?: number | undefined;
|
|
4842
4840
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
4843
|
-
}))
|
|
4844
|
-
properties?: {
|
|
4845
|
-
assa_abloy_credential_service_metadata?: {
|
|
4846
|
-
has_active_endpoint: boolean;
|
|
4847
|
-
endpoints: Array<{
|
|
4848
|
-
endpoint_id: string;
|
|
4849
|
-
is_active: boolean;
|
|
4850
|
-
}>;
|
|
4851
|
-
} | undefined;
|
|
4852
|
-
} | undefined;
|
|
4853
|
-
};
|
|
4841
|
+
}));
|
|
4854
4842
|
/** Location information for the device. */
|
|
4855
4843
|
location: {
|
|
4856
4844
|
/** Name of the device location. */
|
|
@@ -5521,6 +5509,14 @@ export interface Routes {
|
|
|
5521
5509
|
/** Deprecated. Use offline_access_codes_enabled. */
|
|
5522
5510
|
supports_offline_access_codes?: boolean | undefined;
|
|
5523
5511
|
} & {
|
|
5512
|
+
assa_abloy_credential_service_metadata?: ({
|
|
5513
|
+
has_active_endpoint: boolean;
|
|
5514
|
+
endpoints: Array<{
|
|
5515
|
+
endpoint_id: string;
|
|
5516
|
+
is_active: boolean;
|
|
5517
|
+
}>;
|
|
5518
|
+
} | undefined) | undefined;
|
|
5519
|
+
}) & {
|
|
5524
5520
|
august_metadata?: {
|
|
5525
5521
|
lock_id: string;
|
|
5526
5522
|
lock_name: string;
|
|
@@ -5887,17 +5883,7 @@ export interface Routes {
|
|
|
5887
5883
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
5888
5884
|
max_cooling_set_point_celsius?: number | undefined;
|
|
5889
5885
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
5890
|
-
}))
|
|
5891
|
-
properties?: {
|
|
5892
|
-
assa_abloy_credential_service_metadata?: {
|
|
5893
|
-
has_active_endpoint: boolean;
|
|
5894
|
-
endpoints: Array<{
|
|
5895
|
-
endpoint_id: string;
|
|
5896
|
-
is_active: boolean;
|
|
5897
|
-
}>;
|
|
5898
|
-
} | undefined;
|
|
5899
|
-
} | undefined;
|
|
5900
|
-
};
|
|
5886
|
+
}));
|
|
5901
5887
|
/** Location information for the device. */
|
|
5902
5888
|
location: {
|
|
5903
5889
|
/** Name of the device location. */
|
|
@@ -6029,6 +6015,14 @@ export interface Routes {
|
|
|
6029
6015
|
/** Deprecated. Use offline_access_codes_enabled. */
|
|
6030
6016
|
supports_offline_access_codes?: boolean | undefined;
|
|
6031
6017
|
} & {
|
|
6018
|
+
assa_abloy_credential_service_metadata?: ({
|
|
6019
|
+
has_active_endpoint: boolean;
|
|
6020
|
+
endpoints: Array<{
|
|
6021
|
+
endpoint_id: string;
|
|
6022
|
+
is_active: boolean;
|
|
6023
|
+
}>;
|
|
6024
|
+
} | undefined) | undefined;
|
|
6025
|
+
}) & {
|
|
6032
6026
|
august_metadata?: {
|
|
6033
6027
|
lock_id: string;
|
|
6034
6028
|
lock_name: string;
|
|
@@ -6395,17 +6389,7 @@ export interface Routes {
|
|
|
6395
6389
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
6396
6390
|
max_cooling_set_point_celsius?: number | undefined;
|
|
6397
6391
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
6398
|
-
}))
|
|
6399
|
-
properties?: {
|
|
6400
|
-
assa_abloy_credential_service_metadata?: {
|
|
6401
|
-
has_active_endpoint: boolean;
|
|
6402
|
-
endpoints: Array<{
|
|
6403
|
-
endpoint_id: string;
|
|
6404
|
-
is_active: boolean;
|
|
6405
|
-
}>;
|
|
6406
|
-
} | undefined;
|
|
6407
|
-
} | undefined;
|
|
6408
|
-
};
|
|
6392
|
+
}));
|
|
6409
6393
|
/** Location information for the device. */
|
|
6410
6394
|
location: {
|
|
6411
6395
|
/** Name of the device location. */
|
|
@@ -6698,6 +6682,14 @@ export interface Routes {
|
|
|
6698
6682
|
/** Deprecated. Use offline_access_codes_enabled. */
|
|
6699
6683
|
supports_offline_access_codes?: boolean | undefined;
|
|
6700
6684
|
} & {
|
|
6685
|
+
assa_abloy_credential_service_metadata?: ({
|
|
6686
|
+
has_active_endpoint: boolean;
|
|
6687
|
+
endpoints: Array<{
|
|
6688
|
+
endpoint_id: string;
|
|
6689
|
+
is_active: boolean;
|
|
6690
|
+
}>;
|
|
6691
|
+
} | undefined) | undefined;
|
|
6692
|
+
}) & {
|
|
6701
6693
|
august_metadata?: {
|
|
6702
6694
|
lock_id: string;
|
|
6703
6695
|
lock_name: string;
|
|
@@ -7064,17 +7056,7 @@ export interface Routes {
|
|
|
7064
7056
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
7065
7057
|
max_cooling_set_point_celsius?: number | undefined;
|
|
7066
7058
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
7067
|
-
}))
|
|
7068
|
-
properties?: {
|
|
7069
|
-
assa_abloy_credential_service_metadata?: {
|
|
7070
|
-
has_active_endpoint: boolean;
|
|
7071
|
-
endpoints: Array<{
|
|
7072
|
-
endpoint_id: string;
|
|
7073
|
-
is_active: boolean;
|
|
7074
|
-
}>;
|
|
7075
|
-
} | undefined;
|
|
7076
|
-
} | undefined;
|
|
7077
|
-
};
|
|
7059
|
+
}));
|
|
7078
7060
|
/** Location information for the device. */
|
|
7079
7061
|
location: {
|
|
7080
7062
|
/** Name of the device location. */
|
|
@@ -24,10 +24,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
24
24
|
min_length?: number | undefined;
|
|
25
25
|
max_length?: number | undefined;
|
|
26
26
|
}>]>, "many">>>;
|
|
27
|
-
has_native_entry_events: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
28
|
-
max_active_codes_supported: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
29
27
|
supported_code_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
28
|
+
max_active_codes_supported: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
30
29
|
supports_backup_access_code_pool: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
30
|
+
has_native_entry_events: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
31
31
|
locked: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
32
32
|
keypad_battery: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
33
33
|
level: z.ZodNumber;
|
|
@@ -46,10 +46,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
46
46
|
min_length?: number | undefined;
|
|
47
47
|
max_length?: number | undefined;
|
|
48
48
|
})[] | undefined;
|
|
49
|
-
has_native_entry_events?: boolean | undefined;
|
|
50
|
-
max_active_codes_supported?: number | undefined;
|
|
51
49
|
supported_code_lengths?: number[] | undefined;
|
|
50
|
+
max_active_codes_supported?: number | undefined;
|
|
52
51
|
supports_backup_access_code_pool?: boolean | undefined;
|
|
52
|
+
has_native_entry_events?: boolean | undefined;
|
|
53
53
|
locked?: boolean | undefined;
|
|
54
54
|
keypad_battery?: {
|
|
55
55
|
level: number;
|
|
@@ -64,10 +64,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
64
64
|
min_length?: number | undefined;
|
|
65
65
|
max_length?: number | undefined;
|
|
66
66
|
})[] | undefined;
|
|
67
|
-
has_native_entry_events?: boolean | undefined;
|
|
68
|
-
max_active_codes_supported?: number | undefined;
|
|
69
67
|
supported_code_lengths?: number[] | undefined;
|
|
68
|
+
max_active_codes_supported?: number | undefined;
|
|
70
69
|
supports_backup_access_code_pool?: boolean | undefined;
|
|
70
|
+
has_native_entry_events?: boolean | undefined;
|
|
71
71
|
locked?: boolean | undefined;
|
|
72
72
|
keypad_battery?: {
|
|
73
73
|
level: number;
|