Skip to content

Commit 3f76b3d

Browse files
authored
feat(csi-1328): export sdk v2.1.0 (#197)
1 parent 05472f7 commit 3f76b3d

File tree

6 files changed

+135
-89
lines changed

6 files changed

+135
-89
lines changed

package-lock.json

Lines changed: 86 additions & 86 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@
101101
"@redocly/cli": "^1.5.0",
102102
"@types/jest": "^29.5.14",
103103
"@types/js-yaml": "^4.0.9",
104-
"@typescript-eslint/eslint-plugin": "^8.26.1",
105-
"@typescript-eslint/parser": "^8.26.1",
104+
"@typescript-eslint/eslint-plugin": "^8.27.0",
105+
"@typescript-eslint/parser": "^8.27.0",
106106
"audit-ci": "^7.1.0",
107107
"browser-sync": "^3.0.3",
108108
"diff": "^7.0.0",

src/sdk-scheme-adapter/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@
3131
'use strict'
3232

3333
import * as V2_0_0 from './v2_0_0'
34-
export { V2_0_0 }
34+
import * as V2_1_0 from './v2_1_0'
35+
export { V2_0_0, V2_1_0 }
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/* eslint-disable @typescript-eslint/no-namespace */
2+
3+
export * as openapi from './openapi'
4+
export * from './schemas'
5+
export * from './types'
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/*****
2+
License
3+
--------------
4+
Copyright © 2020-2025 Mojaloop Foundation
5+
The Mojaloop files are made available by the Mojaloop Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
10+
11+
Contributors
12+
--------------
13+
This is the official list of the Mojaloop project contributors for this file.
14+
Names of the original copyright holders (individuals or organizations)
15+
should be listed with a '*' in the first column. People who have
16+
contributed from an organization can be listed under the organization
17+
that actually holds the copyright for their contributions (see the
18+
Mojaloop Foundation for an example). Those individuals should have
19+
their names indented and be marked with a '-'. Email address can be added
20+
optionally within square brackets <email>.
21+
22+
* Mojaloop Foundation
23+
- Name Surname <[email protected]>
24+
25+
* Infitx
26+
- Steven Oderayi <[email protected]>
27+
28+
--------------
29+
******/
30+
31+
'use strict'
32+
33+
import * as Backend from './backend'
34+
import * as Outbound from './outbound'
35+
export { Backend, Outbound }
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/* eslint-disable @typescript-eslint/no-namespace */
2+
3+
export * as openapi from './openapi'
4+
export * from './schemas'
5+
export * from './types'

0 commit comments

Comments
 (0)