@mojaloop/api-snippets 17.2.0 → 17.2.4
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 +21 -0
- package/audit-ci.jsonc +8 -0
- package/jest.config.js +2 -4
- package/lib/fspiop/v1_0/openapi.d.ts +792 -1490
- package/lib/fspiop/v1_1/openapi.d.ts +812 -1523
- package/lib/sdk-scheme-adapter/v2_0_0/backend/openapi.d.ts +190 -141
- package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.js +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.js.map +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/openapi.d.ts +219 -207
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.js +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.js.map +1 -1
- package/lib/thirdparty/openapi.d.ts +656 -1454
- package/package.json +26 -36
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,25 @@
|
|
1
1
|
# Changelog: [mojaloop/api-snippets](https://github.com/mojaloop/api-snippets)
|
2
|
+
### [17.2.4](https://github.com/mojaloop/api-snippets/compare/v17.2.3...v17.2.4) (2023-08-23)
|
3
|
+
|
4
|
+
|
5
|
+
### CI/CD
|
6
|
+
|
7
|
+
* **mojaloop/#3454:** remove unneeded configs ([#166](https://github.com/mojaloop/api-snippets/issues/166)) ([29f792f](https://github.com/mojaloop/api-snippets/commit/29f792fa6a7a221a57d3d5bca36f0e57316c9360)), closes [mojaloop/#3454](https://github.com/mojaloop/api-snippets/issues/3454) [mojaloop/#3454](https://github.com/mojaloop/api-snippets/issues/3454)
|
8
|
+
|
9
|
+
### [17.2.3](https://github.com/mojaloop/api-snippets/compare/v17.2.2...v17.2.3) (2023-08-17)
|
10
|
+
|
11
|
+
|
12
|
+
### Bug Fixes
|
13
|
+
|
14
|
+
* ci config.yml for missing jq dependency ([#165](https://github.com/mojaloop/api-snippets/issues/165)) ([2b950da](https://github.com/mojaloop/api-snippets/commit/2b950da02a4ef91ae4fbba9618a9e0b9619c6426))
|
15
|
+
|
16
|
+
### [17.2.2](https://github.com/mojaloop/api-snippets/compare/v17.2.0...v17.2.2) (2023-08-17)
|
17
|
+
|
18
|
+
|
19
|
+
### Maintenance
|
20
|
+
|
21
|
+
* **mojaloop/#3475:** NodeJS version upgrade ([d42f85a](https://github.com/mojaloop/api-snippets/commit/d42f85a29efe24764f70d50e05141d256a605e1a)), closes [mojaloop/#3475](https://github.com/mojaloop/api-snippets/issues/3475) [mojaloop/#3475](https://github.com/mojaloop/api-snippets/issues/3475)
|
22
|
+
|
2
23
|
## [17.2.0](https://github.com/mojaloop/api-snippets/compare/v17.1.0...v17.2.0) (2023-06-05)
|
3
24
|
|
4
25
|
|
package/audit-ci.jsonc
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "https://github.com/IBM/audit-ci/raw/main/docs/schema.json",
|
3
|
+
// audit-ci supports reading JSON, JSONC, and JSON5 config files.
|
4
|
+
// Only use one of ["low": true, "moderate": true, "high": true, "critical": true]
|
5
|
+
"moderate": true,
|
6
|
+
"allowlist": [
|
7
|
+
]
|
8
|
+
}
|