@seamapi/types 1.904.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>;
@@ -110814,6 +110824,8 @@ type Routes = {
110814
110824
  space_id?: string | undefined;
110815
110825
  /** Filter reservations by the connected account whose connector discovered them. */
110816
110826
  connected_account_id?: string | undefined;
110827
+ /** Filter reservations by the guest user identity ID. */
110828
+ user_identity_id?: string | undefined;
110817
110829
  /** Maximum number of records to return per page. */
110818
110830
  limit?: number;
110819
110831
  /** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
@@ -138897,6 +138909,8 @@ type Routes = {
138897
138909
  primary_foreground_color?: string | undefined;
138898
138910
  secondary_color?: string | undefined;
138899
138911
  secondary_foreground_color?: string | undefined;
138912
+ font_family?: string | undefined;
138913
+ mono_font_family?: string | undefined;
138900
138914
  } | undefined;
138901
138915
  };
138902
138916
  commonParams: {};
@@ -138916,6 +138930,8 @@ type Routes = {
138916
138930
  primary_foreground_color?: string | undefined;
138917
138931
  secondary_color?: string | undefined;
138918
138932
  secondary_foreground_color?: string | undefined;
138933
+ font_family?: string | undefined;
138934
+ mono_font_family?: string | undefined;
138919
138935
  } | undefined;
138920
138936
  };
138921
138937
  };
@@ -138945,6 +138961,8 @@ type Routes = {
138945
138961
  primary_foreground_color?: string | undefined;
138946
138962
  secondary_color?: string | undefined;
138947
138963
  secondary_foreground_color?: string | undefined;
138964
+ font_family?: string | undefined;
138965
+ mono_font_family?: string | undefined;
138948
138966
  } | undefined;
138949
138967
  };
138950
138968
  };
@@ -138974,6 +138992,8 @@ type Routes = {
138974
138992
  primary_foreground_color?: string | undefined;
138975
138993
  secondary_color?: string | undefined;
138976
138994
  secondary_foreground_color?: string | undefined;
138995
+ font_family?: string | undefined;
138996
+ mono_font_family?: string | undefined;
138977
138997
  } | undefined;
138978
138998
  }[];
138979
138999
  };
@@ -138993,6 +139013,8 @@ type Routes = {
138993
139013
  primary_foreground_color?: string | undefined;
138994
139014
  secondary_color?: string | undefined;
138995
139015
  secondary_foreground_color?: string | undefined;
139016
+ font_family?: string | undefined;
139017
+ mono_font_family?: string | undefined;
138996
139018
  } | undefined) | null;
138997
139019
  };
138998
139020
  commonParams: {};
@@ -148702,6 +148724,8 @@ type Routes = {
148702
148724
  primary_foreground_color?: string | undefined;
148703
148725
  secondary_color?: string | undefined;
148704
148726
  secondary_foreground_color?: string | undefined;
148727
+ font_family?: string | undefined;
148728
+ mono_font_family?: string | undefined;
148705
148729
  } | undefined;
148706
148730
  }[] | undefined;
148707
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" },
@@ -75787,6 +75791,15 @@ var openapi = {
75787
75791
  type: "string"
75788
75792
  }
75789
75793
  },
75794
+ {
75795
+ in: "query",
75796
+ name: "user_identity_id",
75797
+ schema: {
75798
+ description: "Filter reservations by the guest user identity ID.",
75799
+ format: "uuid",
75800
+ type: "string"
75801
+ }
75802
+ },
75790
75803
  {
75791
75804
  in: "query",
75792
75805
  name: "limit",
@@ -76146,6 +76159,11 @@ var openapi = {
76146
76159
  space_key: {
76147
76160
  description: "Filter reservations by space key.",
76148
76161
  type: "string"
76162
+ },
76163
+ user_identity_id: {
76164
+ description: "Filter reservations by the guest user identity ID.",
76165
+ format: "uuid",
76166
+ type: "string"
76149
76167
  }
76150
76168
  },
76151
76169
  type: "object"
@@ -87844,6 +87862,8 @@ var openapi = {
87844
87862
  properties: {
87845
87863
  customer_portal_theme: {
87846
87864
  properties: {
87865
+ font_family: { type: "string" },
87866
+ mono_font_family: { type: "string" },
87847
87867
  primary_color: { type: "string" },
87848
87868
  primary_foreground_color: { type: "string" },
87849
87869
  secondary_color: { type: "string" },
@@ -88121,6 +88141,8 @@ var openapi = {
88121
88141
  customer_portal_theme: {
88122
88142
  nullable: true,
88123
88143
  properties: {
88144
+ font_family: { type: "string" },
88145
+ mono_font_family: { type: "string" },
88124
88146
  primary_color: { type: "string" },
88125
88147
  primary_foreground_color: { type: "string" },
88126
88148
  secondary_color: { type: "string" },
@@ -88180,6 +88202,8 @@ var openapi = {
88180
88202
  customer_portal_theme: {
88181
88203
  nullable: true,
88182
88204
  properties: {
88205
+ font_family: { type: "string" },
88206
+ mono_font_family: { type: "string" },
88183
88207
  primary_color: { type: "string" },
88184
88208
  primary_foreground_color: { type: "string" },
88185
88209
  secondary_color: { type: "string" },