@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.
@@ -15322,16 +15322,22 @@ declare const customization_profile: z.ZodObject<{
15322
15322
  primary_foreground_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
15323
15323
  secondary_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
15324
15324
  secondary_foreground_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
15325
+ font_family: z.ZodOptional<z.ZodString>;
15326
+ mono_font_family: z.ZodOptional<z.ZodString>;
15325
15327
  }, "strip", z.ZodTypeAny, {
15326
15328
  primary_color?: string | undefined;
15327
15329
  primary_foreground_color?: string | undefined;
15328
15330
  secondary_color?: string | undefined;
15329
15331
  secondary_foreground_color?: string | undefined;
15332
+ font_family?: string | undefined;
15333
+ mono_font_family?: string | undefined;
15330
15334
  }, {
15331
15335
  primary_color?: string | undefined;
15332
15336
  primary_foreground_color?: string | undefined;
15333
15337
  secondary_color?: string | undefined;
15334
15338
  secondary_foreground_color?: string | undefined;
15339
+ font_family?: string | undefined;
15340
+ mono_font_family?: string | undefined;
15335
15341
  }>>;
15336
15342
  }, "strip", z.ZodTypeAny, {
15337
15343
  name: string | null;
@@ -15346,6 +15352,8 @@ declare const customization_profile: z.ZodObject<{
15346
15352
  primary_foreground_color?: string | undefined;
15347
15353
  secondary_color?: string | undefined;
15348
15354
  secondary_foreground_color?: string | undefined;
15355
+ font_family?: string | undefined;
15356
+ mono_font_family?: string | undefined;
15349
15357
  } | undefined;
15350
15358
  }, {
15351
15359
  name: string | null;
@@ -15360,6 +15368,8 @@ declare const customization_profile: z.ZodObject<{
15360
15368
  primary_foreground_color?: string | undefined;
15361
15369
  secondary_color?: string | undefined;
15362
15370
  secondary_foreground_color?: string | undefined;
15371
+ font_family?: string | undefined;
15372
+ mono_font_family?: string | undefined;
15363
15373
  } | undefined;
15364
15374
  }>;
15365
15375
  type CustomizationProfile = z.infer<typeof customization_profile>;
@@ -138899,6 +138909,8 @@ type Routes = {
138899
138909
  primary_foreground_color?: string | undefined;
138900
138910
  secondary_color?: string | undefined;
138901
138911
  secondary_foreground_color?: string | undefined;
138912
+ font_family?: string | undefined;
138913
+ mono_font_family?: string | undefined;
138902
138914
  } | undefined;
138903
138915
  };
138904
138916
  commonParams: {};
@@ -138918,6 +138930,8 @@ type Routes = {
138918
138930
  primary_foreground_color?: string | undefined;
138919
138931
  secondary_color?: string | undefined;
138920
138932
  secondary_foreground_color?: string | undefined;
138933
+ font_family?: string | undefined;
138934
+ mono_font_family?: string | undefined;
138921
138935
  } | undefined;
138922
138936
  };
138923
138937
  };
@@ -138947,6 +138961,8 @@ type Routes = {
138947
138961
  primary_foreground_color?: string | undefined;
138948
138962
  secondary_color?: string | undefined;
138949
138963
  secondary_foreground_color?: string | undefined;
138964
+ font_family?: string | undefined;
138965
+ mono_font_family?: string | undefined;
138950
138966
  } | undefined;
138951
138967
  };
138952
138968
  };
@@ -138976,6 +138992,8 @@ type Routes = {
138976
138992
  primary_foreground_color?: string | undefined;
138977
138993
  secondary_color?: string | undefined;
138978
138994
  secondary_foreground_color?: string | undefined;
138995
+ font_family?: string | undefined;
138996
+ mono_font_family?: string | undefined;
138979
138997
  } | undefined;
138980
138998
  }[];
138981
138999
  };
@@ -138995,6 +139013,8 @@ type Routes = {
138995
139013
  primary_foreground_color?: string | undefined;
138996
139014
  secondary_color?: string | undefined;
138997
139015
  secondary_foreground_color?: string | undefined;
139016
+ font_family?: string | undefined;
139017
+ mono_font_family?: string | undefined;
138998
139018
  } | undefined) | null;
138999
139019
  };
139000
139020
  commonParams: {};
@@ -148704,6 +148724,8 @@ type Routes = {
148704
148724
  primary_foreground_color?: string | undefined;
148705
148725
  secondary_color?: string | undefined;
148706
148726
  secondary_foreground_color?: string | undefined;
148727
+ font_family?: string | undefined;
148728
+ mono_font_family?: string | undefined;
148707
148729
  } | undefined;
148708
148730
  }[] | undefined;
148709
148731
  };
package/dist/index.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" },