@seamapi/types 1.1002.0 → 1.1004.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 +168 -86
- package/package.json +1 -1
- 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 +168 -86
package/package.json
CHANGED
|
@@ -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',
|