@mojaloop/api-snippets 17.7.12 → 17.8.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 +14 -0
- package/LICENSE.md +1 -1
- package/docs/sdk-scheme-adapter-outbound-v2_1_0-openapi3-snippets.yaml +12 -1
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/json-schemas.json +15 -0
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/openapi.d.ts +6 -2
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/schemas.d.ts +10 -0
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/schemas.js +1 -0
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/schemas.js.map +1 -1
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/types.d.ts +1 -0
- package/package.json +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/transferContinuationAcceptQuoteOrConversion.yaml +9 -0
- package/sdk-scheme-adapter/v2_1_0/outbound/paths/transfers_transferId.yaml +2 -1
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,18 @@
|
|
1
1
|
# Changelog: [mojaloop/api-snippets](https://github.com/mojaloop/api-snippets)
|
2
|
+
## [17.8.0](https://github.com/mojaloop/api-snippets/compare/v17.7.13...v17.8.0) (2025-02-20)
|
3
|
+
|
4
|
+
|
5
|
+
### Features
|
6
|
+
|
7
|
+
* add new feild transfer confirmation ([#194](https://github.com/mojaloop/api-snippets/issues/194)) ([c9d7cab](https://github.com/mojaloop/api-snippets/commit/c9d7cab3ad0d35a6351a4406bbe5fb105895e8a5))
|
8
|
+
|
9
|
+
### [17.7.13](https://github.com/mojaloop/api-snippets/compare/v17.7.12...v17.7.13) (2025-02-20)
|
10
|
+
|
11
|
+
|
12
|
+
### Maintenance
|
13
|
+
|
14
|
+
* update license and add grype and trivy scan ([#193](https://github.com/mojaloop/api-snippets/issues/193)) ([67d0e80](https://github.com/mojaloop/api-snippets/commit/67d0e805fdc2b830b855a4cf74bb2faed61185fc))
|
15
|
+
|
2
16
|
### [17.7.12](https://github.com/mojaloop/api-snippets/compare/v17.7.11...v17.7.12) (2025-02-18)
|
3
17
|
|
4
18
|
|
package/LICENSE.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# LICENSE
|
2
2
|
|
3
|
-
Copyright © 2020-
|
3
|
+
Copyright © 2020-2025 Mojaloop Foundation
|
4
4
|
|
5
5
|
The Mojaloop files are made available by the Mojaloop Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License.
|
6
6
|
|
@@ -411,7 +411,7 @@ paths:
|
|
411
411
|
description: |
|
412
412
|
The HTTP request `PUT /transfers/{transferId}` is used to continue a transfer initiated via the `POST /transfers` method that has halted after party lookup and/or quotation stage and/or currency conversion stage.
|
413
413
|
|
414
|
-
The request body should contain either the "acceptParty" or "acceptQuote" or "acceptConversion" property set to `true` as required to continue the transfer.
|
414
|
+
The request body should contain either the "acceptParty" or "acceptQuote" or "acceptConversion" or "acceptQuoteOrConversion" property set to `true` as required to continue the transfer.
|
415
415
|
|
416
416
|
See the description of the `POST /transfers` HTTP method for more information on modes of transfer.
|
417
417
|
tags:
|
@@ -424,6 +424,7 @@ paths:
|
|
424
424
|
- $ref: '#/components/schemas/transferContinuationAcceptParty'
|
425
425
|
- $ref: '#/components/schemas/transferContinuationAcceptQuote'
|
426
426
|
- $ref: '#/components/schemas/transferContinuationAcceptConversion'
|
427
|
+
- $ref: '#/components/schemas/transferContinuationAcceptQuoteOrConversion'
|
427
428
|
parameters:
|
428
429
|
- $ref: '#/components/parameters/transferId'
|
429
430
|
responses:
|
@@ -2673,6 +2674,16 @@ components:
|
|
2673
2674
|
enum:
|
2674
2675
|
- true
|
2675
2676
|
- false
|
2677
|
+
transferContinuationAcceptQuoteOrConversion:
|
2678
|
+
type: object
|
2679
|
+
required:
|
2680
|
+
- acceptQuoteOrConversion
|
2681
|
+
properties:
|
2682
|
+
acceptQuoteOrConversion:
|
2683
|
+
type: boolean
|
2684
|
+
enum:
|
2685
|
+
- true
|
2686
|
+
- false
|
2676
2687
|
ServicesFXPPutResponse:
|
2677
2688
|
title: ServicesFXPPutResponse
|
2678
2689
|
type: object
|
@@ -37342,6 +37342,21 @@
|
|
37342
37342
|
}
|
37343
37343
|
}
|
37344
37344
|
},
|
37345
|
+
"transferContinuationAcceptQuoteOrConversion": {
|
37346
|
+
"type": "object",
|
37347
|
+
"required": [
|
37348
|
+
"acceptQuoteOrConversion"
|
37349
|
+
],
|
37350
|
+
"properties": {
|
37351
|
+
"acceptQuoteOrConversion": {
|
37352
|
+
"type": "boolean",
|
37353
|
+
"enum": [
|
37354
|
+
true,
|
37355
|
+
false
|
37356
|
+
]
|
37357
|
+
}
|
37358
|
+
}
|
37359
|
+
},
|
37345
37360
|
"ServicesFXPPutResponse": {
|
37346
37361
|
"title": "ServicesFXPPutResponse",
|
37347
37362
|
"type": "object",
|
@@ -740,7 +740,7 @@ export interface paths {
|
|
740
740
|
* Continues a transfer that has paused at the quote stage in order to accept or reject payee party and/or quote and/or conversion
|
741
741
|
* @description The HTTP request `PUT /transfers/{transferId}` is used to continue a transfer initiated via the `POST /transfers` method that has halted after party lookup and/or quotation stage and/or currency conversion stage.
|
742
742
|
*
|
743
|
-
* The request body should contain either the "acceptParty" or "acceptQuote" or "acceptConversion" property set to `true` as required to continue the transfer.
|
743
|
+
* The request body should contain either the "acceptParty" or "acceptQuote" or "acceptConversion" or "acceptQuoteOrConversion" property set to `true` as required to continue the transfer.
|
744
744
|
*
|
745
745
|
* See the description of the `POST /transfers` HTTP method for more information on modes of transfer.
|
746
746
|
*
|
@@ -757,7 +757,7 @@ export interface paths {
|
|
757
757
|
};
|
758
758
|
requestBody?: {
|
759
759
|
content: {
|
760
|
-
"application/json": components["schemas"]["transferContinuationAcceptParty"] | components["schemas"]["transferContinuationAcceptQuote"] | components["schemas"]["transferContinuationAcceptConversion"];
|
760
|
+
"application/json": components["schemas"]["transferContinuationAcceptParty"] | components["schemas"]["transferContinuationAcceptQuote"] | components["schemas"]["transferContinuationAcceptConversion"] | components["schemas"]["transferContinuationAcceptQuoteOrConversion"];
|
761
761
|
};
|
762
762
|
};
|
763
763
|
responses: {
|
@@ -1909,6 +1909,10 @@ export interface components {
|
|
1909
1909
|
/** @enum {boolean} */
|
1910
1910
|
acceptConversion: true | false;
|
1911
1911
|
};
|
1912
|
+
transferContinuationAcceptQuoteOrConversion: {
|
1913
|
+
/** @enum {boolean} */
|
1914
|
+
acceptQuoteOrConversion: true | false;
|
1915
|
+
};
|
1912
1916
|
/**
|
1913
1917
|
* ServicesFXPPutResponse
|
1914
1918
|
* @description The object sent in the PUT /services/FXP callback.
|
@@ -15119,6 +15119,16 @@ export declare namespace Schemas {
|
|
15119
15119
|
};
|
15120
15120
|
};
|
15121
15121
|
};
|
15122
|
+
const transferContinuationAcceptQuoteOrConversion: {
|
15123
|
+
type: string;
|
15124
|
+
required: string[];
|
15125
|
+
properties: {
|
15126
|
+
acceptQuoteOrConversion: {
|
15127
|
+
type: string;
|
15128
|
+
enum: boolean[];
|
15129
|
+
};
|
15130
|
+
};
|
15131
|
+
};
|
15122
15132
|
const ServicesFXPPutResponse: {
|
15123
15133
|
title: string;
|
15124
15134
|
type: string;
|
@@ -131,6 +131,7 @@ var Schemas;
|
|
131
131
|
Schemas.transferRequest = json_schemas_json_1.default["transferRequest"];
|
132
132
|
Schemas.transferStatusResponse = json_schemas_json_1.default["transferStatusResponse"];
|
133
133
|
Schemas.transferContinuationAcceptConversion = json_schemas_json_1.default["transferContinuationAcceptConversion"];
|
134
|
+
Schemas.transferContinuationAcceptQuoteOrConversion = json_schemas_json_1.default["transferContinuationAcceptQuoteOrConversion"];
|
134
135
|
Schemas.ServicesFXPPutResponse = json_schemas_json_1.default["ServicesFXPPutResponse"];
|
135
136
|
Schemas.FxQuotesPostOutboundRequest = json_schemas_json_1.default["FxQuotesPostOutboundRequest"];
|
136
137
|
Schemas.commitRequestId = json_schemas_json_1.default["commitRequestId"];
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_1_0/outbound/schemas.ts"],"names":[],"mappings":";AAAA,oDAAoD;;;;AAEpD,kEAAkE;AAElE,oFAA6C;AAE7C,IAAiB,OAAO,
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_1_0/outbound/schemas.ts"],"names":[],"mappings":"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"}
|
@@ -125,6 +125,7 @@ export declare namespace Types {
|
|
125
125
|
type transferRequest = components['schemas']['transferRequest'];
|
126
126
|
type transferStatusResponse = components['schemas']['transferStatusResponse'];
|
127
127
|
type transferContinuationAcceptConversion = components['schemas']['transferContinuationAcceptConversion'];
|
128
|
+
type transferContinuationAcceptQuoteOrConversion = components['schemas']['transferContinuationAcceptQuoteOrConversion'];
|
128
129
|
type ServicesFXPPutResponse = components['schemas']['ServicesFXPPutResponse'];
|
129
130
|
type FxQuotesPostOutboundRequest = components['schemas']['FxQuotesPostOutboundRequest'];
|
130
131
|
type commitRequestId = components['schemas']['commitRequestId'];
|
package/package.json
CHANGED
@@ -8,7 +8,7 @@ put:
|
|
8
8
|
party lookup and/or quotation stage and/or currency conversion stage.
|
9
9
|
|
10
10
|
|
11
|
-
The request body should contain either the "acceptParty" or "acceptQuote" or "acceptConversion"
|
11
|
+
The request body should contain either the "acceptParty" or "acceptQuote" or "acceptConversion" or "acceptQuoteOrConversion"
|
12
12
|
property set to `true` as required to continue the transfer.
|
13
13
|
|
14
14
|
|
@@ -24,6 +24,7 @@ put:
|
|
24
24
|
- $ref: ../../components/schemas/transferContinuationAcceptParty.yaml
|
25
25
|
- $ref: ../../components/schemas/transferContinuationAcceptQuote.yaml
|
26
26
|
- $ref: ../../components/schemas/transferContinuationAcceptConversion.yaml
|
27
|
+
- $ref: ../../components/schemas/transferContinuationAcceptQuoteOrConversion.yaml
|
27
28
|
parameters:
|
28
29
|
- $ref: ../../components/parameters/transferId.yaml
|
29
30
|
responses:
|