@venlyfinance/settlement-mcp 0.7.1 → 0.8.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/CHANGELOG.md +14 -0
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.8.0 – 2026-08-22
|
|
4
|
+
|
|
5
|
+
- The runtime `@venlyfinance/sdk` dependency moves to `^0.7.0`, so the server's own
|
|
6
|
+
data plane matches the world its blueprints describe (0.7.1 and earlier installed a
|
|
7
|
+
0.5.x sdk at runtime).
|
|
8
|
+
- The `send` journey blueprint is rewritten for the one-door send surface: recipient-object
|
|
9
|
+
fork (platform directory · saved payout recipients · own bank account), step-up
|
|
10
|
+
confirmation on every money confirm, and the forbidden-to-invent list (fee row, "No fee"
|
|
11
|
+
claim, ETA, pre-create rate, named stages beyond the status enum, any external-wallet
|
|
12
|
+
surface).
|
|
13
|
+
- New `console-webhooks` journey blueprint; the operator-console blueprints
|
|
14
|
+
(`console-review-queue`, `console-decision-detail`, `console-pricing-config`,
|
|
15
|
+
`console-simulator`) now name their shipped registry blocks instead of empty arrays.
|
|
16
|
+
|
|
3
17
|
## 0.7.1 – 2026-08-21
|
|
4
18
|
|
|
5
19
|
- Republish so the packaged blueprints carry the corrected npm ranges for
|
package/dist/constants.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** Shared constants. The default environment is MOCK so an unconfigured run
|
|
2
2
|
* never touches real infrastructure; staging/production are explicit. */
|
|
3
3
|
export declare const SERVER_NAME = "venly-finance-mcp-server";
|
|
4
|
-
export declare const SERVER_VERSION = "0.
|
|
4
|
+
export declare const SERVER_VERSION = "0.8.0";
|
|
5
5
|
export declare const INSTRUCTIONS = "Venly Finance build advisor. This server is a build-time advisor, not your app's data plane. The data plane is the published packages: every read is a hook and every regulated lifecycle a flow machine from `@venlyfinance/react`, inside `<VenlyProvider environment=\"mock\">` \u2013 zero credentials, zero network; server-side code uses `@venlyfinance/sdk`. Hand-rolled fetch layers, in-memory money stores, or route handlers that re-implement transfers, balances, or approvals are off-contract and fail review. UI installs from the @venlyfinance shadcn registry: `npx shadcn@latest add @venlyfinance/balances @venlyfinance/send \u2026` (auto-installs the npm packages). Before scaffolding, read `venly://frontend/agents` \u2013 it is the composition doctrine (AGENTS.md). Consult `get_journey_blueprint` per screen; gate finished screens with `review_screen` and `npx @venlyfinance/settlement-mcp review \"src/**/*.tsx\"`.";
|
|
6
6
|
export declare const ENVIRONMENT_FLAG = "VENLY_ENV";
|
|
7
7
|
export type VenlyEnvironment = "mock" | "qa" | "staging" | "production";
|
package/dist/constants.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** Shared constants. The default environment is MOCK so an unconfigured run
|
|
2
2
|
* never touches real infrastructure; staging/production are explicit. */
|
|
3
3
|
export const SERVER_NAME = "venly-finance-mcp-server";
|
|
4
|
-
export const SERVER_VERSION = "0.
|
|
4
|
+
export const SERVER_VERSION = "0.8.0";
|
|
5
5
|
export const INSTRUCTIONS = `Venly Finance build advisor. This server is a build-time advisor, not your app's data plane. The data plane is the published packages: every read is a hook and every regulated lifecycle a flow machine from \`@venlyfinance/react\`, inside \`<VenlyProvider environment="mock">\` – zero credentials, zero network; server-side code uses \`@venlyfinance/sdk\`. Hand-rolled fetch layers, in-memory money stores, or route handlers that re-implement transfers, balances, or approvals are off-contract and fail review. UI installs from the @venlyfinance shadcn registry: \`npx shadcn@latest add @venlyfinance/balances @venlyfinance/send …\` (auto-installs the npm packages). Before scaffolding, read \`venly://frontend/agents\` – it is the composition doctrine (AGENTS.md). Consult \`get_journey_blueprint\` per screen; gate finished screens with \`review_screen\` and \`npx @venlyfinance/settlement-mcp review "src/**/*.tsx"\`.`;
|
|
6
6
|
export const ENVIRONMENT_FLAG = "VENLY_ENV";
|
|
7
7
|
export function resolveVenlyEnvironment(env) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@venlyfinance/settlement-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Venly Finance MCP: SDK-backed tools, resources and prompts for building international money products safely.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"node": ">=20"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@venlyfinance/sdk": "^0.
|
|
32
|
+
"@venlyfinance/sdk": "^0.7.0",
|
|
33
33
|
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
34
34
|
"zod": "^3.23.8"
|
|
35
35
|
},
|