@agentrun/sdk 0.0.2-test.21115195039 → 0.0.3-test.21197424453
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/index.cjs +1055 -929
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.js +1055 -929
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1804,7 +1804,11 @@ declare class BrowserDataAPI extends SandboxDataAPI {
|
|
|
1804
1804
|
declare enum TemplateType {
|
|
1805
1805
|
CODE_INTERPRETER = "CodeInterpreter",
|
|
1806
1806
|
BROWSER = "Browser",
|
|
1807
|
-
AIO = "AllInOne"
|
|
1807
|
+
AIO = "AllInOne",
|
|
1808
|
+
/**
|
|
1809
|
+
* 自定义镜像 / Custom Image
|
|
1810
|
+
*/
|
|
1811
|
+
CUSTOM = "CustomImage"
|
|
1808
1812
|
}
|
|
1809
1813
|
/**
|
|
1810
1814
|
* Sandbox state enum
|
|
@@ -2017,6 +2021,18 @@ interface TemplateArmsConfiguration {
|
|
|
2017
2021
|
interface TemplateContainerConfiguration {
|
|
2018
2022
|
image?: string;
|
|
2019
2023
|
command?: string[];
|
|
2024
|
+
/**
|
|
2025
|
+
* ACR 实例 ID / ACR Instance ID
|
|
2026
|
+
*/
|
|
2027
|
+
acrInstanceId?: string;
|
|
2028
|
+
/**
|
|
2029
|
+
* 镜像注册表类型 / Image Registry Type
|
|
2030
|
+
*/
|
|
2031
|
+
imageRegistryType?: string;
|
|
2032
|
+
/**
|
|
2033
|
+
* 端口 / Port
|
|
2034
|
+
*/
|
|
2035
|
+
port?: number;
|
|
2020
2036
|
}
|
|
2021
2037
|
/**
|
|
2022
2038
|
* Template MCP options
|
package/dist/index.d.ts
CHANGED
|
@@ -1804,7 +1804,11 @@ declare class BrowserDataAPI extends SandboxDataAPI {
|
|
|
1804
1804
|
declare enum TemplateType {
|
|
1805
1805
|
CODE_INTERPRETER = "CodeInterpreter",
|
|
1806
1806
|
BROWSER = "Browser",
|
|
1807
|
-
AIO = "AllInOne"
|
|
1807
|
+
AIO = "AllInOne",
|
|
1808
|
+
/**
|
|
1809
|
+
* 自定义镜像 / Custom Image
|
|
1810
|
+
*/
|
|
1811
|
+
CUSTOM = "CustomImage"
|
|
1808
1812
|
}
|
|
1809
1813
|
/**
|
|
1810
1814
|
* Sandbox state enum
|
|
@@ -2017,6 +2021,18 @@ interface TemplateArmsConfiguration {
|
|
|
2017
2021
|
interface TemplateContainerConfiguration {
|
|
2018
2022
|
image?: string;
|
|
2019
2023
|
command?: string[];
|
|
2024
|
+
/**
|
|
2025
|
+
* ACR 实例 ID / ACR Instance ID
|
|
2026
|
+
*/
|
|
2027
|
+
acrInstanceId?: string;
|
|
2028
|
+
/**
|
|
2029
|
+
* 镜像注册表类型 / Image Registry Type
|
|
2030
|
+
*/
|
|
2031
|
+
imageRegistryType?: string;
|
|
2032
|
+
/**
|
|
2033
|
+
* 端口 / Port
|
|
2034
|
+
*/
|
|
2035
|
+
port?: number;
|
|
2020
2036
|
}
|
|
2021
2037
|
/**
|
|
2022
2038
|
* Template MCP options
|