Skip to content

Commit 8cbfeb8

Browse files
committed
feat: Sync with Seam API via 7a1ba809c87309d7ea2f968ccc9a703f483d8d4a
1 parent fd5dd44 commit 8cbfeb8

3 files changed

Lines changed: 22 additions & 0 deletions

File tree

src/lib/seam/connect/models/customization-profiles/customization-profile.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ export const customer_portal_theme = z.object({
77
primary_foreground_color: hex_color_code.optional(),
88
secondary_color: hex_color_code.optional(),
99
secondary_foreground_color: hex_color_code.optional(),
10+
font_family: z.string().optional(),
11+
mono_font_family: z.string().optional(),
1012
})
1113

1214
export const customization_profile = z.object({

src/lib/seam/connect/openapi.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13178,6 +13178,8 @@ const openapi: OpenAPISpec = {
1317813178
created_at: { format: 'date-time', type: 'string' },
1317913179
customer_portal_theme: {
1318013180
properties: {
13181+
font_family: { type: 'string' },
13182+
mono_font_family: { type: 'string' },
1318113183
primary_color: { type: 'string' },
1318213184
primary_foreground_color: { type: 'string' },
1318313185
secondary_color: { type: 'string' },
@@ -87158,6 +87160,8 @@ const openapi: OpenAPISpec = {
8715887160
properties: {
8715987161
customer_portal_theme: {
8716087162
properties: {
87163+
font_family: { type: 'string' },
87164+
mono_font_family: { type: 'string' },
8716187165
primary_color: { type: 'string' },
8716287166
primary_foreground_color: { type: 'string' },
8716387167
secondary_color: { type: 'string' },
@@ -87437,6 +87441,8 @@ const openapi: OpenAPISpec = {
8743787441
customer_portal_theme: {
8743887442
nullable: true,
8743987443
properties: {
87444+
font_family: { type: 'string' },
87445+
mono_font_family: { type: 'string' },
8744087446
primary_color: { type: 'string' },
8744187447
primary_foreground_color: { type: 'string' },
8744287448
secondary_color: { type: 'string' },
@@ -87496,6 +87502,8 @@ const openapi: OpenAPISpec = {
8749687502
customer_portal_theme: {
8749787503
nullable: true,
8749887504
properties: {
87505+
font_family: { type: 'string' },
87506+
mono_font_family: { type: 'string' },
8749987507
primary_color: { type: 'string' },
8750087508
primary_foreground_color: { type: 'string' },
8750187509
secondary_color: { type: 'string' },

src/lib/seam/connect/route-types.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129441,6 +129441,8 @@ export type Routes = {
129441129441
primary_foreground_color?: string | undefined
129442129442
secondary_color?: string | undefined
129443129443
secondary_foreground_color?: string | undefined
129444+
font_family?: string | undefined
129445+
mono_font_family?: string | undefined
129444129446
}
129445129447
| undefined
129446129448
}
@@ -129462,6 +129464,8 @@ export type Routes = {
129462129464
primary_foreground_color?: string | undefined
129463129465
secondary_color?: string | undefined
129464129466
secondary_foreground_color?: string | undefined
129467+
font_family?: string | undefined
129468+
mono_font_family?: string | undefined
129465129469
}
129466129470
| undefined
129467129471
}
@@ -129493,6 +129497,8 @@ export type Routes = {
129493129497
primary_foreground_color?: string | undefined
129494129498
secondary_color?: string | undefined
129495129499
secondary_foreground_color?: string | undefined
129500+
font_family?: string | undefined
129501+
mono_font_family?: string | undefined
129496129502
}
129497129503
| undefined
129498129504
}
@@ -129524,6 +129530,8 @@ export type Routes = {
129524129530
primary_foreground_color?: string | undefined
129525129531
secondary_color?: string | undefined
129526129532
secondary_foreground_color?: string | undefined
129533+
font_family?: string | undefined
129534+
mono_font_family?: string | undefined
129527129535
}
129528129536
| undefined
129529129537
}[]
@@ -129546,6 +129554,8 @@ export type Routes = {
129546129554
primary_foreground_color?: string | undefined
129547129555
secondary_color?: string | undefined
129548129556
secondary_foreground_color?: string | undefined
129557+
font_family?: string | undefined
129558+
mono_font_family?: string | undefined
129549129559
}
129550129560
| undefined
129551129561
)
@@ -140935,6 +140945,8 @@ export type Routes = {
140935140945
primary_foreground_color?: string | undefined
140936140946
secondary_color?: string | undefined
140937140947
secondary_foreground_color?: string | undefined
140948+
font_family?: string | undefined
140949+
mono_font_family?: string | undefined
140938140950
}
140939140951
| undefined
140940140952
}[]

0 commit comments

Comments
 (0)