@8wave/ai-elements 0.110.0-beta.1 → 0.110.0-beta.4

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 (44) hide show
  1. package/dist/ai-elements.es.js +678 -674
  2. package/dist/ai-elements.es.js.map +1 -1
  3. package/dist-vue/PkChatbot.js +1 -1
  4. package/dist-vue/PkChatbotMessages.js +1 -1
  5. package/dist-vue/PkChatbotViewChat.js +1 -1
  6. package/dist-vue/PkChatbotViewConversations.js +1 -1
  7. package/dist-vue/PkChatbotViewFiles.js +1 -1
  8. package/dist-vue/PkChatbotViewProfile.js +1 -1
  9. package/dist-vue/_chunks/{PkChatbot-CDciy1W-.js → PkChatbot-o7k7d-fj.js} +6 -6
  10. package/dist-vue/_chunks/{PkChatbot-CDciy1W-.js.map → PkChatbot-o7k7d-fj.js.map} +1 -1
  11. package/dist-vue/_chunks/{PkChatbotMessages-5dW-ElPy.js → PkChatbotMessages-BFlU046I.js} +3 -3
  12. package/dist-vue/_chunks/{PkChatbotMessages-5dW-ElPy.js.map → PkChatbotMessages-BFlU046I.js.map} +1 -1
  13. package/dist-vue/_chunks/PkChatbotStepPayload-BH6piqOi.js.map +1 -1
  14. package/dist-vue/_chunks/PkChatbotStepToolDetail-BJ7xUvgi.js.map +1 -1
  15. package/dist-vue/_chunks/PkChatbotSteps-DtV1beDc.js.map +1 -1
  16. package/dist-vue/_chunks/{PkChatbotViewChat-C9PQWz8z.js → PkChatbotViewChat-CNH_glPI.js} +4 -4
  17. package/dist-vue/_chunks/{PkChatbotViewChat-C9PQWz8z.js.map → PkChatbotViewChat-CNH_glPI.js.map} +1 -1
  18. package/dist-vue/_chunks/{PkChatbotViewConversations-Duc-I3pp.js → PkChatbotViewConversations-BENvHLZt.js} +2 -2
  19. package/dist-vue/_chunks/{PkChatbotViewConversations-Duc-I3pp.js.map → PkChatbotViewConversations-BENvHLZt.js.map} +1 -1
  20. package/dist-vue/_chunks/{PkChatbotViewFiles-B7KaE7rU.js → PkChatbotViewFiles-qmLESi1V.js} +2 -2
  21. package/dist-vue/_chunks/{PkChatbotViewFiles-B7KaE7rU.js.map → PkChatbotViewFiles-qmLESi1V.js.map} +1 -1
  22. package/dist-vue/_chunks/{PkChatbotViewProfile-tKK5Yazl.js → PkChatbotViewProfile-DzfZnitQ.js} +2 -2
  23. package/dist-vue/_chunks/{PkChatbotViewProfile-tKK5Yazl.js.map → PkChatbotViewProfile-DzfZnitQ.js.map} +1 -1
  24. package/dist-vue/_chunks/{PkToolShowDiagram-CNBaJZlp.js → PkToolShowDiagram-DuDp5EHd.js} +2 -2
  25. package/dist-vue/_chunks/{PkToolShowDiagram-CNBaJZlp.js.map → PkToolShowDiagram-DuDp5EHd.js.map} +1 -1
  26. package/dist-vue/_chunks/{useChatbotStore-DufJlucU.js → useChatbotStore-CiRAuq7v.js} +82 -78
  27. package/dist-vue/_chunks/useChatbotStore-CiRAuq7v.js.map +1 -0
  28. package/dist-vue/apps/web-component/src/composables/useChatbotAgent.d.ts +14 -14
  29. package/dist-vue/composables.js +1 -1
  30. package/dist-vue/index.js +9 -9
  31. package/dist-vue/index.js.map +1 -1
  32. package/dist-vue/packages/components/src/PkEditorMedia.d.ts +42 -42
  33. package/dist-vue/packages/components/src/chat/PkAgentSettingsPanel.d.ts +14 -14
  34. package/dist-vue/packages/composable/src/chatbot/useChatbotStore.d.ts +42 -42
  35. package/dist-vue/packages/models/src/schema/Agent.d.ts +112 -112
  36. package/dist-vue/packages/models/src/schema/Document.d.ts +126 -126
  37. package/dist-vue/packages/models/src/schema/Member.d.ts +14 -14
  38. package/dist-vue/packages/models/src/schema/Organization.d.ts +28 -28
  39. package/dist-vue/packages/models/src/schema/ReasoningChat.d.ts +28 -28
  40. package/dist-vue/packages/models/src/schema/SubAgent.d.ts +28 -28
  41. package/dist-vue/packages/models/src/schema/User.d.ts +42 -42
  42. package/dist-vue/style.css +1 -1
  43. package/package.json +2 -2
  44. package/dist-vue/_chunks/useChatbotStore-DufJlucU.js.map +0 -1
