Files
hexabot/api/src/user/seeds/model.seed-model.ts
2024-09-29 13:02:28 +01:00

128 lines
2.3 KiB
TypeScript

/*
* 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 { ModelCreateDto } from '../dto/model.dto';
export const modelModels: ModelCreateDto[] = [
{
name: 'ContentType',
identity: 'contenttype',
attributes: {},
},
{
name: 'Content',
identity: 'content',
attributes: {},
},
{
name: 'NlpEntity',
identity: 'nlpentity',
attributes: {},
},
{
name: 'NlpSampleEntity',
identity: 'nlpsampleentity',
attributes: {},
},
{
name: 'NlpSample',
identity: 'nlpsample',
attributes: {},
},
{
name: 'NlpValue',
identity: 'nlpvalue',
attributes: {},
},
{
name: 'Setting',
identity: 'setting',
attributes: {},
},
{
name: 'Attachment',
identity: 'attachment',
attributes: {},
},
{
name: 'User',
identity: 'user',
attributes: {},
},
{
name: 'Role',
identity: 'role',
attributes: {},
},
{
name: 'Permission',
identity: 'permission',
attributes: {},
},
{
name: 'Block',
identity: 'block',
attributes: {},
},
{
name: 'Category',
identity: 'category',
attributes: {},
},
{
name: 'Label',
identity: 'label',
attributes: {},
},
{
name: 'ContextVar',
identity: 'contextvar',
attributes: {},
},
{
name: 'Conversation',
identity: 'conversation',
attributes: {},
},
{
name: 'Message',
identity: 'message',
attributes: {},
},
{
name: 'Subscriber',
identity: 'subscriber',
attributes: {},
},
{
name: 'Language',
identity: 'language',
attributes: {},
},
{
name: 'Translation',
identity: 'translation',
attributes: {},
},
{
name: 'BotStats',
identity: 'botstats',
attributes: {},
},
{
name: 'Menu',
identity: 'menu',
attributes: {},
},
{
name: 'Model',
identity: 'model',
attributes: {},
},
];