@squiz/component-cli-lib 1.72.11 → 1.72.13
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/lib/index.d.ts +1 -1
- package/lib/index.js +173 -200
- package/lib/index.js.map +4 -4
- package/lib/upload-job.d.ts +9 -1
- package/package.json +7 -7
package/lib/upload-job.d.ts
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
import { AxiosInstance } from 'axios';
|
|
2
1
|
import { Logger } from '@squiz/dx-logger-lib';
|
|
2
|
+
import { AxiosInstance } from 'axios';
|
|
3
3
|
export declare const logger: Logger;
|
|
4
|
+
/**
|
|
5
|
+
* Upload a job folder to the job runner service
|
|
6
|
+
* @deprecated This function has been moved to @squiz/job-runner-lib. Please use JobUploadService.uploadJobFolder instead.
|
|
7
|
+
* This function will be removed in a future version.
|
|
8
|
+
* @param apiClient - Axios client for API calls
|
|
9
|
+
* @param folderPath - Path to the job folder to upload
|
|
10
|
+
* @param baseTempDir - Base temporary directory for upload processing
|
|
11
|
+
*/
|
|
4
12
|
export declare function uploadJobFolder(apiClient: AxiosInstance, folderPath: string, baseTempDir?: string): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squiz/component-cli-lib",
|
|
3
|
-
"version": "1.72.
|
|
3
|
+
"version": "1.72.13",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"private": false,
|
|
@@ -31,21 +31,21 @@
|
|
|
31
31
|
"@types/jest": "28.1.8",
|
|
32
32
|
"@types/node": "20.12.12",
|
|
33
33
|
"@types/supertest": "6.0.2",
|
|
34
|
-
"dotenv": "16.
|
|
34
|
+
"dotenv": "16.6.1",
|
|
35
35
|
"fs-extra": "^11.2.0",
|
|
36
36
|
"jest": "29.4.1",
|
|
37
37
|
"supertest": "^6.3.4",
|
|
38
38
|
"ts-jest": "29.0.5",
|
|
39
|
-
"ts-node": "10.9.
|
|
39
|
+
"ts-node": "10.9.2",
|
|
40
40
|
"typescript": "^5.7.2"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@squiz/component-logger-lib": "^1.71.3",
|
|
44
|
-
"@squiz/edge-dev-render-runtime-lib": "2.6.
|
|
45
|
-
"@squiz/job-runner-lib": "1.66.2",
|
|
46
|
-
"@squiz/render-runtime-lib": "1.
|
|
44
|
+
"@squiz/edge-dev-render-runtime-lib": "2.6.2",
|
|
45
|
+
"@squiz/job-runner-lib": "^1.66.2",
|
|
46
|
+
"@squiz/render-runtime-lib": "1.82.0",
|
|
47
47
|
"@squiz/runtime-sandbox-node": "1.64.3",
|
|
48
|
-
"axios": "1.
|
|
48
|
+
"axios": "1.12.0",
|
|
49
49
|
"cli-color": "^2.0.2",
|
|
50
50
|
"open": "^8.4.2"
|
|
51
51
|
}
|