@mojaloop/api-snippets 17.7.5 → 17.7.7
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 +15 -3
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/json-schemas.json +830 -658
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/openapi.d.ts +5 -1
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/schemas.d.ts +416 -270
- package/package.json +8 -8
- package/sdk-scheme-adapter/v2_1_0/components/schemas/transferResponse.yaml +15 -3
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@mojaloop/api-snippets",
|
3
|
-
"version": "17.7.
|
3
|
+
"version": "17.7.7",
|
4
4
|
"description": "Mojaloop API specification reusable snippets",
|
5
5
|
"main": "lib/index.js",
|
6
6
|
"types": "lib/index.d.ts",
|
@@ -86,7 +86,7 @@
|
|
86
86
|
"js-yaml": "^4.1.0",
|
87
87
|
"json-refs": "^3.0.15",
|
88
88
|
"openapi-types": "^12.1.3",
|
89
|
-
"openapi-typescript": "^7.4.
|
89
|
+
"openapi-typescript": "^7.4.4",
|
90
90
|
"ts-auto-mock": "^3.7.4"
|
91
91
|
},
|
92
92
|
"overrides": {
|
@@ -100,15 +100,15 @@
|
|
100
100
|
"@redocly/cli": "^1.5.0",
|
101
101
|
"@types/jest": "^29.5.14",
|
102
102
|
"@types/js-yaml": "^4.0.9",
|
103
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
104
|
-
"@typescript-eslint/parser": "^8.
|
103
|
+
"@typescript-eslint/eslint-plugin": "^8.18.0",
|
104
|
+
"@typescript-eslint/parser": "^8.18.0",
|
105
105
|
"audit-ci": "^7.1.0",
|
106
106
|
"browser-sync": "^3.0.3",
|
107
107
|
"diff": "^7.0.0",
|
108
108
|
"eslint": "^8.55.0",
|
109
109
|
"eslint-config-prettier": "^9.1.0",
|
110
110
|
"eslint-config-standard": "^17.1.0",
|
111
|
-
"eslint-import-resolver-typescript": "^3.
|
111
|
+
"eslint-import-resolver-typescript": "^3.7.0",
|
112
112
|
"eslint-plugin-cucumber": "^2.0.0",
|
113
113
|
"eslint-plugin-import": "^2.31.0",
|
114
114
|
"eslint-plugin-node": "^11.1.0",
|
@@ -118,14 +118,14 @@
|
|
118
118
|
"husky": "9.1.7",
|
119
119
|
"jest": "^29.7.0",
|
120
120
|
"jest-junit": "^16.0.0",
|
121
|
-
"lint-staged": "^15.2.
|
121
|
+
"lint-staged": "^15.2.11",
|
122
122
|
"npm-check-updates": "^17.1.11",
|
123
|
-
"prettier": "^3.
|
123
|
+
"prettier": "^3.4.2",
|
124
124
|
"standard-version": "^9.5.0",
|
125
125
|
"swagger-cli": "^4.0.4",
|
126
126
|
"ts-jest": "^29.2.5",
|
127
127
|
"ts-node": "^10.9.2",
|
128
|
-
"ts-patch": "^3.
|
128
|
+
"ts-patch": "^3.3.0",
|
129
129
|
"tslib": "^2.8.1",
|
130
130
|
"typescript": "^5.7.2"
|
131
131
|
},
|
@@ -37,13 +37,25 @@ properties:
|
|
37
37
|
$ref: ./CorrelationId.yaml
|
38
38
|
getPartiesResponse:
|
39
39
|
type: object
|
40
|
-
required:
|
41
|
-
- body
|
42
40
|
properties:
|
43
41
|
body:
|
44
|
-
|
42
|
+
oneOf:
|
43
|
+
- type: object
|
44
|
+
properties:
|
45
|
+
party:
|
46
|
+
$ref: ./Party.yaml
|
47
|
+
required:
|
48
|
+
- party
|
49
|
+
- type: object
|
50
|
+
properties:
|
51
|
+
errorInformation:
|
52
|
+
$ref: ./ErrorInformation.yaml
|
53
|
+
required:
|
54
|
+
- errorInformation
|
45
55
|
headers:
|
46
56
|
type: object
|
57
|
+
required:
|
58
|
+
- body
|
47
59
|
quoteResponse:
|
48
60
|
type: object
|
49
61
|
required:
|