@purpleschool/multisite 0.0.8 → 0.0.10

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 (184) hide show
  1. package/api/controller/http/index.ts +2 -0
  2. package/api/controller/http/stt.ts +14 -0
  3. package/api/controller/http/tts.ts +14 -0
  4. package/api/routes.ts +64 -0
  5. package/build/api/controller/http/index.d.ts +2 -0
  6. package/build/api/controller/http/index.d.ts.map +1 -1
  7. package/build/api/controller/http/index.js +2 -0
  8. package/build/api/controller/http/stt.d.ts +14 -0
  9. package/build/api/controller/http/stt.d.ts.map +1 -0
  10. package/build/api/controller/http/stt.js +16 -0
  11. package/build/api/controller/http/tts.d.ts +14 -0
  12. package/build/api/controller/http/tts.d.ts.map +1 -0
  13. package/build/api/controller/http/tts.js +16 -0
  14. package/build/api/routes.d.ts +44 -0
  15. package/build/api/routes.d.ts.map +1 -1
  16. package/build/api/routes.js +44 -0
  17. package/build/commands/index.d.ts +2 -0
  18. package/build/commands/index.d.ts.map +1 -1
  19. package/build/commands/index.js +2 -0
  20. package/build/commands/payment/cloud-payments.command.d.ts +10 -10
  21. package/build/commands/payment/cloud-payments.command.js +4 -4
  22. package/build/commands/stt/delete-all-stt-jobs.command.d.ts +12 -0
  23. package/build/commands/stt/delete-all-stt-jobs.command.d.ts.map +1 -0
  24. package/build/commands/stt/delete-all-stt-jobs.command.js +10 -0
  25. package/build/commands/stt/delete-stt-job-by-uuid.command.d.ts +20 -0
  26. package/build/commands/stt/delete-stt-job-by-uuid.command.d.ts.map +1 -0
  27. package/build/commands/stt/delete-stt-job-by-uuid.command.js +13 -0
  28. package/build/commands/stt/execute-stt.command.d.ts +213 -0
  29. package/build/commands/stt/execute-stt.command.d.ts.map +1 -0
  30. package/build/commands/stt/execute-stt.command.js +15 -0
  31. package/build/commands/stt/index.d.ts +7 -0
  32. package/build/commands/stt/index.d.ts.map +1 -0
  33. package/build/commands/stt/index.js +22 -0
  34. package/build/commands/stt/retry-stt-job.command.d.ts +210 -0
  35. package/build/commands/stt/retry-stt-job.command.d.ts.map +1 -0
  36. package/build/commands/stt/retry-stt-job.command.js +14 -0
  37. package/build/commands/stt/set-reaction-to-stt-job.command.d.ts +222 -0
  38. package/build/commands/stt/set-reaction-to-stt-job.command.d.ts.map +1 -0
  39. package/build/commands/stt/set-reaction-to-stt-job.command.js +19 -0
  40. package/build/commands/stt/update-stt-job-title.command.d.ts +218 -0
  41. package/build/commands/stt/update-stt-job-title.command.d.ts.map +1 -0
  42. package/build/commands/stt/update-stt-job-title.command.js +17 -0
  43. package/build/commands/tts/delete-all-tts-jobs.command.d.ts +12 -0
  44. package/build/commands/tts/delete-all-tts-jobs.command.d.ts.map +1 -0
  45. package/build/commands/tts/delete-all-tts-jobs.command.js +10 -0
  46. package/build/commands/tts/delete-tts-job-by-uuid.command.d.ts +20 -0
  47. package/build/commands/tts/delete-tts-job-by-uuid.command.d.ts.map +1 -0
  48. package/build/commands/tts/delete-tts-job-by-uuid.command.js +13 -0
  49. package/build/commands/tts/execute-tts.command.d.ts +256 -0
  50. package/build/commands/tts/execute-tts.command.d.ts.map +1 -0
  51. package/build/commands/tts/execute-tts.command.js +26 -0
  52. package/build/commands/tts/index.d.ts +7 -0
  53. package/build/commands/tts/index.d.ts.map +1 -0
  54. package/build/commands/tts/index.js +22 -0
  55. package/build/commands/tts/retry-tts-job.command.d.ts +217 -0
  56. package/build/commands/tts/retry-tts-job.command.d.ts.map +1 -0
  57. package/build/commands/tts/retry-tts-job.command.js +14 -0
  58. package/build/commands/tts/set-reaction-to-tts-job.command.d.ts +229 -0
  59. package/build/commands/tts/set-reaction-to-tts-job.command.d.ts.map +1 -0
  60. package/build/commands/tts/set-reaction-to-tts-job.command.js +19 -0
  61. package/build/commands/tts/update-tts-job-title.command.d.ts +225 -0
  62. package/build/commands/tts/update-tts-job-title.command.d.ts.map +1 -0
  63. package/build/commands/tts/update-tts-job-title.command.js +17 -0
  64. package/build/constants/errors/errors.d.ts +90 -0
  65. package/build/constants/errors/errors.d.ts.map +1 -1
  66. package/build/constants/errors/errors.js +92 -0
  67. package/build/constants/files/enums/file-type.enum.d.ts +2 -1
  68. package/build/constants/files/enums/file-type.enum.d.ts.map +1 -1
  69. package/build/constants/files/enums/file-type.enum.js +1 -0
  70. package/build/constants/tools/enums/tool-type.enum.d.ts +3 -1
  71. package/build/constants/tools/enums/tool-type.enum.d.ts.map +1 -1
  72. package/build/constants/tools/enums/tool-type.enum.js +2 -0
  73. package/build/constants/user-to-subscription/enums/user-to-subscription-status.enum.d.ts +2 -1
  74. package/build/constants/user-to-subscription/enums/user-to-subscription-status.enum.d.ts.map +1 -1
  75. package/build/constants/user-to-subscription/enums/user-to-subscription-status.enum.js +1 -0
  76. package/build/models/index.d.ts +2 -0
  77. package/build/models/index.d.ts.map +1 -1
  78. package/build/models/index.js +2 -0
  79. package/build/models/stt/index.d.ts +6 -0
  80. package/build/models/stt/index.d.ts.map +1 -0
  81. package/build/models/stt/index.js +21 -0
  82. package/build/models/stt/stt-config.schema.d.ts +165 -0
  83. package/build/models/stt/stt-config.schema.d.ts.map +1 -0
  84. package/build/models/stt/stt-config.schema.js +8 -0
  85. package/build/models/stt/stt-job-attempt.schema.d.ts +20 -0
  86. package/build/models/stt/stt-job-attempt.schema.d.ts.map +1 -0
  87. package/build/models/stt/stt-job-attempt.schema.js +11 -0
  88. package/build/models/stt/stt-job.schema.d.ts +127 -0
  89. package/build/models/stt/stt-job.schema.d.ts.map +1 -0
  90. package/build/models/stt/stt-job.schema.js +32 -0
  91. package/build/models/stt/stt-model.schema.d.ts +110 -0
  92. package/build/models/stt/stt-model.schema.d.ts.map +1 -0
  93. package/build/models/stt/stt-model.schema.js +23 -0
  94. package/build/models/stt/stt-response.schema.d.ts +19 -0
  95. package/build/models/stt/stt-response.schema.d.ts.map +1 -0
  96. package/build/models/stt/stt-response.schema.js +10 -0
  97. package/build/models/tts/index.d.ts +6 -0
  98. package/build/models/tts/index.d.ts.map +1 -0
  99. package/build/models/tts/index.js +21 -0
  100. package/build/models/tts/tts-config.schema.d.ts +1117 -0
  101. package/build/models/tts/tts-config.schema.d.ts.map +1 -0
  102. package/build/models/tts/tts-config.schema.js +8 -0
  103. package/build/models/tts/tts-job-attempt.schema.d.ts +20 -0
  104. package/build/models/tts/tts-job-attempt.schema.d.ts.map +1 -0
  105. package/build/models/tts/tts-job-attempt.schema.js +11 -0
  106. package/build/models/tts/tts-job-params.schema.d.ts +22 -0
  107. package/build/models/tts/tts-job-params.schema.d.ts.map +1 -0
  108. package/build/models/tts/tts-job-params.schema.js +11 -0
  109. package/build/models/tts/tts-job.schema.d.ts +132 -0
  110. package/build/models/tts/tts-job.schema.d.ts.map +1 -0
  111. package/build/models/tts/tts-job.schema.js +32 -0
  112. package/build/models/tts/tts-model.schema.d.ts +1530 -0
  113. package/build/models/tts/tts-model.schema.d.ts.map +1 -0
  114. package/build/models/tts/tts-model.schema.js +58 -0
  115. package/build/queries/index.d.ts +2 -0
  116. package/build/queries/index.d.ts.map +1 -1
  117. package/build/queries/index.js +2 -0
  118. package/build/queries/stt/find-stt-jobs.command.d.ts +236 -0
  119. package/build/queries/stt/find-stt-jobs.command.d.ts.map +1 -0
  120. package/build/queries/stt/find-stt-jobs.command.js +20 -0
  121. package/build/queries/stt/get-stt-config.command.d.ts +227 -0
  122. package/build/queries/stt/get-stt-config.command.d.ts.map +1 -0
  123. package/build/queries/stt/get-stt-config.command.js +11 -0
  124. package/build/queries/stt/get-stt-job.command.d.ts +210 -0
  125. package/build/queries/stt/get-stt-job.command.d.ts.map +1 -0
  126. package/build/queries/stt/get-stt-job.command.js +14 -0
  127. package/build/queries/stt/index.d.ts +4 -0
  128. package/build/queries/stt/index.d.ts.map +1 -0
  129. package/build/queries/stt/index.js +19 -0
  130. package/build/queries/tts/find-tts-jobs.command.d.ts +243 -0
  131. package/build/queries/tts/find-tts-jobs.command.d.ts.map +1 -0
  132. package/build/queries/tts/find-tts-jobs.command.js +20 -0
  133. package/build/queries/tts/get-tts-config.command.d.ts +1371 -0
  134. package/build/queries/tts/get-tts-config.command.d.ts.map +1 -0
  135. package/build/queries/tts/get-tts-config.command.js +11 -0
  136. package/build/queries/tts/get-tts-job.command.d.ts +217 -0
  137. package/build/queries/tts/get-tts-job.command.d.ts.map +1 -0
  138. package/build/queries/tts/get-tts-job.command.js +14 -0
  139. package/build/queries/tts/index.d.ts +4 -0
  140. package/build/queries/tts/index.d.ts.map +1 -0
  141. package/build/queries/tts/index.js +19 -0
  142. package/commands/index.ts +2 -0
  143. package/commands/payment/cloud-payments.command.ts +4 -4
  144. package/commands/stt/delete-all-stt-jobs.command.ts +8 -0
  145. package/commands/stt/delete-stt-job-by-uuid.command.ts +13 -0
  146. package/commands/stt/execute-stt.command.ts +15 -0
  147. package/commands/stt/index.ts +6 -0
  148. package/commands/stt/retry-stt-job.command.ts +14 -0
  149. package/commands/stt/set-reaction-to-stt-job.command.ts +21 -0
  150. package/commands/stt/update-stt-job-title.command.ts +19 -0
  151. package/commands/tts/delete-all-tts-jobs.command.ts +8 -0
  152. package/commands/tts/delete-tts-job-by-uuid.command.ts +13 -0
  153. package/commands/tts/execute-tts.command.ts +26 -0
  154. package/commands/tts/index.ts +6 -0
  155. package/commands/tts/retry-tts-job.command.ts +14 -0
  156. package/commands/tts/set-reaction-to-tts-job.command.ts +21 -0
  157. package/commands/tts/update-tts-job-title.command.ts +19 -0
  158. package/constants/errors/errors.ts +94 -0
  159. package/constants/files/enums/file-type.enum.ts +1 -0
  160. package/constants/tools/enums/tool-type.enum.ts +2 -0
  161. package/constants/user-to-subscription/enums/user-to-subscription-status.enum.ts +1 -0
  162. package/models/index.ts +2 -0
  163. package/models/stt/index.ts +5 -0
  164. package/models/stt/stt-config.schema.ts +8 -0
  165. package/models/stt/stt-job-attempt.schema.ts +11 -0
  166. package/models/stt/stt-job.schema.ts +32 -0
  167. package/models/stt/stt-model.schema.ts +23 -0
  168. package/models/stt/stt-response.schema.ts +10 -0
  169. package/models/tts/index.ts +5 -0
  170. package/models/tts/tts-config.schema.ts +8 -0
  171. package/models/tts/tts-job-attempt.schema.ts +11 -0
  172. package/models/tts/tts-job-params.schema.ts +11 -0
  173. package/models/tts/tts-job.schema.ts +32 -0
  174. package/models/tts/tts-model.schema.ts +66 -0
  175. package/package.json +1 -1
  176. package/queries/index.ts +2 -0
  177. package/queries/stt/find-stt-jobs.command.ts +20 -0
  178. package/queries/stt/get-stt-config.command.ts +9 -0
  179. package/queries/stt/get-stt-job.command.ts +14 -0
  180. package/queries/stt/index.ts +3 -0
  181. package/queries/tts/find-tts-jobs.command.ts +20 -0
  182. package/queries/tts/get-tts-config.command.ts +9 -0
  183. package/queries/tts/get-tts-job.command.ts +14 -0
  184. package/queries/tts/index.ts +3 -0
