@purpleschool/gptbot 0.7.94 → 0.7.95-ai-proxy

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/api/controllers/http/ai-model.ts +0 -1
  2. package/api/controllers/http/ai-proxy.ts +5 -0
  3. package/api/controllers/http/index.ts +1 -1
  4. package/api/controllers/http/page.ts +0 -1
  5. package/api/routes.ts +2 -2
  6. package/build/api/controllers/http/ai-model.js +0 -1
  7. package/build/api/controllers/http/ai-proxy.js +7 -0
  8. package/build/api/controllers/http/index.js +1 -1
  9. package/build/api/controllers/http/page.js +0 -1
  10. package/build/api/routes.js +2 -2
  11. package/build/commands/ai-model/index.js +0 -2
  12. package/build/constants/errors/errors.js +0 -10
  13. package/build/constants/tool/enums/index.js +0 -1
  14. package/build/models/page.schema.js +0 -1
  15. package/commands/ai-model/index.ts +0 -2
  16. package/constants/errors/errors.ts +0 -10
  17. package/constants/tool/enums/index.ts +0 -1
  18. package/models/page.schema.ts +0 -1
  19. package/package.json +1 -1
  20. package/api/controllers/http/kie.ts +0 -5
  21. package/build/api/controllers/http/kie.js +0 -7
  22. package/build/commands/ai-model/find-formatted-ai-model-v2.command.js +0 -22
  23. package/build/commands/ai-model/find-model-pages.command.js +0 -31
  24. package/build/constants/model/enums/index.js +0 -17
  25. package/build/constants/model/enums/unified-model-content-type.enum.js +0 -20
  26. package/build/constants/model/index.js +0 -17
  27. package/build/constants/tool/enums/tool-content-type.enum.js +0 -16
  28. package/commands/ai-model/find-formatted-ai-model-v2.command.ts +0 -22
  29. package/commands/ai-model/find-model-pages.command.ts +0 -34
  30. package/constants/model/enums/index.ts +0 -1
  31. package/constants/model/enums/unified-model-content-type.enum.ts +0 -16
  32. package/constants/model/index.ts +0 -1
  33. package/constants/tool/enums/tool-content-type.enum.ts +0 -12
@@ -5,6 +5,5 @@ export const AI_MODEL_ROUTES = {
5
5
  FIND_BY_UUID: (uuid: string) => `by/uuid/${uuid}`,
6
6
  GET_ALL: 'all',
7
7
  GET_FORMATTED: 'formatted',
8
- GET_FORMATTED_V2: 'formatted/v2',
9
8
  AVAILABLE: 'available',
10
9
  } as const;
@@ -0,0 +1,5 @@
1
+ export const AI_PROXY_CONTROLLER = 'ai-proxy' as const;
2
+
3
+ export const AI_PROXY_ROUTES = {
4
+ IMAGE_CALLBACK: 'image-callback',
5
+ } as const;
@@ -14,7 +14,7 @@ export * from './form-submission';
14
14
  export * from './key-value';
15
15
  export * from './referral';
16
16
  export * from './message';
17
- export * from './kie';
17
+ export * from './ai-proxy';
18
18
  export * from './page';
19
19
  export * from './payment';
20
20
  export * from './presentation';
@@ -5,5 +5,4 @@ export const PAGE_ROUTES = {
5
5
  GET_ALL: 'all',
6
6
  FIND_BY_ALIAS: (alias: string) => `by/alias/${alias}`,
7
7
  GET_ALL_WITH_RELATIONS: 'by/all',
8
- MODEL_PAGES: 'by/type/model',
9
8
  } as const;
package/api/routes.ts CHANGED
@@ -788,8 +788,8 @@ export const REST_API = {
788
788
  DELETE_BY_KEY: (namespace: string, key: string) =>
789
789
  `${ROOT}/${CONTROLLERS.KEY_VALUE_NAMESPACE_CONTROLLER}/${CONTROLLERS.KEY_VALUE_NAMESPACE_ROUTES.DELETE_BY_KEY(namespace, key)}`,
790
790
  },
