@seamapi/types 1.455.0 → 1.456.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.
@@ -14046,7 +14046,9 @@ export interface Routes {
14046
14046
  /** Date and time at which the access method was created. */
14047
14047
  created_at: string;
14048
14048
  /** Date and time at which the access method was issued. */
14049
- issued_at?: string | undefined;
14049
+ issued_at: string | null;
14050
+ /** Indicates whether the access method has been issued. */
14051
+ is_issued: boolean;
14050
14052
  /** URL of the Instant Key for mobile key access methods. */
14051
14053
  instant_key_url?: string | undefined;
14052
14054
  /** Token of the client session associated with the access method. */
@@ -14087,7 +14089,9 @@ export interface Routes {
14087
14089
  /** Date and time at which the access method was created. */
14088
14090
  created_at: string;
14089
14091
  /** Date and time at which the access method was issued. */
14090
- issued_at?: string | undefined;
14092
+ issued_at: string | null;
14093
+ /** Indicates whether the access method has been issued. */
14094
+ is_issued: boolean;
14091
14095
  /** URL of the Instant Key for mobile key access methods. */
14092
14096
  instant_key_url?: string | undefined;
14093
14097
  /** Token of the client session associated with the access method. */
@@ -67594,7 +67598,9 @@ export interface Routes {
67594
67598
  /** Date and time at which the access method was created. */
67595
67599
  created_at: string;
67596
67600
  /** Date and time at which the access method was issued. */
67597
- issued_at?: string | undefined;
67601
+ issued_at: string | null;
67602
+ /** Indicates whether the access method has been issued. */
67603
+ is_issued: boolean;
67598
67604
  /** URL of the Instant Key for mobile key access methods. */
67599
67605
  instant_key_url?: string | undefined;
67600
67606
  /** Token of the client session associated with the access method. */
@@ -67629,7 +67635,9 @@ export interface Routes {
67629
67635
  /** Date and time at which the access method was created. */
67630
67636
  created_at: string;
67631
67637
  /** Date and time at which the access method was issued. */
67632
- issued_at?: string | undefined;
67638
+ issued_at: string | null;
67639
+ /** Indicates whether the access method has been issued. */
67640
+ is_issued: boolean;
67633
67641
  /** URL of the Instant Key for mobile key access methods. */
67634
67642
  instant_key_url?: string | undefined;
67635
67643
  /** Token of the client session associated with the access method. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.455.0",
3
+ "version": "1.456.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -19,8 +19,11 @@ export const access_method = z.object({
19
19
  issued_at: z
20
20
  .string()
21
21
  .datetime()
22
- .optional()
22
+ .nullable()
23
23
  .describe('Date and time at which the access method was issued.'),
24
+ is_issued: z
25
+ .boolean()
26
+ .describe('Indicates whether the access method has been issued.'),
24
27
  instant_key_url: z
25
28
  .string()
26
29
  .url()
@@ -1987,9 +1987,14 @@ export default {
1987
1987
  'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
1988
1988
  type: 'boolean',
1989
1989
  },
1990
+ is_issued: {
1991
+ description: 'Indicates whether the access method has been issued.',
1992
+ type: 'boolean',
1993
+ },
1990
1994
  issued_at: {
1991
1995
  description: 'Date and time at which the access method was issued.',
1992
1996
  format: 'date-time',
1997
+ nullable: true,
1993
1998
  type: 'string',
1994
1999
  },
1995
2000
  mode: {
@@ -2011,6 +2016,8 @@ export default {
2011
2016
  'display_name',
2012
2017
  'mode',
2013
2018
  'created_at',
2019
+ 'issued_at',
2020
+ 'is_issued',
2014
2021
  ],
2015
2022
  type: 'object',
2016
2023
  'x-draft': 'Early access.',
@@ -16193,7 +16193,9 @@ export interface Routes {
16193
16193
  /** Date and time at which the access method was created. */
16194
16194
  created_at: string
16195
16195
  /** Date and time at which the access method was issued. */
16196
- issued_at?: string | undefined
16196
+ issued_at: string | null
16197
+ /** Indicates whether the access method has been issued. */
16198
+ is_issued: boolean
16197
16199
  /** URL of the Instant Key for mobile key access methods. */
16198
16200
  instant_key_url?: string | undefined
16199
16201
  /** Token of the client session associated with the access method. */
@@ -16234,7 +16236,9 @@ export interface Routes {
16234
16236
  /** Date and time at which the access method was created. */
16235
16237
  created_at: string
16236
16238
  /** Date and time at which the access method was issued. */
16237
- issued_at?: string | undefined
16239
+ issued_at: string | null
16240
+ /** Indicates whether the access method has been issued. */
16241
+ is_issued: boolean
16238
16242
  /** URL of the Instant Key for mobile key access methods. */
16239
16243
  instant_key_url?: string | undefined
16240
16244
  /** Token of the client session associated with the access method. */
@@ -80076,7 +80080,9 @@ export interface Routes {
80076
80080
  /** Date and time at which the access method was created. */
80077
80081
  created_at: string
80078
80082
  /** Date and time at which the access method was issued. */
80079
- issued_at?: string | undefined
80083
+ issued_at: string | null
80084
+ /** Indicates whether the access method has been issued. */
80085
+ is_issued: boolean
80080
80086
  /** URL of the Instant Key for mobile key access methods. */
80081
80087
  instant_key_url?: string | undefined
80082
80088
  /** Token of the client session associated with the access method. */
@@ -80111,7 +80117,9 @@ export interface Routes {
80111
80117
  /** Date and time at which the access method was created. */
80112
80118
  created_at: string
80113
80119
  /** Date and time at which the access method was issued. */
80114
- issued_at?: string | undefined
80120
+ issued_at: string | null
80121
+ /** Indicates whether the access method has been issued. */
80122
+ is_issued: boolean
80115
80123
  /** URL of the Instant Key for mobile key access methods. */
80116
80124
  instant_key_url?: string | undefined
80117
80125
  /** Token of the client session associated with the access method. */