show auth key once the agent is created

This commit is contained in:
2026-02-12 16:39:23 +08:00
parent c87c883313
commit 56124069e1
3 changed files with 111 additions and 1 deletions

View File

@@ -62,9 +62,14 @@ export type PipelineRunInfo = {
prompt_set_id: string;
url: string;
port: number;
auth_type: string;
auth_header_name: string;
auth_key_masked: string;
};
export type PipelineCreateResponse = PipelineRunInfo;
export type PipelineCreateResponse = PipelineRunInfo & {
auth_key_once: string;
};
export type PipelineListResponse = {
items: PipelineRunInfo[];