@mojaloop/api-snippets 17.7.6 → 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 +7 -0
- package/docs/sdk-scheme-adapter-outbound-v2_1_0-openapi3-snippets.yaml +15 -8
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/json-schemas.json +781 -625
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/openapi.d.ts +2 -0
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/schemas.d.ts +424 -290
- package/package.json +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/transferResponse.yaml +15 -8
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,11 @@
|
|
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
|
+
|
2
9
|
### [17.7.6](https://github.com/mojaloop/api-snippets/compare/v17.7.5...v17.7.6) (2024-12-12)
|
3
10
|
|
4
11
|
|
@@ -2285,18 +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
|
-
|
2293
|
-
|
2294
|
-
|
2295
|
-
|
2296
|
-
|
2297
|
-
|
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
|
2298
2303
|
headers:
|
2299
2304
|
type: object
|
2305
|
+
required:
|
2306
|
+
- body
|
2300
2307
|
quoteResponse:
|
2301
2308
|
type: object
|
2302
2309
|
required:
|