@seamapi/types 1.823.0 → 1.824.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 CHANGED
@@ -2260,7 +2260,10 @@ var failed_to_remove_from_device = common_access_code_error.extend({
2260
2260
  error_code: zod.z.literal("failed_to_remove_from_device").describe(error_code_description3)
2261
2261
  }).describe("Failed to remove code from device.");
2262
2262
  var duplicate_code_on_device = common_access_code_error.extend({
2263
- error_code: zod.z.literal("duplicate_code_on_device").describe(error_code_description3)
2263
+ error_code: zod.z.literal("duplicate_code_on_device").describe(error_code_description3),
2264
+ unmanaged_access_code_id: zod.z.string().uuid().optional().describe(
2265
+ "ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it."
2266
+ )
2264
2267
  }).describe("Duplicate access code detected on device.");
2265
2268
  var duplicate_code_attempt_prevented = common_access_code_error.extend({
2266
2269
  error_code: zod.z.literal("duplicate_code_attempt_prevented").describe(error_code_description3)
@@ -7135,6 +7138,11 @@ var openapi = {
7135
7138
  message: {
7136
7139
  description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
7137
7140
  type: "string"
7141
+ },
7142
+ unmanaged_access_code_id: {
7143
+ description: "ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it.",
7144
+ format: "uuid",
7145
+ type: "string"
7138
7146
  }
7139
7147
  },
7140
7148
  required: ["message", "is_access_code_error", "error_code"],
@@ -30669,6 +30677,11 @@ var openapi = {
30669
30677
  message: {
30670
30678
  description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
30671
30679
  type: "string"
30680
+ },
30681
+ unmanaged_access_code_id: {
30682
+ description: "ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it.",
30683
+ format: "uuid",
30684
+ type: "string"
30672
30685
  }
30673
30686
  },
30674
30687
  required: ["message", "is_access_code_error", "error_code"],