diff --git a/README.md b/README.md index 15038d1c6560d0e0b562b6523ec4228d0a77c0e3..ed547a49f8806f9819a375a2e9064b3bcaea19e4 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,16 @@ +<!--- ************************************************************************* + * Copyright (C) 2025 bAvenir + * + * This program and the accompanying materials are made + * available under the terms of the Eclipse Public License 2.0 + * which is available at https://www.eclipse.org/legal/epl-2.0/ + * + * SPDX-License-Identifier: EPL-2.0 + * + * Contributors: + * [name] - [contribution] + ************************************************************************* ---> + # SPADE Node - JS Client A client-side JavaScript library that can be used to interact with Data Broker's API. diff --git a/dist/utils/error.d.ts b/dist/utils/error.d.ts index b79ed5cbf179ff882b36a71d669630e87a38d7fc..152ea8149290112fa2d1e8761f8d7fdff33b09e0 100644 --- a/dist/utils/error.d.ts +++ b/dist/utils/error.d.ts @@ -1,4 +1,14 @@ /** + * Copyright (C) 2024 bAvenir + * + * This program and the accompanying materials are made + * available under the terms of the Eclipse Public License 2.0 + * which is available at https://www.eclipse.org/legal/epl-2.0/ + * + * SPDX-License-Identifier: EPL-2.0 + */ + + /** * Base class for all Data Broker related errors. */ export declare class DataBrokerError extends Error { diff --git a/dist/utils/error.js b/dist/utils/error.js index b84d91bc138bbd5e572816200c15363b6841df92..74a16c71a70ee32bea1611361f3bbd38d8b886a6 100644 --- a/dist/utils/error.js +++ b/dist/utils/error.js @@ -1,4 +1,14 @@ "use strict"; +/** + * Copyright (C) 2024 bAvenir + * + * This program and the accompanying materials are made + * available under the terms of the Eclipse Public License 2.0 + * which is available at https://www.eclipse.org/legal/epl-2.0/ + * + * SPDX-License-Identifier: EPL-2.0 + */ + Object.defineProperty(exports, "__esModule", { value: true }); exports.DataBrokerConsumptionError = exports.DataBrokerDiscoveryError = exports.DataBrokerHealthcheckError = exports.DataBrokerInitError = exports.DataBrokerError = void 0; const axios_1 = require("axios"); diff --git a/lib/utils/error.ts b/lib/utils/error.ts index cf2bd4cfd470f68099821e99290b6ce7616b4ab1..f40a1bddd2497247490f322d5bd320521a733dec 100644 --- a/lib/utils/error.ts +++ b/lib/utils/error.ts @@ -1,4 +1,14 @@ -import { AxiosError } from 'axios' +/** + * Copyright (C) 2024 bAvenir + * + * This program and the accompanying materials are made + * available under the terms of the Eclipse Public License 2.0 + * which is available at https://www.eclipse.org/legal/epl-2.0/ + * + * SPDX-License-Identifier: EPL-2.0 + */ + + import { AxiosError } from 'axios' /** * Base class for all Data Broker related errors.