@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
|
@@ -11457,6 +11457,8 @@ export interface Routes {
|
|
|
11457
11457
|
issued_at?: string | undefined;
|
|
11458
11458
|
/** URL of the Instant Key for mobile key access methods. */
|
|
11459
11459
|
instant_key_url?: string | undefined;
|
|
11460
|
+
/** Token of the client session associated with the access method. */
|
|
11461
|
+
client_session_token?: string | undefined;
|
|
11460
11462
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
11461
11463
|
is_encoding_required?: boolean | undefined;
|
|
11462
11464
|
/** The actual PIN code for code access methods. */
|
|
@@ -11496,6 +11498,8 @@ export interface Routes {
|
|
|
11496
11498
|
issued_at?: string | undefined;
|
|
11497
11499
|
/** URL of the Instant Key for mobile key access methods. */
|
|
11498
11500
|
instant_key_url?: string | undefined;
|
|
11501
|
+
/** Token of the client session associated with the access method. */
|
|
11502
|
+
client_session_token?: string | undefined;
|
|
11499
11503
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
11500
11504
|
is_encoding_required?: boolean | undefined;
|
|
11501
11505
|
/** The actual PIN code for code access methods. */
|
|
@@ -63709,6 +63713,8 @@ export interface Routes {
|
|
|
63709
63713
|
issued_at?: string | undefined;
|
|
63710
63714
|
/** URL of the Instant Key for mobile key access methods. */
|
|
63711
63715
|
instant_key_url?: string | undefined;
|
|
63716
|
+
/** Token of the client session associated with the access method. */
|
|
63717
|
+
client_session_token?: string | undefined;
|
|
63712
63718
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
63713
63719
|
is_encoding_required?: boolean | undefined;
|
|
63714
63720
|
/** The actual PIN code for code access methods. */
|
|
@@ -63742,6 +63748,8 @@ export interface Routes {
|
|
|
63742
63748
|
issued_at?: string | undefined;
|
|
63743
63749
|
/** URL of the Instant Key for mobile key access methods. */
|
|
63744
63750
|
instant_key_url?: string | undefined;
|
|
63751
|
+
/** Token of the client session associated with the access method. */
|
|
63752
|
+
client_session_token?: string | undefined;
|
|
63745
63753
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
63746
63754
|
is_encoding_required?: boolean | undefined;
|
|
63747
63755
|
/** The actual PIN code for code access methods. */
|
package/package.json
CHANGED
|
@@ -26,6 +26,10 @@ export const access_method = z.object({
|
|
|
26
26
|
.url()
|
|
27
27
|
.optional()
|
|
28
28
|
.describe('URL of the Instant Key for mobile key access methods.'),
|
|
29
|
+
client_session_token: z
|
|
30
|
+
.string()
|
|
31
|
+
.optional()
|
|
32
|
+
.describe('Token of the client session associated with the access method.'),
|
|
29
33
|
is_encoding_required: z
|
|
30
34
|
.boolean()
|
|
31
35
|
.optional()
|
|
@@ -1950,6 +1950,11 @@ export default {
|
|
|
1950
1950
|
format: 'uuid',
|
|
1951
1951
|
type: 'string',
|
|
1952
1952
|
},
|
|
1953
|
+
client_session_token: {
|
|
1954
|
+
description:
|
|
1955
|
+
'Token of the client session associated with the access method.',
|
|
1956
|
+
type: 'string',
|
|
1957
|
+
},
|
|
1953
1958
|
code: {
|
|
1954
1959
|
description: 'The actual PIN code for code access methods.',
|
|
1955
1960
|
type: 'string',
|
|
@@ -12864,6 +12864,8 @@ export interface Routes {
|
|
|
12864
12864
|
issued_at?: string | undefined
|
|
12865
12865
|
/** URL of the Instant Key for mobile key access methods. */
|
|
12866
12866
|
instant_key_url?: string | undefined
|
|
12867
|
+
/** Token of the client session associated with the access method. */
|
|
12868
|
+
client_session_token?: string | undefined
|
|
12867
12869
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
12868
12870
|
is_encoding_required?: boolean | undefined
|
|
12869
12871
|
/** The actual PIN code for code access methods. */
|
|
@@ -12903,6 +12905,8 @@ export interface Routes {
|
|
|
12903
12905
|
issued_at?: string | undefined
|
|
12904
12906
|
/** URL of the Instant Key for mobile key access methods. */
|
|
12905
12907
|
instant_key_url?: string | undefined
|
|
12908
|
+
/** Token of the client session associated with the access method. */
|
|
12909
|
+
client_session_token?: string | undefined
|
|
12906
12910
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
12907
12911
|
is_encoding_required?: boolean | undefined
|
|
12908
12912
|
/** The actual PIN code for code access methods. */
|
|
@@ -75055,6 +75059,8 @@ export interface Routes {
|
|
|
75055
75059
|
issued_at?: string | undefined
|
|
75056
75060
|
/** URL of the Instant Key for mobile key access methods. */
|
|
75057
75061
|
instant_key_url?: string | undefined
|
|
75062
|
+
/** Token of the client session associated with the access method. */
|
|
75063
|
+
client_session_token?: string | undefined
|
|
75058
75064
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
75059
75065
|
is_encoding_required?: boolean | undefined
|
|
75060
75066
|
/** The actual PIN code for code access methods. */
|
|
@@ -75088,6 +75094,8 @@ export interface Routes {
|
|
|
75088
75094
|
issued_at?: string | undefined
|
|
75089
75095
|
/** URL of the Instant Key for mobile key access methods. */
|
|
75090
75096
|
instant_key_url?: string | undefined
|
|
75097
|
+
/** Token of the client session associated with the access method. */
|
|
75098
|
+
client_session_token?: string | undefined
|
|
75091
75099
|
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
75092
75100
|
is_encoding_required?: boolean | undefined
|
|
75093
75101
|
/** The actual PIN code for code access methods. */
|