File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ export const client_session = z.object({
44 client_session_id : z . string ( ) . uuid ( ) ,
55 workspace_id : z . string ( ) . uuid ( ) ,
66 created_at : z . string ( ) . datetime ( ) ,
7+ expires_at : z . string ( ) . datetime ( ) ,
78 token : z . string ( ) ,
89 user_identifier_key : z . string ( ) . nullable ( ) ,
910 device_count : z . number ( ) ,
Original file line number Diff line number Diff line change @@ -4208,6 +4208,7 @@ export default {
42084208 },
42094209 created_at: { format: 'date-time', type: 'string' },
42104210 device_count: { format: 'float', type: 'number' },
4211+ expires_at: { format: 'date-time', type: 'string' },
42114212 token: { type: 'string' },
42124213 user_identifier_key: { nullable: true, type: 'string' },
42134214 user_identity_ids: {
@@ -4220,6 +4221,7 @@ export default {
42204221 'client_session_id',
42214222 'workspace_id',
42224223 'created_at',
4224+ 'expires_at',
42234225 'token',
42244226 'user_identifier_key',
42254227 'device_count',
Original file line number Diff line number Diff line change @@ -12305,6 +12305,7 @@ export interface Routes {
1230512305 client_session_id: string
1230612306 workspace_id: string
1230712307 created_at: string
12308+ expires_at: string
1230812309 token: string
1230912310 user_identifier_key: string | null
1231012311 device_count: number
@@ -12340,6 +12341,7 @@ export interface Routes {
1234012341 client_session_id: string
1234112342 workspace_id: string
1234212343 created_at: string
12344+ expires_at: string
1234312345 token: string
1234412346 user_identifier_key: string | null
1234512347 device_count: number
@@ -12367,6 +12369,7 @@ export interface Routes {
1236712369 client_session_id: string
1236812370 workspace_id: string
1236912371 created_at: string
12372+ expires_at: string
1237012373 token: string
1237112374 user_identifier_key: string | null
1237212375 device_count: number
@@ -12394,6 +12397,7 @@ export interface Routes {
1239412397 client_session_id: string
1239512398 workspace_id: string
1239612399 created_at: string
12400+ expires_at: string
1239712401 token: string
1239812402 user_identifier_key: string | null
1239912403 device_count: number
@@ -12421,6 +12425,7 @@ export interface Routes {
1242112425 client_session_id: string
1242212426 workspace_id: string
1242312427 created_at: string
12428+ expires_at: string
1242412429 token: string
1242512430 user_identifier_key: string | null
1242612431 device_count: number
You can’t perform that action at this time.
0 commit comments