@@ -54,47 +54,47 @@ export declare const OrganizationSchema: z.ZodObject<{
54
54
  storedFileName: z.ZodString;
55
55
  }, z.core.$strip>>>;
56
56
  rawOptions: z.ZodOptional<z.ZodCustom<{
57
- type: import("./Media").MediaType.picture;
57
+ type: import('./Media').MediaType.picture;
58
58
  width: number;
59
59
  height: number;
60
60
  blurhash?: string | undefined;
61
61
  } | {
62
- type: import("./Media").MediaType.video;
62
+ type: import('./Media').MediaType.video;
63
63
  width: number;
64
64
  height: number;
65
65
  duration: number;
66
66
  } | {
67
- type: import("./Media").MediaType.audio;
67
+ type: import('./Media').MediaType.audio;
68
68
  duration: number;
69
69
  } | {
70
- type: import("./Media").MediaType.office;
70
+ type: import('./Media').MediaType.office;
71
71
  } | {
72
- type: import("./Media").MediaType.archive;
72
+ type: import('./Media').MediaType.archive;
73
73
  } | {
74
- type: import("./Media").MediaType.binary;
74
+ type: import('./Media').MediaType.binary;
75
75
  } | {
76
- type: import("./Media").MediaType.executable;
76
+ type: import('./Media').MediaType.executable;
77
77
  }, {
78
- type: import("./Media").MediaType.picture;
78
+ type: import('./Media').MediaType.picture;
79
79
  width: number;
80
80
  height: number;
81
81
  blurhash?: string | undefined;
82
82
  } | {
83
- type: import("./Media").MediaType.video;
83
+ type: import('./Media').MediaType.video;
84
84
  width: number;
85
85
  height: number;
86
86
  duration: number;
87
87
  } | {
88
- type: import("./Media").MediaType.audio;
88
+ type: import('./Media').MediaType.audio;
89
89
  duration: number;
90
90
  } | {
91
- type: import("./Media").MediaType.office;
91
+ type: import('./Media').MediaType.office;
92
92
  } | {
93
- type: import("./Media").MediaType.archive;
93
+ type: import('./Media').MediaType.archive;
94
94
  } | {
95
- type: import("./Media").MediaType.binary;
95
+ type: import('./Media').MediaType.binary;
96
96
  } | {
97
- type: import("./Media").MediaType.executable;
97
+ type: import('./Media').MediaType.executable;
98
98
  }>>;
99
99
  }, z.core.$strip>>>;
100
100
  createdAt: z.ZodCoercedDate<unknown>;
@@ -161,47 +161,47 @@ export declare const OrganizationDtoSchema: z.ZodObject<{
161
161
  storedFileName: z.ZodString;
162
162
  }, z.core.$strip>>>;
