@seamapi/types 1.308.0 → 1.309.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.
@@ -10499,6 +10499,7 @@ export interface Routes {
10499
10499
  client_session_id: string;
10500
10500
  workspace_id: string;
10501
10501
  created_at: string;
10502
+ expires_at: string;
10502
10503
  token: string;
10503
10504
  user_identifier_key: string | null;
10504
10505
  device_count: number;
@@ -10534,6 +10535,7 @@ export interface Routes {
10534
10535
  client_session_id: string;
10535
10536
  workspace_id: string;
10536
10537
  created_at: string;
10538
+ expires_at: string;
10537
10539
  token: string;
10538
10540
  user_identifier_key: string | null;
10539
10541
  device_count: number;
@@ -10561,6 +10563,7 @@ export interface Routes {
10561
10563
  client_session_id: string;
10562
10564
  workspace_id: string;
10563
10565
  created_at: string;
10566
+ expires_at: string;
10564
10567
  token: string;
10565
10568
  user_identifier_key: string | null;
10566
10569
  device_count: number;
@@ -10588,6 +10591,7 @@ export interface Routes {
10588
10591
  client_session_id: string;
10589
10592
  workspace_id: string;
10590
10593
  created_at: string;
10594
+ expires_at: string;
10591
10595
  token: string;
10592
10596
  user_identifier_key: string | null;
10593
10597
  device_count: number;
@@ -10615,6 +10619,7 @@ export interface Routes {
10615
10619
  client_session_id: string;
10616
10620
  workspace_id: string;
10617
10621
  created_at: string;
10622
+ expires_at: string;
10618
10623
  token: string;
10619
10624
  user_identifier_key: string | null;
10620
10625
  device_count: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.308.0",
3
+ "version": "1.309.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -4,6 +4,7 @@ export const client_session = z.object({
4
4
  client_session_id: z.string().uuid(),
5
5
  workspace_id: z.string().uuid(),
6
6
  created_at: z.string().datetime(),
7
+ expires_at: z.string().datetime(),
7
8
  token: z.string(),
8
9
  user_identifier_key: z.string().nullable(),
9
10
  device_count: z.number(),
@@ -4208,6 +4208,7 @@ export default {
4208
4208
  },
4209
4209
  created_at: { format: 'date-time', type: 'string' },
4210
4210
  device_count: { format: 'float', type: 'number' },
4211
+ expires_at: { format: 'date-time', type: 'string' },
4211
4212
  token: { type: 'string' },
4212
4213
  user_identifier_key: { nullable: true, type: 'string' },
4213
4214
  user_identity_ids: {
@@ -4220,6 +4221,7 @@ export default {
4220
4221
  'client_session_id',
4221
4222
  'workspace_id',
4222
4223
  'created_at',
4224
+ 'expires_at',
4223
4225
  'token',
4224
4226
  'user_identifier_key',
4225
4227
  'device_count',
@@ -12305,6 +12305,7 @@ export interface Routes {
12305
12305
  client_session_id: string
12306
12306
  workspace_id: string
12307
12307
  created_at: string
12308
+ expires_at: string
12308
12309
  token: string
12309
12310
  user_identifier_key: string | null
12310
12311
  device_count: number
@@ -12340,6 +12341,7 @@ export interface Routes {
12340
12341
  client_session_id: string
12341
12342
  workspace_id: string
12342
12343
  created_at: string
12344
+ expires_at: string
12343
12345
  token: string
12344
12346
  user_identifier_key: string | null
12345
12347
  device_count: number
@@ -12367,6 +12369,7 @@ export interface Routes {
12367
12369
  client_session_id: string
12368
12370
  workspace_id: string
12369
12371
  created_at: string
12372
+ expires_at: string
12370
12373
  token: string
12371
12374
  user_identifier_key: string | null
12372
12375
  device_count: number
@@ -12394,6 +12397,7 @@ export interface Routes {
12394
12397
  client_session_id: string
12395
12398
  workspace_id: string
12396
12399
  created_at: string
12400
+ expires_at: string
12397
12401
  token: string
12398
12402
  user_identifier_key: string | null
12399
12403
  device_count: number
@@ -12421,6 +12425,7 @@ export interface Routes {
12421
12425
  client_session_id: string
12422
12426
  workspace_id: string
12423
12427
  created_at: string
12428
+ expires_at: string
12424
12429
  token: string
12425
12430
  user_identifier_key: string | null
12426
12431
  device_count: number