Skip to content

Commit

Permalink
Merge branch 'finos:master' into 592-intent-proposal-create-transacti…
Browse files Browse the repository at this point in the history
…on-result
  • Loading branch information
milindchidrawar authored Oct 27, 2022
2 parents 3d27bbc + 5631b9c commit ff18e75
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
* Updated Methods.ts to support the updated signature for `addContextListener` introduced in FDC3 1.2 ([#462](https://github.com/finos/FDC3/pull/462))
* Clarified the description of the addContextListener functions from the Desktop Agent and Channel APIs in spec and docs. ([#492](https://github.com/finos/FDC3/pull/492))
* Clarified that implementing `fdc3.getInfo()` is required for compliance with the FDC3 standard ([#515](https://github.com/finos/FDC3/pull/515))
* Corrected syntax errors in valuation schema ([#834](https://github.com/finos/FDC3/pull/834))

## [npm v1.2.0] - 2021-04-19

Expand Down
2 changes: 1 addition & 1 deletion src/context/schemas/valuation.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": { "const": "fdc3.valuation" },
"value": { "type": "number" },
"price": { "type": "number"},
"CURRENCY_ISCODE": { "type": "string", "pattern": "^[A-Z]{3}$" },
"CURRENCY_ISOCODE": { "type": "string", "pattern": "^[A-Z]{3}$" },
"valuationTime": {"type": "string", "format": "date-time" },
"expiryTime": {"type": "string", "format": "date-time" }
},
Expand Down
2 changes: 1 addition & 1 deletion website/static/schemas/2.0/valuation.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": { "const": "fdc3.valuation" },
"value": { "type": "number" },
"price": { "type": "number"},
"CURRENCY_ISCODE": { "type": "string", "pattern": "^[A-Z]{3}$" },
"CURRENCY_ISOCODE": { "type": "string", "pattern": "^[A-Z]{3}$" },
"valuationTime": {"type": "string", "format": "date-time" },
"expiryTime": {"type": "string", "format": "date-time" }
},
Expand Down

0 comments on commit ff18e75

Please sign in to comment.