163
163
  rawOptions: z.ZodOptional<z.ZodCustom<{
164
- type: import("./Media").MediaType.picture;
164
+ type: import('./Media').MediaType.picture;
165
165
  width: number;
166
166
  height: number;
167
167
  blurhash?: string | undefined;
168
168
  } | {
169
- type: import("./Media").MediaType.video;
169
+ type: import('./Media').MediaType.video;
170
170
  width: number;
171
171
  height: number;
172
172
  duration: number;
173
173
  } | {
174
- type: import("./Media").MediaType.audio;
174
+ type: import('./Media').MediaType.audio;
175
175
  duration: number;
176
176
  } | {
177
- type: import("./Media").MediaType.office;
177
+ type: import('./Media').MediaType.office;
178
178
  } | {
179
- type: import("./Media").MediaType.archive;
179
+ type: import('./Media').MediaType.archive;
180
180
  } | {
181
- type: import("./Media").MediaType.binary;
181
+ type: import('./Media').MediaType.binary;
182
182
  } | {
183
- type: import("./Media").MediaType.executable;
183
+ type: import('./Media').MediaType.executable;
184
184
  }, {
185
- type: import("./Media").MediaType.picture;
185
+ type: import('./Media').MediaType.picture;
186
186
  width: number;
187
187
  height: number;
188
188
  blurhash?: string | undefined;
189
189
  } | {
190
- type: import("./Media").MediaType.video;
190
+ type: import('./Media').MediaType.video;
191
191
  width: number;
192
192
  height: number;
193
193
  duration: number;
194
194
  } | {
195
- type: import("./Media").MediaType.audio;
195
+ type: import('./Media').MediaType.audio;
196
196
  duration: number;
197
197
  } | {
198
- type: import("./Media").MediaType.office;
198
+ type: import('./Media').MediaType.office;
199
199
  } | {
200
- type: import("./Media").MediaType.archive;
200
+ type: import('./Media').MediaType.archive;
201
201
  } | {
202
- type: import("./Media").MediaType.binary;
202
+ type: import('./Media').MediaType.binary;
203
203
  } | {
204
- type: import("./Media").MediaType.executable;
204
+ type: import('./Media').MediaType.executable;
205
205
  }>>;
206
206
  }, z.core.$strip>>>;
207
207
  metadata: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -205,47 +205,47 @@ export declare const ReasoningChatSchema: z.ZodObject<{
205
205
  storedFileName: z.ZodString;
206
206
  }, z.core.$strip>>>;
207
207
  rawOptions: z.ZodOptional<z.ZodCustom<{
208
- type: import("./Media").MediaType.picture;
208
+ type: import('./Media').MediaType.picture;
209
209
  width: number;
210
210
  height: number;
211
211
  blurhash?: string | undefined;
212
212
  } | {
213
- type: import("./Media").MediaType.video;
213
+ type: import('./Media').MediaType.video;
214
214
  width: number;
215
215
  height: number;
216
216
  duration: number;
217
217
  } | {
218
- type: import("./Media").MediaType.audio;
218
+ type: import('./Media').MediaType.audio;
219
219
  duration: number;
220
220
  } | {
221
- type: import("./Media").MediaType.office;
221
+ type: import('./Media').MediaType.office;
222
222
  } | {
223
- type: import("./Media").MediaType.archive;
223
+ type: import('./Media').MediaType.archive;
224
224
  } | {
225
- type: import("./Media").MediaType.binary;
225
+ type: import('./Media').MediaType.binary;
226
226
  } | {
227
- type: import("./Media").MediaType.executable;
227
+ type: import('./Media').MediaType.executable;
228
228
  }, {
229
- type: import("./Media").MediaType.picture;
229
+ type: import('./Media').MediaType.picture;
230
230
  width: number;
231
231
  height: number;
232
232
  blurhash?: string | undefined;
233
233
  } | {
234
- type: import("./Media").MediaType.video;
234
+ type: import('./Media').MediaType.video;
235
235
  width: number;
236
236
  height: number;
237
237
  duration: number;
238
238
  } | {
239
- type: import("./Media").MediaType.audio;
239
+ type: import('./Media').MediaType.audio;
240
240
  duration: number;
241
241
  } | {
242
- type: import("./Media").MediaType.office;
242
+ type: import('./Media').MediaType.office;
243
243
  } | {
244
- type: import("./Media").MediaType.archive;
244
+ type: import('./Media').MediaType.archive;
245
245
  } | {
246
- type: import("./Media").MediaType.binary;
246
+ type: import('./Media').MediaType.binary;
247
247
  } | {
248
- type: import("./Media").MediaType.executable;
248
+ type: import('./Media').MediaType.executable;
249
249
  }>>;
