Skip to content

Commit

Permalink
fix: add copyright header
Browse files Browse the repository at this point in the history
  • Loading branch information
marrouchi committed Oct 23, 2024
1 parent 5218233 commit eebb07b
Show file tree
Hide file tree
Showing 10 changed files with 80 additions and 0 deletions.
8 changes: 8 additions & 0 deletions api/src/channel/types.ts
Original file line number Diff line number Diff line change
@@ -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 { SettingCreateDto } from '@/setting/dto/setting.dto';

export type ChannelName = `${string}-channel`;
Expand Down
8 changes: 8 additions & 0 deletions api/src/extensions/channels/console/index.d.ts
Original file line number Diff line number Diff line change
@@ -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 CONSOLE_CHANNEL_SETTINGS, {
CONSOLE_CHANNEL_NAMESPACE,
} from './settings';
Expand Down
8 changes: 8 additions & 0 deletions api/src/extensions/channels/web/index.d.ts
Original file line number Diff line number Diff line change
@@ -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 DEFAULT_WEB_CHANNEL_SETTINGS, {
WEB_CHANNEL_NAMESPACE,
} from './settings';
Expand Down
8 changes: 8 additions & 0 deletions api/src/extensions/helpers/core-nlu/index.d.ts
Original file line number Diff line number Diff line change
@@ -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 CORE_NLU_HELPER_SETTINGS, {
CORE_NLU_HELPER_NAMESPACE,
} from './settings';
Expand Down
8 changes: 8 additions & 0 deletions api/src/extensions/helpers/core-nlu/settings.ts
Original file line number Diff line number Diff line change
@@ -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 { HelperSetting } from '@/helper/types';
import { SettingType } from '@/setting/schemas/types';

Expand Down
8 changes: 8 additions & 0 deletions api/src/extensions/helpers/ollama/index.d.ts
Original file line number Diff line number Diff line change
@@ -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 OLLAMA_HELPER_SETTINGS, { OLLAMA_HELPER_NAMESPACE } from './settings';

declare global {
Expand Down
8 changes: 8 additions & 0 deletions api/src/extensions/helpers/ollama/settings.ts
Original file line number Diff line number Diff line change
@@ -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 { HelperSetting } from '@/helper/types';
import { SettingType } from '@/setting/schemas/types';

Expand Down
8 changes: 8 additions & 0 deletions api/src/extensions/plugins/ollama/index.plugin.ts
Original file line number Diff line number Diff line change
@@ -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 { Injectable } from '@nestjs/common';

import { Block } from '@/chat/schemas/block.schema';
Expand Down
8 changes: 8 additions & 0 deletions api/src/extensions/plugins/ollama/settings.ts
Original file line number Diff line number Diff line change
@@ -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 { PluginSetting } from '@/plugins/types';
import { SettingType } from '@/setting/schemas/types';

Expand Down
8 changes: 8 additions & 0 deletions api/src/helper/types.ts
Original file line number Diff line number Diff line change
@@ -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 { SettingCreateDto } from '@/setting/dto/setting.dto';

import BaseHelper from './lib/base-helper';
Expand Down

0 comments on commit eebb07b

Please sign in to comment.