@seamapi/types 1.533.0 → 1.534.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 +2 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +13 -12
- package/dist/index.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +3 -3
- package/lib/seam/connect/models/access-grants/access-method.js +1 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +10 -10
- package/lib/seam/connect/openapi.d.ts +1 -0
- package/lib/seam/connect/openapi.js +1 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +1 -0
- package/src/lib/seam/connect/route-types.ts +4 -4
package/dist/connect.d.cts
CHANGED
|
@@ -3701,7 +3701,7 @@ declare const access_method: z.ZodObject<{
|
|
|
3701
3701
|
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
3702
3702
|
client_session_token: z.ZodOptional<z.ZodString>;
|
|
3703
3703
|
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
3704
|
-
code: z.ZodOptional<z.ZodString
|
|
3704
|
+
code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3705
3705
|
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
3706
3706
|
}, "strip", z.ZodTypeAny, {
|
|
3707
3707
|
display_name: string;
|
|
@@ -3711,7 +3711,7 @@ declare const access_method: z.ZodObject<{
|
|
|
3711
3711
|
access_method_id: string;
|
|
3712
3712
|
issued_at: string | null;
|
|
3713
3713
|
is_issued: boolean;
|
|
3714
|
-
code?: string | undefined;
|
|
3714
|
+
code?: string | null | undefined;
|
|
3715
3715
|
client_session_token?: string | undefined;
|
|
3716
3716
|
instant_key_url?: string | undefined;
|
|
3717
3717
|
customization_profile_id?: string | undefined;
|
|
@@ -3724,7 +3724,7 @@ declare const access_method: z.ZodObject<{
|
|
|
3724
3724
|
access_method_id: string;
|
|
3725
3725
|
issued_at: string | null;
|
|
3726
3726
|
is_issued: boolean;
|
|
3727
|
-
code?: string | undefined;
|
|
3727
|
+
code?: string | null | undefined;
|
|
3728
3728
|
client_session_token?: string | undefined;
|
|
3729
3729
|
instant_key_url?: string | undefined;
|
|
3730
3730
|
customization_profile_id?: string | undefined;
|
|
@@ -24314,7 +24314,7 @@ declare const batch: z.ZodObject<{
|
|
|
24314
24314
|
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
24315
24315
|
client_session_token: z.ZodOptional<z.ZodString>;
|
|
24316
24316
|
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
24317
|
-
code: z.ZodOptional<z.ZodString
|
|
24317
|
+
code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24318
24318
|
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
24319
24319
|
}, "strip", z.ZodTypeAny, {
|
|
24320
24320
|
display_name: string;
|
|
@@ -24324,7 +24324,7 @@ declare const batch: z.ZodObject<{
|
|
|
24324
24324
|
access_method_id: string;
|
|
24325
24325
|
issued_at: string | null;
|
|
24326
24326
|
is_issued: boolean;
|
|
24327
|
-
code?: string | undefined;
|
|
24327
|
+
code?: string | null | undefined;
|
|
24328
24328
|
client_session_token?: string | undefined;
|
|
24329
24329
|
instant_key_url?: string | undefined;
|
|
24330
24330
|
customization_profile_id?: string | undefined;
|
|
@@ -24337,7 +24337,7 @@ declare const batch: z.ZodObject<{
|
|
|
24337
24337
|
access_method_id: string;
|
|
24338
24338
|
issued_at: string | null;
|
|
24339
24339
|
is_issued: boolean;
|
|
24340
|
-
code?: string | undefined;
|
|
24340
|
+
code?: string | null | undefined;
|
|
24341
24341
|
client_session_token?: string | undefined;
|
|
24342
24342
|
instant_key_url?: string | undefined;
|
|
24343
24343
|
customization_profile_id?: string | undefined;
|
|
@@ -31466,7 +31466,7 @@ declare const batch: z.ZodObject<{
|
|
|
31466
31466
|
access_method_id: string;
|
|
31467
31467
|
issued_at: string | null;
|
|
31468
31468
|
is_issued: boolean;
|
|
31469
|
-
code?: string | undefined;
|
|
31469
|
+
code?: string | null | undefined;
|
|
31470
31470
|
client_session_token?: string | undefined;
|
|
31471
31471
|
instant_key_url?: string | undefined;
|
|
31472
31472
|
customization_profile_id?: string | undefined;
|
|
@@ -35323,7 +35323,7 @@ declare const batch: z.ZodObject<{
|
|
|
35323
35323
|
access_method_id: string;
|
|
35324
35324
|
issued_at: string | null;
|
|
35325
35325
|
is_issued: boolean;
|
|
35326
|
-
code?: string | undefined;
|
|
35326
|
+
code?: string | null | undefined;
|
|
35327
35327
|
client_session_token?: string | undefined;
|
|
35328
35328
|
instant_key_url?: string | undefined;
|
|
35329
35329
|
customization_profile_id?: string | undefined;
|
|
@@ -51206,6 +51206,7 @@ declare const _default: {
|
|
|
51206
51206
|
};
|
|
51207
51207
|
code: {
|
|
51208
51208
|
description: string;
|
|
51209
|
+
nullable: boolean;
|
|
51209
51210
|
type: string;
|
|
51210
51211
|
};
|
|
51211
51212
|
created_at: {
|
|
@@ -114605,7 +114606,7 @@ type Routes = {
|
|
|
114605
114606
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
114606
114607
|
is_encoding_required?: boolean | undefined;
|
|
114607
114608
|
/** The actual PIN code for code access methods. */
|
|
114608
|
-
code?: string | undefined;
|
|
114609
|
+
code?: (string | null) | undefined;
|
|
114609
114610
|
/** ID of the customization profile associated with the access method. */
|
|
114610
114611
|
customization_profile_id?: string | undefined;
|
|
114611
114612
|
};
|
|
@@ -118620,7 +118621,7 @@ type Routes = {
|
|
|
118620
118621
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
118621
118622
|
is_encoding_required?: boolean | undefined;
|
|
118622
118623
|
/** The actual PIN code for code access methods. */
|
|
118623
|
-
code?: string | undefined;
|
|
118624
|
+
code?: (string | null) | undefined;
|
|
118624
118625
|
/** ID of the customization profile associated with the access method. */
|
|
118625
118626
|
customization_profile_id?: string | undefined;
|
|
118626
118627
|
}[] | undefined;
|
|
@@ -121662,7 +121663,7 @@ type Routes = {
|
|
|
121662
121663
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
121663
121664
|
is_encoding_required?: boolean | undefined;
|
|
121664
121665
|
/** The actual PIN code for code access methods. */
|
|
121665
|
-
code?: string | undefined;
|
|
121666
|
+
code?: (string | null) | undefined;
|
|
121666
121667
|
/** ID of the customization profile associated with the access method. */
|
|
121667
121668
|
customization_profile_id?: string | undefined;
|
|
121668
121669
|
}[];
|
|
@@ -184450,7 +184451,7 @@ type Routes = {
|
|
|
184450
184451
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
184451
184452
|
is_encoding_required?: boolean | undefined;
|
|
184452
184453
|
/** The actual PIN code for code access methods. */
|
|
184453
|
-
code?: string | undefined;
|
|
184454
|
+
code?: (string | null) | undefined;
|
|
184454
184455
|
/** ID of the customization profile associated with the access method. */
|
|
184455
184456
|
customization_profile_id?: string | undefined;
|
|
184456
184457
|
}[] | undefined;
|
package/dist/index.cjs
CHANGED
|
@@ -2334,7 +2334,7 @@ var access_method = zod.z.object({
|
|
|
2334
2334
|
is_encoding_required: zod.z.boolean().optional().describe(
|
|
2335
2335
|
"Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method."
|
|
2336
2336
|
),
|
|
2337
|
-
code: zod.z.string().optional().describe("The actual PIN code for code access methods."),
|
|
2337
|
+
code: zod.z.string().nullable().optional().describe("The actual PIN code for code access methods."),
|
|
2338
2338
|
customization_profile_id: zod.z.string().uuid().optional().describe(
|
|
2339
2339
|
"ID of the customization profile associated with the access method."
|
|
2340
2340
|
)
|
|
@@ -7295,6 +7295,7 @@ var openapi_default = {
|
|
|
7295
7295
|
},
|
|
7296
7296
|
code: {
|
|
7297
7297
|
description: "The actual PIN code for code access methods.",
|
|
7298
|
+
nullable: true,
|
|
7298
7299
|
type: "string"
|
|
7299
7300
|
},
|
|
7300
7301
|
created_at: {
|