250
250
  }, z.core.$strip>>;
251
251
  logo: z.ZodOptional<z.ZodString>;
@@ -639,47 +639,47 @@ export declare const ReasoningChatSchema: z.ZodObject<{
639
639
  storedFileName: z.ZodString;
640
640
  }, z.core.$strip>>>;
641
641
  rawOptions: z.ZodOptional<z.ZodCustom<{
642
- type: import("./Media").MediaType.picture;
642
+ type: import('./Media').MediaType.picture;
643
643
  width: number;
644
644
  height: number;
645
645
  blurhash?: string | undefined;
646
646
  } | {
647
- type: import("./Media").MediaType.video;
647
+ type: import('./Media').MediaType.video;
648
648
  width: number;
649
649
  height: number;
650
650
  duration: number;
651
651
  } | {
652
- type: import("./Media").MediaType.audio;
652
+ type: import('./Media').MediaType.audio;
653
653
  duration: number;
654
654
  } | {
655
- type: import("./Media").MediaType.office;
655
+ type: import('./Media').MediaType.office;
656
656
  } | {
657
- type: import("./Media").MediaType.archive;
657
+ type: import('./Media').MediaType.archive;
658
658
  } | {
659
- type: import("./Media").MediaType.binary;
659
+ type: import('./Media').MediaType.binary;
660
660
  } | {
661
- type: import("./Media").MediaType.executable;
661
+ type: import('./Media').MediaType.executable;
662
662
  }, {
663
- type: import("./Media").MediaType.picture;
663
+ type: import('./Media').MediaType.picture;
664
664
  width: number;
665
665
  height: number;
666
666
  blurhash?: string | undefined;
667
667
  } | {
668
- type: import("./Media").MediaType.video;
668
+ type: import('./Media').MediaType.video;
669
669
  width: number;
670
670
  height: number;
671
671
  duration: number;
672
672
  } | {
673
- type: import("./Media").MediaType.audio;
673
+ type: import('./Media').MediaType.audio;
674
674
  duration: number;
675
675
  } | {
676
- type: import("./Media").MediaType.office;
676
+ type: import('./Media').MediaType.office;
677
677
  } | {
678
- type: import("./Media").MediaType.archive;
678
+ type: import('./Media').MediaType.archive;
679
679
  } | {
680
- type: import("./Media").MediaType.binary;
680
+ type: import('./Media').MediaType.binary;
681
681
  } | {
682
- type: import("./Media").MediaType.executable;
682
+ type: import('./Media').MediaType.executable;
683
683
  }>>;
684
684
  }, z.core.$strip>>;
685
685
  logo: z.ZodOptional<z.ZodString>;
@@ -205,47 +205,47 @@ export declare const SubAgentSchema: z.ZodObject<{
205
205
  storedFileName: z.ZodString;
206
206
  }, z.core.$strip>>>;
