@seamapi/types 1.877.1 → 1.878.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +46 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +42 -0
- package/dist/index.cjs +46 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +12 -0
- package/lib/seam/connect/models/access-grants/access-method.js +8 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/openapi.js +40 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +36 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +50 -0
- package/src/lib/seam/connect/route-types.ts +36 -0
|
@@ -456,6 +456,8 @@ export declare const access_method: z.ZodObject<{
|
|
|
456
456
|
client_session_token: z.ZodOptional<z.ZodString>;
|
|
457
457
|
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
458
458
|
is_ready_for_encoding: z.ZodOptional<z.ZodBoolean>;
|
|
459
|
+
is_assignment_required: z.ZodOptional<z.ZodBoolean>;
|
|
460
|
+
is_ready_for_assignment: z.ZodOptional<z.ZodBoolean>;
|
|
459
461
|
code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
460
462
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
461
463
|
created_at: z.ZodString;
|
|
@@ -690,6 +692,8 @@ export declare const access_method: z.ZodObject<{
|
|
|
690
692
|
customization_profile_id?: string | undefined;
|
|
691
693
|
is_encoding_required?: boolean | undefined;
|
|
692
694
|
is_ready_for_encoding?: boolean | undefined;
|
|
695
|
+
is_assignment_required?: boolean | undefined;
|
|
696
|
+
is_ready_for_assignment?: boolean | undefined;
|
|
693
697
|
}, {
|
|
694
698
|
display_name: string;
|
|
695
699
|
workspace_id: string;
|
|
@@ -751,6 +755,8 @@ export declare const access_method: z.ZodObject<{
|
|
|
751
755
|
customization_profile_id?: string | undefined;
|
|
752
756
|
is_encoding_required?: boolean | undefined;
|
|
753
757
|
is_ready_for_encoding?: boolean | undefined;
|
|
758
|
+
is_assignment_required?: boolean | undefined;
|
|
759
|
+
is_ready_for_assignment?: boolean | undefined;
|
|
754
760
|
}>;
|
|
755
761
|
export type AccessMethod = z.infer<typeof access_method>;
|
|
756
762
|
export declare const unmanaged_access_method: z.ZodObject<Omit<{
|
|
@@ -765,6 +771,8 @@ export declare const unmanaged_access_method: z.ZodObject<Omit<{
|
|
|
765
771
|
client_session_token: z.ZodOptional<z.ZodString>;
|
|
766
772
|
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
767
773
|
is_ready_for_encoding: z.ZodOptional<z.ZodBoolean>;
|
|
774
|
+
is_assignment_required: z.ZodOptional<z.ZodBoolean>;
|
|
775
|
+
is_ready_for_assignment: z.ZodOptional<z.ZodBoolean>;
|
|
768
776
|
code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
769
777
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
770
778
|
created_at: z.ZodString;
|
|
@@ -996,6 +1004,8 @@ export declare const unmanaged_access_method: z.ZodObject<Omit<{
|
|
|
996
1004
|
code?: string | null | undefined;
|
|
997
1005
|
is_encoding_required?: boolean | undefined;
|
|
998
1006
|
is_ready_for_encoding?: boolean | undefined;
|
|
1007
|
+
is_assignment_required?: boolean | undefined;
|
|
1008
|
+
is_ready_for_assignment?: boolean | undefined;
|
|
999
1009
|
}, {
|
|
1000
1010
|
display_name: string;
|
|
1001
1011
|
workspace_id: string;
|
|
@@ -1054,6 +1064,8 @@ export declare const unmanaged_access_method: z.ZodObject<Omit<{
|
|
|
1054
1064
|
code?: string | null | undefined;
|
|
1055
1065
|
is_encoding_required?: boolean | undefined;
|
|
1056
1066
|
is_ready_for_encoding?: boolean | undefined;
|
|
1067
|
+
is_assignment_required?: boolean | undefined;
|
|
1068
|
+
is_ready_for_assignment?: boolean | undefined;
|
|
1057
1069
|
}>;
|
|
1058
1070
|
export type UnmanagedAccessMethod = z.infer<typeof unmanaged_access_method>;
|
|
1059
1071
|
export {};
|
|
@@ -194,6 +194,14 @@ export const access_method = z.object({
|
|
|
194
194
|
.boolean()
|
|
195
195
|
.optional()
|
|
196
196
|
.describe('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.'),
|
|
197
|
+
is_assignment_required: z
|
|
198
|
+
.boolean()
|
|
199
|
+
.optional()
|
|
200
|
+
.describe('Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment.'),
|
|
201
|
+
is_ready_for_assignment: z
|
|
202
|
+
.boolean()
|
|
203
|
+
.optional()
|
|
204
|
+
.describe('Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment.'),
|
|
197
205
|
code: z
|
|
198
206
|
.string()
|
|
199
207
|
.nullable()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"access-method.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-grants/access-method.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"access-method.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-grants/access-method.ts"],"names":[],"mappings":"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"}
|
|
@@ -2589,6 +2589,10 @@ const openapi = {
|
|
|
2589
2589
|
format: 'uri',
|
|
2590
2590
|
type: 'string',
|
|
2591
2591
|
},
|
|
2592
|
+
is_assignment_required: {
|
|
2593
|
+
description: 'Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment.',
|
|
2594
|
+
type: 'boolean',
|
|
2595
|
+
},
|
|
2592
2596
|
is_encoding_required: {
|
|
2593
2597
|
description: 'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
|
|
2594
2598
|
type: 'boolean',
|
|
@@ -2597,6 +2601,10 @@ const openapi = {
|
|
|
2597
2601
|
description: 'Indicates whether the access method has been issued.',
|
|
2598
2602
|
type: 'boolean',
|
|
2599
2603
|
},
|
|
2604
|
+
is_ready_for_assignment: {
|
|
2605
|
+
description: 'Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment.',
|
|
2606
|
+
type: 'boolean',
|
|
2607
|
+
},
|
|
2600
2608
|
is_ready_for_encoding: {
|
|
2601
2609
|
description: '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.',
|
|
2602
2610
|
type: 'boolean',
|
|
@@ -37418,6 +37426,10 @@ const openapi = {
|
|
|
37418
37426
|
description: 'Display name of the access method.',
|
|
37419
37427
|
type: 'string',
|
|
37420
37428
|
},
|
|
37429
|
+
is_assignment_required: {
|
|
37430
|
+
description: 'Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment.',
|
|
37431
|
+
type: 'boolean',
|
|
37432
|
+
},
|
|
37421
37433
|
is_encoding_required: {
|
|
37422
37434
|
description: 'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
|
|
37423
37435
|
type: 'boolean',
|
|
@@ -37426,6 +37438,10 @@ const openapi = {
|
|
|
37426
37438
|
description: 'Indicates whether the access method has been issued.',
|
|
37427
37439
|
type: 'boolean',
|
|
37428
37440
|
},
|
|
37441
|
+
is_ready_for_assignment: {
|
|
37442
|
+
description: 'Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment.',
|
|
37443
|
+
type: 'boolean',
|
|
37444
|
+
},
|
|
37429
37445
|
is_ready_for_encoding: {
|
|
37430
37446
|
description: '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.',
|
|
37431
37447
|
type: 'boolean',
|
|
@@ -37813,6 +37829,10 @@ const openapi = {
|
|
|
37813
37829
|
description: 'Display name of the access method.',
|
|
37814
37830
|
type: 'string',
|
|
37815
37831
|
},
|
|
37832
|
+
is_assignment_required: {
|
|
37833
|
+
description: 'Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment.',
|
|
37834
|
+
type: 'boolean',
|
|
37835
|
+
},
|
|
37816
37836
|
is_encoding_required: {
|
|
37817
37837
|
description: 'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
|
|
37818
37838
|
type: 'boolean',
|
|
@@ -37821,6 +37841,10 @@ const openapi = {
|
|
|
37821
37841
|
description: 'Indicates whether the access method has been issued.',
|
|
37822
37842
|
type: 'boolean',
|
|
37823
37843
|
},
|
|
37844
|
+
is_ready_for_assignment: {
|
|
37845
|
+
description: 'Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment.',
|
|
37846
|
+
type: 'boolean',
|
|
37847
|
+
},
|
|
37824
37848
|
is_ready_for_encoding: {
|
|
37825
37849
|
description: '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.',
|
|
37826
37850
|
type: 'boolean',
|
|
@@ -38236,6 +38260,10 @@ const openapi = {
|
|
|
38236
38260
|
description: 'Display name of the access method.',
|
|
38237
38261
|
type: 'string',
|
|
38238
38262
|
},
|
|
38263
|
+
is_assignment_required: {
|
|
38264
|
+
description: 'Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment.',
|
|
38265
|
+
type: 'boolean',
|
|
38266
|
+
},
|
|
38239
38267
|
is_encoding_required: {
|
|
38240
38268
|
description: 'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
|
|
38241
38269
|
type: 'boolean',
|
|
@@ -38244,6 +38272,10 @@ const openapi = {
|
|
|
38244
38272
|
description: 'Indicates whether the access method has been issued.',
|
|
38245
38273
|
type: 'boolean',
|
|
38246
38274
|
},
|
|
38275
|
+
is_ready_for_assignment: {
|
|
38276
|
+
description: 'Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment.',
|
|
38277
|
+
type: 'boolean',
|
|
38278
|
+
},
|
|
38247
38279
|
is_ready_for_encoding: {
|
|
38248
38280
|
description: '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.',
|
|
38249
38281
|
type: 'boolean',
|
|
@@ -38650,6 +38682,10 @@ const openapi = {
|
|
|
38650
38682
|
description: 'Display name of the access method.',
|
|
38651
38683
|
type: 'string',
|
|
38652
38684
|
},
|
|
38685
|
+
is_assignment_required: {
|
|
38686
|
+
description: 'Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment.',
|
|
38687
|
+
type: 'boolean',
|
|
38688
|
+
},
|
|
38653
38689
|
is_encoding_required: {
|
|
38654
38690
|
description: 'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
|
|
38655
38691
|
type: 'boolean',
|
|
@@ -38658,6 +38694,10 @@ const openapi = {
|
|
|
38658
38694
|
description: 'Indicates whether the access method has been issued.',
|
|
38659
38695
|
type: 'boolean',
|
|
38660
38696
|
},
|
|
38697
|
+
is_ready_for_assignment: {
|
|
38698
|
+
description: 'Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment.',
|
|
38699
|
+
type: 'boolean',
|
|
38700
|
+
},
|
|
38661
38701
|
is_ready_for_encoding: {
|
|
38662
38702
|
description: '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.',
|
|
38663
38703
|
type: 'boolean',
|