@crowdstrike/foundry-js 0.17.1 → 0.18.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/dist/abstraction/cloud-function.d.ts +5 -5
- package/dist/abstraction/collection.d.ts +5 -5
- package/dist/abstraction/logscale.d.ts +3 -3
- package/dist/apis/devices/index.d.ts +36 -2
- package/dist/apis/types-response-for.d.ts +5 -5
- package/dist/bridge.d.ts +2 -2
- package/dist/index.js +126 -57
- package/dist/index.js.map +1 -1
- package/dist/lib/ui.d.ts +1 -1
- package/package.json +18 -18
package/dist/lib/ui.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
+
import { type ExtensionIdentifier, type FileUploadType, type LocalData, type OpenModalOptions, type PayloadForFileUploadType, type ResponseForFileUploadType } from '../types';
|
1
2
|
import type { Bridge } from '../bridge';
|
2
|
-
import type { ExtensionIdentifier, FileUploadType, LocalData, OpenModalOptions, PayloadForFileUploadType, ResponseForFileUploadType } from '../types';
|
3
3
|
/**
|
4
4
|
* Invoke UI features within the main Falcon Console.
|
5
5
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@crowdstrike/foundry-js",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.18.0",
|
4
4
|
"description": "foundry-js is the JavaScript SDK for authoring UI Extensions for CrowdStrike's Foundry platform.",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -47,36 +47,36 @@
|
|
47
47
|
"dependencies": {
|
48
48
|
"emittery": "^1.0.3",
|
49
49
|
"typescript-memoize": "^1.1.1",
|
50
|
-
"uuid": "^
|
50
|
+
"uuid": "^11.1.0"
|
51
51
|
},
|
52
52
|
"devDependencies": {
|
53
53
|
"@changesets/changelog-github": "^0.5.0",
|
54
54
|
"@changesets/cli": "^2.27.3",
|
55
|
-
"@rollup/plugin-node-resolve": "
|
56
|
-
"@rollup/plugin-replace": "^
|
57
|
-
"@rollup/plugin-typescript": "
|
58
|
-
"@types/uuid": "
|
55
|
+
"@rollup/plugin-node-resolve": "16.0.1",
|
56
|
+
"@rollup/plugin-replace": "^6.0.2",
|
57
|
+
"@rollup/plugin-typescript": "12.1.3",
|
58
|
+
"@types/uuid": "10.0.0",
|
59
59
|
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
60
|
-
"@typescript-eslint/parser": "^
|
61
|
-
"concurrently": "^
|
60
|
+
"@typescript-eslint/parser": "^8.34.0",
|
61
|
+
"concurrently": "^9.1.2",
|
62
62
|
"eslint": "^8.40.0",
|
63
|
-
"eslint-config-prettier": "^
|
63
|
+
"eslint-config-prettier": "^10.1.5",
|
64
64
|
"eslint-plugin-import": "^2.28.1",
|
65
65
|
"eslint-plugin-prettier": "^5.0.0",
|
66
66
|
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
|
67
|
-
"
|
68
|
-
"
|
67
|
+
"happy-dom": "^18.0.1",
|
68
|
+
"jsdom": "^26.1.0",
|
69
69
|
"p-event": "^6.0.1",
|
70
70
|
"prettier": "^3.2.5",
|
71
|
-
"rollup": "4.
|
72
|
-
"tslib": "2.
|
73
|
-
"typedoc": "^0.
|
74
|
-
"typedoc-plugin-missing-exports": "^
|
71
|
+
"rollup": "4.44.0",
|
72
|
+
"tslib": "2.8.1",
|
73
|
+
"typedoc": "^0.28.5",
|
74
|
+
"typedoc-plugin-missing-exports": "^4.0.0",
|
75
75
|
"typedoc-plugin-rename-defaults": "^0.7.0",
|
76
|
-
"typescript": "5.
|
77
|
-
"vitest": "^1.
|
76
|
+
"typescript": "5.8.3",
|
77
|
+
"vitest": "^3.1.4"
|
78
78
|
},
|
79
79
|
"engines": {
|
80
|
-
"node": ">=
|
80
|
+
"node": ">=22"
|
81
81
|
}
|
82
82
|
}
|