@midscene/android-mcp 1.9.6-beta-20260615083255.0 → 1.9.6
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/20.js +2753 -0
- package/dist/225.js +63 -0
- package/dist/293.js +1644 -0
- package/dist/823.js +65 -0
- package/dist/964.js +595 -0
- package/dist/index.js +85 -5093
- package/package.json +4 -4
- package/dist/680.js +0 -45
package/dist/225.js
CHANGED
|
@@ -145,6 +145,69 @@ class AdbServerNodeTcpConnector {
|
|
|
145
145
|
}
|
|
146
146
|
//# sourceMappingURL=index.js.map
|
|
147
147
|
|
|
148
|
+
},
|
|
149
|
+
"../../node_modules/.pnpm/@yume-chan+stream-extra@2.1.0/node_modules/@yume-chan/stream-extra/esm/maybe-consumable/utils.js"(__unused_rspack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
150
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
151
|
+
W: () => (tryConsume)
|
|
152
|
+
});
|
|
153
|
+
/* import */ var _consumable_js__rspack_import_0 = __webpack_require__("../../node_modules/.pnpm/@yume-chan+stream-extra@2.1.0/node_modules/@yume-chan/stream-extra/esm/consumable.js");
|
|
154
|
+
|
|
155
|
+
function getValue(value) {
|
|
156
|
+
return value instanceof Consumable ? value.value : value;
|
|
157
|
+
}
|
|
158
|
+
function tryConsume(value, callback) {
|
|
159
|
+
if (value instanceof _consumable_js__rspack_import_0/* .Consumable */.G) {
|
|
160
|
+
return value.tryConsume(callback);
|
|
161
|
+
}
|
|
162
|
+
else {
|
|
163
|
+
return callback(value);
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
//# sourceMappingURL=utils.js.map
|
|
167
|
+
|
|
168
|
+
},
|
|
169
|
+
"../../node_modules/.pnpm/@yume-chan+stream-extra@2.1.0/node_modules/@yume-chan/stream-extra/esm/maybe-consumable/writable.js"(__unused_rspack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
170
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
171
|
+
g: () => (MaybeConsumableWritableStream)
|
|
172
|
+
});
|
|
173
|
+
/* import */ var _consumable_js__rspack_import_1 = __webpack_require__("../../node_modules/.pnpm/@yume-chan+stream-extra@2.1.0/node_modules/@yume-chan/stream-extra/esm/consumable.js");
|
|
174
|
+
/* import */ var _stream_js__rspack_import_0 = __webpack_require__("../../node_modules/.pnpm/@yume-chan+stream-extra@2.1.0/node_modules/@yume-chan/stream-extra/esm/stream.js");
|
|
175
|
+
/* import */ var _utils_js__rspack_import_2 = __webpack_require__("../../node_modules/.pnpm/@yume-chan+stream-extra@2.1.0/node_modules/@yume-chan/stream-extra/esm/maybe-consumable/utils.js");
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
class MaybeConsumableWritableStream extends _stream_js__rspack_import_0/* .WritableStream */.ho {
|
|
180
|
+
constructor(sink, strategy) {
|
|
181
|
+
let wrappedStrategy;
|
|
182
|
+
if (strategy) {
|
|
183
|
+
wrappedStrategy = {};
|
|
184
|
+
if ("highWaterMark" in strategy) {
|
|
185
|
+
wrappedStrategy.highWaterMark = strategy.highWaterMark;
|
|
186
|
+
}
|
|
187
|
+
if ("size" in strategy) {
|
|
188
|
+
wrappedStrategy.size = (chunk) => {
|
|
189
|
+
return strategy.size(chunk instanceof _consumable_js__rspack_import_1/* .Consumable */.G ? chunk.value : chunk);
|
|
190
|
+
};
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
super({
|
|
194
|
+
start(controller) {
|
|
195
|
+
return sink.start?.(controller);
|
|
196
|
+
},
|
|
197
|
+
write(chunk, controller) {
|
|
198
|
+
return (0,_utils_js__rspack_import_2/* .tryConsume */.W)(chunk, (chunk) => sink.write?.(chunk, controller));
|
|
199
|
+
},
|
|
200
|
+
abort(reason) {
|
|
201
|
+
return sink.abort?.(reason);
|
|
202
|
+
},
|
|
203
|
+
close() {
|
|
204
|
+
return sink.close?.();
|
|
205
|
+
},
|
|
206
|
+
}, wrappedStrategy);
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
//# sourceMappingURL=writable.js.map
|
|
210
|
+
|
|
148
211
|
},
|
|
149
212
|
|
|
150
213
|
};
|