appium-mac2-driver 1.20.2 → 1.20.3
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/CHANGELOG.md +7 -0
- package/build/lib/commands/app-management.d.ts +2 -2
- package/build/lib/commands/app-management.d.ts.map +1 -1
- package/build/lib/commands/applescript.js +1 -1
- package/build/lib/commands/execute.d.ts +2 -2
- package/build/lib/commands/execute.d.ts.map +1 -1
- package/build/lib/commands/find.d.ts +1 -1
- package/build/lib/commands/find.d.ts.map +1 -1
- package/build/lib/commands/record-screen.d.ts +1 -1
- package/build/lib/commands/record-screen.d.ts.map +1 -1
- package/build/lib/commands/screenshots.d.ts +1 -1
- package/build/lib/commands/screenshots.d.ts.map +1 -1
- package/build/lib/commands/source.d.ts +1 -1
- package/build/lib/commands/source.d.ts.map +1 -1
- package/build/lib/driver.js +17 -7
- package/build/lib/driver.js.map +1 -1
- package/lib/commands/applescript.js +1 -1
- package/npm-shrinkwrap.json +90 -90
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.20.3](https://github.com/appium/appium-mac2-driver/compare/v1.20.2...v1.20.3) (2024-12-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Miscellaneous Chores
|
|
5
|
+
|
|
6
|
+
* Update deprecated method name ([#321](https://github.com/appium/appium-mac2-driver/issues/321)) ([dc577ec](https://github.com/appium/appium-mac2-driver/commit/dc577ec9d1022bf80c5e225296f117b5a490a1cb))
|
|
7
|
+
|
|
1
8
|
## [1.20.2](https://github.com/appium/appium-mac2-driver/compare/v1.20.1...v1.20.2) (2024-10-28)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @this {Mac2Driver}
|
|
7
7
|
* @param {import('../types').LaunchAppOptions} [opts={}]
|
|
8
8
|
*/
|
|
9
|
-
export function macosLaunchApp(this: import("../driver").Mac2Driver, opts?: import("../types").LaunchAppOptions
|
|
9
|
+
export function macosLaunchApp(this: import("../driver").Mac2Driver, opts?: import("../types").LaunchAppOptions): Promise<unknown>;
|
|
10
10
|
/**
|
|
11
11
|
* Activate an app with given bundle identifier. An exception is thrown if the
|
|
12
12
|
* app cannot be found or is not running.
|
|
@@ -14,7 +14,7 @@ export function macosLaunchApp(this: import("../driver").Mac2Driver, opts?: impo
|
|
|
14
14
|
* @this {Mac2Driver}
|
|
15
15
|
* @param {import('../types').ActivateAppOptions} [opts={}]
|
|
16
16
|
*/
|
|
17
|
-
export function macosActivateApp(this: import("../driver").Mac2Driver, opts?: import("../types").ActivateAppOptions
|
|
17
|
+
export function macosActivateApp(this: import("../driver").Mac2Driver, opts?: import("../types").ActivateAppOptions): Promise<unknown>;
|
|
18
18
|
/**
|
|
19
19
|
* Terminate an app with given bundle identifier. An exception is thrown if the
|
|
20
20
|
* app cannot be found.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app-management.d.ts","sourceRoot":"","sources":["../../../lib/commands/app-management.js"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH
|
|
1
|
+
{"version":3,"file":"app-management.d.ts","sourceRoot":"","sources":["../../../lib/commands/app-management.js"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,4EAFW,OAAO,UAAU,EAAE,gBAAgB,oBAU7C;AAED;;;;;;GAMG;AACH,8EAFW,OAAO,UAAU,EAAE,kBAAkB,oBAK/C;AAED;;;;;;;;GAQG;AACH,8EAJW,OAAO,UAAU,EAAE,mBAAmB,GACpC,OAAO,CAAC,OAAO,CAAC,CAQ5B;AAED;;;;;;;;;GASG;AACH,+EALW,OAAO,UAAU,EAAE,oBAAoB,GACrC,OAAO,CAAC,MAAM,CAAC,CAS3B;yBAGY,OAAO,WAAW,EAAE,UAAU"}
|
|
@@ -27,7 +27,7 @@ const APPLE_SCRIPT_FEATURE = 'apple_script';
|
|
|
27
27
|
* The actual stderr output is set to the error message value.
|
|
28
28
|
*/
|
|
29
29
|
async function macosExecAppleScript(opts = {}) {
|
|
30
|
-
this.
|
|
30
|
+
this.assertFeatureEnabled(APPLE_SCRIPT_FEATURE);
|
|
31
31
|
const { script, language, command, cwd, timeout, } = opts;
|
|
32
32
|
if (!script && !command) {
|
|
33
33
|
this.log.errorAndThrow('AppleScript script/command must not be empty');
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* @param {any[]|import('@appium/types').StringRecord} [args]
|
|
6
6
|
* @returns {Promise<any>}
|
|
7
7
|
*/
|
|
8
|
-
export function execute(this: import("../driver").Mac2Driver, script: string, args?: any[] | import("@appium/types").StringRecord
|
|
8
|
+
export function execute(this: import("../driver").Mac2Driver, script: string, args?: any[] | import("@appium/types").StringRecord): Promise<any>;
|
|
9
9
|
/**
|
|
10
10
|
*
|
|
11
11
|
* @this {Mac2Driver}
|
|
@@ -13,6 +13,6 @@ export function execute(this: import("../driver").Mac2Driver, script: string, ar
|
|
|
13
13
|
* @param {import('@appium/types').StringRecord} [opts={}]
|
|
14
14
|
* @returns {Promise<any>}
|
|
15
15
|
*/
|
|
16
|
-
export function executeMacosCommand(this: import("../driver").Mac2Driver, command: string, opts?: import("@appium/types").StringRecord
|
|
16
|
+
export function executeMacosCommand(this: import("../driver").Mac2Driver, command: string, opts?: import("@appium/types").StringRecord): Promise<any>;
|
|
17
17
|
export type Mac2Driver = import("../driver").Mac2Driver;
|
|
18
18
|
//# sourceMappingURL=execute.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execute.d.ts","sourceRoot":"","sources":["../../../lib/commands/execute.js"],"names":[],"mappings":"AAsCA;;;;;;GAMG;AACH,sEAJW,MAAM,
|
|
1
|
+
{"version":3,"file":"execute.d.ts","sourceRoot":"","sources":["../../../lib/commands/execute.js"],"names":[],"mappings":"AAsCA;;;;;;GAMG;AACH,sEAJW,MAAM,SACN,GAAG,EAAE,GAAC,OAAO,eAAe,EAAE,YAAY,GACxC,OAAO,CAAC,GAAG,CAAC,CASxB;AAED;;;;;;GAMG;AACH,mFAJW,MAAM,SACN,OAAO,eAAe,EAAE,YAAY,GAClC,OAAO,CAAC,GAAG,CAAC,CAQxB;yBAGY,OAAO,WAAW,EAAE,UAAU"}
|
|
@@ -8,6 +8,6 @@
|
|
|
8
8
|
* @param {string} [context]
|
|
9
9
|
* @returns {Promise<any>}
|
|
10
10
|
*/
|
|
11
|
-
export function findElOrEls(this: import("../driver").Mac2Driver, strategy: string, selector: string, mult: boolean, context?: string
|
|
11
|
+
export function findElOrEls(this: import("../driver").Mac2Driver, strategy: string, selector: string, mult: boolean, context?: string): Promise<any>;
|
|
12
12
|
export type Mac2Driver = import("../driver").Mac2Driver;
|
|
13
13
|
//# sourceMappingURL=find.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find.d.ts","sourceRoot":"","sources":["../../../lib/commands/find.js"],"names":[],"mappings":"AAEA;;;;;;;;;GASG;AACH,4EANW,MAAM,YACN,MAAM,QACN,OAAO,
|
|
1
|
+
{"version":3,"file":"find.d.ts","sourceRoot":"","sources":["../../../lib/commands/find.js"],"names":[],"mappings":"AAEA;;;;;;;;;GASG;AACH,4EANW,MAAM,YACN,MAAM,QACN,OAAO,YACP,MAAM,GACJ,OAAO,CAAC,GAAG,CAAC,CAgBxB;yBAGY,OAAO,WAAW,EAAE,UAAU"}
|
|
@@ -37,7 +37,7 @@ export class startRecordingScreen {
|
|
|
37
37
|
* or the file content cannot be uploaded to the remote location
|
|
38
38
|
* or screen recording is not supported on the device under test.
|
|
39
39
|
*/
|
|
40
|
-
export function stopRecordingScreen(this: import("../driver").Mac2Driver, options?: import("../types").StopRecordingOptions
|
|
40
|
+
export function stopRecordingScreen(this: import("../driver").Mac2Driver, options?: import("../types").StopRecordingOptions): Promise<string>;
|
|
41
41
|
export type Mac2Driver = import("../driver").Mac2Driver;
|
|
42
42
|
declare class ScreenRecorder {
|
|
43
43
|
constructor(videoPath: any, opts?: {});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"record-screen.d.ts","sourceRoot":"","sources":["../../../lib/commands/record-screen.js"],"names":[],"mappings":"AA4LA;;;;;;;;;;GAUG;AACH,oFAJW,OAAO,UAAU,EAAE,qBAAqB,iBAmDlD;;IA1DD;;;;;;;;;;OAUG;IACH,2DAJW,OAAO,UAAU,EAAE,qBAAqB,EAmDlD;IArBC,gCAA2B;;AAuB7B;;;;;;;;;;;GAWG;AACH,
|
|
1
|
+
{"version":3,"file":"record-screen.d.ts","sourceRoot":"","sources":["../../../lib/commands/record-screen.js"],"names":[],"mappings":"AA4LA;;;;;;;;;;GAUG;AACH,oFAJW,OAAO,UAAU,EAAE,qBAAqB,iBAmDlD;;IA1DD;;;;;;;;;;OAUG;IACH,2DAJW,OAAO,UAAU,EAAE,qBAAqB,EAmDlD;IArBC,gCAA2B;;AAuB7B;;;;;;;;;;;GAWG;AACH,oFARW,OAAO,UAAU,EAAE,oBAAoB,GACrC,OAAO,CAAC,MAAM,CAAC,CAoB3B;yBAGY,OAAO,WAAW,EAAE,UAAU;AA9N3C;IACE,uCAYC;IAXC,gBAA2B;IAC3B,4BAAoB;IACpB,UAA+D;IAC/D,eAA8B;IAC9B,oBAAwC;IACxC,oBAAwC;IACxC,aAA4C;IAC5C,kBAAoC;IACpC,gBAEsB;IAGxB,6BAEC;IAED,qBAEC;IAED,uCAaC;IAED,uBA+DC;IAED,oCA4BC;CACF;2BAtL0B,cAAc"}
|
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
* @param {import('../types').ScreenshotsOpts} [opts={}]
|
|
6
6
|
* @returns {Promise<import('../types').ScreenshotsInfo>}
|
|
7
7
|
*/
|
|
8
|
-
export function macosScreenshots(this: import("../driver").Mac2Driver, opts?: import("../types").ScreenshotsOpts
|
|
8
|
+
export function macosScreenshots(this: import("../driver").Mac2Driver, opts?: import("../types").ScreenshotsOpts): Promise<import("../types").ScreenshotsInfo>;
|
|
9
9
|
export type Mac2Driver = import("../driver").Mac2Driver;
|
|
10
10
|
//# sourceMappingURL=screenshots.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"screenshots.d.ts","sourceRoot":"","sources":["../../../lib/commands/screenshots.js"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH
|
|
1
|
+
{"version":3,"file":"screenshots.d.ts","sourceRoot":"","sources":["../../../lib/commands/screenshots.js"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,8EAHW,OAAO,UAAU,EAAE,eAAe,GAChC,OAAO,CAAC,OAAO,UAAU,EAAE,eAAe,CAAC,CAOvD;yBAGY,OAAO,WAAW,EAAE,UAAU"}
|
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
* @param {import('../types').SourceOptions} [opts={}]
|
|
6
6
|
* @returns {Promise<string>} the page source in the requested format
|
|
7
7
|
*/
|
|
8
|
-
export function macosSource(this: import("../driver").Mac2Driver, opts?: import("../types").SourceOptions
|
|
8
|
+
export function macosSource(this: import("../driver").Mac2Driver, opts?: import("../types").SourceOptions): Promise<string>;
|
|
9
9
|
export type Mac2Driver = import("../driver").Mac2Driver;
|
|
10
10
|
//# sourceMappingURL=source.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"source.d.ts","sourceRoot":"","sources":["../../../lib/commands/source.js"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,
|
|
1
|
+
{"version":3,"file":"source.d.ts","sourceRoot":"","sources":["../../../lib/commands/source.js"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,yEAHW,OAAO,UAAU,EAAE,aAAa,GAC9B,OAAO,CAAC,MAAM,CAAC,CAS3B;yBAGY,OAAO,WAAW,EAAE,UAAU"}
|
package/build/lib/driver.js
CHANGED
|
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
15
15
|
}) : function(o, v) {
|
|
16
16
|
o["default"] = v;
|
|
17
17
|
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
};
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
25
35
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26
36
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
37
|
};
|
package/build/lib/driver.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"driver.js","sourceRoot":"","sources":["../../lib/driver.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"driver.js","sourceRoot":"","sources":["../../lib/driver.js"],"names":[],"mappings":"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"}
|
|
@@ -23,7 +23,7 @@ const APPLE_SCRIPT_FEATURE = 'apple_script';
|
|
|
23
23
|
* The actual stderr output is set to the error message value.
|
|
24
24
|
*/
|
|
25
25
|
export async function macosExecAppleScript (opts = {}) {
|
|
26
|
-
this.
|
|
26
|
+
this.assertFeatureEnabled(APPLE_SCRIPT_FEATURE);
|
|
27
27
|
|
|
28
28
|
const {
|
|
29
29
|
script,
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-mac2-driver",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.3",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-mac2-driver",
|
|
9
|
-
"version": "1.20.
|
|
9
|
+
"version": "1.20.3",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@appium/strongbox": "^0.x",
|
|
@@ -95,14 +95,14 @@
|
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
97
|
"node_modules/@appium/support": {
|
|
98
|
-
"version": "5.1.
|
|
99
|
-
"resolved": "https://registry.npmjs.org/@appium/support/-/support-5.1.
|
|
100
|
-
"integrity": "sha512-
|
|
98
|
+
"version": "5.1.7",
|
|
99
|
+
"resolved": "https://registry.npmjs.org/@appium/support/-/support-5.1.7.tgz",
|
|
100
|
+
"integrity": "sha512-v3quB0myGbpmXSqwLhDVg4ZBGxmyj+E58p3gtEgqgNKUXg78IGM+utGO++novlnrBFyTYWUIplPa3eirImRj6w==",
|
|
101
101
|
"license": "Apache-2.0",
|
|
102
102
|
"dependencies": {
|
|
103
103
|
"@appium/logger": "^1.6.1",
|
|
104
104
|
"@appium/tsconfig": "^0.3.3",
|
|
105
|
-
"@appium/types": "^0.22.
|
|
105
|
+
"@appium/types": "^0.22.1",
|
|
106
106
|
"@colors/colors": "1.6.0",
|
|
107
107
|
"@types/archiver": "6.0.3",
|
|
108
108
|
"@types/base64-stream": "1.0.5",
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"@types/uuid": "10.0.0",
|
|
121
121
|
"@types/which": "3.0.4",
|
|
122
122
|
"archiver": "7.0.1",
|
|
123
|
-
"axios": "1.7.
|
|
123
|
+
"axios": "1.7.8",
|
|
124
124
|
"base64-stream": "1.0.0",
|
|
125
125
|
"bluebird": "3.7.2",
|
|
126
126
|
"bplist-creator": "0.1.1",
|
|
@@ -144,14 +144,14 @@
|
|
|
144
144
|
"resolve-from": "5.0.0",
|
|
145
145
|
"sanitize-filename": "1.6.3",
|
|
146
146
|
"semver": "7.6.3",
|
|
147
|
-
"shell-quote": "1.8.
|
|
147
|
+
"shell-quote": "1.8.2",
|
|
148
148
|
"source-map-support": "0.5.21",
|
|
149
149
|
"supports-color": "8.1.1",
|
|
150
150
|
"teen_process": "2.2.0",
|
|
151
|
-
"type-fest": "4.
|
|
152
|
-
"uuid": "
|
|
151
|
+
"type-fest": "4.29.0",
|
|
152
|
+
"uuid": "11.0.3",
|
|
153
153
|
"which": "4.0.0",
|
|
154
|
-
"yauzl": "3.
|
|
154
|
+
"yauzl": "3.2.0"
|
|
155
155
|
},
|
|
156
156
|
"engines": {
|
|
157
157
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
|
|
@@ -175,17 +175,17 @@
|
|
|
175
175
|
}
|
|
176
176
|
},
|
|
177
177
|
"node_modules/@appium/types": {
|
|
178
|
-
"version": "0.22.
|
|
179
|
-
"resolved": "https://registry.npmjs.org/@appium/types/-/types-0.22.
|
|
180
|
-
"integrity": "sha512-
|
|
178
|
+
"version": "0.22.1",
|
|
179
|
+
"resolved": "https://registry.npmjs.org/@appium/types/-/types-0.22.1.tgz",
|
|
180
|
+
"integrity": "sha512-Cd69zb00rCbSsDETCd5igvjm3a+b7HCOQmunqDy7jY91A9wq7jM5shSAFMH4lAeJm2l8kN6s+eeULj7OTlvnIQ==",
|
|
181
181
|
"license": "Apache-2.0",
|
|
182
182
|
"dependencies": {
|
|
183
183
|
"@appium/logger": "^1.6.1",
|
|
184
184
|
"@appium/schema": "^0.7.0",
|
|
185
185
|
"@appium/tsconfig": "^0.3.3",
|
|
186
186
|
"@types/express": "5.0.0",
|
|
187
|
-
"@types/ws": "8.5.
|
|
188
|
-
"type-fest": "4.
|
|
187
|
+
"@types/ws": "8.5.13",
|
|
188
|
+
"type-fest": "4.29.0"
|
|
189
189
|
},
|
|
190
190
|
"engines": {
|
|
191
191
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
|
|
@@ -193,9 +193,9 @@
|
|
|
193
193
|
}
|
|
194
194
|
},
|
|
195
195
|
"node_modules/@babel/code-frame": {
|
|
196
|
-
"version": "7.26.
|
|
197
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.
|
|
198
|
-
"integrity": "sha512-
|
|
196
|
+
"version": "7.26.2",
|
|
197
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
|
|
198
|
+
"integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
|
|
199
199
|
"license": "MIT",
|
|
200
200
|
"dependencies": {
|
|
201
201
|
"@babel/helper-validator-identifier": "^7.25.9",
|
|
@@ -279,18 +279,6 @@
|
|
|
279
279
|
"node": ">=12"
|
|
280
280
|
}
|
|
281
281
|
},
|
|
282
|
-
"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
|
|
283
|
-
"version": "6.1.0",
|
|
284
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
|
|
285
|
-
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
|
|
286
|
-
"license": "MIT",
|
|
287
|
-
"engines": {
|
|
288
|
-
"node": ">=12"
|
|
289
|
-
},
|
|
290
|
-
"funding": {
|
|
291
|
-
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
292
|
-
}
|
|
293
|
-
},
|
|
294
282
|
"node_modules/@isaacs/cliui/node_modules/ansi-styles": {
|
|
295
283
|
"version": "6.2.1",
|
|
296
284
|
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
|
|
@@ -407,9 +395,9 @@
|
|
|
407
395
|
}
|
|
408
396
|
},
|
|
409
397
|
"node_modules/@types/express-serve-static-core": {
|
|
410
|
-
"version": "5.0.
|
|
411
|
-
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.
|
|
412
|
-
"integrity": "sha512-
|
|
398
|
+
"version": "5.0.2",
|
|
399
|
+
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.2.tgz",
|
|
400
|
+
"integrity": "sha512-vluaspfvWEtE4vcSDlKRNer52DvOGrB2xv6diXy6UKyKW0lqZiWHGNApSyxOv+8DE5Z27IzVvE7hNkxg7EXIcg==",
|
|
413
401
|
"license": "MIT",
|
|
414
402
|
"dependencies": {
|
|
415
403
|
"@types/node": "*",
|
|
@@ -461,9 +449,9 @@
|
|
|
461
449
|
"license": "MIT"
|
|
462
450
|
},
|
|
463
451
|
"node_modules/@types/lodash": {
|
|
464
|
-
"version": "4.17.
|
|
465
|
-
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.
|
|
466
|
-
"integrity": "sha512-
|
|
452
|
+
"version": "4.17.13",
|
|
453
|
+
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.13.tgz",
|
|
454
|
+
"integrity": "sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==",
|
|
467
455
|
"license": "MIT"
|
|
468
456
|
},
|
|
469
457
|
"node_modules/@types/mime": {
|
|
@@ -488,9 +476,9 @@
|
|
|
488
476
|
}
|
|
489
477
|
},
|
|
490
478
|
"node_modules/@types/node": {
|
|
491
|
-
"version": "20.17.
|
|
492
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.
|
|
493
|
-
"integrity": "sha512-
|
|
479
|
+
"version": "20.17.9",
|
|
480
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.9.tgz",
|
|
481
|
+
"integrity": "sha512-0JOXkRyLanfGPE2QRCwgxhzlBAvaRdCNMcvbd7jFfpmD4eEXll7LRwy5ymJmyeZqk7Nh7eD2LeUyQ68BbndmXw==",
|
|
494
482
|
"license": "MIT",
|
|
495
483
|
"dependencies": {
|
|
496
484
|
"undici-types": "~6.19.2"
|
|
@@ -509,9 +497,9 @@
|
|
|
509
497
|
"license": "MIT"
|
|
510
498
|
},
|
|
511
499
|
"node_modules/@types/qs": {
|
|
512
|
-
"version": "6.9.
|
|
513
|
-
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.
|
|
514
|
-
"integrity": "sha512-
|
|
500
|
+
"version": "6.9.17",
|
|
501
|
+
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.17.tgz",
|
|
502
|
+
"integrity": "sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==",
|
|
515
503
|
"license": "MIT"
|
|
516
504
|
},
|
|
517
505
|
"node_modules/@types/range-parser": {
|
|
@@ -590,9 +578,9 @@
|
|
|
590
578
|
"license": "MIT"
|
|
591
579
|
},
|
|
592
580
|
"node_modules/@types/ws": {
|
|
593
|
-
"version": "8.5.
|
|
594
|
-
"resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.
|
|
595
|
-
"integrity": "sha512-
|
|
581
|
+
"version": "8.5.13",
|
|
582
|
+
"resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.13.tgz",
|
|
583
|
+
"integrity": "sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==",
|
|
596
584
|
"license": "MIT",
|
|
597
585
|
"dependencies": {
|
|
598
586
|
"@types/node": "*"
|
|
@@ -620,12 +608,15 @@
|
|
|
620
608
|
}
|
|
621
609
|
},
|
|
622
610
|
"node_modules/ansi-regex": {
|
|
623
|
-
"version": "
|
|
624
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-
|
|
625
|
-
"integrity": "sha512-
|
|
611
|
+
"version": "6.1.0",
|
|
612
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
|
|
613
|
+
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
|
|
626
614
|
"license": "MIT",
|
|
627
615
|
"engines": {
|
|
628
|
-
"node": ">=
|
|
616
|
+
"node": ">=12"
|
|
617
|
+
},
|
|
618
|
+
"funding": {
|
|
619
|
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
629
620
|
}
|
|
630
621
|
},
|
|
631
622
|
"node_modules/ansi-styles": {
|
|
@@ -742,9 +733,9 @@
|
|
|
742
733
|
"license": "MIT"
|
|
743
734
|
},
|
|
744
735
|
"node_modules/axios": {
|
|
745
|
-
"version": "1.7.
|
|
746
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.7.
|
|
747
|
-
"integrity": "sha512-
|
|
736
|
+
"version": "1.7.8",
|
|
737
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.7.8.tgz",
|
|
738
|
+
"integrity": "sha512-Uu0wb7KNqK2t5K+YQyVCLM76prD5sRFjKHbJYCP1J7JFGEQ6nN7HWn9+04LAeiJ3ji54lgS/gZCH1oxyrf1SPw==",
|
|
748
739
|
"license": "MIT",
|
|
749
740
|
"dependencies": {
|
|
750
741
|
"follow-redirects": "^1.15.6",
|
|
@@ -1068,9 +1059,9 @@
|
|
|
1068
1059
|
"license": "MIT"
|
|
1069
1060
|
},
|
|
1070
1061
|
"node_modules/cross-spawn": {
|
|
1071
|
-
"version": "7.0.
|
|
1072
|
-
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.
|
|
1073
|
-
"integrity": "sha512-
|
|
1062
|
+
"version": "7.0.6",
|
|
1063
|
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
|
|
1064
|
+
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
|
1074
1065
|
"license": "MIT",
|
|
1075
1066
|
"dependencies": {
|
|
1076
1067
|
"path-key": "^3.1.0",
|
|
@@ -2374,10 +2365,13 @@
|
|
|
2374
2365
|
}
|
|
2375
2366
|
},
|
|
2376
2367
|
"node_modules/shell-quote": {
|
|
2377
|
-
"version": "1.8.
|
|
2378
|
-
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.
|
|
2379
|
-
"integrity": "sha512-
|
|
2368
|
+
"version": "1.8.2",
|
|
2369
|
+
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz",
|
|
2370
|
+
"integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==",
|
|
2380
2371
|
"license": "MIT",
|
|
2372
|
+
"engines": {
|
|
2373
|
+
"node": ">= 0.4"
|
|
2374
|
+
},
|
|
2381
2375
|
"funding": {
|
|
2382
2376
|
"url": "https://github.com/sponsors/ljharb"
|
|
2383
2377
|
}
|
|
@@ -2483,9 +2477,9 @@
|
|
|
2483
2477
|
}
|
|
2484
2478
|
},
|
|
2485
2479
|
"node_modules/streamx": {
|
|
2486
|
-
"version": "2.20.
|
|
2487
|
-
"resolved": "https://registry.npmjs.org/streamx/-/streamx-2.20.
|
|
2488
|
-
"integrity": "sha512-
|
|
2480
|
+
"version": "2.20.2",
|
|
2481
|
+
"resolved": "https://registry.npmjs.org/streamx/-/streamx-2.20.2.tgz",
|
|
2482
|
+
"integrity": "sha512-aDGDLU+j9tJcUdPGOaHmVF1u/hhI+CsGkT02V3OKlHDV7IukOI+nTWAGkiZEKCO35rWN1wIr4tS7YFr1f4qSvA==",
|
|
2489
2483
|
"license": "MIT",
|
|
2490
2484
|
"dependencies": {
|
|
2491
2485
|
"fast-fifo": "^1.3.2",
|
|
@@ -2543,18 +2537,6 @@
|
|
|
2543
2537
|
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
2544
2538
|
"license": "MIT"
|
|
2545
2539
|
},
|
|
2546
|
-
"node_modules/string-width/node_modules/ansi-regex": {
|
|
2547
|
-
"version": "6.1.0",
|
|
2548
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
|
|
2549
|
-
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
|
|
2550
|
-
"license": "MIT",
|
|
2551
|
-
"engines": {
|
|
2552
|
-
"node": ">=12"
|
|
2553
|
-
},
|
|
2554
|
-
"funding": {
|
|
2555
|
-
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
2556
|
-
}
|
|
2557
|
-
},
|
|
2558
2540
|
"node_modules/string-width/node_modules/strip-ansi": {
|
|
2559
2541
|
"version": "7.1.0",
|
|
2560
2542
|
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
|
|
@@ -2595,6 +2577,24 @@
|
|
|
2595
2577
|
"node": ">=8"
|
|
2596
2578
|
}
|
|
2597
2579
|
},
|
|
2580
|
+
"node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
|
|
2581
|
+
"version": "5.0.1",
|
|
2582
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
2583
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
2584
|
+
"license": "MIT",
|
|
2585
|
+
"engines": {
|
|
2586
|
+
"node": ">=8"
|
|
2587
|
+
}
|
|
2588
|
+
},
|
|
2589
|
+
"node_modules/strip-ansi/node_modules/ansi-regex": {
|
|
2590
|
+
"version": "5.0.1",
|
|
2591
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
2592
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
2593
|
+
"license": "MIT",
|
|
2594
|
+
"engines": {
|
|
2595
|
+
"node": ">=8"
|
|
2596
|
+
}
|
|
2597
|
+
},
|
|
2598
2598
|
"node_modules/supports-color": {
|
|
2599
2599
|
"version": "8.1.1",
|
|
2600
2600
|
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
|
|
@@ -2671,16 +2671,16 @@
|
|
|
2671
2671
|
}
|
|
2672
2672
|
},
|
|
2673
2673
|
"node_modules/tslib": {
|
|
2674
|
-
"version": "2.8.
|
|
2675
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.
|
|
2676
|
-
"integrity": "sha512-
|
|
2674
|
+
"version": "2.8.1",
|
|
2675
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
2676
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
2677
2677
|
"extraneous": true,
|
|
2678
2678
|
"license": "0BSD"
|
|
2679
2679
|
},
|
|
2680
2680
|
"node_modules/type-fest": {
|
|
2681
|
-
"version": "4.
|
|
2682
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.
|
|
2683
|
-
"integrity": "sha512-
|
|
2681
|
+
"version": "4.29.0",
|
|
2682
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.29.0.tgz",
|
|
2683
|
+
"integrity": "sha512-RPYt6dKyemXJe7I6oNstcH24myUGSReicxcHTvCLgzm4e0n8y05dGvcGB15/SoPRBmhlMthWQ9pvKyL81ko8nQ==",
|
|
2684
2684
|
"license": "(MIT OR CC0-1.0)",
|
|
2685
2685
|
"engines": {
|
|
2686
2686
|
"node": ">=16"
|
|
@@ -2690,9 +2690,9 @@
|
|
|
2690
2690
|
}
|
|
2691
2691
|
},
|
|
2692
2692
|
"node_modules/typescript": {
|
|
2693
|
-
"version": "5.
|
|
2694
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.
|
|
2695
|
-
"integrity": "sha512-
|
|
2693
|
+
"version": "5.7.2",
|
|
2694
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz",
|
|
2695
|
+
"integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==",
|
|
2696
2696
|
"license": "Apache-2.0",
|
|
2697
2697
|
"bin": {
|
|
2698
2698
|
"tsc": "bin/tsc",
|
|
@@ -2730,16 +2730,16 @@
|
|
|
2730
2730
|
"license": "MIT"
|
|
2731
2731
|
},
|
|
2732
2732
|
"node_modules/uuid": {
|
|
2733
|
-
"version": "
|
|
2734
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-
|
|
2735
|
-
"integrity": "sha512-
|
|
2733
|
+
"version": "11.0.3",
|
|
2734
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.3.tgz",
|
|
2735
|
+
"integrity": "sha512-d0z310fCWv5dJwnX1Y/MncBAqGMKEzlBb1AOf7z9K8ALnd0utBX/msg/fA0+sbyN1ihbMsLhrBlnl1ak7Wa0rg==",
|
|
2736
2736
|
"funding": [
|
|
2737
2737
|
"https://github.com/sponsors/broofa",
|
|
2738
2738
|
"https://github.com/sponsors/ctavan"
|
|
2739
2739
|
],
|
|
2740
2740
|
"license": "MIT",
|
|
2741
2741
|
"bin": {
|
|
2742
|
-
"uuid": "dist/bin/uuid"
|
|
2742
|
+
"uuid": "dist/esm/bin/uuid"
|
|
2743
2743
|
}
|
|
2744
2744
|
},
|
|
2745
2745
|
"node_modules/validate-npm-package-license": {
|
|
@@ -2944,9 +2944,9 @@
|
|
|
2944
2944
|
}
|
|
2945
2945
|
},
|
|
2946
2946
|
"node_modules/yauzl": {
|
|
2947
|
-
"version": "3.
|
|
2948
|
-
"resolved": "https://registry.npmjs.org/yauzl/-/yauzl-3.
|
|
2949
|
-
"integrity": "sha512-
|
|
2947
|
+
"version": "3.2.0",
|
|
2948
|
+
"resolved": "https://registry.npmjs.org/yauzl/-/yauzl-3.2.0.tgz",
|
|
2949
|
+
"integrity": "sha512-Ow9nuGZE+qp1u4JIPvg+uCiUr7xGQWdff7JQSk5VGYTAZMDe2q8lxJ10ygv10qmSj031Ty/6FNJpLO4o1Sgc+w==",
|
|
2950
2950
|
"license": "MIT",
|
|
2951
2951
|
"dependencies": {
|
|
2952
2952
|
"buffer-crc32": "~0.2.3",
|