207
207
  rawOptions: z.ZodOptional<z.ZodCustom<{
208
- type: import("./Media").MediaType.picture;
208
+ type: import('./Media').MediaType.picture;
209
209
  width: number;
210
210
  height: number;
211
211
  blurhash?: string | undefined;
212
212
  } | {
213
- type: import("./Media").MediaType.video;
213
+ type: import('./Media').MediaType.video;
214
214
  width: number;
215
215
  height: number;
216
216
  duration: number;
217
217
  } | {
218
- type: import("./Media").MediaType.audio;
218
+ type: import('./Media').MediaType.audio;
219
219
  duration: number;
220
220
  } | {
221
- type: import("./Media").MediaType.office;
221
+ type: import('./Media').MediaType.office;
222
222
  } | {
223
- type: import("./Media").MediaType.archive;
223
+ type: import('./Media').MediaType.archive;
224
224
  } | {
225
- type: import("./Media").MediaType.binary;
225
+ type: import('./Media').MediaType.binary;
226
226
  } | {
227
- type: import("./Media").MediaType.executable;
227
+ type: import('./Media').MediaType.executable;
228
228
  }, {
229
- type: import("./Media").MediaType.picture;
229
+ type: import('./Media').MediaType.picture;
230
230
  width: number;
231
231
  height: number;
232
232
  blurhash?: string | undefined;
233
233
  } | {
234
- type: import("./Media").MediaType.video;
234
+ type: import('./Media').MediaType.video;
235
235
  width: number;
236
236
  height: number;
237
237
  duration: number;
238
238
  } | {
239
- type: import("./Media").MediaType.audio;
239
+ type: import('./Media').MediaType.audio;
240
240
  duration: number;
241
241
  } | {
242
- type: import("./Media").MediaType.office;
242
+ type: import('./Media').MediaType.office;
243
243
  } | {
244
- type: import("./Media").MediaType.archive;
244
+ type: import('./Media').MediaType.archive;
245
245
  } | {
246
- type: import("./Media").MediaType.binary;
246
+ type: import('./Media').MediaType.binary;
247
247
  } | {
248
- type: import("./Media").MediaType.executable;
248
+ type: import('./Media').MediaType.executable;
249
249
  }>>;
250
250
  }, z.core.$strip>>;
251
251
  logo: z.ZodOptional<z.ZodString>;
@@ -597,47 +597,47 @@ export declare const SubAgentSchema: z.ZodObject<{
597
597
  storedFileName: z.ZodString;
598
598
  }, z.core.$strip>>>;
599
599
  rawOptions: z.ZodOptional<z.ZodCustom<{
600
- type: import("./Media").MediaType.picture;
600
+ type: import('./Media').MediaType.picture;
601
601
  width: number;
602
602
  height: number;
603
603
  blurhash?: string | undefined;
604
604
  } | {
605
- type: import("./Media").MediaType.video;
605
+ type: import('./Media').MediaType.video;
606
606
  width: number;
607
607
  height: number;
608
608
  duration: number;
609
609
  } | {
610
- type: import("./Media").MediaType.audio;
610
+ type: import('./Media').MediaType.audio;
611
611
  duration: number;
612
612
  } | {
613
- type: import("./Media").MediaType.office;
613
+ type: import('./Media').MediaType.office;
614
614
  } | {
615
- type: import("./Media").MediaType.archive;
615
+ type: import('./Media').MediaType.archive;
616
616
  } | {
617
- type: import("./Media").MediaType.binary;
617
+ type: import('./Media').MediaType.binary;
618
618
  } | {
619
- type: import("./Media").MediaType.executable;
619
+ type: import('./Media').MediaType.executable;
620
620
  }, {
621
- type: import("./Media").MediaType.picture;
621
+ type: import('./Media').MediaType.picture;
622
622
  width: number;
623
623
  height: number;
624
624
  blurhash?: string | undefined;
625
625
  } | {
626
- type: import("./Media").MediaType.video;
626
+ type: import('./Media').MediaType.video;
627
627
  width: number;
628
628
  height: number;
629
629
  duration: number;
630
630
  } | {
631
- type: import("./Media").MediaType.audio;
631
+ type: import('./Media').MediaType.audio;
632
632
  duration: number;
633
633
  } | {
634
- type: import("./Media").MediaType.office;
634
+ type: import('./Media').MediaType.office;
635
635
  } | {
636
- type: import("./Media").MediaType.archive;
636
+ type: import('./Media').MediaType.archive;
637
637
  } | {
638
- type: import("./Media").MediaType.binary;
638
+ type: import('./Media').MediaType.binary;
639
639
  } | {
640
- type: import("./Media").MediaType.executable;
640
+ type: import('./Media').MediaType.executable;
641
641
  }>>;
