@mojaloop/api-snippets 13.0.10 → 14.0.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 +18 -0
- package/CODEOWNERS +2 -1
- package/docs/fspiop-rest-v1.0-openapi3-snippets.yaml +87 -87
- package/docs/fspiop-rest-v1.1-openapi3-snippets.yaml +56 -56
- package/docs/thirdparty-openapi3-snippets.yaml +67 -59
- package/lib/fspiop/v1_0/openapi.d.ts +3726 -2240
- package/lib/fspiop/v1_1/openapi.d.ts +3152 -1628
- package/lib/thirdparty/openapi.d.ts +24161 -17390
- package/package.json +46 -39
- package/{tests → test}/automock/automock.test.ts +5 -7
- package/{tests → test}/dto/thirdparty.test.ts +31 -27
- package/{tests → test}/dto/v1_0.test.ts +0 -0
- package/{tests → test}/dto/v1_1.test.ts +0 -0
- package/thirdparty/v1_0/openapi3/paths/consentRequests_ID_error.yaml +1 -0
- package/thirdparty/v1_0/openapi3/paths/consents_ID_error.yaml +1 -0
- package/thirdparty/v1_0/openapi3/paths/participants.yaml +1 -0
- package/thirdparty/v1_0/openapi3/paths/participants_Type_ID.yaml +1 -0
- package/thirdparty/v1_0/openapi3/paths/participants_Type_ID_error.yaml +1 -0
- package/thirdparty/v1_0/openapi3/paths/thirdpartyRequests_authorizations.yaml +1 -0
- package/thirdparty/v1_0/openapi3/paths/thirdpartyRequests_authorizations_ID.yaml +1 -0
- package/thirdparty/v1_0/openapi3/paths/thirdpartyRequests_transactions.yaml +1 -0
- package/tsconfig.build.json +22 -0
- package/tsconfig.eslint.json +0 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
# Changelog: [mojaloop/api-snippets](https://github.com/mojaloop/api-snippets)
|
|
2
|
+
## [14.0.0](https://github.com/mojaloop/api-snippets/compare/v13.0.11...v14.0.0) (2022-05-25)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### ⚠ BREAKING CHANGES
|
|
6
|
+
|
|
7
|
+
* upgrade nodejs, packages, linting and ci (#129)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* upgrade nodejs, packages, linting and ci ([#129](https://github.com/mojaloop/api-snippets/issues/129)) ([12ecac1](https://github.com/mojaloop/api-snippets/commit/12ecac14f9ba9e2dc8caa829ae3403e93df4b7c8))
|
|
12
|
+
|
|
13
|
+
### [13.0.11](https://github.com/mojaloop/api-snippets/compare/v13.0.10...v13.0.11) (2022-03-28)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Maintenance
|
|
17
|
+
|
|
18
|
+
* add sample tag to paths ([#127](https://github.com/mojaloop/api-snippets/issues/127)) ([e35ab91](https://github.com/mojaloop/api-snippets/commit/e35ab911a6e62b2eb5a34cbadf0529cc518c4f74))
|
|
19
|
+
|
|
2
20
|
### [13.0.10](https://github.com/mojaloop/api-snippets/compare/v13.0.9...v13.0.10) (2022-03-27)
|
|
3
21
|
|
|
4
22
|
|
package/CODEOWNERS
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
* @kleyow @elnyry-sam-k @lewisdaly @vijayg10 @mdebarros
|
|
2
|
+
|
|
1
3
|
# This is a comment.
|
|
2
4
|
# Each line is a file pattern followed by one or more owners.
|
|
3
5
|
|
|
@@ -6,7 +8,6 @@
|
|
|
6
8
|
## @global-owner1 and @global-owner2 will be requested for
|
|
7
9
|
## review when someone opens a pull request.
|
|
8
10
|
#* @global-owner1 @global-owner2
|
|
9
|
-
* @kleyow @elnyry-sam-k @lewisdaly @vijayg10
|
|
10
11
|
|
|
11
12
|
## Order is important; the last matching pattern takes the most
|
|
12
13
|
## precedence. When someone opens a pull request that only
|