quoting-service 17.0.0 → 17.0.2
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/README.md +4 -1
- package/package.json +4 -4
- package/src/api/bulkQuotes/{id}/error.js +8 -11
- package/src/api/bulkQuotes/{id}.js +13 -11
- package/src/api/bulkQuotes.js +13 -11
- package/src/api/health.js +8 -5
- package/src/api/index.js +9 -4
- package/src/api/plugins/index.js +26 -0
- package/src/api/plugins/loggingPlugin.js +35 -0
- package/src/api/quotes/{id}.js +13 -11
- package/src/api/quotes.js +13 -11
- package/src/api/routes.js +9 -5
- package/src/constants.js +25 -0
- package/src/data/bulkQuotes/{id}/error.js +13 -11
- package/src/data/bulkQuotes/{id}.js +13 -11
- package/src/data/bulkQuotes.js +13 -11
- package/src/data/cachedDatabase.js +13 -11
- package/src/data/database.js +13 -11
- package/src/data/quotes/{id}/error.js +13 -11
- package/src/data/quotes/{id}.js +13 -11
- package/src/data/quotes.js +13 -11
- package/src/handlers/QuotingHandler.js +34 -2
- package/src/handlers/createConsumers.js +26 -0
- package/src/handlers/index.js +26 -0
- package/src/handlers/init.js +26 -0
- package/src/handlers/monitoringServer.js +18 -7
- package/src/handlers/plugins/health.js +22 -11
- package/src/index.js +13 -11
- package/src/lib/config.js +8 -10
- package/src/lib/dto.js +26 -0
- package/src/lib/enum.js +5 -5
- package/src/lib/http.js +13 -11
- package/src/lib/index.js +26 -0
- package/src/lib/logger.js +26 -0
- package/src/lib/payloadCache/PayloadCache.js +26 -0
- package/src/lib/payloadCache/constants.js +26 -0
- package/src/lib/payloadCache/createPayloadCache.js +26 -0
- package/src/lib/payloadCache/errors.js +26 -0
- package/src/lib/payloadCache/index.js +26 -0
- package/src/lib/payloadCache/initPayloadCache.js +26 -0
- package/src/lib/proxy.js +8 -9
- package/src/lib/startingProcess.js +26 -0
- package/src/lib/util.js +14 -11
- package/src/model/bulkQuotes.js +13 -11
- package/src/model/executeRules.js +26 -0
- package/src/model/fxQuotes.js +19 -9
- package/src/model/index.js +25 -0
- package/src/model/quotes.js +15 -15
- package/src/model/rules.js +13 -11
- package/src/server.js +13 -11
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [17.0.2](https://github.com/mojaloop/quoting-service/compare/v17.0.1...v17.0.2) (2025-01-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Chore
|
|
9
|
+
|
|
10
|
+
* update licensing and dependencies ([#384](https://github.com/mojaloop/quoting-service/issues/384)) ([fe8cfdd](https://github.com/mojaloop/quoting-service/commit/fe8cfdd61eac94fc70a2e29d15e7f7e702eacb5c)), closes [mojaloop/#3689](https://github.com/mojaloop/project/issues/3689)
|
|
11
|
+
|
|
12
|
+
### [17.0.1](https://github.com/mojaloop/quoting-service/compare/v17.0.0...v17.0.1) (2025-01-20)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Chore
|
|
16
|
+
|
|
17
|
+
* address follow up iso comments ([#385](https://github.com/mojaloop/quoting-service/issues/385)) ([012907e](https://github.com/mojaloop/quoting-service/commit/012907e206059636126d392a843c87669afc372c))
|
|
18
|
+
|
|
5
19
|
## [17.0.0](https://github.com/mojaloop/quoting-service/compare/v16.0.1...v17.0.0) (2025-01-18)
|
|
6
20
|
|
|
7
21
|
|
package/README.md
CHANGED
|
@@ -210,4 +210,7 @@ Event objects must have a type property, and an optional params property. There
|
|
|
210
210
|
```
|
|
211
211
|
## Additional Notes
|
|
212
212
|
|
|
213
|
-
|
|
213
|
+
- Since the first pass ISO20022 support doesn't cover all resources at this time
|
|
214
|
+
`api-swagger-iso20022-parties.yaml` still uses fspiop for resources that
|
|
215
|
+
weren't in the iso scope on the first pass example `/bulkQuotes`.
|
|
216
|
+
This is to ensure no regression for resources that aren't yet covered.
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "quoting-service",
|
|
3
3
|
"description": "Quoting Service hosted by a scheme",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
|
-
"version": "17.0.
|
|
5
|
+
"version": "17.0.2",
|
|
6
6
|
"author": "ModusBox",
|
|
7
7
|
"contributors": [
|
|
8
8
|
"Georgi Georgiev <georgi.georgiev@modusbox.com>",
|
|
@@ -111,10 +111,10 @@
|
|
|
111
111
|
"@hapi/inert": "7.1.0",
|
|
112
112
|
"@hapi/vision": "7.0.3",
|
|
113
113
|
"@mojaloop/central-services-error-handling": "13.0.3",
|
|
114
|
-
"@mojaloop/central-services-health": "15.0.
|
|
114
|
+
"@mojaloop/central-services-health": "15.0.1",
|
|
115
115
|
"@mojaloop/central-services-logger": "11.5.2",
|
|
116
116
|
"@mojaloop/central-services-metrics": "12.4.3",
|
|
117
|
-
"@mojaloop/central-services-shared": "18.15.
|
|
117
|
+
"@mojaloop/central-services-shared": "18.15.2",
|
|
118
118
|
"@mojaloop/central-services-stream": "11.4.2",
|
|
119
119
|
"@mojaloop/event-sdk": "14.1.2",
|
|
120
120
|
"@mojaloop/inter-scheme-proxy-cache-lib": "2.3.1",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"ajv-keywords": "5.1.0",
|
|
126
126
|
"axios": "1.7.9",
|
|
127
127
|
"blipp": "4.0.2",
|
|
128
|
-
"commander": "13.
|
|
128
|
+
"commander": "13.1.0",
|
|
129
129
|
"event-stream": "4.0.1",
|
|
130
130
|
"fast-safe-stringify": "^2.1.1",
|
|
131
131
|
"joi": "17.13.3",
|
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
// (C)2018 ModusBox Inc.
|
|
2
1
|
/*****
|
|
3
2
|
License
|
|
4
3
|
--------------
|
|
5
|
-
Copyright ©
|
|
6
|
-
The Mojaloop files are made available by the
|
|
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
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
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.
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
--------------------
|
|
12
|
-
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
13
|
-
* Project: Mowali
|
|
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.
|
|
14
10
|
|
|
15
11
|
Contributors
|
|
16
12
|
--------------
|
|
@@ -19,11 +15,12 @@
|
|
|
19
15
|
should be listed with a '*' in the first column. People who have
|
|
20
16
|
contributed from an organization can be listed under the organization
|
|
21
17
|
that actually holds the copyright for their contributions (see the
|
|
22
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
23
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
24
20
|
optionally within square brackets <email>.
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
27
24
|
|
|
28
25
|
* Henk Kodde <henk.kodde@modusbox.com>
|
|
29
26
|
* Georgi Georgiev <georgi.georgiev@modusbox.com>
|
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
// (C)2018 ModusBox Inc.
|
|
2
1
|
/*****
|
|
3
2
|
License
|
|
4
3
|
--------------
|
|
5
|
-
Copyright ©
|
|
6
|
-
The Mojaloop files are made available by the
|
|
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
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
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.
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
--------------------
|
|
12
|
-
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
13
|
-
* Project: Mowali
|
|
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.
|
|
14
10
|
|
|
15
11
|
Contributors
|
|
16
12
|
--------------
|
|
@@ -19,11 +15,17 @@
|
|
|
19
15
|
should be listed with a '*' in the first column. People who have
|
|
20
16
|
contributed from an organization can be listed under the organization
|
|
21
17
|
that actually holds the copyright for their contributions (see the
|
|
22
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
23
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
24
20
|
optionally within square brackets <email>.
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
24
|
+
|
|
25
|
+
Initial contribution
|
|
26
|
+
--------------------
|
|
27
|
+
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
28
|
+
* Project: Mowali
|
|
27
29
|
|
|
28
30
|
* Henk Kodde <henk.kodde@modusbox.com>
|
|
29
31
|
* Georgi Georgiev <georgi.georgiev@modusbox.com>
|
package/src/api/bulkQuotes.js
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
// (C)2018 ModusBox Inc.
|
|
2
1
|
/*****
|
|
3
2
|
License
|
|
4
3
|
--------------
|
|
5
|
-
Copyright ©
|
|
6
|
-
The Mojaloop files are made available by the
|
|
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
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
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.
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
--------------------
|
|
12
|
-
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
13
|
-
* Project: Mowali
|
|
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.
|
|
14
10
|
|
|
15
11
|
Contributors
|
|
16
12
|
--------------
|
|
@@ -19,11 +15,17 @@
|
|
|
19
15
|
should be listed with a '*' in the first column. People who have
|
|
20
16
|
contributed from an organization can be listed under the organization
|
|
21
17
|
that actually holds the copyright for their contributions (see the
|
|
22
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
23
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
24
20
|
optionally within square brackets <email>.
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
24
|
+
|
|
25
|
+
Initial contribution
|
|
26
|
+
--------------------
|
|
27
|
+
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
28
|
+
* Project: Mowali
|
|
27
29
|
|
|
28
30
|
* Henk Kodde <henk.kodde@modusbox.com>
|
|
29
31
|
* Georgi Georgiev <georgi.georgiev@modusbox.com>
|
package/src/api/health.js
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
/*****
|
|
2
2
|
License
|
|
3
3
|
--------------
|
|
4
|
-
Copyright ©
|
|
5
|
-
The Mojaloop files are made available by the
|
|
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
|
+
|
|
6
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
7
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.
|
|
8
10
|
|
|
9
11
|
Contributors
|
|
@@ -13,11 +15,12 @@
|
|
|
13
15
|
should be listed with a '*' in the first column. People who have
|
|
14
16
|
contributed from an organization can be listed under the organization
|
|
15
17
|
that actually holds the copyright for their contributions (see the
|
|
16
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
17
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
18
20
|
optionally within square brackets <email>.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
+
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
21
24
|
|
|
22
25
|
* ModusBox
|
|
23
26
|
- Henk Kodde <henk.kodde@modusbox.com>
|
package/src/api/index.js
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
/*****
|
|
2
2
|
License
|
|
3
3
|
--------------
|
|
4
|
-
Copyright ©
|
|
5
|
-
The Mojaloop files are made available by the
|
|
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
|
+
|
|
6
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
7
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
|
+
|
|
8
11
|
Contributors
|
|
9
12
|
--------------
|
|
10
13
|
This is the official list of the Mojaloop project contributors for this file.
|
|
@@ -12,10 +15,12 @@
|
|
|
12
15
|
should be listed with a '*' in the first column. People who have
|
|
13
16
|
contributed from an organization can be listed under the organization
|
|
14
17
|
that actually holds the copyright for their contributions (see the
|
|
15
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
16
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
17
20
|
optionally within square brackets <email>.
|
|
18
|
-
|
|
21
|
+
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
19
24
|
|
|
20
25
|
* ModusBox
|
|
21
26
|
- Rajiv Mothilal <rajiv.mothilal@modusbox.com>
|
package/src/api/plugins/index.js
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
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 <name.surname@mojaloop.io>
|
|
24
|
+
|
|
25
|
+
*****/
|
|
26
|
+
|
|
1
27
|
const loggingPlugin = require('./loggingPlugin')
|
|
2
28
|
|
|
3
29
|
module.exports = {
|
|
@@ -1,3 +1,38 @@
|
|
|
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 <name.surname@mojaloop.io>
|
|
24
|
+
|
|
25
|
+
* Infitx
|
|
26
|
+
- Vijay Kumar Guthi <vijaya.guthi@infitx.com>
|
|
27
|
+
- Kevin Leyow <kevin.leyow@infitx.com>
|
|
28
|
+
- Kalin Krustev <kalin.krustev@infitx.com>
|
|
29
|
+
- Steven Oderayi <steven.oderayi@infitx.com>
|
|
30
|
+
- Eugen Klymniuk <eugen.klymniuk@infitx.com>
|
|
31
|
+
|
|
32
|
+
--------------
|
|
33
|
+
|
|
34
|
+
******/
|
|
35
|
+
|
|
1
36
|
const { asyncStorage } = require('@mojaloop/central-services-logger/src/contextLogger')
|
|
2
37
|
const { logger } = require('../../lib') // pass though options
|
|
3
38
|
|
package/src/api/quotes/{id}.js
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
// (C)2018 ModusBox Inc.
|
|
2
1
|
/*****
|
|
3
2
|
License
|
|
4
3
|
--------------
|
|
5
|
-
Copyright ©
|
|
6
|
-
The Mojaloop files are made available by the
|
|
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
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
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.
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
--------------------
|
|
12
|
-
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
13
|
-
* Project: Mowali
|
|
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.
|
|
14
10
|
|
|
15
11
|
Contributors
|
|
16
12
|
--------------
|
|
@@ -19,11 +15,17 @@
|
|
|
19
15
|
should be listed with a '*' in the first column. People who have
|
|
20
16
|
contributed from an organization can be listed under the organization
|
|
21
17
|
that actually holds the copyright for their contributions (see the
|
|
22
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
23
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
24
20
|
optionally within square brackets <email>.
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
24
|
+
|
|
25
|
+
Initial contribution
|
|
26
|
+
--------------------
|
|
27
|
+
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
28
|
+
* Project: Mowali
|
|
27
29
|
|
|
28
30
|
* ModusBox
|
|
29
31
|
- Georgi Georgiev <georgi.georgiev@modusbox.com>
|
package/src/api/quotes.js
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
// (C)2018 ModusBox Inc.
|
|
2
1
|
/*****
|
|
3
2
|
License
|
|
4
3
|
--------------
|
|
5
|
-
Copyright ©
|
|
6
|
-
The Mojaloop files are made available by the
|
|
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
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
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.
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
--------------------
|
|
12
|
-
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
13
|
-
* Project: Mowali
|
|
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.
|
|
14
10
|
|
|
15
11
|
Contributors
|
|
16
12
|
--------------
|
|
@@ -19,11 +15,17 @@
|
|
|
19
15
|
should be listed with a '*' in the first column. People who have
|
|
20
16
|
contributed from an organization can be listed under the organization
|
|
21
17
|
that actually holds the copyright for their contributions (see the
|
|
22
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
23
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
24
20
|
optionally within square brackets <email>.
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
24
|
+
|
|
25
|
+
Initial contribution
|
|
26
|
+
--------------------
|
|
27
|
+
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
28
|
+
* Project: Mowali
|
|
27
29
|
|
|
28
30
|
* ModusBox
|
|
29
31
|
- Georgi Georgiev <georgi.georgiev@modusbox.com>
|
package/src/api/routes.js
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
/*****
|
|
2
2
|
License
|
|
3
3
|
--------------
|
|
4
|
-
Copyright ©
|
|
5
|
-
The Mojaloop files are made available by the
|
|
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
|
+
|
|
6
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
7
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
|
+
|
|
8
11
|
Contributors
|
|
9
12
|
--------------
|
|
10
13
|
This is the official list of the Mojaloop project contributors for this file.
|
|
@@ -12,11 +15,12 @@
|
|
|
12
15
|
should be listed with a '*' in the first column. People who have
|
|
13
16
|
contributed from an organization can be listed under the organization
|
|
14
17
|
that actually holds the copyright for their contributions (see the
|
|
15
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
16
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
17
20
|
optionally within square brackets <email>.
|
|
18
|
-
|
|
19
|
-
|
|
21
|
+
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
20
24
|
|
|
21
25
|
* ModusBox
|
|
22
26
|
- Steven Oderayi <steven.oderayi@modusbox.com>
|
package/src/constants.js
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
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 <name.surname@mojaloop.io>
|
|
24
|
+
*****/
|
|
25
|
+
|
|
1
26
|
const { API_TYPES } = require('@mojaloop/central-services-shared').Util.Hapi
|
|
2
27
|
|
|
3
28
|
const RESOURCES = Object.freeze({
|
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
// (C)2018 ModusBox Inc.
|
|
2
1
|
/*****
|
|
3
2
|
License
|
|
4
3
|
--------------
|
|
5
|
-
Copyright ©
|
|
6
|
-
The Mojaloop files are made available by the
|
|
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
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
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.
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
--------------------
|
|
12
|
-
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
13
|
-
* Project: Mowali
|
|
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.
|
|
14
10
|
|
|
15
11
|
Contributors
|
|
16
12
|
--------------
|
|
@@ -19,11 +15,17 @@
|
|
|
19
15
|
should be listed with a '*' in the first column. People who have
|
|
20
16
|
contributed from an organization can be listed under the organization
|
|
21
17
|
that actually holds the copyright for their contributions (see the
|
|
22
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
23
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
24
20
|
optionally within square brackets <email>.
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
24
|
+
|
|
25
|
+
Initial contribution
|
|
26
|
+
--------------------
|
|
27
|
+
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
28
|
+
* Project: Mowali
|
|
27
29
|
|
|
28
30
|
* Henk Kodde <henk.kodde@modusbox.com>
|
|
29
31
|
* Georgi Georgiev <georgi.georgiev@modusbox.com>
|
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
// (C)2018 ModusBox Inc.
|
|
2
1
|
/*****
|
|
3
2
|
License
|
|
4
3
|
--------------
|
|
5
|
-
Copyright ©
|
|
6
|
-
The Mojaloop files are made available by the
|
|
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
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
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.
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
--------------------
|
|
12
|
-
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
13
|
-
* Project: Mowali
|
|
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.
|
|
14
10
|
|
|
15
11
|
Contributors
|
|
16
12
|
--------------
|
|
@@ -19,11 +15,17 @@
|
|
|
19
15
|
should be listed with a '*' in the first column. People who have
|
|
20
16
|
contributed from an organization can be listed under the organization
|
|
21
17
|
that actually holds the copyright for their contributions (see the
|
|
22
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
23
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
24
20
|
optionally within square brackets <email>.
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
24
|
+
|
|
25
|
+
Initial contribution
|
|
26
|
+
--------------------
|
|
27
|
+
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
28
|
+
* Project: Mowali
|
|
27
29
|
|
|
28
30
|
* Henk Kodde <henk.kodde@modusbox.com>
|
|
29
31
|
* Georgi Georgiev <georgi.georgiev@modusbox.com>
|
package/src/data/bulkQuotes.js
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
// (C)2018 ModusBox Inc.
|
|
2
1
|
/*****
|
|
3
2
|
License
|
|
4
3
|
--------------
|
|
5
|
-
Copyright ©
|
|
6
|
-
The Mojaloop files are made available by the
|
|
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
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
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.
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
--------------------
|
|
12
|
-
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
13
|
-
* Project: Mowali
|
|
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.
|
|
14
10
|
|
|
15
11
|
Contributors
|
|
16
12
|
--------------
|
|
@@ -19,11 +15,17 @@
|
|
|
19
15
|
should be listed with a '*' in the first column. People who have
|
|
20
16
|
contributed from an organization can be listed under the organization
|
|
21
17
|
that actually holds the copyright for their contributions (see the
|
|
22
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
23
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
24
20
|
optionally within square brackets <email>.
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
24
|
+
|
|
25
|
+
Initial contribution
|
|
26
|
+
--------------------
|
|
27
|
+
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
28
|
+
* Project: Mowali
|
|
27
29
|
|
|
28
30
|
* Henk Kodde <henk.kodde@modusbox.com>
|
|
29
31
|
* Georgi Georgiev <georgi.georgiev@modusbox.com>
|
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
// (C)2018 ModusBox Inc.
|
|
2
1
|
/*****
|
|
3
2
|
License
|
|
4
3
|
--------------
|
|
5
|
-
Copyright ©
|
|
6
|
-
The Mojaloop files are made available by the
|
|
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
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
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.
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
--------------------
|
|
12
|
-
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
13
|
-
* Project: Mowali
|
|
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.
|
|
14
10
|
|
|
15
11
|
Contributors
|
|
16
12
|
--------------
|
|
@@ -19,11 +15,17 @@
|
|
|
19
15
|
should be listed with a '*' in the first column. People who have
|
|
20
16
|
contributed from an organization can be listed under the organization
|
|
21
17
|
that actually holds the copyright for their contributions (see the
|
|
22
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
23
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
24
20
|
optionally within square brackets <email>.
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
24
|
+
|
|
25
|
+
Initial contribution
|
|
26
|
+
--------------------
|
|
27
|
+
The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides.
|
|
28
|
+
* Project: Mowali
|
|
27
29
|
|
|
28
30
|
* Henk Kodde <henk.kodde@modusbox.com>
|
|
29
31
|
* Georgi Georgiev <georgi.georgiev@modusbox.com>
|