deeke-script-app 1.6.6 → 1.6.8

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.
Files changed (98) hide show
  1. package/@deekeScript/@type/Class/Global.d.ts +1 -1
  2. package/@deekeScript/@type/Class/Rect.d.ts +16 -16
  3. package/@deekeScript/@type/Class/UiSelector.d.ts +201 -201
  4. package/@deekeScript/@type/Class/WebSocket.d.ts +49 -49
  5. package/@deekeScript/@type/interface/Access.d.ts +71 -71
  6. package/@deekeScript/@type/interface/App.d.ts +16 -8
  7. package/@deekeScript/@type/interface/Device.d.ts +88 -88
  8. package/@deekeScript/@type/interface/Encrypt.d.ts +58 -58
  9. package/@deekeScript/@type/interface/Engines.d.ts +39 -39
  10. package/@deekeScript/@type/interface/Files.d.ts +283 -0
  11. package/@deekeScript/@type/interface/FloatDialogs.d.ts +41 -35
  12. package/@deekeScript/@type/interface/ForegroundServiceBridge.d.ts +31 -31
  13. package/@deekeScript/@type/interface/Hid.d.ts +342 -342
  14. package/@deekeScript/@type/interface/Http.d.ts +41 -41
  15. package/@deekeScript/@type/interface/Images.d.ts +71 -71
  16. package/@deekeScript/@type/interface/Java.d.ts +7 -7
  17. package/@deekeScript/@type/interface/KeyBoards.d.ts +27 -27
  18. package/@deekeScript/@type/interface/Log.d.ts +16 -16
  19. package/@deekeScript/@type/interface/NotificationBridge.d.ts +28 -28
  20. package/@deekeScript/@type/interface/SocketIoClient.d.ts +76 -76
  21. package/@deekeScript/@type/interface/Storage.d.ts +11 -2
  22. package/@deekeScript/@type/interface/System.d.ts +114 -114
  23. package/@deekeScript/@type/interface/UiObject.d.ts +197 -197
  24. package/README.md +67 -67
  25. package/deekeScript.json +669 -669
  26. package/deekeScriptZipBuild +48 -48
  27. package/gulpfile +17 -17
  28. package/images/test/statistics.png +0 -0
  29. package/init +32 -32
  30. package/jsconfig.json +11 -11
  31. package/package.json +43 -42
  32. package/script/statistics/statistics.js +120 -120
  33. package/script/task/douyin_zan.js +37 -37
  34. package/script/task/dy.js +6 -6
  35. package/script/task/dyApp.js +6 -6
  36. package/script/task/tool.js +9 -9
  37. package/script/task.html +4 -4
  38. package/src/statistics/statistics.js +120 -120
  39. package/src/task/douyin_zan.js +89 -89
  40. package/src/task/dy.js +14 -14
  41. package/src/task/dyApp.js +7 -7
  42. package/src/task/tool.js +19 -19
  43. package/src/task.html +4 -4
  44. package/uglify-config.json +15 -15
  45. package/script/9/common/util.js +0 -20
  46. package/script/9/dy/common/common.js +0 -10
  47. package/script/9/dy/common/version.js +0 -4
  48. package/script/9/dy/common/video.js +0 -8
  49. package/script/9/dy/task/taskOne.js +0 -7
  50. package/script/9/dy/version/310701.js +0 -7
  51. package/script/test/2.js +0 -1
  52. package/script/test/5.js +0 -3
  53. package/script/test/8.js +0 -17
  54. package/src/12/main.js +0 -40
  55. package/src/12/task.js +0 -10
  56. package/src/9/common/util.js +0 -28
  57. package/src/9/dy/common/common.js +0 -13
  58. package/src/9/dy/common/version.js +0 -12
  59. package/src/9/dy/common/video.js +0 -14
  60. package/src/9/dy/task/taskOne.js +0 -13
  61. package/src/9/dy/version/310701.js +0 -7
  62. package/src/test/2.js +0 -2
  63. package/src/test/5.js +0 -4
  64. package/src/test/8.js +0 -36
  65. package/test/2.0/engines/enginesSimple.js +0 -72
  66. package/test/2.js +0 -6
  67. package/test/Access.js +0 -10
  68. package/test/SocketIOClient.js +0 -39
  69. package/test/SocketIOServer.js +0 -49
  70. package/test/Storage.js +0 -3
  71. package/test/augment/test.js +0 -0
  72. package/test/console.js +0 -5
  73. package/test/deekeScriptJson.js +0 -5
  74. package/test/device.js +0 -11
  75. package/test/encrypt.js +0 -4
  76. package/test/engines/1.js +0 -4
  77. package/test/engines/eng/1.js +0 -8
  78. package/test/engines/engines.js +0 -6
  79. package/test/engines/relative.dir.js +0 -8
  80. package/test/engines/relative.js +0 -1
  81. package/test/engines/test.js +0 -6
  82. package/test/engines.js +0 -5
  83. package/test/extension.js +0 -27
  84. package/test/files.js +0 -7
  85. package/test/foreground.js +0 -23
  86. package/test/http.js +0 -19
  87. package/test/images/findColor.js +0 -15
  88. package/test/java.js +0 -28
  89. package/test/log.js +0 -10
  90. package/test/module/module.js +0 -5
  91. package/test/notification.js +0 -26
  92. package/test/package.js +0 -3
  93. package/test/permise.js +0 -29
  94. package/test/thread.js +0 -11
  95. package/test/timer.close.js +0 -27
  96. package/test/timer.js +0 -25
  97. package/test/timer.stop.js +0 -28
  98. package/test/webSocket.js +0 -22
