@seamapi/types 1.533.0 → 1.534.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.
@@ -13178,7 +13178,7 @@ export type Routes = {
13178
13178
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
13179
13179
  is_encoding_required?: boolean | undefined;
13180
13180
  /** The actual PIN code for code access methods. */
13181
- code?: string | undefined;
13181
+ code?: (string | null) | undefined;
13182
13182
  /** ID of the customization profile associated with the access method. */
13183
13183
  customization_profile_id?: string | undefined;
13184
13184
  };
@@ -17193,7 +17193,7 @@ export type Routes = {
17193
17193
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
17194
17194
  is_encoding_required?: boolean | undefined;
17195
17195
  /** The actual PIN code for code access methods. */
17196
- code?: string | undefined;
17196
+ code?: (string | null) | undefined;
17197
17197
  /** ID of the customization profile associated with the access method. */
17198
17198
  customization_profile_id?: string | undefined;
17199
17199
  }[] | undefined;
@@ -20235,7 +20235,7 @@ export type Routes = {
20235
20235
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
20236
20236
  is_encoding_required?: boolean | undefined;
20237
20237
  /** The actual PIN code for code access methods. */
20238
- code?: string | undefined;
20238
+ code?: (string | null) | undefined;
20239
20239
  /** ID of the customization profile associated with the access method. */
20240
20240
  customization_profile_id?: string | undefined;
20241
20241
  }[];
@@ -83023,7 +83023,7 @@ export type Routes = {
83023
83023
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
83024
83024
  is_encoding_required?: boolean | undefined;
83025
83025
  /** The actual PIN code for code access methods. */
83026
- code?: string | undefined;
83026
+ code?: (string | null) | undefined;
83027
83027
  /** ID of the customization profile associated with the access method. */
83028
83028
  customization_profile_id?: string | undefined;
83029
83029
  }[] | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.533.0",
3
+ "version": "1.534.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -41,6 +41,7 @@ export const access_method = z.object({
41
41
  ),
42
42
  code: z
43
43
  .string()
44
+ .nullable()
44
45
  .optional()
45
46
  .describe('The actual PIN code for code access methods.'),
46
47
  customization_profile_id: z
@@ -1988,6 +1988,7 @@ export default {
1988
1988
  },
1989
1989
  code: {
1990
1990
  description: 'The actual PIN code for code access methods.',
1991
+ nullable: true,
1991
1992
  type: 'string',
1992
1993
  },
1993
1994
  created_at: {
@@ -15070,7 +15070,7 @@ export type Routes = {
15070
15070
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
15071
15071
  is_encoding_required?: boolean | undefined
15072
15072
  /** The actual PIN code for code access methods. */
15073
- code?: string | undefined
15073
+ code?: (string | null) | undefined
15074
15074
  /** ID of the customization profile associated with the access method. */
15075
15075
  customization_profile_id?: string | undefined
15076
15076
  }
@@ -19975,7 +19975,7 @@ export type Routes = {
19975
19975
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
19976
19976
  is_encoding_required?: boolean | undefined
19977
19977
  /** The actual PIN code for code access methods. */
19978
- code?: string | undefined
19978
+ code?: (string | null) | undefined
19979
19979
  /** ID of the customization profile associated with the access method. */
19980
19980
  customization_profile_id?: string | undefined
19981
19981
  }[]
@@ -23488,7 +23488,7 @@ export type Routes = {
23488
23488
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
23489
23489
  is_encoding_required?: boolean | undefined
23490
23490
  /** The actual PIN code for code access methods. */
23491
- code?: string | undefined
23491
+ code?: (string | null) | undefined
23492
23492
  /** ID of the customization profile associated with the access method. */
23493
23493
  customization_profile_id?: string | undefined
23494
23494
  }[]
@@ -98802,7 +98802,7 @@ export type Routes = {
98802
98802
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
98803
98803
  is_encoding_required?: boolean | undefined
98804
98804
  /** The actual PIN code for code access methods. */
98805
- code?: string | undefined
98805
+ code?: (string | null) | undefined
98806
98806
  /** ID of the customization profile associated with the access method. */
98807
98807
  customization_profile_id?: string | undefined
98808
98808
  }[]