@seamapi/types 1.140.0 → 1.142.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 +113 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +137 -36
- package/dist/devicedb.d.cts +16 -16
- 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 +116 -36
- package/lib/seam/connect/openapi.js +111 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +21 -0
- package/lib/seam/connect/schemas.js.map +1 -0
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +25 -3
- 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 +6 -3
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +6 -3
- 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/lib/seam/devicedb/models/device-capability.d.ts +3 -3
- package/lib/seam/devicedb/models/device-model.d.ts +6 -6
- package/lib/seam/devicedb/route-specs.d.ts +10 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/index.ts +2 -2
- package/src/lib/seam/connect/openapi.ts +111 -9
- package/src/lib/seam/connect/route-types.ts +77 -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
package/dist/connect.d.cts
CHANGED
|
@@ -740,6 +740,9 @@ declare const _default: {
|
|
|
740
740
|
can_remotely_unlock: {
|
|
741
741
|
type: string;
|
|
742
742
|
};
|
|
743
|
+
can_simulate_removal: {
|
|
744
|
+
type: string;
|
|
745
|
+
};
|
|
743
746
|
capabilities_supported: {
|
|
744
747
|
description: string;
|
|
745
748
|
items: {
|
|
@@ -2388,6 +2391,9 @@ declare const _default: {
|
|
|
2388
2391
|
can_remotely_unlock: {
|
|
2389
2392
|
type: string;
|
|
2390
2393
|
};
|
|
2394
|
+
can_simulate_removal: {
|
|
2395
|
+
type: string;
|
|
2396
|
+
};
|
|
2391
2397
|
capabilities_supported: {
|
|
2392
2398
|
description: string;
|
|
2393
2399
|
items: {
|
|
@@ -2621,6 +2627,9 @@ declare const _default: {
|
|
|
2621
2627
|
can_remotely_unlock: {
|
|
2622
2628
|
type: string;
|
|
2623
2629
|
};
|
|
2630
|
+
can_simulate_removal: {
|
|
2631
|
+
type: string;
|
|
2632
|
+
};
|
|
2624
2633
|
capabilities_supported: {
|
|
2625
2634
|
description: string;
|
|
2626
2635
|
items: {
|
|
@@ -8930,20 +8939,25 @@ declare const _default: {
|
|
|
8930
8939
|
};
|
|
8931
8940
|
};
|
|
8932
8941
|
security: ({
|
|
8933
|
-
|
|
8934
|
-
|
|
8935
|
-
|
|
8936
|
-
|
|
8942
|
+
client_session: never[];
|
|
8943
|
+
pat_with_workspace?: never;
|
|
8944
|
+
console_session?: never;
|
|
8945
|
+
api_key?: never;
|
|
8937
8946
|
} | {
|
|
8938
|
-
|
|
8939
|
-
|
|
8940
|
-
|
|
8941
|
-
|
|
8947
|
+
pat_with_workspace: never[];
|
|
8948
|
+
client_session?: never;
|
|
8949
|
+
console_session?: never;
|
|
8950
|
+
api_key?: never;
|
|
8942
8951
|
} | {
|
|
8943
|
-
|
|
8944
|
-
|
|
8945
|
-
|
|
8946
|
-
|
|
8952
|
+
console_session: never[];
|
|
8953
|
+
client_session?: never;
|
|
8954
|
+
pat_with_workspace?: never;
|
|
8955
|
+
api_key?: never;
|
|
8956
|
+
} | {
|
|
8957
|
+
api_key: never[];
|
|
8958
|
+
client_session?: never;
|
|
8959
|
+
pat_with_workspace?: never;
|
|
8960
|
+
console_session?: never;
|
|
8947
8961
|
})[];
|
|
8948
8962
|
summary: string;
|
|
8949
8963
|
tags: string[];
|
|
@@ -10567,20 +10581,25 @@ declare const _default: {
|
|
|
10567
10581
|
};
|
|
10568
10582
|
};
|
|
10569
10583
|
security: ({
|
|
10570
|
-
|
|
10571
|
-
|
|
10572
|
-
|
|
10573
|
-
|
|
10584
|
+
client_session: never[];
|
|
10585
|
+
pat_with_workspace?: never;
|
|
10586
|
+
console_session?: never;
|
|
10587
|
+
api_key?: never;
|
|
10574
10588
|
} | {
|
|
10575
|
-
|
|
10576
|
-
|
|
10577
|
-
|
|
10578
|
-
|
|
10589
|
+
pat_with_workspace: never[];
|
|
10590
|
+
client_session?: never;
|
|
10591
|
+
console_session?: never;
|
|
10592
|
+
api_key?: never;
|
|
10579
10593
|
} | {
|
|
10580
|
-
|
|
10581
|
-
|
|
10582
|
-
|
|
10583
|
-
|
|
10594
|
+
console_session: never[];
|
|
10595
|
+
client_session?: never;
|
|
10596
|
+
pat_with_workspace?: never;
|
|
10597
|
+
api_key?: never;
|
|
10598
|
+
} | {
|
|
10599
|
+
api_key: never[];
|
|
10600
|
+
client_session?: never;
|
|
10601
|
+
pat_with_workspace?: never;
|
|
10602
|
+
console_session?: never;
|
|
10584
10603
|
})[];
|
|
10585
10604
|
summary: string;
|
|
10586
10605
|
tags: string[];
|
|
@@ -10662,6 +10681,20 @@ declare const _default: {
|
|
|
10662
10681
|
};
|
|
10663
10682
|
type: string;
|
|
10664
10683
|
};
|
|
10684
|
+
exclude_if: {
|
|
10685
|
+
items: {
|
|
10686
|
+
enum: string[];
|
|
10687
|
+
type: string;
|
|
10688
|
+
};
|
|
10689
|
+
type: string;
|
|
10690
|
+
};
|
|
10691
|
+
include_if: {
|
|
10692
|
+
items: {
|
|
10693
|
+
enum: string[];
|
|
10694
|
+
type: string;
|
|
10695
|
+
};
|
|
10696
|
+
type: string;
|
|
10697
|
+
};
|
|
10665
10698
|
limit: {
|
|
10666
10699
|
default: number;
|
|
10667
10700
|
nullable: boolean;
|
|
@@ -11010,6 +11043,20 @@ declare const _default: {
|
|
|
11010
11043
|
};
|
|
11011
11044
|
type: string;
|
|
11012
11045
|
};
|
|
11046
|
+
exclude_if: {
|
|
11047
|
+
items: {
|
|
11048
|
+
enum: string[];
|
|
11049
|
+
type: string;
|
|
11050
|
+
};
|
|
11051
|
+
type: string;
|
|
11052
|
+
};
|
|
11053
|
+
include_if: {
|
|
11054
|
+
items: {
|
|
11055
|
+
enum: string[];
|
|
11056
|
+
type: string;
|
|
11057
|
+
};
|
|
11058
|
+
type: string;
|
|
11059
|
+
};
|
|
11013
11060
|
limit: {
|
|
11014
11061
|
default: number;
|
|
11015
11062
|
nullable: boolean;
|
|
@@ -11941,20 +11988,25 @@ declare const _default: {
|
|
|
11941
11988
|
};
|
|
11942
11989
|
};
|
|
11943
11990
|
security: ({
|
|
11944
|
-
|
|
11945
|
-
|
|
11946
|
-
|
|
11947
|
-
|
|
11991
|
+
client_session: never[];
|
|
11992
|
+
pat_with_workspace?: never;
|
|
11993
|
+
console_session?: never;
|
|
11994
|
+
api_key?: never;
|
|
11948
11995
|
} | {
|
|
11949
|
-
|
|
11950
|
-
|
|
11951
|
-
|
|
11952
|
-
|
|
11996
|
+
pat_with_workspace: never[];
|
|
11997
|
+
client_session?: never;
|
|
11998
|
+
console_session?: never;
|
|
11999
|
+
api_key?: never;
|
|
11953
12000
|
} | {
|
|
11954
|
-
|
|
11955
|
-
|
|
11956
|
-
|
|
11957
|
-
|
|
12001
|
+
console_session: never[];
|
|
12002
|
+
client_session?: never;
|
|
12003
|
+
pat_with_workspace?: never;
|
|
12004
|
+
api_key?: never;
|
|
12005
|
+
} | {
|
|
12006
|
+
api_key: never[];
|
|
12007
|
+
client_session?: never;
|
|
12008
|
+
pat_with_workspace?: never;
|
|
12009
|
+
console_session?: never;
|
|
11958
12010
|
})[];
|
|
11959
12011
|
summary: string;
|
|
11960
12012
|
tags: string[];
|
|
@@ -12036,6 +12088,20 @@ declare const _default: {
|
|
|
12036
12088
|
};
|
|
12037
12089
|
type: string;
|
|
12038
12090
|
};
|
|
12091
|
+
exclude_if: {
|
|
12092
|
+
items: {
|
|
12093
|
+
enum: string[];
|
|
12094
|
+
type: string;
|
|
12095
|
+
};
|
|
12096
|
+
type: string;
|
|
12097
|
+
};
|
|
12098
|
+
include_if: {
|
|
12099
|
+
items: {
|
|
12100
|
+
enum: string[];
|
|
12101
|
+
type: string;
|
|
12102
|
+
};
|
|
12103
|
+
type: string;
|
|
12104
|
+
};
|
|
12039
12105
|
limit: {
|
|
12040
12106
|
default: number;
|
|
12041
12107
|
nullable: boolean;
|
|
@@ -14461,6 +14527,20 @@ declare const _default: {
|
|
|
14461
14527
|
};
|
|
14462
14528
|
type: string;
|
|
14463
14529
|
};
|
|
14530
|
+
exclude_if: {
|
|
14531
|
+
items: {
|
|
14532
|
+
enum: string[];
|
|
14533
|
+
type: string;
|
|
14534
|
+
};
|
|
14535
|
+
type: string;
|
|
14536
|
+
};
|
|
14537
|
+
include_if: {
|
|
14538
|
+
items: {
|
|
14539
|
+
enum: string[];
|
|
14540
|
+
type: string;
|
|
14541
|
+
};
|
|
14542
|
+
type: string;
|
|
14543
|
+
};
|
|
14464
14544
|
limit: {
|
|
14465
14545
|
default: number;
|
|
14466
14546
|
nullable: boolean;
|
|
@@ -19659,6 +19739,7 @@ interface Routes {
|
|
|
19659
19739
|
can_remotely_unlock?: boolean | undefined;
|
|
19660
19740
|
can_remotely_lock?: boolean | undefined;
|
|
19661
19741
|
can_program_online_access_codes?: boolean | undefined;
|
|
19742
|
+
can_simulate_removal?: boolean | undefined;
|
|
19662
19743
|
};
|
|
19663
19744
|
};
|
|
19664
19745
|
};
|
|
@@ -19680,6 +19761,8 @@ interface Routes {
|
|
|
19680
19761
|
created_before?: Date | undefined;
|
|
19681
19762
|
user_identifier_key?: string | undefined;
|
|
19682
19763
|
custom_metadata_has?: Record<string, string | boolean | null> | undefined;
|
|
19764
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
19765
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
19683
19766
|
};
|
|
19684
19767
|
formData: {};
|
|
19685
19768
|
jsonResponse: {
|
|
@@ -20167,6 +20250,7 @@ interface Routes {
|
|
|
20167
20250
|
can_remotely_unlock?: boolean | undefined;
|
|
20168
20251
|
can_remotely_lock?: boolean | undefined;
|
|
20169
20252
|
can_program_online_access_codes?: boolean | undefined;
|
|
20253
|
+
can_simulate_removal?: boolean | undefined;
|
|
20170
20254
|
}>;
|
|
20171
20255
|
};
|
|
20172
20256
|
};
|
|
@@ -20276,6 +20360,7 @@ interface Routes {
|
|
|
20276
20360
|
can_remotely_unlock?: boolean | undefined;
|
|
20277
20361
|
can_remotely_lock?: boolean | undefined;
|
|
20278
20362
|
can_program_online_access_codes?: boolean | undefined;
|
|
20363
|
+
can_simulate_removal?: boolean | undefined;
|
|
20279
20364
|
};
|
|
20280
20365
|
};
|
|
20281
20366
|
};
|
|
@@ -20297,6 +20382,8 @@ interface Routes {
|
|
|
20297
20382
|
created_before?: Date | undefined;
|
|
20298
20383
|
user_identifier_key?: string | undefined;
|
|
20299
20384
|
custom_metadata_has?: Record<string, string | boolean | null> | undefined;
|
|
20385
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
20386
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
20300
20387
|
};
|
|
20301
20388
|
formData: {};
|
|
20302
20389
|
jsonResponse: {
|
|
@@ -20366,6 +20453,7 @@ interface Routes {
|
|
|
20366
20453
|
can_remotely_unlock?: boolean | undefined;
|
|
20367
20454
|
can_remotely_lock?: boolean | undefined;
|
|
20368
20455
|
can_program_online_access_codes?: boolean | undefined;
|
|
20456
|
+
can_simulate_removal?: boolean | undefined;
|
|
20369
20457
|
}>;
|
|
20370
20458
|
};
|
|
20371
20459
|
};
|
|
@@ -21019,6 +21107,7 @@ interface Routes {
|
|
|
21019
21107
|
can_remotely_unlock?: boolean | undefined;
|
|
21020
21108
|
can_remotely_lock?: boolean | undefined;
|
|
21021
21109
|
can_program_online_access_codes?: boolean | undefined;
|
|
21110
|
+
can_simulate_removal?: boolean | undefined;
|
|
21022
21111
|
};
|
|
21023
21112
|
device: {
|
|
21024
21113
|
/** Unique identifier for the device. */
|
|
@@ -21504,6 +21593,7 @@ interface Routes {
|
|
|
21504
21593
|
can_remotely_unlock?: boolean | undefined;
|
|
21505
21594
|
can_remotely_lock?: boolean | undefined;
|
|
21506
21595
|
can_program_online_access_codes?: boolean | undefined;
|
|
21596
|
+
can_simulate_removal?: boolean | undefined;
|
|
21507
21597
|
};
|
|
21508
21598
|
};
|
|
21509
21599
|
};
|
|
@@ -21525,6 +21615,8 @@ interface Routes {
|
|
|
21525
21615
|
created_before?: Date | undefined;
|
|
21526
21616
|
user_identifier_key?: string | undefined;
|
|
21527
21617
|
custom_metadata_has?: Record<string, string | boolean | null> | undefined;
|
|
21618
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
21619
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
21528
21620
|
};
|
|
21529
21621
|
formData: {};
|
|
21530
21622
|
jsonResponse: {
|
|
@@ -22012,6 +22104,7 @@ interface Routes {
|
|
|
22012
22104
|
can_remotely_unlock?: boolean | undefined;
|
|
22013
22105
|
can_remotely_lock?: boolean | undefined;
|
|
22014
22106
|
can_program_online_access_codes?: boolean | undefined;
|
|
22107
|
+
can_simulate_removal?: boolean | undefined;
|
|
22015
22108
|
}>;
|
|
22016
22109
|
devices: Array<{
|
|
22017
22110
|
/** Unique identifier for the device. */
|
|
@@ -22497,6 +22590,7 @@ interface Routes {
|
|
|
22497
22590
|
can_remotely_unlock?: boolean | undefined;
|
|
22498
22591
|
can_remotely_lock?: boolean | undefined;
|
|
22499
22592
|
can_program_online_access_codes?: boolean | undefined;
|
|
22593
|
+
can_simulate_removal?: boolean | undefined;
|
|
22500
22594
|
}>;
|
|
22501
22595
|
};
|
|
22502
22596
|
};
|
|
@@ -22851,6 +22945,7 @@ interface Routes {
|
|
|
22851
22945
|
can_remotely_unlock?: boolean | undefined;
|
|
22852
22946
|
can_remotely_lock?: boolean | undefined;
|
|
22853
22947
|
can_program_online_access_codes?: boolean | undefined;
|
|
22948
|
+
can_simulate_removal?: boolean | undefined;
|
|
22854
22949
|
}>;
|
|
22855
22950
|
};
|
|
22856
22951
|
};
|
|
@@ -22925,6 +23020,7 @@ interface Routes {
|
|
|
22925
23020
|
can_remotely_unlock?: boolean | undefined;
|
|
22926
23021
|
can_remotely_lock?: boolean | undefined;
|
|
22927
23022
|
can_program_online_access_codes?: boolean | undefined;
|
|
23023
|
+
can_simulate_removal?: boolean | undefined;
|
|
22928
23024
|
};
|
|
22929
23025
|
};
|
|
22930
23026
|
};
|
|
@@ -23621,6 +23717,7 @@ interface Routes {
|
|
|
23621
23717
|
can_remotely_unlock?: boolean | undefined;
|
|
23622
23718
|
can_remotely_lock?: boolean | undefined;
|
|
23623
23719
|
can_program_online_access_codes?: boolean | undefined;
|
|
23720
|
+
can_simulate_removal?: boolean | undefined;
|
|
23624
23721
|
};
|
|
23625
23722
|
};
|
|
23626
23723
|
};
|
|
@@ -23718,6 +23815,8 @@ interface Routes {
|
|
|
23718
23815
|
created_before?: Date | undefined;
|
|
23719
23816
|
user_identifier_key?: string | undefined;
|
|
23720
23817
|
custom_metadata_has?: Record<string, string | boolean | null> | undefined;
|
|
23818
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
23819
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
23721
23820
|
};
|
|
23722
23821
|
formData: {};
|
|
23723
23822
|
jsonResponse: {
|
|
@@ -24205,6 +24304,7 @@ interface Routes {
|
|
|
24205
24304
|
can_remotely_unlock?: boolean | undefined;
|
|
24206
24305
|
can_remotely_lock?: boolean | undefined;
|
|
24207
24306
|
can_program_online_access_codes?: boolean | undefined;
|
|
24307
|
+
can_simulate_removal?: boolean | undefined;
|
|
24208
24308
|
}>;
|
|
24209
24309
|
};
|
|
24210
24310
|
};
|
|
@@ -24974,6 +25074,7 @@ interface Routes {
|
|
|
24974
25074
|
can_remotely_unlock?: boolean | undefined;
|
|
24975
25075
|
can_remotely_lock?: boolean | undefined;
|
|
24976
25076
|
can_program_online_access_codes?: boolean | undefined;
|
|
25077
|
+
can_simulate_removal?: boolean | undefined;
|
|
24977
25078
|
}>;
|
|
24978
25079
|
};
|
|
24979
25080
|
};
|
package/dist/devicedb.d.cts
CHANGED
|
@@ -118,8 +118,8 @@ declare const device_model_category_specific_properties: z.ZodDiscriminatedUnion
|
|
|
118
118
|
}>;
|
|
119
119
|
can_remotely_unlock: z.ZodOptional<z.ZodLiteral<true>>;
|
|
120
120
|
can_remotely_lock: z.ZodOptional<z.ZodLiteral<true>>;
|
|
121
|
-
can_program_offline_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
122
121
|
can_program_online_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
122
|
+
can_program_offline_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
123
123
|
}, "strip", z.ZodTypeAny, {
|
|
124
124
|
main_category: "smartlock";
|
|
125
125
|
physical_properties: {
|
|
@@ -135,8 +135,8 @@ declare const device_model_category_specific_properties: z.ZodDiscriminatedUnion
|
|
|
135
135
|
};
|
|
136
136
|
can_remotely_unlock?: true | undefined;
|
|
137
137
|
can_remotely_lock?: true | undefined;
|
|
138
|
-
can_program_offline_access_codes?: true | undefined;
|
|
139
138
|
can_program_online_access_codes?: true | undefined;
|
|
139
|
+
can_program_offline_access_codes?: true | undefined;
|
|
140
140
|
}, {
|
|
141
141
|
main_category: "smartlock";
|
|
142
142
|
physical_properties: {
|
|
@@ -152,8 +152,8 @@ declare const device_model_category_specific_properties: z.ZodDiscriminatedUnion
|
|
|
152
152
|
};
|
|
153
153
|
can_remotely_unlock?: true | undefined;
|
|
154
154
|
can_remotely_lock?: true | undefined;
|
|
155
|
-
can_program_offline_access_codes?: true | undefined;
|
|
156
155
|
can_program_online_access_codes?: true | undefined;
|
|
156
|
+
can_program_offline_access_codes?: true | undefined;
|
|
157
157
|
}>, z.ZodObject<{
|
|
158
158
|
main_category: z.ZodLiteral<"sensor">;
|
|
159
159
|
physical_properties: z.ZodObject<{
|
|
@@ -884,8 +884,8 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
884
884
|
}>;
|
|
885
885
|
can_remotely_unlock: z.ZodOptional<z.ZodLiteral<true>>;
|
|
886
886
|
can_remotely_lock: z.ZodOptional<z.ZodLiteral<true>>;
|
|
887
|
-
can_program_offline_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
888
887
|
can_program_online_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
888
|
+
can_program_offline_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
889
889
|
}, "strip", z.ZodTypeAny, {
|
|
890
890
|
main_category: "smartlock";
|
|
891
891
|
physical_properties: {
|
|
@@ -901,8 +901,8 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
901
901
|
};
|
|
902
902
|
can_remotely_unlock?: true | undefined;
|
|
903
903
|
can_remotely_lock?: true | undefined;
|
|
904
|
-
can_program_offline_access_codes?: true | undefined;
|
|
905
904
|
can_program_online_access_codes?: true | undefined;
|
|
905
|
+
can_program_offline_access_codes?: true | undefined;
|
|
906
906
|
}, {
|
|
907
907
|
main_category: "smartlock";
|
|
908
908
|
physical_properties: {
|
|
@@ -918,8 +918,8 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
918
918
|
};
|
|
919
919
|
can_remotely_unlock?: true | undefined;
|
|
920
920
|
can_remotely_lock?: true | undefined;
|
|
921
|
-
can_program_offline_access_codes?: true | undefined;
|
|
922
921
|
can_program_online_access_codes?: true | undefined;
|
|
922
|
+
can_program_offline_access_codes?: true | undefined;
|
|
923
923
|
}>, z.ZodObject<{
|
|
924
924
|
main_category: z.ZodLiteral<"sensor">;
|
|
925
925
|
physical_properties: z.ZodObject<{
|
|
@@ -1525,8 +1525,8 @@ declare const routes: {
|
|
|
1525
1525
|
}>;
|
|
1526
1526
|
can_remotely_unlock: z.ZodOptional<z.ZodLiteral<true>>;
|
|
1527
1527
|
can_remotely_lock: z.ZodOptional<z.ZodLiteral<true>>;
|
|
1528
|
-
can_program_offline_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
1529
1528
|
can_program_online_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
1529
|
+
can_program_offline_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
1530
1530
|
}, "strip", z.ZodTypeAny, {
|
|
1531
1531
|
main_category: "smartlock";
|
|
1532
1532
|
physical_properties: {
|
|
@@ -1542,8 +1542,8 @@ declare const routes: {
|
|
|
1542
1542
|
};
|
|
1543
1543
|
can_remotely_unlock?: true | undefined;
|
|
1544
1544
|
can_remotely_lock?: true | undefined;
|
|
1545
|
-
can_program_offline_access_codes?: true | undefined;
|
|
1546
1545
|
can_program_online_access_codes?: true | undefined;
|
|
1546
|
+
can_program_offline_access_codes?: true | undefined;
|
|
1547
1547
|
}, {
|
|
1548
1548
|
main_category: "smartlock";
|
|
1549
1549
|
physical_properties: {
|
|
@@ -1559,8 +1559,8 @@ declare const routes: {
|
|
|
1559
1559
|
};
|
|
1560
1560
|
can_remotely_unlock?: true | undefined;
|
|
1561
1561
|
can_remotely_lock?: true | undefined;
|
|
1562
|
-
can_program_offline_access_codes?: true | undefined;
|
|
1563
1562
|
can_program_online_access_codes?: true | undefined;
|
|
1563
|
+
can_program_offline_access_codes?: true | undefined;
|
|
1564
1564
|
}>, z.ZodObject<{
|
|
1565
1565
|
main_category: z.ZodLiteral<"sensor">;
|
|
1566
1566
|
physical_properties: z.ZodObject<{
|
|
@@ -1797,8 +1797,8 @@ declare const routes: {
|
|
|
1797
1797
|
};
|
|
1798
1798
|
can_remotely_unlock?: true | undefined;
|
|
1799
1799
|
can_remotely_lock?: true | undefined;
|
|
1800
|
-
can_program_offline_access_codes?: true | undefined;
|
|
1801
1800
|
can_program_online_access_codes?: true | undefined;
|
|
1801
|
+
can_program_offline_access_codes?: true | undefined;
|
|
1802
1802
|
}) | ({
|
|
1803
1803
|
display_name: string;
|
|
1804
1804
|
description: string;
|
|
@@ -2150,8 +2150,8 @@ declare const routes: {
|
|
|
2150
2150
|
};
|
|
2151
2151
|
can_remotely_unlock?: true | undefined;
|
|
2152
2152
|
can_remotely_lock?: true | undefined;
|
|
2153
|
-
can_program_offline_access_codes?: true | undefined;
|
|
2154
2153
|
can_program_online_access_codes?: true | undefined;
|
|
2154
|
+
can_program_offline_access_codes?: true | undefined;
|
|
2155
2155
|
}) | ({
|
|
2156
2156
|
display_name: string;
|
|
2157
2157
|
description: string;
|
|
@@ -2768,8 +2768,8 @@ declare const routes: {
|
|
|
2768
2768
|
}>;
|
|
2769
2769
|
can_remotely_unlock: z.ZodOptional<z.ZodLiteral<true>>;
|
|
2770
2770
|
can_remotely_lock: z.ZodOptional<z.ZodLiteral<true>>;
|
|
2771
|
-
can_program_offline_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
2772
2771
|
can_program_online_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
2772
|
+
can_program_offline_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
2773
2773
|
}, "strip", z.ZodTypeAny, {
|
|
2774
2774
|
main_category: "smartlock";
|
|
2775
2775
|
physical_properties: {
|
|
@@ -2785,8 +2785,8 @@ declare const routes: {
|
|
|
2785
2785
|
};
|
|
2786
2786
|
can_remotely_unlock?: true | undefined;
|
|
2787
2787
|
can_remotely_lock?: true | undefined;
|
|
2788
|
-
can_program_offline_access_codes?: true | undefined;
|
|
2789
2788
|
can_program_online_access_codes?: true | undefined;
|
|
2789
|
+
can_program_offline_access_codes?: true | undefined;
|
|
2790
2790
|
}, {
|
|
2791
2791
|
main_category: "smartlock";
|
|
2792
2792
|
physical_properties: {
|
|
@@ -2802,8 +2802,8 @@ declare const routes: {
|
|
|
2802
2802
|
};
|
|
2803
2803
|
can_remotely_unlock?: true | undefined;
|
|
2804
2804
|
can_remotely_lock?: true | undefined;
|
|
2805
|
-
can_program_offline_access_codes?: true | undefined;
|
|
2806
2805
|
can_program_online_access_codes?: true | undefined;
|
|
2806
|
+
can_program_offline_access_codes?: true | undefined;
|
|
2807
2807
|
}>, z.ZodObject<{
|
|
2808
2808
|
main_category: z.ZodLiteral<"sensor">;
|
|
2809
2809
|
physical_properties: z.ZodObject<{
|
|
@@ -3040,8 +3040,8 @@ declare const routes: {
|
|
|
3040
3040
|
};
|
|
3041
3041
|
can_remotely_unlock?: true | undefined;
|
|
3042
3042
|
can_remotely_lock?: true | undefined;
|
|
3043
|
-
can_program_offline_access_codes?: true | undefined;
|
|
3044
3043
|
can_program_online_access_codes?: true | undefined;
|
|
3044
|
+
can_program_offline_access_codes?: true | undefined;
|
|
3045
3045
|
} | {
|
|
3046
3046
|
main_category: "sensor";
|
|
3047
3047
|
physical_properties: {
|
|
@@ -3148,8 +3148,8 @@ declare const routes: {
|
|
|
3148
3148
|
};
|
|
3149
3149
|
can_remotely_unlock?: true | undefined;
|
|
3150
3150
|
can_remotely_lock?: true | undefined;
|
|
3151
|
-
can_program_offline_access_codes?: true | undefined;
|
|
3152
3151
|
can_program_online_access_codes?: true | undefined;
|
|
3152
|
+
can_program_offline_access_codes?: true | undefined;
|
|
3153
3153
|
} | {
|
|
3154
3154
|
main_category: "sensor";
|
|
3155
3155
|
physical_properties: {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as schemas from './
|
|
1
|
+
import * as schemas from './schemas.js';
|
|
2
2
|
export { schemas };
|
|
3
|
+
export * from './model-types.js';
|
|
3
4
|
export { default as openapi } from './openapi.js';
|
|
4
5
|
export * from './route-types.js';
|
|
5
|
-
export * from './stable/model-types.js';
|
|
6
6
|
export declare const routes: {};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as schemas from './
|
|
1
|
+
import * as schemas from './schemas.js';
|
|
2
2
|
export { schemas };
|
|
3
|
+
export * from './model-types.js';
|
|
3
4
|
export { default as openapi } from './openapi.js';
|
|
4
5
|
export * from './route-types.js';
|
|
5
|
-
export * from './stable/model-types.js';
|
|
6
6
|
// UPSTREAM: Reserve this named export until nextlove is able to generate this.
|
|
7
7
|
export const routes = {};
|
|
8
8
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/seam/connect/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/seam/connect/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,cAAc,CAAA;AAEvC,OAAO,EAAE,OAAO,EAAE,CAAA;AAElB,cAAc,kBAAkB,CAAA;AAChC,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAA;AACjD,cAAc,kBAAkB,CAAA;AAEhC,+EAA+E;AAC/E,MAAM,CAAC,MAAM,MAAM,GAAG,EAAE,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"model-types.js","sourceRoot":"","sources":["../../../src/lib/seam/connect/model-types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"custom-metadata.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA"}
|