shellx-ai 1.0.4 → 1.0.5
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.d.ts +1 -0
- package/dist/index.js +4 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -177,3 +177,4 @@ export declare class WebSocketTaskClient {
|
|
|
177
177
|
}
|
|
178
178
|
export default WebSocketTaskClient;
|
|
179
179
|
export type { UIElement, ElementSelector, ActionSequence, WsClient, WsServer, ScreenShotOptions, FindOptions, WaitOptions, UIHierarchy, WAITElement, ScreenShotResponse, ScreenInfoResponse, AppListResponse } from './protocol';
|
|
180
|
+
export { createShellXWithShellMonitoring, ShellX } from './shellx';
|
package/dist/index.js
CHANGED
|
@@ -42,7 +42,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
42
42
|
});
|
|
43
43
|
};
|
|
44
44
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
45
|
-
exports.WebSocketTaskClient = exports.DEFAULT_CONFIG = void 0;
|
|
45
|
+
exports.ShellX = exports.createShellXWithShellMonitoring = exports.WebSocketTaskClient = exports.DEFAULT_CONFIG = void 0;
|
|
46
46
|
const uuid_1 = require("uuid");
|
|
47
47
|
const utils_1 = require("./utils");
|
|
48
48
|
// 定义默认配置
|
|
@@ -688,3 +688,6 @@ class WebSocketTaskClient {
|
|
|
688
688
|
exports.WebSocketTaskClient = WebSocketTaskClient;
|
|
689
689
|
exports.default = WebSocketTaskClient;
|
|
690
690
|
// PromptFlow 模块已移至 examples/ 目录作为示例实现
|
|
691
|
+
var shellx_1 = require("./shellx");
|
|
692
|
+
Object.defineProperty(exports, "createShellXWithShellMonitoring", { enumerable: true, get: function () { return shellx_1.createShellXWithShellMonitoring; } });
|
|
693
|
+
Object.defineProperty(exports, "ShellX", { enumerable: true, get: function () { return shellx_1.ShellX; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shellx-ai",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "shellx is a powerful WebSocket-based client for controlling shell commands and UI automation on remote devices.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "git+https://github.com/10cl/shellx.git",
|