@blade-hq/agent-kit 0.5.35 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/index.d.ts +57 -0
- package/package.json +1 -1
package/dist/client/index.d.ts
CHANGED
|
@@ -3818,6 +3818,26 @@ interface paths {
|
|
|
3818
3818
|
patch?: never;
|
|
3819
3819
|
trace?: never;
|
|
3820
3820
|
};
|
|
3821
|
+
"/api/agent-board/projects/{project_id}/export-git": {
|
|
3822
|
+
parameters: {
|
|
3823
|
+
query?: never;
|
|
3824
|
+
header?: never;
|
|
3825
|
+
path?: never;
|
|
3826
|
+
cookie?: never;
|
|
3827
|
+
};
|
|
3828
|
+
/**
|
|
3829
|
+
* Export Project Git
|
|
3830
|
+
* @description 通过 Gitea API 下载项目仓库 zip(仅 git 跟踪的文件)。
|
|
3831
|
+
*/
|
|
3832
|
+
get: operations["export_project_git_api_agent_board_projects__project_id__export_git_get"];
|
|
3833
|
+
put?: never;
|
|
3834
|
+
post?: never;
|
|
3835
|
+
delete?: never;
|
|
3836
|
+
options?: never;
|
|
3837
|
+
head?: never;
|
|
3838
|
+
patch?: never;
|
|
3839
|
+
trace?: never;
|
|
3840
|
+
};
|
|
3821
3841
|
"/api/agent-board/projects/{project_id}/pull-requests": {
|
|
3822
3842
|
parameters: {
|
|
3823
3843
|
query?: never;
|
|
@@ -15221,6 +15241,43 @@ interface operations {
|
|
|
15221
15241
|
};
|
|
15222
15242
|
};
|
|
15223
15243
|
bootstrap_project_repo_api_agent_board_projects__project_id__bootstrap_post: {
|
|
15244
|
+
parameters: {
|
|
15245
|
+
query?: never;
|
|
15246
|
+
header?: never;
|
|
15247
|
+
path: {
|
|
15248
|
+
project_id: number;
|
|
15249
|
+
};
|
|
15250
|
+
cookie?: never;
|
|
15251
|
+
};
|
|
15252
|
+
requestBody?: {
|
|
15253
|
+
content: {
|
|
15254
|
+
"application/json": {
|
|
15255
|
+
[key: string]: unknown;
|
|
15256
|
+
} | null;
|
|
15257
|
+
};
|
|
15258
|
+
};
|
|
15259
|
+
responses: {
|
|
15260
|
+
/** @description Successful Response */
|
|
15261
|
+
200: {
|
|
15262
|
+
headers: {
|
|
15263
|
+
[name: string]: unknown;
|
|
15264
|
+
};
|
|
15265
|
+
content: {
|
|
15266
|
+
"application/json": unknown;
|
|
15267
|
+
};
|
|
15268
|
+
};
|
|
15269
|
+
/** @description Validation Error */
|
|
15270
|
+
422: {
|
|
15271
|
+
headers: {
|
|
15272
|
+
[name: string]: unknown;
|
|
15273
|
+
};
|
|
15274
|
+
content: {
|
|
15275
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
15276
|
+
};
|
|
15277
|
+
};
|
|
15278
|
+
};
|
|
15279
|
+
};
|
|
15280
|
+
export_project_git_api_agent_board_projects__project_id__export_git_get: {
|
|
15224
15281
|
parameters: {
|
|
15225
15282
|
query?: never;
|
|
15226
15283
|
header?: never;
|