@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.
@@ -108688,6 +108688,8 @@ export type Routes = {
108688
108688
  primary_foreground_color?: string | undefined;
108689
108689
  secondary_color?: string | undefined;
108690
108690
  secondary_foreground_color?: string | undefined;
108691
+ font_family?: string | undefined;
108692
+ mono_font_family?: string | undefined;
108691
108693
  } | undefined;
108692
108694
  };
108693
108695
  commonParams: {};
@@ -108707,6 +108709,8 @@ export type Routes = {
108707
108709
  primary_foreground_color?: string | undefined;
108708
108710
  secondary_color?: string | undefined;
108709
108711
  secondary_foreground_color?: string | undefined;
108712
+ font_family?: string | undefined;
108713
+ mono_font_family?: string | undefined;
108710
108714
  } | undefined;
108711
108715
  };
108712
108716
  };
@@ -108736,6 +108740,8 @@ export type Routes = {
108736
108740
  primary_foreground_color?: string | undefined;
108737
108741
  secondary_color?: string | undefined;
108738
108742
  secondary_foreground_color?: string | undefined;
108743
+ font_family?: string | undefined;
108744
+ mono_font_family?: string | undefined;
108739
108745
  } | undefined;
108740
108746
  };
108741
108747
  };
@@ -108765,6 +108771,8 @@ export type Routes = {
108765
108771
  primary_foreground_color?: string | undefined;
108766
108772
  secondary_color?: string | undefined;
108767
108773
  secondary_foreground_color?: string | undefined;
108774
+ font_family?: string | undefined;
108775
+ mono_font_family?: string | undefined;
108768
108776
  } | undefined;
108769
108777
  }[];
108770
108778
  };
@@ -108784,6 +108792,8 @@ export type Routes = {
108784
108792
  primary_foreground_color?: string | undefined;
108785
108793
  secondary_color?: string | undefined;
108786
108794
  secondary_foreground_color?: string | undefined;
108795
+ font_family?: string | undefined;
108796
+ mono_font_family?: string | undefined;
108787
108797
  } | undefined) | null;
108788
108798
  };
108789
108799
  commonParams: {};
@@ -118493,6 +118503,8 @@ export type Routes = {
118493
118503
  primary_foreground_color?: string | undefined;
118494
118504
  secondary_color?: string | undefined;
118495
118505
  secondary_foreground_color?: string | undefined;
118506
+ font_family?: string | undefined;
118507
+ mono_font_family?: string | undefined;
118496
118508
  } | undefined;
118497
118509
  }[] | undefined;
118498
118510
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.905.0",
3
+ "version": "1.906.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -7,6 +7,8 @@ export const customer_portal_theme = z.object({
7
7
  primary_foreground_color: hex_color_code.optional(),
8
8
  secondary_color: hex_color_code.optional(),
9
9
  secondary_foreground_color: hex_color_code.optional(),
10
+ font_family: z.string().optional(),
11
+ mono_font_family: z.string().optional(),
10
12
  })
11
13
 
12
14
  export const customization_profile = z.object({
@@ -13178,6 +13178,8 @@ const openapi: OpenAPISpec = {
13178
13178
  created_at: { format: 'date-time', type: 'string' },
13179
13179
  customer_portal_theme: {
13180
13180
  properties: {
13181
+ font_family: { type: 'string' },
13182
+ mono_font_family: { type: 'string' },
13181
13183
  primary_color: { type: 'string' },
13182
13184
  primary_foreground_color: { type: 'string' },
13183
13185
  secondary_color: { type: 'string' },
@@ -87158,6 +87160,8 @@ const openapi: OpenAPISpec = {
87158
87160
  properties: {
87159
87161
  customer_portal_theme: {
87160
87162
  properties: {
87163
+ font_family: { type: 'string' },
87164
+ mono_font_family: { type: 'string' },
87161
87165
  primary_color: { type: 'string' },
87162
87166
  primary_foreground_color: { type: 'string' },
87163
87167
  secondary_color: { type: 'string' },
@@ -87437,6 +87441,8 @@ const openapi: OpenAPISpec = {
87437
87441
  customer_portal_theme: {
87438
87442
  nullable: true,
87439
87443
  properties: {
87444
+ font_family: { type: 'string' },
87445
+ mono_font_family: { type: 'string' },
87440
87446
  primary_color: { type: 'string' },
87441
87447
  primary_foreground_color: { type: 'string' },
87442
87448
  secondary_color: { type: 'string' },
@@ -87496,6 +87502,8 @@ const openapi: OpenAPISpec = {
87496
87502
  customer_portal_theme: {
87497
87503
  nullable: true,
87498
87504
  properties: {
87505
+ font_family: { type: 'string' },
87506
+ mono_font_family: { type: 'string' },
87499
87507
  primary_color: { type: 'string' },
87500
87508
  primary_foreground_color: { type: 'string' },
87501
87509
  secondary_color: { type: 'string' },
@@ -129441,6 +129441,8 @@ export type Routes = {
129441
129441
  primary_foreground_color?: string | undefined
129442
129442
  secondary_color?: string | undefined
129443
129443
  secondary_foreground_color?: string | undefined
129444
+ font_family?: string | undefined
129445
+ mono_font_family?: string | undefined
129444
129446
  }
129445
129447
  | undefined
129446
129448
  }
@@ -129462,6 +129464,8 @@ export type Routes = {
129462
129464
  primary_foreground_color?: string | undefined
129463
129465
  secondary_color?: string | undefined
129464
129466
  secondary_foreground_color?: string | undefined
129467
+ font_family?: string | undefined
129468
+ mono_font_family?: string | undefined
129465
129469
  }
129466
129470
  | undefined
129467
129471
  }
@@ -129493,6 +129497,8 @@ export type Routes = {
129493
129497
  primary_foreground_color?: string | undefined
129494
129498
  secondary_color?: string | undefined
129495
129499
  secondary_foreground_color?: string | undefined
129500
+ font_family?: string | undefined
129501
+ mono_font_family?: string | undefined
129496
129502
  }
129497
129503
  | undefined
129498
129504
  }
@@ -129524,6 +129530,8 @@ export type Routes = {
129524
129530
  primary_foreground_color?: string | undefined
129525
129531
  secondary_color?: string | undefined
129526
129532
  secondary_foreground_color?: string | undefined
129533
+ font_family?: string | undefined
129534
+ mono_font_family?: string | undefined
129527
129535
  }
129528
129536
  | undefined
129529
129537
  }[]
@@ -129546,6 +129554,8 @@ export type Routes = {
129546
129554
  primary_foreground_color?: string | undefined
129547
129555
  secondary_color?: string | undefined
129548
129556
  secondary_foreground_color?: string | undefined
129557
+ font_family?: string | undefined
129558
+ mono_font_family?: string | undefined
129549
129559
  }
129550
129560
  | undefined
129551
129561
  )
@@ -140935,6 +140945,8 @@ export type Routes = {
140935
140945
  primary_foreground_color?: string | undefined
140936
140946
  secondary_color?: string | undefined
140937
140947
  secondary_foreground_color?: string | undefined
140948
+ font_family?: string | undefined
140949
+ mono_font_family?: string | undefined
140938
140950
  }
140939
140951
  | undefined
140940
140952
  }[]