@mojaloop/api-snippets 17.1.0-snapshot.0 → 17.1.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 +7 -0
- package/docs/sdk-scheme-adapter-backend-v2_0_0-openapi3-snippets.yaml +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/backend/json-schemas.json +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/backend/openapi.d.ts +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.d.ts +1 -1
- package/package.json +2 -2
- package/sdk-scheme-adapter/v2_0_0/backend/openapi.yaml +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,11 @@
|
|
1
1
|
# Changelog: [mojaloop/api-snippets](https://github.com/mojaloop/api-snippets)
|
2
|
+
## [17.1.0](https://github.com/mojaloop/api-snippets/compare/v17.0.4...v17.1.0) (2023-05-19)
|
3
|
+
|
4
|
+
|
5
|
+
### Features
|
6
|
+
|
7
|
+
* **mojaloop/3345:** enhance payee requesttopay apis ([#162](https://github.com/mojaloop/api-snippets/issues/162)) ([49b31e0](https://github.com/mojaloop/api-snippets/commit/49b31e0eb046483b7cdf868f0305a09a42a47889))
|
8
|
+
|
2
9
|
### [17.0.4](https://github.com/mojaloop/api-snippets/compare/v17.0.3...v17.0.4) (2023-04-26)
|
3
10
|
|
4
11
|
|
@@ -1346,7 +1346,7 @@ components:
|
|
1346
1346
|
transactionRequestResponse:
|
1347
1347
|
description: A response to a request for a quote.
|
1348
1348
|
properties:
|
1349
|
-
|
1349
|
+
homeR2PTransactionId:
|
1350
1350
|
type: string
|
1351
1351
|
description: >-
|
1352
1352
|
Transaction ID from the DFSP backend, used to reconcile transactions
|
@@ -8037,7 +8037,7 @@
|
|
8037
8037
|
"transactionRequestResponse": {
|
8038
8038
|
"description": "A response to a request for a quote.",
|
8039
8039
|
"properties": {
|
8040
|
-
"
|
8040
|
+
"homeR2PTransactionId": {
|
8041
8041
|
"type": "string",
|
8042
8042
|
"description": "Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems."
|
8043
8043
|
},
|
@@ -405,7 +405,7 @@ export interface components {
|
|
405
405
|
/** @description A response to a request for a quote. */
|
406
406
|
transactionRequestResponse: {
|
407
407
|
/** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
|
408
|
-
|
408
|
+
homeR2PTransactionId?: string;
|
409
409
|
transactionId: components["schemas"]["transactionId"];
|
410
410
|
transactionRequestState: components["schemas"]["transactionRequestState"];
|
411
411
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@mojaloop/api-snippets",
|
3
|
-
"version": "17.1.0
|
3
|
+
"version": "17.1.0",
|
4
4
|
"description": "Mojaloop API specification reusable snippets",
|
5
5
|
"main": "lib/index.js",
|
6
6
|
"types": "lib/index.d.ts",
|
@@ -110,7 +110,7 @@
|
|
110
110
|
"swagger-cli": "^4.0.4",
|
111
111
|
"ts-jest": "^29.1.0",
|
112
112
|
"ts-node": "^10.9.1",
|
113
|
-
"tslib": "^2.5.
|
113
|
+
"tslib": "^2.5.2",
|
114
114
|
"typescript": "^4.9.4"
|
115
115
|
},
|
116
116
|
"publishConfig": {
|
@@ -1241,7 +1241,7 @@ components:
|
|
1241
1241
|
transactionRequestResponse:
|
1242
1242
|
description: A response to a request for a quote.
|
1243
1243
|
properties:
|
1244
|
-
|
1244
|
+
homeR2PTransactionId:
|
1245
1245
|
type: string
|
1246
1246
|
description: >-
|
1247
1247
|
Transaction ID from the DFSP backend, used to reconcile transactions
|