@seamapi/types 1.450.0 → 1.451.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 +4 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +15 -0
- package/dist/index.cjs +4 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/access-method.js +4 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +4 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +4 -0
- package/src/lib/seam/connect/openapi.ts +5 -0
- package/src/lib/seam/connect/route-types.ts +8 -0
package/dist/connect.d.cts
CHANGED
|
@@ -3681,6 +3681,7 @@ declare const access_method: z.ZodObject<{
|
|
|
3681
3681
|
created_at: z.ZodString;
|
|
3682
3682
|
issued_at: z.ZodOptional<z.ZodString>;
|
|
3683
3683
|
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
3684
|
+
client_session_token: z.ZodOptional<z.ZodString>;
|
|
3684
3685
|
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
3685
3686
|
code: z.ZodOptional<z.ZodString>;
|
|
3686
3687
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3690,6 +3691,7 @@ declare const access_method: z.ZodObject<{
|
|
|
3690
3691
|
mode: "code" | "card" | "mobile_key";
|
|
3691
3692
|
access_method_id: string;
|
|
3692
3693
|
code?: string | undefined;
|
|
3694
|
+
client_session_token?: string | undefined;
|
|
3693
3695
|
instant_key_url?: string | undefined;
|
|
3694
3696
|
issued_at?: string | undefined;
|
|
3695
3697
|
is_encoding_required?: boolean | undefined;
|
|
@@ -3700,6 +3702,7 @@ declare const access_method: z.ZodObject<{
|
|
|
3700
3702
|
mode: "code" | "card" | "mobile_key";
|
|
3701
3703
|
access_method_id: string;
|
|
3702
3704
|
code?: string | undefined;
|
|
3705
|
+
client_session_token?: string | undefined;
|
|
3703
3706
|
instant_key_url?: string | undefined;
|
|
3704
3707
|
issued_at?: string | undefined;
|
|
3705
3708
|
is_encoding_required?: boolean | undefined;
|
|
@@ -28537,6 +28540,10 @@ declare const _default: {
|
|
|
28537
28540
|
format: string;
|
|
28538
28541
|
type: string;
|
|
28539
28542
|
};
|
|
28543
|
+
client_session_token: {
|
|
28544
|
+
description: string;
|
|
28545
|
+
type: string;
|
|
28546
|
+
};
|
|
28540
28547
|
code: {
|
|
28541
28548
|
description: string;
|
|
28542
28549
|
type: string;
|
|
@@ -88350,6 +88357,8 @@ interface Routes {
|
|
|
88350
88357
|
issued_at?: string | undefined;
|
|
88351
88358
|
/** URL of the Instant Key for mobile key access methods. */
|
|
88352
88359
|
instant_key_url?: string | undefined;
|
|
88360
|
+
/** Token of the client session associated with the access method. */
|
|
88361
|
+
client_session_token?: string | undefined;
|
|
88353
88362
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
88354
88363
|
is_encoding_required?: boolean | undefined;
|
|
88355
88364
|
/** The actual PIN code for code access methods. */
|
|
@@ -88389,6 +88398,8 @@ interface Routes {
|
|
|
88389
88398
|
issued_at?: string | undefined;
|
|
88390
88399
|
/** URL of the Instant Key for mobile key access methods. */
|
|
88391
88400
|
instant_key_url?: string | undefined;
|
|
88401
|
+
/** Token of the client session associated with the access method. */
|
|
88402
|
+
client_session_token?: string | undefined;
|
|
88392
88403
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
88393
88404
|
is_encoding_required?: boolean | undefined;
|
|
88394
88405
|
/** The actual PIN code for code access methods. */
|
|
@@ -140602,6 +140613,8 @@ interface Routes {
|
|
|
140602
140613
|
issued_at?: string | undefined;
|
|
140603
140614
|
/** URL of the Instant Key for mobile key access methods. */
|
|
140604
140615
|
instant_key_url?: string | undefined;
|
|
140616
|
+
/** Token of the client session associated with the access method. */
|
|
140617
|
+
client_session_token?: string | undefined;
|
|
140605
140618
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
140606
140619
|
is_encoding_required?: boolean | undefined;
|
|
140607
140620
|
/** The actual PIN code for code access methods. */
|
|
@@ -140635,6 +140648,8 @@ interface Routes {
|
|
|
140635
140648
|
issued_at?: string | undefined;
|
|
140636
140649
|
/** URL of the Instant Key for mobile key access methods. */
|
|
140637
140650
|
instant_key_url?: string | undefined;
|
|
140651
|
+
/** Token of the client session associated with the access method. */
|
|
140652
|
+
client_session_token?: string | undefined;
|
|
140638
140653
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
140639
140654
|
is_encoding_required?: boolean | undefined;
|
|
140640
140655
|
/** The actual PIN code for code access methods. */
|
package/dist/index.cjs
CHANGED
|
@@ -7224,6 +7224,10 @@ var openapi_default = {
|
|
|
7224
7224
|
format: "uuid",
|
|
7225
7225
|
type: "string"
|
|
7226
7226
|
},
|
|
7227
|
+
client_session_token: {
|
|
7228
|
+
description: "Token of the client session associated with the access method.",
|
|
7229
|
+
type: "string"
|
|
7230
|
+
},
|
|
7227
7231
|
code: {
|
|
7228
7232
|
description: "The actual PIN code for code access methods.",
|
|
7229
7233
|
type: "string"
|