@seamapi/types 1.441.0 → 1.441.2

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.
@@ -3691,12 +3691,14 @@ declare const access_method: z.ZodObject<{
3691
3691
  issued_at: z.ZodOptional<z.ZodString>;
3692
3692
  instant_key_url: z.ZodOptional<z.ZodString>;
3693
3693
  is_encoding_required: z.ZodOptional<z.ZodBoolean>;
3694
+ code: z.ZodOptional<z.ZodString>;
3694
3695
  }, "strip", z.ZodTypeAny, {
3695
3696
  display_name: string;
3696
3697
  workspace_id: string;
3697
3698
  created_at: string;
3698
3699
  mode: "code" | "card" | "mobile_key";
3699
3700
  access_method_id: string;
3701
+ code?: string | undefined;
3700
3702
  instant_key_url?: string | undefined;
3701
3703
  issued_at?: string | undefined;
3702
3704
  is_encoding_required?: boolean | undefined;
@@ -3706,6 +3708,7 @@ declare const access_method: z.ZodObject<{
3706
3708
  created_at: string;
3707
3709
  mode: "code" | "card" | "mobile_key";
3708
3710
  access_method_id: string;
3711
+ code?: string | undefined;
3709
3712
  instant_key_url?: string | undefined;
3710
3713
  issued_at?: string | undefined;
3711
3714
  is_encoding_required?: boolean | undefined;
@@ -28500,6 +28503,10 @@ declare const _default: {
28500
28503
  format: string;
28501
28504
  type: string;
28502
28505
  };
28506
+ code: {
28507
+ description: string;
28508
+ type: string;
28509
+ };
28503
28510
  created_at: {
28504
28511
  description: string;
28505
28512
  format: string;
@@ -88102,6 +88109,8 @@ interface Routes {
88102
88109
  instant_key_url?: string | undefined;
88103
88110
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
88104
88111
  is_encoding_required?: boolean | undefined;
88112
+ /** The actual PIN code for code access methods. */
88113
+ code?: string | undefined;
88105
88114
  };
88106
88115
  };
88107
88116
  };
@@ -88133,6 +88142,8 @@ interface Routes {
88133
88142
  instant_key_url?: string | undefined;
88134
88143
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
88135
88144
  is_encoding_required?: boolean | undefined;
88145
+ /** The actual PIN code for code access methods. */
88146
+ code?: string | undefined;
88136
88147
  }>;
88137
88148
  };
88138
88149
  };
@@ -140268,6 +140279,8 @@ interface Routes {
140268
140279
  instant_key_url?: string | undefined;
140269
140280
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
140270
140281
  is_encoding_required?: boolean | undefined;
140282
+ /** The actual PIN code for code access methods. */
140283
+ code?: string | undefined;
140271
140284
  };
140272
140285
  };
140273
140286
  };
@@ -140299,6 +140312,8 @@ interface Routes {
140299
140312
  instant_key_url?: string | undefined;
140300
140313
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
140301
140314
  is_encoding_required?: boolean | undefined;
140315
+ /** The actual PIN code for code access methods. */
140316
+ code?: string | undefined;
140302
140317
  }>;
140303
140318
  };
140304
140319
  };
package/dist/index.cjs CHANGED
@@ -7206,6 +7206,10 @@ var openapi_default = {
7206
7206
  format: "uuid",
7207
7207
  type: "string"
7208
7208
  },
7209
+ code: {
7210
+ description: "The actual PIN code for code access methods.",
7211
+ type: "string"
7212
+ },
7209
7213
  created_at: {
7210
7214
  description: "Date and time at which the access method was created.",
7211
7215
  format: "date-time",