@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
|
@@ -1143,6 +1143,8 @@ export type Routes = {
|
|
|
1143
1143
|
issued_at: string | null;
|
|
1144
1144
|
/** Indicates whether the access method has been issued. */
|
|
1145
1145
|
is_issued: boolean;
|
|
1146
|
+
/** 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`. */
|
|
1147
|
+
display_status: string;
|
|
1146
1148
|
/** URL of the Instant Key for mobile key access methods. */
|
|
1147
1149
|
instant_key_url?: string | undefined;
|
|
1148
1150
|
/** Token of the client session associated with the access method. */
|
|
@@ -3885,6 +3887,8 @@ export type Routes = {
|
|
|
3885
3887
|
issued_at: string | null;
|
|
3886
3888
|
/** Indicates whether the access method has been issued. */
|
|
3887
3889
|
is_issued: boolean;
|
|
3890
|
+
/** 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`. */
|
|
3891
|
+
display_status: string;
|
|
3888
3892
|
/** URL of the Instant Key for mobile key access methods. */
|
|
3889
3893
|
instant_key_url?: string | undefined;
|
|
3890
3894
|
/** Token of the client session associated with the access method. */
|
|
@@ -8066,6 +8070,8 @@ export type Routes = {
|
|
|
8066
8070
|
issued_at: string | null;
|
|
8067
8071
|
/** Indicates whether the access method has been issued. */
|
|
8068
8072
|
is_issued: boolean;
|
|
8073
|
+
/** 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`. */
|
|
8074
|
+
display_status: string;
|
|
8069
8075
|
/** URL of the Instant Key for mobile key access methods. */
|
|
8070
8076
|
instant_key_url?: string | undefined;
|
|
8071
8077
|
/** Token of the client session associated with the access method. */
|
|
@@ -10673,6 +10679,8 @@ export type Routes = {
|
|
|
10673
10679
|
issued_at: string | null;
|
|
10674
10680
|
/** Indicates whether the access method has been issued. */
|
|
10675
10681
|
is_issued: boolean;
|
|
10682
|
+
/** 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`. */
|
|
10683
|
+
display_status: string;
|
|
10676
10684
|
/** URL of the Instant Key for mobile key access methods. */
|
|
10677
10685
|
instant_key_url?: string | undefined;
|
|
10678
10686
|
/** Token of the client session associated with the access method. */
|
|
@@ -14161,6 +14169,8 @@ export type Routes = {
|
|
|
14161
14169
|
issued_at: string | null;
|
|
14162
14170
|
/** Indicates whether the access method has been issued. */
|
|
14163
14171
|
is_issued: boolean;
|
|
14172
|
+
/** 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`. */
|
|
14173
|
+
display_status: string;
|
|
14164
14174
|
/** URL of the Instant Key for mobile key access methods. */
|
|
14165
14175
|
instant_key_url?: string | undefined;
|
|
14166
14176
|
/** Token of the client session associated with the access method. */
|
|
@@ -16246,6 +16256,8 @@ export type Routes = {
|
|
|
16246
16256
|
issued_at: string | null;
|
|
16247
16257
|
/** Indicates whether the access method has been issued. */
|
|
16248
16258
|
is_issued: boolean;
|
|
16259
|
+
/** 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`. */
|
|
16260
|
+
display_status: string;
|
|
16249
16261
|
/** URL of the Instant Key for mobile key access methods. */
|
|
16250
16262
|
instant_key_url?: string | undefined;
|
|
16251
16263
|
/** Token of the client session associated with the access method. */
|
|
@@ -18061,6 +18073,8 @@ export type Routes = {
|
|
|
18061
18073
|
issued_at: string | null;
|
|
18062
18074
|
/** Indicates whether the access method has been issued. */
|
|
18063
18075
|
is_issued: boolean;
|
|
18076
|
+
/** 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`. */
|
|
18077
|
+
display_status: string;
|
|
18064
18078
|
/** URL of the Instant Key for mobile key access methods. */
|
|
18065
18079
|
instant_key_url?: string | undefined;
|
|
18066
18080
|
/** Token of the client session associated with the access method. */
|
|
@@ -18776,6 +18790,8 @@ export type Routes = {
|
|
|
18776
18790
|
issued_at: string | null;
|
|
18777
18791
|
/** Indicates whether the access method has been issued. */
|
|
18778
18792
|
is_issued: boolean;
|
|
18793
|
+
/** 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`. */
|
|
18794
|
+
display_status: string;
|
|
18779
18795
|
/** URL of the Instant Key for mobile key access methods. */
|
|
18780
18796
|
instant_key_url?: string | undefined;
|
|
18781
18797
|
/** Token of the client session associated with the access method. */
|
|
@@ -20840,6 +20856,8 @@ export type Routes = {
|
|
|
20840
20856
|
issued_at: string | null;
|
|
20841
20857
|
/** Indicates whether the access method has been issued. */
|
|
20842
20858
|
is_issued: boolean;
|
|
20859
|
+
/** 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`. */
|
|
20860
|
+
display_status: string;
|
|
20843
20861
|
/** URL of the Instant Key for mobile key access methods. */
|
|
20844
20862
|
instant_key_url?: string | undefined;
|
|
20845
20863
|
/** Token of the client session associated with the access method. */
|
|
@@ -21204,6 +21222,8 @@ export type Routes = {
|
|
|
21204
21222
|
issued_at: string | null;
|
|
21205
21223
|
/** Indicates whether the access method has been issued. */
|
|
21206
21224
|
is_issued: boolean;
|
|
21225
|
+
/** 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`. */
|
|
21226
|
+
display_status: string;
|
|
21207
21227
|
/** URL of the Instant Key for mobile key access methods. */
|
|
21208
21228
|
instant_key_url?: string | undefined;
|
|
21209
21229
|
/** Token of the client session associated with the access method. */
|
|
@@ -22439,6 +22459,8 @@ export type Routes = {
|
|
|
22439
22459
|
issued_at: string | null;
|
|
22440
22460
|
/** Indicates whether the access method has been issued. */
|
|
22441
22461
|
is_issued: boolean;
|
|
22462
|
+
/** 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`. */
|
|
22463
|
+
display_status: string;
|
|
22442
22464
|
/** URL of the Instant Key for mobile key access methods. */
|
|
22443
22465
|
instant_key_url?: string | undefined;
|
|
22444
22466
|
/** Token of the client session associated with the access method. */
|
|
@@ -23154,6 +23176,8 @@ export type Routes = {
|
|
|
23154
23176
|
issued_at: string | null;
|
|
23155
23177
|
/** Indicates whether the access method has been issued. */
|
|
23156
23178
|
is_issued: boolean;
|
|
23179
|
+
/** 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`. */
|
|
23180
|
+
display_status: string;
|
|
23157
23181
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
23158
23182
|
is_encoding_required?: boolean | undefined;
|
|
23159
23183
|
/** 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. */
|
|
@@ -23298,6 +23322,8 @@ export type Routes = {
|
|
|
23298
23322
|
issued_at: string | null;
|
|
23299
23323
|
/** Indicates whether the access method has been issued. */
|
|
23300
23324
|
is_issued: boolean;
|
|
23325
|
+
/** 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`. */
|
|
23326
|
+
display_status: string;
|
|
23301
23327
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
23302
23328
|
is_encoding_required?: boolean | undefined;
|
|
23303
23329
|
/** 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. */
|
|
@@ -27711,6 +27737,8 @@ export type Routes = {
|
|
|
27711
27737
|
issued_at: string | null;
|
|
27712
27738
|
/** Indicates whether the access method has been issued. */
|
|
27713
27739
|
is_issued: boolean;
|
|
27740
|
+
/** 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`. */
|
|
27741
|
+
display_status: string;
|
|
27714
27742
|
/** URL of the Instant Key for mobile key access methods. */
|
|
27715
27743
|
instant_key_url?: string | undefined;
|
|
27716
27744
|
/** Token of the client session associated with the access method. */
|
|
@@ -29615,6 +29643,8 @@ export type Routes = {
|
|
|
29615
29643
|
issued_at: string | null;
|
|
29616
29644
|
/** Indicates whether the access method has been issued. */
|
|
29617
29645
|
is_issued: boolean;
|
|
29646
|
+
/** 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`. */
|
|
29647
|
+
display_status: string;
|
|
29618
29648
|
/** URL of the Instant Key for mobile key access methods. */
|
|
29619
29649
|
instant_key_url?: string | undefined;
|
|
29620
29650
|
/** Token of the client session associated with the access method. */
|
|
@@ -31418,6 +31448,8 @@ export type Routes = {
|
|
|
31418
31448
|
issued_at: string | null;
|
|
31419
31449
|
/** Indicates whether the access method has been issued. */
|
|
31420
31450
|
is_issued: boolean;
|
|
31451
|
+
/** 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`. */
|
|
31452
|
+
display_status: string;
|
|
31421
31453
|
/** URL of the Instant Key for mobile key access methods. */
|
|
31422
31454
|
instant_key_url?: string | undefined;
|
|
31423
31455
|
/** Token of the client session associated with the access method. */
|
|
@@ -33952,6 +33984,8 @@ export type Routes = {
|
|
|
33952
33984
|
issued_at: string | null;
|
|
33953
33985
|
/** Indicates whether the access method has been issued. */
|
|
33954
33986
|
is_issued: boolean;
|
|
33987
|
+
/** 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`. */
|
|
33988
|
+
display_status: string;
|
|
33955
33989
|
/** URL of the Instant Key for mobile key access methods. */
|
|
33956
33990
|
instant_key_url?: string | undefined;
|
|
33957
33991
|
/** Token of the client session associated with the access method. */
|
|
@@ -38105,6 +38139,8 @@ export type Routes = {
|
|
|
38105
38139
|
issued_at: string | null;
|
|
38106
38140
|
/** Indicates whether the access method has been issued. */
|
|
38107
38141
|
is_issued: boolean;
|
|
38142
|
+
/** 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`. */
|
|
38143
|
+
display_status: string;
|
|
38108
38144
|
/** URL of the Instant Key for mobile key access methods. */
|
|
38109
38145
|
instant_key_url?: string | undefined;
|
|
38110
38146
|
/** Token of the client session associated with the access method. */
|
|
@@ -39900,6 +39936,8 @@ export type Routes = {
|
|
|
39900
39936
|
issued_at: string | null;
|
|
39901
39937
|
/** Indicates whether the access method has been issued. */
|
|
39902
39938
|
is_issued: boolean;
|
|
39939
|
+
/** 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`. */
|
|
39940
|
+
display_status: string;
|
|
39903
39941
|
/** URL of the Instant Key for mobile key access methods. */
|
|
39904
39942
|
instant_key_url?: string | undefined;
|
|
39905
39943
|
/** Token of the client session associated with the access method. */
|
|
@@ -54798,6 +54836,8 @@ export type Routes = {
|
|
|
54798
54836
|
issued_at: string | null;
|
|
54799
54837
|
/** Indicates whether the access method has been issued. */
|
|
54800
54838
|
is_issued: boolean;
|
|
54839
|
+
/** 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`. */
|
|
54840
|
+
display_status: string;
|
|
54801
54841
|
/** URL of the Instant Key for mobile key access methods. */
|
|
54802
54842
|
instant_key_url?: string | undefined;
|
|
54803
54843
|
/** Token of the client session associated with the access method. */
|
|
@@ -62596,6 +62636,8 @@ export type Routes = {
|
|
|
62596
62636
|
issued_at: string | null;
|
|
62597
62637
|
/** Indicates whether the access method has been issued. */
|
|
62598
62638
|
is_issued: boolean;
|
|
62639
|
+
/** 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`. */
|
|
62640
|
+
display_status: string;
|
|
62599
62641
|
/** URL of the Instant Key for mobile key access methods. */
|
|
62600
62642
|
instant_key_url?: string | undefined;
|
|
62601
62643
|
/** Token of the client session associated with the access method. */
|
|
@@ -64392,6 +64434,8 @@ export type Routes = {
|
|
|
64392
64434
|
issued_at: string | null;
|
|
64393
64435
|
/** Indicates whether the access method has been issued. */
|
|
64394
64436
|
is_issued: boolean;
|
|
64437
|
+
/** 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`. */
|
|
64438
|
+
display_status: string;
|
|
64395
64439
|
/** URL of the Instant Key for mobile key access methods. */
|
|
64396
64440
|
instant_key_url?: string | undefined;
|
|
64397
64441
|
/** Token of the client session associated with the access method. */
|
|
@@ -66186,6 +66230,8 @@ export type Routes = {
|
|
|
66186
66230
|
issued_at: string | null;
|
|
66187
66231
|
/** Indicates whether the access method has been issued. */
|
|
66188
66232
|
is_issued: boolean;
|
|
66233
|
+
/** 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`. */
|
|
66234
|
+
display_status: string;
|
|
66189
66235
|
/** URL of the Instant Key for mobile key access methods. */
|
|
66190
66236
|
instant_key_url?: string | undefined;
|
|
66191
66237
|
/** Token of the client session associated with the access method. */
|
|
@@ -67982,6 +68028,8 @@ export type Routes = {
|
|
|
67982
68028
|
issued_at: string | null;
|
|
67983
68029
|
/** Indicates whether the access method has been issued. */
|
|
67984
68030
|
is_issued: boolean;
|
|
68031
|
+
/** 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`. */
|
|
68032
|
+
display_status: string;
|
|
67985
68033
|
/** URL of the Instant Key for mobile key access methods. */
|
|
67986
68034
|
instant_key_url?: string | undefined;
|
|
67987
68035
|
/** Token of the client session associated with the access method. */
|
|
@@ -72792,6 +72840,8 @@ export type Routes = {
|
|
|
72792
72840
|
issued_at: string | null;
|
|
72793
72841
|
/** Indicates whether the access method has been issued. */
|
|
72794
72842
|
is_issued: boolean;
|
|
72843
|
+
/** 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`. */
|
|
72844
|
+
display_status: string;
|
|
72795
72845
|
/** URL of the Instant Key for mobile key access methods. */
|
|
72796
72846
|
instant_key_url?: string | undefined;
|
|
72797
72847
|
/** Token of the client session associated with the access method. */
|
|
@@ -74607,6 +74657,8 @@ export type Routes = {
|
|
|
74607
74657
|
issued_at: string | null;
|
|
74608
74658
|
/** Indicates whether the access method has been issued. */
|
|
74609
74659
|
is_issued: boolean;
|
|
74660
|
+
/** 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`. */
|
|
74661
|
+
display_status: string;
|
|
74610
74662
|
/** URL of the Instant Key for mobile key access methods. */
|
|
74611
74663
|
instant_key_url?: string | undefined;
|
|
74612
74664
|
/** Token of the client session associated with the access method. */
|
|
@@ -76478,6 +76530,8 @@ export type Routes = {
|
|
|
76478
76530
|
issued_at: string | null;
|
|
76479
76531
|
/** Indicates whether the access method has been issued. */
|
|
76480
76532
|
is_issued: boolean;
|
|
76533
|
+
/** 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`. */
|
|
76534
|
+
display_status: string;
|
|
76481
76535
|
/** URL of the Instant Key for mobile key access methods. */
|
|
76482
76536
|
instant_key_url?: string | undefined;
|
|
76483
76537
|
/** Token of the client session associated with the access method. */
|
|
@@ -80130,6 +80184,8 @@ export type Routes = {
|
|
|
80130
80184
|
issued_at: string | null;
|
|
80131
80185
|
/** Indicates whether the access method has been issued. */
|
|
80132
80186
|
is_issued: boolean;
|
|
80187
|
+
/** 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`. */
|
|
80188
|
+
display_status: string;
|
|
80133
80189
|
/** URL of the Instant Key for mobile key access methods. */
|
|
80134
80190
|
instant_key_url?: string | undefined;
|
|
80135
80191
|
/** Token of the client session associated with the access method. */
|
|
@@ -89206,6 +89262,8 @@ export type Routes = {
|
|
|
89206
89262
|
issued_at: string | null;
|
|
89207
89263
|
/** Indicates whether the access method has been issued. */
|
|
89208
89264
|
is_issued: boolean;
|
|
89265
|
+
/** 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`. */
|
|
89266
|
+
display_status: string;
|
|
89209
89267
|
/** URL of the Instant Key for mobile key access methods. */
|
|
89210
89268
|
instant_key_url?: string | undefined;
|
|
89211
89269
|
/** Token of the client session associated with the access method. */
|
|
@@ -90637,6 +90695,8 @@ export type Routes = {
|
|
|
90637
90695
|
issued_at: string | null;
|
|
90638
90696
|
/** Indicates whether the access method has been issued. */
|
|
90639
90697
|
is_issued: boolean;
|
|
90698
|
+
/** 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`. */
|
|
90699
|
+
display_status: string;
|
|
90640
90700
|
/** URL of the Instant Key for mobile key access methods. */
|
|
90641
90701
|
instant_key_url?: string | undefined;
|
|
90642
90702
|
/** Token of the client session associated with the access method. */
|
|
@@ -92437,6 +92497,8 @@ export type Routes = {
|
|
|
92437
92497
|
issued_at: string | null;
|
|
92438
92498
|
/** Indicates whether the access method has been issued. */
|
|
92439
92499
|
is_issued: boolean;
|
|
92500
|
+
/** 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`. */
|
|
92501
|
+
display_status: string;
|
|
92440
92502
|
/** URL of the Instant Key for mobile key access methods. */
|
|
92441
92503
|
instant_key_url?: string | undefined;
|
|
92442
92504
|
/** Token of the client session associated with the access method. */
|
|
@@ -94343,6 +94405,8 @@ export type Routes = {
|
|
|
94343
94405
|
issued_at: string | null;
|
|
94344
94406
|
/** Indicates whether the access method has been issued. */
|
|
94345
94407
|
is_issued: boolean;
|
|
94408
|
+
/** 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`. */
|
|
94409
|
+
display_status: string;
|
|
94346
94410
|
/** URL of the Instant Key for mobile key access methods. */
|
|
94347
94411
|
instant_key_url?: string | undefined;
|
|
94348
94412
|
/** Token of the client session associated with the access method. */
|
|
@@ -97665,6 +97729,8 @@ export type Routes = {
|
|
|
97665
97729
|
issued_at: string | null;
|
|
97666
97730
|
/** Indicates whether the access method has been issued. */
|
|
97667
97731
|
is_issued: boolean;
|
|
97732
|
+
/** 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`. */
|
|
97733
|
+
display_status: string;
|
|
97668
97734
|
/** URL of the Instant Key for mobile key access methods. */
|
|
97669
97735
|
instant_key_url?: string | undefined;
|
|
97670
97736
|
/** Token of the client session associated with the access method. */
|
|
@@ -99469,6 +99535,8 @@ export type Routes = {
|
|
|
99469
99535
|
issued_at: string | null;
|
|
99470
99536
|
/** Indicates whether the access method has been issued. */
|
|
99471
99537
|
is_issued: boolean;
|
|
99538
|
+
/** 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`. */
|
|
99539
|
+
display_status: string;
|
|
99472
99540
|
/** URL of the Instant Key for mobile key access methods. */
|
|
99473
99541
|
instant_key_url?: string | undefined;
|
|
99474
99542
|
/** Token of the client session associated with the access method. */
|
|
@@ -104269,6 +104337,8 @@ export type Routes = {
|
|
|
104269
104337
|
issued_at: string | null;
|
|
104270
104338
|
/** Indicates whether the access method has been issued. */
|
|
104271
104339
|
is_issued: boolean;
|
|
104340
|
+
/** 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`. */
|
|
104341
|
+
display_status: string;
|
|
104272
104342
|
/** URL of the Instant Key for mobile key access methods. */
|
|
104273
104343
|
instant_key_url?: string | undefined;
|
|
104274
104344
|
/** Token of the client session associated with the access method. */
|
|
@@ -106274,6 +106344,8 @@ export type Routes = {
|
|
|
106274
106344
|
issued_at: string | null;
|
|
106275
106345
|
/** Indicates whether the access method has been issued. */
|
|
106276
106346
|
is_issued: boolean;
|
|
106347
|
+
/** 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`. */
|
|
106348
|
+
display_status: string;
|
|
106277
106349
|
/** URL of the Instant Key for mobile key access methods. */
|
|
106278
106350
|
instant_key_url?: string | undefined;
|
|
106279
106351
|
/** Token of the client session associated with the access method. */
|
|
@@ -108101,6 +108173,8 @@ export type Routes = {
|
|
|
108101
108173
|
issued_at: string | null;
|
|
108102
108174
|
/** Indicates whether the access method has been issued. */
|
|
108103
108175
|
is_issued: boolean;
|
|
108176
|
+
/** 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`. */
|
|
108177
|
+
display_status: string;
|
|
108104
108178
|
/** URL of the Instant Key for mobile key access methods. */
|
|
108105
108179
|
instant_key_url?: string | undefined;
|
|
108106
108180
|
/** Token of the client session associated with the access method. */
|
|
@@ -110040,6 +110114,8 @@ export type Routes = {
|
|
|
110040
110114
|
issued_at: string | null;
|
|
110041
110115
|
/** Indicates whether the access method has been issued. */
|
|
110042
110116
|
is_issued: boolean;
|
|
110117
|
+
/** 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`. */
|
|
110118
|
+
display_status: string;
|
|
110043
110119
|
/** URL of the Instant Key for mobile key access methods. */
|
|
110044
110120
|
instant_key_url?: string | undefined;
|
|
110045
110121
|
/** Token of the client session associated with the access method. */
|
|
@@ -119015,6 +119091,8 @@ export type Routes = {
|
|
|
119015
119091
|
issued_at: string | null;
|
|
119016
119092
|
/** Indicates whether the access method has been issued. */
|
|
119017
119093
|
is_issued: boolean;
|
|
119094
|
+
/** 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`. */
|
|
119095
|
+
display_status: string;
|
|
119018
119096
|
/** URL of the Instant Key for mobile key access methods. */
|
|
119019
119097
|
instant_key_url?: string | undefined;
|
|
119020
119098
|
/** Token of the client session associated with the access method. */
|
|
@@ -120741,6 +120819,8 @@ export type Routes = {
|
|
|
120741
120819
|
issued_at: string | null;
|
|
120742
120820
|
/** Indicates whether the access method has been issued. */
|
|
120743
120821
|
is_issued: boolean;
|
|
120822
|
+
/** 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`. */
|
|
120823
|
+
display_status: string;
|
|
120744
120824
|
/** URL of the Instant Key for mobile key access methods. */
|
|
120745
120825
|
instant_key_url?: string | undefined;
|
|
120746
120826
|
/** Token of the client session associated with the access method. */
|
|
@@ -126836,6 +126916,8 @@ export type Routes = {
|
|
|
126836
126916
|
issued_at: string | null;
|
|
126837
126917
|
/** Indicates whether the access method has been issued. */
|
|
126838
126918
|
is_issued: boolean;
|
|
126919
|
+
/** 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`. */
|
|
126920
|
+
display_status: string;
|
|
126839
126921
|
/** URL of the Instant Key for mobile key access methods. */
|
|
126840
126922
|
instant_key_url?: string | undefined;
|
|
126841
126923
|
/** Token of the client session associated with the access method. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1005.0",
|
|
4
4
|
"description": "TypeScript types for the Seam API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -13,10 +13,6 @@
|
|
|
13
13
|
"./connect": {
|
|
14
14
|
"types": "./connect.d.ts",
|
|
15
15
|
"default": "./connect.js"
|
|
16
|
-
},
|
|
17
|
-
"./devicedb": {
|
|
18
|
-
"types": "./devicedb.d.ts",
|
|
19
|
-
"default": "./devicedb.js"
|
|
20
16
|
}
|
|
21
17
|
},
|
|
22
18
|
"module": "index.js",
|
|
@@ -39,9 +35,6 @@
|
|
|
39
35
|
"connect.js",
|
|
40
36
|
"connect.js.map",
|
|
41
37
|
"connect.d.ts",
|
|
42
|
-
"devicedb.js",
|
|
43
|
-
"devicedb.js.map",
|
|
44
|
-
"devicedb.d.ts",
|
|
45
38
|
"lib",
|
|
46
39
|
"src",
|
|
47
40
|
"!test",
|
|
@@ -49,11 +42,11 @@
|
|
|
49
42
|
],
|
|
50
43
|
"scripts": {
|
|
51
44
|
"build": "npm run build:entrypoints",
|
|
52
|
-
"prebuild": "concurrently --raw --group 'tsx src/index.ts' 'tsx src/connect.ts'
|
|
53
|
-
"postbuild": "concurrently --raw --group 'node ./index.js' 'node ./connect.js'
|
|
45
|
+
"prebuild": "concurrently --raw --group 'tsx src/index.ts' 'tsx src/connect.ts'",
|
|
46
|
+
"postbuild": "concurrently --raw --group 'node ./index.js' 'node ./connect.js'",
|
|
54
47
|
"build:entrypoints": "npm run build:ts",
|
|
55
48
|
"build:ts": "tsc --project tsconfig.build.json",
|
|
56
|
-
"prebuild:ts": "del 'index.*' 'connect.*'
|
|
49
|
+
"prebuild:ts": "del 'index.*' 'connect.*' lib",
|
|
57
50
|
"postbuild:ts": "tsc-alias --replacer ./tsc-alias-replacer.cjs --project tsconfig.build.json",
|
|
58
51
|
"typecheck": "tsc",
|
|
59
52
|
"docs:build": "typedoc",
|
|
@@ -284,6 +284,11 @@ export const access_method = z.object({
|
|
|
284
284
|
is_issued: z
|
|
285
285
|
.boolean()
|
|
286
286
|
.describe('Indicates whether the access method has been issued.'),
|
|
287
|
+
display_status: z
|
|
288
|
+
.string()
|
|
289
|
+
.describe(
|
|
290
|
+
'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`.',
|
|
291
|
+
),
|
|
287
292
|
instant_key_url: z
|
|
288
293
|
.string()
|
|
289
294
|
.url()
|
|
@@ -2287,6 +2287,11 @@ const openapi: OpenAPISpec = {
|
|
|
2287
2287
|
description: 'Display name of the access method.',
|
|
2288
2288
|
type: 'string',
|
|
2289
2289
|
},
|
|
2290
|
+
display_status: {
|
|
2291
|
+
description:
|
|
2292
|
+
'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`.',
|
|
2293
|
+
type: 'string',
|
|
2294
|
+
},
|
|
2290
2295
|
errors: {
|
|
2291
2296
|
description:
|
|
2292
2297
|
'Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant).',
|
|
@@ -2690,6 +2695,7 @@ const openapi: OpenAPISpec = {
|
|
|
2690
2695
|
'created_at',
|
|
2691
2696
|
'issued_at',
|
|
2692
2697
|
'is_issued',
|
|
2698
|
+
'display_status',
|
|
2693
2699
|
'warnings',
|
|
2694
2700
|
'errors',
|
|
2695
2701
|
'pending_mutations',
|
|
@@ -9669,6 +9675,11 @@ const openapi: OpenAPISpec = {
|
|
|
9669
9675
|
description: 'Display name of the access method.',
|
|
9670
9676
|
type: 'string',
|
|
9671
9677
|
},
|
|
9678
|
+
display_status: {
|
|
9679
|
+
description:
|
|
9680
|
+
'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`.',
|
|
9681
|
+
type: 'string',
|
|
9682
|
+
},
|
|
9672
9683
|
errors: {
|
|
9673
9684
|
description:
|
|
9674
9685
|
'Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant).',
|
|
@@ -10079,6 +10090,7 @@ const openapi: OpenAPISpec = {
|
|
|
10079
10090
|
'created_at',
|
|
10080
10091
|
'issued_at',
|
|
10081
10092
|
'is_issued',
|
|
10093
|
+
'display_status',
|
|
10082
10094
|
'warnings',
|
|
10083
10095
|
'errors',
|
|
10084
10096
|
'pending_mutations',
|
|
@@ -32007,6 +32019,11 @@ const openapi: OpenAPISpec = {
|
|
|
32007
32019
|
description: 'Display name of the access method.',
|
|
32008
32020
|
type: 'string',
|
|
32009
32021
|
},
|
|
32022
|
+
display_status: {
|
|
32023
|
+
description:
|
|
32024
|
+
'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`.',
|
|
32025
|
+
type: 'string',
|
|
32026
|
+
},
|
|
32010
32027
|
errors: {
|
|
32011
32028
|
description:
|
|
32012
32029
|
'Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant).',
|
|
@@ -32404,6 +32421,7 @@ const openapi: OpenAPISpec = {
|
|
|
32404
32421
|
'created_at',
|
|
32405
32422
|
'issued_at',
|
|
32406
32423
|
'is_issued',
|
|
32424
|
+
'display_status',
|
|
32407
32425
|
'warnings',
|
|
32408
32426
|
'errors',
|
|
32409
32427
|
'pending_mutations',
|