Skip to content

v13.0.4 Release

Compare
Choose a tag to compare
@mojaloopci mojaloopci released this 13 May 21:33
· 0 commits to ed844b1d2da6c58d3c61622c07c326bda3ca3b86 since this release

13.0.4 (2022-05-13)

Bug Fixes

馃洃 BREAKING CHANGES Notes from all 13.0.x releases.

Outbound server responses now return internal mojaloop responses with headers instead of just the payload.

List of properties that have been changed.

  • partiesByIdResponse.party in GET /parties/{Type}/{ID} and /parties/{Type}/{ID}/{SubId}
  • quotesPostResponse.quotes in POST /quotes
  • simpleTransfersPostResponse.transfer in POST /simpleTransfers
  • transferResponse.getPartiesResponse in POST /transfers POST /transfers/{ID} POST /requestToPayTransfer/{requestToPayTransactionId}
  • transferResponse.quoteResponse in POST /transfers POST /transfers/{ID} POST /requestToPayTransfer/{requestToPayTransactionId}
  • transferResponse.fulfil in POST /transfers POST /transfers/{ID} POST /requestToPayTransfer/{requestToPayTransactionId}
  • transferStatusResponse.fulfil in GET /transfers/{transferId}
  • accountsResponse.postAccountsResponse in POST /accounts

If you are accessing the payload in these responses you'll need to upgrade your accessors to .body

Rough schema

{ body: putResponse, headers: object }

Example schema change

        quoteResponse:
-          $ref: '#/components/schemas/QuotesIDPutResponse'
+          type: object
+         required:
+            - body
+          properties:
+            body:
+              $ref: '#/components/schemas/QuotesIDPutResponse'
+            headers:
+              type: object