@mojaloop/api-snippets 17.10.0-snapshot.0 → 17.10.1
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/docs/sdk-scheme-adapter-outbound-v2_1_0-openapi3-snippets.yaml +0 -1
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/json-schemas.json +3 -6
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/openapi.d.ts +1 -1
- package/package.json +3 -3
- package/sdk-scheme-adapter/v2_1_0/components/schemas/accountsRequest.yaml +0 -1
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,18 @@
|
|
1
1
|
# Changelog: [mojaloop/api-snippets](https://github.com/mojaloop/api-snippets)
|
2
|
+
### [17.10.1](https://github.com/mojaloop/api-snippets/compare/v17.10.0...v17.10.1) (2025-03-21)
|
3
|
+
|
4
|
+
|
5
|
+
### Maintenance
|
6
|
+
|
7
|
+
* remove currency requirment from sdk outbound ([#198](https://github.com/mojaloop/api-snippets/issues/198)) ([90e2f44](https://github.com/mojaloop/api-snippets/commit/90e2f449fa24d1be79a14452c0bf604bee72f857))
|
8
|
+
|
9
|
+
## [17.10.0](https://github.com/mojaloop/api-snippets/compare/v17.9.0...v17.10.0) (2025-03-20)
|
10
|
+
|
11
|
+
|
12
|
+
### Features
|
13
|
+
|
14
|
+
* **csi-1328:** export sdk v2.1.0 ([#197](https://github.com/mojaloop/api-snippets/issues/197)) ([3f76b3d](https://github.com/mojaloop/api-snippets/commit/3f76b3d64e1c157a3ab6fbb2b37e042627f16afa))
|
15
|
+
|
2
16
|
## [17.9.0](https://github.com/mojaloop/api-snippets/compare/v17.8.0...v17.9.0) (2025-03-19)
|
3
17
|
|
4
18
|
|
@@ -208,8 +208,7 @@
|
|
208
208
|
"type": "object",
|
209
209
|
"required": [
|
210
210
|
"idType",
|
211
|
-
"idValue"
|
212
|
-
"currency"
|
211
|
+
"idValue"
|
213
212
|
],
|
214
213
|
"properties": {
|
215
214
|
"idType": {
|
@@ -825,8 +824,7 @@
|
|
825
824
|
"type": "object",
|
826
825
|
"required": [
|
827
826
|
"idType",
|
828
|
-
"idValue"
|
829
|
-
"currency"
|
827
|
+
"idValue"
|
830
828
|
],
|
831
829
|
"properties": {
|
832
830
|
"idType": {
|
@@ -1233,8 +1231,7 @@
|
|
1233
1231
|
"type": "object",
|
1234
1232
|
"required": [
|
1235
1233
|
"idType",
|
1236
|
-
"idValue"
|
1237
|
-
"currency"
|
1234
|
+
"idValue"
|
1238
1235
|
],
|
1239
1236
|
"properties": {
|
1240
1237
|
"idType": {
|
@@ -972,7 +972,7 @@ export interface components {
|
|
972
972
|
idType: components["schemas"]["PartyIdType"];
|
973
973
|
idValue: components["schemas"]["PartyIdentifier"];
|
974
974
|
idSubValue?: components["schemas"]["PartySubIdOrType"];
|
975
|
-
currency
|
975
|
+
currency?: components["schemas"]["Currency"];
|
976
976
|
}[];
|
977
977
|
/**
|
978
978
|
* CorrelationId
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@mojaloop/api-snippets",
|
3
|
-
"version": "17.10.
|
3
|
+
"version": "17.10.1",
|
4
4
|
"description": "Mojaloop API specification reusable snippets",
|
5
5
|
"main": "lib/index.js",
|
6
6
|
"types": "lib/index.d.ts",
|
@@ -101,8 +101,8 @@
|
|
101
101
|
"@redocly/cli": "^1.5.0",
|
102
102
|
"@types/jest": "^29.5.14",
|
103
103
|
"@types/js-yaml": "^4.0.9",
|
104
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
105
|
-
"@typescript-eslint/parser": "^8.
|
104
|
+
"@typescript-eslint/eslint-plugin": "^8.27.0",
|
105
|
+
"@typescript-eslint/parser": "^8.27.0",
|
106
106
|
"audit-ci": "^7.1.0",
|
107
107
|
"browser-sync": "^3.0.3",
|
108
108
|
"diff": "^7.0.0",
|