email-notifier 14.0.2 → 14.1.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/.circleci/config.yml +3 -2
- package/.grype.yaml +16 -0
- package/.nvmrc +1 -1
- package/CHANGELOG.md +14 -0
- package/CODEOWNERS +1 -1
- package/LICENSE.md +4 -5
- package/app.js +9 -5
- package/package.json +23 -21
- package/src/lib/enum.js +5 -5
- package/src/lib/healthCheck/subServiceHealth.js +9 -5
- package/src/lib/kafka/consumer.js +9 -5
- package/src/lib/kafka/index.js +5 -5
- package/src/lib/kafka/producer.js- +5 -5
- package/src/lib/utility.js +5 -5
- package/src/nodeMailer/sendMail.js +9 -5
- package/src/observables/actions.js +9 -5
- package/src/observables/index.js +9 -5
- package/src/setup.js +9 -5
- package/test/unit/lib/kafka/consumer.test.js +5 -5
- package/test/unit/lib/kafka/producer.test--.js +5 -5
- package/test/unit/nodeMailer/sendMail.test.js +9 -5
- package/test/unit/observables/action.test.js +9 -5
- package/test/unit/templates/index.test.js +9 -5
package/.circleci/config.yml
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
version: 2.1
|
|
2
2
|
setup: true
|
|
3
3
|
orbs:
|
|
4
|
-
build: mojaloop/build@1.0.
|
|
4
|
+
build: mojaloop/build@1.0.64
|
|
5
5
|
workflows:
|
|
6
6
|
setup:
|
|
7
7
|
jobs:
|
|
8
8
|
- build/workflow:
|
|
9
|
+
context: org-global
|
|
9
10
|
filters:
|
|
10
11
|
tags:
|
|
11
|
-
only: /v\d+(\.\d+){2}(-[a-zA-Z-][0-9a-zA-Z-]*\.\d+)?/
|
|
12
|
+
only: /v\d+(\.\d+){2}(-[a-zA-Z-][0-9a-zA-Z-]*\.\d+)?/
|
package/.grype.yaml
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
ignore:
|
|
2
|
+
# Ignore cross-spawn vulnerabilities by CVE ID due to false positive
|
|
3
|
+
# as grype looks at package-lock.json where it shows versions with
|
|
4
|
+
# vulnerabilities, npm ls shows only 7.0.6 verion is used
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
# Set output format defaults
|
|
8
|
+
output:
|
|
9
|
+
- "table"
|
|
10
|
+
- "json"
|
|
11
|
+
|
|
12
|
+
# Modify your CircleCI job to check critical count
|
|
13
|
+
search:
|
|
14
|
+
scope: "squashed"
|
|
15
|
+
quiet: false
|
|
16
|
+
check-for-app-update: false
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
22.15.1
|
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
|
+
## [14.1.0](https://github.com/mojaloop/email-notifier/compare/v14.0.3...v14.1.0) (2025-05-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* node version upgrade to v22.15.1 ([#221](https://github.com/mojaloop/email-notifier/issues/221)) ([ebfdbc4](https://github.com/mojaloop/email-notifier/commit/ebfdbc458bf340cc9a00cb1394ad8d1ff978701b))
|
|
11
|
+
|
|
12
|
+
### [14.0.3](https://github.com/mojaloop/email-notifier/compare/v14.0.2...v14.0.3) (2025-02-25)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Chore
|
|
16
|
+
|
|
17
|
+
* maintenance updates ([#219](https://github.com/mojaloop/email-notifier/issues/219)) ([4dcc12f](https://github.com/mojaloop/email-notifier/commit/4dcc12fe8afc3c81e8d177053284fdc3b978666f))
|
|
18
|
+
|
|
5
19
|
### [14.0.2](https://github.com/mojaloop/email-notifier/compare/v14.0.1...v14.0.2) (2025-01-16)
|
|
6
20
|
|
|
7
21
|
### [14.0.1](https://github.com/mojaloop/email-notifier/compare/v14.0.0...v14.0.1) (2025-01-15)
|
package/CODEOWNERS
CHANGED
package/LICENSE.md
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
# LICENSE
|
|
2
2
|
|
|
3
|
-
Copyright © 2020 Mojaloop Foundation
|
|
3
|
+
Copyright © 2020-2025 Mojaloop Foundation
|
|
4
4
|
|
|
5
|
-
The Mojaloop files are made available by the Mojaloop Foundation under the Apache License, Version 2.0
|
|
6
|
-
(the "License") and you may not use these files except in compliance with the [License](http://www.apache.org/licenses/LICENSE-2.0).
|
|
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.
|
|
7
6
|
|
|
8
|
-
You may obtain a copy of the License at
|
|
7
|
+
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
9
8
|
|
|
10
|
-
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
|
|
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.
|
package/app.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
|
* Valentin Genev <valentin.genev@modusbox.com>
|
|
21
25
|
* Deon Botha <deon.botha@modusbox.com>
|
|
22
26
|
--------------
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "email-notifier",
|
|
3
|
-
"version": "14.0
|
|
3
|
+
"version": "14.1.0",
|
|
4
4
|
"description": "email notifier to monitor the notification kafka topic and send emails.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "app.js",
|
|
@@ -47,49 +47,51 @@
|
|
|
47
47
|
"dep:update": "npx ncu -u"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@hapi/hapi": "21.
|
|
51
|
-
"@mojaloop/central-services-error-handling": "13.0
|
|
52
|
-
"@mojaloop/central-services-health": "15.
|
|
53
|
-
"@mojaloop/central-services-logger": "11.
|
|
54
|
-
"@mojaloop/central-services-metrics": "12.
|
|
55
|
-
"@mojaloop/central-services-shared": "18.
|
|
56
|
-
"@mojaloop/central-services-stream": "11.
|
|
57
|
-
"@mojaloop/event-sdk": "14.1
|
|
50
|
+
"@hapi/hapi": "21.4.0",
|
|
51
|
+
"@mojaloop/central-services-error-handling": "13.1.0",
|
|
52
|
+
"@mojaloop/central-services-health": "15.1.0",
|
|
53
|
+
"@mojaloop/central-services-logger": "11.9.0",
|
|
54
|
+
"@mojaloop/central-services-metrics": "12.6.0",
|
|
55
|
+
"@mojaloop/central-services-shared": "18.26.2",
|
|
56
|
+
"@mojaloop/central-services-stream": "11.6.0",
|
|
57
|
+
"@mojaloop/event-sdk": "14.5.1",
|
|
58
58
|
"ajv": "8.17.1",
|
|
59
59
|
"ajv-keywords": "5.1.0",
|
|
60
60
|
"camelcase": "8.0.0",
|
|
61
61
|
"check-types": "11.2.3",
|
|
62
|
-
"config": "
|
|
63
|
-
"json-rules-engine": "7.3.
|
|
62
|
+
"config": "4.0.0",
|
|
63
|
+
"json-rules-engine": "7.3.1",
|
|
64
64
|
"lazy-ass": "2.0.3",
|
|
65
65
|
"lodash": "4.17.21",
|
|
66
66
|
"mustache": "4.2.0",
|
|
67
|
-
"nodemailer": "
|
|
68
|
-
"rxjs": "7.8.
|
|
67
|
+
"nodemailer": "7.0.3",
|
|
68
|
+
"rxjs": "7.8.2",
|
|
69
69
|
"rxjs-compat": "6.6.7",
|
|
70
70
|
"uuid4": "2.0.3"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"audit-ci": "
|
|
73
|
+
"audit-ci": "7.1.0",
|
|
74
74
|
"jsonpath": "1.1.1",
|
|
75
75
|
"nodemailer-mock": "2.0.8",
|
|
76
|
-
"nodemon": "3.1.
|
|
77
|
-
"npm-check-updates": "
|
|
76
|
+
"nodemon": "3.1.10",
|
|
77
|
+
"npm-check-updates": "18.0.1",
|
|
78
78
|
"npm-run-all": "4.1.5",
|
|
79
|
-
"nyc": "
|
|
79
|
+
"nyc": "17.1.0",
|
|
80
80
|
"pre-commit": "1.2.2",
|
|
81
81
|
"proxyquire": "2.1.3",
|
|
82
|
-
"replace": "
|
|
82
|
+
"replace": "1.2.2",
|
|
83
83
|
"rewire": "7.0.0",
|
|
84
84
|
"rxjs-marbles": "7.0.1",
|
|
85
|
-
"sinon": "
|
|
85
|
+
"sinon": "20.0.0",
|
|
86
86
|
"standard": "17.1.2",
|
|
87
|
-
"standard-version": "
|
|
88
|
-
"tap-spec": "
|
|
87
|
+
"standard-version": "9.5.0",
|
|
88
|
+
"tap-spec": "5.0.0",
|
|
89
|
+
"tap-xunit": "2.4.1",
|
|
89
90
|
"tape": "5.9.0",
|
|
90
91
|
"tapes": "4.1.0"
|
|
91
92
|
},
|
|
92
93
|
"overrides": {
|
|
94
|
+
"nodemailer": "7.0.3",
|
|
93
95
|
"shins": {
|
|
94
96
|
"ajv": "6.12.3",
|
|
95
97
|
"ejs": "3.1.10",
|
package/src/lib/enum.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* @file This registers all handlers for the central-ledger API
|
|
3
3
|
License
|
|
4
4
|
--------------
|
|
5
|
-
Copyright ©
|
|
6
|
-
The Mojaloop files are made available by the
|
|
5
|
+
Copyright © 2020-2025 Mojaloop Foundation
|
|
6
|
+
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
|
|
7
7
|
|
|
8
8
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
9
9
|
|
|
@@ -16,12 +16,12 @@
|
|
|
16
16
|
should be listed with a '*' in the first column. People who have
|
|
17
17
|
contributed from an organization can be listed under the organization
|
|
18
18
|
that actually holds the copyright for their contributions (see the
|
|
19
|
-
|
|
19
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
20
20
|
their names indented and be marked with a '-'. Email address can be added
|
|
21
21
|
optionally within square brackets <email>.
|
|
22
22
|
|
|
23
|
-
*
|
|
24
|
-
- Name Surname <name.surname@
|
|
23
|
+
* Mojaloop Foundation
|
|
24
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
25
25
|
|
|
26
26
|
* Georgi Georgiev <lazola.lucas@modusbox.com>
|
|
27
27
|
|
|
@@ -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
|
* Lewis Daly <lewis@vesselstech.com>
|
|
22
26
|
--------------
|
|
@@ -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
|
* Rajiv Mothilal <rajiv.mothilal@modusbox.com>
|
|
21
25
|
* Miguel de Barros <miguel.debarros@modusbox.com>
|
|
22
26
|
--------------
|
package/src/lib/kafka/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
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
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
8
|
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
should be listed with a '*' in the first column. People who have
|
|
16
16
|
contributed from an organization can be listed under the organization
|
|
17
17
|
that actually holds the copyright for their contributions (see the
|
|
18
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
19
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
20
20
|
optionally within square brackets <email>.
|
|
21
21
|
|
|
22
|
-
*
|
|
23
|
-
- Name Surname <name.surname@
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
24
24
|
|
|
25
25
|
* Rajiv Mothilal <rajiv.mothilal@modusbox.com>
|
|
26
26
|
* Miguel de Barros <miguel.debarros@modusbox.com>
|
|
@@ -1,8 +1,8 @@
|
|
|
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
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
8
|
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
should be listed with a '*' in the first column. People who have
|
|
16
16
|
contributed from an organization can be listed under the organization
|
|
17
17
|
that actually holds the copyright for their contributions (see the
|
|
18
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
19
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
20
20
|
optionally within square brackets <email>.
|
|
21
21
|
|
|
22
|
-
*
|
|
23
|
-
- Name Surname <name.surname@
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
24
24
|
|
|
25
25
|
* Rajiv Mothilal <rajiv.mothilal@modusbox.com>
|
|
26
26
|
* Miguel de Barros <miguel.debarros@modusbox.com>
|
package/src/lib/utility.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
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
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
8
|
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
should be listed with a '*' in the first column. People who have
|
|
16
16
|
contributed from an organization can be listed under the organization
|
|
17
17
|
that actually holds the copyright for their contributions (see the
|
|
18
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
19
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
20
20
|
optionally within square brackets <email>.
|
|
21
21
|
|
|
22
|
-
*
|
|
23
|
-
- Name Surname <name.surname@
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
24
24
|
|
|
25
25
|
* Lazola Lucas <lazola.lucas@modusbox.com>
|
|
26
26
|
* Rajiv Mothilal <rajiv.mothilal@modusbox.com>
|
|
@@ -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
|
* Rajiv Mothilal <rajiv.mothilal@modusbox.com>
|
|
21
25
|
* Miguel de Barros <miguel.debarros@modusbox.com>
|
|
22
26
|
* Lewis Daly <lewis@vesselstech.com>
|
|
@@ -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
|
* Valentin Genev <valentin.genev@modusbox.com>
|
|
21
25
|
* Deon Botha <deon.botha@modusbox.com>
|
|
22
26
|
--------------
|
package/src/observables/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,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
|
* Valentin Genev <valentin.genev@modusbox.com>
|
|
21
25
|
* Deon Botha <deon.botha@modusbox.com>
|
|
22
26
|
--------------
|
package/src/setup.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
|
* Valentin Genev <valentin.genev@modusbox.com>
|
|
21
25
|
* Deon Botha <deon.botha@modusbox.com>
|
|
22
26
|
--------------
|
|
@@ -1,8 +1,8 @@
|
|
|
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
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
8
|
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
should be listed with a '*' in the first column. People who have
|
|
16
16
|
contributed from an organization can be listed under the organization
|
|
17
17
|
that actually holds the copyright for their contributions (see the
|
|
18
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
19
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
20
20
|
optionally within square brackets <email>.
|
|
21
21
|
|
|
22
|
-
*
|
|
23
|
-
- Name Surname <name.surname@
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
24
24
|
|
|
25
25
|
* Georgi Georgiev <georgi.georgiev@modusbox.com>
|
|
26
26
|
* Lewis Daly <lewis@vesselstech.com>
|
|
@@ -1,8 +1,8 @@
|
|
|
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
7
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
8
|
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
should be listed with a '*' in the first column. People who have
|
|
16
16
|
contributed from an organization can be listed under the organization
|
|
17
17
|
that actually holds the copyright for their contributions (see the
|
|
18
|
-
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
19
19
|
their names indented and be marked with a '-'. Email address can be added
|
|
20
20
|
optionally within square brackets <email>.
|
|
21
21
|
|
|
22
|
-
*
|
|
23
|
-
- Name Surname <name.surname@
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
24
24
|
|
|
25
25
|
* Rajiv Mothilal <rajiv.mothilal@modusbox.com>
|
|
26
26
|
* Miguel de Barros <miguel.debarros@modusbox.com>
|
|
@@ -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
|
- Shashikant Hirugade <shashikant.hirugade@modusbox.com>
|
|
22
26
|
--------------
|
|
@@ -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
|
- Shashikant Hirugade <shashikant.hirugade@modusbox.com>
|
|
22
26
|
--------------
|
|
@@ -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
|
- Shashikant Hirugade <shashikant.hirugade@modusbox.com>
|
|
22
26
|
--------------
|