@seamapi/types 1.825.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 +25 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +49 -0
- package/dist/index.cjs +25 -3
- 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 +22 -3
- 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 +24 -3
- 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"
|
|
@@ -73039,7 +73052,10 @@ var openapi = {
|
|
|
73039
73052
|
400: { description: "Bad Request" },
|
|
73040
73053
|
401: { description: "Unauthorized" }
|
|
73041
73054
|
},
|
|
73042
|
-
security: [
|
|
73055
|
+
security: [
|
|
73056
|
+
{ client_session_with_customer: [] },
|
|
73057
|
+
{ console_session_with_workspace: [] }
|
|
73058
|
+
],
|
|
73043
73059
|
summary: "/seam/customer/v1/spaces/create",
|
|
73044
73060
|
tags: [],
|
|
73045
73061
|
"x-draft": "Early access.",
|
|
@@ -73107,7 +73123,10 @@ var openapi = {
|
|
|
73107
73123
|
400: { description: "Bad Request" },
|
|
73108
73124
|
401: { description: "Unauthorized" }
|
|
73109
73125
|
},
|
|
73110
|
-
security: [
|
|
73126
|
+
security: [
|
|
73127
|
+
{ client_session_with_customer: [] },
|
|
73128
|
+
{ console_session_with_workspace: [] }
|
|
73129
|
+
],
|
|
73111
73130
|
summary: "/seam/customer/v1/spaces/list",
|
|
73112
73131
|
tags: [],
|
|
73113
73132
|
"x-draft": "Early access.",
|
|
@@ -73170,7 +73189,10 @@ var openapi = {
|
|
|
73170
73189
|
400: { description: "Bad Request" },
|
|
73171
73190
|
401: { description: "Unauthorized" }
|
|
73172
73191
|
},
|
|
73173
|
-
security: [
|
|
73192
|
+
security: [
|
|
73193
|
+
{ client_session_with_customer: [] },
|
|
73194
|
+
{ console_session_with_workspace: [] }
|
|
73195
|
+
],
|
|
73174
73196
|
summary: "/seam/customer/v1/spaces/list",
|
|
73175
73197
|
tags: [],
|
|
73176
73198
|
"x-draft": "Early access.",
|