@signaliz/sdk 1.0.17 → 1.0.19
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 +7 -2
- package/dist/{chunk-ZKE4L57J.mjs → chunk-PBJFIO72.mjs} +1535 -62
- package/dist/cli.js +1820 -65
- package/dist/cli.mjs +276 -2
- package/dist/index.d.mts +621 -4
- package/dist/index.d.ts +621 -4
- package/dist/index.js +1537 -62
- package/dist/index.mjs +5 -1
- package/dist/mcp-config.js +1533 -62
- package/dist/mcp-config.mjs +1 -1
- package/package.json +2 -2
package/dist/mcp-config.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signaliz/sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.19",
|
|
4
4
|
"description": "Signaliz SDK — GTM Kernel, Nango routes, MCP, and enrichment for AI agents",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"scripts": {
|
|
14
14
|
"generate-types": "tsx scripts/generate-types.ts",
|
|
15
15
|
"build": "npm run generate-types && tsup src/index.ts src/cli.ts src/mcp-config.ts --format cjs,esm --dts --clean",
|
|
16
|
-
"test": "tsx tests/campaigns.test.ts && tsx tests/campaign-builder-agent.test.ts && tsx tests/gtm-kernel.test.ts && tsx tests/campaign-envelope.test.ts && tsx tests/client-mcp-unwrapping.test.ts && tsx tests/gtm-workflows.test.ts && tsx tests/webhook-delivery.test.ts && tsx tests/ops.test.ts && tsx tests/ops-contract-compat.test.ts && tsx tests/execution-reference.test.ts && tsx tests/cli.test.ts",
|
|
16
|
+
"test": "tsx tests/campaigns.test.ts && tsx tests/campaign-builder-agent.test.ts && tsx tests/gtm-kernel.test.ts && tsx tests/campaign-envelope.test.ts && tsx tests/client-mcp-unwrapping.test.ts && tsx tests/public-ground-truth.test.ts && tsx tests/signals.test.ts && tsx tests/gtm-workflows.test.ts && tsx tests/webhook-delivery.test.ts && tsx tests/ops.test.ts && tsx tests/ops-contract-compat.test.ts && tsx tests/execution-reference.test.ts && tsx tests/cli.test.ts",
|
|
17
17
|
"prepublishOnly": "npm run build"
|
|
18
18
|
},
|
|
19
19
|
"keywords": ["signaliz", "mcp", "ai-agents", "gtm", "gtm-kernel", "nango", "email-finder", "email-verification", "enrichment"],
|