d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
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
232 lines
8.0 KiB
TypeScript
232 lines
8.0 KiB
TypeScript
import type {
|
|
InfisicalDeleteSecretParams,
|
|
InfisicalDeleteSecretResponse,
|
|
} from '@/tools/infisical/types'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const deleteSecretTool: ToolConfig<
|
|
InfisicalDeleteSecretParams,
|
|
InfisicalDeleteSecretResponse
|
|
> = {
|
|
id: 'infisical_delete_secret',
|
|
name: 'Infisical Delete Secret',
|
|
description: 'Delete a secret from a project environment.',
|
|
version: '1.0.0',
|
|
|
|
params: {
|
|
apiKey: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-only',
|
|
description: 'Infisical API token',
|
|
},
|
|
baseUrl: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description:
|
|
'Infisical instance URL (default: "https://us.infisical.com"). Use "https://eu.infisical.com" for EU Cloud or your self-hosted URL.',
|
|
},
|
|
projectId: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'The ID of the project',
|
|
},
|
|
environment: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'The environment slug (e.g., "dev", "staging", "prod")',
|
|
},
|
|
secretName: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'The name of the secret to delete',
|
|
},
|
|
secretPath: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'The path of the secret (default: "/")',
|
|
},
|
|
type: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Secret type: "shared" or "personal" (default: "shared")',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
method: 'DELETE',
|
|
url: (params) =>
|
|
`${params.baseUrl?.replace(/\/+$/, '') ?? 'https://us.infisical.com'}/api/v4/secrets/${encodeURIComponent(params.secretName.trim())}`,
|
|
headers: (params) => ({
|
|
'Content-Type': 'application/json',
|
|
Authorization: `Bearer ${params.apiKey}`,
|
|
}),
|
|
body: (params) => {
|
|
const body: Record<string, unknown> = {
|
|
projectId: params.projectId,
|
|
environment: params.environment,
|
|
}
|
|
if (params.secretPath) body.secretPath = params.secretPath
|
|
if (params.type) body.type = params.type
|
|
return body
|
|
},
|
|
},
|
|
|
|
transformResponse: async (response) => {
|
|
const data = await response.json()
|
|
if (!response.ok) {
|
|
return {
|
|
success: false,
|
|
output: { secret: {} as InfisicalDeleteSecretResponse['output']['secret'] },
|
|
error: data.message ?? `Request failed with status ${response.status}`,
|
|
}
|
|
}
|
|
const s = data.secret ?? data
|
|
return {
|
|
success: true,
|
|
output: {
|
|
secret: {
|
|
id: s.id ?? null,
|
|
workspace: s.workspace ?? null,
|
|
secretKey: s.secretKey ?? null,
|
|
secretValue: s.secretValue ?? null,
|
|
secretComment: s.secretComment ?? null,
|
|
secretPath: s.secretPath ?? null,
|
|
version: s.version ?? null,
|
|
type: s.type ?? null,
|
|
environment: s.environment ?? null,
|
|
secretValueHidden: s.secretValueHidden ?? null,
|
|
isRotatedSecret: s.isRotatedSecret ?? null,
|
|
rotationId: s.rotationId ?? null,
|
|
secretReminderNote: s.secretReminderNote ?? null,
|
|
secretReminderRepeatDays: s.secretReminderRepeatDays ?? null,
|
|
skipMultilineEncoding: s.skipMultilineEncoding ?? null,
|
|
actor: s.actor
|
|
? {
|
|
actorId: s.actor.actorId ?? null,
|
|
actorType: s.actor.actorType ?? null,
|
|
name: s.actor.name ?? null,
|
|
membershipId: s.actor.membershipId ?? null,
|
|
groupId: s.actor.groupId ?? null,
|
|
}
|
|
: null,
|
|
tags:
|
|
(s.tags as Array<Record<string, unknown>> | undefined)?.map(
|
|
(t: Record<string, unknown>) => ({
|
|
id: (t.id as string) ?? null,
|
|
slug: (t.slug as string) ?? null,
|
|
color: (t.color as string) ?? null,
|
|
name: (t.name as string) ?? null,
|
|
})
|
|
) ?? [],
|
|
secretMetadata:
|
|
(s.secretMetadata as Array<Record<string, unknown>> | undefined)?.map(
|
|
(m: Record<string, unknown>) => ({
|
|
key: (m.key as string) ?? null,
|
|
value: (m.value as string) ?? null,
|
|
isEncrypted: (m.isEncrypted as boolean) ?? null,
|
|
})
|
|
) ?? [],
|
|
createdAt: s.createdAt ?? null,
|
|
updatedAt: s.updatedAt ?? null,
|
|
},
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
secret: {
|
|
type: 'object',
|
|
description: 'The deleted secret',
|
|
properties: {
|
|
id: { type: 'string', description: 'Secret ID' },
|
|
workspace: { type: 'string', description: 'Workspace/project ID', optional: true },
|
|
secretKey: { type: 'string', description: 'Secret name/key' },
|
|
secretValue: { type: 'string', description: 'Secret value', optional: true },
|
|
secretComment: { type: 'string', description: 'Secret comment', optional: true },
|
|
secretPath: { type: 'string', description: 'Secret path', optional: true },
|
|
version: { type: 'number', description: 'Secret version' },
|
|
type: { type: 'string', description: 'Secret type (shared or personal)' },
|
|
environment: { type: 'string', description: 'Environment slug' },
|
|
secretValueHidden: {
|
|
type: 'boolean',
|
|
description: 'Whether the secret value was hidden in the response',
|
|
optional: true,
|
|
},
|
|
isRotatedSecret: {
|
|
type: 'boolean',
|
|
description: 'Whether the secret is managed by secret rotation',
|
|
optional: true,
|
|
},
|
|
rotationId: { type: 'string', description: 'Secret rotation ID', optional: true },
|
|
secretReminderNote: {
|
|
type: 'string',
|
|
description: 'Rotation reminder note',
|
|
optional: true,
|
|
},
|
|
secretReminderRepeatDays: {
|
|
type: 'number',
|
|
description: 'Rotation reminder interval in days',
|
|
optional: true,
|
|
},
|
|
skipMultilineEncoding: {
|
|
type: 'boolean',
|
|
description: 'Whether multiline encoding is skipped for this secret',
|
|
optional: true,
|
|
},
|
|
tags: {
|
|
type: 'array',
|
|
description: 'Tags attached to the secret',
|
|
optional: true,
|
|
items: {
|
|
type: 'object',
|
|
properties: {
|
|
id: { type: 'string', description: 'Tag ID' },
|
|
slug: { type: 'string', description: 'Tag slug' },
|
|
color: { type: 'string', description: 'Tag color', optional: true },
|
|
name: { type: 'string', description: 'Tag name' },
|
|
},
|
|
},
|
|
},
|
|
secretMetadata: {
|
|
type: 'array',
|
|
description: 'Custom metadata key-value pairs',
|
|
optional: true,
|
|
items: {
|
|
type: 'object',
|
|
properties: {
|
|
key: { type: 'string', description: 'Metadata key' },
|
|
value: { type: 'string', description: 'Metadata value' },
|
|
isEncrypted: {
|
|
type: 'boolean',
|
|
description: 'Whether the metadata value is encrypted',
|
|
optional: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
actor: {
|
|
type: 'object',
|
|
description: 'Identity that last modified the secret',
|
|
optional: true,
|
|
properties: {
|
|
actorId: { type: 'string', description: 'Actor ID', optional: true },
|
|
actorType: { type: 'string', description: 'Actor type', optional: true },
|
|
name: { type: 'string', description: 'Actor name', optional: true },
|
|
membershipId: { type: 'string', description: 'Membership ID', optional: true },
|
|
groupId: { type: 'string', description: 'Group ID', optional: true },
|
|
},
|
|
},
|
|
createdAt: { type: 'string', description: 'Creation timestamp' },
|
|
updatedAt: { type: 'string', description: 'Last update timestamp' },
|
|
},
|
|
},
|
|
},
|
|
}
|