@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 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
- customization_profile: zod.z.object({
5128
- primary_color: zod.z.string().optional().describe("Primary color of the customization profile."),
5129
- secondary_color: zod.z.string().optional().describe("Secondary color of the customization profile."),
5130
- logo_url: zod.z.string().url().optional().describe("URL of the logo associated with the customization profile.")
5131
- }).optional().describe("Customization profile associated with the Instant Key.")
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
- customization_profile: {
22686
- description: "Customization profile associated with the Instant Key.",
22685
+ customization: {
22686
+ description: "Customization applied to the Instant Key UI.",
22687
22687
  properties: {
22688
22688
  logo_url: {
22689
- description: "URL of the logo associated with the customization profile.",
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 of the customization profile.",
22694
+ description: "Primary color used in the Instant Key UI.",
22695
22695
  type: "string"
22696
22696
  },
22697
22697
  secondary_color: {
22698
- description: "Secondary color of the customization profile.",
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
- parameters: [
58129
- {
58130
- in: "query",
58131
- name: "search",
58132
- required: true,
58133
- schema: { format: "uuid", type: "string" }
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: {