@purpleschool/gptbot-tools 0.0.77-ai-proxy → 0.0.78-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 (215) hide show
  1. package/ai-vendor/index.ts +1 -0
  2. package/ai-vendor/models/ai-vendor.schema.ts +13 -0
  3. package/ai-vendor/models/index.ts +1 -0
  4. package/build/ai-vendor/index.js +17 -0
  5. package/build/ai-vendor/models/ai-vendor.schema.js +13 -0
  6. package/build/ai-vendor/models/index.js +17 -0
  7. package/build/common/errors/errors.js +163 -0
  8. package/build/common/models/attached-file.schema.js +13 -0
  9. package/build/common/models/index.js +1 -0
  10. package/build/image-editor/commands/image-editor-model/get-image-editor-model-by-uuid.command.js +13 -0
  11. package/build/image-editor/commands/image-editor-model/index.js +17 -0
  12. package/build/image-editor/commands/image-editor.command.js +3 -1
  13. package/build/image-editor/commands/index.js +1 -0
  14. package/build/image-editor/commands/retry-image-editor-job.command.js +4 -0
  15. package/build/image-editor/commands/set-reaction-to-image-editor-job.command.js +12 -2
  16. package/build/image-editor/enums/image-editor-model-type.enum.js +2 -0
  17. package/build/image-editor/enums/image-editor-strategy.enum.js +4 -0
  18. package/build/image-editor/models/image-editor-config.schema.js +1 -0
  19. package/build/image-editor/models/image-editor-job.schema.js +2 -0
  20. package/build/image-editor/models/image-editor-model.schema.js +9 -1
  21. package/build/image-editor/routes/image-editor-model.amqp.routes.js +6 -0
  22. package/build/image-editor/routes/image-editor.http.routes.js +1 -0
  23. package/build/image-editor/routes/index.js +1 -0
  24. package/build/image-generation/commands/execute-image-generation.command.js +20 -0
  25. package/build/image-generation/commands/forward-image-generation-job.command.js +32 -0
  26. package/build/image-generation/commands/index.js +23 -0
  27. package/build/image-generation/commands/save-image-generation-job.command.js +17 -0
  28. package/build/image-generation/commands/set-reaction-to-image-generation-job.command.js +27 -0
  29. package/build/image-generation/commands/soft-delete-image-generation-job-by-uuid.command.js +14 -0
  30. package/build/image-generation/commands/soft-delete-image-generation-jobs-by-criteria.command.js +13 -0
  31. package/build/image-generation/commands/update-image-generation-job-title.command.js +16 -0
  32. package/build/image-generation/enums/image-generation-model-strategy.enum.js +23 -0
  33. package/build/image-generation/enums/image-generation-models.enum.js +8 -0
  34. package/build/image-generation/enums/image-generation-resolution.enum.js +9 -0
  35. package/build/image-generation/enums/index.js +19 -0
  36. package/build/image-generation/index.js +21 -0
  37. package/build/image-generation/models/image-generation-config.schema.js +12 -0
  38. package/build/image-generation/models/image-generation-job.schema.js +35 -0
  39. package/build/image-generation/models/image-generation-model.schema.js +51 -0
  40. package/build/image-generation/models/image-generation-preset.schema.js +13 -0
  41. package/build/image-generation/models/index.js +20 -0
  42. package/build/image-generation/queries/find-image-generation-job-by-id.query.js +19 -0
  43. package/build/image-generation/queries/find-image-generation-jobs.query.js +28 -0
  44. package/build/image-generation/queries/get-image-generation-config.query.js +11 -0
  45. package/build/image-generation/queries/index.js +19 -0
  46. package/build/image-generation/routes/image-generation.amqp.routes.js +14 -0
  47. package/build/image-generation/routes/image-generation.http.routes.js +9 -0
  48. package/build/image-generation/routes/index.js +18 -0
  49. package/build/index.js +6 -0
  50. package/build/music/commands/index.js +1 -0
  51. package/build/music/commands/music-model/get-music-model-by-uuid.command.js +13 -0
  52. package/build/music/commands/music-model/index.js +17 -0
  53. package/build/music/commands/retry-music-job.command.js +2 -0
  54. package/build/music/commands/set-reaction-to-music-job.command.js +12 -2
  55. package/build/music/models/music-job.schema.js +1 -0
  56. package/build/music/models/music-track.schema.js +1 -0
  57. package/build/music/routes/index.js +1 -0
  58. package/build/music/routes/music-model.amqp.routes.js +6 -0
  59. package/build/paraphrase/commands/delete-all-paraphrase-jobs.command.js +13 -0
  60. package/build/paraphrase/commands/delete-paraphrase-job-by-uuid.command.js +14 -0
  61. package/build/paraphrase/commands/index.js +5 -0
  62. package/build/paraphrase/commands/retry-paraphrase-job.command.js +16 -0
  63. package/build/paraphrase/commands/set-reaction-to-paraphrase-job.command.js +27 -0
  64. package/build/paraphrase/commands/update-paraphrase-job-title.command.js +16 -0
  65. package/build/paraphrase/models/paraphrase-job.schema.js +7 -0
  66. package/build/paraphrase/queries/find-paraphrase-jobs.query.js +28 -0
  67. package/build/paraphrase/queries/index.js +1 -0
  68. package/build/paraphrase/routes/paraphrase.amqp.routes.js +6 -0
  69. package/build/presentation/commands/index.js +1 -0
  70. package/build/presentation/commands/set-reaction-to-presentation.command.js +26 -0
  71. package/build/presentation/constants/slide-layout-map.constant.js +1 -0
  72. package/build/presentation/enums/slide-content-type.enum.js +1 -0
  73. package/build/presentation/models/pptx-export-payload.js +19 -1
  74. package/build/presentation/models/presentation.schema.js +3 -0
  75. package/build/presentation/models/slide-content-edit.schema.js +18 -1
  76. package/build/presentation/models/slide-content.schema.js +30 -1
  77. package/build/presentation/routes/presentation.routes.js +1 -0
  78. package/build/stt/commands/set-reaction-to-stt-job.command.js +12 -2
  79. package/build/stt/models/stt-job.schema.js +2 -0
  80. package/build/tools/enums/tool-content-type.enum.js +1 -0
  81. package/build/tools/enums/tool-type.enum.js +1 -0
  82. package/build/tools/models/global-tools-config.schema.js +2 -0
  83. package/build/tools/models/tool.schema.js +3 -0
  84. package/build/tools/models/tools-with-configs.schema.js +5 -0
  85. package/build/tts/commands/set-reaction-to-tts-job.command.js +12 -2
  86. package/build/tts/models/tts-job.schema.js +2 -0
  87. package/build/video/commands/index.js +1 -0
  88. package/build/video/commands/retry-video-job.command.js +4 -0
  89. package/build/video/commands/set-reaction-to-video-job.command.js +12 -2
  90. package/build/video/commands/video-model/get-video-model-by-uuid.command.js +13 -0
  91. package/build/video/commands/video-model/index.js +17 -0
  92. package/build/video/enums/video-pricing-rule-type.enum.js +1 -0
  93. package/build/video/enums/video-strategy.enum.js +1 -0
  94. package/build/video/models/video-job.schema.js +3 -0
  95. package/build/video/models/video-model.schema.js +9 -1
  96. package/build/video/routes/index.js +1 -0
  97. package/build/video/routes/video-model.amqp.routes.js +6 -0
  98. package/build/video/routes/video.http.routes.js +1 -0
  99. package/build/video/utils/calculate-video-generation-price.util.js +5 -1
  100. package/build/video-editor/commands/edit-video.command.js +2 -1
  101. package/build/video-editor/commands/index.js +1 -0
  102. package/build/video-editor/commands/retry-video-editor-job.command.js +5 -0
  103. package/build/video-editor/commands/set-reaction-to-video-editor-job.command.js +12 -2
  104. package/build/video-editor/commands/video-editor-model/get-video-editor-model.command.js +13 -0
  105. package/build/video-editor/commands/video-editor-model/index.js +17 -0
  106. package/build/video-editor/models/video-editor-job.schema.js +3 -0
  107. package/build/video-editor/routes/index.js +1 -0
  108. package/build/video-editor/routes/video-editor-model.amqp.routes.js +6 -0
  109. package/build/writer/commands/set-reaction-writer-document.command.js +11 -1
  110. package/build/writer/models/writer-document.schema.js +1 -0
  111. package/common/errors/errors.ts +163 -0
  112. package/common/models/attached-file.schema.ts +11 -0
  113. package/common/models/index.ts +1 -0
  114. package/image-editor/commands/image-editor-model/get-image-editor-model-by-uuid.command.ts +13 -0
  115. package/image-editor/commands/image-editor-model/index.ts +1 -0
  116. package/image-editor/commands/image-editor.command.ts +3 -1
  117. package/image-editor/commands/index.ts +1 -0
  118. package/image-editor/commands/retry-image-editor-job.command.ts +5 -1
  119. package/image-editor/commands/set-reaction-to-image-editor-job.command.ts +19 -6
  120. package/image-editor/enums/image-editor-model-type.enum.ts +2 -0
  121. package/image-editor/enums/image-editor-strategy.enum.ts +4 -0
  122. package/image-editor/models/image-editor-config.schema.ts +1 -0
  123. package/image-editor/models/image-editor-job.schema.ts +3 -1
  124. package/image-editor/models/image-editor-model.schema.ts +16 -0
  125. package/image-editor/routes/image-editor-model.amqp.routes.ts +3 -0
  126. package/image-editor/routes/image-editor.http.routes.ts +1 -0
  127. package/image-editor/routes/index.ts +1 -0
  128. package/image-generation/commands/execute-image-generation.command.ts +20 -0
  129. package/image-generation/commands/forward-image-generation-job.command.ts +32 -0
  130. package/image-generation/commands/index.ts +7 -0
  131. package/image-generation/commands/save-image-generation-job.command.ts +17 -0
  132. package/image-generation/commands/set-reaction-to-image-generation-job.command.ts +30 -0
  133. package/image-generation/commands/soft-delete-image-generation-job-by-uuid.command.ts +14 -0
  134. package/image-generation/commands/soft-delete-image-generation-jobs-by-criteria.command.ts +13 -0
  135. package/image-generation/commands/update-image-generation-job-title.command.ts +16 -0
  136. package/image-generation/enums/image-generation-model-strategy.enum.ts +24 -0
  137. package/image-generation/enums/image-generation-models.enum.ts +4 -0
  138. package/image-generation/enums/image-generation-resolution.enum.ts +5 -0
  139. package/image-generation/enums/index.ts +3 -0
  140. package/image-generation/index.ts +5 -0
  141. package/image-generation/models/image-generation-config.schema.ts +11 -0
  142. package/image-generation/models/image-generation-job.schema.ts +37 -0
  143. package/image-generation/models/image-generation-model.schema.ts +64 -0
  144. package/image-generation/models/image-generation-preset.schema.ts +13 -0
  145. package/image-generation/models/index.ts +4 -0
  146. package/image-generation/queries/find-image-generation-job-by-id.query.ts +19 -0
  147. package/image-generation/queries/find-image-generation-jobs.query.ts +33 -0
  148. package/image-generation/queries/get-image-generation-config.query.ts +11 -0
  149. package/image-generation/queries/index.ts +3 -0
  150. package/image-generation/routes/image-generation.amqp.routes.ts +11 -0
  151. package/image-generation/routes/image-generation.http.routes.ts +7 -0
  152. package/image-generation/routes/index.ts +2 -0
  153. package/index.ts +6 -0
  154. package/music/commands/index.ts +1 -0
  155. package/music/commands/music-model/get-music-model-by-uuid.command.ts +13 -0
  156. package/music/commands/music-model/index.ts +1 -0
  157. package/music/commands/retry-music-job.command.ts +3 -1
  158. package/music/commands/set-reaction-to-music-job.command.ts +19 -6
  159. package/music/models/music-job.schema.ts +1 -0
  160. package/music/models/music-track.schema.ts +1 -0
  161. package/music/routes/index.ts +1 -0
  162. package/music/routes/music-model.amqp.routes.ts +3 -0
  163. package/package.json +1 -1
  164. package/paraphrase/commands/delete-all-paraphrase-jobs.command.ts +13 -0
  165. package/paraphrase/commands/delete-paraphrase-job-by-uuid.command.ts +14 -0
  166. package/paraphrase/commands/index.ts +5 -0
  167. package/paraphrase/commands/retry-paraphrase-job.command.ts +16 -0
  168. package/paraphrase/commands/set-reaction-to-paraphrase-job.command.ts +30 -0
  169. package/paraphrase/commands/update-paraphrase-job-title.command.ts +16 -0
  170. package/paraphrase/models/paraphrase-job.schema.ts +7 -0
  171. package/paraphrase/queries/find-paraphrase-jobs.query.ts +33 -0
  172. package/paraphrase/queries/index.ts +1 -0
  173. package/paraphrase/routes/paraphrase.amqp.routes.ts +6 -0
  174. package/presentation/commands/index.ts +1 -0
  175. package/presentation/commands/set-reaction-to-presentation.command.ts +29 -0
  176. package/presentation/constants/slide-layout-map.constant.ts +1 -0
  177. package/presentation/enums/slide-content-type.enum.ts +1 -0
  178. package/presentation/models/pptx-export-payload.ts +20 -0
  179. package/presentation/models/presentation.schema.ts +3 -0
  180. package/presentation/models/slide-content-edit.schema.ts +21 -0
  181. package/presentation/models/slide-content.schema.ts +51 -0
  182. package/presentation/routes/presentation.routes.ts +1 -0
  183. package/stt/commands/set-reaction-to-stt-job.command.ts +19 -6
  184. package/stt/models/stt-job.schema.ts +2 -0
  185. package/tools/enums/tool-content-type.enum.ts +1 -0
  186. package/tools/enums/tool-type.enum.ts +1 -0
  187. package/tools/models/global-tools-config.schema.ts +2 -0
  188. package/tools/models/tool.schema.ts +3 -0
  189. package/tools/models/tools-with-configs.schema.ts +7 -0
  190. package/tts/commands/set-reaction-to-tts-job.command.ts +19 -6
  191. package/tts/models/tts-job.schema.ts +2 -0
  192. package/video/commands/index.ts +1 -0
  193. package/video/commands/retry-video-job.command.ts +4 -0
  194. package/video/commands/set-reaction-to-video-job.command.ts +19 -6
  195. package/video/commands/video-model/get-video-model-by-uuid.command.ts +13 -0
  196. package/video/commands/video-model/index.ts +1 -0
  197. package/video/enums/video-pricing-rule-type.enum.ts +1 -0
  198. package/video/enums/video-strategy.enum.ts +1 -0
  199. package/video/models/video-job.schema.ts +3 -0
  200. package/video/models/video-model.schema.ts +9 -1
  201. package/video/routes/index.ts +1 -0
  202. package/video/routes/video-model.amqp.routes.ts +3 -0
  203. package/video/routes/video.http.routes.ts +1 -0
  204. package/video/utils/calculate-video-generation-price.util.ts +7 -1
  205. package/video-editor/commands/edit-video.command.ts +2 -1
  206. package/video-editor/commands/index.ts +1 -0
  207. package/video-editor/commands/retry-video-editor-job.command.ts +5 -0
  208. package/video-editor/commands/set-reaction-to-video-editor-job.command.ts +19 -6
  209. package/video-editor/commands/video-editor-model/get-video-editor-model.command.ts +13 -0
  210. package/video-editor/commands/video-editor-model/index.ts +1 -0
  211. package/video-editor/models/video-editor-job.schema.ts +3 -0
  212. package/video-editor/routes/index.ts +1 -0
  213. package/video-editor/routes/video-editor-model.amqp.routes.ts +3 -0
  214. package/writer/commands/set-reaction-writer-document.command.ts +19 -6
  215. package/writer/models/writer-document.schema.ts +1 -0
