From ab35a77b9c8ecfd3f5195c76daed2fd7f73cb2ec Mon Sep 17 00:00:00 2001 From: Mohamed Marrouchi Date: Wed, 23 Oct 2024 06:22:26 +0100 Subject: [PATCH] fix: add missing copyright header --- api/package-lock.json | 2 +- api/src/setting/index.d.ts | 8 ++++++++ api/src/utils/generics/extension.ts | 8 ++++++++ api/src/utils/test/dummy/settings.ts | 8 ++++++++ api/src/utils/types/extension.ts | 8 ++++++++ 5 files changed, 33 insertions(+), 1 deletion(-) diff --git a/api/package-lock.json b/api/package-lock.json index 7d2b5c608..4829374f3 100644 --- a/api/package-lock.json +++ b/api/package-lock.json @@ -19437,4 +19437,4 @@ "dev": true } } -} \ No newline at end of file +} diff --git a/api/src/setting/index.d.ts b/api/src/setting/index.d.ts index 90ea4a8a8..fab71fb7e 100644 --- a/api/src/setting/index.d.ts +++ b/api/src/setting/index.d.ts @@ -1,3 +1,11 @@ +/* + * Copyright © 2024 Hexastack. All rights reserved. + * + * Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms: + * 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission. + * 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file). + */ + import { SettingByType } from './schemas/types'; import { DEFAULT_SETTINGS } from './seeds/setting.seed-model'; diff --git a/api/src/utils/generics/extension.ts b/api/src/utils/generics/extension.ts index 943dd4f33..7b530f7fd 100644 --- a/api/src/utils/generics/extension.ts +++ b/api/src/utils/generics/extension.ts @@ -1,3 +1,11 @@ +/* + * Copyright © 2024 Hexastack. All rights reserved. + * + * Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms: + * 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission. + * 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file). + */ + import { promises as fs } from 'fs'; import path from 'path'; diff --git a/api/src/utils/test/dummy/settings.ts b/api/src/utils/test/dummy/settings.ts index d6d1738de..d773e1360 100644 --- a/api/src/utils/test/dummy/settings.ts +++ b/api/src/utils/test/dummy/settings.ts @@ -1 +1,9 @@ +/* + * Copyright © 2024 Hexastack. All rights reserved. + * + * Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms: + * 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission. + * 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file). + */ + export default []; diff --git a/api/src/utils/types/extension.ts b/api/src/utils/types/extension.ts index 09da6f486..07ac62d51 100644 --- a/api/src/utils/types/extension.ts +++ b/api/src/utils/types/extension.ts @@ -1,3 +1,11 @@ +/* + * Copyright © 2024 Hexastack. All rights reserved. + * + * Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms: + * 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission. + * 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file). + */ + import { ChannelName } from '@/channel/types'; import { HelperName } from '@/helper/types'; import { PluginName } from '@/plugins/types';