- Updated `mapping-service` to include WEB3-ETH-IBAN support, health check endpoint, and improved error handling for account-wallet linking. - Added new provider connection and status endpoints in `mapping-service`. - Enhanced `orchestrator` service with health check, trigger management endpoints, and improved error handling for trigger validation and submission. - Updated dependencies in `package.json` for both services, including `axios`, `uuid`, and type definitions. - Improved packet service with additional validation and error handling for packet generation and dispatching. - Introduced webhook service enhancements, including delivery retries, dead letter queue management, and webhook management endpoints.
33 lines
811 B
JSON
33 lines
811 B
JSON
{
|
|
"name": "@emoney/orchestrator",
|
|
"version": "1.0.0",
|
|
"description": "ISO-20022 orchestrator service",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "ts-node-dev --respawn --transpile-only src/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"@grpc/grpc-js": "^1.9.14",
|
|
"@grpc/proto-loader": "^0.7.10",
|
|
"axios": "^1.6.2",
|
|
"xml2js": "^0.6.2",
|
|
"js-yaml": "^4.1.0",
|
|
"uuid": "^9.0.1",
|
|
"@emoney/blockchain": "workspace:*",
|
|
"@emoney/events": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.10.0",
|
|
"@types/xml2js": "^0.4.14",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/uuid": "^9.0.7",
|
|
"typescript": "^5.3.0",
|
|
"ts-node-dev": "^2.0.0"
|
|
}
|
|
}
|
|
|