642
642
  }, z.core.$strip>>;
643
643
  logo: z.ZodOptional<z.ZodString>;
@@ -55,47 +55,47 @@ export declare const UserSchema: z.ZodObject<{
55
55
  storedFileName: z.ZodString;
56
56
  }, z.core.$strip>>>;
57
57
  rawOptions: z.ZodOptional<z.ZodCustom<{
58
- type: import("./Media").MediaType.picture;
58
+ type: import('./Media').MediaType.picture;
59
59
  width: number;
60
60
  height: number;
61
61
  blurhash?: string | undefined;
62
62
  } | {
63
- type: import("./Media").MediaType.video;
63
+ type: import('./Media').MediaType.video;
64
64
  width: number;
65
65
  height: number;
66
66
  duration: number;
67
67
  } | {
68
- type: import("./Media").MediaType.audio;
68
+ type: import('./Media').MediaType.audio;
69
69
  duration: number;
70
70
  } | {
71
- type: import("./Media").MediaType.office;
71
+ type: import('./Media').MediaType.office;
72
72
  } | {
73
- type: import("./Media").MediaType.archive;
73
+ type: import('./Media').MediaType.archive;
74
74
  } | {
75
- type: import("./Media").MediaType.binary;
75
+ type: import('./Media').MediaType.binary;
76
76
  } | {
77
- type: import("./Media").MediaType.executable;
77
+ type: import('./Media').MediaType.executable;
78
78
  }, {
79
- type: import("./Media").MediaType.picture;
79
+ type: import('./Media').MediaType.picture;
80
80
  width: number;
81
81
  height: number;
82
82
  blurhash?: string | undefined;
83
83
  } | {
84
- type: import("./Media").MediaType.video;
84
+ type: import('./Media').MediaType.video;
85
85
  width: number;
86
86
  height: number;
87
87
  duration: number;
88
88
  } | {
89
- type: import("./Media").MediaType.audio;
89
+ type: import('./Media').MediaType.audio;
90
90
  duration: number;
91
91
  } | {
92
- type: import("./Media").MediaType.office;
92
+ type: import('./Media').MediaType.office;
93
93
  } | {
94
- type: import("./Media").MediaType.archive;
94
+ type: import('./Media').MediaType.archive;
95
95
  } | {
96
- type: import("./Media").MediaType.binary;
96
+ type: import('./Media').MediaType.binary;
97
97
  } | {
98
- type: import("./Media").MediaType.executable;
98
+ type: import('./Media').MediaType.executable;
99
99
  }>>;
100
100
  }, z.core.$strip>>>;
101
101
  createdAt: z.ZodCoercedDate<unknown>;
@@ -189,47 +189,47 @@ export declare const UserCreateSchema: z.ZodObject<{
189
189
  storedFileName: z.ZodString;
190
190
  }, z.core.$strip>>>;
