@seamapi/types 1.908.0 → 1.909.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 +36 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +33 -0
- package/dist/index.cjs +36 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customization-profiles/customization-profile.d.ts +4 -0
- package/lib/seam/connect/models/customization-profiles/customization-profile.js +5 -0
- package/lib/seam/connect/models/customization-profiles/customization-profile.js.map +1 -1
- package/lib/seam/connect/openapi.js +30 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +30 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/customization-profiles/customization-profile.ts +9 -0
- package/src/lib/seam/connect/openapi.ts +30 -0
- package/src/lib/seam/connect/route-types.ts +45 -0
package/dist/connect.cjs
CHANGED
|
@@ -5469,6 +5469,10 @@ var customer_portal_theme = zod.z.object({
|
|
|
5469
5469
|
font_family: zod.z.string().optional(),
|
|
5470
5470
|
mono_font_family: zod.z.string().optional()
|
|
5471
5471
|
});
|
|
5472
|
+
var message_overrides = zod.z.record(
|
|
5473
|
+
zod.z.string(),
|
|
5474
|
+
zod.z.record(zod.z.string(), zod.z.string())
|
|
5475
|
+
);
|
|
5472
5476
|
var customization_profile = zod.z.object({
|
|
5473
5477
|
workspace_id: zod.z.string().uuid(),
|
|
5474
5478
|
name: zod.z.string().nullable(),
|
|
@@ -5477,7 +5481,8 @@ var customization_profile = zod.z.object({
|
|
|
5477
5481
|
logo_url: zod.z.string().url().optional(),
|
|
5478
5482
|
primary_color: zod.z.string().optional(),
|
|
5479
5483
|
secondary_color: zod.z.string().optional(),
|
|
5480
|
-
customer_portal_theme: customer_portal_theme.optional()
|
|
5484
|
+
customer_portal_theme: customer_portal_theme.optional(),
|
|
5485
|
+
message_overrides: message_overrides.optional()
|
|
5481
5486
|
}).describe(`
|
|
5482
5487
|
---
|
|
5483
5488
|
title: Customization Profile
|
|
@@ -19023,6 +19028,13 @@ var openapi = {
|
|
|
19023
19028
|
},
|
|
19024
19029
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
19025
19030
|
logo_url: { format: "uri", type: "string" },
|
|
19031
|
+
message_overrides: {
|
|
19032
|
+
additionalProperties: {
|
|
19033
|
+
additionalProperties: { type: "string" },
|
|
19034
|
+
type: "object"
|
|
19035
|
+
},
|
|
19036
|
+
type: "object"
|
|
19037
|
+
},
|
|
19026
19038
|
name: { nullable: true, type: "string" },
|
|
19027
19039
|
primary_color: { type: "string" },
|
|
19028
19040
|
secondary_color: { type: "string" },
|
|
@@ -87995,6 +88007,13 @@ var openapi = {
|
|
|
87995
88007
|
},
|
|
87996
88008
|
type: "object"
|
|
87997
88009
|
},
|
|
88010
|
+
message_overrides: {
|
|
88011
|
+
additionalProperties: {
|
|
88012
|
+
additionalProperties: { type: "string" },
|
|
88013
|
+
type: "object"
|
|
88014
|
+
},
|
|
88015
|
+
type: "object"
|
|
88016
|
+
},
|
|
87998
88017
|
name: { default: null, nullable: true, type: "string" },
|
|
87999
88018
|
primary_color: { type: "string" },
|
|
88000
88019
|
secondary_color: { type: "string" }
|
|
@@ -88275,6 +88294,14 @@ var openapi = {
|
|
|
88275
88294
|
type: "object"
|
|
88276
88295
|
},
|
|
88277
88296
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
88297
|
+
message_overrides: {
|
|
88298
|
+
additionalProperties: {
|
|
88299
|
+
additionalProperties: { type: "string" },
|
|
88300
|
+
type: "object"
|
|
88301
|
+
},
|
|
88302
|
+
nullable: true,
|
|
88303
|
+
type: "object"
|
|
88304
|
+
},
|
|
88278
88305
|
name: { nullable: true, type: "string" },
|
|
88279
88306
|
primary_color: { type: "string" },
|
|
88280
88307
|
secondary_color: { type: "string" }
|
|
@@ -88336,6 +88363,14 @@ var openapi = {
|
|
|
88336
88363
|
type: "object"
|
|
88337
88364
|
},
|
|
88338
88365
|
customization_profile_id: { format: "uuid", type: "string" },
|
|
88366
|
+
message_overrides: {
|
|
88367
|
+
additionalProperties: {
|
|
88368
|
+
additionalProperties: { type: "string" },
|
|
88369
|
+
type: "object"
|
|
88370
|
+
},
|
|
88371
|
+
nullable: true,
|
|
88372
|
+
type: "object"
|
|
88373
|
+
},
|
|
88339
88374
|
name: { nullable: true, type: "string" },
|
|
88340
88375
|
primary_color: { type: "string" },
|
|
88341
88376
|
secondary_color: { type: "string" }
|