@jupiterone/cli 11.2.0 → 11.4.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupiterone/cli",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.4.0",
|
|
4
4
|
"description": "The JupiterOne cli",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"author": "JupiterOne <dev@jupiterone.io>",
|
|
9
9
|
"license": "MPL-2.0",
|
|
10
10
|
"engines": {
|
|
11
|
-
"node": ">=18.0.0 <
|
|
11
|
+
"node": ">=18.0.0 <21.x"
|
|
12
12
|
},
|
|
13
13
|
"bin": {
|
|
14
14
|
"j1": "./bin/j1"
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"test": "jest"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@jupiterone/integration-sdk-core": "^11.
|
|
28
|
-
"@jupiterone/integration-sdk-runtime": "^11.
|
|
27
|
+
"@jupiterone/integration-sdk-core": "^11.4.0",
|
|
28
|
+
"@jupiterone/integration-sdk-runtime": "^11.4.0",
|
|
29
29
|
"@lifeomic/attempt": "^3.0.3",
|
|
30
30
|
"commander": "^5.0.0",
|
|
31
31
|
"globby": "^11.0.1",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"csvtojson": "^2.0.10",
|
|
43
43
|
"memfs": "^3.2.0"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "9b9e18d554b131ce0a71189d8ab47bc81e3ee633"
|
|
46
46
|
}
|
|
@@ -203,7 +203,7 @@ test('should log error when export fails', async () => {
|
|
|
203
203
|
storageDirectory: TEST_DIRECTORY,
|
|
204
204
|
apiKey: TEST_API_KEY,
|
|
205
205
|
}),
|
|
206
|
-
).rejects.toThrow(
|
|
206
|
+
).rejects.toThrow();
|
|
207
207
|
|
|
208
208
|
expect(log.error).toHaveBeenCalledWith('Failed to export JSON assets to CSV');
|
|
209
209
|
});
|