Skip to content

Commit

Permalink
fix: version number
Browse files Browse the repository at this point in the history
  • Loading branch information
kleyow committed Jan 18, 2025
1 parent dc55b3f commit ddc8eb2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 56 deletions.
64 changes: 11 additions & 53 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mojaloop/central-ledger",
"version": "18.0.1",
"version": "18.1.0-iso.2",
"description": "Central ledger hosted by a scheme to record and settle transfers",
"license": "Apache-2.0",
"author": "ModusBox",
Expand Down Expand Up @@ -88,7 +88,7 @@
"@hapi/inert": "7.1.0",
"@hapi/vision": "7.0.3",
"@mojaloop/central-services-error-handling": "13.0.3",
"@mojaloop/central-services-health": "15.0.0",
"@mojaloop/central-services-health": "15.0.1",
"@mojaloop/central-services-logger": "11.5.2",
"@mojaloop/central-services-metrics": "12.4.3",
"@mojaloop/central-services-shared": "18.15.1",
Expand Down
2 changes: 1 addition & 1 deletion src/api/participants/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ module.exports = [
description: 'Record Funds In or Out of participant account',
validate: {
payload: Joi.object({
transferId: Joi.string().pattern(/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-7][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$|^[0-9A-HJKMNP-TV-Z]{26})$/).required(),
transferId: Joi.string().guid().required(),
externalReference: Joi.string().required(),
action: Joi.string().required().valid('recordFundsIn', 'recordFundsOutPrepareReserve').label('action is missing or not supported'),
reason: Joi.string().required(),
Expand Down

0 comments on commit ddc8eb2

Please sign in to comment.