package/README.md CHANGED
@@ -1,67 +1,67 @@
1
- # DeekeScript 应用开发模板
2
-
3
- ## 📖 项目简介
4
-
5
- **DeekeScript** 是一个专为Android自动化脚本开发设计的强大框架,核心能力是为开发者快速打造一站式商业化自动化应用
6
-
7
- 本项目是DeekeScript的初始库demo,为您提供了一个完整的开发模板,帮助您快速上手DeekeScript开发。
8
-
9
- ## 🌟 主要特性
10
-
11
- - **模拟点击操作** - 精确模拟用户点击、滑动等操作
12
- - **图像识别** - 基于图像匹配的智能识别功能
13
- - **多线程支持** - 支持并发任务处理
14
- - **丰富的API** - 提供完整的设备控制、网络请求、存储等API
15
- - **TypeScript支持** - 完整的类型定义,提供智能代码提示
16
- - **模块化设计** - 支持模块化开发,代码结构清晰
17
-
18
- ## 🔗 相关链接
19
-
20
- ### 官方资源
21
- - **官方网站**: [https://deeke.cn](https://deeke.cn)
22
- - **官方文档**: [https://doc.deeke.cn](https://doc.deeke.cn)
23
-
24
- - **完整应用示例**: [https://github.com/DeekeScript/ad-deeke](https://github.com/DeekeScript/ad-deeke)
25
-
26
- ## 🚀 快速开始
27
-
28
- ### 环境准备
29
-
30
- 在开始使用之前,请确保您已经:
31
-
32
- 1. 阅读了官方文档:[https://doc.deeke.cn](https://doc.deeke.cn)
33
- 2. 安装了相关软件和依赖
34
- 3. 配置了Android开发环境
35
-
36
- ### 安装方式
37
-
38
- #### 方式一:npm安装(推荐)
39
-
40
- ```bash
41
- npm i deeke-script-app
42
- ```
43
-
44
- #### 方式二:Git克隆
45
-
46
- ```bash
47
- git clone https://github.com/DeekeScript/deekeScript.git ./
48
- npm install
49
- ```
50
-
51
- ### 项目结构
52
-
53
- ```
54
- Typescript/
55
- ├── @deekeScript/ # TypeScript类型定义文件(请勿删除)
56
- │ └── @type/
57
- ├── src/ # 源代码目录
58
- │ ├── index.js # 主入口文件
59
- │ ├── task/ # 任务相关代码
60
- │ └── statistics/ # 统计相关代码
61
- ├── script/ # 编译后的脚本文件
62
- ├── test/ # 测试文件
63
- └── images/ # 图片资源
64
- ```
65
-
66
-
67
- **开始您的DeekeScript开发之旅吧!** 🎉
1
+ # DeekeScript 应用开发模板
2
+
3
+ ## 📖 项目简介
4
+
5
+ **DeekeScript** 是一个专为Android自动化脚本开发设计的强大框架,核心能力是为开发者快速打造一站式商业化自动化应用
6
+
7
+ 本项目是DeekeScript的初始库demo,为您提供了一个完整的开发模板,帮助您快速上手DeekeScript开发。
8
+
9
+ ## 🌟 主要特性
10
+
11
+ - **模拟点击操作** - 精确模拟用户点击、滑动等操作
12
+ - **图像识别** - 基于图像匹配的智能识别功能
13
+ - **多线程支持** - 支持并发任务处理
14
+ - **丰富的API** - 提供完整的设备控制、网络请求、存储等API
15
+ - **TypeScript支持** - 完整的类型定义,提供智能代码提示
16
+ - **模块化设计** - 支持模块化开发,代码结构清晰
17
+
18
+ ## 🔗 相关链接
19
+
20
+ ### 官方资源
21
+ - **官方网站**: [https://deeke.cn](https://deeke.cn)
22
+ - **官方文档**: [https://doc.deeke.cn](https://doc.deeke.cn)
23
+
24
+ - **完整应用示例**: [https://github.com/DeekeScript/ad-deeke](https://github.com/DeekeScript/ad-deeke)
25
+
26
+ ## 🚀 快速开始
27
+
28
+ ### 环境准备
29
+
30
+ 在开始使用之前,请确保您已经:
31
+
32
+ 1. 阅读了官方文档:[https://doc.deeke.cn](https://doc.deeke.cn)
33
+ 2. 安装了相关软件和依赖
34
+ 3. 配置了Android开发环境
35
+
36
+ ### 安装方式
37
+
38
+ #### 方式一:npm安装(推荐)
39
+
40
+ ```bash
41
+ npm i deeke-script-app
42
+ ```
43
+
44
+ #### 方式二:Git克隆
45
+
46
+ ```bash
47
+ git clone https://github.com/DeekeScript/deekeScript.git ./
48
+ npm install
49
+ ```
50
+
51
+ ### 项目结构
52
+
53
+ ```
54
+ Typescript/
55
+ ├── @deekeScript/ # TypeScript类型定义文件(请勿删除)
56
+ │ └── @type/
57
+ ├── src/ # 源代码目录
58
+ │ ├── index.js # 主入口文件
59
+ │ ├── task/ # 任务相关代码
60
+ │ └── statistics/ # 统计相关代码
61
+ ├── script/ # 编译后的脚本文件
62
+ ├── test/ # 测试文件
63
+ └── images/ # 图片资源
64
+ ```
65
+
66
+
67
+ **开始您的DeekeScript开发之旅吧!** 🎉