From ee9c68f53fd240c4fcb55eef917f386ba92aff9d Mon Sep 17 00:00:00 2001 From: Kevin Leyow Date: Mon, 27 Jan 2025 04:53:40 -0800 Subject: [PATCH] chore: update licenses and deps (#532) * chore: update licenses * chore: update deps * chore: fix * chore: update licenses --- LICENSE.md | 4 +- modules/api-svc/LICENSE.md | 9 +- modules/api-svc/package.json | 10 +- .../src/BackendEventHandler/handlers/index.js | 18 ++- ...tbound-bulk-accept-party-info-requested.js | 18 ++- ...dk-outbound-bulk-accept-quote-requested.js | 18 ++- .../sdk-outbound-bulk-response-prepared.js | 18 ++- .../api-svc/src/BackendEventHandler/index.js | 18 ++- .../types/BulkTransactionState.js | 26 ++++ .../src/BackendEventHandler/types/index.js | 26 ++++ modules/api-svc/src/ControlAgent/index.js | 35 +++-- .../handlers/bulk-quotes-requested.js | 20 +-- .../handlers/bulk-transfers-requested.js | 22 +-- .../src/FSPIOPEventHandler/handlers/index.js | 18 ++- .../handlers/party-info-requested.js | 18 ++- .../api-svc/src/FSPIOPEventHandler/index.js | 18 ++- modules/api-svc/src/InboundServer/handlers.js | 44 ++++-- modules/api-svc/src/InboundServer/index.js | 36 +++-- .../api-svc/src/InboundServer/middlewares.js | 36 +++-- modules/api-svc/src/OAuthTestServer/index.js | 39 +++-- modules/api-svc/src/OAuthTestServer/model.js | 37 +++-- .../api-svc/src/OutboundServer/handlers.js | 41 ++++-- modules/api-svc/src/OutboundServer/index.js | 36 +++-- .../api-svc/src/OutboundServer/middlewares.js | 34 +++-- modules/api-svc/src/TestServer/handlers.js | 34 +++-- modules/api-svc/src/TestServer/index.js | 36 +++-- modules/api-svc/src/config.js | 35 +++-- modules/api-svc/src/constants.js | 26 ++++ modules/api-svc/src/index.js | 36 +++-- modules/api-svc/src/lib/cache.js | 40 ++++-- modules/api-svc/src/lib/check.js | 36 +++-- modules/api-svc/src/lib/dto.js | 26 ++++ modules/api-svc/src/lib/metrics.js | 36 +++-- .../api-svc/src/lib/model/AccountsModel.js | 39 +++-- .../api-svc/src/lib/model/Async2SyncModel.js | 38 +++-- .../src/lib/model/InboundTransfersModel.js | 36 +++-- .../src/lib/model/OutboundBulkQuotesModel.js | 38 +++-- .../lib/model/OutboundBulkTransfersModel.js | 39 +++-- .../lib/model/OutboundRequestToPayModel.js | 38 +++-- .../OutboundRequestToPayTransferModel.js | 36 +++-- .../src/lib/model/OutboundTransfersModel.js | 36 +++-- modules/api-svc/src/lib/model/PartiesModel.js | 36 +++-- .../model/ProxyModel/MatchRules/Expression.js | 36 +++-- .../model/ProxyModel/MatchRules/Headers.js | 36 +++-- .../model/ProxyModel/MatchRules/MatchRule.js | 36 +++-- .../lib/model/ProxyModel/MatchRules/Path.js | 36 +++-- .../lib/model/ProxyModel/MatchRules/Query.js | 36 +++-- .../lib/model/ProxyModel/MatchRules/index.js | 36 +++-- .../api-svc/src/lib/model/ProxyModel/Route.js | 36 +++-- .../api-svc/src/lib/model/ProxyModel/index.js | 37 +++-- modules/api-svc/src/lib/model/QuotesModel.js | 40 ++++-- .../api-svc/src/lib/model/TransfersModel.js | 26 ++++ .../src/lib/model/common/BackendError.js | 36 +++-- modules/api-svc/src/lib/model/common/Enums.js | 35 +++-- .../model/common/PersistentStateMachine.js | 36 +++-- modules/api-svc/src/lib/model/common/index.js | 36 +++-- modules/api-svc/src/lib/model/index.js | 34 +++-- .../api-svc/src/lib/model/lib/deferredJob.js | 44 ++++-- modules/api-svc/src/lib/model/lib/index.js | 26 ++++ .../lib/model/lib/requests/backendRequests.js | 36 +++-- .../src/lib/model/lib/requests/common.js | 34 +++-- .../src/lib/model/lib/requests/index.js | 34 +++-- modules/api-svc/src/lib/model/lib/shared.js | 38 +++-- modules/api-svc/src/lib/router.js | 36 +++-- modules/api-svc/src/lib/utils.js | 26 ++++ modules/api-svc/src/lib/validate.js | 38 +++-- .../@mojaloop/sdk-standard-components.js | 35 +++-- .../__mocks__/javascript-state-machine.js | 37 +++-- modules/api-svc/test/__mocks__/redis.js | 37 +++-- modules/api-svc/test/__mocks__/uuidv4.js | 37 +++-- modules/api-svc/test/helpers.js | 26 ++++ .../partyInfoRequest.test.js | 19 ++- .../mockServers/managementService/config.js | 35 +++-- .../managementService/lib/randomphrase.js | 15 +- .../test/integration/lib/cache.test.js | 18 ++- .../test/unit/BackendEventHandler.test.js | 27 ++++ .../api-svc/test/unit/ControlClient.test.js | 25 ++++ .../test/unit/FSPIOPEventHandler.test.js | 27 ++++ .../test/unit/InboundServer-iso20022.test.js | 13 +- .../api-svc/test/unit/InboundServer.test.js | 35 +++-- modules/api-svc/test/unit/TestServer.test.js | 35 +++-- .../test/unit/api/accounts/accounts.test.js | 37 +++-- .../api-svc/test/unit/api/proxy/proxy.test.js | 37 +++-- .../test/unit/api/transfers/transfers.test.js | 37 +++-- modules/api-svc/test/unit/config.test.js | 35 +++-- modules/api-svc/test/unit/ilp.test.js | 27 ++++ modules/api-svc/test/unit/index.test.js | 35 +++-- modules/api-svc/test/unit/lib/cache.test.js | 35 +++-- .../test/unit/lib/model/AccountsModel.test.js | 37 +++-- .../lib/model/InboundTransfersModel.test.js | 41 ++++-- .../lib/model/OutboundBulkQuotesModel.test.js | 38 +++-- .../model/OutboundBulkTransfersModel.test.js | 38 +++-- .../model/OutboundRequestToPayModel.test.js | 38 +++-- .../OutboundRequestToPayTransferModel.test.js | 38 +++-- .../model/OutboundTransfersISO20022.test.js | 37 +++-- .../lib/model/OutboundTransfersModel.test.js | 35 +++-- .../test/unit/lib/model/PartiesModel.test.js | 39 +++-- .../test/unit/lib/model/QuotesModel.test.js | 38 +++-- .../unit/lib/model/TransfersModel.test.js | 37 +++-- .../common/PersistentStateMachine.test.js | 38 +++-- .../lib/requests/backendRequests.test.js | 13 +- .../test/unit/lib/model/mockedLibRequests.js | 35 +++-- modules/api-svc/test/unit/lib/utils.test.js | 25 ++++ modules/api-svc/test/unit/mockLogger.js | 36 +++-- .../test/unit/outboundApi/handlers.test.js | 35 +++-- modules/api-svc/test/unit/setup.js | 26 ++++ .../outbound-command-event-handler/LICENSE.md | 9 +- .../package.json | 4 +- .../src/api-server/app.ts | 30 +++- .../api-server/handlers/bulk-transactions.ts | 30 +++- .../src/api-server/handlers/health.ts | 30 +++- .../src/api-server/handlers/index.ts | 32 ++++- .../src/api-server/index.ts | 30 +++- .../src/api-server/models/bulk-transaction.ts | 32 ++++- .../src/api-server/models/health.ts | 30 +++- .../src/api-server/models/index.ts | 30 +++- .../api-server/services/bulk-transactions.ts | 30 +++- .../src/api-server/services/health.ts | 30 +++- .../src/application/errors.ts | 28 +++- .../src/application/handler.ts | 30 +++- .../src/application/index.ts | 32 ++++- .../bulk_transaction_agg/handlers/index.ts | 30 +++- .../prepare_sdk_outbound_bulk_response.ts | 30 +++- .../handlers/process_bulk_quotes_callback.ts | 28 +++- .../process_bulk_transfers_callback.ts | 30 +++- .../handlers/process_party_info_callback.ts | 28 +++- ...ess_sdk_outbound_bulk_accept_party_info.ts | 30 +++- .../process_sdk_outbound_bulk_accept_quote.ts | 30 +++- ...ss_sdk_outbound_bulk_party_info_request.ts | 28 +++- ...rocess_sdk_outbound_bulk_quotes_request.ts | 30 +++- .../process_sdk_outbound_bulk_request.ts | 30 +++- ...process_sdk_outbound_bulk_response_sent.ts | 30 +++- ...ess_sdk_outbound_bulk_transfers_request.ts | 28 +++- .../src/domain/bulk_transaction_agg/index.ts | 30 +++- .../src/domain/index.ts | 30 +++- .../src/shared/config.ts | 26 ++++ .../types/command_event_handler_options.ts | 30 +++- .../src/types/index.ts | 30 +++- .../src/types/repo_infra_types.ts | 28 +++- .../process_bulk_quotes_callback.test.ts | 30 +++- ...s_sdk_outbound_bulk_quotes_request.test.ts | 30 +++- .../process_bulk_accept_party_info.test.ts | 30 +++- .../process_bulk_party_info_request.test.ts | 28 +++- .../discovery/process_bulk_request.test.ts | 28 +++- .../process_party_info_callback.test.ts | 28 +++- ...prepare_sdk_outbound_bulk_response.test.ts | 30 +++- .../process_bulk_response_sent.test.ts | 28 +++- .../process_bulk_transfers_callback.test.ts | 28 +++- .../process_bulk_transfers_request.test.ts | 28 +++- ...ss_bulk_transfers_request_complete.test.ts | 28 +++- .../process_prepare_bulk_response.test.ts | 28 +++- ...ess_sdk_outbound_bulk_accept_quote.test.ts | 30 +++- ...ss_sdk_outbound_bulk_response_sent.test.ts | 30 +++- ...dk_outbound_bulk_transfers_request.test.ts | 30 +++- ...nd_bulk_accept_party_info_received.test.ts | 30 +++- ...sdk_outbound_bulk_request_received.test.ts | 30 +++- .../test/unit/api-server/app.test.ts | 26 ++++ .../test/unit/api-server/index.test.ts | 26 ++++ .../unit/api-server/routes/health.test.ts | 26 ++++ .../unit/data/bulk_transaction_request.ts | 30 +++- .../domain/bulk_transaction_agg/index.test.ts | 30 +++- .../test/unit/index.test.ts | 38 ++++- .../test/util/generator.ts | 30 +++- .../test/util/index.ts | 28 +++- .../test/util/timer.ts | 28 +++- .../outbound-domain-event-handler/LICENSE.md | 9 +- .../package.json | 2 +- .../src/api-server/app.ts | 23 +-- .../src/api-server/handlers/health.ts | 22 +-- .../src/api-server/handlers/index.ts | 22 +-- .../src/api-server/index.ts | 22 +-- .../src/api-server/models/health.ts | 22 +-- .../src/api-server/models/index.ts | 22 +-- .../src/api-server/services/health.ts | 30 +++- .../src/application/errors.ts | 15 +- .../src/application/handler.ts | 22 +-- .../handlers/bulk-quotes-callback-received.ts | 26 ++++ .../bulk_transfers_callback_received.ts | 26 ++++ .../handlers/bulk_transfers_processed.ts | 26 ++++ .../src/application/handlers/index.ts | 22 +-- .../handlers/party-info-callback-received.ts | 26 ++++ .../sdk-outbound-bulk-party-info-requested.ts | 22 +-- .../sdk-outbound-bulk-request-received.ts | 21 +-- ...tbound_bulk_accept_party_info_processed.ts | 21 +-- ...utbound_bulk_accept_party_info_received.ts | 21 +-- ...dk_outbound_bulk_accept_quote_processed.ts | 22 +-- ...sdk_outbound_bulk_accept_quote_received.ts | 21 +-- .../sdk_outbound_bulk_response_sent.ts | 26 ++++ ...tbound_bulk_transfers_request_processed.ts | 26 ++++ .../src/application/index.ts | 26 ++-- .../src/shared/config.ts | 41 +++--- .../src/types/domain_event_handler_options.ts | 21 +-- .../src/types/index.ts | 24 ++-- .../test/unit/api-server/app.test.ts | 26 ++++ .../test/unit/api-server/index.test.ts | 26 ++++ .../unit/api-server/routes/health.test.ts | 26 ++++ .../bulk-transfers-callback-received.test.ts | 24 ++-- .../party-info-callback-received.test.ts | 17 ++- ...outbound-bulk-party-info-requested.test.ts | 17 ++- .../test/unit/index.test.ts | 48 +++---- modules/private-shared-lib/package.json | 2 +- .../src/domain/base_aggregate.ts | 16 +-- .../src/domain/base_entity.ts | 14 +- .../src/domain/base_entity_state.ts | 14 +- .../src/domain/bulk_batch_entity.ts | 20 +-- .../src/domain/bulk_transaction_entity.ts | 22 +-- .../src/domain/ientity_state_repository.ts | 14 +- .../private-shared-lib/src/domain/index.ts | 14 +- .../src/domain/individual_transfer_entity.ts | 20 +-- .../private-shared-lib/src/errors/index.ts | 20 +-- .../src/errors/validation-errors.ts | 20 +-- .../src/events/base_event.ts | 20 +-- .../src/events/command_event.ts | 20 +-- .../src/events/domain_event.ts | 20 +-- .../private-shared-lib/src/events/index.ts | 20 +-- .../events/outbound_command_event/index.ts | 20 +-- .../prepare_sdk_outbound_bulk_response.ts | 20 +-- .../process_bulk_quotes_callback.ts | 20 +-- .../process_party_info_callback.ts | 18 ++- ...ess_sdk_outbound_bulk_accept_party_info.ts | 20 +-- .../process_sdk_outbound_bulk_accept_quote.ts | 20 +-- ...ss_sdk_outbound_bulk_party_info_request.ts | 18 ++- ...rocess_sdk_outbound_bulk_quotes_request.ts | 20 +-- .../process_sdk_outbound_bulk_request.ts | 20 +-- ...process_sdk_outbound_bulk_response_sent.ts | 20 +-- ...ess_sdk_outbound_bulk_transfers_request.ts | 18 ++- .../bulk_quotes_callback_processed.ts | 20 +-- .../bulk_quotes_callback_received.ts | 20 +-- .../bulk_quotes_requested.ts | 20 +-- .../bulk_transfers_callback_processed.ts | 30 ++++ .../bulk_transfers_callback_received.ts | 30 ++++ .../bulk_transfers_processed.ts | 29 ++++ .../bulk_transfers_requested.ts | 20 +-- .../src/events/outbound_domain_event/index.ts | 18 ++- .../party_info_callback_processed.ts | 20 +-- .../party_info_callback_received.ts | 20 +-- .../party_info_requested.ts | 18 ++- ...tbound_bulk_accept_party_info_processed.ts | 20 +-- ...utbound_bulk_accept_party_info_received.ts | 20 +-- ...tbound_bulk_accept_party_info_requested.ts | 18 ++- ...dk_outbound_bulk_accept_quote_processed.ts | 18 ++- ...sdk_outbound_bulk_accept_quote_received.ts | 18 ++- ...dk_outbound_bulk_accept_quote_requested.ts | 20 +-- ...d_bulk_auto_accept_party_info_requested.ts | 18 ++- ...tbound_bulk_auto_accept_quote_completed.ts | 18 ++- ...bound_bulk_party_info_request_processed.ts | 18 ++- .../sdk_outbound_bulk_party_info_requested.ts | 18 ++- ..._outbound_bulk_quotes_request_processed.ts | 20 +-- .../sdk_outbound_bulk_request_received.ts | 20 +-- .../sdk_outbound_bulk_response_prepared.ts | 18 ++- .../sdk_outbound_bulk_response_sent.ts | 18 ++- ...dk_outbound_bulk_response_set_processed.ts | 30 ++++ ...tbound_bulk_transfers_request_processed.ts | 30 ++++ modules/private-shared-lib/src/index.ts | 19 +-- modules/private-shared-lib/src/infra/index.ts | 14 +- .../infra/inmemory_bulk_transaction_repo.ts | 22 +-- .../src/infra/kafka_command_event_consumer.ts | 20 +-- .../src/infra/kafka_command_event_producer.ts | 20 +-- .../src/infra/kafka_domain_event_consumer.ts | 20 +-- .../src/infra/kafka_domain_event_producer.ts | 20 +-- .../src/infra/kafka_event_consumer.ts | 22 +-- .../src/infra/kafka_event_producer.ts | 20 +-- .../src/infra/redis_bulk_transaction_repo.ts | 20 +-- .../src/types/bulk_transaction_entity_repo.ts | 21 +-- .../src/types/events/PartyInfoRequest.ts | 30 ++++ .../src/types/events/PartyResponse.ts | 30 ++++ .../src/types/events/index.ts | 30 ++++ modules/private-shared-lib/src/types/index.ts | 19 +-- .../src/types/infra/iMessageTypes.ts | 19 ++- .../types/infra/icommand-event-producer.ts | 14 +- .../src/types/infra/idomain-event-producer.ts | 14 +- .../src/types/infra/ievent-consumer.ts | 14 +- .../src/types/infra/ievent-producer.ts | 14 +- .../infra/ikafka_event_consumer_options.ts | 21 +-- .../infra/ikafka_event_producer_options.ts | 21 +-- .../src/types/infra/index.ts | 16 +-- .../src/types/infra/irun_handler.ts | 14 +- .../private-shared-lib/src/utils/crypto.ts | 14 +- .../src/utils/enum_utils.ts | 21 +-- modules/private-shared-lib/src/utils/index.ts | 14 +- .../private-shared-lib/src/values/enums.ts | 15 +- .../private-shared-lib/src/values/index.ts | 21 +-- .../integration/infra/kafka_generic.test.ts | 39 ++++- .../test/integration/infra/kafkajs.test.ts | 35 ++++- .../test/unit/events/command_event.test.ts | 22 +-- .../test/unit/events/domain_event.test.ts | 22 +-- .../party_info_callback_received.test.ts | 16 +-- yarn.lock | 135 +++++++++--------- 288 files changed, 5898 insertions(+), 1841 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index d28c9d19f..8d0890657 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,9 +1,9 @@ # LICENSE -Copyright © 2020-2024 Mojaloop Foundation +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. \ No newline at end of file +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. diff --git a/modules/api-svc/LICENSE.md b/modules/api-svc/LICENSE.md index 26fb7bddf..8d0890657 100644 --- a/modules/api-svc/LICENSE.md +++ b/modules/api-svc/LICENSE.md @@ -1,10 +1,9 @@ # LICENSE -Copyright © 2017 Bill & Melinda Gates Foundation +Copyright © 2020-2025 Mojaloop Foundation -The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 -(the "License") and you may not use these files except in compliance with the [License](http://www.apache.org/licenses/LICENSE-2.0). You may obtain a copy of the License at +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. -[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) +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](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. diff --git a/modules/api-svc/package.json b/modules/api-svc/package.json index bb3b523b4..85b4b7770 100644 --- a/modules/api-svc/package.json +++ b/modules/api-svc/package.json @@ -45,9 +45,9 @@ "Kamuela Franco ", "Steven Oderayi ", "Valentin Genev ", - "Shashikant Hirugade ", + "Shashikant Hirugade ", "Paweł Marzec ", - "Kevin Leyow ", "Miguel de Barros ", "Yevhen Kyriukha " ], @@ -65,10 +65,10 @@ "dependencies": { "@koa/cors": "^5.0.0", "@mojaloop/api-snippets": "17.7.9", - "@mojaloop/central-services-error-handling": "^13.0.3", + "@mojaloop/central-services-error-handling": "^13.0.4", "@mojaloop/central-services-logger": "^11.5.3", "@mojaloop/central-services-metrics": "^12.4.4", - "@mojaloop/central-services-shared": "^18.15.2", + "@mojaloop/central-services-shared": "^18.16.0", "@mojaloop/event-sdk": "^14.1.2", "@mojaloop/logging-bc-client-lib": "0.5.8", "@mojaloop/ml-schema-transformer-lib": "^2.5.1", @@ -114,7 +114,7 @@ "jest-junit": "^16.0.0", "npm-check-updates": "^16.7.10", "openapi-response-validator": "^12.1.3", - "openapi-typescript": "^7.5.2", + "openapi-typescript": "^7.6.0", "redis-mock": "^0.56.3", "replace": "^1.2.2", "standard-version": "^9.5.0", diff --git a/modules/api-svc/src/BackendEventHandler/handlers/index.js b/modules/api-svc/src/BackendEventHandler/handlers/index.js index a5abb5b59..fd671884c 100644 --- a/modules/api-svc/src/BackendEventHandler/handlers/index.js +++ b/modules/api-svc/src/BackendEventHandler/handlers/index.js @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + + * Mojaloop Foundation + - Name Surname + * Modusbox - Yevhen Kyriukha -------------- ******/ - module.exports = { ...require('./sdk-outbound-bulk-accept-party-info-requested'), ...require('./sdk-outbound-bulk-accept-quote-requested'), diff --git a/modules/api-svc/src/BackendEventHandler/handlers/sdk-outbound-bulk-accept-party-info-requested.js b/modules/api-svc/src/BackendEventHandler/handlers/sdk-outbound-bulk-accept-party-info-requested.js index e2d062443..f51328c4b 100644 --- a/modules/api-svc/src/BackendEventHandler/handlers/sdk-outbound-bulk-accept-party-info-requested.js +++ b/modules/api-svc/src/BackendEventHandler/handlers/sdk-outbound-bulk-accept-party-info-requested.js @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + + * Mojaloop Foundation + - Name Surname + * Modusbox - Yevhen Kyriukha -------------- ******/ - const { SDKOutboundBulkAcceptPartyInfoRequestedDmEvt } = require('@mojaloop/sdk-scheme-adapter-private-shared-lib'); const { BulkTransactionState } = require('../types'); diff --git a/modules/api-svc/src/BackendEventHandler/handlers/sdk-outbound-bulk-accept-quote-requested.js b/modules/api-svc/src/BackendEventHandler/handlers/sdk-outbound-bulk-accept-quote-requested.js index 12272a7a4..4adf56255 100644 --- a/modules/api-svc/src/BackendEventHandler/handlers/sdk-outbound-bulk-accept-quote-requested.js +++ b/modules/api-svc/src/BackendEventHandler/handlers/sdk-outbound-bulk-accept-quote-requested.js @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + + * Mojaloop Foundation + - Name Surname + * Modusbox - Yevhen Kyriukha -------------- ******/ - const { SDKOutboundBulkAcceptQuoteRequestedDmEvt } = require('@mojaloop/sdk-scheme-adapter-private-shared-lib'); const { BulkTransactionState } = require('../types'); diff --git a/modules/api-svc/src/BackendEventHandler/handlers/sdk-outbound-bulk-response-prepared.js b/modules/api-svc/src/BackendEventHandler/handlers/sdk-outbound-bulk-response-prepared.js index bf8db3dc3..8284e86a5 100644 --- a/modules/api-svc/src/BackendEventHandler/handlers/sdk-outbound-bulk-response-prepared.js +++ b/modules/api-svc/src/BackendEventHandler/handlers/sdk-outbound-bulk-response-prepared.js @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + + * Mojaloop Foundation + - Name Surname + * Modusbox - Yevhen Kyriukha -------------- ******/ - const { SDKOutboundBulkResponsePreparedDmEvt, SDKOutboundBulkResponseSentDmEvt } = require('@mojaloop/sdk-scheme-adapter-private-shared-lib'); const { BulkTransactionState } = require('../types'); diff --git a/modules/api-svc/src/BackendEventHandler/index.js b/modules/api-svc/src/BackendEventHandler/index.js index ce5ec91c2..494e42076 100644 --- a/modules/api-svc/src/BackendEventHandler/index.js +++ b/modules/api-svc/src/BackendEventHandler/index.js @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + + * Mojaloop Foundation + - Name Surname + * Modusbox - Yevhen Kyriukha -------------- ******/ - 'use strict'; const { DefaultLogger } = require('@mojaloop/logging-bc-client-lib'); diff --git a/modules/api-svc/src/BackendEventHandler/types/BulkTransactionState.js b/modules/api-svc/src/BackendEventHandler/types/BulkTransactionState.js index 181cdfd5d..4870ff7d2 100644 --- a/modules/api-svc/src/BackendEventHandler/types/BulkTransactionState.js +++ b/modules/api-svc/src/BackendEventHandler/types/BulkTransactionState.js @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ module.exports.BulkTransactionState = { WAITING_FOR_PARTY_ACCEPTANCE: 'WAITING_FOR_PARTY_ACCEPTANCE', WAITING_FOR_QUOTE_ACCEPTANCE: 'WAITING_FOR_QUOTE_ACCEPTANCE', diff --git a/modules/api-svc/src/BackendEventHandler/types/index.js b/modules/api-svc/src/BackendEventHandler/types/index.js index 1e6a287fc..b0c31f474 100644 --- a/modules/api-svc/src/BackendEventHandler/types/index.js +++ b/modules/api-svc/src/BackendEventHandler/types/index.js @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ module.exports = { ...require('./BulkTransactionState'), }; diff --git a/modules/api-svc/src/ControlAgent/index.js b/modules/api-svc/src/ControlAgent/index.js index 63ed6f384..951ef4e09 100644 --- a/modules/api-svc/src/ControlAgent/index.js +++ b/modules/api-svc/src/ControlAgent/index.js @@ -1,12 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Matt Kingston - matt.kingston@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ // This server has deliberately been written separate from any other server in the SDK. There is // some reasonable argument that it could be part of the outbound or test server. It has not been diff --git a/modules/api-svc/src/FSPIOPEventHandler/handlers/bulk-quotes-requested.js b/modules/api-svc/src/FSPIOPEventHandler/handlers/bulk-quotes-requested.js index 14f546c84..8704c481b 100644 --- a/modules/api-svc/src/FSPIOPEventHandler/handlers/bulk-quotes-requested.js +++ b/modules/api-svc/src/FSPIOPEventHandler/handlers/bulk-quotes-requested.js @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + + * Mojaloop Foundation + - Name Surname + * Modusbox - - Yevhen Kyriukha + - Yevhen Kyriukha - -------------- ******/ - const { BulkQuotesRequestedDmEvt } = require('@mojaloop/sdk-scheme-adapter-private-shared-lib'); const { OutboundBulkQuotesModel } = require('../../lib/model'); const { BulkQuotesCallbackReceivedDmEvt } = require('@mojaloop/sdk-scheme-adapter-private-shared-lib'); diff --git a/modules/api-svc/src/FSPIOPEventHandler/handlers/bulk-transfers-requested.js b/modules/api-svc/src/FSPIOPEventHandler/handlers/bulk-transfers-requested.js index 74630bb33..5dddcb8fc 100644 --- a/modules/api-svc/src/FSPIOPEventHandler/handlers/bulk-transfers-requested.js +++ b/modules/api-svc/src/FSPIOPEventHandler/handlers/bulk-transfers-requested.js @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Kevin Leyow + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Kevin Leyow -------------- ******/ - const { BulkTransfersRequestedDmEvt } = require('@mojaloop/sdk-scheme-adapter-private-shared-lib'); const { OutboundBulkTransfersModel } = require('../../lib/model'); const { BulkTransfersCallbackReceivedDmEvt } = require('@mojaloop/sdk-scheme-adapter-private-shared-lib'); diff --git a/modules/api-svc/src/FSPIOPEventHandler/handlers/index.js b/modules/api-svc/src/FSPIOPEventHandler/handlers/index.js index 27990d921..fd1dd1e21 100644 --- a/modules/api-svc/src/FSPIOPEventHandler/handlers/index.js +++ b/modules/api-svc/src/FSPIOPEventHandler/handlers/index.js @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + + * Mojaloop Foundation + - Name Surname + * Modusbox - Yevhen Kyriukha -------------- ******/ - module.exports = { ...require('./bulk-quotes-requested'), ...require('./party-info-requested'), diff --git a/modules/api-svc/src/FSPIOPEventHandler/handlers/party-info-requested.js b/modules/api-svc/src/FSPIOPEventHandler/handlers/party-info-requested.js index b48ad3977..479b39742 100644 --- a/modules/api-svc/src/FSPIOPEventHandler/handlers/party-info-requested.js +++ b/modules/api-svc/src/FSPIOPEventHandler/handlers/party-info-requested.js @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + + * Mojaloop Foundation + - Name Surname + * Modusbox - Yevhen Kyriukha -------------- ******/ - const { PartyInfoRequestedDmEvt } = require('@mojaloop/sdk-scheme-adapter-private-shared-lib'); const { PartiesModel } = require('../../lib/model'); const { PartyInfoCallbackReceivedDmEvt } = require('@mojaloop/sdk-scheme-adapter-private-shared-lib'); diff --git a/modules/api-svc/src/FSPIOPEventHandler/index.js b/modules/api-svc/src/FSPIOPEventHandler/index.js index 07201d37b..ca0ce2839 100644 --- a/modules/api-svc/src/FSPIOPEventHandler/index.js +++ b/modules/api-svc/src/FSPIOPEventHandler/index.js @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + + * Mojaloop Foundation + - Name Surname + * Modusbox - Yevhen Kyriukha -------------- ******/ - 'use strict'; const { DefaultLogger } = require('@mojaloop/logging-bc-client-lib'); diff --git a/modules/api-svc/src/InboundServer/handlers.js b/modules/api-svc/src/InboundServer/handlers.js index 77bb15d17..ccbba85f9 100644 --- a/modules/api-svc/src/InboundServer/handlers.js +++ b/modules/api-svc/src/InboundServer/handlers.js @@ -1,16 +1,34 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - * CONTRIBUTORS: * - * Steven Oderayi - steven.oderayi@modusbox.com * - * Paweł Marzec - pawel.marzec@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + * Modusbox + - Steven Oderayi + + * Modusbox + - Paweł Marzec + -------------- + ******/ 'use strict'; const { Enum } = require('@mojaloop/central-services-shared'); diff --git a/modules/api-svc/src/InboundServer/index.js b/modules/api-svc/src/InboundServer/index.js index 32c677765..fda6634a7 100644 --- a/modules/api-svc/src/InboundServer/index.js +++ b/modules/api-svc/src/InboundServer/index.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ const Koa = require('koa'); const assert = require('assert').strict; diff --git a/modules/api-svc/src/InboundServer/middlewares.js b/modules/api-svc/src/InboundServer/middlewares.js index 16c010077..42faef1ef 100644 --- a/modules/api-svc/src/InboundServer/middlewares.js +++ b/modules/api-svc/src/InboundServer/middlewares.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ const { env } = require('node:process'); const coBody = require('co-body'); const { generateSlug } = require('random-word-slugs'); diff --git a/modules/api-svc/src/OAuthTestServer/index.js b/modules/api-svc/src/OAuthTestServer/index.js index e55423cc2..40d74cc8c 100644 --- a/modules/api-svc/src/OAuthTestServer/index.js +++ b/modules/api-svc/src/OAuthTestServer/index.js @@ -1,13 +1,32 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + + -------------- + ******/ 'use strict'; const express = require('express'); diff --git a/modules/api-svc/src/OAuthTestServer/model.js b/modules/api-svc/src/OAuthTestServer/model.js index 39588df3c..86272fc7b 100644 --- a/modules/api-svc/src/OAuthTestServer/model.js +++ b/modules/api-svc/src/OAuthTestServer/model.js @@ -1,13 +1,32 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + + -------------- + ******/ class InMemoryCache { /** * @param {string} opts.clientKey Customer Key diff --git a/modules/api-svc/src/OutboundServer/handlers.js b/modules/api-svc/src/OutboundServer/handlers.js index 5e01a2c06..2417447c2 100644 --- a/modules/api-svc/src/OutboundServer/handlers.js +++ b/modules/api-svc/src/OutboundServer/handlers.js @@ -1,15 +1,32 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - * CONTRIBUTORS: * - * Steven Oderayi - steven.oderayi@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + * Infitx + - Steven Oderayi + + -------------- + ******/ 'use strict'; const safeStringify = require('fast-safe-stringify'); diff --git a/modules/api-svc/src/OutboundServer/index.js b/modules/api-svc/src/OutboundServer/index.js index a81db627f..5054d2ca4 100644 --- a/modules/api-svc/src/OutboundServer/index.js +++ b/modules/api-svc/src/OutboundServer/index.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ const http = require('http'); const Koa = require('koa'); diff --git a/modules/api-svc/src/OutboundServer/middlewares.js b/modules/api-svc/src/OutboundServer/middlewares.js index 32a8a5371..890210220 100644 --- a/modules/api-svc/src/OutboundServer/middlewares.js +++ b/modules/api-svc/src/OutboundServer/middlewares.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ const { Enum } = require('@mojaloop/central-services-shared'); const { ReturnCodes } = Enum.Http; const { ProxyModel } = require('../lib/model'); diff --git a/modules/api-svc/src/TestServer/handlers.js b/modules/api-svc/src/TestServer/handlers.js index 4eb6b7920..e46e60536 100644 --- a/modules/api-svc/src/TestServer/handlers.js +++ b/modules/api-svc/src/TestServer/handlers.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; const { Enum } = require('@mojaloop/central-services-shared'); diff --git a/modules/api-svc/src/TestServer/index.js b/modules/api-svc/src/TestServer/index.js index 0f2b6880e..88c27b507 100644 --- a/modules/api-svc/src/TestServer/index.js +++ b/modules/api-svc/src/TestServer/index.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ const Koa = require('koa'); const ws = require('ws'); diff --git a/modules/api-svc/src/config.js b/modules/api-svc/src/config.js index 6252caa71..52206b560 100644 --- a/modules/api-svc/src/config.js +++ b/modules/api-svc/src/config.js @@ -1,12 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; const fs = require('fs'); diff --git a/modules/api-svc/src/constants.js b/modules/api-svc/src/constants.js index 7b06371b6..dc79bccd8 100644 --- a/modules/api-svc/src/constants.js +++ b/modules/api-svc/src/constants.js @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ const { defaultProtocolResources } = require('@mojaloop/central-services-shared').Util.Hapi.FSPIOPHeaderValidation; const defaultVersion = '2.0'; diff --git a/modules/api-svc/src/index.js b/modules/api-svc/src/index.js index 0f99220a9..67e36127e 100644 --- a/modules/api-svc/src/index.js +++ b/modules/api-svc/src/index.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; const { hostname } = require('os'); diff --git a/modules/api-svc/src/lib/cache.js b/modules/api-svc/src/lib/cache.js index a5fc6333d..5a0439048 100644 --- a/modules/api-svc/src/lib/cache.js +++ b/modules/api-svc/src/lib/cache.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; const redis = require('redis'); @@ -352,9 +368,9 @@ class Cache { // If ttl is positive i.e >0 then set expiry time as ttl in seconds if(ttl > 0) await this._client.set(key, value, { 'EX': ttl }); - else + else await this._client.set(key, value); - + } /** diff --git a/modules/api-svc/src/lib/check.js b/modules/api-svc/src/lib/check.js index c7653dcef..6022bc2a4 100644 --- a/modules/api-svc/src/lib/check.js +++ b/modules/api-svc/src/lib/check.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Matt Kingston - matt.kingston@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Matt Kingston + -------------- + ******/ // This module maps all methods on Node assert to non-throwing "check" functions which return true // if the assertion succeeded and false otherwise diff --git a/modules/api-svc/src/lib/dto.js b/modules/api-svc/src/lib/dto.js index ef366229b..7ae23e446 100644 --- a/modules/api-svc/src/lib/dto.js +++ b/modules/api-svc/src/lib/dto.js @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /*eslint quote-props: ["error", "as-needed"]*/ const config = require('../config'); const randomUUID = require('@mojaloop/central-services-shared').Util.id(config.idGenerator); diff --git a/modules/api-svc/src/lib/metrics.js b/modules/api-svc/src/lib/metrics.js index bcc920251..c608e8627 100644 --- a/modules/api-svc/src/lib/metrics.js +++ b/modules/api-svc/src/lib/metrics.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; const http = require('http'); diff --git a/modules/api-svc/src/lib/model/AccountsModel.js b/modules/api-svc/src/lib/model/AccountsModel.js index e871451de..6a65c3536 100644 --- a/modules/api-svc/src/lib/model/AccountsModel.js +++ b/modules/api-svc/src/lib/model/AccountsModel.js @@ -1,13 +1,32 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + + -------------- + ******/ 'use strict'; const safeStringify = require('fast-safe-stringify'); diff --git a/modules/api-svc/src/lib/model/Async2SyncModel.js b/modules/api-svc/src/lib/model/Async2SyncModel.js index 7b8a25176..29831686f 100644 --- a/modules/api-svc/src/lib/model/Async2SyncModel.js +++ b/modules/api-svc/src/lib/model/Async2SyncModel.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2021 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Paweł Marzec - pawel.marzec@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Paweł Marzec + -------------- + ******/ 'use strict'; const safeStringify = require('fast-safe-stringify'); const PSM = require('./common').PersistentStateMachine; diff --git a/modules/api-svc/src/lib/model/InboundTransfersModel.js b/modules/api-svc/src/lib/model/InboundTransfersModel.js index e6f190d8d..0bcf6e2ea 100644 --- a/modules/api-svc/src/lib/model/InboundTransfersModel.js +++ b/modules/api-svc/src/lib/model/InboundTransfersModel.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; const safeStringify = require('fast-safe-stringify'); diff --git a/modules/api-svc/src/lib/model/OutboundBulkQuotesModel.js b/modules/api-svc/src/lib/model/OutboundBulkQuotesModel.js index 4a4b0e89b..e274a8325 100644 --- a/modules/api-svc/src/lib/model/OutboundBulkQuotesModel.js +++ b/modules/api-svc/src/lib/model/OutboundBulkQuotesModel.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Steven Oderayi - steven.oderayi@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Steven Oderayi + -------------- + ******/ 'use strict'; const safeStringify = require('fast-safe-stringify'); diff --git a/modules/api-svc/src/lib/model/OutboundBulkTransfersModel.js b/modules/api-svc/src/lib/model/OutboundBulkTransfersModel.js index 54b22f65e..dde530c67 100644 --- a/modules/api-svc/src/lib/model/OutboundBulkTransfersModel.js +++ b/modules/api-svc/src/lib/model/OutboundBulkTransfersModel.js @@ -1,13 +1,32 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Steven Oderayi - steven.oderayi@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Steven Oderayi + + -------------- + ******/ 'use strict'; const safeStringify = require('fast-safe-stringify'); diff --git a/modules/api-svc/src/lib/model/OutboundRequestToPayModel.js b/modules/api-svc/src/lib/model/OutboundRequestToPayModel.js index f337d7692..3d7353fe7 100644 --- a/modules/api-svc/src/lib/model/OutboundRequestToPayModel.js +++ b/modules/api-svc/src/lib/model/OutboundRequestToPayModel.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Murthy Kakarlamudi - murthy@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Murthy Kakarlamudi + -------------- + ******/ 'use strict'; const safeStringify = require('fast-safe-stringify'); diff --git a/modules/api-svc/src/lib/model/OutboundRequestToPayTransferModel.js b/modules/api-svc/src/lib/model/OutboundRequestToPayTransferModel.js index ee536aa11..a77ce8eee 100644 --- a/modules/api-svc/src/lib/model/OutboundRequestToPayTransferModel.js +++ b/modules/api-svc/src/lib/model/OutboundRequestToPayTransferModel.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; const safeStringify = require('fast-safe-stringify'); diff --git a/modules/api-svc/src/lib/model/OutboundTransfersModel.js b/modules/api-svc/src/lib/model/OutboundTransfersModel.js index beeae1ceb..95a34b45f 100644 --- a/modules/api-svc/src/lib/model/OutboundTransfersModel.js +++ b/modules/api-svc/src/lib/model/OutboundTransfersModel.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; const safeStringify = require('fast-safe-stringify'); diff --git a/modules/api-svc/src/lib/model/PartiesModel.js b/modules/api-svc/src/lib/model/PartiesModel.js index 86be51b53..d79721dcd 100644 --- a/modules/api-svc/src/lib/model/PartiesModel.js +++ b/modules/api-svc/src/lib/model/PartiesModel.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Paweł Marzec - pawel.marzec@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Paweł Marzec + -------------- + ******/ 'use strict'; const Async2SyncModel = require('./Async2SyncModel'); diff --git a/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Expression.js b/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Expression.js index eb6bae93e..49bd1eb2b 100644 --- a/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Expression.js +++ b/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Expression.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ class Expression { /** * diff --git a/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Headers.js b/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Headers.js index 70929f889..efe94d2e1 100644 --- a/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Headers.js +++ b/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Headers.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ const MatchRule = require('./MatchRule'); const Expression = require('./Expression'); diff --git a/modules/api-svc/src/lib/model/ProxyModel/MatchRules/MatchRule.js b/modules/api-svc/src/lib/model/ProxyModel/MatchRules/MatchRule.js index dd9767d01..b9bcd2b90 100644 --- a/modules/api-svc/src/lib/model/ProxyModel/MatchRules/MatchRule.js +++ b/modules/api-svc/src/lib/model/ProxyModel/MatchRules/MatchRule.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ class MatchRule { constructor() { if (this.constructor === MatchRule) { diff --git a/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Path.js b/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Path.js index d73f57956..f13aa030f 100644 --- a/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Path.js +++ b/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Path.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ const MatchRule = require('./MatchRule'); const Expression = require('./Expression'); diff --git a/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Query.js b/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Query.js index 985a052f8..b5079e22b 100644 --- a/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Query.js +++ b/modules/api-svc/src/lib/model/ProxyModel/MatchRules/Query.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ const MatchRule = require('./MatchRule'); const Expression = require('./Expression'); diff --git a/modules/api-svc/src/lib/model/ProxyModel/MatchRules/index.js b/modules/api-svc/src/lib/model/ProxyModel/MatchRules/index.js index 8483451af..7a2ed0d5b 100644 --- a/modules/api-svc/src/lib/model/ProxyModel/MatchRules/index.js +++ b/modules/api-svc/src/lib/model/ProxyModel/MatchRules/index.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ const Path = require('./Path'); const Headers = require('./Headers'); const Query = require('./Query'); diff --git a/modules/api-svc/src/lib/model/ProxyModel/Route.js b/modules/api-svc/src/lib/model/ProxyModel/Route.js index e563a5b43..700021c8b 100644 --- a/modules/api-svc/src/lib/model/ProxyModel/Route.js +++ b/modules/api-svc/src/lib/model/ProxyModel/Route.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ const { Path, Query, Headers } = require('./MatchRules'); class Route { diff --git a/modules/api-svc/src/lib/model/ProxyModel/index.js b/modules/api-svc/src/lib/model/ProxyModel/index.js index f7d508ef2..329c77d1e 100644 --- a/modules/api-svc/src/lib/model/ProxyModel/index.js +++ b/modules/api-svc/src/lib/model/ProxyModel/index.js @@ -1,13 +1,32 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + + -------------- + ******/ const { BackendError } = require('../common'); const { MojaloopRequests } = require('@mojaloop/sdk-standard-components'); const Ajv = require('ajv'); diff --git a/modules/api-svc/src/lib/model/QuotesModel.js b/modules/api-svc/src/lib/model/QuotesModel.js index 8f2345948..dd9301db6 100644 --- a/modules/api-svc/src/lib/model/QuotesModel.js +++ b/modules/api-svc/src/lib/model/QuotesModel.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Paweł Marzec - pawel.marzec@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Paweł Marzec + -------------- + ******/ 'use strict'; const Async2SyncModel = require('./Async2SyncModel'); @@ -80,8 +98,8 @@ function reformatMessage(message) { quotes: { ...message } }; } - -// generate model + +// generate model const QuotesModel = Async2SyncModel.generate({ modelName: 'QuotesModel', channelNameMethod: channelName, diff --git a/modules/api-svc/src/lib/model/TransfersModel.js b/modules/api-svc/src/lib/model/TransfersModel.js index 49dcbada5..97a16ec14 100644 --- a/modules/api-svc/src/lib/model/TransfersModel.js +++ b/modules/api-svc/src/lib/model/TransfersModel.js @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ 'use strict'; const Async2SyncModel = require('./Async2SyncModel'); diff --git a/modules/api-svc/src/lib/model/common/BackendError.js b/modules/api-svc/src/lib/model/common/BackendError.js index 4b35593ec..31e1e0e7f 100644 --- a/modules/api-svc/src/lib/model/common/BackendError.js +++ b/modules/api-svc/src/lib/model/common/BackendError.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ 'use strict'; class BackendError extends Error { diff --git a/modules/api-svc/src/lib/model/common/Enums.js b/modules/api-svc/src/lib/model/common/Enums.js index f68a65532..18788d1ed 100644 --- a/modules/api-svc/src/lib/model/common/Enums.js +++ b/modules/api-svc/src/lib/model/common/Enums.js @@ -1,14 +1,31 @@ +/***** + 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 -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ 'use strict'; // NOTE: Stick all common SDK ENUMS here. SDKStateEnum is the first attempt at consolidating and cleaning up ENUMS in the SDK. diff --git a/modules/api-svc/src/lib/model/common/PersistentStateMachine.js b/modules/api-svc/src/lib/model/common/PersistentStateMachine.js index ffc767203..77c543df3 100644 --- a/modules/api-svc/src/lib/model/common/PersistentStateMachine.js +++ b/modules/api-svc/src/lib/model/common/PersistentStateMachine.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Paweł Marzec - pawel.marzec@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Paweł Marzec + -------------- + ******/ 'use strict'; const StateMachine = require('javascript-state-machine'); diff --git a/modules/api-svc/src/lib/model/common/index.js b/modules/api-svc/src/lib/model/common/index.js index f590658e2..342b6ef35 100644 --- a/modules/api-svc/src/lib/model/common/index.js +++ b/modules/api-svc/src/lib/model/common/index.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Paweł Marzec - pawel.marzec@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Paweł Marzec + -------------- + ******/ const Enums = require('./Enums'); const { BackendError } = require('./BackendError'); const PersistentStateMachine = require('./PersistentStateMachine'); diff --git a/modules/api-svc/src/lib/model/index.js b/modules/api-svc/src/lib/model/index.js index 5366f58b8..f2fb5997d 100644 --- a/modules/api-svc/src/lib/model/index.js +++ b/modules/api-svc/src/lib/model/index.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/src/lib/model/lib/deferredJob.js b/modules/api-svc/src/lib/model/lib/deferredJob.js index dc6eb995c..30718fb5b 100644 --- a/modules/api-svc/src/lib/model/lib/deferredJob.js +++ b/modules/api-svc/src/lib/model/lib/deferredJob.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Paweł Marzec - pawel.marzec@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Paweł Marzec + -------------- + ******/ 'use strict'; const pr = require('promise-timeout'); @@ -53,7 +71,7 @@ class DeferredJob { // unsubscribe first to be sure the jobCb will be executed only once // and system resources are preserved this.unsubscribe(); - + // messages comes as stringified JSON // and we don't want to bother listener about de-serialization const parsed = JSON.parse(message); @@ -77,7 +95,7 @@ class DeferredJob { reject(err); } }); - + // ensure the whole process will finish in specified timeout // throws error if timeout happens return pr.timeout(promise, timeout || this.defaultTimeoutInMs) @@ -93,7 +111,7 @@ class DeferredJob { this.sid = null; } } - + // trigger the deferred job async trigger(message) { // message must be stringified before passing via channel diff --git a/modules/api-svc/src/lib/model/lib/index.js b/modules/api-svc/src/lib/model/lib/index.js index bcf9e8468..c2c680b4a 100644 --- a/modules/api-svc/src/lib/model/lib/index.js +++ b/modules/api-svc/src/lib/model/lib/index.js @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ const deferredJob = require('./deferredJob'); const request = require('./requests'); const shared = require('./shared'); diff --git a/modules/api-svc/src/lib/model/lib/requests/backendRequests.js b/modules/api-svc/src/lib/model/lib/requests/backendRequests.js index 0a0ed508c..5aa6a7bc5 100644 --- a/modules/api-svc/src/lib/model/lib/requests/backendRequests.js +++ b/modules/api-svc/src/lib/model/lib/requests/backendRequests.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; const http = require('http'); diff --git a/modules/api-svc/src/lib/model/lib/requests/common.js b/modules/api-svc/src/lib/model/lib/requests/common.js index ec6e25ef2..a52b87b8f 100644 --- a/modules/api-svc/src/lib/model/lib/requests/common.js +++ b/modules/api-svc/src/lib/model/lib/requests/common.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/src/lib/model/lib/requests/index.js b/modules/api-svc/src/lib/model/lib/requests/index.js index 240175a2c..aedcb207e 100644 --- a/modules/api-svc/src/lib/model/lib/requests/index.js +++ b/modules/api-svc/src/lib/model/lib/requests/index.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; module.exports = { diff --git a/modules/api-svc/src/lib/model/lib/shared.js b/modules/api-svc/src/lib/model/lib/shared.js index 62010f5f2..10a221cf4 100644 --- a/modules/api-svc/src/lib/model/lib/shared.js +++ b/modules/api-svc/src/lib/model/lib/shared.js @@ -1,13 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; const { Errors } = require('@mojaloop/sdk-standard-components'); @@ -288,7 +304,7 @@ const mojaloopPrepareToInternalTransfer = (external, quote, ilp, checkILP) => { } if (checkILP) { internal.ilpPacket = { data: ilp.getTransactionObject(external.ilpPacket) }; - } + } } else { internal = { transferId: external.transferId, diff --git a/modules/api-svc/src/lib/router.js b/modules/api-svc/src/lib/router.js index 1e6450c81..4f99caf67 100644 --- a/modules/api-svc/src/lib/router.js +++ b/modules/api-svc/src/lib/router.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Matt Kingston - matt.kingston@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Matt Kingston + -------------- + ******/ 'use strict'; const { Enum } = require('@mojaloop/central-services-shared'); diff --git a/modules/api-svc/src/lib/utils.js b/modules/api-svc/src/lib/utils.js index c737e18bc..771979dd8 100644 --- a/modules/api-svc/src/lib/utils.js +++ b/modules/api-svc/src/lib/utils.js @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ const { WSO2Auth } = require('@mojaloop/sdk-standard-components'); const createAuthClient = (conf, logger) => { diff --git a/modules/api-svc/src/lib/validate.js b/modules/api-svc/src/lib/validate.js index 137fd9f43..9aeed8d38 100644 --- a/modules/api-svc/src/lib/validate.js +++ b/modules/api-svc/src/lib/validate.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Matt Kingston - matt.kingston@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Matt Kingston + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/__mocks__/@mojaloop/sdk-standard-components.js b/modules/api-svc/test/__mocks__/@mojaloop/sdk-standard-components.js index e7f033f50..3a68d83c4 100644 --- a/modules/api-svc/test/__mocks__/@mojaloop/sdk-standard-components.js +++ b/modules/api-svc/test/__mocks__/@mojaloop/sdk-standard-components.js @@ -1,12 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/__mocks__/javascript-state-machine.js b/modules/api-svc/test/__mocks__/javascript-state-machine.js index 5eb790727..42d3a11c0 100644 --- a/modules/api-svc/test/__mocks__/javascript-state-machine.js +++ b/modules/api-svc/test/__mocks__/javascript-state-machine.js @@ -1,12 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ const StateMachine = jest.requireActual('javascript-state-machine'); diff --git a/modules/api-svc/test/__mocks__/redis.js b/modules/api-svc/test/__mocks__/redis.js index 4988b59b6..30b62aba9 100644 --- a/modules/api-svc/test/__mocks__/redis.js +++ b/modules/api-svc/test/__mocks__/redis.js @@ -1,12 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ const redisMock = require('redis-mock'); const { promisify } = require('util'); diff --git a/modules/api-svc/test/__mocks__/uuidv4.js b/modules/api-svc/test/__mocks__/uuidv4.js index 2a82c8f4e..3ec294e1e 100644 --- a/modules/api-svc/test/__mocks__/uuidv4.js +++ b/modules/api-svc/test/__mocks__/uuidv4.js @@ -1,12 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ let id = 0; diff --git a/modules/api-svc/test/helpers.js b/modules/api-svc/test/helpers.js index a40ee0af6..dcb94ecd2 100644 --- a/modules/api-svc/test/helpers.js +++ b/modules/api-svc/test/helpers.js @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ const AxiosMockAdapter = require('axios-mock-adapter'); const { axios } = require('@mojaloop/sdk-standard-components'); const { ISO_20022_HEADER_PART} = require('../src/constants'); diff --git a/modules/api-svc/test/integration-pm4ml/FSPIOPEventHandler/partyInfoRequest.test.js b/modules/api-svc/test/integration-pm4ml/FSPIOPEventHandler/partyInfoRequest.test.js index 2f8c6e3af..90d0f9cae 100644 --- a/modules/api-svc/test/integration-pm4ml/FSPIOPEventHandler/partyInfoRequest.test.js +++ b/modules/api-svc/test/integration-pm4ml/FSPIOPEventHandler/partyInfoRequest.test.js @@ -1,23 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + + * Infitx - Vijay Kumar Guthi . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; const fs = require('fs'); diff --git a/modules/api-svc/test/integration-pm4ml/mockServers/managementService/lib/randomphrase.js b/modules/api-svc/test/integration-pm4ml/mockServers/managementService/lib/randomphrase.js index 109c2e95f..2e8bd5c5d 100644 --- a/modules/api-svc/test/integration-pm4ml/mockServers/managementService/lib/randomphrase.js +++ b/modules/api-svc/test/integration-pm4ml/mockServers/managementService/lib/randomphrase.js @@ -1,10 +1,13 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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. @@ -12,12 +15,12 @@ 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Mowali + + * Mojaloop Foundation + - Name Surname -------------- ******/ diff --git a/modules/api-svc/test/integration/lib/cache.test.js b/modules/api-svc/test/integration/lib/cache.test.js index 3b7524d0c..5b1137d85 100644 --- a/modules/api-svc/test/integration/lib/cache.test.js +++ b/modules/api-svc/test/integration/lib/cache.test.js @@ -1,15 +1,12 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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. - Initial contribution - -------------------- - The initial functionality and code base was donated by the Mowali project working in conjunction with MTN and Orange as service provides. - * Project: Mowali + 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 -------------- @@ -18,11 +15,12 @@ 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + + * Mojaloop Foundation + - Name Surname * Crosslake - Lewis Daly diff --git a/modules/api-svc/test/unit/BackendEventHandler.test.js b/modules/api-svc/test/unit/BackendEventHandler.test.js index 1e3f2191f..8de68e922 100644 --- a/modules/api-svc/test/unit/BackendEventHandler.test.js +++ b/modules/api-svc/test/unit/BackendEventHandler.test.js @@ -1,3 +1,30 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ + const { BackendEventHandler } = require('../../src/BackendEventHandler'); const { BackendRequests } = require('../../src/lib/model/lib/requests'); const { SDKStateEnum } = require('../../src/lib/model/common'); diff --git a/modules/api-svc/test/unit/ControlClient.test.js b/modules/api-svc/test/unit/ControlClient.test.js index ee4ec0ac9..22578d973 100644 --- a/modules/api-svc/test/unit/ControlClient.test.js +++ b/modules/api-svc/test/unit/ControlClient.test.js @@ -1,4 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ const ControlAgent = require('~/ControlAgent'); const TestControlServer = require('./ControlServer'); const { Logger } = require('@mojaloop/sdk-standard-components'); diff --git a/modules/api-svc/test/unit/FSPIOPEventHandler.test.js b/modules/api-svc/test/unit/FSPIOPEventHandler.test.js index 2ec4178bd..26a1bbf5e 100644 --- a/modules/api-svc/test/unit/FSPIOPEventHandler.test.js +++ b/modules/api-svc/test/unit/FSPIOPEventHandler.test.js @@ -1,3 +1,30 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ + 'use strict'; process.env.PEER_ENDPOINT = '172.17.0.3:4000'; diff --git a/modules/api-svc/test/unit/InboundServer-iso20022.test.js b/modules/api-svc/test/unit/InboundServer-iso20022.test.js index 0dbfc4405..0bce16849 100644 --- a/modules/api-svc/test/unit/InboundServer-iso20022.test.js +++ b/modules/api-svc/test/unit/InboundServer-iso20022.test.js @@ -1,9 +1,11 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -13,11 +15,12 @@ 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + + * Mojaloop Foundation + - Name Surname * Eugen Klymniuk -------------- diff --git a/modules/api-svc/test/unit/InboundServer.test.js b/modules/api-svc/test/unit/InboundServer.test.js index b18962710..1ad4760a1 100644 --- a/modules/api-svc/test/unit/InboundServer.test.js +++ b/modules/api-svc/test/unit/InboundServer.test.js @@ -1,12 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/unit/TestServer.test.js b/modules/api-svc/test/unit/TestServer.test.js index 1b16e14e3..0a0911bdc 100644 --- a/modules/api-svc/test/unit/TestServer.test.js +++ b/modules/api-svc/test/unit/TestServer.test.js @@ -1,12 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/unit/api/accounts/accounts.test.js b/modules/api-svc/test/unit/api/accounts/accounts.test.js index 24151931b..a264a502b 100644 --- a/modules/api-svc/test/unit/api/accounts/accounts.test.js +++ b/modules/api-svc/test/unit/api/accounts/accounts.test.js @@ -1,12 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/unit/api/proxy/proxy.test.js b/modules/api-svc/test/unit/api/proxy/proxy.test.js index 30a27f459..5be2aa413 100644 --- a/modules/api-svc/test/unit/api/proxy/proxy.test.js +++ b/modules/api-svc/test/unit/api/proxy/proxy.test.js @@ -1,12 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/unit/api/transfers/transfers.test.js b/modules/api-svc/test/unit/api/transfers/transfers.test.js index 63dfd0950..e80285182 100644 --- a/modules/api-svc/test/unit/api/transfers/transfers.test.js +++ b/modules/api-svc/test/unit/api/transfers/transfers.test.js @@ -1,12 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/unit/config.test.js b/modules/api-svc/test/unit/config.test.js index ea7fcea94..5a1a2e379 100644 --- a/modules/api-svc/test/unit/config.test.js +++ b/modules/api-svc/test/unit/config.test.js @@ -1,12 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ const fs = require('fs'); const path = require('path'); diff --git a/modules/api-svc/test/unit/ilp.test.js b/modules/api-svc/test/unit/ilp.test.js index 001f290bc..c77ab861d 100644 --- a/modules/api-svc/test/unit/ilp.test.js +++ b/modules/api-svc/test/unit/ilp.test.js @@ -1,3 +1,30 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ + const { Ilp, Logger } = jest.requireActual('@mojaloop/sdk-standard-components'); const mocks = require('./lib/model/data/mocks'); diff --git a/modules/api-svc/test/unit/index.test.js b/modules/api-svc/test/unit/index.test.js index a634198ff..f1b11d8e1 100644 --- a/modules/api-svc/test/unit/index.test.js +++ b/modules/api-svc/test/unit/index.test.js @@ -1,12 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/unit/lib/cache.test.js b/modules/api-svc/test/unit/lib/cache.test.js index 164e5af77..13af49e73 100644 --- a/modules/api-svc/test/unit/lib/cache.test.js +++ b/modules/api-svc/test/unit/lib/cache.test.js @@ -1,12 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/unit/lib/model/AccountsModel.test.js b/modules/api-svc/test/unit/lib/model/AccountsModel.test.js index 9274070db..73e41705e 100644 --- a/modules/api-svc/test/unit/lib/model/AccountsModel.test.js +++ b/modules/api-svc/test/unit/lib/model/AccountsModel.test.js @@ -1,12 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Yevhen Kyriukha - yevhen.kyriukha@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Yevhen Kyriukha - + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/unit/lib/model/InboundTransfersModel.test.js b/modules/api-svc/test/unit/lib/model/InboundTransfersModel.test.js index 09c79fd3f..4fe3c4cad 100644 --- a/modules/api-svc/test/unit/lib/model/InboundTransfersModel.test.js +++ b/modules/api-svc/test/unit/lib/model/InboundTransfersModel.test.js @@ -1,12 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Vassilis Barzokas - vassilis.barzokas@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Vassilis Barzokas + -------------- + ******/ 'use strict'; process.env.PEER_ENDPOINT = '172.17.0.3:4000'; @@ -38,7 +57,7 @@ const getBulkTransfersMojaloopResponse = require('./data/getBulkTransfersMojaloo const notificationToPayee = require('./data/notificationToPayee'); const notificationAbortedToPayee = require('./data/notificationAbortedToPayee'); const notificationReservedToPayee = require('./data/notificationReservedToPayee'); -const fxNotificationToBackend = require('./data/fxNotificationToBackend.json'); +const fxNotificationToBackend = require('./data/fxNotificationToBackend.json'); const fxNotificationAbortedToBackend = require('./data/fxNotificationAbortedToBackend.json'); const fxNotificationReservedToBackend = require('./data/fxNotificationReservedToBackend.json'); @@ -859,7 +878,7 @@ describe('inboundModel', () => { }); model.saveFxState = jest.fn().mockReturnValue(Promise.resolve({})); - await model.sendFxPatchNotificationToBackend(notif.data, conversionId); + await model.sendFxPatchNotificationToBackend(notif.data, conversionId); expect(BackendRequests.__patchFxTransfersNotification).toHaveBeenCalledTimes(1); const call = BackendRequests.__patchFxTransfersNotification.mock.calls[0]; expect(call[0]).toEqual(expectedRequest); diff --git a/modules/api-svc/test/unit/lib/model/OutboundBulkQuotesModel.test.js b/modules/api-svc/test/unit/lib/model/OutboundBulkQuotesModel.test.js index 20456286d..c5f99d4d2 100644 --- a/modules/api-svc/test/unit/lib/model/OutboundBulkQuotesModel.test.js +++ b/modules/api-svc/test/unit/lib/model/OutboundBulkQuotesModel.test.js @@ -1,13 +1,33 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Steven Oderayi - steven.oderayi@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Steven Oderayi + + -------------- + ******/ 'use strict'; process.env.PEER_ENDPOINT = '172.17.0.3:4000'; diff --git a/modules/api-svc/test/unit/lib/model/OutboundBulkTransfersModel.test.js b/modules/api-svc/test/unit/lib/model/OutboundBulkTransfersModel.test.js index 843c31374..907d13072 100644 --- a/modules/api-svc/test/unit/lib/model/OutboundBulkTransfersModel.test.js +++ b/modules/api-svc/test/unit/lib/model/OutboundBulkTransfersModel.test.js @@ -1,13 +1,33 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Steven Oderayi - steven.oderayi@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Steven Oderayi + + -------------- + ******/ 'use strict'; process.env.PEER_ENDPOINT = '172.17.0.3:4000'; diff --git a/modules/api-svc/test/unit/lib/model/OutboundRequestToPayModel.test.js b/modules/api-svc/test/unit/lib/model/OutboundRequestToPayModel.test.js index 0d762428b..fa7f74930 100644 --- a/modules/api-svc/test/unit/lib/model/OutboundRequestToPayModel.test.js +++ b/modules/api-svc/test/unit/lib/model/OutboundRequestToPayModel.test.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Murthy Kakarlamudi - murthy@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Murthy Kakarlamudi + -------------- + ******/ 'use strict'; process.env.PEER_ENDPOINT = '172.17.0.3:4000'; diff --git a/modules/api-svc/test/unit/lib/model/OutboundRequestToPayTransferModel.test.js b/modules/api-svc/test/unit/lib/model/OutboundRequestToPayTransferModel.test.js index 4903ae0ba..fe92460b1 100644 --- a/modules/api-svc/test/unit/lib/model/OutboundRequestToPayTransferModel.test.js +++ b/modules/api-svc/test/unit/lib/model/OutboundRequestToPayTransferModel.test.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Murthy Kakarlamudi - murthy@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Murthy Kakarlamudi + -------------- + ******/ 'use strict'; process.env.PEER_ENDPOINT = '172.17.0.3:4000'; diff --git a/modules/api-svc/test/unit/lib/model/OutboundTransfersISO20022.test.js b/modules/api-svc/test/unit/lib/model/OutboundTransfersISO20022.test.js index 4dea22ca5..2f31e55b6 100644 --- a/modules/api-svc/test/unit/lib/model/OutboundTransfersISO20022.test.js +++ b/modules/api-svc/test/unit/lib/model/OutboundTransfersISO20022.test.js @@ -1,15 +1,28 @@ -/************************************************************************* - * (C) Copyright Mojaloop Foundation. 2024 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - jbush@mojaloop.io * - * * - * CONTRIBUTORS: * - * James Bush - jbush@mojaloop.io * - *************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/unit/lib/model/OutboundTransfersModel.test.js b/modules/api-svc/test/unit/lib/model/OutboundTransfersModel.test.js index 7f6f0a9e2..9c7741c5a 100644 --- a/modules/api-svc/test/unit/lib/model/OutboundTransfersModel.test.js +++ b/modules/api-svc/test/unit/lib/model/OutboundTransfersModel.test.js @@ -1,12 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/unit/lib/model/PartiesModel.test.js b/modules/api-svc/test/unit/lib/model/PartiesModel.test.js index 3ebac69ee..de85affc9 100644 --- a/modules/api-svc/test/unit/lib/model/PartiesModel.test.js +++ b/modules/api-svc/test/unit/lib/model/PartiesModel.test.js @@ -1,13 +1,32 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Paweł Marzec - pawel.marzec@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Paweł Marzec + + -------------- + ******/ 'use strict'; process.env.PEER_ENDPOINT = '172.17.0.3:4000'; diff --git a/modules/api-svc/test/unit/lib/model/QuotesModel.test.js b/modules/api-svc/test/unit/lib/model/QuotesModel.test.js index 7a9d8d41a..a4d80ff18 100644 --- a/modules/api-svc/test/unit/lib/model/QuotesModel.test.js +++ b/modules/api-svc/test/unit/lib/model/QuotesModel.test.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2021 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Paweł Marzec - pawel.marzec@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Paweł Marzec + -------------- + ******/ 'use strict'; process.env.PEER_ENDPOINT = '172.17.0.3:4000'; diff --git a/modules/api-svc/test/unit/lib/model/TransfersModel.test.js b/modules/api-svc/test/unit/lib/model/TransfersModel.test.js index d1ff06197..148464f89 100644 --- a/modules/api-svc/test/unit/lib/model/TransfersModel.test.js +++ b/modules/api-svc/test/unit/lib/model/TransfersModel.test.js @@ -1,12 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2021 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Kevin Leyow - kevin.leyow@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Kevin Leyow + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/unit/lib/model/common/PersistentStateMachine.test.js b/modules/api-svc/test/unit/lib/model/common/PersistentStateMachine.test.js index 32f16a2cc..f4f97dde5 100644 --- a/modules/api-svc/test/unit/lib/model/common/PersistentStateMachine.test.js +++ b/modules/api-svc/test/unit/lib/model/common/PersistentStateMachine.test.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Paweł Marzec - pawel.marzec@modusbox.com * - **************************************************************************/ - +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Paweł Marzec + -------------- + ******/ 'use strict'; process.env.PEER_ENDPOINT = '172.17.0.3:4000'; diff --git a/modules/api-svc/test/unit/lib/model/lib/requests/backendRequests.test.js b/modules/api-svc/test/unit/lib/model/lib/requests/backendRequests.test.js index cb156349c..ae43b72ab 100644 --- a/modules/api-svc/test/unit/lib/model/lib/requests/backendRequests.test.js +++ b/modules/api-svc/test/unit/lib/model/lib/requests/backendRequests.test.js @@ -1,9 +1,11 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -13,11 +15,12 @@ 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + + * Mojaloop Foundation + - Name Surname * Eugen Klymniuk -------------- diff --git a/modules/api-svc/test/unit/lib/model/mockedLibRequests.js b/modules/api-svc/test/unit/lib/model/mockedLibRequests.js index abb45051d..953e3abe6 100644 --- a/modules/api-svc/test/unit/lib/model/mockedLibRequests.js +++ b/modules/api-svc/test/unit/lib/model/mockedLibRequests.js @@ -1,12 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/unit/lib/utils.test.js b/modules/api-svc/test/unit/lib/utils.test.js index e68ef9dd0..d9c992e90 100644 --- a/modules/api-svc/test/unit/lib/utils.test.js +++ b/modules/api-svc/test/unit/lib/utils.test.js @@ -1,4 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ const { transformHeadersIsoToFspiop } = require('~/lib/utils'); describe('utils', () => { diff --git a/modules/api-svc/test/unit/mockLogger.js b/modules/api-svc/test/unit/mockLogger.js index 81c10707a..06e6a8b3a 100644 --- a/modules/api-svc/test/unit/mockLogger.js +++ b/modules/api-svc/test/unit/mockLogger.js @@ -1,13 +1,31 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2020 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * Paweł Marzec - pawel.marzec@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Modusbox + - Paweł Marzec + -------------- + ******/ const { Logger } = require('@mojaloop/sdk-standard-components'); function mockLogger(context, keepQuiet) { diff --git a/modules/api-svc/test/unit/outboundApi/handlers.test.js b/modules/api-svc/test/unit/outboundApi/handlers.test.js index a80a7d7cd..5b4c4523d 100644 --- a/modules/api-svc/test/unit/outboundApi/handlers.test.js +++ b/modules/api-svc/test/unit/outboundApi/handlers.test.js @@ -1,12 +1,29 @@ -/************************************************************************** - * (C) Copyright ModusBox Inc. 2019 - All rights reserved. * - * * - * This file is made available under the terms of the license agreement * - * specified in the corresponding source code repository. * - * * - * ORIGINAL AUTHOR: * - * James Bush - james.bush@modusbox.com * - **************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - James Bush + + -------------- + ******/ 'use strict'; diff --git a/modules/api-svc/test/unit/setup.js b/modules/api-svc/test/unit/setup.js index 3dbd08fde..dc9488d50 100644 --- a/modules/api-svc/test/unit/setup.js +++ b/modules/api-svc/test/unit/setup.js @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ require('dotenv').config({ path: '../../.env.example', }); diff --git a/modules/outbound-command-event-handler/LICENSE.md b/modules/outbound-command-event-handler/LICENSE.md index 26fb7bddf..8d0890657 100644 --- a/modules/outbound-command-event-handler/LICENSE.md +++ b/modules/outbound-command-event-handler/LICENSE.md @@ -1,10 +1,9 @@ # LICENSE -Copyright © 2017 Bill & Melinda Gates Foundation +Copyright © 2020-2025 Mojaloop Foundation -The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 -(the "License") and you may not use these files except in compliance with the [License](http://www.apache.org/licenses/LICENSE-2.0). You may obtain a copy of the License at +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. -[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) +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](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. diff --git a/modules/outbound-command-event-handler/package.json b/modules/outbound-command-event-handler/package.json index 728f95b8c..a038b2524 100644 --- a/modules/outbound-command-event-handler/package.json +++ b/modules/outbound-command-event-handler/package.json @@ -9,7 +9,7 @@ "url": "https://github.com/mojaloop/sdk-scheme-adapter/issues#readme" }, "contributors": [ - "Vijay Kumar Guthi " + "Vijay Kumar Guthi " ], "main": "./dist/index.js", "types": "./dist/index.d.ts", @@ -43,7 +43,7 @@ }, "dependencies": { "@mojaloop/api-snippets": "17.7.9", - "@mojaloop/central-services-shared": "^18.15.2", + "@mojaloop/central-services-shared": "^18.16.0", "@mojaloop/logging-bc-client-lib": "^0.5.8", "@mojaloop/logging-bc-public-types-lib": "^0.5.4", "@mojaloop/sdk-scheme-adapter-private-shared-lib": "workspace:^", diff --git a/modules/outbound-command-event-handler/src/api-server/app.ts b/modules/outbound-command-event-handler/src/api-server/app.ts index ed9c53cfd..fdd05468f 100644 --- a/modules/outbound-command-event-handler/src/api-server/app.ts +++ b/modules/outbound-command-event-handler/src/api-server/app.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/api-server/handlers/bulk-transactions.ts b/modules/outbound-command-event-handler/src/api-server/handlers/bulk-transactions.ts index 9e5314a33..63e12d13f 100644 --- a/modules/outbound-command-event-handler/src/api-server/handlers/bulk-transactions.ts +++ b/modules/outbound-command-event-handler/src/api-server/handlers/bulk-transactions.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/api-server/handlers/health.ts b/modules/outbound-command-event-handler/src/api-server/handlers/health.ts index 038274bc1..50bce9afc 100644 --- a/modules/outbound-command-event-handler/src/api-server/handlers/health.ts +++ b/modules/outbound-command-event-handler/src/api-server/handlers/health.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/api-server/handlers/index.ts b/modules/outbound-command-event-handler/src/api-server/handlers/index.ts index e496d52b2..1b5f5ee5f 100644 --- a/modules/outbound-command-event-handler/src/api-server/handlers/index.ts +++ b/modules/outbound-command-event-handler/src/api-server/handlers/index.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ @@ -29,4 +55,4 @@ import { Handler } from 'openapi-backend'; export default <{ [operationId: string]: Handler }> { ...getBulkTransactionsHandlers, ...getHealthHandlers, -}; \ No newline at end of file +}; diff --git a/modules/outbound-command-event-handler/src/api-server/index.ts b/modules/outbound-command-event-handler/src/api-server/index.ts index 284288151..e3dd15ace 100644 --- a/modules/outbound-command-event-handler/src/api-server/index.ts +++ b/modules/outbound-command-event-handler/src/api-server/index.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/api-server/models/bulk-transaction.ts b/modules/outbound-command-event-handler/src/api-server/models/bulk-transaction.ts index 4063d1598..61240593e 100644 --- a/modules/outbound-command-event-handler/src/api-server/models/bulk-transaction.ts +++ b/modules/outbound-command-event-handler/src/api-server/models/bulk-transaction.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ @@ -30,4 +56,4 @@ export interface BulkTransaction { id: string; state: string; individualTransfers: Array; -} \ No newline at end of file +} diff --git a/modules/outbound-command-event-handler/src/api-server/models/health.ts b/modules/outbound-command-event-handler/src/api-server/models/health.ts index 6adc0682b..65ffe6d8a 100644 --- a/modules/outbound-command-event-handler/src/api-server/models/health.ts +++ b/modules/outbound-command-event-handler/src/api-server/models/health.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/api-server/models/index.ts b/modules/outbound-command-event-handler/src/api-server/models/index.ts index 7024eea92..c3fd60702 100644 --- a/modules/outbound-command-event-handler/src/api-server/models/index.ts +++ b/modules/outbound-command-event-handler/src/api-server/models/index.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/api-server/services/bulk-transactions.ts b/modules/outbound-command-event-handler/src/api-server/services/bulk-transactions.ts index b08d56331..312cc2e95 100644 --- a/modules/outbound-command-event-handler/src/api-server/services/bulk-transactions.ts +++ b/modules/outbound-command-event-handler/src/api-server/services/bulk-transactions.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/api-server/services/health.ts b/modules/outbound-command-event-handler/src/api-server/services/health.ts index 5c046bf48..dfc07b91d 100644 --- a/modules/outbound-command-event-handler/src/api-server/services/health.ts +++ b/modules/outbound-command-event-handler/src/api-server/services/health.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/application/errors.ts b/modules/outbound-command-event-handler/src/application/errors.ts index d0aaf3865..04d94a51b 100644 --- a/modules/outbound-command-event-handler/src/application/errors.ts +++ b/modules/outbound-command-event-handler/src/application/errors.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -28,7 +54,7 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak diff --git a/modules/outbound-command-event-handler/src/application/handler.ts b/modules/outbound-command-event-handler/src/application/handler.ts index 4313792ea..fb87d632c 100755 --- a/modules/outbound-command-event-handler/src/application/handler.ts +++ b/modules/outbound-command-event-handler/src/application/handler.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/application/index.ts b/modules/outbound-command-event-handler/src/application/index.ts index f00c0783c..d6a94f117 100644 --- a/modules/outbound-command-event-handler/src/application/index.ts +++ b/modules/outbound-command-event-handler/src/application/index.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,9 +43,9 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Shashikant Hirugade - - Vijay Kumar Guthi + * Infitx + - Shashikant Hirugade + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/index.ts b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/index.ts index bdcc05970..1490615ac 100644 --- a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/index.ts +++ b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/index.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/prepare_sdk_outbound_bulk_response.ts b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/prepare_sdk_outbound_bulk_response.ts index ca769f627..dd4a5c331 100644 --- a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/prepare_sdk_outbound_bulk_response.ts +++ b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/prepare_sdk_outbound_bulk_response.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Kevin Leyow + * Infitx + - Kevin Leyow -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_bulk_quotes_callback.ts b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_bulk_quotes_callback.ts index c423c61d9..8bac2b118 100755 --- a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_bulk_quotes_callback.ts +++ b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_bulk_quotes_callback.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,7 +43,7 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Yevhen Kyriukha -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_bulk_transfers_callback.ts b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_bulk_transfers_callback.ts index dd27870a6..021d3cee9 100644 --- a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_bulk_transfers_callback.ts +++ b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_bulk_transfers_callback.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Kevin Leyow + * Infitx + - Kevin Leyow -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_party_info_callback.ts b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_party_info_callback.ts index ff5b75900..b1a58eff2 100755 --- a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_party_info_callback.ts +++ b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_party_info_callback.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,7 +43,7 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Yevhen Kyriukha -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_accept_party_info.ts b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_accept_party_info.ts index 0c0898a36..dcb964924 100755 --- a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_accept_party_info.ts +++ b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_accept_party_info.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_accept_quote.ts b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_accept_quote.ts index cc6543c50..c3b2f5c5e 100755 --- a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_accept_quote.ts +++ b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_accept_quote.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi - Miguel de Barros -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_party_info_request.ts b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_party_info_request.ts index 54405c18c..ce07295cb 100755 --- a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_party_info_request.ts +++ b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_party_info_request.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,7 +43,7 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Yevhen Kyriukha -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_quotes_request.ts b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_quotes_request.ts index db22936bb..dba20bde5 100755 --- a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_quotes_request.ts +++ b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_quotes_request.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_request.ts b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_request.ts index 3a8d6357a..6654d5b04 100755 --- a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_request.ts +++ b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_request.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_response_sent.ts b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_response_sent.ts index fd210ef1d..4724f64c2 100644 --- a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_response_sent.ts +++ b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_response_sent.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Kevin Leyow + * Infitx + - Kevin Leyow -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_transfers_request.ts b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_transfers_request.ts index 43e6a9e48..febfdac97 100755 --- a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_transfers_request.ts +++ b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/handlers/process_sdk_outbound_bulk_transfers_request.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,7 +43,7 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Miguel de Barros -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/index.ts b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/index.ts index 69f7abbcc..882de2c49 100644 --- a/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/index.ts +++ b/modules/outbound-command-event-handler/src/domain/bulk_transaction_agg/index.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi - Yevhen Kyriukha - Miguel de Barros -------------- diff --git a/modules/outbound-command-event-handler/src/domain/index.ts b/modules/outbound-command-event-handler/src/domain/index.ts index 3c31d4001..aa7310776 100644 --- a/modules/outbound-command-event-handler/src/domain/index.ts +++ b/modules/outbound-command-event-handler/src/domain/index.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/shared/config.ts b/modules/outbound-command-event-handler/src/shared/config.ts index 1c1187339..e90b556c6 100644 --- a/modules/outbound-command-event-handler/src/shared/config.ts +++ b/modules/outbound-command-event-handler/src/shared/config.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /****************************************************************************** * Copyright 2019 ModusBox, Inc. * * * diff --git a/modules/outbound-command-event-handler/src/types/command_event_handler_options.ts b/modules/outbound-command-event-handler/src/types/command_event_handler_options.ts index a799490c4..a0c75bec3 100644 --- a/modules/outbound-command-event-handler/src/types/command_event_handler_options.ts +++ b/modules/outbound-command-event-handler/src/types/command_event_handler_options.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/types/index.ts b/modules/outbound-command-event-handler/src/types/index.ts index 0021afcfc..b72836171 100644 --- a/modules/outbound-command-event-handler/src/types/index.ts +++ b/modules/outbound-command-event-handler/src/types/index.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/src/types/repo_infra_types.ts b/modules/outbound-command-event-handler/src/types/repo_infra_types.ts index 81e6442f8..8a37725a5 100644 --- a/modules/outbound-command-event-handler/src/types/repo_infra_types.ts +++ b/modules/outbound-command-event-handler/src/types/repo_infra_types.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -28,7 +54,7 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak diff --git a/modules/outbound-command-event-handler/test/integration/application/agreement/process_bulk_quotes_callback.test.ts b/modules/outbound-command-event-handler/test/integration/application/agreement/process_bulk_quotes_callback.test.ts index 1f1b72401..751e42e72 100644 --- a/modules/outbound-command-event-handler/test/integration/application/agreement/process_bulk_quotes_callback.test.ts +++ b/modules/outbound-command-event-handler/test/integration/application/agreement/process_bulk_quotes_callback.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,10 +43,10 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Sridevi Miriyala - - Kevin Leyow + - Kevin Leyow - Miguel de Barros -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/integration/application/agreement/process_sdk_outbound_bulk_quotes_request.test.ts b/modules/outbound-command-event-handler/test/integration/application/agreement/process_sdk_outbound_bulk_quotes_request.test.ts index 78e7bcfd0..38f2c89f2 100644 --- a/modules/outbound-command-event-handler/test/integration/application/agreement/process_sdk_outbound_bulk_quotes_request.test.ts +++ b/modules/outbound-command-event-handler/test/integration/application/agreement/process_sdk_outbound_bulk_quotes_request.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,10 +43,10 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Sridevi Miriyala - - Kevin Leyow + - Kevin Leyow -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/integration/application/discovery/process_bulk_accept_party_info.test.ts b/modules/outbound-command-event-handler/test/integration/application/discovery/process_bulk_accept_party_info.test.ts index 7be264448..475e82f80 100644 --- a/modules/outbound-command-event-handler/test/integration/application/discovery/process_bulk_accept_party_info.test.ts +++ b/modules/outbound-command-event-handler/test/integration/application/discovery/process_bulk_accept_party_info.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,10 +43,10 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Sridevi Miriyala - - Kevin Leyow + - Kevin Leyow -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/integration/application/discovery/process_bulk_party_info_request.test.ts b/modules/outbound-command-event-handler/test/integration/application/discovery/process_bulk_party_info_request.test.ts index f741e147f..eb7d98ec7 100644 --- a/modules/outbound-command-event-handler/test/integration/application/discovery/process_bulk_party_info_request.test.ts +++ b/modules/outbound-command-event-handler/test/integration/application/discovery/process_bulk_party_info_request.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,7 +43,7 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Sridevi Miriyala . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,7 +43,7 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Sridevi Miriyala . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,7 +43,7 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Sridevi Miriyala . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Kevin Leyow + * Infitx + - Kevin Leyow -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_response_sent.test.ts b/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_response_sent.test.ts index 2c59ec18c..243e763da 100644 --- a/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_response_sent.test.ts +++ b/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_response_sent.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,7 +43,7 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Sridevi Miriyala -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_transfers_callback.test.ts b/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_transfers_callback.test.ts index ef8ad77db..e427474ac 100644 --- a/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_transfers_callback.test.ts +++ b/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_transfers_callback.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,7 +43,7 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Sridevi Miriyala -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_transfers_request.test.ts b/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_transfers_request.test.ts index 0a5c04e9c..7a3349960 100644 --- a/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_transfers_request.test.ts +++ b/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_transfers_request.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,7 +43,7 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Sridevi Miriyala -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_transfers_request_complete.test.ts b/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_transfers_request_complete.test.ts index e80c8f81d..82f2d5907 100644 --- a/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_transfers_request_complete.test.ts +++ b/modules/outbound-command-event-handler/test/integration/application/transfers/process_bulk_transfers_request_complete.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,7 +43,7 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Sridevi Miriyala -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/integration/application/transfers/process_prepare_bulk_response.test.ts b/modules/outbound-command-event-handler/test/integration/application/transfers/process_prepare_bulk_response.test.ts index 9eec567b1..2c6c61e3b 100644 --- a/modules/outbound-command-event-handler/test/integration/application/transfers/process_prepare_bulk_response.test.ts +++ b/modules/outbound-command-event-handler/test/integration/application/transfers/process_prepare_bulk_response.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,7 +43,7 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Sridevi Miriyala -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/integration/application/transfers/process_sdk_outbound_bulk_accept_quote.test.ts b/modules/outbound-command-event-handler/test/integration/application/transfers/process_sdk_outbound_bulk_accept_quote.test.ts index 50a47089a..6191cc8e7 100644 --- a/modules/outbound-command-event-handler/test/integration/application/transfers/process_sdk_outbound_bulk_accept_quote.test.ts +++ b/modules/outbound-command-event-handler/test/integration/application/transfers/process_sdk_outbound_bulk_accept_quote.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,10 +43,10 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Sridevi Miriyala - - Kevin Leyow + - Kevin Leyow -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/integration/application/transfers/process_sdk_outbound_bulk_response_sent.test.ts b/modules/outbound-command-event-handler/test/integration/application/transfers/process_sdk_outbound_bulk_response_sent.test.ts index 7957041b7..dc824f480 100644 --- a/modules/outbound-command-event-handler/test/integration/application/transfers/process_sdk_outbound_bulk_response_sent.test.ts +++ b/modules/outbound-command-event-handler/test/integration/application/transfers/process_sdk_outbound_bulk_response_sent.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Kevin Leyow + * Infitx + - Kevin Leyow -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/integration/sample_events/process_sdk_outbound_bulk_transfers_request.test.ts b/modules/outbound-command-event-handler/test/integration/sample_events/process_sdk_outbound_bulk_transfers_request.test.ts index 7479b2db0..c00885ef0 100644 --- a/modules/outbound-command-event-handler/test/integration/sample_events/process_sdk_outbound_bulk_transfers_request.test.ts +++ b/modules/outbound-command-event-handler/test/integration/sample_events/process_sdk_outbound_bulk_transfers_request.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** @@ -19,8 +45,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/integration/sample_events/sdk_outbound_bulk_accept_party_info_received.test.ts b/modules/outbound-command-event-handler/test/integration/sample_events/sdk_outbound_bulk_accept_party_info_received.test.ts index 2f31d6018..2d01afa56 100644 --- a/modules/outbound-command-event-handler/test/integration/sample_events/sdk_outbound_bulk_accept_party_info_received.test.ts +++ b/modules/outbound-command-event-handler/test/integration/sample_events/sdk_outbound_bulk_accept_party_info_received.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** @@ -19,8 +45,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/integration/sample_events/sdk_outbound_bulk_request_received.test.ts b/modules/outbound-command-event-handler/test/integration/sample_events/sdk_outbound_bulk_request_received.test.ts index af8b80849..79aea1ade 100644 --- a/modules/outbound-command-event-handler/test/integration/sample_events/sdk_outbound_bulk_request_received.test.ts +++ b/modules/outbound-command-event-handler/test/integration/sample_events/sdk_outbound_bulk_request_received.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** @@ -19,8 +45,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/unit/api-server/app.test.ts b/modules/outbound-command-event-handler/test/unit/api-server/app.test.ts index dd5e02dcd..e4e0d4be7 100644 --- a/modules/outbound-command-event-handler/test/unit/api-server/app.test.ts +++ b/modules/outbound-command-event-handler/test/unit/api-server/app.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /****************************************************************************** * Copyright 2019 ModusBox, Inc. * * * diff --git a/modules/outbound-command-event-handler/test/unit/api-server/index.test.ts b/modules/outbound-command-event-handler/test/unit/api-server/index.test.ts index 2fd8b7607..b1e82cbbc 100644 --- a/modules/outbound-command-event-handler/test/unit/api-server/index.test.ts +++ b/modules/outbound-command-event-handler/test/unit/api-server/index.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /****************************************************************************** * Copyright 2019 ModusBox, Inc. * * * diff --git a/modules/outbound-command-event-handler/test/unit/api-server/routes/health.test.ts b/modules/outbound-command-event-handler/test/unit/api-server/routes/health.test.ts index a7f21dff5..8aabcdbb2 100644 --- a/modules/outbound-command-event-handler/test/unit/api-server/routes/health.test.ts +++ b/modules/outbound-command-event-handler/test/unit/api-server/routes/health.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /****************************************************************************** * Copyright 2019 ModusBox, Inc. * * * diff --git a/modules/outbound-command-event-handler/test/unit/data/bulk_transaction_request.ts b/modules/outbound-command-event-handler/test/unit/data/bulk_transaction_request.ts index 3fae67b13..47fd28f2c 100644 --- a/modules/outbound-command-event-handler/test/unit/data/bulk_transaction_request.ts +++ b/modules/outbound-command-event-handler/test/unit/data/bulk_transaction_request.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/unit/domain/bulk_transaction_agg/index.test.ts b/modules/outbound-command-event-handler/test/unit/domain/bulk_transaction_agg/index.test.ts index a14420a5a..b784e8955 100644 --- a/modules/outbound-command-event-handler/test/unit/domain/bulk_transaction_agg/index.test.ts +++ b/modules/outbound-command-event-handler/test/unit/domain/bulk_transaction_agg/index.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/unit/index.test.ts b/modules/outbound-command-event-handler/test/unit/index.test.ts index 07a82897a..420814fa5 100644 --- a/modules/outbound-command-event-handler/test/unit/index.test.ts +++ b/modules/outbound-command-event-handler/test/unit/index.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -22,8 +48,8 @@ * Gates Foundation - Name Surname - * Modusbox - - Shashikant Hirugade + * Infitx + - Shashikant Hirugade -------------- ******/ @@ -31,16 +57,16 @@ 'use strict' describe('empty tests', () => { - + beforeEach(async () => { // Setup }) - + afterEach(async () => { // Cleanup }) - + test('Event handler module only, no tests', async () => { await expect(true) }) - }) \ No newline at end of file + }) diff --git a/modules/outbound-command-event-handler/test/util/generator.ts b/modules/outbound-command-event-handler/test/util/generator.ts index 5f2c5ffee..89fd055a8 100644 --- a/modules/outbound-command-event-handler/test/util/generator.ts +++ b/modules/outbound-command-event-handler/test/util/generator.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,10 +43,10 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Sridevi Miriyala - - Kevin Leyow + - Kevin Leyow - Miguel de Barros -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/util/index.ts b/modules/outbound-command-event-handler/test/util/index.ts index 3d87a165a..73eda8665 100644 --- a/modules/outbound-command-event-handler/test/util/index.ts +++ b/modules/outbound-command-event-handler/test/util/index.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,7 +43,7 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Miguel de Barros -------------- ******/ diff --git a/modules/outbound-command-event-handler/test/util/timer.ts b/modules/outbound-command-event-handler/test/util/timer.ts index e171cf436..f2efbb43b 100644 --- a/modules/outbound-command-event-handler/test/util/timer.ts +++ b/modules/outbound-command-event-handler/test/util/timer.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,7 +43,7 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox + * Infitx - Miguel de Barros -------------- ******/ diff --git a/modules/outbound-domain-event-handler/LICENSE.md b/modules/outbound-domain-event-handler/LICENSE.md index 26fb7bddf..8d0890657 100644 --- a/modules/outbound-domain-event-handler/LICENSE.md +++ b/modules/outbound-domain-event-handler/LICENSE.md @@ -1,10 +1,9 @@ # LICENSE -Copyright © 2017 Bill & Melinda Gates Foundation +Copyright © 2020-2025 Mojaloop Foundation -The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 -(the "License") and you may not use these files except in compliance with the [License](http://www.apache.org/licenses/LICENSE-2.0). You may obtain a copy of the License at +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. -[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) +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](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. diff --git a/modules/outbound-domain-event-handler/package.json b/modules/outbound-domain-event-handler/package.json index 896cb161e..8698cfd25 100644 --- a/modules/outbound-domain-event-handler/package.json +++ b/modules/outbound-domain-event-handler/package.json @@ -9,7 +9,7 @@ "url": "https://github.com/mojaloop/sdk-scheme-adapter/issues#readme" }, "contributors": [ - "Shashikant Hirugade " + "Shashikant Hirugade " ], "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/modules/outbound-domain-event-handler/src/api-server/app.ts b/modules/outbound-domain-event-handler/src/api-server/app.ts index 4499aab09..b5ca08a13 100644 --- a/modules/outbound-domain-event-handler/src/api-server/app.ts +++ b/modules/outbound-domain-event-handler/src/api-server/app.ts @@ -1,28 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Kevin Leyow - -------------- - ******/ + * Mojaloop Foundation + - Name Surname + * Infitx + - Kevin Leyow + -------------- + ******/ import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; import Express, { Application } from 'express'; import OpenAPIBackend from 'openapi-backend'; diff --git a/modules/outbound-domain-event-handler/src/api-server/handlers/health.ts b/modules/outbound-domain-event-handler/src/api-server/handlers/health.ts index c329a65f4..42ccd8348 100644 --- a/modules/outbound-domain-event-handler/src/api-server/handlers/health.ts +++ b/modules/outbound-domain-event-handler/src/api-server/handlers/health.ts @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Kevin Leyow + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Kevin Leyow -------------- ******/ - import { Context, Document } from 'openapi-backend'; import Express from 'express'; import { Health } from '../models'; diff --git a/modules/outbound-domain-event-handler/src/api-server/handlers/index.ts b/modules/outbound-domain-event-handler/src/api-server/handlers/index.ts index 47026c41d..733b2499f 100644 --- a/modules/outbound-domain-event-handler/src/api-server/handlers/index.ts +++ b/modules/outbound-domain-event-handler/src/api-server/handlers/index.ts @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Kevin Leyow + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Kevin Leyow -------------- ******/ - import getHealthHandlers from './health'; import { Handler } from 'openapi-backend'; diff --git a/modules/outbound-domain-event-handler/src/api-server/index.ts b/modules/outbound-domain-event-handler/src/api-server/index.ts index a72ea4883..6a2dc321d 100644 --- a/modules/outbound-domain-event-handler/src/api-server/index.ts +++ b/modules/outbound-domain-event-handler/src/api-server/index.ts @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Kevin Leyow + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Kevin Leyow -------------- ******/ - import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; import { Server } from 'http'; import { CreateExpressServer } from './app'; diff --git a/modules/outbound-domain-event-handler/src/api-server/models/health.ts b/modules/outbound-domain-event-handler/src/api-server/models/health.ts index e6f4d32c8..a7773fea2 100644 --- a/modules/outbound-domain-event-handler/src/api-server/models/health.ts +++ b/modules/outbound-domain-event-handler/src/api-server/models/health.ts @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Kevin Leyow + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Kevin Leyow -------------- ******/ - export enum HealthStatusEnum { OK = 'OK', ERROR = 'ERROR', diff --git a/modules/outbound-domain-event-handler/src/api-server/models/index.ts b/modules/outbound-domain-event-handler/src/api-server/models/index.ts index 480d35a32..01e5eb2a9 100644 --- a/modules/outbound-domain-event-handler/src/api-server/models/index.ts +++ b/modules/outbound-domain-event-handler/src/api-server/models/index.ts @@ -1,25 +1,29 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Kevin Leyow + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Kevin Leyow -------------- ******/ - export * from './health'; diff --git a/modules/outbound-domain-event-handler/src/api-server/services/health.ts b/modules/outbound-domain-event-handler/src/api-server/services/health.ts index 3f2e83991..8920021e4 100644 --- a/modules/outbound-domain-event-handler/src/api-server/services/health.ts +++ b/modules/outbound-domain-event-handler/src/api-server/services/health.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ /***** License -------------- @@ -17,8 +43,8 @@ optionally within square brackets . * Gates Foundation - Name Surname - * Modusbox - - Kevin Leyow + * Infitx + - Kevin Leyow -------------- ******/ diff --git a/modules/outbound-domain-event-handler/src/application/errors.ts b/modules/outbound-domain-event-handler/src/application/errors.ts index d0aaf3865..2b107b29b 100644 --- a/modules/outbound-domain-event-handler/src/application/errors.ts +++ b/modules/outbound-domain-event-handler/src/application/errors.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,17 +10,17 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname * Coil - Donovan Changfoot @@ -33,8 +33,7 @@ - Roman Pietrzak -------------- -******/ - + ******/ 'use strict'; // TODO: this is a place holder for future errors. diff --git a/modules/outbound-domain-event-handler/src/application/handler.ts b/modules/outbound-domain-event-handler/src/application/handler.ts index 4ec11d49e..08bea96eb 100755 --- a/modules/outbound-domain-event-handler/src/application/handler.ts +++ b/modules/outbound-domain-event-handler/src/application/handler.ts @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi -------------- ******/ - 'use strict'; import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; diff --git a/modules/outbound-domain-event-handler/src/application/handlers/bulk-quotes-callback-received.ts b/modules/outbound-domain-event-handler/src/application/handlers/bulk-quotes-callback-received.ts index 689821fc1..3bf827620 100644 --- a/modules/outbound-domain-event-handler/src/application/handlers/bulk-quotes-callback-received.ts +++ b/modules/outbound-domain-event-handler/src/application/handlers/bulk-quotes-callback-received.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; import { DomainEvent, IProcessBulkQuotesCallbackCmdEvtData, ProcessBulkQuotesCallbackCmdEvt, diff --git a/modules/outbound-domain-event-handler/src/application/handlers/bulk_transfers_callback_received.ts b/modules/outbound-domain-event-handler/src/application/handlers/bulk_transfers_callback_received.ts index ff6caf966..798e8810f 100644 --- a/modules/outbound-domain-event-handler/src/application/handlers/bulk_transfers_callback_received.ts +++ b/modules/outbound-domain-event-handler/src/application/handlers/bulk_transfers_callback_received.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; import { DomainEvent, diff --git a/modules/outbound-domain-event-handler/src/application/handlers/bulk_transfers_processed.ts b/modules/outbound-domain-event-handler/src/application/handlers/bulk_transfers_processed.ts index 7a57f242b..e2ecba346 100644 --- a/modules/outbound-domain-event-handler/src/application/handlers/bulk_transfers_processed.ts +++ b/modules/outbound-domain-event-handler/src/application/handlers/bulk_transfers_processed.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; import { DomainEvent, diff --git a/modules/outbound-domain-event-handler/src/application/handlers/index.ts b/modules/outbound-domain-event-handler/src/application/handlers/index.ts index 20eacf3d2..e3ea02937 100644 --- a/modules/outbound-domain-event-handler/src/application/handlers/index.ts +++ b/modules/outbound-domain-event-handler/src/application/handlers/index.ts @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi -------------- ******/ - export * from './sdk-outbound-bulk-request-received'; export * from './sdk-outbound-bulk-party-info-requested'; export * from './party-info-callback-received'; diff --git a/modules/outbound-domain-event-handler/src/application/handlers/party-info-callback-received.ts b/modules/outbound-domain-event-handler/src/application/handlers/party-info-callback-received.ts index 4d35bc0b4..96415bff9 100644 --- a/modules/outbound-domain-event-handler/src/application/handlers/party-info-callback-received.ts +++ b/modules/outbound-domain-event-handler/src/application/handlers/party-info-callback-received.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; import { DomainEvent, IProcessPartyInfoCallbackCmdEvtData, ProcessPartyInfoCallbackCmdEvt, diff --git a/modules/outbound-domain-event-handler/src/application/handlers/sdk-outbound-bulk-party-info-requested.ts b/modules/outbound-domain-event-handler/src/application/handlers/sdk-outbound-bulk-party-info-requested.ts index 6469cc38d..db40bb365 100644 --- a/modules/outbound-domain-event-handler/src/application/handlers/sdk-outbound-bulk-party-info-requested.ts +++ b/modules/outbound-domain-event-handler/src/application/handlers/sdk-outbound-bulk-party-info-requested.ts @@ -1,27 +1,31 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Kevin leyow + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Kevin Leyow -------------- ******/ - import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; import { DomainEvent, diff --git a/modules/outbound-domain-event-handler/src/application/handlers/sdk-outbound-bulk-request-received.ts b/modules/outbound-domain-event-handler/src/application/handlers/sdk-outbound-bulk-request-received.ts index 676a6ef37..38cd24f46 100755 --- a/modules/outbound-domain-event-handler/src/application/handlers/sdk-outbound-bulk-request-received.ts +++ b/modules/outbound-domain-event-handler/src/application/handlers/sdk-outbound-bulk-request-received.ts @@ -1,27 +1,30 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ - 'use strict'; import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; diff --git a/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_party_info_processed.ts b/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_party_info_processed.ts index b8037e94c..fca3d26c5 100755 --- a/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_party_info_processed.ts +++ b/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_party_info_processed.ts @@ -1,27 +1,30 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ - 'use strict'; import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; diff --git a/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_party_info_received.ts b/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_party_info_received.ts index 5d7a345ef..3784a2918 100755 --- a/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_party_info_received.ts +++ b/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_party_info_received.ts @@ -1,27 +1,30 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ - 'use strict'; import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; diff --git a/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_quote_processed.ts b/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_quote_processed.ts index 5c9ce0ba7..83a3266b4 100755 --- a/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_quote_processed.ts +++ b/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_quote_processed.ts @@ -1,28 +1,34 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi + * Modusbox - - Vijay Kumar Guthi - Miguel de Barros -------------- ******/ - 'use strict'; import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; diff --git a/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_quote_received.ts b/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_quote_received.ts index 0c2877e0a..868c8d4e2 100755 --- a/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_quote_received.ts +++ b/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_accept_quote_received.ts @@ -1,27 +1,32 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ + 'use strict'; import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; diff --git a/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_response_sent.ts b/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_response_sent.ts index 687935620..eaa9b5c94 100644 --- a/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_response_sent.ts +++ b/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_response_sent.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; import { DomainEvent, diff --git a/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_transfers_request_processed.ts b/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_transfers_request_processed.ts index 2b335b091..2a5d29f2f 100644 --- a/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_transfers_request_processed.ts +++ b/modules/outbound-domain-event-handler/src/application/handlers/sdk_outbound_bulk_transfers_request_processed.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; import { DomainEvent, diff --git a/modules/outbound-domain-event-handler/src/application/index.ts b/modules/outbound-domain-event-handler/src/application/index.ts index 4bd16ec15..d39f6e50c 100644 --- a/modules/outbound-domain-event-handler/src/application/index.ts +++ b/modules/outbound-domain-event-handler/src/application/index.ts @@ -1,30 +1,32 @@ - - /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Shashikant Hirugade - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Shashikant Hirugade + + * Infitx + - Vijay Kumar Guthi + -------------- ******/ - 'use strict'; import { DefaultLogger } from '@mojaloop/logging-bc-client-lib'; diff --git a/modules/outbound-domain-event-handler/src/shared/config.ts b/modules/outbound-domain-event-handler/src/shared/config.ts index 093a4d367..c5e33a093 100644 --- a/modules/outbound-domain-event-handler/src/shared/config.ts +++ b/modules/outbound-domain-event-handler/src/shared/config.ts @@ -1,20 +1,29 @@ -/****************************************************************************** - * Copyright 2019 ModusBox, Inc. * - * * - * info@modusbox.com * - * * - * Licensed under the Apache License, Version 2.0 (the "License"); * - * you may not use this file 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, software * - * distributed under the License is 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 * - ******************************************************************************/ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ import { IKafkaEventConsumerOptions, IKafkaEventProducerOptions } from '@mojaloop/sdk-scheme-adapter-private-shared-lib'; import { LogLevel } from '@mojaloop/logging-bc-public-types-lib'; import Convict from 'convict'; diff --git a/modules/outbound-domain-event-handler/src/types/domain_event_handler_options.ts b/modules/outbound-domain-event-handler/src/types/domain_event_handler_options.ts index a256652d1..b1d63a715 100644 --- a/modules/outbound-domain-event-handler/src/types/domain_event_handler_options.ts +++ b/modules/outbound-domain-event-handler/src/types/domain_event_handler_options.ts @@ -1,24 +1,29 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/outbound-domain-event-handler/src/types/index.ts b/modules/outbound-domain-event-handler/src/types/index.ts index 4651c9d04..933ded552 100644 --- a/modules/outbound-domain-event-handler/src/types/index.ts +++ b/modules/outbound-domain-event-handler/src/types/index.ts @@ -1,25 +1,29 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi -------------- ******/ - -export * from './domain_event_handler_options'; \ No newline at end of file +export * from './domain_event_handler_options'; diff --git a/modules/outbound-domain-event-handler/test/unit/api-server/app.test.ts b/modules/outbound-domain-event-handler/test/unit/api-server/app.test.ts index 037a42996..c74948b5b 100644 --- a/modules/outbound-domain-event-handler/test/unit/api-server/app.test.ts +++ b/modules/outbound-domain-event-handler/test/unit/api-server/app.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ import request from 'supertest'; import { OutboundDomainEventHandlerAPIServer as ApiServer } from '../../../src/api-server'; import { DefaultLogger } from "@mojaloop/logging-bc-client-lib"; diff --git a/modules/outbound-domain-event-handler/test/unit/api-server/index.test.ts b/modules/outbound-domain-event-handler/test/unit/api-server/index.test.ts index 6e1292f50..d7f77d9de 100644 --- a/modules/outbound-domain-event-handler/test/unit/api-server/index.test.ts +++ b/modules/outbound-domain-event-handler/test/unit/api-server/index.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ import { Server } from 'http'; import { OutboundDomainEventHandlerAPIServer as ApiServer } from '../../../src/api-server'; import { ILogger } from '@mojaloop/logging-bc-public-types-lib'; diff --git a/modules/outbound-domain-event-handler/test/unit/api-server/routes/health.test.ts b/modules/outbound-domain-event-handler/test/unit/api-server/routes/health.test.ts index 0e1fe8e16..ec8af0f3c 100644 --- a/modules/outbound-domain-event-handler/test/unit/api-server/routes/health.test.ts +++ b/modules/outbound-domain-event-handler/test/unit/api-server/routes/health.test.ts @@ -1,3 +1,29 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ import request from 'supertest'; import axios from 'axios'; import { OutboundDomainEventHandlerAPIServer as ApiServer } from '../../../../src/api-server'; diff --git a/modules/outbound-domain-event-handler/test/unit/application/handlers/bulk-transfers-callback-received.test.ts b/modules/outbound-domain-event-handler/test/unit/application/handlers/bulk-transfers-callback-received.test.ts index 6917c8998..c4374e29b 100644 --- a/modules/outbound-domain-event-handler/test/unit/application/handlers/bulk-transfers-callback-received.test.ts +++ b/modules/outbound-domain-event-handler/test/unit/application/handlers/bulk-transfers-callback-received.test.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,28 +10,26 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - - * Modusbox - - Kevin Leyow + * Mojaloop Foundation + - Name Surname + * Infitx + - Kevin Leyow -------------- ******/ +'use strict' - 'use strict' - - import { DefaultLogger } from "@mojaloop/logging-bc-client-lib"; - import { ILogger } from "@mojaloop/logging-bc-public-types-lib"; +import { DefaultLogger } from "@mojaloop/logging-bc-client-lib"; +import { ILogger } from "@mojaloop/logging-bc-public-types-lib"; import { DomainEvent, EventType, diff --git a/modules/outbound-domain-event-handler/test/unit/application/handlers/party-info-callback-received.test.ts b/modules/outbound-domain-event-handler/test/unit/application/handlers/party-info-callback-received.test.ts index 57343589f..ea49bf773 100644 --- a/modules/outbound-domain-event-handler/test/unit/application/handlers/party-info-callback-received.test.ts +++ b/modules/outbound-domain-event-handler/test/unit/application/handlers/party-info-callback-received.test.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,24 +10,23 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname - * Modusbox - - Kevin Leyow + * Infitx + - Kevin Leyow -------------- ******/ - 'use strict' import { DefaultLogger } from "@mojaloop/logging-bc-client-lib"; diff --git a/modules/outbound-domain-event-handler/test/unit/application/handlers/sdk-outbound-bulk-party-info-requested.test.ts b/modules/outbound-domain-event-handler/test/unit/application/handlers/sdk-outbound-bulk-party-info-requested.test.ts index 3d9c33e06..b25ffc2da 100644 --- a/modules/outbound-domain-event-handler/test/unit/application/handlers/sdk-outbound-bulk-party-info-requested.test.ts +++ b/modules/outbound-domain-event-handler/test/unit/application/handlers/sdk-outbound-bulk-party-info-requested.test.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,24 +10,23 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname - * Modusbox - - Kevin Leyow + * Infitx + - Kevin Leyow -------------- ******/ - 'use strict' import { DefaultLogger } from "@mojaloop/logging-bc-client-lib"; diff --git a/modules/outbound-domain-event-handler/test/unit/index.test.ts b/modules/outbound-domain-event-handler/test/unit/index.test.ts index 07a82897a..5d9594c7a 100644 --- a/modules/outbound-domain-event-handler/test/unit/index.test.ts +++ b/modules/outbound-domain-event-handler/test/unit/index.test.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,37 +10,33 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - - * Modusbox - - Shashikant Hirugade - + * Mojaloop Foundation + - Shashikant Hirugade -------------- ******/ - 'use strict' - - describe('empty tests', () => { - - beforeEach(async () => { - // Setup - }) - - afterEach(async () => { - // Cleanup - }) - - test('Event handler module only, no tests', async () => { - await expect(true) - }) - }) \ No newline at end of file +'use strict' + +describe('empty tests', () => { + + beforeEach(async () => { + // Setup + }) + + afterEach(async () => { + // Cleanup + }) + + test('Event handler module only, no tests', async () => { + await expect(true) + }) +}) diff --git a/modules/private-shared-lib/package.json b/modules/private-shared-lib/package.json index ea6da97eb..0d2f93eb3 100644 --- a/modules/private-shared-lib/package.json +++ b/modules/private-shared-lib/package.json @@ -30,7 +30,7 @@ }, "dependencies": { "@mojaloop/api-snippets": "17.7.9", - "@mojaloop/central-services-shared": "^18.15.2", + "@mojaloop/central-services-shared": "^18.16.0", "@mojaloop/logging-bc-public-types-lib": "^0.5.4", "@mojaloop/platform-shared-lib-messaging-types-lib": "^0.7.1", "@mojaloop/platform-shared-lib-nodejs-kafka-client-lib": "0.5.18", diff --git a/modules/private-shared-lib/src/domain/base_aggregate.ts b/modules/private-shared-lib/src/domain/base_aggregate.ts index 533e76ed5..0beacc09a 100644 --- a/modules/private-shared-lib/src/domain/base_aggregate.ts +++ b/modules/private-shared-lib/src/domain/base_aggregate.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,17 +10,17 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname * Coil - Donovan Changfoot @@ -28,10 +28,10 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak - - Vijay Kumar Guthi + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/domain/base_entity.ts b/modules/private-shared-lib/src/domain/base_entity.ts index fcd282b98..5255a3167 100644 --- a/modules/private-shared-lib/src/domain/base_entity.ts +++ b/modules/private-shared-lib/src/domain/base_entity.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,17 +10,17 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname * Coil - Donovan Changfoot @@ -28,7 +28,7 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak diff --git a/modules/private-shared-lib/src/domain/base_entity_state.ts b/modules/private-shared-lib/src/domain/base_entity_state.ts index 86633be91..55c031c4f 100644 --- a/modules/private-shared-lib/src/domain/base_entity_state.ts +++ b/modules/private-shared-lib/src/domain/base_entity_state.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,17 +10,17 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname * Coil - Donovan Changfoot @@ -28,7 +28,7 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak diff --git a/modules/private-shared-lib/src/domain/bulk_batch_entity.ts b/modules/private-shared-lib/src/domain/bulk_batch_entity.ts index 94b3c1d67..32a4ebabb 100644 --- a/modules/private-shared-lib/src/domain/bulk_batch_entity.ts +++ b/modules/private-shared-lib/src/domain/bulk_batch_entity.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/domain/bulk_transaction_entity.ts b/modules/private-shared-lib/src/domain/bulk_transaction_entity.ts index f67f82e60..ba273b791 100644 --- a/modules/private-shared-lib/src/domain/bulk_transaction_entity.ts +++ b/modules/private-shared-lib/src/domain/bulk_transaction_entity.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ @@ -110,7 +114,7 @@ export class BulkTransactionEntity extends BaseEntity { return new BulkTransactionEntity(initialState); } - + constructor(initialState: BulkTransactionState) { super(initialState); } diff --git a/modules/private-shared-lib/src/domain/ientity_state_repository.ts b/modules/private-shared-lib/src/domain/ientity_state_repository.ts index 5b109c8ba..34400b250 100644 --- a/modules/private-shared-lib/src/domain/ientity_state_repository.ts +++ b/modules/private-shared-lib/src/domain/ientity_state_repository.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,17 +10,17 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname * Coil - Donovan Changfoot @@ -28,7 +28,7 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak diff --git a/modules/private-shared-lib/src/domain/index.ts b/modules/private-shared-lib/src/domain/index.ts index d8e6b6c05..443d0e59e 100644 --- a/modules/private-shared-lib/src/domain/index.ts +++ b/modules/private-shared-lib/src/domain/index.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,17 +10,17 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname * Coil - Donovan Changfoot @@ -28,7 +28,7 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak diff --git a/modules/private-shared-lib/src/domain/individual_transfer_entity.ts b/modules/private-shared-lib/src/domain/individual_transfer_entity.ts index 7155c7cdf..473bf5260 100644 --- a/modules/private-shared-lib/src/domain/individual_transfer_entity.ts +++ b/modules/private-shared-lib/src/domain/individual_transfer_entity.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/errors/index.ts b/modules/private-shared-lib/src/errors/index.ts index 7e9303c7b..10c5b156d 100644 --- a/modules/private-shared-lib/src/errors/index.ts +++ b/modules/private-shared-lib/src/errors/index.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,23 +10,23 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ 'use strict'; - -export * from './validation-errors'; \ No newline at end of file + +export * from './validation-errors'; diff --git a/modules/private-shared-lib/src/errors/validation-errors.ts b/modules/private-shared-lib/src/errors/validation-errors.ts index 8cf8e584b..366b97048 100644 --- a/modules/private-shared-lib/src/errors/validation-errors.ts +++ b/modules/private-shared-lib/src/errors/validation-errors.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/base_event.ts b/modules/private-shared-lib/src/events/base_event.ts index ff8984b57..aa820f466 100644 --- a/modules/private-shared-lib/src/events/base_event.ts +++ b/modules/private-shared-lib/src/events/base_event.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/command_event.ts b/modules/private-shared-lib/src/events/command_event.ts index 4b0c7e27d..6b9945d7c 100644 --- a/modules/private-shared-lib/src/events/command_event.ts +++ b/modules/private-shared-lib/src/events/command_event.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/domain_event.ts b/modules/private-shared-lib/src/events/domain_event.ts index 6ae30bcf5..479234ae9 100644 --- a/modules/private-shared-lib/src/events/domain_event.ts +++ b/modules/private-shared-lib/src/events/domain_event.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/index.ts b/modules/private-shared-lib/src/events/index.ts index ce794db56..09023cb07 100644 --- a/modules/private-shared-lib/src/events/index.ts +++ b/modules/private-shared-lib/src/events/index.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_command_event/index.ts b/modules/private-shared-lib/src/events/outbound_command_event/index.ts index db11a0b3c..3d462ec90 100644 --- a/modules/private-shared-lib/src/events/outbound_command_event/index.ts +++ b/modules/private-shared-lib/src/events/outbound_command_event/index.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_command_event/prepare_sdk_outbound_bulk_response.ts b/modules/private-shared-lib/src/events/outbound_command_event/prepare_sdk_outbound_bulk_response.ts index a448e41c5..57b6c710a 100644 --- a/modules/private-shared-lib/src/events/outbound_command_event/prepare_sdk_outbound_bulk_response.ts +++ b/modules/private-shared-lib/src/events/outbound_command_event/prepare_sdk_outbound_bulk_response.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Kevin Leyow + + * Mojaloop Foundation + - Name Surname + * Infitx + - Kevin Leyow -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_command_event/process_bulk_quotes_callback.ts b/modules/private-shared-lib/src/events/outbound_command_event/process_bulk_quotes_callback.ts index 08a7c7cc9..7361cd061 100644 --- a/modules/private-shared-lib/src/events/outbound_command_event/process_bulk_quotes_callback.ts +++ b/modules/private-shared-lib/src/events/outbound_command_event/process_bulk_quotes_callback.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_command_event/process_party_info_callback.ts b/modules/private-shared-lib/src/events/outbound_command_event/process_party_info_callback.ts index c346447bf..2b4c140ef 100644 --- a/modules/private-shared-lib/src/events/outbound_command_event/process_party_info_callback.ts +++ b/modules/private-shared-lib/src/events/outbound_command_event/process_party_info_callback.ts @@ -1,23 +1,27 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + * Infitx - Yevhen Kyriukha -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_accept_party_info.ts b/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_accept_party_info.ts index 6a6bc17ee..1fbfc2cf3 100644 --- a/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_accept_party_info.ts +++ b/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_accept_party_info.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_accept_quote.ts b/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_accept_quote.ts index bddc0e5f7..e14d63d5b 100644 --- a/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_accept_quote.ts +++ b/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_accept_quote.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi - Miguel de Barros -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_party_info_request.ts b/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_party_info_request.ts index bd9ee60c9..718378ec3 100644 --- a/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_party_info_request.ts +++ b/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_party_info_request.ts @@ -1,23 +1,27 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + * Infitx - Yevhen Kyriukha -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_quotes_request.ts b/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_quotes_request.ts index 90c09751b..7c641aed8 100644 --- a/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_quotes_request.ts +++ b/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_quotes_request.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_request.ts b/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_request.ts index 51684d2e4..0b0f893b9 100644 --- a/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_request.ts +++ b/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_request.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_response_sent.ts b/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_response_sent.ts index f7fb825ff..f242f0bcf 100644 --- a/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_response_sent.ts +++ b/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_response_sent.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Kevin Leyow + + * Mojaloop Foundation + - Name Surname + * Infitx + - Kevin Leyow -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_transfers_request.ts b/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_transfers_request.ts index 9b78f0c5f..a407e755b 100644 --- a/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_transfers_request.ts +++ b/modules/private-shared-lib/src/events/outbound_command_event/process_sdk_outbound_bulk_transfers_request.ts @@ -1,23 +1,27 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + * Infitx - Miguel de Barros -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/bulk_quotes_callback_processed.ts b/modules/private-shared-lib/src/events/outbound_domain_event/bulk_quotes_callback_processed.ts index 16c0b4590..e63ad6ee3 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/bulk_quotes_callback_processed.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/bulk_quotes_callback_processed.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/bulk_quotes_callback_received.ts b/modules/private-shared-lib/src/events/outbound_domain_event/bulk_quotes_callback_received.ts index f74419a7b..8f9ac28a8 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/bulk_quotes_callback_received.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/bulk_quotes_callback_received.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/bulk_quotes_requested.ts b/modules/private-shared-lib/src/events/outbound_domain_event/bulk_quotes_requested.ts index 07fd1ce56..472cd9954 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/bulk_quotes_requested.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/bulk_quotes_requested.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_callback_processed.ts b/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_callback_processed.ts index 9257f0e15..d66d9963c 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_callback_processed.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_callback_processed.ts @@ -1,3 +1,33 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi + + -------------- + ******/ + 'use strict'; import { DomainEvent } from '../domain_event'; diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_callback_received.ts b/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_callback_received.ts index bd7558b4d..f49103069 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_callback_received.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_callback_received.ts @@ -1,3 +1,33 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi + + -------------- + ******/ + 'use strict'; import { DomainEvent } from '../domain_event'; diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_processed.ts b/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_processed.ts index ba7c0ebd9..b7cf36ae9 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_processed.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_processed.ts @@ -1,3 +1,32 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi + + -------------- + ******/ 'use strict'; import { DomainEvent } from '../domain_event'; diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_requested.ts b/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_requested.ts index cebb0c4a6..293128b0b 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_requested.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/bulk_transfers_requested.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/index.ts b/modules/private-shared-lib/src/events/outbound_domain_event/index.ts index 77bbfb49d..1db4bad10 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/index.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/index.ts @@ -1,23 +1,27 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + * Infitx - Yevhen Kyriukha -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/party_info_callback_processed.ts b/modules/private-shared-lib/src/events/outbound_domain_event/party_info_callback_processed.ts index 89819f4de..40236e1d1 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/party_info_callback_processed.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/party_info_callback_processed.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi - Yevhen Kyriukha -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/party_info_callback_received.ts b/modules/private-shared-lib/src/events/outbound_domain_event/party_info_callback_received.ts index caf593fde..9413e112a 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/party_info_callback_received.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/party_info_callback_received.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi - Yevhen Kyriukha -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/party_info_requested.ts b/modules/private-shared-lib/src/events/outbound_domain_event/party_info_requested.ts index 47c723ebb..da4769970 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/party_info_requested.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/party_info_requested.ts @@ -1,23 +1,27 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + * Infitx - Yevhen Kyriukha -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_party_info_processed.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_party_info_processed.ts index b2820fe9c..171e300d5 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_party_info_processed.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_party_info_processed.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_party_info_received.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_party_info_received.ts index 718fb5829..dce2efca9 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_party_info_received.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_party_info_received.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_party_info_requested.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_party_info_requested.ts index d092b429e..a8fe3c360 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_party_info_requested.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_party_info_requested.ts @@ -1,23 +1,27 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + * Infitx - Yevhen Kyriukha -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_quote_processed.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_quote_processed.ts index d00fb1eb6..c7e827361 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_quote_processed.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_quote_processed.ts @@ -1,23 +1,27 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + * Infitx - Miguel de Barros -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_quote_received.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_quote_received.ts index e5d5b28ee..5df0822ba 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_quote_received.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_quote_received.ts @@ -1,23 +1,27 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + * Infitx - Yevhen Kyriukha - Miguel de Barros -------------- diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_quote_requested.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_quote_requested.ts index 5eb869b95..9bf51814f 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_quote_requested.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_accept_quote_requested.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_auto_accept_party_info_requested.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_auto_accept_party_info_requested.ts index babc6d034..4c683c2f2 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_auto_accept_party_info_requested.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_auto_accept_party_info_requested.ts @@ -1,23 +1,27 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + * Infitx - Yevhen Kyriukha -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_auto_accept_quote_completed.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_auto_accept_quote_completed.ts index 3328230d3..ed7d2ed6a 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_auto_accept_quote_completed.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_auto_accept_quote_completed.ts @@ -1,23 +1,27 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + * Infitx - Miguel de Barros -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_party_info_request_processed.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_party_info_request_processed.ts index 0274b1c37..b158458b9 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_party_info_request_processed.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_party_info_request_processed.ts @@ -1,23 +1,27 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + * Infitx - Yevhen Kyriukha -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_party_info_requested.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_party_info_requested.ts index 3586e1cd3..65e00e753 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_party_info_requested.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_party_info_requested.ts @@ -1,23 +1,27 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + * Infitx - Yevhen Kyriukha -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_quotes_request_processed.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_quotes_request_processed.ts index 0efbdd217..91144f179 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_quotes_request_processed.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_quotes_request_processed.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_request_received.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_request_received.ts index a9f59b7d0..41bfdafa9 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_request_received.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_request_received.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_response_prepared.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_response_prepared.ts index 7d19d705d..5cb81f10e 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_response_prepared.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_response_prepared.ts @@ -1,23 +1,27 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + * Infitx - Yevhen Kyriukha -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_response_sent.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_response_sent.ts index da6e46bc0..29da03508 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_response_sent.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_response_sent.ts @@ -1,23 +1,27 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + * Infitx - Yevhen Kyriukha -------------- ******/ diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_response_set_processed.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_response_set_processed.ts index 6a1310d05..dc0481051 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_response_set_processed.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_response_set_processed.ts @@ -1,3 +1,33 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi + + -------------- + ******/ + 'use strict'; import { DomainEvent } from '../domain_event'; diff --git a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_transfers_request_processed.ts b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_transfers_request_processed.ts index 092a0cc12..ad6990d14 100644 --- a/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_transfers_request_processed.ts +++ b/modules/private-shared-lib/src/events/outbound_domain_event/sdk_outbound_bulk_transfers_request_processed.ts @@ -1,3 +1,33 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi + + -------------- + ******/ + 'use strict'; import { DomainEvent } from '../domain_event'; diff --git a/modules/private-shared-lib/src/index.ts b/modules/private-shared-lib/src/index.ts index 84e118490..447612248 100644 --- a/modules/private-shared-lib/src/index.ts +++ b/modules/private-shared-lib/src/index.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,21 +10,22 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Shashikant Hirugade + * Mojaloop Foundation + - Name Surname + + * Infitx + - Shashikant Hirugade - Juan Correa - - Vijay Kumar Guthi + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/infra/index.ts b/modules/private-shared-lib/src/infra/index.ts index 4bb098331..d3dd32d87 100644 --- a/modules/private-shared-lib/src/infra/index.ts +++ b/modules/private-shared-lib/src/infra/index.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,17 +10,17 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname * Coil - Donovan Changfoot @@ -28,7 +28,7 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak diff --git a/modules/private-shared-lib/src/infra/inmemory_bulk_transaction_repo.ts b/modules/private-shared-lib/src/infra/inmemory_bulk_transaction_repo.ts index b30ce20a2..24975e672 100644 --- a/modules/private-shared-lib/src/infra/inmemory_bulk_transaction_repo.ts +++ b/modules/private-shared-lib/src/infra/inmemory_bulk_transaction_repo.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi - Miguel de Barros -------------- ******/ @@ -30,7 +34,7 @@ import { BulkBatchState, BulkTransactionState, IndividualTransferState } from '@ import { IBulkTransactionEntityRepo } from '@module-types'; export class InMemoryBulkTransactionStateRepo implements IBulkTransactionEntityRepo { - + private _data: any; private readonly _logger: ILogger; diff --git a/modules/private-shared-lib/src/infra/kafka_command_event_consumer.ts b/modules/private-shared-lib/src/infra/kafka_command_event_consumer.ts index fe4217021..755d3b172 100644 --- a/modules/private-shared-lib/src/infra/kafka_command_event_consumer.ts +++ b/modules/private-shared-lib/src/infra/kafka_command_event_consumer.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/infra/kafka_command_event_producer.ts b/modules/private-shared-lib/src/infra/kafka_command_event_producer.ts index 464f989f9..a7d35b3e4 100644 --- a/modules/private-shared-lib/src/infra/kafka_command_event_producer.ts +++ b/modules/private-shared-lib/src/infra/kafka_command_event_producer.ts @@ -3,24 +3,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/infra/kafka_domain_event_consumer.ts b/modules/private-shared-lib/src/infra/kafka_domain_event_consumer.ts index 13861e8e3..f625f4229 100644 --- a/modules/private-shared-lib/src/infra/kafka_domain_event_consumer.ts +++ b/modules/private-shared-lib/src/infra/kafka_domain_event_consumer.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/infra/kafka_domain_event_producer.ts b/modules/private-shared-lib/src/infra/kafka_domain_event_producer.ts index e09f9f3b4..a8ffa947b 100644 --- a/modules/private-shared-lib/src/infra/kafka_domain_event_producer.ts +++ b/modules/private-shared-lib/src/infra/kafka_domain_event_producer.ts @@ -3,24 +3,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/infra/kafka_event_consumer.ts b/modules/private-shared-lib/src/infra/kafka_event_consumer.ts index 5a5f3d946..615d5829a 100644 --- a/modules/private-shared-lib/src/infra/kafka_event_consumer.ts +++ b/modules/private-shared-lib/src/infra/kafka_event_consumer.ts @@ -3,24 +3,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ @@ -58,7 +62,7 @@ export class KafkaEventConsumer implements IEventConsumer { await this._kafkaConsumer.connect(); } - async start(): Promise { + async start(): Promise { await this._kafkaConsumer.start(); } diff --git a/modules/private-shared-lib/src/infra/kafka_event_producer.ts b/modules/private-shared-lib/src/infra/kafka_event_producer.ts index 8811a19bb..374384a50 100644 --- a/modules/private-shared-lib/src/infra/kafka_event_producer.ts +++ b/modules/private-shared-lib/src/infra/kafka_event_producer.ts @@ -3,24 +3,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/infra/redis_bulk_transaction_repo.ts b/modules/private-shared-lib/src/infra/redis_bulk_transaction_repo.ts index baf92f7b3..fe2ef972a 100644 --- a/modules/private-shared-lib/src/infra/redis_bulk_transaction_repo.ts +++ b/modules/private-shared-lib/src/infra/redis_bulk_transaction_repo.ts @@ -1,24 +1,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + * Infitx + - Vijay Kumar Guthi - Miguel de Barros -------------- ******/ diff --git a/modules/private-shared-lib/src/types/bulk_transaction_entity_repo.ts b/modules/private-shared-lib/src/types/bulk_transaction_entity_repo.ts index ce78ddf0c..81ec177f1 100644 --- a/modules/private-shared-lib/src/types/bulk_transaction_entity_repo.ts +++ b/modules/private-shared-lib/src/types/bulk_transaction_entity_repo.ts @@ -1,24 +1,29 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/types/events/PartyInfoRequest.ts b/modules/private-shared-lib/src/types/events/PartyInfoRequest.ts index 7acb1cb71..aa5cf2c26 100644 --- a/modules/private-shared-lib/src/types/events/PartyInfoRequest.ts +++ b/modules/private-shared-lib/src/types/events/PartyInfoRequest.ts @@ -1,3 +1,33 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi + + -------------- + ******/ + import { SDKSchemeAdapter } from '@mojaloop/api-snippets'; export type PartyInfoRequest = { diff --git a/modules/private-shared-lib/src/types/events/PartyResponse.ts b/modules/private-shared-lib/src/types/events/PartyResponse.ts index b1059f56d..82092afdc 100644 --- a/modules/private-shared-lib/src/types/events/PartyResponse.ts +++ b/modules/private-shared-lib/src/types/events/PartyResponse.ts @@ -1,3 +1,33 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi + + -------------- + ******/ + import { SDKSchemeAdapter } from '@mojaloop/api-snippets'; export interface PartyResponse { party?: SDKSchemeAdapter.V2_0_0.Outbound.Types.Party; diff --git a/modules/private-shared-lib/src/types/events/index.ts b/modules/private-shared-lib/src/types/events/index.ts index e8246ef77..740091334 100644 --- a/modules/private-shared-lib/src/types/events/index.ts +++ b/modules/private-shared-lib/src/types/events/index.ts @@ -1,2 +1,32 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi + + -------------- + ******/ + export * from './PartyResponse'; export * from './PartyInfoRequest'; diff --git a/modules/private-shared-lib/src/types/index.ts b/modules/private-shared-lib/src/types/index.ts index c61afd9d9..bd5be9709 100644 --- a/modules/private-shared-lib/src/types/index.ts +++ b/modules/private-shared-lib/src/types/index.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,21 +10,22 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Shashikant Hirugade + * Mojaloop Foundation + - Name Surname + + * Infitx + - Shashikant Hirugade - Juan Correa - - Vijay Kumar Guthi + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/types/infra/iMessageTypes.ts b/modules/private-shared-lib/src/types/infra/iMessageTypes.ts index 54f9534b2..c607b1091 100644 --- a/modules/private-shared-lib/src/types/infra/iMessageTypes.ts +++ b/modules/private-shared-lib/src/types/infra/iMessageTypes.ts @@ -2,23 +2,28 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox + + * Mojaloop Foundation + - Name Surname + + * Infitx - Miguel de Barros -------------- ******/ diff --git a/modules/private-shared-lib/src/types/infra/icommand-event-producer.ts b/modules/private-shared-lib/src/types/infra/icommand-event-producer.ts index 2ed951cfc..b8420b1ad 100644 --- a/modules/private-shared-lib/src/types/infra/icommand-event-producer.ts +++ b/modules/private-shared-lib/src/types/infra/icommand-event-producer.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,17 +10,17 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname * Coil - Donovan Changfoot @@ -28,7 +28,7 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak diff --git a/modules/private-shared-lib/src/types/infra/idomain-event-producer.ts b/modules/private-shared-lib/src/types/infra/idomain-event-producer.ts index 60bfbe8e2..de221a260 100644 --- a/modules/private-shared-lib/src/types/infra/idomain-event-producer.ts +++ b/modules/private-shared-lib/src/types/infra/idomain-event-producer.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,17 +10,17 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname * Coil - Donovan Changfoot @@ -28,7 +28,7 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak diff --git a/modules/private-shared-lib/src/types/infra/ievent-consumer.ts b/modules/private-shared-lib/src/types/infra/ievent-consumer.ts index dd6ce4423..9214c09bd 100644 --- a/modules/private-shared-lib/src/types/infra/ievent-consumer.ts +++ b/modules/private-shared-lib/src/types/infra/ievent-consumer.ts @@ -2,8 +2,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -11,17 +11,17 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname * Coil - Donovan Changfoot @@ -29,7 +29,7 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak diff --git a/modules/private-shared-lib/src/types/infra/ievent-producer.ts b/modules/private-shared-lib/src/types/infra/ievent-producer.ts index a6ac5b1ea..be77af0de 100644 --- a/modules/private-shared-lib/src/types/infra/ievent-producer.ts +++ b/modules/private-shared-lib/src/types/infra/ievent-producer.ts @@ -2,8 +2,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -11,17 +11,17 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname * Coil - Donovan Changfoot @@ -29,7 +29,7 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak diff --git a/modules/private-shared-lib/src/types/infra/ikafka_event_consumer_options.ts b/modules/private-shared-lib/src/types/infra/ikafka_event_consumer_options.ts index 06ae13627..fbcb49ccc 100644 --- a/modules/private-shared-lib/src/types/infra/ikafka_event_consumer_options.ts +++ b/modules/private-shared-lib/src/types/infra/ikafka_event_consumer_options.ts @@ -1,24 +1,29 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/types/infra/ikafka_event_producer_options.ts b/modules/private-shared-lib/src/types/infra/ikafka_event_producer_options.ts index ac90a5b61..5cd8b55e0 100644 --- a/modules/private-shared-lib/src/types/infra/ikafka_event_producer_options.ts +++ b/modules/private-shared-lib/src/types/infra/ikafka_event_producer_options.ts @@ -1,24 +1,29 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/types/infra/index.ts b/modules/private-shared-lib/src/types/infra/index.ts index ed7dc65ec..cb059d246 100644 --- a/modules/private-shared-lib/src/types/infra/index.ts +++ b/modules/private-shared-lib/src/types/infra/index.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,19 +10,19 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Shashikant Hirugade + * Mojaloop Foundation + - Name Surname + * Infitx + - Shashikant Hirugade - Juan Correa -------------- diff --git a/modules/private-shared-lib/src/types/infra/irun_handler.ts b/modules/private-shared-lib/src/types/infra/irun_handler.ts index c1102ab5d..4c5826cd6 100644 --- a/modules/private-shared-lib/src/types/infra/irun_handler.ts +++ b/modules/private-shared-lib/src/types/infra/irun_handler.ts @@ -2,8 +2,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -11,17 +11,17 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname * Coil - Donovan Changfoot @@ -29,7 +29,7 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak diff --git a/modules/private-shared-lib/src/utils/crypto.ts b/modules/private-shared-lib/src/utils/crypto.ts index 69f6cd156..53d3586de 100644 --- a/modules/private-shared-lib/src/utils/crypto.ts +++ b/modules/private-shared-lib/src/utils/crypto.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,17 +10,17 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname * Coil - Donovan Changfoot @@ -28,7 +28,7 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak diff --git a/modules/private-shared-lib/src/utils/enum_utils.ts b/modules/private-shared-lib/src/utils/enum_utils.ts index e244c53ac..e7f20f7e1 100644 --- a/modules/private-shared-lib/src/utils/enum_utils.ts +++ b/modules/private-shared-lib/src/utils/enum_utils.ts @@ -1,24 +1,29 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/utils/index.ts b/modules/private-shared-lib/src/utils/index.ts index 2c1940f09..d28bad7c0 100644 --- a/modules/private-shared-lib/src/utils/index.ts +++ b/modules/private-shared-lib/src/utils/index.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,17 +10,17 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname * Coil - Donovan Changfoot @@ -28,7 +28,7 @@ * Crosslake - Pedro Sousa Barreto - * ModusBox + * Infitx - Miguel de Barros - Roman Pietrzak diff --git a/modules/private-shared-lib/src/values/enums.ts b/modules/private-shared-lib/src/values/enums.ts index 7e2064326..f17a9ed22 100644 --- a/modules/private-shared-lib/src/values/enums.ts +++ b/modules/private-shared-lib/src/values/enums.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,19 +10,22 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . + * Mojaloop Foundation + - Name Surname + * Gates Foundation - Name Surname - * Modusbox - - Vijay Kumar Guthi + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/src/values/index.ts b/modules/private-shared-lib/src/values/index.ts index 78dc08356..7e51418bf 100644 --- a/modules/private-shared-lib/src/values/index.ts +++ b/modules/private-shared-lib/src/values/index.ts @@ -1,24 +1,29 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi -------------- ******/ diff --git a/modules/private-shared-lib/test/integration/infra/kafka_generic.test.ts b/modules/private-shared-lib/test/integration/infra/kafka_generic.test.ts index 426c5991f..81346ae30 100644 --- a/modules/private-shared-lib/test/integration/infra/kafka_generic.test.ts +++ b/modules/private-shared-lib/test/integration/infra/kafka_generic.test.ts @@ -1,3 +1,30 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ + import { KafkaGenericProducer } from '../../src/kafka_generic_producer' import { KafkaGenericConsumer, KafkaGenericConsumerOptions, EnumOffset } from '../../src/kafka_generic_consumer' import { SimpleLogger } from '@mojaloop/sdk-scheme-adapter-private-shared-lib/test/unit/utilities/simple_logger' @@ -26,7 +53,7 @@ describe('Kafka Generic Producer and Consumer', () => { await kafkaMsgPublisher.destroy() }) - test('can produce and consume a message', async () => { + test('can produce and consume a message', async () => { const message: IMessage = { msgId: '123', msgKey: '321', @@ -47,9 +74,9 @@ describe('Kafka Generic Producer and Consumer', () => { topics: ['test'] } const consumer = await KafkaGenericConsumer.Create(consumerOptions, new SimpleLogger()) - + await kafkaMsgPublisher.send(message) - + const result = await new Promise(resolve => { const handler = async (message: IDomainMessage) => { resolve(message) @@ -102,9 +129,9 @@ describe('Kafka Generic Producer and Consumer', () => { topics: ['test2'] } const consumer = await KafkaGenericConsumer.Create(consumerOptions, new SimpleLogger()) - + await kafkaMsgPublisher.send(messages) - + const result: IDomainMessage[] = [] const handler = async (message: IDomainMessage) => { result.push(message) @@ -137,4 +164,4 @@ describe('Kafka Generic Producer and Consumer', () => { ]) }) -}) \ No newline at end of file +}) diff --git a/modules/private-shared-lib/test/integration/infra/kafkajs.test.ts b/modules/private-shared-lib/test/integration/infra/kafkajs.test.ts index 0f7506da2..3dcbcf7b1 100644 --- a/modules/private-shared-lib/test/integration/infra/kafkajs.test.ts +++ b/modules/private-shared-lib/test/integration/infra/kafkajs.test.ts @@ -1,3 +1,30 @@ +/***** + 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 . + + * Mojaloop Foundation + - Name Surname + + -------------- + ******/ + import { KafkaJsConsumerOptions, KafkaJsConsumer } from '../../src/kafkajs_consumer' import { KafkaJsProducerOptions, KafkajsProducer } from '../../src/kafkajs_producer' import { SimpleLogger } from '@mojaloop/sdk-scheme-adapter-private-shared-lib/test/unit/utilities/simple_logger' @@ -52,7 +79,7 @@ describe('Kafkajs Consumer and Publisher', () => { addTraceInfo: (trace) => {}, passTraceInfo: (message) => {} } - + await publisher.send(message) const result = await new Promise(resolve => { @@ -111,9 +138,9 @@ describe('Kafkajs Consumer and Publisher', () => { topics: ['kafkajstest2'] } const consumer = new KafkaJsConsumer(consumeOptions, new SimpleLogger()) - + await publisher.send(messages) - + const result: IDomainMessage[] = [] const handler = async (message: IDomainMessage) => { result.push(message) @@ -145,4 +172,4 @@ describe('Kafkajs Consumer and Publisher', () => { } ]) }, 10000) -}) \ No newline at end of file +}) diff --git a/modules/private-shared-lib/test/unit/events/command_event.test.ts b/modules/private-shared-lib/test/unit/events/command_event.test.ts index 0da5520d1..edfd20019 100644 --- a/modules/private-shared-lib/test/unit/events/command_event.test.ts +++ b/modules/private-shared-lib/test/unit/events/command_event.test.ts @@ -1,24 +1,30 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi + -------------- ******/ diff --git a/modules/private-shared-lib/test/unit/events/domain_event.test.ts b/modules/private-shared-lib/test/unit/events/domain_event.test.ts index 80bd54f14..b001f378f 100644 --- a/modules/private-shared-lib/test/unit/events/domain_event.test.ts +++ b/modules/private-shared-lib/test/unit/events/domain_event.test.ts @@ -1,24 +1,30 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname - * Modusbox - - Vijay Kumar Guthi + + * Mojaloop Foundation + - Name Surname + + * Infitx + - Vijay Kumar Guthi + -------------- ******/ diff --git a/modules/private-shared-lib/test/unit/events/outbound_domain_event/party_info_callback_received.test.ts b/modules/private-shared-lib/test/unit/events/outbound_domain_event/party_info_callback_received.test.ts index bfaae5eb5..69617decd 100644 --- a/modules/private-shared-lib/test/unit/events/outbound_domain_event/party_info_callback_received.test.ts +++ b/modules/private-shared-lib/test/unit/events/outbound_domain_event/party_info_callback_received.test.ts @@ -1,8 +1,8 @@ /***** License -------------- - Copyright © 2017 Bill & Melinda Gates Foundation - The Mojaloop files are made available by the Bill & Melinda Gates 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 + 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 @@ -10,20 +10,20 @@ Contributors -------------- - This is the official list (alphabetical ordering) of the Mojaloop project contributors for this file. + 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 - Gates Foundation organization for an example). Those individuals should have + 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 . - * Gates Foundation - - Name Surname + * Mojaloop Foundation + - Name Surname - * Modusbox - - Kevin Leyow + * Infitx + - Kevin Leyow -------------- ******/ diff --git a/yarn.lock b/yarn.lock index 5122d7cb6..255989397 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1653,15 +1653,6 @@ __metadata: languageName: node linkType: hard -"@hapi/address@npm:^4.0.1": - version: 4.1.0 - resolution: "@hapi/address@npm:4.1.0" - dependencies: - "@hapi/hoek": ^9.0.0 - checksum: 01e8257c9428be2a2a0441b24dcab2396a6ca20f53799fd921035b45f9f62a6014f1a0dfaf2dd10912a8b0098a9ba53c3f0863a67e7acbadddeb3d2785591cfc - languageName: node - linkType: hard - "@hapi/ammo@npm:^6.0.1": version: 6.0.1 resolution: "@hapi/ammo@npm:6.0.1" @@ -1782,13 +1773,6 @@ __metadata: languageName: node linkType: hard -"@hapi/formula@npm:^2.0.0": - version: 2.0.0 - resolution: "@hapi/formula@npm:2.0.0" - checksum: 902da057c53027d9356de15e53a8af9ea4795d3fb78c066668b36cfca54abd2d707860469618448e7de02eb8364ead86e53b839dbd363e1aeb65ee9a195e5fad - languageName: node - linkType: hard - "@hapi/hapi@npm:21.3.12": version: 21.3.12 resolution: "@hapi/hapi@npm:21.3.12" @@ -1826,7 +1810,7 @@ __metadata: languageName: node linkType: hard -"@hapi/hoek@npm:9.x.x, @hapi/hoek@npm:^9.0.0": +"@hapi/hoek@npm:9.x.x, @hapi/hoek@npm:^9.0.0, @hapi/hoek@npm:^9.3.0": version: 9.3.0 resolution: "@hapi/hoek@npm:9.3.0" checksum: 4771c7a776242c3c022b168046af4e324d116a9d2e1d60631ee64f474c6e38d1bb07092d898bf95c7bc5d334c5582798a1456321b2e53ca817d4e7c88bc25b43 @@ -1862,19 +1846,6 @@ __metadata: languageName: node linkType: hard -"@hapi/joi@npm:17.1.1": - version: 17.1.1 - resolution: "@hapi/joi@npm:17.1.1" - dependencies: - "@hapi/address": ^4.0.1 - "@hapi/formula": ^2.0.0 - "@hapi/hoek": ^9.0.0 - "@hapi/pinpoint": ^2.0.0 - "@hapi/topo": ^5.0.0 - checksum: 803d77e19e26802860de22b8d1ae3435679844202703d20bfd6246a8c6aa00143ce48d0e8beecf55812334e8e89ac04b79301264d4a3f87c980eb0c0646b33ab - languageName: node - linkType: hard - "@hapi/mimos@npm:^7.0.1": version: 7.0.1 resolution: "@hapi/mimos@npm:7.0.1" @@ -1908,13 +1879,6 @@ __metadata: languageName: node linkType: hard -"@hapi/pinpoint@npm:^2.0.0": - version: 2.0.1 - resolution: "@hapi/pinpoint@npm:2.0.1" - checksum: 8a1bb399f7cf48948669fdc80dff83892ed56eb62eee2cca128fc8b0683733b16e274b395eddfae6154a698aa57c66a3905ceaa3119c59de29751d4601831057 - languageName: node - linkType: hard - "@hapi/podium@npm:^5.0.0": version: 5.0.1 resolution: "@hapi/podium@npm:5.0.1" @@ -1994,7 +1958,7 @@ __metadata: languageName: node linkType: hard -"@hapi/topo@npm:^5.0.0": +"@hapi/topo@npm:^5.1.0": version: 5.1.0 resolution: "@hapi/topo@npm:5.1.0" dependencies: @@ -2460,13 +2424,13 @@ __metadata: languageName: node linkType: hard -"@mojaloop/central-services-error-handling@npm:^13.0.3": - version: 13.0.3 - resolution: "@mojaloop/central-services-error-handling@npm:13.0.3" +"@mojaloop/central-services-error-handling@npm:^13.0.4": + version: 13.0.4 + resolution: "@mojaloop/central-services-error-handling@npm:13.0.4" dependencies: fast-safe-stringify: 2.1.1 lodash: 4.17.21 - checksum: ec7ca845dee39aaabbe84aadd7f0e4e850eb545bfedeca7ff74e6a25ef13dbf2a4229f3f7a9c8c3cc113ea1b03501fb0f8933407ca8bfdbe4479212e1d4f1295 + checksum: 9bb050e3f19af239862f7e1b8493105214b9bbf5a656b3376ed6c23ee63607d640b7f573ce4b871337a0ae6047597a31a33036499e65be57c1bd9db694c3833c languageName: node linkType: hard @@ -2552,16 +2516,16 @@ __metadata: languageName: node linkType: hard -"@mojaloop/central-services-shared@npm:^18.15.2": - version: 18.15.2 - resolution: "@mojaloop/central-services-shared@npm:18.15.2" +"@mojaloop/central-services-shared@npm:^18.16.0": + version: 18.16.0 + resolution: "@mojaloop/central-services-shared@npm:18.16.0" dependencies: "@hapi/catbox": 12.1.1 "@hapi/catbox-memory": 5.0.1 "@hapi/hapi": 21.3.12 - "@hapi/joi": 17.1.1 "@hapi/joi-date": 2.0.1 "@mojaloop/inter-scheme-proxy-cache-lib": 2.3.1 + "@mojaloop/sdk-standard-components": 19.6.3 axios: 1.7.9 clone: 2.1.2 dotenv: 16.4.7 @@ -2570,6 +2534,7 @@ __metadata: fast-safe-stringify: ^2.1.1 immutable: 5.0.3 ioredis: ^5.4.2 + joi: 17.13.3 lodash: 4.17.21 mustache: 4.2.0 openapi-backend: 5.11.1 @@ -2600,7 +2565,7 @@ __metadata: optional: false ajv-keyboards: optional: false - checksum: 909c97719305beaffc673d8788ed6abb900c029b4c7e334cb1cfccf48b6f0ac3203b12d5f5d9e0ba2ec55e68cb2fb7bfcbcf55497ea3daeeead26fd2df507b21 + checksum: eeab92b63de122dc31eb40a0b222605faf8ec9af78d597a4ff523c0abab569939eaa690fa5b3ee29ce4b8c94f3472a803d590ad91b52ed00361df485c784e7e2 languageName: node linkType: hard @@ -2715,10 +2680,10 @@ __metadata: "@babel/preset-env": ^7.26.7 "@koa/cors": ^5.0.0 "@mojaloop/api-snippets": 17.7.9 - "@mojaloop/central-services-error-handling": ^13.0.3 + "@mojaloop/central-services-error-handling": ^13.0.4 "@mojaloop/central-services-logger": ^11.5.3 "@mojaloop/central-services-metrics": ^12.4.4 - "@mojaloop/central-services-shared": ^18.15.2 + "@mojaloop/central-services-shared": ^18.16.0 "@mojaloop/event-sdk": ^14.1.2 "@mojaloop/logging-bc-client-lib": 0.5.8 "@mojaloop/ml-schema-transformer-lib": ^2.5.1 @@ -2754,7 +2719,7 @@ __metadata: oauth2-server: ^4.0.0-dev.2 openapi-jsonschema-parameters: ^12.1.3 openapi-response-validator: ^12.1.3 - openapi-typescript: ^7.5.2 + openapi-typescript: ^7.6.0 prom-client: ^15.1.3 promise-timeout: ^1.3.0 random-word-slugs: ^0.1.7 @@ -2775,7 +2740,7 @@ __metadata: dependencies: "@eslint/compat": ^1.2.5 "@mojaloop/api-snippets": 17.7.9 - "@mojaloop/central-services-shared": ^18.15.2 + "@mojaloop/central-services-shared": ^18.16.0 "@mojaloop/logging-bc-client-lib": ^0.5.8 "@mojaloop/logging-bc-public-types-lib": ^0.5.4 "@mojaloop/sdk-scheme-adapter-private-shared-lib": "workspace:^" @@ -2852,7 +2817,7 @@ __metadata: dependencies: "@eslint/compat": ^1.2.5 "@mojaloop/api-snippets": 17.7.9 - "@mojaloop/central-services-shared": ^18.15.2 + "@mojaloop/central-services-shared": ^18.16.0 "@mojaloop/logging-bc-public-types-lib": ^0.5.4 "@mojaloop/platform-shared-lib-messaging-types-lib": ^0.7.1 "@mojaloop/platform-shared-lib-nodejs-kafka-client-lib": 0.5.18 @@ -2902,7 +2867,7 @@ __metadata: languageName: unknown linkType: soft -"@mojaloop/sdk-standard-components@npm:^19.6.3": +"@mojaloop/sdk-standard-components@npm:19.6.3, @mojaloop/sdk-standard-components@npm:^19.6.3": version: 19.6.3 resolution: "@mojaloop/sdk-standard-components@npm:19.6.3" dependencies: @@ -3326,10 +3291,10 @@ __metadata: languageName: node linkType: hard -"@redocly/config@npm:^0.17.0": - version: 0.17.1 - resolution: "@redocly/config@npm:0.17.1" - checksum: a576127053c6f8b609f0ae2d4089a100adc698445c2a18e1faee3e7c4e44ff062f8745bb533ead933b6da8ba4682d5a4c6f066cc763df65c2cddfc6086fd544d +"@redocly/config@npm:^0.20.1": + version: 0.20.2 + resolution: "@redocly/config@npm:0.20.2" + checksum: 79c9965df5eb604aab04bffc4808f6088d62a766b61797fe053bd1c8fac3abeade886838b8e1a418dde97ca4c5a58d11e7998f605871130952182cec89f02dda languageName: node linkType: hard @@ -3391,12 +3356,12 @@ __metadata: languageName: node linkType: hard -"@redocly/openapi-core@npm:^1.27.0": - version: 1.27.1 - resolution: "@redocly/openapi-core@npm:1.27.1" +"@redocly/openapi-core@npm:^1.27.2": + version: 1.27.2 + resolution: "@redocly/openapi-core@npm:1.27.2" dependencies: "@redocly/ajv": ^8.11.2 - "@redocly/config": ^0.17.0 + "@redocly/config": ^0.20.1 colorette: ^1.2.0 https-proxy-agent: ^7.0.4 js-levenshtein: ^1.1.6 @@ -3405,7 +3370,7 @@ __metadata: node-fetch: ^2.6.1 pluralize: ^8.0.0 yaml-ast-parser: 0.0.43 - checksum: ac70a427d96bcbe96a63291768f65aefcf565c0a4c4343d4b3a177823c87a8e00338286e6c45b56bdf5553eb08dff703146c90194e217683033fdf8fb1bb1922 + checksum: b5135f1d85adbf2f8bf3f47733070e728f6b90bd830b91f5e49fec6f76e04742446152dd0f6a16ebe43b0b8fac70843f8f747b06a35e95f9a9a3f7ae9ef69045 languageName: node linkType: hard @@ -3430,6 +3395,29 @@ __metadata: languageName: node linkType: hard +"@sideway/address@npm:^4.1.5": + version: 4.1.5 + resolution: "@sideway/address@npm:4.1.5" + dependencies: + "@hapi/hoek": ^9.0.0 + checksum: 3e3ea0f00b4765d86509282290368a4a5fd39a7995fdc6de42116ca19a96120858e56c2c995081def06e1c53e1f8bccc7d013f6326602bec9d56b72ee2772b9d + languageName: node + linkType: hard + +"@sideway/formula@npm:^3.0.1": + version: 3.0.1 + resolution: "@sideway/formula@npm:3.0.1" + checksum: e4beeebc9dbe2ff4ef0def15cec0165e00d1612e3d7cea0bc9ce5175c3263fc2c818b679bd558957f49400ee7be9d4e5ac90487e1625b4932e15c4aa7919c57a + languageName: node + linkType: hard + +"@sideway/pinpoint@npm:^2.0.0": + version: 2.0.0 + resolution: "@sideway/pinpoint@npm:2.0.0" + checksum: 0f4491e5897fcf5bf02c46f5c359c56a314e90ba243f42f0c100437935daa2488f20482f0f77186bd6bf43345095a95d8143ecf8b1f4d876a7bc0806aba9c3d2 + languageName: node + linkType: hard + "@sigstore/bundle@npm:^1.1.0": version: 1.1.0 resolution: "@sigstore/bundle@npm:1.1.0" @@ -9820,6 +9808,19 @@ __metadata: languageName: node linkType: hard +"joi@npm:17.13.3": + version: 17.13.3 + resolution: "joi@npm:17.13.3" + dependencies: + "@hapi/hoek": ^9.3.0 + "@hapi/topo": ^5.1.0 + "@sideway/address": ^4.1.5 + "@sideway/formula": ^3.0.1 + "@sideway/pinpoint": ^2.0.0 + checksum: 66ed454fee3d8e8da1ce21657fd2c7d565d98f3e539d2c5c028767e5f38cbd6297ce54df8312d1d094e62eb38f9452ebb43da4ce87321df66cf5e3f128cbc400 + languageName: node + linkType: hard + "js-levenshtein@npm:^1.1.6": version: 1.1.6 resolution: "js-levenshtein@npm:1.1.6" @@ -11987,11 +11988,11 @@ __metadata: languageName: node linkType: hard -"openapi-typescript@npm:^7.5.2": - version: 7.5.2 - resolution: "openapi-typescript@npm:7.5.2" +"openapi-typescript@npm:^7.6.0": + version: 7.6.0 + resolution: "openapi-typescript@npm:7.6.0" dependencies: - "@redocly/openapi-core": ^1.27.0 + "@redocly/openapi-core": ^1.27.2 ansi-colors: ^4.1.3 change-case: ^5.4.4 parse-json: ^8.1.0 @@ -12001,7 +12002,7 @@ __metadata: typescript: ^5.x bin: openapi-typescript: bin/cli.js - checksum: 509a51442893de78a73b9da111bd1f51821548adf2917124c620c998b5d095a4fabe4c70a27b0eeb96bd0ae2ee6de088990ab7f9f1f6f4e7533b4a223b543573 + checksum: f222c4064debeb363b3e252a2407403a9b00121ee415b6af7ca35af651c0e3ecd489d256db57243b643f605b42a62b3de25f0b2afa81b7487db2ff6b83112074 languageName: node linkType: hard