@seamapi/types 1.493.0 → 1.495.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 +20 -17
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +52 -45
- package/dist/index.cjs +20 -17
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +10 -10
- package/lib/seam/connect/models/instant-keys/instant-key.d.ts +3 -3
- package/lib/seam/connect/models/instant-keys/instant-key.js +5 -5
- package/lib/seam/connect/models/instant-keys/instant-key.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +16 -9
- package/lib/seam/connect/openapi.js +15 -12
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +28 -28
- package/package.json +1 -1
- package/src/lib/seam/connect/models/instant-keys/instant-key.ts +5 -5
- package/src/lib/seam/connect/openapi.ts +15 -14
- package/src/lib/seam/connect/route-types.ts +28 -28
package/dist/connect.cjs
CHANGED
|
@@ -5124,11 +5124,11 @@ var instant_key = zod.z.object({
|
|
|
5124
5124
|
customization_profile_id: zod.z.string().uuid().optional().describe(
|
|
5125
5125
|
"ID of the customization profile associated with the Instant Key."
|
|
5126
5126
|
),
|
|
5127
|
-
|
|
5128
|
-
primary_color: zod.z.string().optional().describe("Primary color
|
|
5129
|
-
secondary_color: zod.z.string().optional().describe("Secondary color
|
|
5130
|
-
logo_url: zod.z.string().url().optional().describe("URL of the logo
|
|
5131
|
-
}).optional().describe("Customization
|
|
5127
|
+
customization: zod.z.object({
|
|
5128
|
+
primary_color: zod.z.string().optional().describe("Primary color used in the Instant Key UI."),
|
|
5129
|
+
secondary_color: zod.z.string().optional().describe("Secondary color used in the Instant Key UI."),
|
|
5130
|
+
logo_url: zod.z.string().url().optional().describe("URL of the logo displayed on the Instant Key.")
|
|
5131
|
+
}).optional().describe("Customization applied to the Instant Key UI.")
|
|
5132
5132
|
}).describe(`
|
|
5133
5133
|
---
|
|
5134
5134
|
route_path: /instant_keys
|
|
@@ -22682,20 +22682,20 @@ var openapi_default = {
|
|
|
22682
22682
|
format: "date-time",
|
|
22683
22683
|
type: "string"
|
|
22684
22684
|
},
|
|
22685
|
-
|
|
22686
|
-
description: "Customization
|
|
22685
|
+
customization: {
|
|
22686
|
+
description: "Customization applied to the Instant Key UI.",
|
|
22687
22687
|
properties: {
|
|
22688
22688
|
logo_url: {
|
|
22689
|
-
description: "URL of the logo
|
|
22689
|
+
description: "URL of the logo displayed on the Instant Key.",
|
|
22690
22690
|
format: "uri",
|
|
22691
22691
|
type: "string"
|
|
22692
22692
|
},
|
|
22693
22693
|
primary_color: {
|
|
22694
|
-
description: "Primary color
|
|
22694
|
+
description: "Primary color used in the Instant Key UI.",
|
|
22695
22695
|
type: "string"
|
|
22696
22696
|
},
|
|
22697
22697
|
secondary_color: {
|
|
22698
|
-
description: "Secondary color
|
|
22698
|
+
description: "Secondary color used in the Instant Key UI.",
|
|
22699
22699
|
type: "string"
|
|
22700
22700
|
}
|
|
22701
22701
|
},
|
|
@@ -58125,14 +58125,17 @@ var openapi_default = {
|
|
|
58125
58125
|
post: {
|
|
58126
58126
|
description: "Search for resources inside a workspace.",
|
|
58127
58127
|
operationId: "workspacesFindAnythingPost",
|
|
58128
|
-
|
|
58129
|
-
{
|
|
58130
|
-
|
|
58131
|
-
|
|
58132
|
-
|
|
58133
|
-
|
|
58128
|
+
requestBody: {
|
|
58129
|
+
content: {
|
|
58130
|
+
"application/json": {
|
|
58131
|
+
schema: {
|
|
58132
|
+
properties: { search: { format: "uuid", type: "string" } },
|
|
58133
|
+
required: ["search"],
|
|
58134
|
+
type: "object"
|
|
58135
|
+
}
|
|
58136
|
+
}
|
|
58134
58137
|
}
|
|
58135
|
-
|
|
58138
|
+
},
|
|
58136
58139
|
responses: {
|
|
58137
58140
|
200: {
|
|
58138
58141
|
content: {
|