191
191
  rawOptions: z.ZodOptional<z.ZodCustom<{
192
- type: import("./Media").MediaType.picture;
192
+ type: import('./Media').MediaType.picture;
193
193
  width: number;
194
194
  height: number;
195
195
  blurhash?: string | undefined;
196
196
  } | {
197
- type: import("./Media").MediaType.video;
197
+ type: import('./Media').MediaType.video;
198
198
  width: number;
199
199
  height: number;
200
200
  duration: number;
201
201
  } | {
202
- type: import("./Media").MediaType.audio;
202
+ type: import('./Media').MediaType.audio;
203
203
  duration: number;
204
204
  } | {
205
- type: import("./Media").MediaType.office;
205
+ type: import('./Media').MediaType.office;
206
206
  } | {
207
- type: import("./Media").MediaType.archive;
207
+ type: import('./Media').MediaType.archive;
208
208
  } | {
209
- type: import("./Media").MediaType.binary;
209
+ type: import('./Media').MediaType.binary;
210
210
  } | {
211
- type: import("./Media").MediaType.executable;
211
+ type: import('./Media').MediaType.executable;
212
212
  }, {
213
- type: import("./Media").MediaType.picture;
213
+ type: import('./Media').MediaType.picture;
214
214
  width: number;
215
215
  height: number;
216
216
  blurhash?: string | undefined;
217
217
  } | {
218
- type: import("./Media").MediaType.video;
218
+ type: import('./Media').MediaType.video;
219
219
  width: number;
220
220
  height: number;
221
221
  duration: number;
222
222
  } | {
223
- type: import("./Media").MediaType.audio;
223
+ type: import('./Media').MediaType.audio;
224
224
  duration: number;
225
225
  } | {
226
- type: import("./Media").MediaType.office;
226
+ type: import('./Media').MediaType.office;
227
227
  } | {
228
- type: import("./Media").MediaType.archive;
228
+ type: import('./Media').MediaType.archive;
229
229
  } | {
230
- type: import("./Media").MediaType.binary;
230
+ type: import('./Media').MediaType.binary;
231
231
  } | {
232
- type: import("./Media").MediaType.executable;
232
+ type: import('./Media').MediaType.executable;
233
233
  }>>;
234
234
  }, z.core.$strip>>;
235
235
  role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
@@ -297,47 +297,47 @@ export declare const UserUpdateSchema: z.ZodObject<{
297
297
  storedFileName: z.ZodString;
298
298
  }, z.core.$strip>>>;
299
299
  rawOptions: z.ZodOptional<z.ZodCustom<{
300
- type: import("./Media").MediaType.picture;
300
+ type: import('./Media').MediaType.picture;
301
301
  width: number;
302
302
  height: number;
303
303
  blurhash?: string | undefined;
304
304
  } | {
305
- type: import("./Media").MediaType.video;
305
+ type: import('./Media').MediaType.video;
306
306
  width: number;
307
307
  height: number;
308
308
  duration: number;
309
309
  } | {
310
- type: import("./Media").MediaType.audio;
310
+ type: import('./Media').MediaType.audio;
311
311
  duration: number;
312
312
  } | {
313
- type: import("./Media").MediaType.office;
313
+ type: import('./Media').MediaType.office;
314
314
  } | {
315
- type: import("./Media").MediaType.archive;
315
+ type: import('./Media').MediaType.archive;
316
316
  } | {
317
- type: import("./Media").MediaType.binary;
317
+ type: import('./Media').MediaType.binary;
318
318
  } | {
319
- type: import("./Media").MediaType.executable;
319
+ type: import('./Media').MediaType.executable;
320
320
  }, {
321
- type: import("./Media").MediaType.picture;
321
+ type: import('./Media').MediaType.picture;
322
322
  width: number;
323
323
  height: number;
324
324
  blurhash?: string | undefined;
325
325
  } | {
326
- type: import("./Media").MediaType.video;
326
+ type: import('./Media').MediaType.video;
327
327
  width: number;
328
328
  height: number;
329
329
  duration: number;
330
330
  } | {
331
- type: import("./Media").MediaType.audio;
331
+ type: import('./Media').MediaType.audio;
332
332
  duration: number;
333
333
  } | {
334
- type: import("./Media").MediaType.office;
334
+ type: import('./Media').MediaType.office;
335
335
  } | {
336
- type: import("./Media").MediaType.archive;
336
+ type: import('./Media').MediaType.archive;
337
337
  } | {
338
- type: import("./Media").MediaType.binary;
338
+ type: import('./Media').MediaType.binary;
339
339
  } | {
340
- type: import("./Media").MediaType.executable;
340
+ type: import('./Media').MediaType.executable;
341
341
  }>>;
342
342
  }, z.core.$strip>>>;
343
343
  banned: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;