@seamapi/types 1.1003.0 → 1.1005.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/lib/seam/connect/models/access-grants/access-method.d.ts +6 -0
- package/lib/seam/connect/models/access-grants/access-method.js +3 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +5 -0
- package/lib/seam/connect/models/action-attempts/assign-credential.d.ts +5 -0
- package/lib/seam/connect/openapi.js +15 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +82 -0
- package/package.json +4 -11
- package/src/lib/seam/connect/models/access-grants/access-method.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +18 -0
- package/src/lib/seam/connect/route-types.ts +82 -0
- package/devicedb.d.ts +0 -1
- package/devicedb.js +0 -2
- package/devicedb.js.map +0 -1
- package/lib/seam/devicedb/index.d.ts +0 -5
- package/lib/seam/devicedb/index.js +0 -5
- package/lib/seam/devicedb/index.js.map +0 -1
- package/lib/seam/devicedb/models/device-capability.d.ts +0 -57
- package/lib/seam/devicedb/models/device-capability.js +0 -27
- package/lib/seam/devicedb/models/device-capability.js.map +0 -1
- package/lib/seam/devicedb/models/device-model.d.ts +0 -1247
- package/lib/seam/devicedb/models/device-model.js +0 -136
- package/lib/seam/devicedb/models/device-model.js.map +0 -1
- package/lib/seam/devicedb/models/hardware.d.ts +0 -8
- package/lib/seam/devicedb/models/hardware.js +0 -7
- package/lib/seam/devicedb/models/hardware.js.map +0 -1
- package/lib/seam/devicedb/models/image-reference.d.ts +0 -15
- package/lib/seam/devicedb/models/image-reference.js +0 -7
- package/lib/seam/devicedb/models/image-reference.js.map +0 -1
- package/lib/seam/devicedb/models/index.d.ts +0 -4
- package/lib/seam/devicedb/models/index.js +0 -5
- package/lib/seam/devicedb/models/index.js.map +0 -1
- package/lib/seam/devicedb/models/manufacturer.d.ts +0 -117
- package/lib/seam/devicedb/models/manufacturer.js +0 -38
- package/lib/seam/devicedb/models/manufacturer.js.map +0 -1
- package/lib/seam/devicedb/route-specs.d.ts +0 -2052
- package/lib/seam/devicedb/route-specs.js +0 -61
- package/lib/seam/devicedb/route-specs.js.map +0 -1
- package/lib/seam/devicedb/route-types.d.ts +0 -364
- package/lib/seam/devicedb/route-types.js +0 -2
- package/lib/seam/devicedb/route-types.js.map +0 -1
- package/src/devicedb.ts +0 -1
- package/src/lib/seam/devicedb/index.ts +0 -16
- package/src/lib/seam/devicedb/models/device-capability.ts +0 -32
- package/src/lib/seam/devicedb/models/device-model.ts +0 -166
- package/src/lib/seam/devicedb/models/hardware.ts +0 -7
- package/src/lib/seam/devicedb/models/image-reference.ts +0 -9
- package/src/lib/seam/devicedb/models/index.ts +0 -4
- package/src/lib/seam/devicedb/models/manufacturer.ts +0 -54
- package/src/lib/seam/devicedb/route-specs.ts +0 -63
- package/src/lib/seam/devicedb/route-types.ts +0 -450
|
@@ -1387,6 +1387,8 @@ export type Routes = {
|
|
|
1387
1387
|
issued_at: string | null
|
|
1388
1388
|
/** Indicates whether the access method has been issued. */
|
|
1389
1389
|
is_issued: boolean
|
|
1390
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
1391
|
+
display_status: string
|
|
1390
1392
|
/** URL of the Instant Key for mobile key access methods. */
|
|
1391
1393
|
instant_key_url?: string | undefined
|
|
1392
1394
|
/** Token of the client session associated with the access method. */
|
|
@@ -4527,6 +4529,8 @@ export type Routes = {
|
|
|
4527
4529
|
issued_at: string | null
|
|
4528
4530
|
/** Indicates whether the access method has been issued. */
|
|
4529
4531
|
is_issued: boolean
|
|
4532
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
4533
|
+
display_status: string
|
|
4530
4534
|
/** URL of the Instant Key for mobile key access methods. */
|
|
4531
4535
|
instant_key_url?: string | undefined
|
|
4532
4536
|
/** Token of the client session associated with the access method. */
|
|
@@ -9293,6 +9297,8 @@ export type Routes = {
|
|
|
9293
9297
|
issued_at: string | null
|
|
9294
9298
|
/** Indicates whether the access method has been issued. */
|
|
9295
9299
|
is_issued: boolean
|
|
9300
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
9301
|
+
display_status: string
|
|
9296
9302
|
/** URL of the Instant Key for mobile key access methods. */
|
|
9297
9303
|
instant_key_url?: string | undefined
|
|
9298
9304
|
/** Token of the client session associated with the access method. */
|
|
@@ -12284,6 +12290,8 @@ export type Routes = {
|
|
|
12284
12290
|
issued_at: string | null
|
|
12285
12291
|
/** Indicates whether the access method has been issued. */
|
|
12286
12292
|
is_issued: boolean
|
|
12293
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
12294
|
+
display_status: string
|
|
12287
12295
|
/** URL of the Instant Key for mobile key access methods. */
|
|
12288
12296
|
instant_key_url?: string | undefined
|
|
12289
12297
|
/** Token of the client session associated with the access method. */
|
|
@@ -16527,6 +16535,8 @@ export type Routes = {
|
|
|
16527
16535
|
issued_at: string | null
|
|
16528
16536
|
/** Indicates whether the access method has been issued. */
|
|
16529
16537
|
is_issued: boolean
|
|
16538
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
16539
|
+
display_status: string
|
|
16530
16540
|
/** URL of the Instant Key for mobile key access methods. */
|
|
16531
16541
|
instant_key_url?: string | undefined
|
|
16532
16542
|
/** Token of the client session associated with the access method. */
|
|
@@ -18930,6 +18940,8 @@ export type Routes = {
|
|
|
18930
18940
|
issued_at: string | null
|
|
18931
18941
|
/** Indicates whether the access method has been issued. */
|
|
18932
18942
|
is_issued: boolean
|
|
18943
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
18944
|
+
display_status: string
|
|
18933
18945
|
/** URL of the Instant Key for mobile key access methods. */
|
|
18934
18946
|
instant_key_url?: string | undefined
|
|
18935
18947
|
/** Token of the client session associated with the access method. */
|
|
@@ -21052,6 +21064,8 @@ export type Routes = {
|
|
|
21052
21064
|
issued_at: string | null
|
|
21053
21065
|
/** Indicates whether the access method has been issued. */
|
|
21054
21066
|
is_issued: boolean
|
|
21067
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
21068
|
+
display_status: string
|
|
21055
21069
|
/** URL of the Instant Key for mobile key access methods. */
|
|
21056
21070
|
instant_key_url?: string | undefined
|
|
21057
21071
|
/** Token of the client session associated with the access method. */
|
|
@@ -21827,6 +21841,8 @@ export type Routes = {
|
|
|
21827
21841
|
issued_at: string | null
|
|
21828
21842
|
/** Indicates whether the access method has been issued. */
|
|
21829
21843
|
is_issued: boolean
|
|
21844
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
21845
|
+
display_status: string
|
|
21830
21846
|
/** URL of the Instant Key for mobile key access methods. */
|
|
21831
21847
|
instant_key_url?: string | undefined
|
|
21832
21848
|
/** Token of the client session associated with the access method. */
|
|
@@ -24435,6 +24451,8 @@ export type Routes = {
|
|
|
24435
24451
|
issued_at: string | null
|
|
24436
24452
|
/** Indicates whether the access method has been issued. */
|
|
24437
24453
|
is_issued: boolean
|
|
24454
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
24455
|
+
display_status: string
|
|
24438
24456
|
/** URL of the Instant Key for mobile key access methods. */
|
|
24439
24457
|
instant_key_url?: string | undefined
|
|
24440
24458
|
/** Token of the client session associated with the access method. */
|
|
@@ -24853,6 +24871,8 @@ export type Routes = {
|
|
|
24853
24871
|
issued_at: string | null
|
|
24854
24872
|
/** Indicates whether the access method has been issued. */
|
|
24855
24873
|
is_issued: boolean
|
|
24874
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
24875
|
+
display_status: string
|
|
24856
24876
|
/** URL of the Instant Key for mobile key access methods. */
|
|
24857
24877
|
instant_key_url?: string | undefined
|
|
24858
24878
|
/** Token of the client session associated with the access method. */
|
|
@@ -26341,6 +26361,8 @@ export type Routes = {
|
|
|
26341
26361
|
issued_at: string | null
|
|
26342
26362
|
/** Indicates whether the access method has been issued. */
|
|
26343
26363
|
is_issued: boolean
|
|
26364
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
26365
|
+
display_status: string
|
|
26344
26366
|
/** URL of the Instant Key for mobile key access methods. */
|
|
26345
26367
|
instant_key_url?: string | undefined
|
|
26346
26368
|
/** Token of the client session associated with the access method. */
|
|
@@ -27116,6 +27138,8 @@ export type Routes = {
|
|
|
27116
27138
|
issued_at: string | null
|
|
27117
27139
|
/** Indicates whether the access method has been issued. */
|
|
27118
27140
|
is_issued: boolean
|
|
27141
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
27142
|
+
display_status: string
|
|
27119
27143
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
27120
27144
|
is_encoding_required?: boolean | undefined
|
|
27121
27145
|
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
|
|
@@ -27269,6 +27293,8 @@ export type Routes = {
|
|
|
27269
27293
|
issued_at: string | null
|
|
27270
27294
|
/** Indicates whether the access method has been issued. */
|
|
27271
27295
|
is_issued: boolean
|
|
27296
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
27297
|
+
display_status: string
|
|
27272
27298
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
27273
27299
|
is_encoding_required?: boolean | undefined
|
|
27274
27300
|
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
|
|
@@ -32543,6 +32569,8 @@ export type Routes = {
|
|
|
32543
32569
|
issued_at: string | null
|
|
32544
32570
|
/** Indicates whether the access method has been issued. */
|
|
32545
32571
|
is_issued: boolean
|
|
32572
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
32573
|
+
display_status: string
|
|
32546
32574
|
/** URL of the Instant Key for mobile key access methods. */
|
|
32547
32575
|
instant_key_url?: string | undefined
|
|
32548
32576
|
/** Token of the client session associated with the access method. */
|
|
@@ -34753,6 +34781,8 @@ export type Routes = {
|
|
|
34753
34781
|
issued_at: string | null
|
|
34754
34782
|
/** Indicates whether the access method has been issued. */
|
|
34755
34783
|
is_issued: boolean
|
|
34784
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
34785
|
+
display_status: string
|
|
34756
34786
|
/** URL of the Instant Key for mobile key access methods. */
|
|
34757
34787
|
instant_key_url?: string | undefined
|
|
34758
34788
|
/** Token of the client session associated with the access method. */
|
|
@@ -36862,6 +36892,8 @@ export type Routes = {
|
|
|
36862
36892
|
issued_at: string | null
|
|
36863
36893
|
/** Indicates whether the access method has been issued. */
|
|
36864
36894
|
is_issued: boolean
|
|
36895
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
36896
|
+
display_status: string
|
|
36865
36897
|
/** URL of the Instant Key for mobile key access methods. */
|
|
36866
36898
|
instant_key_url?: string | undefined
|
|
36867
36899
|
/** Token of the client session associated with the access method. */
|
|
@@ -39856,6 +39888,8 @@ export type Routes = {
|
|
|
39856
39888
|
issued_at: string | null
|
|
39857
39889
|
/** Indicates whether the access method has been issued. */
|
|
39858
39890
|
is_issued: boolean
|
|
39891
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
39892
|
+
display_status: string
|
|
39859
39893
|
/** URL of the Instant Key for mobile key access methods. */
|
|
39860
39894
|
instant_key_url?: string | undefined
|
|
39861
39895
|
/** Token of the client session associated with the access method. */
|
|
@@ -44764,6 +44798,8 @@ export type Routes = {
|
|
|
44764
44798
|
issued_at: string | null
|
|
44765
44799
|
/** Indicates whether the access method has been issued. */
|
|
44766
44800
|
is_issued: boolean
|
|
44801
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
44802
|
+
display_status: string
|
|
44767
44803
|
/** URL of the Instant Key for mobile key access methods. */
|
|
44768
44804
|
instant_key_url?: string | undefined
|
|
44769
44805
|
/** Token of the client session associated with the access method. */
|
|
@@ -46863,6 +46899,8 @@ export type Routes = {
|
|
|
46863
46899
|
issued_at: string | null
|
|
46864
46900
|
/** Indicates whether the access method has been issued. */
|
|
46865
46901
|
is_issued: boolean
|
|
46902
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
46903
|
+
display_status: string
|
|
46866
46904
|
/** URL of the Instant Key for mobile key access methods. */
|
|
46867
46905
|
instant_key_url?: string | undefined
|
|
46868
46906
|
/** Token of the client session associated with the access method. */
|
|
@@ -66163,6 +66201,8 @@ export type Routes = {
|
|
|
66163
66201
|
issued_at: string | null
|
|
66164
66202
|
/** Indicates whether the access method has been issued. */
|
|
66165
66203
|
is_issued: boolean
|
|
66204
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
66205
|
+
display_status: string
|
|
66166
66206
|
/** URL of the Instant Key for mobile key access methods. */
|
|
66167
66207
|
instant_key_url?: string | undefined
|
|
66168
66208
|
/** Token of the client session associated with the access method. */
|
|
@@ -75853,6 +75893,8 @@ export type Routes = {
|
|
|
75853
75893
|
issued_at: string | null
|
|
75854
75894
|
/** Indicates whether the access method has been issued. */
|
|
75855
75895
|
is_issued: boolean
|
|
75896
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
75897
|
+
display_status: string
|
|
75856
75898
|
/** URL of the Instant Key for mobile key access methods. */
|
|
75857
75899
|
instant_key_url?: string | undefined
|
|
75858
75900
|
/** Token of the client session associated with the access method. */
|
|
@@ -77953,6 +77995,8 @@ export type Routes = {
|
|
|
77953
77995
|
issued_at: string | null
|
|
77954
77996
|
/** Indicates whether the access method has been issued. */
|
|
77955
77997
|
is_issued: boolean
|
|
77998
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
77999
|
+
display_status: string
|
|
77956
78000
|
/** URL of the Instant Key for mobile key access methods. */
|
|
77957
78001
|
instant_key_url?: string | undefined
|
|
77958
78002
|
/** Token of the client session associated with the access method. */
|
|
@@ -80051,6 +80095,8 @@ export type Routes = {
|
|
|
80051
80095
|
issued_at: string | null
|
|
80052
80096
|
/** Indicates whether the access method has been issued. */
|
|
80053
80097
|
is_issued: boolean
|
|
80098
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
80099
|
+
display_status: string
|
|
80054
80100
|
/** URL of the Instant Key for mobile key access methods. */
|
|
80055
80101
|
instant_key_url?: string | undefined
|
|
80056
80102
|
/** Token of the client session associated with the access method. */
|
|
@@ -82151,6 +82197,8 @@ export type Routes = {
|
|
|
82151
82197
|
issued_at: string | null
|
|
82152
82198
|
/** Indicates whether the access method has been issued. */
|
|
82153
82199
|
is_issued: boolean
|
|
82200
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
82201
|
+
display_status: string
|
|
82154
82202
|
/** URL of the Instant Key for mobile key access methods. */
|
|
82155
82203
|
instant_key_url?: string | undefined
|
|
82156
82204
|
/** Token of the client session associated with the access method. */
|
|
@@ -88007,6 +88055,8 @@ export type Routes = {
|
|
|
88007
88055
|
issued_at: string | null
|
|
88008
88056
|
/** Indicates whether the access method has been issued. */
|
|
88009
88057
|
is_issued: boolean
|
|
88058
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
88059
|
+
display_status: string
|
|
88010
88060
|
/** URL of the Instant Key for mobile key access methods. */
|
|
88011
88061
|
instant_key_url?: string | undefined
|
|
88012
88062
|
/** Token of the client session associated with the access method. */
|
|
@@ -90126,6 +90176,8 @@ export type Routes = {
|
|
|
90126
90176
|
issued_at: string | null
|
|
90127
90177
|
/** Indicates whether the access method has been issued. */
|
|
90128
90178
|
is_issued: boolean
|
|
90179
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
90180
|
+
display_status: string
|
|
90129
90181
|
/** URL of the Instant Key for mobile key access methods. */
|
|
90130
90182
|
instant_key_url?: string | undefined
|
|
90131
90183
|
/** Token of the client session associated with the access method. */
|
|
@@ -92301,6 +92353,8 @@ export type Routes = {
|
|
|
92301
92353
|
issued_at: string | null
|
|
92302
92354
|
/** Indicates whether the access method has been issued. */
|
|
92303
92355
|
is_issued: boolean
|
|
92356
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
92357
|
+
display_status: string
|
|
92304
92358
|
/** URL of the Instant Key for mobile key access methods. */
|
|
92305
92359
|
instant_key_url?: string | undefined
|
|
92306
92360
|
/** Token of the client session associated with the access method. */
|
|
@@ -96396,6 +96450,8 @@ export type Routes = {
|
|
|
96396
96450
|
issued_at: string | null
|
|
96397
96451
|
/** Indicates whether the access method has been issued. */
|
|
96398
96452
|
is_issued: boolean
|
|
96453
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
96454
|
+
display_status: string
|
|
96399
96455
|
/** URL of the Instant Key for mobile key access methods. */
|
|
96400
96456
|
instant_key_url?: string | undefined
|
|
96401
96457
|
/** Token of the client session associated with the access method. */
|
|
@@ -107265,6 +107321,8 @@ export type Routes = {
|
|
|
107265
107321
|
issued_at: string | null
|
|
107266
107322
|
/** Indicates whether the access method has been issued. */
|
|
107267
107323
|
is_issued: boolean
|
|
107324
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
107325
|
+
display_status: string
|
|
107268
107326
|
/** URL of the Instant Key for mobile key access methods. */
|
|
107269
107327
|
instant_key_url?: string | undefined
|
|
107270
107328
|
/** Token of the client session associated with the access method. */
|
|
@@ -108960,6 +109018,8 @@ export type Routes = {
|
|
|
108960
109018
|
issued_at: string | null
|
|
108961
109019
|
/** Indicates whether the access method has been issued. */
|
|
108962
109020
|
is_issued: boolean
|
|
109021
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
109022
|
+
display_status: string
|
|
108963
109023
|
/** URL of the Instant Key for mobile key access methods. */
|
|
108964
109024
|
instant_key_url?: string | undefined
|
|
108965
109025
|
/** Token of the client session associated with the access method. */
|
|
@@ -111064,6 +111124,8 @@ export type Routes = {
|
|
|
111064
111124
|
issued_at: string | null
|
|
111065
111125
|
/** Indicates whether the access method has been issued. */
|
|
111066
111126
|
is_issued: boolean
|
|
111127
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
111128
|
+
display_status: string
|
|
111067
111129
|
/** URL of the Instant Key for mobile key access methods. */
|
|
111068
111130
|
instant_key_url?: string | undefined
|
|
111069
111131
|
/** Token of the client session associated with the access method. */
|
|
@@ -113279,6 +113341,8 @@ export type Routes = {
|
|
|
113279
113341
|
issued_at: string | null
|
|
113280
113342
|
/** Indicates whether the access method has been issued. */
|
|
113281
113343
|
is_issued: boolean
|
|
113344
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
113345
|
+
display_status: string
|
|
113282
113346
|
/** URL of the Instant Key for mobile key access methods. */
|
|
113283
113347
|
instant_key_url?: string | undefined
|
|
113284
113348
|
/** Token of the client session associated with the access method. */
|
|
@@ -117276,6 +117340,8 @@ export type Routes = {
|
|
|
117276
117340
|
issued_at: string | null
|
|
117277
117341
|
/** Indicates whether the access method has been issued. */
|
|
117278
117342
|
is_issued: boolean
|
|
117343
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
117344
|
+
display_status: string
|
|
117279
117345
|
/** URL of the Instant Key for mobile key access methods. */
|
|
117280
117346
|
instant_key_url?: string | undefined
|
|
117281
117347
|
/** Token of the client session associated with the access method. */
|
|
@@ -119384,6 +119450,8 @@ export type Routes = {
|
|
|
119384
119450
|
issued_at: string | null
|
|
119385
119451
|
/** Indicates whether the access method has been issued. */
|
|
119386
119452
|
is_issued: boolean
|
|
119453
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
119454
|
+
display_status: string
|
|
119387
119455
|
/** URL of the Instant Key for mobile key access methods. */
|
|
119388
119456
|
instant_key_url?: string | undefined
|
|
119389
119457
|
/** Token of the client session associated with the access method. */
|
|
@@ -125257,6 +125325,8 @@ export type Routes = {
|
|
|
125257
125325
|
issued_at: string | null
|
|
125258
125326
|
/** Indicates whether the access method has been issued. */
|
|
125259
125327
|
is_issued: boolean
|
|
125328
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
125329
|
+
display_status: string
|
|
125260
125330
|
/** URL of the Instant Key for mobile key access methods. */
|
|
125261
125331
|
instant_key_url?: string | undefined
|
|
125262
125332
|
/** Token of the client session associated with the access method. */
|
|
@@ -127566,6 +127636,8 @@ export type Routes = {
|
|
|
127566
127636
|
issued_at: string | null
|
|
127567
127637
|
/** Indicates whether the access method has been issued. */
|
|
127568
127638
|
is_issued: boolean
|
|
127639
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
127640
|
+
display_status: string
|
|
127569
127641
|
/** URL of the Instant Key for mobile key access methods. */
|
|
127570
127642
|
instant_key_url?: string | undefined
|
|
127571
127643
|
/** Token of the client session associated with the access method. */
|
|
@@ -129702,6 +129774,8 @@ export type Routes = {
|
|
|
129702
129774
|
issued_at: string | null
|
|
129703
129775
|
/** Indicates whether the access method has been issued. */
|
|
129704
129776
|
is_issued: boolean
|
|
129777
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
129778
|
+
display_status: string
|
|
129705
129779
|
/** URL of the Instant Key for mobile key access methods. */
|
|
129706
129780
|
instant_key_url?: string | undefined
|
|
129707
129781
|
/** Token of the client session associated with the access method. */
|
|
@@ -131954,6 +132028,8 @@ export type Routes = {
|
|
|
131954
132028
|
issued_at: string | null
|
|
131955
132029
|
/** Indicates whether the access method has been issued. */
|
|
131956
132030
|
is_issued: boolean
|
|
132031
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
132032
|
+
display_status: string
|
|
131957
132033
|
/** URL of the Instant Key for mobile key access methods. */
|
|
131958
132034
|
instant_key_url?: string | undefined
|
|
131959
132035
|
/** Token of the client session associated with the access method. */
|
|
@@ -142856,6 +142932,8 @@ export type Routes = {
|
|
|
142856
142932
|
issued_at: string | null
|
|
142857
142933
|
/** Indicates whether the access method has been issued. */
|
|
142858
142934
|
is_issued: boolean
|
|
142935
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
142936
|
+
display_status: string
|
|
142859
142937
|
/** URL of the Instant Key for mobile key access methods. */
|
|
142860
142938
|
instant_key_url?: string | undefined
|
|
142861
142939
|
/** Token of the client session associated with the access method. */
|
|
@@ -144852,6 +144930,8 @@ export type Routes = {
|
|
|
144852
144930
|
issued_at: string | null
|
|
144853
144931
|
/** Indicates whether the access method has been issued. */
|
|
144854
144932
|
is_issued: boolean
|
|
144933
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
144934
|
+
display_status: string
|
|
144855
144935
|
/** URL of the Instant Key for mobile key access methods. */
|
|
144856
144936
|
instant_key_url?: string | undefined
|
|
144857
144937
|
/** Token of the client session associated with the access method. */
|
|
@@ -151847,6 +151927,8 @@ export type Routes = {
|
|
|
151847
151927
|
issued_at: string | null
|
|
151848
151928
|
/** Indicates whether the access method has been issued. */
|
|
151849
151929
|
is_issued: boolean
|
|
151930
|
+
/** Human-readable sentence describing where the access method sits in its relationship with the device or access system, for example `Awaiting encoding`. For display only. The wording is not stable and is not an enumeration — it may change at any time, so never compare against or branch on it. To make decisions, read `is_issued`, `errors`, and `pending_mutations`. */
|
|
151931
|
+
display_status: string
|
|
151850
151932
|
/** URL of the Instant Key for mobile key access methods. */
|
|
151851
151933
|
instant_key_url?: string | undefined
|
|
151852
151934
|
/** Token of the client session associated with the access method. */
|
package/devicedb.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './lib/seam/devicedb/index.js';
|
package/devicedb.js
DELETED
package/devicedb.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"devicedb.js","sourceRoot":"","sources":["src/devicedb.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAA"}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as schemas from './models/index.js';
|
|
2
|
-
export * from './route-specs.js';
|
|
3
|
-
export * from './route-types.js';
|
|
4
|
-
export { schemas };
|
|
5
|
-
export type { DeviceCategory, DeviceConnectionType, DeviceModel, ImageReference, Manufacturer, ManufacturerAnnotation, ManufacturerAnnotationCode, ManufacturerIntegrationSupportLevel, } from './models/index.js';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/seam/devicedb/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,mBAAmB,CAAA;AAE5C,cAAc,kBAAkB,CAAA;AAChC,cAAc,kBAAkB,CAAA;AAChC,OAAO,EAAE,OAAO,EAAE,CAAA"}
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
export declare const device_capability_flags: z.ZodObject<{
|
|
3
|
-
can_remotely_unlock: z.ZodOptional<z.ZodBoolean>;
|
|
4
|
-
can_remotely_lock: z.ZodOptional<z.ZodBoolean>;
|
|
5
|
-
can_program_offline_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
6
|
-
can_program_online_access_codes: z.ZodOptional<z.ZodBoolean>;
|
|
7
|
-
can_hvac_heat: z.ZodOptional<z.ZodBoolean>;
|
|
8
|
-
can_hvac_cool: z.ZodOptional<z.ZodBoolean>;
|
|
9
|
-
can_hvac_heat_cool: z.ZodOptional<z.ZodBoolean>;
|
|
10
|
-
can_turn_off_hvac: z.ZodOptional<z.ZodBoolean>;
|
|
11
|
-
}, "strip", z.ZodTypeAny, {
|
|
12
|
-
can_remotely_unlock?: boolean | undefined;
|
|
13
|
-
can_remotely_lock?: boolean | undefined;
|
|
14
|
-
can_program_offline_access_codes?: boolean | undefined;
|
|
15
|
-
can_program_online_access_codes?: boolean | undefined;
|
|
16
|
-
can_hvac_heat?: boolean | undefined;
|
|
17
|
-
can_hvac_cool?: boolean | undefined;
|
|
18
|
-
can_hvac_heat_cool?: boolean | undefined;
|
|
19
|
-
can_turn_off_hvac?: boolean | undefined;
|
|
20
|
-
}, {
|
|
21
|
-
can_remotely_unlock?: boolean | undefined;
|
|
22
|
-
can_remotely_lock?: boolean | undefined;
|
|
23
|
-
can_program_offline_access_codes?: boolean | undefined;
|
|
24
|
-
can_program_online_access_codes?: boolean | undefined;
|
|
25
|
-
can_hvac_heat?: boolean | undefined;
|
|
26
|
-
can_hvac_cool?: boolean | undefined;
|
|
27
|
-
can_hvac_heat_cool?: boolean | undefined;
|
|
28
|
-
can_turn_off_hvac?: boolean | undefined;
|
|
29
|
-
}>;
|
|
30
|
-
export declare const device_model_capability_flags: z.ZodObject<{
|
|
31
|
-
can_remotely_unlock: z.ZodOptional<z.ZodLiteral<true>>;
|
|
32
|
-
can_remotely_lock: z.ZodOptional<z.ZodLiteral<true>>;
|
|
33
|
-
can_program_offline_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
34
|
-
can_program_online_access_codes: z.ZodOptional<z.ZodLiteral<true>>;
|
|
35
|
-
can_hvac_heat: z.ZodOptional<z.ZodLiteral<true>>;
|
|
36
|
-
can_hvac_cool: z.ZodOptional<z.ZodLiteral<true>>;
|
|
37
|
-
can_hvac_heat_cool: z.ZodOptional<z.ZodLiteral<true>>;
|
|
38
|
-
can_turn_off_hvac: z.ZodOptional<z.ZodLiteral<true>>;
|
|
39
|
-
}, "strip", z.ZodTypeAny, {
|
|
40
|
-
can_remotely_unlock?: true | undefined;
|
|
41
|
-
can_remotely_lock?: true | undefined;
|
|
42
|
-
can_program_offline_access_codes?: true | undefined;
|
|
43
|
-
can_program_online_access_codes?: true | undefined;
|
|
44
|
-
can_hvac_heat?: true | undefined;
|
|
45
|
-
can_hvac_cool?: true | undefined;
|
|
46
|
-
can_hvac_heat_cool?: true | undefined;
|
|
47
|
-
can_turn_off_hvac?: true | undefined;
|
|
48
|
-
}, {
|
|
49
|
-
can_remotely_unlock?: true | undefined;
|
|
50
|
-
can_remotely_lock?: true | undefined;
|
|
51
|
-
can_program_offline_access_codes?: true | undefined;
|
|
52
|
-
can_program_online_access_codes?: true | undefined;
|
|
53
|
-
can_hvac_heat?: true | undefined;
|
|
54
|
-
can_hvac_cool?: true | undefined;
|
|
55
|
-
can_hvac_heat_cool?: true | undefined;
|
|
56
|
-
can_turn_off_hvac?: true | undefined;
|
|
57
|
-
}>;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
export const device_capability_flags = z
|
|
3
|
-
.object({
|
|
4
|
-
can_remotely_unlock: z.boolean(),
|
|
5
|
-
can_remotely_lock: z.boolean(),
|
|
6
|
-
can_program_offline_access_codes: z.boolean(),
|
|
7
|
-
can_program_online_access_codes: z.boolean(),
|
|
8
|
-
can_hvac_heat: z.boolean(),
|
|
9
|
-
can_hvac_cool: z.boolean(),
|
|
10
|
-
can_hvac_heat_cool: z.boolean(),
|
|
11
|
-
can_turn_off_hvac: z.boolean(),
|
|
12
|
-
})
|
|
13
|
-
.partial();
|
|
14
|
-
const device_model_capability_flags_map = {
|
|
15
|
-
can_remotely_lock: z.literal(true),
|
|
16
|
-
can_remotely_unlock: z.literal(true),
|
|
17
|
-
can_program_offline_access_codes: z.literal(true),
|
|
18
|
-
can_program_online_access_codes: z.literal(true),
|
|
19
|
-
can_hvac_heat: z.literal(true),
|
|
20
|
-
can_hvac_cool: z.literal(true),
|
|
21
|
-
can_hvac_heat_cool: z.literal(true),
|
|
22
|
-
can_turn_off_hvac: z.literal(true),
|
|
23
|
-
};
|
|
24
|
-
export const device_model_capability_flags = z
|
|
25
|
-
.object(device_model_capability_flags_map)
|
|
26
|
-
.partial();
|
|
27
|
-
//# sourceMappingURL=device-capability.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"device-capability.js","sourceRoot":"","sources":["../../../../src/lib/seam/devicedb/models/device-capability.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAmB,MAAM,KAAK,CAAA;AAExC,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,mBAAmB,EAAE,CAAC,CAAC,OAAO,EAAE;IAChC,iBAAiB,EAAE,CAAC,CAAC,OAAO,EAAE;IAC9B,gCAAgC,EAAE,CAAC,CAAC,OAAO,EAAE;IAC7C,+BAA+B,EAAE,CAAC,CAAC,OAAO,EAAE;IAC5C,aAAa,EAAE,CAAC,CAAC,OAAO,EAAE;IAC1B,aAAa,EAAE,CAAC,CAAC,OAAO,EAAE;IAC1B,kBAAkB,EAAE,CAAC,CAAC,OAAO,EAAE;IAC/B,iBAAiB,EAAE,CAAC,CAAC,OAAO,EAAE;CAC/B,CAAC;KACD,OAAO,EAAE,CAAA;AAEZ,MAAM,iCAAiC,GAGnC;IACF,iBAAiB,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;IAClC,mBAAmB,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;IACpC,gCAAgC,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;IACjD,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;IAChD,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;IAC9B,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;IAC9B,kBAAkB,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;IACnC,iBAAiB,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CACnC,CAAA;AAED,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAAC;KAC3C,MAAM,CAAC,iCAAiC,CAAC;KACzC,OAAO,EAAE,CAAA"}
|