@@ -4,12 +4,25 @@ import { VideoEditorJobSchema } from '../models/video-editor-job.schema';
4
4
  import { USER_REACTION } from '../../common';
5
5
 
6
6
  export namespace SetReactionToVideoEditorJobCommand {
7
- export const RequestSchema = z.object({
8
- userId: z.string().uuid().nullable().optional(),
9
- unregisteredUserId: z.string().uuid().nullable().optional(),
10
- uuid: z.string(),
11
- reaction: z.nativeEnum(USER_REACTION).nullable(),
12
- });
7
+ export const RequestSchema = z
8
+ .object({
9
+ userId: z.string().uuid().nullable().optional(),
10
+ unregisteredUserId: z.string().uuid().nullable().optional(),
11
+ uuid: z.string().uuid(),
12
+ reaction: z.nativeEnum(USER_REACTION).nullable(),
13
+ dislikeReason: z.string().nullable().default(null),
14
+ })
15
+ .refine(
16
+ (data) => {
17
+ if (data.reaction !== USER_REACTION.DISLIKED && data.dislikeReason) {
18
+ return false;
19
+ }
20
+ return true;
21
+ },
22
+ {
23
+ message: 'Dislike reason is not allowed when reaction is not disliked',
24
+ },
25
+ );
13
26
  export type Request = z.infer<typeof RequestSchema>;
14
27
 
15
28
  export const ResponseSchema = ICommandResponseSchema(VideoEditorJobSchema);
@@ -0,0 +1,13 @@
1
+ import { z } from 'zod';
2
+ import { ICommandResponseSchema } from '../../../common';
3
+ import { VideoEditorModelSchema } from '../../models';
4
+
5
+ export namespace GetVideoEditorModelByUuidCommand {
6
+ export const RequestSchema = z.object({
7
+ uuid: z.string().uuid(),
8
+ });
9
+ export type Request = z.infer<typeof RequestSchema>;
10
+
11
+ export const ResponseSchema = ICommandResponseSchema(VideoEditorModelSchema);
12
+ export type Response = z.infer<typeof ResponseSchema>;
13
+ }
@@ -0,0 +1 @@
1
+ export * from './get-video-editor-model.command';
@@ -10,10 +10,13 @@ export const VideoEditorJobSchema = z.object({
10
10
  error: z.string().nullable(),
11
11
  price: z.number(),
12
12
  reaction: z.nativeEnum(USER_REACTION).nullable(),
13
+ dislikeReason: z.string().nullable(),
13
14
  externalId: z.string().nullable(),
14
15
  modelId: z.string(),
15
16
  inputVideoUrl: z.string(),
17
+ inputVideoId: z.string().nullable(),
16
18
  outputVideoUrl: z.string().nullable(),
19
+ outputVideoId: z.string().nullable(),
17
20
  duration: z.number(),
18
21
  attempts: z.array(z.any()),
19
22
  userId: z.string().nullable().optional(),
@@ -1,2 +1,3 @@
1
1
  export * from './video-editor.amqp.routes';
2
2
  export * from './video-editor.http.routes';
3
+ export * from './video-editor-model.amqp.routes';
@@ -0,0 +1,3 @@
1
+ export const VIDEO_EDITOR_MODEL_AMQP_ROUTES = {
2
+ GET_MODEL_BY_UUID: 'tools.video-editor.model.get-by-uuid.rpc',
3
+ } as const;
@@ -3,12 +3,25 @@ import { ICommandResponseSchema, USER_REACTION } from '../../common';
3
3
  import { WriterDocumentSchema } from '../models';
4
4
 
5
5
  export namespace SetReactionToWriterDocumentCommand {
6
- export const RequestSchema = z.object({
7
- userId: z.string().uuid().nullable().optional(),
8
- unregisteredUserId: z.string().uuid().nullable().optional(),
9
- documentId: z.string().uuid(),
10
- reaction: z.nativeEnum(USER_REACTION),
11
- });
6
+ export const RequestSchema = z
7
+ .object({
8
+ userId: z.string().uuid().nullable().optional(),
9
+ unregisteredUserId: z.string().uuid().nullable().optional(),
10
+ documentId: z.string().uuid(),
11
+ reaction: z.nativeEnum(USER_REACTION),
12
+ dislikeReason: z.string().nullable().default(null),
13
+ })
14
+ .refine(
15
+ (data) => {
16
+ if (data.reaction !== USER_REACTION.DISLIKED && data.dislikeReason) {
17
+ return false;
18
+ }
19
+ return true;
20
+ },
21
+ {
22
+ message: 'Dislike reason is not allowed when reaction is not disliked',
23
+ },
24
+ );
12
25
  export type Request = z.infer<typeof RequestSchema>;
13
26
 
14
27
  export const ResponseSchema = ICommandResponseSchema(WriterDocumentSchema);
@@ -16,6 +16,7 @@ export const WriterDocumentSchema = z.object({
16
16
  unregisteredUserId: z.string().nullable(),
17
17
  modelId: z.string().nullable(),
18
18
  reaction: z.nativeEnum(USER_REACTION).nullable(),
19
+ dislikeReason: z.string().nullable(),
19
20
  pages: z.number(),
20
21
  isDeleted: z.boolean(),
21
22
  createdAt: z.date(),