@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/CHANGELOG.md
CHANGED
@@ -1,4 +1,18 @@
|
|
1
1
|
# Changelog: [mojaloop/api-snippets](https://github.com/mojaloop/api-snippets)
|
2
|
+
### [17.7.7](https://github.com/mojaloop/api-snippets/compare/v17.7.6...v17.7.7) (2024-12-13)
|
3
|
+
|
4
|
+
|
5
|
+
### Bug Fixes
|
6
|
+
|
7
|
+
* **csi-1023:** fixed outbound POST transferResponse - error getPartiesResponse ([#189](https://github.com/mojaloop/api-snippets/issues/189)) ([efd152c](https://github.com/mojaloop/api-snippets/commit/efd152c6afc981bdb589b12a68366a8563930cbd))
|
8
|
+
|
9
|
+
### [17.7.6](https://github.com/mojaloop/api-snippets/compare/v17.7.5...v17.7.6) (2024-12-12)
|
10
|
+
|
11
|
+
|
12
|
+
### Bug Fixes
|
13
|
+
|
14
|
+
* **csi-1023:** fixed outbound POST transferResponse - getPartiesResponse ([#188](https://github.com/mojaloop/api-snippets/issues/188)) ([1625504](https://github.com/mojaloop/api-snippets/commit/162550466866bae641d6588c07d8d8995b3c110a))
|
15
|
+
|
2
16
|
### [17.7.5](https://github.com/mojaloop/api-snippets/compare/v17.7.4...v17.7.5) (2024-11-26)
|
3
17
|
|
4
18
|
|
@@ -2285,13 +2285,25 @@ components:
|
|
2285
2285
|
$ref: '#/components/schemas/CorrelationId'
|
2286
2286
|
getPartiesResponse:
|
2287
2287
|
type: object
|
2288
|
-
required:
|
2289
|
-
- body
|
2290
2288
|
properties:
|
2291
2289
|
body:
|
2292
|
-
|
2290
|
+
oneOf:
|
2291
|
+
- type: object
|
2292
|
+
properties:
|
2293
|
+
party:
|
2294
|
+
$ref: '#/components/schemas/Party'
|
2295
|
+
required:
|
2296
|
+
- party
|
2297
|
+
- type: object
|
2298
|
+
properties:
|
2299
|
+
errorInformation:
|
2300
|
+
$ref: '#/components/schemas/ErrorInformation'
|
2301
|
+
required:
|
2302
|
+
- errorInformation
|
2293
2303
|
headers:
|
2294
2304
|
type: object
|
2305
|
+
required:
|
2306
|
+
- body
|
2295
2307
|
quoteResponse:
|
2296
2308
|
type: object
|
2297
2309
|
required:
|