@maaxyz/maa-node 5.2.0 → 5.2.2
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/pipeline.d.ts +11 -2
- package/package.json +7 -7
package/dist/pipeline.d.ts
CHANGED
|
@@ -293,7 +293,15 @@ declare global {
|
|
|
293
293
|
args?: string[]
|
|
294
294
|
detach?: boolean
|
|
295
295
|
},
|
|
296
|
-
|
|
296
|
+
Mode
|
|
297
|
+
>
|
|
298
|
+
|
|
299
|
+
type ActionShell<Mode> = RequiredIfStrict<
|
|
300
|
+
{
|
|
301
|
+
cmd?: string
|
|
302
|
+
timeout?: number
|
|
303
|
+
},
|
|
304
|
+
'cmd',
|
|
297
305
|
Mode
|
|
298
306
|
>
|
|
299
307
|
|
|
@@ -348,9 +356,10 @@ declare global {
|
|
|
348
356
|
| MixAct<'InputText', ActionInputText<Mode>, Mode>
|
|
349
357
|
| MixAct<'StartApp', ActionStartApp<Mode>, Mode>
|
|
350
358
|
| MixAct<'StopApp', ActionStopApp<Mode>, Mode>
|
|
351
|
-
| MixAct<'StopTask', ActionStopTask, Mode>
|
|
352
359
|
| MixAct<'Scroll', ActionScroll, Mode>
|
|
360
|
+
| MixAct<'StopTask', ActionStopTask, Mode>
|
|
353
361
|
| MixAct<'Command', ActionCommand<Mode>, Mode>
|
|
362
|
+
| MixAct<'Shell', ActionShell<Mode>, Mode>
|
|
354
363
|
| MixAct<'Custom', ActionCustom<Mode>, Mode>
|
|
355
364
|
|
|
356
365
|
type NodeAttr = {
|
package/package.json
CHANGED
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"prettier": "^3.5.2",
|
|
29
29
|
"typescript": "^5.8.2"
|
|
30
30
|
},
|
|
31
|
-
"version": "5.2.
|
|
31
|
+
"version": "5.2.2",
|
|
32
32
|
"optionalDependencies": {
|
|
33
|
-
"@maaxyz/maa-node-darwin-arm64": "5.2.
|
|
34
|
-
"@maaxyz/maa-node-darwin-x64": "5.2.
|
|
35
|
-
"@maaxyz/maa-node-linux-arm64": "5.2.
|
|
36
|
-
"@maaxyz/maa-node-linux-x64": "5.2.
|
|
37
|
-
"@maaxyz/maa-node-win32-arm64": "5.2.
|
|
38
|
-
"@maaxyz/maa-node-win32-x64": "5.2.
|
|
33
|
+
"@maaxyz/maa-node-darwin-arm64": "5.2.2",
|
|
34
|
+
"@maaxyz/maa-node-darwin-x64": "5.2.2",
|
|
35
|
+
"@maaxyz/maa-node-linux-arm64": "5.2.2",
|
|
36
|
+
"@maaxyz/maa-node-linux-x64": "5.2.2",
|
|
37
|
+
"@maaxyz/maa-node-win32-arm64": "5.2.2",
|
|
38
|
+
"@maaxyz/maa-node-win32-x64": "5.2.2"
|
|
39
39
|
}
|
|
40
40
|
}
|