d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
132 lines
3.2 KiB
TypeScript
132 lines
3.2 KiB
TypeScript
// AUTO-GENERATED FILE. DO NOT EDIT.
|
|
//
|
|
|
|
/**
|
|
* Structured workspace inventory snapshot Sim sends to Go; Go diffs successive snapshots into baseline+delta messages.
|
|
*/
|
|
export interface VfsSnapshotV1 {
|
|
customTools?: VfsSnapshotV1NamedResource[]
|
|
envVars?: string[]
|
|
files?: VfsSnapshotV1File[]
|
|
integrations?: VfsSnapshotV1Integration[]
|
|
jobs?: VfsSnapshotV1Job[]
|
|
knowledgeBases?: VfsSnapshotV1KnowledgeBase[]
|
|
mcpServers?: VfsSnapshotV1McpServer[]
|
|
members?: VfsSnapshotV1Member[]
|
|
skills?: VfsSnapshotV1Skill[]
|
|
tables?: VfsSnapshotV1Table[]
|
|
workflows?: VfsSnapshotV1Workflow[]
|
|
workspace?: VfsSnapshotV1Workspace
|
|
}
|
|
/**
|
|
* This interface was referenced by `VfsSnapshotV1`'s JSON-Schema
|
|
* via the `definition` "VfsSnapshotV1NamedResource".
|
|
*/
|
|
export interface VfsSnapshotV1NamedResource {
|
|
id: string
|
|
name: string
|
|
}
|
|
/**
|
|
* This interface was referenced by `VfsSnapshotV1`'s JSON-Schema
|
|
* via the `definition` "VfsSnapshotV1File".
|
|
*/
|
|
export interface VfsSnapshotV1File {
|
|
folderPath?: string
|
|
id: string
|
|
name: string
|
|
path: string
|
|
size?: number
|
|
type?: string
|
|
}
|
|
/**
|
|
* This interface was referenced by `VfsSnapshotV1`'s JSON-Schema
|
|
* via the `definition` "VfsSnapshotV1Integration".
|
|
*/
|
|
export interface VfsSnapshotV1Integration {
|
|
displayName?: string
|
|
id: string
|
|
providerId: string
|
|
role?: string
|
|
}
|
|
/**
|
|
* This interface was referenced by `VfsSnapshotV1`'s JSON-Schema
|
|
* via the `definition` "VfsSnapshotV1Job".
|
|
*/
|
|
export interface VfsSnapshotV1Job {
|
|
cronExpression?: string
|
|
id: string
|
|
lifecycle?: string
|
|
prompt?: string
|
|
sourceTaskName?: string
|
|
status?: string
|
|
title?: string
|
|
}
|
|
/**
|
|
* This interface was referenced by `VfsSnapshotV1`'s JSON-Schema
|
|
* via the `definition` "VfsSnapshotV1KnowledgeBase".
|
|
*/
|
|
export interface VfsSnapshotV1KnowledgeBase {
|
|
connectorTypes?: string[]
|
|
description?: string
|
|
id: string
|
|
name: string
|
|
}
|
|
/**
|
|
* This interface was referenced by `VfsSnapshotV1`'s JSON-Schema
|
|
* via the `definition` "VfsSnapshotV1McpServer".
|
|
*/
|
|
export interface VfsSnapshotV1McpServer {
|
|
enabled?: boolean
|
|
id: string
|
|
name: string
|
|
url?: string
|
|
}
|
|
/**
|
|
* This interface was referenced by `VfsSnapshotV1`'s JSON-Schema
|
|
* via the `definition` "VfsSnapshotV1Member".
|
|
*/
|
|
export interface VfsSnapshotV1Member {
|
|
email: string
|
|
name?: string
|
|
permissionType?: string
|
|
}
|
|
/**
|
|
* This interface was referenced by `VfsSnapshotV1`'s JSON-Schema
|
|
* via the `definition` "VfsSnapshotV1Skill".
|
|
*/
|
|
export interface VfsSnapshotV1Skill {
|
|
description?: string
|
|
id: string
|
|
name: string
|
|
}
|
|
/**
|
|
* This interface was referenced by `VfsSnapshotV1`'s JSON-Schema
|
|
* via the `definition` "VfsSnapshotV1Table".
|
|
*/
|
|
export interface VfsSnapshotV1Table {
|
|
description?: string
|
|
id: string
|
|
name: string
|
|
}
|
|
/**
|
|
* This interface was referenced by `VfsSnapshotV1`'s JSON-Schema
|
|
* via the `definition` "VfsSnapshotV1Workflow".
|
|
*/
|
|
export interface VfsSnapshotV1Workflow {
|
|
description?: string
|
|
folderPath?: string
|
|
id: string
|
|
isDeployed?: boolean
|
|
name: string
|
|
path: string
|
|
}
|
|
/**
|
|
* This interface was referenced by `VfsSnapshotV1`'s JSON-Schema
|
|
* via the `definition` "VfsSnapshotV1Workspace".
|
|
*/
|
|
export interface VfsSnapshotV1Workspace {
|
|
id: string
|
|
name: string
|
|
ownerId?: string
|
|
}
|