791
- KIE: {
792
- CALLBACK: `${ROOT}/${CONTROLLERS.KIE_CONTROLLER}/${CONTROLLERS.KIE_ROUTES.CALLBACK}`,
791
+ AI_PROXY: {
792
+ IMAGE_CALLBACK: `${ROOT}/${CONTROLLERS.AI_PROXY_CONTROLLER}/${CONTROLLERS.AI_PROXY_ROUTES.IMAGE_CALLBACK}`,
793
793
  },
794
794
  CLOUD_PAYMENTS: {
795
795
  CALLBACK: `${ROOT}/${CONTROLLERS.CLOUD_PAYMENTS_CONTROLLER}/${CONTROLLERS.CLOUD_PAYMENTS_ROUTES.CALLBACK}`,
@@ -7,6 +7,5 @@ exports.AI_MODEL_ROUTES = {
7
7
  FIND_BY_UUID: (uuid) => `by/uuid/${uuid}`,
8
8
  GET_ALL: 'all',
9
9
  GET_FORMATTED: 'formatted',
10
- GET_FORMATTED_V2: 'formatted/v2',
11
10
  AVAILABLE: 'available',
12
11
  };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AI_PROXY_ROUTES = exports.AI_PROXY_CONTROLLER = void 0;
4
+ exports.AI_PROXY_CONTROLLER = 'ai-proxy';
5
+ exports.AI_PROXY_ROUTES = {
6
+ IMAGE_CALLBACK: 'image-callback',
7
+ };
@@ -30,7 +30,7 @@ __exportStar(require("./form-submission"), exports);
30
30
  __exportStar(require("./key-value"), exports);
31
31
  __exportStar(require("./referral"), exports);
32
32
  __exportStar(require("./message"), exports);
33
- __exportStar(require("./kie"), exports);
33
+ __exportStar(require("./ai-proxy"), exports);
34
34
  __exportStar(require("./page"), exports);
35
35
  __exportStar(require("./payment"), exports);
36
36
  __exportStar(require("./presentation"), exports);
@@ -7,5 +7,4 @@ exports.PAGE_ROUTES = {
7
7
  GET_ALL: 'all',
8
8
  FIND_BY_ALIAS: (alias) => `by/alias/${alias}`,
9
9
  GET_ALL_WITH_RELATIONS: 'by/all',
10
- MODEL_PAGES: 'by/type/model',
11
10
  };
@@ -617,8 +617,8 @@ exports.REST_API = {
617
617
  CREATE: (namespace) => `${exports.ROOT}/${CONTROLLERS.KEY_VALUE_NAMESPACE_CONTROLLER}/${CONTROLLERS.KEY_VALUE_NAMESPACE_ROUTES.CREATE(namespace)}`,
618
618
  DELETE_BY_KEY: (namespace, key) => `${exports.ROOT}/${CONTROLLERS.KEY_VALUE_NAMESPACE_CONTROLLER}/${CONTROLLERS.KEY_VALUE_NAMESPACE_ROUTES.DELETE_BY_KEY(namespace, key)}`,
619
619
  },
620
- KIE: {
621
- CALLBACK: `${exports.ROOT}/${CONTROLLERS.KIE_CONTROLLER}/${CONTROLLERS.KIE_ROUTES.CALLBACK}`,
620
+ AI_PROXY: {
621
+ IMAGE_CALLBACK: `${exports.ROOT}/${CONTROLLERS.AI_PROXY_CONTROLLER}/${CONTROLLERS.AI_PROXY_ROUTES.IMAGE_CALLBACK}`,
622
622
  },
623
623
  CLOUD_PAYMENTS: {
624
624
  CALLBACK: `${exports.ROOT}/${CONTROLLERS.CLOUD_PAYMENTS_CONTROLLER}/${CONTROLLERS.CLOUD_PAYMENTS_ROUTES.CALLBACK}`,
@@ -19,6 +19,4 @@ __exportStar(require("./delete-ai-model.command"), exports);
19
19
  __exportStar(require("./find-ai-model.command"), exports);
20
20
  __exportStar(require("./find-ai-models-available-to-user.comand"), exports);
21
21
  __exportStar(require("./find-formatted-ai-model.command"), exports);
22
- __exportStar(require("./find-formatted-ai-model-v2.command"), exports);
23
- __exportStar(require("./find-model-pages.command"), exports);
24
22
  __exportStar(require("./update-ai-model.command"), exports);
@@ -2346,14 +2346,4 @@ exports.ERRORS = {
2346
2346
  message: 'Ошибка при получении сводки записей о переходе по ссылке вебмастера',
2347
2347
  httpCode: 409,
2348
2348
  },
2349
- TOOL_GET_GLOBAL_CONFIG_ERROR: {
2350
- code: 'A480',
2351
- message: 'Ошибка при получении глобальной конфигурации инструментов',
2352
- httpCode: 500,
2353
- },
2354
- TOOL_GET_TOOLS_WITH_CONFIGS_ERROR: {
2355
- code: 'A481',
2356
- message: 'Ошибка при получении инструментов с конфигурациями',
2357
- httpCode: 500,
2358
- },
2359
2349
  };
@@ -14,6 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./tool-content-type.enum"), exports);
18
17
  __exportStar(require("./tool-job-status.enum"), exports);
19
18
  __exportStar(require("./tool-type.enum"), exports);
@@ -15,7 +15,6 @@ exports.PageSchema = zod_1.z.object({
15
15
  aIModelId: zod_1.z.string().uuid().nullable().optional(),
16
16
  toolId: zod_1.z.string().uuid().nullable().optional(),
17
17
  toolOptionId: zod_1.z.string().uuid().nullable().optional(),
18
- toolModelId: zod_1.z.string().uuid().nullable().optional(),
19
18
  toolTitle: zod_1.z.string().nullable(),
20
19
  type: zod_1.z.nativeEnum(constants_1.PageType),
21
20
  createdAt: zod_1.z.date(),
@@ -3,6 +3,4 @@ export * from './delete-ai-model.command';
3
3
  export * from './find-ai-model.command';
4
4
  export * from './find-ai-models-available-to-user.comand';
5
5
  export * from './find-formatted-ai-model.command';
6
- export * from './find-formatted-ai-model-v2.command';
7
- export * from './find-model-pages.command';
8
6
  export * from './update-ai-model.command';
@@ -2354,14 +2354,4 @@ export const ERRORS = {
2354
2354
  message: 'Ошибка при получении сводки записей о переходе по ссылке вебмастера',
2355
2355
  httpCode: 409,
2356
2356
  },
2357
- TOOL_GET_GLOBAL_CONFIG_ERROR: {
2358
- code: 'A480',
2359
- message: 'Ошибка при получении глобальной конфигурации инструментов',
2360
- httpCode: 500,
2361
- },
2362
- TOOL_GET_TOOLS_WITH_CONFIGS_ERROR: {
2363
- code: 'A481',
2364
- message: 'Ошибка при получении инструментов с конфигурациями',
2365
- httpCode: 500,
2366
- },
2367
2357
  };
@@ -1,3 +1,2 @@
1
- export * from './tool-content-type.enum';
2
1
  export * from './tool-job-status.enum';
3
2
  export * from './tool-type.enum';
@@ -13,7 +13,6 @@ export const PageSchema = z.object({
13
13
  aIModelId: z.string().uuid().nullable().optional(),
14
14
  toolId: z.string().uuid().nullable().optional(),
15
15
  toolOptionId: z.string().uuid().nullable().optional(),
16
- toolModelId: z.string().uuid().nullable().optional(),
17
16
  toolTitle: z.string().nullable(),
18
17
  type: z.nativeEnum(PageType),
19
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purpleschool/gptbot",
3
- "version": "0.7.94",
3
+ "version": "0.7.95-ai-proxy",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -1,5 +0,0 @@
1
- export const KIE_CONTROLLER = 'kie' as const;
2
-
3
- export const KIE_ROUTES = {
4
- CALLBACK: 'callback',
5
- } as const;
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.KIE_ROUTES = exports.KIE_CONTROLLER = void 0;
4
- exports.KIE_CONTROLLER = 'kie';
5
- exports.KIE_ROUTES = {
6
- CALLBACK: 'callback',
7
- };
@@ -1,22 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FindFormattedAIModelV2Command = void 0;
4
- const zod_1 = require("zod");
5
- const unified_model_content_type_enum_1 = require("../../constants/model/enums/unified-model-content-type.enum");
6
- const icon_variants_schema_1 = require("../../models/icon-variants.schema");
7
- const FormattedModelSchema = zod_1.z.object({
8
- uuid: zod_1.z.string().uuid(),
9
- title: zod_1.z.string(),
10
- description: zod_1.z.string().nullable(),
11
- contentType: zod_1.z.nativeEnum(unified_model_content_type_enum_1.UNIFIED_MODEL_CONTENT_TYPE),
12
- order: zod_1.z.number(),
13
- icons: icon_variants_schema_1.IconVariantsSchema,
14
- pageAlias: zod_1.z.string().nullable().optional(),
15
- isToolModel: zod_1.z.boolean(),
16
- });
17
- var FindFormattedAIModelV2Command;
18
- (function (FindFormattedAIModelV2Command) {
19
- FindFormattedAIModelV2Command.ResponseSchema = zod_1.z.object({
20
- data: zod_1.z.array(FormattedModelSchema),
21
- });
22
- })(FindFormattedAIModelV2Command || (exports.FindFormattedAIModelV2Command = FindFormattedAIModelV2Command = {}));
@@ -1,31 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FindModelPagesCommand = exports.PageWithModelSchema = void 0;
4
- const zod_1 = require("zod");
5
- const icon_variants_schema_1 = require("../../models/icon-variants.schema");
6
- const unified_model_content_type_enum_1 = require("../../constants/model/enums/unified-model-content-type.enum");
7
- const ModelSchema = zod_1.z.object({
8
- uuid: zod_1.z.string().uuid(),
9
- title: zod_1.z.string(),
10
- description: zod_1.z.string().nullable(),
11
- contentType: zod_1.z.nativeEnum(unified_model_content_type_enum_1.UNIFIED_MODEL_CONTENT_TYPE),
12
- order: zod_1.z.number(),
13
- icons: icon_variants_schema_1.IconVariantsSchema,
14
- });
15
- exports.PageWithModelSchema = zod_1.z.object({
16
- uuid: zod_1.z.string().uuid(),
17
- title: zod_1.z.string(),
18
- alias: zod_1.z.string(),
19
- type: zod_1.z.string(),
20
- toolId: zod_1.z.string().uuid().nullable(),
21
- toolModelId: zod_1.z.string().uuid().nullable(),
22
- toolOptionId: zod_1.z.string().uuid().nullable(),
23
- aIModelId: zod_1.z.string().uuid().nullable(),
24
- model: ModelSchema,
25
- });
26
- var FindModelPagesCommand;
27
- (function (FindModelPagesCommand) {
28
- FindModelPagesCommand.ResponseSchema = zod_1.z.object({
29
- data: zod_1.z.array(exports.PageWithModelSchema),
30
- });
31
- })(FindModelPagesCommand || (exports.FindModelPagesCommand = FindModelPagesCommand = {}));
@@ -1,17 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./unified-model-content-type.enum"), exports);
@@ -1,20 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UNIFIED_MODEL_CONTENT_TYPE = void 0;
4
- var UNIFIED_MODEL_CONTENT_TYPE;
5
- (function (UNIFIED_MODEL_CONTENT_TYPE) {
6
- // AI Model types
7
- UNIFIED_MODEL_CONTENT_TYPE["TEXT"] = "TEXT";
8
- UNIFIED_MODEL_CONTENT_TYPE["IMAGE"] = "IMAGE";
9
- // Tool types
10
- UNIFIED_MODEL_CONTENT_TYPE["IMAGE_EDITOR"] = "IMAGE_EDITOR";
11
- UNIFIED_MODEL_CONTENT_TYPE["TEXT_TO_SPEECH"] = "TEXT_TO_SPEECH";
12
- UNIFIED_MODEL_CONTENT_TYPE["SPEECH_TO_TEXT"] = "SPEECH_TO_TEXT";
13
- UNIFIED_MODEL_CONTENT_TYPE["REPHRASE"] = "REPHRASE";
14
- UNIFIED_MODEL_CONTENT_TYPE["VIDEO"] = "VIDEO";
15
- UNIFIED_MODEL_CONTENT_TYPE["PRESENTATION"] = "PRESENTATION";
16
- UNIFIED_MODEL_CONTENT_TYPE["WRITER"] = "WRITER";
17
- UNIFIED_MODEL_CONTENT_TYPE["VIDEO_EDITOR"] = "VIDEO_EDITOR";
18
- UNIFIED_MODEL_CONTENT_TYPE["MUSIC"] = "MUSIC";
19
- UNIFIED_MODEL_CONTENT_TYPE["NONE"] = "NONE";
20
- })(UNIFIED_MODEL_CONTENT_TYPE || (exports.UNIFIED_MODEL_CONTENT_TYPE = UNIFIED_MODEL_CONTENT_TYPE = {}));
@@ -1,17 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./enums"), exports);
@@ -1,16 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TOOL_CONTENT_TYPE = void 0;
4
- var TOOL_CONTENT_TYPE;
5
- (function (TOOL_CONTENT_TYPE) {
6
- TOOL_CONTENT_TYPE["IMAGE_EDITOR"] = "IMAGE_EDITOR";
7
- TOOL_CONTENT_TYPE["TEXT_TO_SPEECH"] = "TEXT_TO_SPEECH";
8
- TOOL_CONTENT_TYPE["SPEECH_TO_TEXT"] = "SPEECH_TO_TEXT";
9
- TOOL_CONTENT_TYPE["REPHRASE"] = "REPHRASE";
10
- TOOL_CONTENT_TYPE["VIDEO"] = "VIDEO";
11
- TOOL_CONTENT_TYPE["PRESENTATION"] = "PRESENTATION";
12
- TOOL_CONTENT_TYPE["WRITER"] = "WRITER";
13
- TOOL_CONTENT_TYPE["VIDEO_EDITOR"] = "VIDEO_EDITOR";
14
- TOOL_CONTENT_TYPE["MUSIC"] = "MUSIC";
15
- TOOL_CONTENT_TYPE["NONE"] = "NONE";
16
- })(TOOL_CONTENT_TYPE || (exports.TOOL_CONTENT_TYPE = TOOL_CONTENT_TYPE = {}));
@@ -1,22 +0,0 @@
1
- import { z } from 'zod';
2
- import { UNIFIED_MODEL_CONTENT_TYPE } from '../../constants/model/enums/unified-model-content-type.enum';
3
- import { IconVariantsSchema } from '../../models/icon-variants.schema';
4
-
5
- const FormattedModelSchema = z.object({
6
- uuid: z.string().uuid(),
7
- title: z.string(),
8
- description: z.string().nullable(),
9
- contentType: z.nativeEnum(UNIFIED_MODEL_CONTENT_TYPE),
10
- order: z.number(),
11
- icons: IconVariantsSchema,
12
- pageAlias: z.string().nullable().optional(),
13
- isToolModel: z.boolean(),
14
- });
15
-
16
- export namespace FindFormattedAIModelV2Command {
17
- export const ResponseSchema = z.object({
18
- data: z.array(FormattedModelSchema),
19
- });
20
-
21
- export type Response = z.infer<typeof ResponseSchema>;
22
- }
@@ -1,34 +0,0 @@
1
- import { z } from 'zod';
2
- import { IconVariantsSchema } from '../../models/icon-variants.schema';
3
- import { UNIFIED_MODEL_CONTENT_TYPE } from '../../constants/model/enums/unified-model-content-type.enum';
4
-
5
- const ModelSchema = z.object({
6
- uuid: z.string().uuid(),
7
- title: z.string(),
8
- description: z.string().nullable(),
9
- contentType: z.nativeEnum(UNIFIED_MODEL_CONTENT_TYPE),
10
- order: z.number(),
11
- icons: IconVariantsSchema,
12
- });
13
-
14
- export const PageWithModelSchema = z.object({
15
- uuid: z.string().uuid(),
16
- title: z.string(),
17
- alias: z.string(),
18
- type: z.string(),
19
- toolId: z.string().uuid().nullable(),
20
- toolModelId: z.string().uuid().nullable(),
21
- toolOptionId: z.string().uuid().nullable(),
22
- aIModelId: z.string().uuid().nullable(),
23
- model: ModelSchema,
24
- });
25
-
26
- export type PageWithModel = z.infer<typeof PageWithModelSchema>;
27
-
28
- export namespace FindModelPagesCommand {
29
- export const ResponseSchema = z.object({
30
- data: z.array(PageWithModelSchema),
31
- });
32
-
33
- export type Response = z.infer<typeof ResponseSchema>;
34
- }
@@ -1 +0,0 @@
1
- export * from './unified-model-content-type.enum';
@@ -1,16 +0,0 @@
1
- export enum UNIFIED_MODEL_CONTENT_TYPE {
2
- // AI Model types
3
- TEXT = 'TEXT',
4
- IMAGE = 'IMAGE',
5
- // Tool types
6
- IMAGE_EDITOR = 'IMAGE_EDITOR',
7
- TEXT_TO_SPEECH = 'TEXT_TO_SPEECH',
8
- SPEECH_TO_TEXT = 'SPEECH_TO_TEXT',
9
- REPHRASE = 'REPHRASE',
10
- VIDEO = 'VIDEO',
11
- PRESENTATION = 'PRESENTATION',
12
- WRITER = 'WRITER',
13
- VIDEO_EDITOR = 'VIDEO_EDITOR',
14
- MUSIC = 'MUSIC',
15
- NONE = 'NONE',
16
- }
@@ -1 +0,0 @@
1
- export * from './enums';
@@ -1,12 +0,0 @@
1
- export enum TOOL_CONTENT_TYPE {
2
- IMAGE_EDITOR = 'IMAGE_EDITOR',
3
- TEXT_TO_SPEECH = 'TEXT_TO_SPEECH',
4
- SPEECH_TO_TEXT = 'SPEECH_TO_TEXT',
5
- REPHRASE = 'REPHRASE',
6
- VIDEO = 'VIDEO',
7
- PRESENTATION = 'PRESENTATION',
8
- WRITER = 'WRITER',
9
- VIDEO_EDITOR = 'VIDEO_EDITOR',
10
- MUSIC = 'MUSIC',
11
- NONE = 'NONE',
12
- }