Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot committed Feb 21, 2025
1 parent 60f9a6a commit a50b8dd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib/seam/connect/models/workspaces/workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ export const workspace = z.object({
name: z.string(),
company_name: z.string(),
is_sandbox: z.boolean(),
is_suspended: z
.boolean()
.describe('True if a sandbox workspace has not been accessed in 14 days'),
connect_partner_name: z
.string()
.nullable()
Expand Down
6 changes: 6 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14392,6 +14392,11 @@ export default {
'x-deprecated': 'use company_name',
},
is_sandbox: { type: 'boolean' },
is_suspended: {
description:
'True if a sandbox workspace has not been accessed in 14 days',
type: 'boolean',
},
name: { type: 'string' },
workspace_id: { format: 'uuid', type: 'string' },
},
Expand All @@ -14400,6 +14405,7 @@ export default {
'name',
'company_name',
'is_sandbox',
'is_suspended',
'connect_partner_name',
],
type: 'object',
Expand Down
6 changes: 6 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45507,6 +45507,8 @@ export interface Routes {
name: string
company_name: string
is_sandbox: boolean
/** True if a sandbox workspace has not been accessed in 14 days */
is_suspended: boolean
/**
* @deprecated use company_name */
connect_partner_name: (string | null) | null
Expand All @@ -45527,6 +45529,8 @@ export interface Routes {
name: string
company_name: string
is_sandbox: boolean
/** True if a sandbox workspace has not been accessed in 14 days */
is_suspended: boolean
/**
* @deprecated use company_name */
connect_partner_name: (string | null) | null
Expand All @@ -45546,6 +45550,8 @@ export interface Routes {
name: string
company_name: string
is_sandbox: boolean
/** True if a sandbox workspace has not been accessed in 14 days */
is_suspended: boolean
/**
* @deprecated use company_name */
connect_partner_name: (string | null) | null
Expand Down

0 comments on commit a50b8dd

Please sign in to comment.