Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot committed Dec 6, 2024
1 parent 2383492 commit e131534
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export const client_session = z.object({
client_session_id: z.string().uuid(),
workspace_id: z.string().uuid(),
created_at: z.string().datetime(),
expires_at: z.string().datetime(),
token: z.string(),
user_identifier_key: z.string().nullable(),
device_count: z.number(),
Expand Down
2 changes: 2 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4208,6 +4208,7 @@ export default {
},
created_at: { format: 'date-time', type: 'string' },
device_count: { format: 'float', type: 'number' },
expires_at: { format: 'date-time', type: 'string' },
token: { type: 'string' },
user_identifier_key: { nullable: true, type: 'string' },
user_identity_ids: {
Expand All @@ -4220,6 +4221,7 @@ export default {
'client_session_id',
'workspace_id',
'created_at',
'expires_at',
'token',
'user_identifier_key',
'device_count',
Expand Down
5 changes: 5 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12305,6 +12305,7 @@ export interface Routes {
client_session_id: string
workspace_id: string
created_at: string
expires_at: string
token: string
user_identifier_key: string | null
device_count: number
Expand Down Expand Up @@ -12340,6 +12341,7 @@ export interface Routes {
client_session_id: string
workspace_id: string
created_at: string
expires_at: string
token: string
user_identifier_key: string | null
device_count: number
Expand Down Expand Up @@ -12367,6 +12369,7 @@ export interface Routes {
client_session_id: string
workspace_id: string
created_at: string
expires_at: string
token: string
user_identifier_key: string | null
device_count: number
Expand Down Expand Up @@ -12394,6 +12397,7 @@ export interface Routes {
client_session_id: string
workspace_id: string
created_at: string
expires_at: string
token: string
user_identifier_key: string | null
device_count: number
Expand Down Expand Up @@ -12421,6 +12425,7 @@ export interface Routes {
client_session_id: string
workspace_id: string
created_at: string
expires_at: string
token: string
user_identifier_key: string | null
device_count: number
Expand Down

0 comments on commit e131534

Please sign in to comment.