Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
172 changes: 86 additions & 86 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@
"@redocly/cli": "^1.5.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"audit-ci": "^7.1.0",
"browser-sync": "^3.0.3",
"diff": "^7.0.0",
Expand Down
3 changes: 2 additions & 1 deletion src/sdk-scheme-adapter/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@
'use strict'

import * as V2_0_0 from './v2_0_0'
export { V2_0_0 }
import * as V2_1_0 from './v2_1_0'
export { V2_0_0, V2_1_0 }
5 changes: 5 additions & 0 deletions src/sdk-scheme-adapter/v2_1_0/backend/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/* eslint-disable @typescript-eslint/no-namespace */

export * as openapi from './openapi'
export * from './schemas'
export * from './types'
35 changes: 35 additions & 0 deletions src/sdk-scheme-adapter/v2_1_0/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*****
License
--------------
Copyright © 2020-2025 Mojaloop Foundation
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

http://www.apache.org/licenses/LICENSE-2.0

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.

Contributors
--------------
This is the official list of the Mojaloop project contributors for this file.
Names of the original copyright holders (individuals or organizations)
should be listed with a '*' in the first column. People who have
contributed from an organization can be listed under the organization
that actually holds the copyright for their contributions (see the
Mojaloop Foundation for an example). Those individuals should have
their names indented and be marked with a '-'. Email address can be added
optionally within square brackets <email>.

* Mojaloop Foundation
- Name Surname <name.surname@mojaloop.io>

* Infitx
- Steven Oderayi <steven.oderayi@infitx.com>

--------------
******/

'use strict'

import * as Backend from './backend'
import * as Outbound from './outbound'
export { Backend, Outbound }
5 changes: 5 additions & 0 deletions src/sdk-scheme-adapter/v2_1_0/outbound/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/* eslint-disable @typescript-eslint/no-namespace */

export * as openapi from './openapi'
export * from './schemas'
export * from './types'