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