@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.
@@ -80603,6 +80603,8 @@ export type Routes = {
80603
80603
  space_id?: string | undefined;
80604
80604
  /** Filter reservations by the connected account whose connector discovered them. */
80605
80605
  connected_account_id?: string | undefined;
80606
+ /** Filter reservations by the guest user identity ID. */
80607
+ user_identity_id?: string | undefined;
80606
80608
  /** Maximum number of records to return per page. */
80607
80609
  limit?: number;
80608
80610
  /** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
@@ -108686,6 +108688,8 @@ export type Routes = {
108686
108688
  primary_foreground_color?: string | undefined;
108687
108689
  secondary_color?: string | undefined;
108688
108690
  secondary_foreground_color?: string | undefined;
108691
+ font_family?: string | undefined;
108692
+ mono_font_family?: string | undefined;
108689
108693
  } | undefined;
108690
108694
  };
108691
108695
  commonParams: {};
@@ -108705,6 +108709,8 @@ export type Routes = {
108705
108709
  primary_foreground_color?: string | undefined;
108706
108710
  secondary_color?: string | undefined;
108707
108711
  secondary_foreground_color?: string | undefined;
108712
+ font_family?: string | undefined;
108713
+ mono_font_family?: string | undefined;
108708
108714
  } | undefined;
108709
108715
  };
108710
108716
  };
@@ -108734,6 +108740,8 @@ export type Routes = {
108734
108740
  primary_foreground_color?: string | undefined;
108735
108741
  secondary_color?: string | undefined;
108736
108742
  secondary_foreground_color?: string | undefined;
108743
+ font_family?: string | undefined;
108744
+ mono_font_family?: string | undefined;
108737
108745
  } | undefined;
108738
108746
  };
108739
108747
  };
@@ -108763,6 +108771,8 @@ export type Routes = {
108763
108771
  primary_foreground_color?: string | undefined;
108764
108772
  secondary_color?: string | undefined;
108765
108773
  secondary_foreground_color?: string | undefined;
108774
+ font_family?: string | undefined;
108775
+ mono_font_family?: string | undefined;
108766
108776
  } | undefined;
108767
108777
  }[];
108768
108778
  };
@@ -108782,6 +108792,8 @@ export type Routes = {
108782
108792
  primary_foreground_color?: string | undefined;
108783
108793
  secondary_color?: string | undefined;
108784
108794
  secondary_foreground_color?: string | undefined;
108795
+ font_family?: string | undefined;
108796
+ mono_font_family?: string | undefined;
108785
108797
  } | undefined) | null;
108786
108798
  };
108787
108799
  commonParams: {};
@@ -118491,6 +118503,8 @@ export type Routes = {
118491
118503
  primary_foreground_color?: string | undefined;
118492
118504
  secondary_color?: string | undefined;
118493
118505
  secondary_foreground_color?: string | undefined;
118506
+ font_family?: string | undefined;
118507
+ mono_font_family?: string | undefined;
118494
118508
  } | undefined;
118495
118509
  }[] | undefined;
118496
118510
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.904.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' },
@@ -74377,6 +74379,15 @@ const openapi: OpenAPISpec = {
74377
74379
  type: 'string',
74378
74380
  },
74379
74381
  },
74382
+ {
74383
+ in: 'query',
74384
+ name: 'user_identity_id',
74385
+ schema: {
74386
+ description: 'Filter reservations by the guest user identity ID.',
74387
+ format: 'uuid',
74388
+ type: 'string',
74389
+ },
74390
+ },
74380
74391
  {
74381
74392
  in: 'query',
74382
74393
  name: 'limit',
@@ -74751,6 +74762,12 @@ const openapi: OpenAPISpec = {
74751
74762
  description: 'Filter reservations by space key.',
74752
74763
  type: 'string',
74753
74764
  },
74765
+ user_identity_id: {
74766
+ description:
74767
+ 'Filter reservations by the guest user identity ID.',
74768
+ format: 'uuid',
74769
+ type: 'string',
74770
+ },
74754
74771
  },
74755
74772
  type: 'object',
74756
74773
  },
@@ -87143,6 +87160,8 @@ const openapi: OpenAPISpec = {
87143
87160
  properties: {
87144
87161
  customer_portal_theme: {
87145
87162
  properties: {
87163
+ font_family: { type: 'string' },
87164
+ mono_font_family: { type: 'string' },
87146
87165
  primary_color: { type: 'string' },
87147
87166
  primary_foreground_color: { type: 'string' },
87148
87167
  secondary_color: { type: 'string' },
@@ -87422,6 +87441,8 @@ const openapi: OpenAPISpec = {
87422
87441
  customer_portal_theme: {
87423
87442
  nullable: true,
87424
87443
  properties: {
87444
+ font_family: { type: 'string' },
87445
+ mono_font_family: { type: 'string' },
87425
87446
  primary_color: { type: 'string' },
87426
87447
  primary_foreground_color: { type: 'string' },
87427
87448
  secondary_color: { type: 'string' },
@@ -87481,6 +87502,8 @@ const openapi: OpenAPISpec = {
87481
87502
  customer_portal_theme: {
87482
87503
  nullable: true,
87483
87504
  properties: {
87505
+ font_family: { type: 'string' },
87506
+ mono_font_family: { type: 'string' },
87484
87507
  primary_color: { type: 'string' },
87485
87508
  primary_foreground_color: { type: 'string' },
87486
87509
  secondary_color: { type: 'string' },
@@ -96331,6 +96331,8 @@ export type Routes = {
96331
96331
  space_id?: string | undefined
96332
96332
  /** Filter reservations by the connected account whose connector discovered them. */
96333
96333
  connected_account_id?: string | undefined
96334
+ /** Filter reservations by the guest user identity ID. */
96335
+ user_identity_id?: string | undefined
96334
96336
  /** Maximum number of records to return per page. */
96335
96337
  limit?: number
96336
96338
  /** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
@@ -129439,6 +129441,8 @@ export type Routes = {
129439
129441
  primary_foreground_color?: string | undefined
129440
129442
  secondary_color?: string | undefined
129441
129443
  secondary_foreground_color?: string | undefined
129444
+ font_family?: string | undefined
129445
+ mono_font_family?: string | undefined
129442
129446
  }
129443
129447
  | undefined
129444
129448
  }
@@ -129460,6 +129464,8 @@ export type Routes = {
129460
129464
  primary_foreground_color?: string | undefined
129461
129465
  secondary_color?: string | undefined
129462
129466
  secondary_foreground_color?: string | undefined
129467
+ font_family?: string | undefined
129468
+ mono_font_family?: string | undefined
129463
129469
  }
129464
129470
  | undefined
129465
129471
  }
@@ -129491,6 +129497,8 @@ export type Routes = {
129491
129497
  primary_foreground_color?: string | undefined
129492
129498
  secondary_color?: string | undefined
129493
129499
  secondary_foreground_color?: string | undefined
129500
+ font_family?: string | undefined
129501
+ mono_font_family?: string | undefined
129494
129502
  }
129495
129503
  | undefined
129496
129504
  }
@@ -129522,6 +129530,8 @@ export type Routes = {
129522
129530
  primary_foreground_color?: string | undefined
129523
129531
  secondary_color?: string | undefined
129524
129532
  secondary_foreground_color?: string | undefined
129533
+ font_family?: string | undefined
129534
+ mono_font_family?: string | undefined
129525
129535
  }
129526
129536
  | undefined
129527
129537
  }[]
@@ -129544,6 +129554,8 @@ export type Routes = {
129544
129554
  primary_foreground_color?: string | undefined
129545
129555
  secondary_color?: string | undefined
129546
129556
  secondary_foreground_color?: string | undefined
129557
+ font_family?: string | undefined
129558
+ mono_font_family?: string | undefined
129547
129559
  }
129548
129560
  | undefined
129549
129561
  )
@@ -140933,6 +140945,8 @@ export type Routes = {
140933
140945
  primary_foreground_color?: string | undefined
140934
140946
  secondary_color?: string | undefined
140935
140947
  secondary_foreground_color?: string | undefined
140948
+ font_family?: string | undefined
140949
+ mono_font_family?: string | undefined
140936
140950
  }
140937
140951
  | undefined
140938
140952
  }[]