@seamapi/types 1.905.0 → 1.906.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 +11 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +22 -0
- package/dist/index.cjs +11 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customization-profiles/customization-profile.d.ts +16 -0
- package/lib/seam/connect/models/customization-profiles/customization-profile.js +2 -0
- package/lib/seam/connect/models/customization-profiles/customization-profile.js.map +1 -1
- package/lib/seam/connect/openapi.js +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customization-profiles/customization-profile.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +8 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.cjs
CHANGED
|
@@ -5465,7 +5465,9 @@ var customer_portal_theme = zod.z.object({
|
|
|
5465
5465
|
primary_color: hex_color_code.optional(),
|
|
5466
5466
|
primary_foreground_color: hex_color_code.optional(),
|
|
5467
5467
|
secondary_color: hex_color_code.optional(),
|
|
5468
|
-
secondary_foreground_color: hex_color_code.optional()
|
|
5468
|
+
secondary_foreground_color: hex_color_code.optional(),
|
|
5469
|
+
font_family: zod.z.string().optional(),
|
|
5470
|
+
mono_font_family: zod.z.string().optional()
|
|
5469
5471
|
});
|
|
5470
5472
|
var customization_profile = zod.z.object({
|
|
5471
5473
|
workspace_id: zod.z.string().uuid(),
|
|
@@ -19007,6 +19009,8 @@ var openapi = {
|
|
|
19007
19009
|
created_at: { format: "date-time", type: "string" },
|
|
19008
19010
|
customer_portal_theme: {
|
|
19009
19011
|
properties: {
|
|
19012
|
+
font_family: { type: "string" },
|
|
19013
|
+
mono_font_family: { type: "string" },
|
|
19010
19014
|
primary_color: { type: "string" },
|
|
19011
19015
|
primary_foreground_color: { type: "string" },
|
|
19012
19016
|
secondary_color: { type: "string" },
|
|
@@ -87858,6 +87862,8 @@ var openapi = {
|
|
|
87858
87862
|
properties: {
|
|
87859
87863
|
customer_portal_theme: {
|
|
87860
87864
|
properties: {
|
|
87865
|
+
font_family: { type: "string" },
|
|
87866
|
+
mono_font_family: { type: "string" },
|
|
87861
87867
|
primary_color: { type: "string" },
|
|
87862
87868
|
primary_foreground_color: { type: "string" },
|
|
87863
87869
|
secondary_color: { type: "string" },
|
|
@@ -88135,6 +88141,8 @@ var openapi = {
|
|
|
88135
88141
|
customer_portal_theme: {
|
|
88136
88142
|
nullable: true,
|
|
88137
88143
|
properties: {
|
|
88144
|
+
font_family: { type: "string" },
|
|
88145
|
+
mono_font_family: { type: "string" },
|
|
88138
88146
|
primary_color: { type: "string" },
|
|
88139
88147
|
primary_foreground_color: { type: "string" },
|
|
88140
88148
|
secondary_color: { type: "string" },
|
|
@@ -88194,6 +88202,8 @@ var openapi = {
|
|
|
88194
88202
|
customer_portal_theme: {
|
|
88195
88203
|
nullable: true,
|
|
88196
88204
|
properties: {
|
|
88205
|
+
font_family: { type: "string" },
|
|
88206
|
+
mono_font_family: { type: "string" },
|
|
88197
88207
|
primary_color: { type: "string" },
|
|
88198
88208
|
primary_foreground_color: { type: "string" },
|
|
88199
88209
|
secondary_color: { type: "string" },
|