sf-intelligence 0.1.25 → 0.1.26
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/README.md +6 -6
- package/dist/index.js +3 -3
- package/package.json +18 -19
package/README.md
CHANGED
|
@@ -75,14 +75,14 @@ guessing.
|
|
|
75
75
|
## Documentation
|
|
76
76
|
|
|
77
77
|
Full guides, capabilities, the tool catalog, and configuration:
|
|
78
|
-
**https://
|
|
78
|
+
**https://sfi.auditforce.cloud**
|
|
79
79
|
|
|
80
|
-
- [Getting started](https://
|
|
81
|
-
- [Capabilities](https://
|
|
82
|
-
- [Configuration](https://
|
|
83
|
-
- [Quality & trust](https://
|
|
80
|
+
- [Getting started](https://sfi.auditforce.cloud/getting-started.html)
|
|
81
|
+
- [Capabilities](https://sfi.auditforce.cloud/capabilities.html) · [All tools](https://sfi.auditforce.cloud/tools.html)
|
|
82
|
+
- [Configuration](https://sfi.auditforce.cloud/configuration.html) · [FAQ](https://sfi.auditforce.cloud/faq.html)
|
|
83
|
+
- [Quality & trust](https://sfi.auditforce.cloud/trust.html)
|
|
84
84
|
|
|
85
85
|
## License
|
|
86
86
|
|
|
87
87
|
MIT + Commons Clause — see the `LICENSE` file shipped in this package, or
|
|
88
|
-
<https://
|
|
88
|
+
<https://sfi.auditforce.cloud/licensing.html>.
|
package/dist/index.js
CHANGED
|
@@ -74687,7 +74687,7 @@ var init_package_version = __esm({
|
|
|
74687
74687
|
"use strict";
|
|
74688
74688
|
readCliPackageVersion = () => {
|
|
74689
74689
|
if (true)
|
|
74690
|
-
return "0.1.
|
|
74690
|
+
return "0.1.26";
|
|
74691
74691
|
for (const rel of ["../package.json", "../../package.json"]) {
|
|
74692
74692
|
try {
|
|
74693
74693
|
const raw = readFileSync3(fileURLToPath(new URL(rel, import.meta.url)), "utf8");
|
|
@@ -144611,7 +144611,7 @@ var makeShutdownOnce = (ctx) => {
|
|
|
144611
144611
|
|
|
144612
144612
|
// dist/src/commands/demo.js
|
|
144613
144613
|
init_refresh();
|
|
144614
|
-
var buildVersion = () => true ? "0.1.
|
|
144614
|
+
var buildVersion = () => true ? "0.1.26" : "dev";
|
|
144615
144615
|
var SHUTDOWN_SIGNALS2 = ["SIGINT", "SIGTERM"];
|
|
144616
144616
|
var resolveDemoSource = () => {
|
|
144617
144617
|
let dir = dirname21(fileURLToPath2(import.meta.url));
|
|
@@ -145596,7 +145596,7 @@ init_vault_git();
|
|
|
145596
145596
|
init_watch();
|
|
145597
145597
|
var readVersion = () => {
|
|
145598
145598
|
if (true)
|
|
145599
|
-
return "0.1.
|
|
145599
|
+
return "0.1.26";
|
|
145600
145600
|
const pkgUrl = new URL("../../package.json", import.meta.url);
|
|
145601
145601
|
const raw = readFileSync6(fileURLToPath3(pkgUrl), "utf8");
|
|
145602
145602
|
const parsed = JSON.parse(raw);
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sf-intelligence",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.26",
|
|
4
4
|
"description": "Offline-first, MCP-first knowledge base for a Salesforce org. Ask about your org's metadata, dependencies, permissions, and automation — grounded in real retrieved metadata. Ships the sfi CLI and an MCP server.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
|
-
"homepage": "https://
|
|
6
|
+
"homepage": "https://sfi.auditforce.cloud",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/PranavNagrecha/Salesforce-Intelligence.git"
|
|
@@ -56,11 +56,6 @@
|
|
|
56
56
|
"server.json",
|
|
57
57
|
"demo-source"
|
|
58
58
|
],
|
|
59
|
-
"scripts": {
|
|
60
|
-
"build": "tsc --build && node build.mjs",
|
|
61
|
-
"test": "vitest run",
|
|
62
|
-
"prepublishOnly": "node ../../scripts/prepublish-check.mjs"
|
|
63
|
-
},
|
|
64
59
|
"dependencies": {
|
|
65
60
|
"@duckdb/node-api": "1.5.3-r.2",
|
|
66
61
|
"@inquirer/prompts": "^7.0.0",
|
|
@@ -70,17 +65,21 @@
|
|
|
70
65
|
"zod": "^3.23.0"
|
|
71
66
|
},
|
|
72
67
|
"devDependencies": {
|
|
73
|
-
"@sf-intelligence/contracts": "workspace:*",
|
|
74
|
-
"@sf-intelligence/core": "workspace:*",
|
|
75
|
-
"@sf-intelligence/extractors": "workspace:*",
|
|
76
|
-
"@sf-intelligence/graph": "workspace:*",
|
|
77
|
-
"@sf-intelligence/mcp": "workspace:*",
|
|
78
|
-
"@sf-intelligence/parsers": "workspace:*",
|
|
79
|
-
"@sf-intelligence/patterns": "workspace:*",
|
|
80
|
-
"@sf-intelligence/renderers": "workspace:*",
|
|
81
|
-
"@sf-intelligence/tooling-api": "workspace:*",
|
|
82
|
-
"@sf-intelligence/vault": "workspace:*",
|
|
83
68
|
"esbuild": "^0.28.0",
|
|
84
|
-
"vitest": "^1.6.0"
|
|
69
|
+
"vitest": "^1.6.0",
|
|
70
|
+
"@sf-intelligence/contracts": "0.1.0",
|
|
71
|
+
"@sf-intelligence/mcp": "0.1.0",
|
|
72
|
+
"@sf-intelligence/extractors": "0.1.0",
|
|
73
|
+
"@sf-intelligence/tooling-api": "0.1.0",
|
|
74
|
+
"@sf-intelligence/parsers": "0.1.0",
|
|
75
|
+
"@sf-intelligence/vault": "0.1.0",
|
|
76
|
+
"@sf-intelligence/patterns": "0.1.0",
|
|
77
|
+
"@sf-intelligence/renderers": "0.1.0",
|
|
78
|
+
"@sf-intelligence/core": "0.1.0",
|
|
79
|
+
"@sf-intelligence/graph": "0.1.0"
|
|
80
|
+
},
|
|
81
|
+
"scripts": {
|
|
82
|
+
"build": "tsc --build && node build.mjs",
|
|
83
|
+
"test": "vitest run"
|
|
85
84
|
}
|
|
86
|
-
}
|
|
85
|
+
}
|