@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
|
@@ -10244,6 +10244,8 @@ export interface Routes {
|
|
|
10244
10244
|
access_method_ids: string[];
|
|
10245
10245
|
/** Display name of the access grant. */
|
|
10246
10246
|
display_name: string;
|
|
10247
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
10248
|
+
instant_key_url?: string | undefined;
|
|
10247
10249
|
/** Date and time at which the access grant was created. */
|
|
10248
10250
|
created_at: string;
|
|
10249
10251
|
/** Date and time at which the access grant starts. */
|
|
@@ -10304,6 +10306,8 @@ export interface Routes {
|
|
|
10304
10306
|
access_method_ids: string[];
|
|
10305
10307
|
/** Display name of the access grant. */
|
|
10306
10308
|
display_name: string;
|
|
10309
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
10310
|
+
instant_key_url?: string | undefined;
|
|
10307
10311
|
/** Date and time at which the access grant was created. */
|
|
10308
10312
|
created_at: string;
|
|
10309
10313
|
/** Date and time at which the access grant starts. */
|
|
@@ -10360,6 +10364,8 @@ export interface Routes {
|
|
|
10360
10364
|
access_method_ids: string[];
|
|
10361
10365
|
/** Display name of the access grant. */
|
|
10362
10366
|
display_name: string;
|
|
10367
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
10368
|
+
instant_key_url?: string | undefined;
|
|
10363
10369
|
/** Date and time at which the access grant was created. */
|
|
10364
10370
|
created_at: string;
|
|
10365
10371
|
/** Date and time at which the access grant starts. */
|
|
@@ -62542,6 +62548,8 @@ export interface Routes {
|
|
|
62542
62548
|
access_method_ids: string[];
|
|
62543
62549
|
/** Display name of the access grant. */
|
|
62544
62550
|
display_name: string;
|
|
62551
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
62552
|
+
instant_key_url?: string | undefined;
|
|
62545
62553
|
/** Date and time at which the access grant was created. */
|
|
62546
62554
|
created_at: string;
|
|
62547
62555
|
/** Date and time at which the access grant starts. */
|
|
@@ -62602,6 +62610,8 @@ export interface Routes {
|
|
|
62602
62610
|
access_method_ids: string[];
|
|
62603
62611
|
/** Display name of the access grant. */
|
|
62604
62612
|
display_name: string;
|
|
62613
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
62614
|
+
instant_key_url?: string | undefined;
|
|
62605
62615
|
/** Date and time at which the access grant was created. */
|
|
62606
62616
|
created_at: string;
|
|
62607
62617
|
/** Date and time at which the access grant starts. */
|
|
@@ -62658,6 +62668,8 @@ export interface Routes {
|
|
|
62658
62668
|
access_method_ids: string[];
|
|
62659
62669
|
/** Display name of the access grant. */
|
|
62660
62670
|
display_name: string;
|
|
62671
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
62672
|
+
instant_key_url?: string | undefined;
|
|
62661
62673
|
/** Date and time at which the access grant was created. */
|
|
62662
62674
|
created_at: string;
|
|
62663
62675
|
/** Date and time at which the access grant starts. */
|
package/package.json
CHANGED
|
@@ -27,6 +27,13 @@ export const access_grant = z.object({
|
|
|
27
27
|
.array(z.string().uuid())
|
|
28
28
|
.describe('IDs of the access methods created for the access grant.'),
|
|
29
29
|
display_name: z.string().describe('Display name of the access grant.'),
|
|
30
|
+
instant_key_url: z
|
|
31
|
+
.string()
|
|
32
|
+
.url()
|
|
33
|
+
.optional()
|
|
34
|
+
.describe(
|
|
35
|
+
'Instant Key URL. Only returned if the access grant has a single mobile_key access_method. ',
|
|
36
|
+
),
|
|
30
37
|
created_at: z
|
|
31
38
|
.string()
|
|
32
39
|
.datetime()
|
|
@@ -23,6 +23,7 @@ export const access_method = z.object({
|
|
|
23
23
|
.describe('Date and time at which the access method was issued.'),
|
|
24
24
|
instant_key_url: z
|
|
25
25
|
.string()
|
|
26
|
+
.url()
|
|
26
27
|
.optional()
|
|
27
28
|
.describe('URL of the Instant Key for mobile key access methods.'),
|
|
28
29
|
is_card_encoding_required: z
|
|
@@ -1842,6 +1842,12 @@ export default {
|
|
|
1842
1842
|
format: 'date-time',
|
|
1843
1843
|
type: 'string',
|
|
1844
1844
|
},
|
|
1845
|
+
instant_key_url: {
|
|
1846
|
+
description:
|
|
1847
|
+
'Instant Key URL. Only returned if the access grant has a single mobile_key access_method. ',
|
|
1848
|
+
format: 'uri',
|
|
1849
|
+
type: 'string',
|
|
1850
|
+
},
|
|
1845
1851
|
location_ids: {
|
|
1846
1852
|
deprecated: true,
|
|
1847
1853
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -1947,6 +1953,7 @@ export default {
|
|
|
1947
1953
|
instant_key_url: {
|
|
1948
1954
|
description:
|
|
1949
1955
|
'URL of the Instant Key for mobile key access methods.',
|
|
1956
|
+
format: 'uri',
|
|
1950
1957
|
type: 'string',
|
|
1951
1958
|
},
|
|
1952
1959
|
is_card_encoding_required: {
|
|
@@ -5584,6 +5591,7 @@ export default {
|
|
|
5584
5591
|
instant_key_url: {
|
|
5585
5592
|
description:
|
|
5586
5593
|
'URL of the Instant Key for mobile key access methods.',
|
|
5594
|
+
format: 'uri',
|
|
5587
5595
|
type: 'string',
|
|
5588
5596
|
},
|
|
5589
5597
|
is_card_encoding_required: {
|
|
@@ -11500,6 +11500,8 @@ export interface Routes {
|
|
|
11500
11500
|
access_method_ids: string[]
|
|
11501
11501
|
/** Display name of the access grant. */
|
|
11502
11502
|
display_name: string
|
|
11503
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
11504
|
+
instant_key_url?: string | undefined
|
|
11503
11505
|
/** Date and time at which the access grant was created. */
|
|
11504
11506
|
created_at: string
|
|
11505
11507
|
/** Date and time at which the access grant starts. */
|
|
@@ -11560,6 +11562,8 @@ export interface Routes {
|
|
|
11560
11562
|
access_method_ids: string[]
|
|
11561
11563
|
/** Display name of the access grant. */
|
|
11562
11564
|
display_name: string
|
|
11565
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
11566
|
+
instant_key_url?: string | undefined
|
|
11563
11567
|
/** Date and time at which the access grant was created. */
|
|
11564
11568
|
created_at: string
|
|
11565
11569
|
/** Date and time at which the access grant starts. */
|
|
@@ -11616,6 +11620,8 @@ export interface Routes {
|
|
|
11616
11620
|
access_method_ids: string[]
|
|
11617
11621
|
/** Display name of the access grant. */
|
|
11618
11622
|
display_name: string
|
|
11623
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
11624
|
+
instant_key_url?: string | undefined
|
|
11619
11625
|
/** Date and time at which the access grant was created. */
|
|
11620
11626
|
created_at: string
|
|
11621
11627
|
/** Date and time at which the access grant starts. */
|
|
@@ -72648,6 +72654,8 @@ export interface Routes {
|
|
|
72648
72654
|
access_method_ids: string[]
|
|
72649
72655
|
/** Display name of the access grant. */
|
|
72650
72656
|
display_name: string
|
|
72657
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
72658
|
+
instant_key_url?: string | undefined
|
|
72651
72659
|
/** Date and time at which the access grant was created. */
|
|
72652
72660
|
created_at: string
|
|
72653
72661
|
/** Date and time at which the access grant starts. */
|
|
@@ -72708,6 +72716,8 @@ export interface Routes {
|
|
|
72708
72716
|
access_method_ids: string[]
|
|
72709
72717
|
/** Display name of the access grant. */
|
|
72710
72718
|
display_name: string
|
|
72719
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
72720
|
+
instant_key_url?: string | undefined
|
|
72711
72721
|
/** Date and time at which the access grant was created. */
|
|
72712
72722
|
created_at: string
|
|
72713
72723
|
/** Date and time at which the access grant starts. */
|
|
@@ -72764,6 +72774,8 @@ export interface Routes {
|
|
|
72764
72774
|
access_method_ids: string[]
|
|
72765
72775
|
/** Display name of the access grant. */
|
|
72766
72776
|
display_name: string
|
|
72777
|
+
/** Instant Key URL. Only returned if the access grant has a single mobile_key access_method. */
|
|
72778
|
+
instant_key_url?: string | undefined
|
|
72767
72779
|
/** Date and time at which the access grant was created. */
|
|
72768
72780
|
created_at: string
|
|
72769
72781
|
/** Date and time at which the access grant starts. */
|