@seamapi/types 1.826.0 → 1.827.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 +13 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +49 -0
- package/dist/index.cjs +13 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +13 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +5 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +5 -0
- package/lib/seam/connect/models/batch.d.ts +14 -0
- package/lib/seam/connect/openapi.js +10 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +22 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +12 -0
- package/src/lib/seam/connect/route-types.ts +22 -0
package/dist/connect.cjs
CHANGED
|
@@ -2263,6 +2263,9 @@ var duplicate_code_on_device = common_access_code_error.extend({
|
|
|
2263
2263
|
error_code: zod.z.literal("duplicate_code_on_device").describe(error_code_description3),
|
|
2264
2264
|
unmanaged_access_code_id: zod.z.string().uuid().optional().describe(
|
|
2265
2265
|
"ID of the unmanaged access code that conflicts with this managed access code, when Seam can identify it."
|
|
2266
|
+
),
|
|
2267
|
+
managed_access_code_id: zod.z.string().uuid().optional().describe(
|
|
2268
|
+
"ID of the managed access code that conflicts with this managed access code, when Seam can identify it."
|
|
2266
2269
|
)
|
|
2267
2270
|
}).describe("Duplicate access code detected on device.");
|
|
2268
2271
|
var duplicate_code_attempt_prevented = common_access_code_error.extend({
|
|
@@ -7135,6 +7138,11 @@ var openapi = {
|
|
|
7135
7138
|
enum: [true],
|
|
7136
7139
|
type: "boolean"
|
|
7137
7140
|
},
|
|
7141
|
+
managed_access_code_id: {
|
|
7142
|
+
description: "ID of the managed access code that conflicts with this managed access code, when Seam can identify it.",
|
|
7143
|
+
format: "uuid",
|
|
7144
|
+
type: "string"
|
|
7145
|
+
},
|
|
7138
7146
|
message: {
|
|
7139
7147
|
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
7140
7148
|
type: "string"
|
|
@@ -30674,6 +30682,11 @@ var openapi = {
|
|
|
30674
30682
|
enum: [true],
|
|
30675
30683
|
type: "boolean"
|
|
30676
30684
|
},
|
|
30685
|
+
managed_access_code_id: {
|
|
30686
|
+
description: "ID of the managed access code that conflicts with this managed access code, when Seam can identify it.",
|
|
30687
|
+
format: "uuid",
|
|
30688
|
+
type: "string"
|
|
30689
|
+
},
|
|
30677
30690
|
message: {
|
|
30678
30691
|
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
30679
30692
|
type: "string"
|