@seamapi/types 1.426.0 → 1.427.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 +8 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +28 -6
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +5 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +2 -2
- 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/action-attempts/action-attempt.d.ts +4 -4
- package/lib/seam/connect/models/action-attempts/encode-access-method.d.ts +4 -4
- package/lib/seam/connect/openapi.d.ts +7 -0
- package/lib/seam/connect/openapi.js +7 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +7 -0
- package/src/lib/seam/connect/models/access-grants/access-method.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +8 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.d.cts
CHANGED
|
@@ -3639,6 +3639,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3639
3639
|
}>, "many">;
|
|
3640
3640
|
access_method_ids: z.ZodArray<z.ZodString, "many">;
|
|
3641
3641
|
display_name: z.ZodString;
|
|
3642
|
+
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
3642
3643
|
created_at: z.ZodString;
|
|
3643
3644
|
starts_at: z.ZodOptional<z.ZodString>;
|
|
3644
3645
|
ends_at: z.ZodOptional<z.ZodString>;
|
|
@@ -3659,6 +3660,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3659
3660
|
access_method_ids: string[];
|
|
3660
3661
|
starts_at?: string | undefined;
|
|
3661
3662
|
ends_at?: string | undefined;
|
|
3663
|
+
instant_key_url?: string | undefined;
|
|
3662
3664
|
}, {
|
|
3663
3665
|
display_name: string;
|
|
3664
3666
|
workspace_id: string;
|
|
@@ -3676,6 +3678,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3676
3678
|
access_method_ids: string[];
|
|
3677
3679
|
starts_at?: string | undefined;
|
|
3678
3680
|
ends_at?: string | undefined;
|
|
3681
|
+
instant_key_url?: string | undefined;
|
|
3679
3682
|
}>;
|
|
3680
3683
|
type AccessGrant = z.infer<typeof access_grant>;
|
|
3681
3684
|
|
|
@@ -3694,8 +3697,8 @@ declare const access_method: z.ZodObject<{
|
|
|
3694
3697
|
created_at: string;
|
|
3695
3698
|
mode: "code" | "card" | "mobile_key";
|
|
3696
3699
|
access_method_id: string;
|
|
3697
|
-
issued_at?: string | undefined;
|
|
3698
3700
|
instant_key_url?: string | undefined;
|
|
3701
|
+
issued_at?: string | undefined;
|
|
3699
3702
|
is_card_encoding_required?: boolean | undefined;
|
|
3700
3703
|
}, {
|
|
3701
3704
|
display_name: string;
|
|
@@ -3703,8 +3706,8 @@ declare const access_method: z.ZodObject<{
|
|
|
3703
3706
|
created_at: string;
|
|
3704
3707
|
mode: "code" | "card" | "mobile_key";
|
|
3705
3708
|
access_method_id: string;
|
|
3706
|
-
issued_at?: string | undefined;
|
|
3707
3709
|
instant_key_url?: string | undefined;
|
|
3710
|
+
issued_at?: string | undefined;
|
|
3708
3711
|
is_card_encoding_required?: boolean | undefined;
|
|
3709
3712
|
}>;
|
|
3710
3713
|
type AccessMethod = z.infer<typeof access_method>;
|
|
@@ -7981,8 +7984,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7981
7984
|
created_at: string;
|
|
7982
7985
|
mode: "code" | "card" | "mobile_key";
|
|
7983
7986
|
access_method_id: string;
|
|
7984
|
-
issued_at?: string | undefined;
|
|
7985
7987
|
instant_key_url?: string | undefined;
|
|
7988
|
+
issued_at?: string | undefined;
|
|
7986
7989
|
is_card_encoding_required?: boolean | undefined;
|
|
7987
7990
|
}, {
|
|
7988
7991
|
display_name: string;
|
|
@@ -7990,8 +7993,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7990
7993
|
created_at: string;
|
|
7991
7994
|
mode: "code" | "card" | "mobile_key";
|
|
7992
7995
|
access_method_id: string;
|
|
7993
|
-
issued_at?: string | undefined;
|
|
7994
7996
|
instant_key_url?: string | undefined;
|
|
7997
|
+
issued_at?: string | undefined;
|
|
7995
7998
|
is_card_encoding_required?: boolean | undefined;
|
|
7996
7999
|
}>;
|
|
7997
8000
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -8004,8 +8007,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8004
8007
|
created_at: string;
|
|
8005
8008
|
mode: "code" | "card" | "mobile_key";
|
|
8006
8009
|
access_method_id: string;
|
|
8007
|
-
issued_at?: string | undefined;
|
|
8008
8010
|
instant_key_url?: string | undefined;
|
|
8011
|
+
issued_at?: string | undefined;
|
|
8009
8012
|
is_card_encoding_required?: boolean | undefined;
|
|
8010
8013
|
};
|
|
8011
8014
|
action_type: "ENCODE_ACCESS_METHOD";
|
|
@@ -8019,8 +8022,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8019
8022
|
created_at: string;
|
|
8020
8023
|
mode: "code" | "card" | "mobile_key";
|
|
8021
8024
|
access_method_id: string;
|
|
8022
|
-
issued_at?: string | undefined;
|
|
8023
8025
|
instant_key_url?: string | undefined;
|
|
8026
|
+
issued_at?: string | undefined;
|
|
8024
8027
|
is_card_encoding_required?: boolean | undefined;
|
|
8025
8028
|
};
|
|
8026
8029
|
action_type: "ENCODE_ACCESS_METHOD";
|
|
@@ -22232,6 +22235,11 @@ declare const _default: {
|
|
|
22232
22235
|
format: string;
|
|
22233
22236
|
type: string;
|
|
22234
22237
|
};
|
|
22238
|
+
instant_key_url: {
|
|
22239
|
+
description: string;
|
|
22240
|
+
format: string;
|
|
22241
|
+
type: string;
|
|
22242
|
+
};
|
|
22235
22243
|
location_ids: {
|
|
22236
22244
|
deprecated: boolean;
|
|
22237
22245
|
items: {
|
|
@@ -22321,6 +22329,7 @@ declare const _default: {
|
|
|
22321
22329
|
};
|
|
22322
22330
|
instant_key_url: {
|
|
22323
22331
|
description: string;
|
|
22332
|
+
format: string;
|
|
22324
22333
|
type: string;
|
|
22325
22334
|
};
|
|
22326
22335
|
is_card_encoding_required: {
|
|
@@ -24636,6 +24645,7 @@ declare const _default: {
|
|
|
24636
24645
|
};
|
|
24637
24646
|
instant_key_url: {
|
|
24638
24647
|
description: string;
|
|
24648
|
+
format: string;
|
|
24639
24649
|
type: string;
|
|
24640
24650
|
};
|
|
24641
24651
|
is_card_encoding_required: {
|
|
@@ -78919,6 +78929,8 @@ interface Routes {
|
|
|
78919
78929
|
access_method_ids: string[];
|
|
78920
78930
|
/** Display name of the access grant. */
|
|
78921
78931
|
display_name: string;
|
|
78932
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
78933
|
+
instant_key_url?: string | undefined;
|
|
78922
78934
|
/** Date and time at which the access grant was created. */
|
|
78923
78935
|
created_at: string;
|
|
78924
78936
|
/** Date and time at which the access grant starts. */
|
|
@@ -78979,6 +78991,8 @@ interface Routes {
|
|
|
78979
78991
|
access_method_ids: string[];
|
|
78980
78992
|
/** Display name of the access grant. */
|
|
78981
78993
|
display_name: string;
|
|
78994
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
78995
|
+
instant_key_url?: string | undefined;
|
|
78982
78996
|
/** Date and time at which the access grant was created. */
|
|
78983
78997
|
created_at: string;
|
|
78984
78998
|
/** Date and time at which the access grant starts. */
|
|
@@ -79035,6 +79049,8 @@ interface Routes {
|
|
|
79035
79049
|
access_method_ids: string[];
|
|
79036
79050
|
/** Display name of the access grant. */
|
|
79037
79051
|
display_name: string;
|
|
79052
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
79053
|
+
instant_key_url?: string | undefined;
|
|
79038
79054
|
/** Date and time at which the access grant was created. */
|
|
79039
79055
|
created_at: string;
|
|
79040
79056
|
/** Date and time at which the access grant starts. */
|
|
@@ -131217,6 +131233,8 @@ interface Routes {
|
|
|
131217
131233
|
access_method_ids: string[];
|
|
131218
131234
|
/** Display name of the access grant. */
|
|
131219
131235
|
display_name: string;
|
|
131236
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
131237
|
+
instant_key_url?: string | undefined;
|
|
131220
131238
|
/** Date and time at which the access grant was created. */
|
|
131221
131239
|
created_at: string;
|
|
131222
131240
|
/** Date and time at which the access grant starts. */
|
|
@@ -131277,6 +131295,8 @@ interface Routes {
|
|
|
131277
131295
|
access_method_ids: string[];
|
|
131278
131296
|
/** Display name of the access grant. */
|
|
131279
131297
|
display_name: string;
|
|
131298
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
131299
|
+
instant_key_url?: string | undefined;
|
|
131280
131300
|
/** Date and time at which the access grant was created. */
|
|
131281
131301
|
created_at: string;
|
|
131282
131302
|
/** Date and time at which the access grant starts. */
|
|
@@ -131333,6 +131353,8 @@ interface Routes {
|
|
|
131333
131353
|
access_method_ids: string[];
|
|
131334
131354
|
/** Display name of the access grant. */
|
|
131335
131355
|
display_name: string;
|
|
131356
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
131357
|
+
instant_key_url?: string | undefined;
|
|
131336
131358
|
/** Date and time at which the access grant was created. */
|
|
131337
131359
|
created_at: string;
|
|
131338
131360
|
/** Date and time at which the access grant starts. */
|
|
@@ -23,6 +23,7 @@ export declare const access_grant: z.ZodObject<{
|
|
|
23
23
|
}>, "many">;
|
|
24
24
|
access_method_ids: z.ZodArray<z.ZodString, "many">;
|
|
25
25
|
display_name: z.ZodString;
|
|
26
|
+
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
26
27
|
created_at: z.ZodString;
|
|
27
28
|
starts_at: z.ZodOptional<z.ZodString>;
|
|
28
29
|
ends_at: z.ZodOptional<z.ZodString>;
|
|
@@ -43,6 +44,7 @@ export declare const access_grant: z.ZodObject<{
|
|
|
43
44
|
access_method_ids: string[];
|
|
44
45
|
starts_at?: string | undefined;
|
|
45
46
|
ends_at?: string | undefined;
|
|
47
|
+
instant_key_url?: string | undefined;
|
|
46
48
|
}, {
|
|
47
49
|
display_name: string;
|
|
48
50
|
workspace_id: string;
|
|
@@ -60,5 +62,6 @@ export declare const access_grant: z.ZodObject<{
|
|
|
60
62
|
access_method_ids: string[];
|
|
61
63
|
starts_at?: string | undefined;
|
|
62
64
|
ends_at?: string | undefined;
|
|
65
|
+
instant_key_url?: string | undefined;
|
|
63
66
|
}>;
|
|
64
67
|
export type AccessGrant = z.infer<typeof access_grant>;
|
|
@@ -25,6 +25,11 @@ export const access_grant = z.object({
|
|
|
25
25
|
.array(z.string().uuid())
|
|
26
26
|
.describe('IDs of the access methods created for the access grant.'),
|
|
27
27
|
display_name: z.string().describe('Display name of the access grant.'),
|
|
28
|
+
instant_key_url: z
|
|
29
|
+
.string()
|
|
30
|
+
.url()
|
|
31
|
+
.optional()
|
|
32
|
+
.describe('Instant Key URL. Only returned if the access grant has a single mobile_key access_method. '),
|
|
28
33
|
created_at: z
|
|
29
34
|
.string()
|
|
30
35
|
.datetime()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"access-grant.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-grants/access-grant.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAA;AAEtE,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,4DAA4D,CAAC;IACzE,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;IACtE,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC;;;;GAIjD,CAAC;IACF,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;SACxB,QAAQ,CAAC,2DAA2D,CAAC;IACxE,wBAAwB,EAAE,CAAC;SACxB,KAAK,CAAC,uBAAuB,CAAC;SAC9B,QAAQ,CAAC,8DAA8D,CAAC;IAC3E,iBAAiB,EAAE,CAAC;SACjB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;SACxB,QAAQ,CAAC,yDAAyD,CAAC;IACtE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC;IACtE,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,sDAAsD,CAAC;IACnE,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,iDAAiD,CAAC;IAC9D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,+CAA+C,CAAC;CAC7D,CAAC,CAAC,QAAQ,CAAC;;;;;;GAMT,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"access-grant.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-grants/access-grant.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAA;AAEtE,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,4DAA4D,CAAC;IACzE,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;IACtE,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC;;;;GAIjD,CAAC;IACF,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;SACxB,QAAQ,CAAC,2DAA2D,CAAC;IACxE,wBAAwB,EAAE,CAAC;SACxB,KAAK,CAAC,uBAAuB,CAAC;SAC9B,QAAQ,CAAC,8DAA8D,CAAC;IAC3E,iBAAiB,EAAE,CAAC;SACjB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;SACxB,QAAQ,CAAC,yDAAyD,CAAC;IACtE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC;IACtE,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,EAAE;SACV,QAAQ,CACP,4FAA4F,CAC7F;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,sDAAsD,CAAC;IACnE,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,iDAAiD,CAAC;IAC9D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,+CAA+C,CAAC;CAC7D,CAAC,CAAC,QAAQ,CAAC;;;;;;GAMT,CAAC,CAAA"}
|
|
@@ -14,8 +14,8 @@ export declare const access_method: z.ZodObject<{
|
|
|
14
14
|
created_at: string;
|
|
15
15
|
mode: "code" | "card" | "mobile_key";
|
|
16
16
|
access_method_id: string;
|
|
17
|
-
issued_at?: string | undefined;
|
|
18
17
|
instant_key_url?: string | undefined;
|
|
18
|
+
issued_at?: string | undefined;
|
|
19
19
|
is_card_encoding_required?: boolean | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
display_name: string;
|
|
@@ -23,8 +23,8 @@ export declare const access_method: z.ZodObject<{
|
|
|
23
23
|
created_at: string;
|
|
24
24
|
mode: "code" | "card" | "mobile_key";
|
|
25
25
|
access_method_id: string;
|
|
26
|
-
issued_at?: string | undefined;
|
|
27
26
|
instant_key_url?: string | undefined;
|
|
27
|
+
issued_at?: string | undefined;
|
|
28
28
|
is_card_encoding_required?: boolean | undefined;
|
|
29
29
|
}>;
|
|
30
30
|
export type AccessMethod = z.infer<typeof access_method>;
|
|
@@ -20,6 +20,7 @@ export const access_method = z.object({
|
|
|
20
20
|
.describe('Date and time at which the access method was issued.'),
|
|
21
21
|
instant_key_url: z
|
|
22
22
|
.string()
|
|
23
|
+
.url()
|
|
23
24
|
.optional()
|
|
24
25
|
.describe('URL of the Instant Key for mobile key access methods.'),
|
|
25
26
|
is_card_encoding_required: z
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"access-method.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-grants/access-method.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IACxE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oCAAoC,CAAC;IACvE,IAAI,EAAE,CAAC;SACJ,IAAI,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,YAAY,CAAC,CAAC;SACpC,QAAQ,CACP,qEAAqE,CACtE;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,sDAAsD,CAAC;IACnE,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,yBAAyB,EAAE,CAAC;SACzB,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,8EAA8E,CAC/E;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;;GAMT,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"access-method.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-grants/access-method.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IACxE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oCAAoC,CAAC;IACvE,IAAI,EAAE,CAAC;SACJ,IAAI,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,YAAY,CAAC,CAAC;SACpC,QAAQ,CACP,qEAAqE,CACtE;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,sDAAsD,CAAC;IACnE,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,yBAAyB,EAAE,CAAC;SACzB,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,8EAA8E,CAC/E;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;;GAMT,CAAC,CAAA"}
|
|
@@ -1694,8 +1694,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1694
1694
|
created_at: string;
|
|
1695
1695
|
mode: "code" | "card" | "mobile_key";
|
|
1696
1696
|
access_method_id: string;
|
|
1697
|
-
issued_at?: string | undefined;
|
|
1698
1697
|
instant_key_url?: string | undefined;
|
|
1698
|
+
issued_at?: string | undefined;
|
|
1699
1699
|
is_card_encoding_required?: boolean | undefined;
|
|
1700
1700
|
}, {
|
|
1701
1701
|
display_name: string;
|
|
@@ -1703,8 +1703,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1703
1703
|
created_at: string;
|
|
1704
1704
|
mode: "code" | "card" | "mobile_key";
|
|
1705
1705
|
access_method_id: string;
|
|
1706
|
-
issued_at?: string | undefined;
|
|
1707
1706
|
instant_key_url?: string | undefined;
|
|
1707
|
+
issued_at?: string | undefined;
|
|
1708
1708
|
is_card_encoding_required?: boolean | undefined;
|
|
1709
1709
|
}>;
|
|
1710
1710
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1717,8 +1717,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1717
1717
|
created_at: string;
|
|
1718
1718
|
mode: "code" | "card" | "mobile_key";
|
|
1719
1719
|
access_method_id: string;
|
|
1720
|
-
issued_at?: string | undefined;
|
|
1721
1720
|
instant_key_url?: string | undefined;
|
|
1721
|
+
issued_at?: string | undefined;
|
|
1722
1722
|
is_card_encoding_required?: boolean | undefined;
|
|
1723
1723
|
};
|
|
1724
1724
|
action_type: "ENCODE_ACCESS_METHOD";
|
|
@@ -1732,8 +1732,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1732
1732
|
created_at: string;
|
|
1733
1733
|
mode: "code" | "card" | "mobile_key";
|
|
1734
1734
|
access_method_id: string;
|
|
1735
|
-
issued_at?: string | undefined;
|
|
1736
1735
|
instant_key_url?: string | undefined;
|
|
1736
|
+
issued_at?: string | undefined;
|
|
1737
1737
|
is_card_encoding_required?: boolean | undefined;
|
|
1738
1738
|
};
|
|
1739
1739
|
action_type: "ENCODE_ACCESS_METHOD";
|
|
@@ -43,8 +43,8 @@ export declare const encode_access_method_action_attempt: z.ZodDiscriminatedUnio
|
|
|
43
43
|
created_at: string;
|
|
44
44
|
mode: "code" | "card" | "mobile_key";
|
|
45
45
|
access_method_id: string;
|
|
46
|
-
issued_at?: string | undefined;
|
|
47
46
|
instant_key_url?: string | undefined;
|
|
47
|
+
issued_at?: string | undefined;
|
|
48
48
|
is_card_encoding_required?: boolean | undefined;
|
|
49
49
|
}, {
|
|
50
50
|
display_name: string;
|
|
@@ -52,8 +52,8 @@ export declare const encode_access_method_action_attempt: z.ZodDiscriminatedUnio
|
|
|
52
52
|
created_at: string;
|
|
53
53
|
mode: "code" | "card" | "mobile_key";
|
|
54
54
|
access_method_id: string;
|
|
55
|
-
issued_at?: string | undefined;
|
|
56
55
|
instant_key_url?: string | undefined;
|
|
56
|
+
issued_at?: string | undefined;
|
|
57
57
|
is_card_encoding_required?: boolean | undefined;
|
|
58
58
|
}>;
|
|
59
59
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -66,8 +66,8 @@ export declare const encode_access_method_action_attempt: z.ZodDiscriminatedUnio
|
|
|
66
66
|
created_at: string;
|
|
67
67
|
mode: "code" | "card" | "mobile_key";
|
|
68
68
|
access_method_id: string;
|
|
69
|
-
issued_at?: string | undefined;
|
|
70
69
|
instant_key_url?: string | undefined;
|
|
70
|
+
issued_at?: string | undefined;
|
|
71
71
|
is_card_encoding_required?: boolean | undefined;
|
|
72
72
|
};
|
|
73
73
|
action_type: "ENCODE_ACCESS_METHOD";
|
|
@@ -81,8 +81,8 @@ export declare const encode_access_method_action_attempt: z.ZodDiscriminatedUnio
|
|
|
81
81
|
created_at: string;
|
|
82
82
|
mode: "code" | "card" | "mobile_key";
|
|
83
83
|
access_method_id: string;
|
|
84
|
-
issued_at?: string | undefined;
|
|
85
84
|
instant_key_url?: string | undefined;
|
|
85
|
+
issued_at?: string | undefined;
|
|
86
86
|
is_card_encoding_required?: boolean | undefined;
|
|
87
87
|
};
|
|
88
88
|
action_type: "ENCODE_ACCESS_METHOD";
|
|
@@ -402,6 +402,11 @@ declare const _default: {
|
|
|
402
402
|
format: string;
|
|
403
403
|
type: string;
|
|
404
404
|
};
|
|
405
|
+
instant_key_url: {
|
|
406
|
+
description: string;
|
|
407
|
+
format: string;
|
|
408
|
+
type: string;
|
|
409
|
+
};
|
|
405
410
|
location_ids: {
|
|
406
411
|
deprecated: boolean;
|
|
407
412
|
items: {
|
|
@@ -491,6 +496,7 @@ declare const _default: {
|
|
|
491
496
|
};
|
|
492
497
|
instant_key_url: {
|
|
493
498
|
description: string;
|
|
499
|
+
format: string;
|
|
494
500
|
type: string;
|
|
495
501
|
};
|
|
496
502
|
is_card_encoding_required: {
|
|
@@ -2806,6 +2812,7 @@ declare const _default: {
|
|
|
2806
2812
|
};
|
|
2807
2813
|
instant_key_url: {
|
|
2808
2814
|
description: string;
|
|
2815
|
+
format: string;
|
|
2809
2816
|
type: string;
|
|
2810
2817
|
};
|
|
2811
2818
|
is_card_encoding_required: {
|
|
@@ -1595,6 +1595,11 @@ export default {
|
|
|
1595
1595
|
format: 'date-time',
|
|
1596
1596
|
type: 'string',
|
|
1597
1597
|
},
|
|
1598
|
+
instant_key_url: {
|
|
1599
|
+
description: 'Instant Key URL. Only returned if the access grant has a single mobile_key access_method. ',
|
|
1600
|
+
format: 'uri',
|
|
1601
|
+
type: 'string',
|
|
1602
|
+
},
|
|
1598
1603
|
location_ids: {
|
|
1599
1604
|
deprecated: true,
|
|
1600
1605
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -1690,6 +1695,7 @@ export default {
|
|
|
1690
1695
|
},
|
|
1691
1696
|
instant_key_url: {
|
|
1692
1697
|
description: 'URL of the Instant Key for mobile key access methods.',
|
|
1698
|
+
format: 'uri',
|
|
1693
1699
|
type: 'string',
|
|
1694
1700
|
},
|
|
1695
1701
|
is_card_encoding_required: {
|
|
@@ -4879,6 +4885,7 @@ export default {
|
|
|
4879
4885
|
},
|
|
4880
4886
|
instant_key_url: {
|
|
4881
4887
|
description: 'URL of the Instant Key for mobile key access methods.',
|
|
4888
|
+
format: 'uri',
|
|
4882
4889
|
type: 'string',
|
|
4883
4890
|
},
|
|
4884
4891
|
is_card_encoding_required: {
|