mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-14 01:50:39 +09:00
fix(export): strip project env values from company packages
This commit is contained in:
parent
1de1393413
commit
48704c6586
4 changed files with 275 additions and 64 deletions
|
|
@ -13,6 +13,7 @@ export interface CompanyPortabilityEnvInput {
|
|||
key: string;
|
||||
description: string | null;
|
||||
agentSlug: string | null;
|
||||
projectSlug: string | null;
|
||||
kind: "secret" | "plain";
|
||||
requirement: "required" | "optional";
|
||||
defaultValue: string | null;
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ export const portabilityEnvInputSchema = z.object({
|
|||
key: z.string().min(1),
|
||||
description: z.string().nullable(),
|
||||
agentSlug: z.string().min(1).nullable(),
|
||||
projectSlug: z.string().min(1).nullable(),
|
||||
kind: z.enum(["secret", "plain"]),
|
||||
requirement: z.enum(["required", "optional"]),
|
||||
defaultValue: z.string().nullable(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue