@mojaloop/api-snippets 17.3.0-snapshot.0 → 17.4.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 +14 -0
- package/audit-ci.jsonc +1 -1
- package/docs/fspiop-rest-v1.0-openapi3-snippets.yaml +204 -805
- package/docs/fspiop-rest-v1.1-openapi3-snippets.yaml +2432 -2447
- package/docs/fspiop-rest-v2.0-openapi3-snippets.yaml +3149 -3163
- package/docs/sdk-scheme-adapter-backend-v2_0_0-openapi3-snippets.yaml +103 -346
- package/docs/sdk-scheme-adapter-backend-v2_1_0-openapi3-snippets.yaml +131 -449
- package/docs/sdk-scheme-adapter-outbound-v2_0_0-openapi3-snippets.yaml +144 -478
- package/docs/sdk-scheme-adapter-outbound-v2_1_0-openapi3-snippets.yaml +179 -606
- package/docs/thirdparty-openapi3-snippets.yaml +296 -886
- package/fspiop/v1_1/openapi3/openapi.yaml +10 -2
- package/fspiop/v2_0/openapi3/openapi.yaml +11 -1
- package/lib/fspiop/v1_1/openapi.d.ts +524 -542
- package/lib/fspiop/v2_0/openapi.d.ts +685 -703
- package/lib/scripts/openapi-refactor.d.ts +29 -0
- package/lib/scripts/openapi-refactor.js +70 -0
- package/lib/scripts/openapi-refactor.js.map +1 -0
- package/package.json +14 -9
@@ -3,9 +3,17 @@ info:
|
|
3
3
|
version: '1.1'
|
4
4
|
title: Open API for FSP Interoperability (FSPIOP)
|
5
5
|
description: >-
|
6
|
-
|
7
|
-
1.1](https://github.com/mojaloop/mojaloop-specification/blob/main/documents/v1.1-document-set/API%20Definition_v1.1.pdf).
|
6
|
+
Revision date: 2023-11-23
|
7
|
+
Based on [API Definition updated on 2020-05-19 Version 1.1](https://github.com/mojaloop/mojaloop-specification/blob/main/documents/v1.1-document-set/API%20Definition_v1.1.pdf).
|
8
8
|
|
9
|
+
This is implementation friendly version of the API definition.
|
10
|
+
It includes the below definitions needed for third-party functionality.
|
11
|
+
- AuthenticationType
|
12
|
+
- U2F enum
|
13
|
+
- AuthenticationValue
|
14
|
+
- oneOf is changed to anyOf
|
15
|
+
- new element is added U2FPinValue
|
16
|
+
- New element U2FPIN
|
9
17
|
|
10
18
|
**Note:** The API supports a maximum size of 65536 bytes (64 Kilobytes) in
|
11
19
|
the HTTP header.
|
@@ -1,11 +1,21 @@
|
|
1
1
|
openapi: 3.0.2
|
2
2
|
info:
|
3
|
-
version: '2.0'
|
3
|
+
version: '2.0-draft'
|
4
4
|
title: Open API for FSP Interoperability (FSPIOP)
|
5
5
|
description: >-
|
6
|
+
Revision date: 2023-11-23
|
6
7
|
Based on [API Definition updated on 2020-05-19 Version
|
7
8
|
1.1](https://github.com/mojaloop/mojaloop-specification/blob/main/documents/v1.1-document-set/API%20Definition_v1.1.pdf).
|
8
9
|
|
10
|
+
This is implementation friendly version of the API definition.
|
11
|
+
|
12
|
+
It includes the below definitions needed for third-party functionality.
|
13
|
+
- AuthenticationType
|
14
|
+
- U2F enum
|
15
|
+
- AuthenticationValue
|
16
|
+
- oneOf is changed to anyOf
|
17
|
+
- new element is added U2FPinValue
|
18
|
+
- New element U2FPIN
|
9
19
|
|
10
20
|
**Note:** The API supports a maximum size of 65536 bytes (64 Kilobytes) in
|
11
21
|
the HTTP header.
|