@seamapi/types 1.148.1 → 1.149.1
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 +32 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +60 -28
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/models/{connect-webview.d.ts → connect-webviews/connect-webview.d.ts} +6 -5
- package/lib/seam/connect/models/{connect-webview.js → connect-webviews/connect-webview.js} +12 -5
- package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -0
- package/lib/seam/connect/models/connect-webviews/index.d.ts +1 -0
- package/lib/seam/connect/models/connect-webviews/index.js +2 -0
- package/lib/seam/connect/models/connect-webviews/index.js.map +1 -0
- 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 -5
- package/lib/seam/connect/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/models/index.d.ts +1 -1
- package/lib/seam/connect/models/index.js +1 -1
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +26 -12
- package/lib/seam/connect/openapi.js +19 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +29 -11
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +2 -0
- package/src/lib/seam/connect/models/acs/entrance.ts +1 -0
- package/src/lib/seam/connect/models/{connect-webview.ts → connect-webviews/connect-webview.ts} +16 -5
- package/src/lib/seam/connect/models/connect-webviews/index.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +2 -0
- package/src/lib/seam/connect/models/devices/managed-device.ts +0 -9
- package/src/lib/seam/connect/models/index.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +19 -8
- package/src/lib/seam/connect/route-types.ts +29 -11
- package/lib/seam/connect/models/connect-webview.js.map +0 -1
|
@@ -1773,23 +1773,23 @@ export interface Routes {
|
|
|
1773
1773
|
accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
1774
1774
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
1775
1775
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
1776
|
-
automatically_manage_new_devices?: boolean
|
|
1777
|
-
wait_for_device_creation?: boolean
|
|
1776
|
+
automatically_manage_new_devices?: boolean;
|
|
1777
|
+
wait_for_device_creation?: boolean;
|
|
1778
1778
|
};
|
|
1779
1779
|
commonParams: {};
|
|
1780
1780
|
formData: {};
|
|
1781
1781
|
jsonResponse: {
|
|
1782
1782
|
connect_webview: {
|
|
1783
1783
|
connect_webview_id: string;
|
|
1784
|
-
connected_account_id?: string | undefined;
|
|
1785
|
-
url: string;
|
|
1786
1784
|
workspace_id: string;
|
|
1785
|
+
created_at: string;
|
|
1786
|
+
connected_account_id: string | null;
|
|
1787
|
+
url: string;
|
|
1787
1788
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
1788
1789
|
accepted_providers: string[];
|
|
1789
1790
|
accepted_devices: string[];
|
|
1790
1791
|
any_provider_allowed: boolean;
|
|
1791
1792
|
any_device_allowed: boolean;
|
|
1792
|
-
created_at: string;
|
|
1793
1793
|
login_successful: boolean;
|
|
1794
1794
|
status: 'pending' | 'failed' | 'authorized';
|
|
1795
1795
|
custom_redirect_url: string | null;
|
|
@@ -1825,15 +1825,15 @@ export interface Routes {
|
|
|
1825
1825
|
jsonResponse: {
|
|
1826
1826
|
connect_webview: {
|
|
1827
1827
|
connect_webview_id: string;
|
|
1828
|
-
connected_account_id?: string | undefined;
|
|
1829
|
-
url: string;
|
|
1830
1828
|
workspace_id: string;
|
|
1829
|
+
created_at: string;
|
|
1830
|
+
connected_account_id: string | null;
|
|
1831
|
+
url: string;
|
|
1831
1832
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
1832
1833
|
accepted_providers: string[];
|
|
1833
1834
|
accepted_devices: string[];
|
|
1834
1835
|
any_provider_allowed: boolean;
|
|
1835
1836
|
any_device_allowed: boolean;
|
|
1836
|
-
created_at: string;
|
|
1837
1837
|
login_successful: boolean;
|
|
1838
1838
|
status: 'pending' | 'failed' | 'authorized';
|
|
1839
1839
|
custom_redirect_url: string | null;
|
|
@@ -1860,15 +1860,15 @@ export interface Routes {
|
|
|
1860
1860
|
jsonResponse: {
|
|
1861
1861
|
connect_webviews: Array<{
|
|
1862
1862
|
connect_webview_id: string;
|
|
1863
|
-
connected_account_id?: string | undefined;
|
|
1864
|
-
url: string;
|
|
1865
1863
|
workspace_id: string;
|
|
1864
|
+
created_at: string;
|
|
1865
|
+
connected_account_id: string | null;
|
|
1866
|
+
url: string;
|
|
1866
1867
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
1867
1868
|
accepted_providers: string[];
|
|
1868
1869
|
accepted_devices: string[];
|
|
1869
1870
|
any_provider_allowed: boolean;
|
|
1870
1871
|
any_device_allowed: boolean;
|
|
1871
|
-
created_at: string;
|
|
1872
1872
|
login_successful: boolean;
|
|
1873
1873
|
status: 'pending' | 'failed' | 'authorized';
|
|
1874
1874
|
custom_redirect_url: string | null;
|
|
@@ -2150,6 +2150,8 @@ export interface Routes {
|
|
|
2150
2150
|
device_id: string;
|
|
2151
2151
|
device_name: string;
|
|
2152
2152
|
keypad_battery_critical?: boolean | undefined;
|
|
2153
|
+
keypad_paired?: boolean | undefined;
|
|
2154
|
+
keypad_2_paired?: boolean | undefined;
|
|
2153
2155
|
} | undefined;
|
|
2154
2156
|
kwikset_metadata?: {
|
|
2155
2157
|
device_id: string;
|
|
@@ -2679,6 +2681,8 @@ export interface Routes {
|
|
|
2679
2681
|
device_id: string;
|
|
2680
2682
|
device_name: string;
|
|
2681
2683
|
keypad_battery_critical?: boolean | undefined;
|
|
2684
|
+
keypad_paired?: boolean | undefined;
|
|
2685
|
+
keypad_2_paired?: boolean | undefined;
|
|
2682
2686
|
} | undefined;
|
|
2683
2687
|
kwikset_metadata?: {
|
|
2684
2688
|
device_id: string;
|
|
@@ -3582,6 +3586,8 @@ export interface Routes {
|
|
|
3582
3586
|
device_id: string;
|
|
3583
3587
|
device_name: string;
|
|
3584
3588
|
keypad_battery_critical?: boolean | undefined;
|
|
3589
|
+
keypad_paired?: boolean | undefined;
|
|
3590
|
+
keypad_2_paired?: boolean | undefined;
|
|
3585
3591
|
} | undefined;
|
|
3586
3592
|
kwikset_metadata?: {
|
|
3587
3593
|
device_id: string;
|
|
@@ -4086,6 +4092,8 @@ export interface Routes {
|
|
|
4086
4092
|
device_id: string;
|
|
4087
4093
|
device_name: string;
|
|
4088
4094
|
keypad_battery_critical?: boolean | undefined;
|
|
4095
|
+
keypad_paired?: boolean | undefined;
|
|
4096
|
+
keypad_2_paired?: boolean | undefined;
|
|
4089
4097
|
} | undefined;
|
|
4090
4098
|
kwikset_metadata?: {
|
|
4091
4099
|
device_id: string;
|
|
@@ -4615,6 +4623,8 @@ export interface Routes {
|
|
|
4615
4623
|
device_id: string;
|
|
4616
4624
|
device_name: string;
|
|
4617
4625
|
keypad_battery_critical?: boolean | undefined;
|
|
4626
|
+
keypad_paired?: boolean | undefined;
|
|
4627
|
+
keypad_2_paired?: boolean | undefined;
|
|
4618
4628
|
} | undefined;
|
|
4619
4629
|
kwikset_metadata?: {
|
|
4620
4630
|
device_id: string;
|
|
@@ -5119,6 +5129,8 @@ export interface Routes {
|
|
|
5119
5129
|
device_id: string;
|
|
5120
5130
|
device_name: string;
|
|
5121
5131
|
keypad_battery_critical?: boolean | undefined;
|
|
5132
|
+
keypad_paired?: boolean | undefined;
|
|
5133
|
+
keypad_2_paired?: boolean | undefined;
|
|
5122
5134
|
} | undefined;
|
|
5123
5135
|
kwikset_metadata?: {
|
|
5124
5136
|
device_id: string;
|
|
@@ -6264,6 +6276,8 @@ export interface Routes {
|
|
|
6264
6276
|
device_id: string;
|
|
6265
6277
|
device_name: string;
|
|
6266
6278
|
keypad_battery_critical?: boolean | undefined;
|
|
6279
|
+
keypad_paired?: boolean | undefined;
|
|
6280
|
+
keypad_2_paired?: boolean | undefined;
|
|
6267
6281
|
} | undefined;
|
|
6268
6282
|
kwikset_metadata?: {
|
|
6269
6283
|
device_id: string;
|
|
@@ -6869,6 +6883,8 @@ export interface Routes {
|
|
|
6869
6883
|
device_id: string;
|
|
6870
6884
|
device_name: string;
|
|
6871
6885
|
keypad_battery_critical?: boolean | undefined;
|
|
6886
|
+
keypad_paired?: boolean | undefined;
|
|
6887
|
+
keypad_2_paired?: boolean | undefined;
|
|
6872
6888
|
} | undefined;
|
|
6873
6889
|
kwikset_metadata?: {
|
|
6874
6890
|
device_id: string;
|
|
@@ -7657,6 +7673,8 @@ export interface Routes {
|
|
|
7657
7673
|
device_id: string;
|
|
7658
7674
|
device_name: string;
|
|
7659
7675
|
keypad_battery_critical?: boolean | undefined;
|
|
7676
|
+
keypad_paired?: boolean | undefined;
|
|
7677
|
+
keypad_2_paired?: boolean | undefined;
|
|
7660
7678
|
} | undefined;
|
|
7661
7679
|
kwikset_metadata?: {
|
|
7662
7680
|
device_id: string;
|
package/package.json
CHANGED
|
@@ -20,8 +20,10 @@ export {
|
|
|
20
20
|
climate_setting,
|
|
21
21
|
climate_setting_schedule,
|
|
22
22
|
common_device_properties,
|
|
23
|
+
connect_webview_device_selection_mode,
|
|
23
24
|
custom_metadata_input,
|
|
24
25
|
device_capability_flags,
|
|
26
|
+
device_metadata,
|
|
25
27
|
dormakaba_oracode_time_slot,
|
|
26
28
|
enrollment_automation,
|
|
27
29
|
fan_mode_setting,
|
package/src/lib/seam/connect/models/{connect-webview.ts → connect-webviews/connect-webview.ts}
RENAMED
|
@@ -1,18 +1,29 @@
|
|
|
1
1
|
import { z } from 'zod'
|
|
2
2
|
|
|
3
|
-
import { custom_metadata } from '
|
|
3
|
+
import { custom_metadata } from '../custom-metadata.js'
|
|
4
|
+
|
|
5
|
+
export const connect_webview_device_selection_mode = z.enum([
|
|
6
|
+
'none',
|
|
7
|
+
'single',
|
|
8
|
+
'multiple',
|
|
9
|
+
])
|
|
4
10
|
|
|
5
11
|
export const connect_webview = z.object({
|
|
6
12
|
connect_webview_id: z.string().uuid(),
|
|
7
|
-
connected_account_id: z.string().uuid().optional(),
|
|
8
|
-
url: z.string().url(),
|
|
9
13
|
workspace_id: z.string().uuid(),
|
|
10
|
-
|
|
14
|
+
created_at: z.string().datetime(),
|
|
15
|
+
connected_account_id: z.string().uuid().nullable(),
|
|
16
|
+
url: z.string().url(),
|
|
17
|
+
device_selection_mode: connect_webview_device_selection_mode,
|
|
18
|
+
|
|
19
|
+
// TODO: Use enum value.
|
|
11
20
|
accepted_providers: z.array(z.string()),
|
|
21
|
+
|
|
22
|
+
// TODO: Use enum value.
|
|
12
23
|
accepted_devices: z.array(z.string()),
|
|
24
|
+
|
|
13
25
|
any_provider_allowed: z.boolean(),
|
|
14
26
|
any_device_allowed: z.boolean(),
|
|
15
|
-
created_at: z.string().datetime(),
|
|
16
27
|
login_successful: z.boolean(),
|
|
17
28
|
status: z.enum(['pending', 'failed', 'authorized']),
|
|
18
29
|
custom_redirect_url: z.string().url().nullable(),
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './connect-webview.js'
|
|
@@ -62,6 +62,8 @@ export const device_metadata = z
|
|
|
62
62
|
device_id: z.string(),
|
|
63
63
|
device_name: z.string(),
|
|
64
64
|
keypad_battery_critical: z.boolean().optional(),
|
|
65
|
+
keypad_paired: z.boolean().optional(),
|
|
66
|
+
keypad_2_paired: z.boolean().optional(),
|
|
65
67
|
}),
|
|
66
68
|
|
|
67
69
|
kwikset_metadata: z.object({
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { SetRequired, Simplify } from 'type-fest'
|
|
2
1
|
import { z } from 'zod'
|
|
3
2
|
|
|
4
3
|
import { schemas as devicedb_schemas } from '@seamapi/types/devicedb'
|
|
@@ -229,11 +228,3 @@ export const managed_device = z
|
|
|
229
228
|
.merge(device_capability_flags)
|
|
230
229
|
|
|
231
230
|
export type ManagedDevice = z.infer<typeof managed_device>
|
|
232
|
-
|
|
233
|
-
export type ManagedDeviceWithBackendMetadata<
|
|
234
|
-
MetadataKey extends keyof z.infer<typeof device_metadata>,
|
|
235
|
-
> = Simplify<
|
|
236
|
-
ManagedDevice & {
|
|
237
|
-
properties: SetRequired<ManagedDevice['properties'], MetadataKey>
|
|
238
|
-
}
|
|
239
|
-
>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * from './access-codes/index.js'
|
|
2
2
|
export * from './acs/index.js'
|
|
3
3
|
export * from './capability-properties/index.js'
|
|
4
|
-
export * from './connect-
|
|
4
|
+
export * from './connect-webviews/index.js'
|
|
5
5
|
export * from './custom-metadata.js'
|
|
6
6
|
export * from './devices/index.js'
|
|
7
7
|
export * from './network.js'
|
|
@@ -434,7 +434,11 @@ export default {
|
|
|
434
434
|
},
|
|
435
435
|
automatically_manage_new_devices: { type: 'boolean' },
|
|
436
436
|
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
437
|
-
connected_account_id: {
|
|
437
|
+
connected_account_id: {
|
|
438
|
+
format: 'uuid',
|
|
439
|
+
nullable: true,
|
|
440
|
+
type: 'string',
|
|
441
|
+
},
|
|
438
442
|
created_at: { format: 'date-time', type: 'string' },
|
|
439
443
|
custom_metadata: {
|
|
440
444
|
additionalProperties: {
|
|
@@ -465,14 +469,15 @@ export default {
|
|
|
465
469
|
},
|
|
466
470
|
required: [
|
|
467
471
|
'connect_webview_id',
|
|
468
|
-
'url',
|
|
469
472
|
'workspace_id',
|
|
473
|
+
'created_at',
|
|
474
|
+
'connected_account_id',
|
|
475
|
+
'url',
|
|
470
476
|
'device_selection_mode',
|
|
471
477
|
'accepted_providers',
|
|
472
478
|
'accepted_devices',
|
|
473
479
|
'any_provider_allowed',
|
|
474
480
|
'any_device_allowed',
|
|
475
|
-
'created_at',
|
|
476
481
|
'login_successful',
|
|
477
482
|
'status',
|
|
478
483
|
'custom_redirect_url',
|
|
@@ -1137,7 +1142,9 @@ export default {
|
|
|
1137
1142
|
properties: {
|
|
1138
1143
|
device_id: { type: 'string' },
|
|
1139
1144
|
device_name: { type: 'string' },
|
|
1145
|
+
keypad_2_paired: { type: 'boolean' },
|
|
1140
1146
|
keypad_battery_critical: { type: 'boolean' },
|
|
1147
|
+
keypad_paired: { type: 'boolean' },
|
|
1141
1148
|
},
|
|
1142
1149
|
required: ['device_id', 'device_name'],
|
|
1143
1150
|
type: 'object',
|
|
@@ -7232,7 +7239,10 @@ export default {
|
|
|
7232
7239
|
},
|
|
7233
7240
|
type: 'array',
|
|
7234
7241
|
},
|
|
7235
|
-
automatically_manage_new_devices: {
|
|
7242
|
+
automatically_manage_new_devices: {
|
|
7243
|
+
default: true,
|
|
7244
|
+
type: 'boolean',
|
|
7245
|
+
},
|
|
7236
7246
|
custom_metadata: {
|
|
7237
7247
|
additionalProperties: {
|
|
7238
7248
|
nullable: true,
|
|
@@ -7261,7 +7271,7 @@ export default {
|
|
|
7261
7271
|
],
|
|
7262
7272
|
type: 'string',
|
|
7263
7273
|
},
|
|
7264
|
-
wait_for_device_creation: { type: 'boolean' },
|
|
7274
|
+
wait_for_device_creation: { default: false, type: 'boolean' },
|
|
7265
7275
|
},
|
|
7266
7276
|
type: 'object',
|
|
7267
7277
|
},
|
|
@@ -7382,9 +7392,10 @@ export default {
|
|
|
7382
7392
|
401: { description: 'Unauthorized' },
|
|
7383
7393
|
},
|
|
7384
7394
|
security: [
|
|
7385
|
-
{
|
|
7386
|
-
{
|
|
7387
|
-
{
|
|
7395
|
+
{ client_session: [] },
|
|
7396
|
+
{ pat_with_workspace: [] },
|
|
7397
|
+
{ console_session: [] },
|
|
7398
|
+
{ api_key: [] },
|
|
7388
7399
|
],
|
|
7389
7400
|
summary: '/connect_webviews/get',
|
|
7390
7401
|
tags: ['/connect_webviews'],
|
|
@@ -2025,23 +2025,23 @@ export interface Routes {
|
|
|
2025
2025
|
)
|
|
2026
2026
|
| undefined
|
|
2027
2027
|
custom_metadata?: Record<string, string | boolean | null> | undefined
|
|
2028
|
-
automatically_manage_new_devices?: boolean
|
|
2029
|
-
wait_for_device_creation?: boolean
|
|
2028
|
+
automatically_manage_new_devices?: boolean
|
|
2029
|
+
wait_for_device_creation?: boolean
|
|
2030
2030
|
}
|
|
2031
2031
|
commonParams: {}
|
|
2032
2032
|
formData: {}
|
|
2033
2033
|
jsonResponse: {
|
|
2034
2034
|
connect_webview: {
|
|
2035
2035
|
connect_webview_id: string
|
|
2036
|
-
connected_account_id?: string | undefined
|
|
2037
|
-
url: string
|
|
2038
2036
|
workspace_id: string
|
|
2037
|
+
created_at: string
|
|
2038
|
+
connected_account_id: string | null
|
|
2039
|
+
url: string
|
|
2039
2040
|
device_selection_mode: 'none' | 'single' | 'multiple'
|
|
2040
2041
|
accepted_providers: string[]
|
|
2041
2042
|
accepted_devices: string[]
|
|
2042
2043
|
any_provider_allowed: boolean
|
|
2043
2044
|
any_device_allowed: boolean
|
|
2044
|
-
created_at: string
|
|
2045
2045
|
login_successful: boolean
|
|
2046
2046
|
status: 'pending' | 'failed' | 'authorized'
|
|
2047
2047
|
custom_redirect_url: string | null
|
|
@@ -2077,15 +2077,15 @@ export interface Routes {
|
|
|
2077
2077
|
jsonResponse: {
|
|
2078
2078
|
connect_webview: {
|
|
2079
2079
|
connect_webview_id: string
|
|
2080
|
-
connected_account_id?: string | undefined
|
|
2081
|
-
url: string
|
|
2082
2080
|
workspace_id: string
|
|
2081
|
+
created_at: string
|
|
2082
|
+
connected_account_id: string | null
|
|
2083
|
+
url: string
|
|
2083
2084
|
device_selection_mode: 'none' | 'single' | 'multiple'
|
|
2084
2085
|
accepted_providers: string[]
|
|
2085
2086
|
accepted_devices: string[]
|
|
2086
2087
|
any_provider_allowed: boolean
|
|
2087
2088
|
any_device_allowed: boolean
|
|
2088
|
-
created_at: string
|
|
2089
2089
|
login_successful: boolean
|
|
2090
2090
|
status: 'pending' | 'failed' | 'authorized'
|
|
2091
2091
|
custom_redirect_url: string | null
|
|
@@ -2112,15 +2112,15 @@ export interface Routes {
|
|
|
2112
2112
|
jsonResponse: {
|
|
2113
2113
|
connect_webviews: Array<{
|
|
2114
2114
|
connect_webview_id: string
|
|
2115
|
-
connected_account_id?: string | undefined
|
|
2116
|
-
url: string
|
|
2117
2115
|
workspace_id: string
|
|
2116
|
+
created_at: string
|
|
2117
|
+
connected_account_id: string | null
|
|
2118
|
+
url: string
|
|
2118
2119
|
device_selection_mode: 'none' | 'single' | 'multiple'
|
|
2119
2120
|
accepted_providers: string[]
|
|
2120
2121
|
accepted_devices: string[]
|
|
2121
2122
|
any_provider_allowed: boolean
|
|
2122
2123
|
any_device_allowed: boolean
|
|
2123
|
-
created_at: string
|
|
2124
2124
|
login_successful: boolean
|
|
2125
2125
|
status: 'pending' | 'failed' | 'authorized'
|
|
2126
2126
|
custom_redirect_url: string | null
|
|
@@ -2474,6 +2474,8 @@ export interface Routes {
|
|
|
2474
2474
|
device_id: string
|
|
2475
2475
|
device_name: string
|
|
2476
2476
|
keypad_battery_critical?: boolean | undefined
|
|
2477
|
+
keypad_paired?: boolean | undefined
|
|
2478
|
+
keypad_2_paired?: boolean | undefined
|
|
2477
2479
|
}
|
|
2478
2480
|
| undefined
|
|
2479
2481
|
kwikset_metadata?:
|
|
@@ -3349,6 +3351,8 @@ export interface Routes {
|
|
|
3349
3351
|
device_id: string
|
|
3350
3352
|
device_name: string
|
|
3351
3353
|
keypad_battery_critical?: boolean | undefined
|
|
3354
|
+
keypad_paired?: boolean | undefined
|
|
3355
|
+
keypad_2_paired?: boolean | undefined
|
|
3352
3356
|
}
|
|
3353
3357
|
| undefined
|
|
3354
3358
|
kwikset_metadata?:
|
|
@@ -4857,6 +4861,8 @@ export interface Routes {
|
|
|
4857
4861
|
device_id: string
|
|
4858
4862
|
device_name: string
|
|
4859
4863
|
keypad_battery_critical?: boolean | undefined
|
|
4864
|
+
keypad_paired?: boolean | undefined
|
|
4865
|
+
keypad_2_paired?: boolean | undefined
|
|
4860
4866
|
}
|
|
4861
4867
|
| undefined
|
|
4862
4868
|
kwikset_metadata?:
|
|
@@ -5580,6 +5586,8 @@ export interface Routes {
|
|
|
5580
5586
|
device_id: string
|
|
5581
5587
|
device_name: string
|
|
5582
5588
|
keypad_battery_critical?: boolean | undefined
|
|
5589
|
+
keypad_paired?: boolean | undefined
|
|
5590
|
+
keypad_2_paired?: boolean | undefined
|
|
5583
5591
|
}
|
|
5584
5592
|
| undefined
|
|
5585
5593
|
kwikset_metadata?:
|
|
@@ -6455,6 +6463,8 @@ export interface Routes {
|
|
|
6455
6463
|
device_id: string
|
|
6456
6464
|
device_name: string
|
|
6457
6465
|
keypad_battery_critical?: boolean | undefined
|
|
6466
|
+
keypad_paired?: boolean | undefined
|
|
6467
|
+
keypad_2_paired?: boolean | undefined
|
|
6458
6468
|
}
|
|
6459
6469
|
| undefined
|
|
6460
6470
|
kwikset_metadata?:
|
|
@@ -7178,6 +7188,8 @@ export interface Routes {
|
|
|
7178
7188
|
device_id: string
|
|
7179
7189
|
device_name: string
|
|
7180
7190
|
keypad_battery_critical?: boolean | undefined
|
|
7191
|
+
keypad_paired?: boolean | undefined
|
|
7192
|
+
keypad_2_paired?: boolean | undefined
|
|
7181
7193
|
}
|
|
7182
7194
|
| undefined
|
|
7183
7195
|
kwikset_metadata?:
|
|
@@ -8578,6 +8590,8 @@ export interface Routes {
|
|
|
8578
8590
|
device_id: string
|
|
8579
8591
|
device_name: string
|
|
8580
8592
|
keypad_battery_critical?: boolean | undefined
|
|
8593
|
+
keypad_paired?: boolean | undefined
|
|
8594
|
+
keypad_2_paired?: boolean | undefined
|
|
8581
8595
|
}
|
|
8582
8596
|
| undefined
|
|
8583
8597
|
kwikset_metadata?:
|
|
@@ -9535,6 +9549,8 @@ export interface Routes {
|
|
|
9535
9549
|
device_id: string
|
|
9536
9550
|
device_name: string
|
|
9537
9551
|
keypad_battery_critical?: boolean | undefined
|
|
9552
|
+
keypad_paired?: boolean | undefined
|
|
9553
|
+
keypad_2_paired?: boolean | undefined
|
|
9538
9554
|
}
|
|
9539
9555
|
| undefined
|
|
9540
9556
|
kwikset_metadata?:
|
|
@@ -10550,6 +10566,8 @@ export interface Routes {
|
|
|
10550
10566
|
device_id: string
|
|
10551
10567
|
device_name: string
|
|
10552
10568
|
keypad_battery_critical?: boolean | undefined
|
|
10569
|
+
keypad_paired?: boolean | undefined
|
|
10570
|
+
keypad_2_paired?: boolean | undefined
|
|
10553
10571
|
}
|
|
10554
10572
|
| undefined
|
|
10555
10573
|
kwikset_metadata?:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"connect-webview.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/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"}
|