@blade-hq/agent-kit 1.0.11 → 1.0.13
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 +62 -0
- package/package.json +1 -1
package/dist/client/index.d.ts
CHANGED
|
@@ -5084,6 +5084,23 @@ interface paths {
|
|
|
5084
5084
|
patch?: never;
|
|
5085
5085
|
trace?: never;
|
|
5086
5086
|
};
|
|
5087
|
+
"/api/system-info": {
|
|
5088
|
+
parameters: {
|
|
5089
|
+
query?: never;
|
|
5090
|
+
header?: never;
|
|
5091
|
+
path?: never;
|
|
5092
|
+
cookie?: never;
|
|
5093
|
+
};
|
|
5094
|
+
/** Get System Info */
|
|
5095
|
+
get: operations["get_system_info_api_system_info_get"];
|
|
5096
|
+
put?: never;
|
|
5097
|
+
post?: never;
|
|
5098
|
+
delete?: never;
|
|
5099
|
+
options?: never;
|
|
5100
|
+
head?: never;
|
|
5101
|
+
patch?: never;
|
|
5102
|
+
trace?: never;
|
|
5103
|
+
};
|
|
5087
5104
|
"/api/browser/command": {
|
|
5088
5105
|
parameters: {
|
|
5089
5106
|
query?: never;
|
|
@@ -6415,6 +6432,31 @@ interface components {
|
|
|
6415
6432
|
/** Assignee Type */
|
|
6416
6433
|
assignee_type?: string | null;
|
|
6417
6434
|
};
|
|
6435
|
+
/** SystemInfo */
|
|
6436
|
+
SystemInfo: {
|
|
6437
|
+
/** Python Version */
|
|
6438
|
+
python_version: string;
|
|
6439
|
+
/** Platform */
|
|
6440
|
+
platform: string;
|
|
6441
|
+
/** Architecture */
|
|
6442
|
+
architecture: string;
|
|
6443
|
+
/** Hostname */
|
|
6444
|
+
hostname: string;
|
|
6445
|
+
/** Git */
|
|
6446
|
+
git: {
|
|
6447
|
+
[key: string]: string;
|
|
6448
|
+
};
|
|
6449
|
+
/** Package Versions */
|
|
6450
|
+
package_versions: {
|
|
6451
|
+
[key: string]: string;
|
|
6452
|
+
};
|
|
6453
|
+
/** Env Groups */
|
|
6454
|
+
env_groups: components["schemas"]["_EnvGroup"][];
|
|
6455
|
+
/** Startup Env */
|
|
6456
|
+
startup_env: {
|
|
6457
|
+
[key: string]: string;
|
|
6458
|
+
};
|
|
6459
|
+
};
|
|
6418
6460
|
/**
|
|
6419
6461
|
* TemplateId
|
|
6420
6462
|
* @enum {string}
|
|
@@ -17941,6 +17983,26 @@ interface operations {
|
|
|
17941
17983
|
};
|
|
17942
17984
|
};
|
|
17943
17985
|
};
|
|
17986
|
+
get_system_info_api_system_info_get: {
|
|
17987
|
+
parameters: {
|
|
17988
|
+
query?: never;
|
|
17989
|
+
header?: never;
|
|
17990
|
+
path?: never;
|
|
17991
|
+
cookie?: never;
|
|
17992
|
+
};
|
|
17993
|
+
requestBody?: never;
|
|
17994
|
+
responses: {
|
|
17995
|
+
/** @description Successful Response */
|
|
17996
|
+
200: {
|
|
17997
|
+
headers: {
|
|
17998
|
+
[name: string]: unknown;
|
|
17999
|
+
};
|
|
18000
|
+
content: {
|
|
18001
|
+
"application/json": components["schemas"]["SystemInfo"];
|
|
18002
|
+
};
|
|
18003
|
+
};
|
|
18004
|
+
};
|
|
18005
|
+
};
|
|
17944
18006
|
post_browser_command_api_browser_command_post: {
|
|
17945
18007
|
parameters: {
|
|
17946
18008
|
query?: never;
|