export type CreateResourceOutput = { id: string; message: string; }; export type UpdateResourceOutput = { message: string; }; export type DeleteResourceOutput = { message: string; }; export type ListSecretOutputItem = { id: string; name: string; type?: string; expirationDate?: string; }; export type ArtifactReference = { path: string; }; export interface SecretJsonInput { id?: string; name?: string; groupId: string; expirationDate?: string; }