@@ -0,0 +1,1530 @@
1
+ import { z } from 'zod';
2
+ import { TOOL_MODEL_STATUS } from '../../constants/tools/enums/tool-model-status.enum';
3
+ export declare const TTSVoiceSchema: z.ZodObject<{
4
+ id: z.ZodString;
5
+ externalId: z.ZodString;
6
+ icon: z.ZodString;
7
+ title: z.ZodString;
8
+ previewUrl: z.ZodString;
9
+ description: z.ZodString;
10
+ languages: z.ZodArray<z.ZodObject<{
11
+ code: z.ZodString;
12
+ title: z.ZodString;
13
+ icon: z.ZodString;
14
+ order: z.ZodNumber;
15
+ }, "strip", z.ZodTypeAny, {
16
+ code: string;
17
+ title: string;
18
+ order: number;
19
+ icon: string;
20
+ }, {
21
+ code: string;
22
+ title: string;
23
+ order: number;
24
+ icon: string;
25
+ }>, "many">;
26
+ order: z.ZodNumber;
27
+ }, "strip", z.ZodTypeAny, {
28
+ description: string;
29
+ title: string;
30
+ order: number;
31
+ externalId: string;
32
+ id: string;
33
+ icon: string;
34
+ previewUrl: string;
35
+ languages: {
36
+ code: string;
37
+ title: string;
38
+ order: number;
39
+ icon: string;
40
+ }[];
41
+ }, {
42
+ description: string;
43
+ title: string;
44
+ order: number;
45
+ externalId: string;
46
+ id: string;
47
+ icon: string;
48
+ previewUrl: string;
49
+ languages: {
50
+ code: string;
51
+ title: string;
52
+ order: number;
53
+ icon: string;
54
+ }[];
55
+ }>;
56
+ export type TTSVoice = z.infer<typeof TTSVoiceSchema>;
57
+ export declare const TTSSliderSchema: z.ZodObject<{
58
+ title: z.ZodString;
59
+ description: z.ZodString;
60
+ icons: z.ZodObject<{
61
+ light: z.ZodObject<{
62
+ png: z.ZodOptional<z.ZodString>;
63
+ svg: z.ZodOptional<z.ZodString>;
64
+ }, "strip", z.ZodTypeAny, {
65
+ png?: string | undefined;
66
+ svg?: string | undefined;
67
+ }, {
68
+ png?: string | undefined;
69
+ svg?: string | undefined;
70
+ }>;
71
+ dark: z.ZodObject<{
72
+ png: z.ZodOptional<z.ZodString>;
73
+ svg: z.ZodOptional<z.ZodString>;
74
+ }, "strip", z.ZodTypeAny, {
75
+ png?: string | undefined;
76
+ svg?: string | undefined;
77
+ }, {
78
+ png?: string | undefined;
79
+ svg?: string | undefined;
80
+ }>;
81
+ }, "strip", z.ZodTypeAny, {
82
+ light: {
83
+ png?: string | undefined;
84
+ svg?: string | undefined;
85
+ };
86
+ dark: {
87
+ png?: string | undefined;
88
+ svg?: string | undefined;
89
+ };
90
+ }, {
91
+ light: {
92
+ png?: string | undefined;
93
+ svg?: string | undefined;
94
+ };
95
+ dark: {
96
+ png?: string | undefined;
97
+ svg?: string | undefined;
98
+ };
99
+ }>;
100
+ min: z.ZodNumber;
101
+ minLabel: z.ZodString;
102
+ max: z.ZodNumber;
103
+ maxLabel: z.ZodString;
104
+ step: z.ZodNumber;
105
+ default: z.ZodNumber;
106
+ }, "strip", z.ZodTypeAny, {
107
+ default: number;
108
+ description: string;
109
+ min: number;
110
+ max: number;
111
+ title: string;
112
+ icons: {
113
+ light: {
114
+ png?: string | undefined;
115
+ svg?: string | undefined;
116
+ };
117
+ dark: {
118
+ png?: string | undefined;
119
+ svg?: string | undefined;
120
+ };
121
+ };
122
+ minLabel: string;
123
+ maxLabel: string;
124
+ step: number;
125
+ }, {
126
+ default: number;
127
+ description: string;
128
+ min: number;
129
+ max: number;
130
+ title: string;
131
+ icons: {
132
+ light: {
133
+ png?: string | undefined;
134
+ svg?: string | undefined;
135
+ };
136
+ dark: {
137
+ png?: string | undefined;
138
+ svg?: string | undefined;
139
+ };
140
+ };
141
+ minLabel: string;
142
+ maxLabel: string;
143
+ step: number;
144
+ }>;
145
+ export type TTSSlider = z.infer<typeof TTSSliderSchema>;
146
+ export declare const TTSModelParamsSchema: z.ZodObject<{
147
+ speed: z.ZodOptional<z.ZodObject<{
148
+ title: z.ZodString;
149
+ description: z.ZodString;
150
+ icons: z.ZodObject<{
151
+ light: z.ZodObject<{
152
+ png: z.ZodOptional<z.ZodString>;
153
+ svg: z.ZodOptional<z.ZodString>;
154
+ }, "strip", z.ZodTypeAny, {
155
+ png?: string | undefined;
156
+ svg?: string | undefined;
157
+ }, {
158
+ png?: string | undefined;
159
+ svg?: string | undefined;
160
+ }>;
161
+ dark: z.ZodObject<{
162
+ png: z.ZodOptional<z.ZodString>;
163
+ svg: z.ZodOptional<z.ZodString>;
164
+ }, "strip", z.ZodTypeAny, {
165
+ png?: string | undefined;
166
+ svg?: string | undefined;
167
+ }, {
168
+ png?: string | undefined;
169
+ svg?: string | undefined;
170
+ }>;
171
+ }, "strip", z.ZodTypeAny, {
172
+ light: {
173
+ png?: string | undefined;
174
+ svg?: string | undefined;
175
+ };
176
+ dark: {
177
+ png?: string | undefined;
178
+ svg?: string | undefined;
179
+ };
180
+ }, {
181
+ light: {
182
+ png?: string | undefined;
183
+ svg?: string | undefined;
184
+ };
185
+ dark: {
186
+ png?: string | undefined;
187
+ svg?: string | undefined;
188
+ };
189
+ }>;
190
+ min: z.ZodNumber;
191
+ minLabel: z.ZodString;
192
+ max: z.ZodNumber;
193
+ maxLabel: z.ZodString;
194
+ step: z.ZodNumber;
195
+ default: z.ZodNumber;
196
+ }, "strip", z.ZodTypeAny, {
197
+ default: number;
198
+ description: string;
199
+ min: number;
200
+ max: number;
201
+ title: string;
202
+ icons: {
203
+ light: {
204
+ png?: string | undefined;
205
+ svg?: string | undefined;
206
+ };
207
+ dark: {
208
+ png?: string | undefined;
209
+ svg?: string | undefined;
210
+ };
211
+ };
212
+ minLabel: string;
213
+ maxLabel: string;
214
+ step: number;
215
+ }, {
216
+ default: number;
217
+ description: string;
218
+ min: number;
219
+ max: number;
220
+ title: string;
221
+ icons: {
222
+ light: {
223
+ png?: string | undefined;
224
+ svg?: string | undefined;
225
+ };
226
+ dark: {
227
+ png?: string | undefined;
228
+ svg?: string | undefined;
229
+ };
230
+ };
231
+ minLabel: string;
232
+ maxLabel: string;
233
+ step: number;
234
+ }>>;
235
+ stability: z.ZodOptional<z.ZodObject<{
236
+ title: z.ZodString;
237
+ description: z.ZodString;
238
+ icons: z.ZodObject<{
239
+ light: z.ZodObject<{
240
+ png: z.ZodOptional<z.ZodString>;
241
+ svg: z.ZodOptional<z.ZodString>;
242
+ }, "strip", z.ZodTypeAny, {
243
+ png?: string | undefined;
244
+ svg?: string | undefined;
245
+ }, {
246
+ png?: string | undefined;
247
+ svg?: string | undefined;
248
+ }>;
249
+ dark: z.ZodObject<{
250
+ png: z.ZodOptional<z.ZodString>;
251
+ svg: z.ZodOptional<z.ZodString>;
252
+ }, "strip", z.ZodTypeAny, {
253
+ png?: string | undefined;
254
+ svg?: string | undefined;
255
+ }, {
256
+ png?: string | undefined;
257
+ svg?: string | undefined;
258
+ }>;
259
+ }, "strip", z.ZodTypeAny, {
260
+ light: {
261
+ png?: string | undefined;
262
+ svg?: string | undefined;
263
+ };
264
+ dark: {
265
+ png?: string | undefined;
266
+ svg?: string | undefined;
267
+ };
268
+ }, {
269
+ light: {
270
+ png?: string | undefined;
271
+ svg?: string | undefined;
272
+ };
273
+ dark: {
274
+ png?: string | undefined;
275
+ svg?: string | undefined;
276
+ };
277
+ }>;
278
+ min: z.ZodNumber;
279
+ minLabel: z.ZodString;
280
+ max: z.ZodNumber;
281
+ maxLabel: z.ZodString;
282
+ step: z.ZodNumber;
283
+ default: z.ZodNumber;
284
+ }, "strip", z.ZodTypeAny, {
285
+ default: number;
286
+ description: string;
287
+ min: number;
288
+ max: number;
289
+ title: string;
290
+ icons: {
291
+ light: {
292
+ png?: string | undefined;
293
+ svg?: string | undefined;
294
+ };
295
+ dark: {
296
+ png?: string | undefined;
297
+ svg?: string | undefined;
298
+ };
299
+ };
300
+ minLabel: string;
301
+ maxLabel: string;
302
+ step: number;
303
+ }, {
304
+ default: number;
305
+ description: string;
306
+ min: number;
307
+ max: number;
308
+ title: string;
309
+ icons: {
310
+ light: {
311
+ png?: string | undefined;
312
+ svg?: string | undefined;
313
+ };
314
+ dark: {
315
+ png?: string | undefined;
316
+ svg?: string | undefined;
317
+ };
318
+ };
319
+ minLabel: string;
320
+ maxLabel: string;
321
+ step: number;
322
+ }>>;
323
+ similarity: z.ZodOptional<z.ZodObject<{
324
+ title: z.ZodString;
325
+ description: z.ZodString;
326
+ icons: z.ZodObject<{
327
+ light: z.ZodObject<{
328
+ png: z.ZodOptional<z.ZodString>;
329
+ svg: z.ZodOptional<z.ZodString>;
330
+ }, "strip", z.ZodTypeAny, {
331
+ png?: string | undefined;
332
+ svg?: string | undefined;
333
+ }, {
334
+ png?: string | undefined;
335
+ svg?: string | undefined;
336
+ }>;
337
+ dark: z.ZodObject<{
338
+ png: z.ZodOptional<z.ZodString>;
339
+ svg: z.ZodOptional<z.ZodString>;
340
+ }, "strip", z.ZodTypeAny, {
341
+ png?: string | undefined;
342
+ svg?: string | undefined;
343
+ }, {
344
+ png?: string | undefined;
345
+ svg?: string | undefined;
346
+ }>;
347
+ }, "strip", z.ZodTypeAny, {
348
+ light: {
349
+ png?: string | undefined;
350
+ svg?: string | undefined;
351
+ };
352
+ dark: {
353
+ png?: string | undefined;
354
+ svg?: string | undefined;
355
+ };
356
+ }, {
357
+ light: {
358
+ png?: string | undefined;
359
+ svg?: string | undefined;
360
+ };
361
+ dark: {
362
+ png?: string | undefined;
363
+ svg?: string | undefined;
364
+ };
365
+ }>;
366
+ min: z.ZodNumber;
367
+ minLabel: z.ZodString;
368
+ max: z.ZodNumber;
369
+ maxLabel: z.ZodString;
370
+ step: z.ZodNumber;
371
+ default: z.ZodNumber;
372
+ }, "strip", z.ZodTypeAny, {
373
+ default: number;
374
+ description: string;
375
+ min: number;
376
+ max: number;
377
+ title: string;
378
+ icons: {
379
+ light: {
380
+ png?: string | undefined;
381
+ svg?: string | undefined;
382
+ };
383
+ dark: {
384
+ png?: string | undefined;
385
+ svg?: string | undefined;
386
+ };
387
+ };
388
+ minLabel: string;
389
+ maxLabel: string;
390
+ step: number;
391
+ }, {
392
+ default: number;
393
+ description: string;
394
+ min: number;
395
+ max: number;
396
+ title: string;
397
+ icons: {
398
+ light: {
399
+ png?: string | undefined;
400
+ svg?: string | undefined;
401
+ };
402
+ dark: {
403
+ png?: string | undefined;
404
+ svg?: string | undefined;
405
+ };
406
+ };
407
+ minLabel: string;
408
+ maxLabel: string;
409
+ step: number;
410
+ }>>;
411
+ style: z.ZodOptional<z.ZodObject<{
412
+ title: z.ZodString;
413
+ description: z.ZodString;
414
+ icons: z.ZodObject<{
415
+ light: z.ZodObject<{
416
+ png: z.ZodOptional<z.ZodString>;
417
+ svg: z.ZodOptional<z.ZodString>;
418
+ }, "strip", z.ZodTypeAny, {
419
+ png?: string | undefined;
420
+ svg?: string | undefined;
421
+ }, {
422
+ png?: string | undefined;
423
+ svg?: string | undefined;
424
+ }>;
425
+ dark: z.ZodObject<{
426
+ png: z.ZodOptional<z.ZodString>;
427
+ svg: z.ZodOptional<z.ZodString>;
428
+ }, "strip", z.ZodTypeAny, {
429
+ png?: string | undefined;
430
+ svg?: string | undefined;
431
+ }, {
432
+ png?: string | undefined;
433
+ svg?: string | undefined;
434
+ }>;
435
+ }, "strip", z.ZodTypeAny, {
436
+ light: {
437
+ png?: string | undefined;
438
+ svg?: string | undefined;
439
+ };
440
+ dark: {
441
+ png?: string | undefined;
442
+ svg?: string | undefined;
443
+ };
444
+ }, {
445
+ light: {
446
+ png?: string | undefined;
447
+ svg?: string | undefined;
448
+ };
449
+ dark: {
450
+ png?: string | undefined;
451
+ svg?: string | undefined;
452
+ };
453
+ }>;
454
+ min: z.ZodNumber;
455
+ minLabel: z.ZodString;
456
+ max: z.ZodNumber;
457
+ maxLabel: z.ZodString;
458
+ step: z.ZodNumber;
459
+ default: z.ZodNumber;
460
+ }, "strip", z.ZodTypeAny, {
461
+ default: number;
462
+ description: string;
463
+ min: number;
464
+ max: number;
465
+ title: string;
466
+ icons: {
467
+ light: {
468
+ png?: string | undefined;
469
+ svg?: string | undefined;
470
+ };
471
+ dark: {
472
+ png?: string | undefined;
473
+ svg?: string | undefined;
474
+ };
475
+ };
476
+ minLabel: string;
477
+ maxLabel: string;
478
+ step: number;
479
+ }, {
480
+ default: number;
481
+ description: string;
482
+ min: number;
483
+ max: number;
484
+ title: string;
485
+ icons: {
486
+ light: {
487
+ png?: string | undefined;
488
+ svg?: string | undefined;
489
+ };
490
+ dark: {
491
+ png?: string | undefined;
492
+ svg?: string | undefined;
493
+ };
494
+ };
495
+ minLabel: string;
496
+ maxLabel: string;
497
+ step: number;
498
+ }>>;
499
+ }, "strip", z.ZodTypeAny, {
500
+ speed?: {
501
+ default: number;
502
+ description: string;
503
+ min: number;
504
+ max: number;
505
+ title: string;
506
+ icons: {
507
+ light: {
508
+ png?: string | undefined;
509
+ svg?: string | undefined;
510
+ };
511
+ dark: {
512
+ png?: string | undefined;
513
+ svg?: string | undefined;
514
+ };
515
+ };
516
+ minLabel: string;
517
+ maxLabel: string;
518
+ step: number;
519
+ } | undefined;
520
+ stability?: {
521
+ default: number;
522
+ description: string;
523
+ min: number;
524
+ max: number;
525
+ title: string;
526
+ icons: {
527
+ light: {
528
+ png?: string | undefined;
529
+ svg?: string | undefined;
530
+ };
531
+ dark: {
532
+ png?: string | undefined;
533
+ svg?: string | undefined;
534
+ };
535
+ };
536
+ minLabel: string;
537
+ maxLabel: string;
538
+ step: number;
539
+ } | undefined;
540
+ similarity?: {
541
+ default: number;
542
+ description: string;
543
+ min: number;
544
+ max: number;
545
+ title: string;
546
+ icons: {
547
+ light: {
548
+ png?: string | undefined;
549
+ svg?: string | undefined;
550
+ };
551
+ dark: {
552
+ png?: string | undefined;
553
+ svg?: string | undefined;
554
+ };
555
+ };
556
+ minLabel: string;
557
+ maxLabel: string;
558
+ step: number;
559
+ } | undefined;
560
+ style?: {
561
+ default: number;
562
+ description: string;
563
+ min: number;
564
+ max: number;
565
+ title: string;
566
+ icons: {
567
+ light: {
568
+ png?: string | undefined;
569
+ svg?: string | undefined;
570
+ };
571
+ dark: {
572
+ png?: string | undefined;
573
+ svg?: string | undefined;
574
+ };
575
+ };
576
+ minLabel: string;
577
+ maxLabel: string;
578
+ step: number;
579
+ } | undefined;
580
+ }, {
581
+ speed?: {
582
+ default: number;
583
+ description: string;
584
+ min: number;
585
+ max: number;
586
+ title: string;
587
+ icons: {
588
+ light: {
589
+ png?: string | undefined;
590
+ svg?: string | undefined;
591
+ };
592
+ dark: {
593
+ png?: string | undefined;
594
+ svg?: string | undefined;
595
+ };
596
+ };
597
+ minLabel: string;
598
+ maxLabel: string;
599
+ step: number;
600
+ } | undefined;
601
+ stability?: {
602
+ default: number;
603
+ description: string;
604
+ min: number;
605
+ max: number;
606
+ title: string;
607
+ icons: {
608
+ light: {
609
+ png?: string | undefined;
610
+ svg?: string | undefined;
611
+ };
612
+ dark: {
613
+ png?: string | undefined;
614
+ svg?: string | undefined;
615
+ };
616
+ };
617
+ minLabel: string;
618
+ maxLabel: string;
619
+ step: number;
620
+ } | undefined;
621
+ similarity?: {
622
+ default: number;
623
+ description: string;
624
+ min: number;
625
+ max: number;
626
+ title: string;
627
+ icons: {
628
+ light: {
629
+ png?: string | undefined;
630
+ svg?: string | undefined;
631
+ };
632
+ dark: {
633
+ png?: string | undefined;
634
+ svg?: string | undefined;
635
+ };
636
+ };
637
+ minLabel: string;
638
+ maxLabel: string;
639
+ step: number;
640
+ } | undefined;
641
+ style?: {
642
+ default: number;
643
+ description: string;
644
+ min: number;
645
+ max: number;
646
+ title: string;
647
+ icons: {
648
+ light: {
649
+ png?: string | undefined;
650
+ svg?: string | undefined;
651
+ };
652
+ dark: {
653
+ png?: string | undefined;
654
+ svg?: string | undefined;
655
+ };
656
+ };
657
+ minLabel: string;
658
+ maxLabel: string;
659
+ step: number;
660
+ } | undefined;
661
+ }>;
662
+ export type TTSModelParams = z.infer<typeof TTSModelParamsSchema>;
663
+ export declare const TTSModelSchema: z.ZodObject<{
664
+ uuid: z.ZodString;
665
+ siteId: z.ZodString;
666
+ title: z.ZodString;
667
+ description: z.ZodString;
668
+ aiModel: z.ZodString;
669
+ pricePerSymbol: z.ZodNumber;
670
+ order: z.ZodNumber;
671
+ status: z.ZodNativeEnum<typeof TOOL_MODEL_STATUS>;
672
+ canUse: z.ZodOptional<z.ZodBoolean>;
673
+ icons: z.ZodObject<{
674
+ light: z.ZodObject<{
675
+ png: z.ZodOptional<z.ZodString>;
676
+ svg: z.ZodOptional<z.ZodString>;
677
+ }, "strip", z.ZodTypeAny, {
678
+ png?: string | undefined;
679
+ svg?: string | undefined;
680
+ }, {
681
+ png?: string | undefined;
682
+ svg?: string | undefined;
683
+ }>;
684
+ dark: z.ZodObject<{
685
+ png: z.ZodOptional<z.ZodString>;
686
+ svg: z.ZodOptional<z.ZodString>;
687
+ }, "strip", z.ZodTypeAny, {
688
+ png?: string | undefined;
689
+ svg?: string | undefined;
690
+ }, {
691
+ png?: string | undefined;
692
+ svg?: string | undefined;
693
+ }>;
694
+ }, "strip", z.ZodTypeAny, {
695
+ light: {
696
+ png?: string | undefined;
697
+ svg?: string | undefined;
698
+ };
699
+ dark: {
700
+ png?: string | undefined;
701
+ svg?: string | undefined;
702
+ };
703
+ }, {
704
+ light: {
705
+ png?: string | undefined;
706
+ svg?: string | undefined;
707
+ };
708
+ dark: {
709
+ png?: string | undefined;
710
+ svg?: string | undefined;
711
+ };
712
+ }>;
713
+ strategy: z.ZodString;
714
+ maxInputLength: z.ZodNumber;
715
+ voices: z.ZodArray<z.ZodObject<{
716
+ id: z.ZodString;
717
+ externalId: z.ZodString;
718
+ icon: z.ZodString;
719
+ title: z.ZodString;
720
+ previewUrl: z.ZodString;
721
+ description: z.ZodString;
722
+ languages: z.ZodArray<z.ZodObject<{
723
+ code: z.ZodString;
724
+ title: z.ZodString;
725
+ icon: z.ZodString;
726
+ order: z.ZodNumber;
727
+ }, "strip", z.ZodTypeAny, {
728
+ code: string;
729
+ title: string;
730
+ order: number;
731
+ icon: string;
732
+ }, {
733
+ code: string;
734
+ title: string;
735
+ order: number;
736
+ icon: string;
737
+ }>, "many">;
738
+ order: z.ZodNumber;
739
+ }, "strip", z.ZodTypeAny, {
740
+ description: string;
741
+ title: string;
742
+ order: number;
743
+ externalId: string;
744
+ id: string;
745
+ icon: string;
746
+ previewUrl: string;
747
+ languages: {
748
+ code: string;
749
+ title: string;
750
+ order: number;
751
+ icon: string;
752
+ }[];
753
+ }, {
754
+ description: string;
755
+ title: string;
756
+ order: number;
757
+ externalId: string;
758
+ id: string;
759
+ icon: string;
760
+ previewUrl: string;
761
+ languages: {
762
+ code: string;
763
+ title: string;
764
+ order: number;
765
+ icon: string;
766
+ }[];
767
+ }>, "many">;
768
+ params: z.ZodObject<{
769
+ speed: z.ZodOptional<z.ZodObject<{
770
+ title: z.ZodString;
771
+ description: z.ZodString;
772
+ icons: z.ZodObject<{
773
+ light: z.ZodObject<{
774
+ png: z.ZodOptional<z.ZodString>;
775
+ svg: z.ZodOptional<z.ZodString>;
776
+ }, "strip", z.ZodTypeAny, {
777
+ png?: string | undefined;
778
+ svg?: string | undefined;
779
+ }, {
780
+ png?: string | undefined;
781
+ svg?: string | undefined;
782
+ }>;
783
+ dark: z.ZodObject<{
784
+ png: z.ZodOptional<z.ZodString>;
785
+ svg: z.ZodOptional<z.ZodString>;
786
+ }, "strip", z.ZodTypeAny, {
787
+ png?: string | undefined;
788
+ svg?: string | undefined;
789
+ }, {
790
+ png?: string | undefined;
791
+ svg?: string | undefined;
792
+ }>;
793
+ }, "strip", z.ZodTypeAny, {
794
+ light: {
795
+ png?: string | undefined;
796
+ svg?: string | undefined;
797
+ };
798
+ dark: {
799
+ png?: string | undefined;
800
+ svg?: string | undefined;
801
+ };
802
+ }, {
803
+ light: {
804
+ png?: string | undefined;
805
+ svg?: string | undefined;
806
+ };
807
+ dark: {
808
+ png?: string | undefined;
809
+ svg?: string | undefined;
810
+ };
811
+ }>;
812
+ min: z.ZodNumber;
813
+ minLabel: z.ZodString;
814
+ max: z.ZodNumber;
815
+ maxLabel: z.ZodString;
816
+ step: z.ZodNumber;
817
+ default: z.ZodNumber;
818
+ }, "strip", z.ZodTypeAny, {
819
+ default: number;
820
+ description: string;
821
+ min: number;
822
+ max: number;
823
+ title: string;
824
+ icons: {
825
+ light: {
826
+ png?: string | undefined;
827
+ svg?: string | undefined;
828
+ };
829
+ dark: {
830
+ png?: string | undefined;
831
+ svg?: string | undefined;
832
+ };
833
+ };
834
+ minLabel: string;
835
+ maxLabel: string;
836
+ step: number;
837
+ }, {
838
+ default: number;
839
+ description: string;
840
+ min: number;
841
+ max: number;
842
+ title: string;
843
+ icons: {
844
+ light: {
845
+ png?: string | undefined;
846
+ svg?: string | undefined;
847
+ };
848
+ dark: {
849
+ png?: string | undefined;
850
+ svg?: string | undefined;
851
+ };
852
+ };
853
+ minLabel: string;
854
+ maxLabel: string;
855
+ step: number;
856
+ }>>;
857
+ stability: z.ZodOptional<z.ZodObject<{
858
+ title: z.ZodString;
859
+ description: z.ZodString;
860
+ icons: z.ZodObject<{
861
+ light: z.ZodObject<{
862
+ png: z.ZodOptional<z.ZodString>;
863
+ svg: z.ZodOptional<z.ZodString>;
864
+ }, "strip", z.ZodTypeAny, {
865
+ png?: string | undefined;
866
+ svg?: string | undefined;
867
+ }, {
868
+ png?: string | undefined;
869
+ svg?: string | undefined;
870
+ }>;
871
+ dark: z.ZodObject<{
872
+ png: z.ZodOptional<z.ZodString>;
873
+ svg: z.ZodOptional<z.ZodString>;
874
+ }, "strip", z.ZodTypeAny, {
875
+ png?: string | undefined;
876
+ svg?: string | undefined;
877
+ }, {
878
+ png?: string | undefined;
879
+ svg?: string | undefined;
880
+ }>;
881
+ }, "strip", z.ZodTypeAny, {
882
+ light: {
883
+ png?: string | undefined;
884
+ svg?: string | undefined;
885
+ };
886
+ dark: {
887
+ png?: string | undefined;
888
+ svg?: string | undefined;
889
+ };
890
+ }, {
891
+ light: {
892
+ png?: string | undefined;
893
+ svg?: string | undefined;
894
+ };
895
+ dark: {
896
+ png?: string | undefined;
897
+ svg?: string | undefined;
898
+ };
899
+ }>;
900
+ min: z.ZodNumber;
901
+ minLabel: z.ZodString;
902
+ max: z.ZodNumber;
903
+ maxLabel: z.ZodString;
904
+ step: z.ZodNumber;
905
+ default: z.ZodNumber;
906
+ }, "strip", z.ZodTypeAny, {
907
+ default: number;
908
+ description: string;
909
+ min: number;
910
+ max: number;
911
+ title: string;
912
+ icons: {
913
+ light: {
914
+ png?: string | undefined;
915
+ svg?: string | undefined;
916
+ };
917
+ dark: {
918
+ png?: string | undefined;
919
+ svg?: string | undefined;
920
+ };
921
+ };
922
+ minLabel: string;
923
+ maxLabel: string;
924
+ step: number;
925
+ }, {
926
+ default: number;
927
+ description: string;
928
+ min: number;
929
+ max: number;
930
+ title: string;
931
+ icons: {
932
+ light: {
933
+ png?: string | undefined;
934
+ svg?: string | undefined;
935
+ };
936
+ dark: {
937
+ png?: string | undefined;
938
+ svg?: string | undefined;
939
+ };
940
+ };
941
+ minLabel: string;
942
+ maxLabel: string;
943
+ step: number;
944
+ }>>;
945
+ similarity: z.ZodOptional<z.ZodObject<{
946
+ title: z.ZodString;
947
+ description: z.ZodString;
948
+ icons: z.ZodObject<{
949
+ light: z.ZodObject<{
950
+ png: z.ZodOptional<z.ZodString>;
951
+ svg: z.ZodOptional<z.ZodString>;
952
+ }, "strip", z.ZodTypeAny, {
953
+ png?: string | undefined;
954
+ svg?: string | undefined;
955
+ }, {
956
+ png?: string | undefined;
957
+ svg?: string | undefined;
958
+ }>;
959
+ dark: z.ZodObject<{
960
+ png: z.ZodOptional<z.ZodString>;
961
+ svg: z.ZodOptional<z.ZodString>;
962
+ }, "strip", z.ZodTypeAny, {
963
+ png?: string | undefined;
964
+ svg?: string | undefined;
965
+ }, {
966
+ png?: string | undefined;
967
+ svg?: string | undefined;
968
+ }>;
969
+ }, "strip", z.ZodTypeAny, {
970
+ light: {
971
+ png?: string | undefined;
972
+ svg?: string | undefined;
973
+ };
974
+ dark: {
975
+ png?: string | undefined;
976
+ svg?: string | undefined;
977
+ };
978
+ }, {
979
+ light: {
980
+ png?: string | undefined;
981
+ svg?: string | undefined;
982
+ };
983
+ dark: {
984
+ png?: string | undefined;
985
+ svg?: string | undefined;
986
+ };
987
+ }>;
988
+ min: z.ZodNumber;
989
+ minLabel: z.ZodString;
990
+ max: z.ZodNumber;
991
+ maxLabel: z.ZodString;
992
+ step: z.ZodNumber;
993
+ default: z.ZodNumber;
994
+ }, "strip", z.ZodTypeAny, {
995
+ default: number;
996
+ description: string;
997
+ min: number;
998
+ max: number;
999
+ title: string;
1000
+ icons: {
1001
+ light: {
1002
+ png?: string | undefined;
1003
+ svg?: string | undefined;
1004
+ };
1005
+ dark: {
1006
+ png?: string | undefined;
1007
+ svg?: string | undefined;
1008
+ };
1009
+ };
1010
+ minLabel: string;
1011
+ maxLabel: string;
1012
+ step: number;
1013
+ }, {
1014
+ default: number;
1015
+ description: string;
1016
+ min: number;
1017
+ max: number;
1018
+ title: string;
1019
+ icons: {
1020
+ light: {
1021
+ png?: string | undefined;
1022
+ svg?: string | undefined;
1023
+ };
1024
+ dark: {
1025
+ png?: string | undefined;
1026
+ svg?: string | undefined;
1027
+ };
1028
+ };
1029
+ minLabel: string;
1030
+ maxLabel: string;
1031
+ step: number;
1032
+ }>>;
1033
+ style: z.ZodOptional<z.ZodObject<{
1034
+ title: z.ZodString;
1035
+ description: z.ZodString;
1036
+ icons: z.ZodObject<{
1037
+ light: z.ZodObject<{
1038
+ png: z.ZodOptional<z.ZodString>;
1039
+ svg: z.ZodOptional<z.ZodString>;
1040
+ }, "strip", z.ZodTypeAny, {
1041
+ png?: string | undefined;
1042
+ svg?: string | undefined;
1043
+ }, {
1044
+ png?: string | undefined;
1045
+ svg?: string | undefined;
1046
+ }>;
1047
+ dark: z.ZodObject<{
1048
+ png: z.ZodOptional<z.ZodString>;
1049
+ svg: z.ZodOptional<z.ZodString>;
1050
+ }, "strip", z.ZodTypeAny, {
1051
+ png?: string | undefined;
1052
+ svg?: string | undefined;
1053
+ }, {
1054
+ png?: string | undefined;
1055
+ svg?: string | undefined;
1056
+ }>;
1057
+ }, "strip", z.ZodTypeAny, {
1058
+ light: {
1059
+ png?: string | undefined;
1060
+ svg?: string | undefined;
1061
+ };
1062
+ dark: {
1063
+ png?: string | undefined;
1064
+ svg?: string | undefined;
1065
+ };
1066
+ }, {
1067
+ light: {
1068
+ png?: string | undefined;
1069
+ svg?: string | undefined;
1070
+ };
1071
+ dark: {
1072
+ png?: string | undefined;
1073
+ svg?: string | undefined;
1074
+ };
1075
+ }>;
1076
+ min: z.ZodNumber;
1077
+ minLabel: z.ZodString;
1078
+ max: z.ZodNumber;
1079
+ maxLabel: z.ZodString;
1080
+ step: z.ZodNumber;
1081
+ default: z.ZodNumber;
1082
+ }, "strip", z.ZodTypeAny, {
1083
+ default: number;
1084
+ description: string;
1085
+ min: number;
1086
+ max: number;
1087
+ title: string;
1088
+ icons: {
1089
+ light: {
1090
+ png?: string | undefined;
1091
+ svg?: string | undefined;
1092
+ };
1093
+ dark: {
1094
+ png?: string | undefined;
1095
+ svg?: string | undefined;
1096
+ };
1097
+ };
1098
+ minLabel: string;
1099
+ maxLabel: string;
1100
+ step: number;
1101
+ }, {
1102
+ default: number;
1103
+ description: string;
1104
+ min: number;
1105
+ max: number;
1106
+ title: string;
1107
+ icons: {
1108
+ light: {
1109
+ png?: string | undefined;
1110
+ svg?: string | undefined;
1111
+ };
1112
+ dark: {
1113
+ png?: string | undefined;
1114
+ svg?: string | undefined;
1115
+ };
1116
+ };
1117
+ minLabel: string;
1118
+ maxLabel: string;
1119
+ step: number;
1120
+ }>>;
1121
+ }, "strip", z.ZodTypeAny, {
1122
+ speed?: {
1123
+ default: number;
1124
+ description: string;
1125
+ min: number;
1126
+ max: number;
1127
+ title: string;
1128
+ icons: {
1129
+ light: {
1130
+ png?: string | undefined;
1131
+ svg?: string | undefined;
1132
+ };
1133
+ dark: {
1134
+ png?: string | undefined;
1135
+ svg?: string | undefined;
1136
+ };
1137
+ };
1138
+ minLabel: string;
1139
+ maxLabel: string;
1140
+ step: number;
1141
+ } | undefined;
1142
+ stability?: {
1143
+ default: number;
1144
+ description: string;
1145
+ min: number;
1146
+ max: number;
1147
+ title: string;
1148
+ icons: {
1149
+ light: {
1150
+ png?: string | undefined;
1151
+ svg?: string | undefined;
1152
+ };
1153
+ dark: {
1154
+ png?: string | undefined;
1155
+ svg?: string | undefined;
1156
+ };
1157
+ };
1158
+ minLabel: string;
1159
+ maxLabel: string;
1160
+ step: number;
1161
+ } | undefined;
1162
+ similarity?: {
1163
+ default: number;
1164
+ description: string;
1165
+ min: number;
1166
+ max: number;
1167
+ title: string;
1168
+ icons: {
1169
+ light: {
1170
+ png?: string | undefined;
1171
+ svg?: string | undefined;
1172
+ };
1173
+ dark: {
1174
+ png?: string | undefined;
1175
+ svg?: string | undefined;
1176
+ };
1177
+ };
1178
+ minLabel: string;
1179
+ maxLabel: string;
1180
+ step: number;
1181
+ } | undefined;
1182
+ style?: {
1183
+ default: number;
1184
+ description: string;
1185
+ min: number;
1186
+ max: number;
1187
+ title: string;
1188
+ icons: {
1189
+ light: {
1190
+ png?: string | undefined;
1191
+ svg?: string | undefined;
1192
+ };
1193
+ dark: {
1194
+ png?: string | undefined;
1195
+ svg?: string | undefined;
1196
+ };
1197
+ };
1198
+ minLabel: string;
1199
+ maxLabel: string;
1200
+ step: number;
1201
+ } | undefined;
1202
+ }, {
1203
+ speed?: {
1204
+ default: number;
1205
+ description: string;
1206
+ min: number;
1207
+ max: number;
1208
+ title: string;
1209
+ icons: {
1210
+ light: {
1211
+ png?: string | undefined;
1212
+ svg?: string | undefined;
1213
+ };
1214
+ dark: {
1215
+ png?: string | undefined;
1216
+ svg?: string | undefined;
1217
+ };
1218
+ };
1219
+ minLabel: string;
1220
+ maxLabel: string;
1221
+ step: number;
1222
+ } | undefined;
1223
+ stability?: {
1224
+ default: number;
1225
+ description: string;
1226
+ min: number;
1227
+ max: number;
1228
+ title: string;
1229
+ icons: {
1230
+ light: {
1231
+ png?: string | undefined;
1232
+ svg?: string | undefined;
1233
+ };
1234
+ dark: {
1235
+ png?: string | undefined;
1236
+ svg?: string | undefined;
1237
+ };
1238
+ };
1239
+ minLabel: string;
1240
+ maxLabel: string;
1241
+ step: number;
1242
+ } | undefined;
1243
+ similarity?: {
1244
+ default: number;
1245
+ description: string;
1246
+ min: number;
1247
+ max: number;
1248
+ title: string;
1249
+ icons: {
1250
+ light: {
1251
+ png?: string | undefined;
1252
+ svg?: string | undefined;
1253
+ };
1254
+ dark: {
1255
+ png?: string | undefined;
1256
+ svg?: string | undefined;
1257
+ };
1258
+ };
1259
+ minLabel: string;
1260
+ maxLabel: string;
1261
+ step: number;
1262
+ } | undefined;
1263
+ style?: {
1264
+ default: number;
1265
+ description: string;
1266
+ min: number;
1267
+ max: number;
1268
+ title: string;
1269
+ icons: {
1270
+ light: {
1271
+ png?: string | undefined;
1272
+ svg?: string | undefined;
1273
+ };
1274
+ dark: {
1275
+ png?: string | undefined;
1276
+ svg?: string | undefined;
1277
+ };
1278
+ };
1279
+ minLabel: string;
1280
+ maxLabel: string;
1281
+ step: number;
1282
+ } | undefined;
1283
+ }>;
1284
+ createdAt: z.ZodDate;
1285
+ updatedAt: z.ZodDate;
1286
+ }, "strip", z.ZodTypeAny, {
1287
+ uuid: string;
1288
+ siteId: string;
1289
+ status: TOOL_MODEL_STATUS;
1290
+ params: {
1291
+ speed?: {
1292
+ default: number;
1293
+ description: string;
1294
+ min: number;
1295
+ max: number;
1296
+ title: string;
1297
+ icons: {
1298
+ light: {
1299
+ png?: string | undefined;
1300
+ svg?: string | undefined;
1301
+ };
1302
+ dark: {
1303
+ png?: string | undefined;
1304
+ svg?: string | undefined;
1305
+ };
1306
+ };
1307
+ minLabel: string;
1308
+ maxLabel: string;
1309
+ step: number;
1310
+ } | undefined;
1311
+ stability?: {
1312
+ default: number;
1313
+ description: string;
1314
+ min: number;
1315
+ max: number;
1316
+ title: string;
1317
+ icons: {
1318
+ light: {
1319
+ png?: string | undefined;
1320
+ svg?: string | undefined;
1321
+ };
1322
+ dark: {
1323
+ png?: string | undefined;
1324
+ svg?: string | undefined;
1325
+ };
1326
+ };
1327
+ minLabel: string;
1328
+ maxLabel: string;
1329
+ step: number;
1330
+ } | undefined;
1331
+ similarity?: {
1332
+ default: number;
1333
+ description: string;
1334
+ min: number;
1335
+ max: number;
1336
+ title: string;
1337
+ icons: {
1338
+ light: {
1339
+ png?: string | undefined;
1340
+ svg?: string | undefined;
1341
+ };
1342
+ dark: {
1343
+ png?: string | undefined;
1344
+ svg?: string | undefined;
1345
+ };
1346
+ };
1347
+ minLabel: string;
1348
+ maxLabel: string;
1349
+ step: number;
1350
+ } | undefined;
1351
+ style?: {
1352
+ default: number;
1353
+ description: string;
1354
+ min: number;
1355
+ max: number;
1356
+ title: string;
1357
+ icons: {
1358
+ light: {
1359
+ png?: string | undefined;
1360
+ svg?: string | undefined;
1361
+ };
1362
+ dark: {
1363
+ png?: string | undefined;
1364
+ svg?: string | undefined;
1365
+ };
1366
+ };
1367
+ minLabel: string;
1368
+ maxLabel: string;
1369
+ step: number;
1370
+ } | undefined;
1371
+ };
1372
+ description: string;
1373
+ title: string;
1374
+ strategy: string;
1375
+ order: number;
1376
+ createdAt: Date;
1377
+ updatedAt: Date;
1378
+ aiModel: string;
1379
+ icons: {
1380
+ light: {
1381
+ png?: string | undefined;
1382
+ svg?: string | undefined;
1383
+ };
1384
+ dark: {
1385
+ png?: string | undefined;
1386
+ svg?: string | undefined;
1387
+ };
1388
+ };
1389
+ maxInputLength: number;
1390
+ pricePerSymbol: number;
1391
+ voices: {
1392
+ description: string;
1393
+ title: string;
1394
+ order: number;
1395
+ externalId: string;
1396
+ id: string;
1397
+ icon: string;
1398
+ previewUrl: string;
1399
+ languages: {
1400
+ code: string;
1401
+ title: string;
1402
+ order: number;
1403
+ icon: string;
1404
+ }[];
1405
+ }[];
1406
+ canUse?: boolean | undefined;
1407
+ }, {
1408
+ uuid: string;
1409
+ siteId: string;
1410
+ status: TOOL_MODEL_STATUS;
1411
+ params: {
1412
+ speed?: {
1413
+ default: number;
1414
+ description: string;
1415
+ min: number;
1416
+ max: number;
1417
+ title: string;
1418
+ icons: {
1419
+ light: {
1420
+ png?: string | undefined;
1421
+ svg?: string | undefined;
1422
+ };
1423
+ dark: {
1424
+ png?: string | undefined;
1425
+ svg?: string | undefined;
1426
+ };
1427
+ };
1428
+ minLabel: string;
1429
+ maxLabel: string;
1430
+ step: number;
1431
+ } | undefined;
1432
+ stability?: {
1433
+ default: number;
1434
+ description: string;
1435
+ min: number;
1436
+ max: number;
1437
+ title: string;
1438
+ icons: {
1439
+ light: {
1440
+ png?: string | undefined;
1441
+ svg?: string | undefined;
1442
+ };
1443
+ dark: {
1444
+ png?: string | undefined;
1445
+ svg?: string | undefined;
1446
+ };
1447
+ };
1448
+ minLabel: string;
1449
+ maxLabel: string;
1450
+ step: number;
1451
+ } | undefined;
1452
+ similarity?: {
1453
+ default: number;
1454
+ description: string;
1455
+ min: number;
1456
+ max: number;
1457
+ title: string;
1458
+ icons: {
1459
+ light: {
1460
+ png?: string | undefined;
1461
+ svg?: string | undefined;
1462
+ };
1463
+ dark: {
1464
+ png?: string | undefined;
1465
+ svg?: string | undefined;
1466
+ };
1467
+ };
1468
+ minLabel: string;
1469
+ maxLabel: string;
1470
+ step: number;
1471
+ } | undefined;
1472
+ style?: {
1473
+ default: number;
1474
+ description: string;
1475
+ min: number;
1476
+ max: number;
1477
+ title: string;
1478
+ icons: {
1479
+ light: {
1480
+ png?: string | undefined;
1481
+ svg?: string | undefined;
1482
+ };
1483
+ dark: {
1484
+ png?: string | undefined;
1485
+ svg?: string | undefined;
1486
+ };
1487
+ };
1488
+ minLabel: string;
1489
+ maxLabel: string;
1490
+ step: number;
1491
+ } | undefined;
1492
+ };
1493
+ description: string;
1494
+ title: string;
1495
+ strategy: string;
1496
+ order: number;
1497
+ createdAt: Date;
1498
+ updatedAt: Date;
1499
+ aiModel: string;
1500
+ icons: {
1501
+ light: {
1502
+ png?: string | undefined;
1503
+ svg?: string | undefined;
1504
+ };
1505
+ dark: {
1506
+ png?: string | undefined;
1507
+ svg?: string | undefined;
1508
+ };
1509
+ };
1510
+ maxInputLength: number;
1511
+ pricePerSymbol: number;
1512
+ voices: {
1513
+ description: string;
1514
+ title: string;
1515
+ order: number;
1516
+ externalId: string;
1517
+ id: string;
1518
+ icon: string;
1519
+ previewUrl: string;
1520
+ languages: {
1521
+ code: string;
1522
+ title: string;
1523
+ order: number;
1524
+ icon: string;
1525
+ }[];
1526
+ }[];
1527
+ canUse?: boolean | undefined;
1528
+ }>;
1529
+ export type TTSModel = z.infer<typeof TTSModelSchema>;
1530
+ //# sourceMappingURL=tts-model.schema.d.ts.map