@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
|
@@ -217,47 +217,47 @@ export declare const DocumentSourceSchema: z.ZodPreprocess<z.ZodDiscriminatedUni
|
|
|
217
217
|
storedFileName: z.ZodString;
|
|
218
218
|
}, z.core.$strip>>>;
|
|
219
219
|
rawOptions: z.ZodOptional<z.ZodCustom<{
|
|
220
|
-
type: import(
|
|
220
|
+
type: import('./Media').MediaType.picture;
|
|
221
221
|
width: number;
|
|
222
222
|
height: number;
|
|
223
223
|
blurhash?: string | undefined;
|
|
224
224
|
} | {
|
|
225
|
-
type: import(
|
|
225
|
+
type: import('./Media').MediaType.video;
|
|
226
226
|
width: number;
|
|
227
227
|
height: number;
|
|
228
228
|
duration: number;
|
|
229
229
|
} | {
|
|
230
|
-
type: import(
|
|
230
|
+
type: import('./Media').MediaType.audio;
|
|
231
231
|
duration: number;
|
|
232
232
|
} | {
|
|
233
|
-
type: import(
|
|
233
|
+
type: import('./Media').MediaType.office;
|
|
234
234
|
} | {
|
|
235
|
-
type: import(
|
|
235
|
+
type: import('./Media').MediaType.archive;
|
|
236
236
|
} | {
|
|
237
|
-
type: import(
|
|
237
|
+
type: import('./Media').MediaType.binary;
|
|
238
238
|
} | {
|
|
239
|
-
type: import(
|
|
239
|
+
type: import('./Media').MediaType.executable;
|
|
240
240
|
}, {
|
|
241
|
-
type: import(
|
|
241
|
+
type: import('./Media').MediaType.picture;
|
|
242
242
|
width: number;
|
|
243
243
|
height: number;
|
|
244
244
|
blurhash?: string | undefined;
|
|
245
245
|
} | {
|
|
246
|
-
type: import(
|
|
246
|
+
type: import('./Media').MediaType.video;
|
|
247
247
|
width: number;
|
|
248
248
|
height: number;
|
|
249
249
|
duration: number;
|
|
250
250
|
} | {
|
|
251
|
-
type: import(
|
|
251
|
+
type: import('./Media').MediaType.audio;
|
|
252
252
|
duration: number;
|
|
253
253
|
} | {
|
|
254
|
-
type: import(
|
|
254
|
+
type: import('./Media').MediaType.office;
|
|
255
255
|
} | {
|
|
256
|
-
type: import(
|
|
256
|
+
type: import('./Media').MediaType.archive;
|
|
257
257
|
} | {
|
|
258
|
-
type: import(
|
|
258
|
+
type: import('./Media').MediaType.binary;
|
|
259
259
|
} | {
|
|
260
|
-
type: import(
|
|
260
|
+
type: import('./Media').MediaType.executable;
|
|
261
261
|
}>>;
|
|
262
262
|
}, z.core.$strip>;
|
|
263
263
|
fingerprint: z.ZodString;
|
|
@@ -335,47 +335,47 @@ export declare const DocumentSourceSchema: z.ZodPreprocess<z.ZodDiscriminatedUni
|
|
|
335
335
|
storedFileName: z.ZodString;
|
|
336
336
|
}, z.core.$strip>>>;
|
|
337
337
|
rawOptions: z.ZodOptional<z.ZodCustom<{
|
|
338
|
-
type: import(
|
|
338
|
+
type: import('./Media').MediaType.picture;
|
|
339
339
|
width: number;
|
|
340
340
|
height: number;
|
|
341
341
|
blurhash?: string | undefined;
|
|
342
342
|
} | {
|
|
343
|
-
type: import(
|
|
343
|
+
type: import('./Media').MediaType.video;
|
|
344
344
|
width: number;
|
|
345
345
|
height: number;
|
|
346
346
|
duration: number;
|
|
347
347
|
} | {
|
|
348
|
-
type: import(
|
|
348
|
+
type: import('./Media').MediaType.audio;
|
|
349
349
|
duration: number;
|
|
350
350
|
} | {
|
|
351
|
-
type: import(
|
|
351
|
+
type: import('./Media').MediaType.office;
|
|
352
352
|
} | {
|
|
353
|
-
type: import(
|
|
353
|
+
type: import('./Media').MediaType.archive;
|
|
354
354
|
} | {
|
|
355
|
-
type: import(
|
|
355
|
+
type: import('./Media').MediaType.binary;
|
|
356
356
|
} | {
|
|
357
|
-
type: import(
|
|
357
|
+
type: import('./Media').MediaType.executable;
|
|
358
358
|
}, {
|
|
359
|
-
type: import(
|
|
359
|
+
type: import('./Media').MediaType.picture;
|
|
360
360
|
width: number;
|
|
361
361
|
height: number;
|
|
362
362
|
blurhash?: string | undefined;
|
|
363
363
|
} | {
|
|
364
|
-
type: import(
|
|
364
|
+
type: import('./Media').MediaType.video;
|
|
365
365
|
width: number;
|
|
366
366
|
height: number;
|
|
367
367
|
duration: number;
|
|
368
368
|
} | {
|
|
369
|
-
type: import(
|
|
369
|
+
type: import('./Media').MediaType.audio;
|
|
370
370
|
duration: number;
|
|
371
371
|
} | {
|
|
372
|
-
type: import(
|
|
372
|
+
type: import('./Media').MediaType.office;
|
|
373
373
|
} | {
|
|
374
|
-
type: import(
|
|
374
|
+
type: import('./Media').MediaType.archive;
|
|
375
375
|
} | {
|
|
376
|
-
type: import(
|
|
376
|
+
type: import('./Media').MediaType.binary;
|
|
377
377
|
} | {
|
|
378
|
-
type: import(
|
|
378
|
+
type: import('./Media').MediaType.executable;
|
|
379
379
|
}>>;
|
|
380
380
|
}, z.core.$strip>;
|
|
381
381
|
fingerprint: z.ZodString;
|
|
@@ -515,47 +515,47 @@ export declare const DocumentMetadataSchema: z.ZodObject<{
|
|
|
515
515
|
storedFileName: z.ZodString;
|
|
516
516
|
}, z.core.$strip>>>;
|
|
517
517
|
rawOptions: z.ZodOptional<z.ZodCustom<{
|
|
518
|
-
type: import(
|
|
518
|
+
type: import('./Media').MediaType.picture;
|
|
519
519
|
width: number;
|
|
520
520
|
height: number;
|
|
521
521
|
blurhash?: string | undefined;
|
|
522
522
|
} | {
|
|
523
|
-
type: import(
|
|
523
|
+
type: import('./Media').MediaType.video;
|
|
524
524
|
width: number;
|
|
525
525
|
height: number;
|
|
526
526
|
duration: number;
|
|
527
527
|
} | {
|
|
528
|
-
type: import(
|
|
528
|
+
type: import('./Media').MediaType.audio;
|
|
529
529
|
duration: number;
|
|
530
530
|
} | {
|
|
531
|
-
type: import(
|
|
531
|
+
type: import('./Media').MediaType.office;
|
|
532
532
|
} | {
|
|
533
|
-
type: import(
|
|
533
|
+
type: import('./Media').MediaType.archive;
|
|
534
534
|
} | {
|
|
535
|
-
type: import(
|
|
535
|
+
type: import('./Media').MediaType.binary;
|
|
536
536
|
} | {
|
|
537
|
-
type: import(
|
|
537
|
+
type: import('./Media').MediaType.executable;
|
|
538
538
|
}, {
|
|
539
|
-
type: import(
|
|
539
|
+
type: import('./Media').MediaType.picture;
|
|
540
540
|
width: number;
|
|
541
541
|
height: number;
|
|
542
542
|
blurhash?: string | undefined;
|
|
543
543
|
} | {
|
|
544
|
-
type: import(
|
|
544
|
+
type: import('./Media').MediaType.video;
|
|
545
545
|
width: number;
|
|
546
546
|
height: number;
|
|
547
547
|
duration: number;
|
|
548
548
|
} | {
|
|
549
|
-
type: import(
|
|
549
|
+
type: import('./Media').MediaType.audio;
|
|
550
550
|
duration: number;
|
|
551
551
|
} | {
|
|
552
|
-
type: import(
|
|
552
|
+
type: import('./Media').MediaType.office;
|
|
553
553
|
} | {
|
|
554
|
-
type: import(
|
|
554
|
+
type: import('./Media').MediaType.archive;
|
|
555
555
|
} | {
|
|
556
|
-
type: import(
|
|
556
|
+
type: import('./Media').MediaType.binary;
|
|
557
557
|
} | {
|
|
558
|
-
type: import(
|
|
558
|
+
type: import('./Media').MediaType.executable;
|
|
559
559
|
}>>;
|
|
560
560
|
}, z.core.$strip>;
|
|
561
561
|
fingerprint: z.ZodString;
|
|
@@ -633,47 +633,47 @@ export declare const DocumentMetadataSchema: z.ZodObject<{
|
|
|
633
633
|
storedFileName: z.ZodString;
|
|
634
634
|
}, z.core.$strip>>>;
|
|
635
635
|
rawOptions: z.ZodOptional<z.ZodCustom<{
|
|
636
|
-
type: import(
|
|
636
|
+
type: import('./Media').MediaType.picture;
|
|
637
637
|
width: number;
|
|
638
638
|
height: number;
|
|
639
639
|
blurhash?: string | undefined;
|
|
640
640
|
} | {
|
|
641
|
-
type: import(
|
|
641
|
+
type: import('./Media').MediaType.video;
|
|
642
642
|
width: number;
|
|
643
643
|
height: number;
|
|
644
644
|
duration: number;
|
|
645
645
|
} | {
|
|
646
|
-
type: import(
|
|
646
|
+
type: import('./Media').MediaType.audio;
|
|
647
647
|
duration: number;
|
|
648
648
|
} | {
|
|
649
|
-
type: import(
|
|
649
|
+
type: import('./Media').MediaType.office;
|
|
650
650
|
} | {
|
|
651
|
-
type: import(
|
|
651
|
+
type: import('./Media').MediaType.archive;
|
|
652
652
|
} | {
|
|
653
|
-
type: import(
|
|
653
|
+
type: import('./Media').MediaType.binary;
|
|
654
654
|
} | {
|
|
655
|
-
type: import(
|
|
655
|
+
type: import('./Media').MediaType.executable;
|
|
656
656
|
}, {
|
|
657
|
-
type: import(
|
|
657
|
+
type: import('./Media').MediaType.picture;
|
|
658
658
|
width: number;
|
|
659
659
|
height: number;
|
|
660
660
|
blurhash?: string | undefined;
|
|
661
661
|
} | {
|
|
662
|
-
type: import(
|
|
662
|
+
type: import('./Media').MediaType.video;
|
|
663
663
|
width: number;
|
|
664
664
|
height: number;
|
|
665
665
|
duration: number;
|
|
666
666
|
} | {
|
|
667
|
-
type: import(
|
|
667
|
+
type: import('./Media').MediaType.audio;
|
|
668
668
|
duration: number;
|
|
669
669
|
} | {
|
|
670
|
-
type: import(
|
|
670
|
+
type: import('./Media').MediaType.office;
|
|
671
671
|
} | {
|
|
672
|
-
type: import(
|
|
672
|
+
type: import('./Media').MediaType.archive;
|
|
673
673
|
} | {
|
|
674
|
-
type: import(
|
|
674
|
+
type: import('./Media').MediaType.binary;
|
|
675
675
|
} | {
|
|
676
|
-
type: import(
|
|
676
|
+
type: import('./Media').MediaType.executable;
|
|
677
677
|
}>>;
|
|
678
678
|
}, z.core.$strip>;
|
|
679
679
|
fingerprint: z.ZodString;
|
|
@@ -733,47 +733,47 @@ export declare const DocumentMetadataSchema: z.ZodObject<{
|
|
|
733
733
|
storedFileName: z.ZodString;
|
|
734
734
|
}, z.core.$strip>>>;
|
|
735
735
|
rawOptions: z.ZodOptional<z.ZodCustom<{
|
|
736
|
-
type: import(
|
|
736
|
+
type: import('./Media').MediaType.picture;
|
|
737
737
|
width: number;
|
|
738
738
|
height: number;
|
|
739
739
|
blurhash?: string | undefined;
|
|
740
740
|
} | {
|
|
741
|
-
type: import(
|
|
741
|
+
type: import('./Media').MediaType.video;
|
|
742
742
|
width: number;
|
|
743
743
|
height: number;
|
|
744
744
|
duration: number;
|
|
745
745
|
} | {
|
|
746
|
-
type: import(
|
|
746
|
+
type: import('./Media').MediaType.audio;
|
|
747
747
|
duration: number;
|
|
748
748
|
} | {
|
|
749
|
-
type: import(
|
|
749
|
+
type: import('./Media').MediaType.office;
|
|
750
750
|
} | {
|
|
751
|
-
type: import(
|
|
751
|
+
type: import('./Media').MediaType.archive;
|
|
752
752
|
} | {
|
|
753
|
-
type: import(
|
|
753
|
+
type: import('./Media').MediaType.binary;
|
|
754
754
|
} | {
|
|
755
|
-
type: import(
|
|
755
|
+
type: import('./Media').MediaType.executable;
|
|
756
756
|
}, {
|
|
757
|
-
type: import(
|
|
757
|
+
type: import('./Media').MediaType.picture;
|
|
758
758
|
width: number;
|
|
759
759
|
height: number;
|
|
760
760
|
blurhash?: string | undefined;
|
|
761
761
|
} | {
|
|
762
|
-
type: import(
|
|
762
|
+
type: import('./Media').MediaType.video;
|
|
763
763
|
width: number;
|
|
764
764
|
height: number;
|
|
765
765
|
duration: number;
|
|
766
766
|
} | {
|
|
767
|
-
type: import(
|
|
767
|
+
type: import('./Media').MediaType.audio;
|
|
768
768
|
duration: number;
|
|
769
769
|
} | {
|
|
770
|
-
type: import(
|
|
770
|
+
type: import('./Media').MediaType.office;
|
|
771
771
|
} | {
|
|
772
|
-
type: import(
|
|
772
|
+
type: import('./Media').MediaType.archive;
|
|
773
773
|
} | {
|
|
774
|
-
type: import(
|
|
774
|
+
type: import('./Media').MediaType.binary;
|
|
775
775
|
} | {
|
|
776
|
-
type: import(
|
|
776
|
+
type: import('./Media').MediaType.executable;
|
|
777
777
|
}>>;
|
|
778
778
|
}, z.core.$strip>>;
|
|
779
779
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -951,47 +951,47 @@ export declare const DocumentSchema: z.ZodObject<{
|
|
|
951
951
|
storedFileName: z.ZodString;
|
|
952
952
|
}, z.core.$strip>>>;
|
|
953
953
|
rawOptions: z.ZodOptional<z.ZodCustom<{
|
|
954
|
-
type: import(
|
|
954
|
+
type: import('./Media').MediaType.picture;
|
|
955
955
|
width: number;
|
|
956
956
|
height: number;
|
|
957
957
|
blurhash?: string | undefined;
|
|
958
958
|
} | {
|
|
959
|
-
type: import(
|
|
959
|
+
type: import('./Media').MediaType.video;
|
|
960
960
|
width: number;
|
|
961
961
|
height: number;
|
|
962
962
|
duration: number;
|
|
963
963
|
} | {
|
|
964
|
-
type: import(
|
|
964
|
+
type: import('./Media').MediaType.audio;
|
|
965
965
|
duration: number;
|
|
966
966
|
} | {
|
|
967
|
-
type: import(
|
|
967
|
+
type: import('./Media').MediaType.office;
|
|
968
968
|
} | {
|
|
969
|
-
type: import(
|
|
969
|
+
type: import('./Media').MediaType.archive;
|
|
970
970
|
} | {
|
|
971
|
-
type: import(
|
|
971
|
+
type: import('./Media').MediaType.binary;
|
|
972
972
|
} | {
|
|
973
|
-
type: import(
|
|
973
|
+
type: import('./Media').MediaType.executable;
|
|
974
974
|
}, {
|
|
975
|
-
type: import(
|
|
975
|
+
type: import('./Media').MediaType.picture;
|
|
976
976
|
width: number;
|
|
977
977
|
height: number;
|
|
978
978
|
blurhash?: string | undefined;
|
|
979
979
|
} | {
|
|
980
|
-
type: import(
|
|
980
|
+
type: import('./Media').MediaType.video;
|
|
981
981
|
width: number;
|
|
982
982
|
height: number;
|
|
983
983
|
duration: number;
|
|
984
984
|
} | {
|
|
985
|
-
type: import(
|
|
985
|
+
type: import('./Media').MediaType.audio;
|
|
986
986
|
duration: number;
|
|
987
987
|
} | {
|
|
988
|
-
type: import(
|
|
988
|
+
type: import('./Media').MediaType.office;
|
|
989
989
|
} | {
|
|
990
|
-
type: import(
|
|
990
|
+
type: import('./Media').MediaType.archive;
|
|
991
991
|
} | {
|
|
992
|
-
type: import(
|
|
992
|
+
type: import('./Media').MediaType.binary;
|
|
993
993
|
} | {
|
|
994
|
-
type: import(
|
|
994
|
+
type: import('./Media').MediaType.executable;
|
|
995
995
|
}>>;
|
|
996
996
|
}, z.core.$strip>;
|
|
997
997
|
fingerprint: z.ZodString;
|
|
@@ -1069,47 +1069,47 @@ export declare const DocumentSchema: z.ZodObject<{
|
|
|
1069
1069
|
storedFileName: z.ZodString;
|
|
1070
1070
|
}, z.core.$strip>>>;
|
|
1071
1071
|
rawOptions: z.ZodOptional<z.ZodCustom<{
|
|
1072
|
-
type: import(
|
|
1072
|
+
type: import('./Media').MediaType.picture;
|
|
1073
1073
|
width: number;
|
|
1074
1074
|
height: number;
|
|
1075
1075
|
blurhash?: string | undefined;
|
|
1076
1076
|
} | {
|
|
1077
|
-
type: import(
|
|
1077
|
+
type: import('./Media').MediaType.video;
|
|
1078
1078
|
width: number;
|
|
1079
1079
|
height: number;
|
|
1080
1080
|
duration: number;
|
|
1081
1081
|
} | {
|
|
1082
|
-
type: import(
|
|
1082
|
+
type: import('./Media').MediaType.audio;
|
|
1083
1083
|
duration: number;
|
|
1084
1084
|
} | {
|
|
1085
|
-
type: import(
|
|
1085
|
+
type: import('./Media').MediaType.office;
|
|
1086
1086
|
} | {
|
|
1087
|
-
type: import(
|
|
1087
|
+
type: import('./Media').MediaType.archive;
|
|
1088
1088
|
} | {
|
|
1089
|
-
type: import(
|
|
1089
|
+
type: import('./Media').MediaType.binary;
|
|
1090
1090
|
} | {
|
|
1091
|
-
type: import(
|
|
1091
|
+
type: import('./Media').MediaType.executable;
|
|
1092
1092
|
}, {
|
|
1093
|
-
type: import(
|
|
1093
|
+
type: import('./Media').MediaType.picture;
|
|
1094
1094
|
width: number;
|
|
1095
1095
|
height: number;
|
|
1096
1096
|
blurhash?: string | undefined;
|
|
1097
1097
|
} | {
|
|
1098
|
-
type: import(
|
|
1098
|
+
type: import('./Media').MediaType.video;
|
|
1099
1099
|
width: number;
|
|
1100
1100
|
height: number;
|
|
1101
1101
|
duration: number;
|
|
1102
1102
|
} | {
|
|
1103
|
-
type: import(
|
|
1103
|
+
type: import('./Media').MediaType.audio;
|
|
1104
1104
|
duration: number;
|
|
1105
1105
|
} | {
|
|
1106
|
-
type: import(
|
|
1106
|
+
type: import('./Media').MediaType.office;
|
|
1107
1107
|
} | {
|
|
1108
|
-
type: import(
|
|
1108
|
+
type: import('./Media').MediaType.archive;
|
|
1109
1109
|
} | {
|
|
1110
|
-
type: import(
|
|
1110
|
+
type: import('./Media').MediaType.binary;
|
|
1111
1111
|
} | {
|
|
1112
|
-
type: import(
|
|
1112
|
+
type: import('./Media').MediaType.executable;
|
|
1113
1113
|
}>>;
|
|
1114
1114
|
}, z.core.$strip>;
|
|
1115
1115
|
fingerprint: z.ZodString;
|
|
@@ -1169,47 +1169,47 @@ export declare const DocumentSchema: z.ZodObject<{
|
|
|
1169
1169
|
storedFileName: z.ZodString;
|
|
1170
1170
|
}, z.core.$strip>>>;
|
|
1171
1171
|
rawOptions: z.ZodOptional<z.ZodCustom<{
|
|
1172
|
-
type: import(
|
|
1172
|
+
type: import('./Media').MediaType.picture;
|
|
1173
1173
|
width: number;
|
|
1174
1174
|
height: number;
|
|
1175
1175
|
blurhash?: string | undefined;
|
|
1176
1176
|
} | {
|
|
1177
|
-
type: import(
|
|
1177
|
+
type: import('./Media').MediaType.video;
|
|
1178
1178
|
width: number;
|
|
1179
1179
|
height: number;
|
|
1180
1180
|
duration: number;
|
|
1181
1181
|
} | {
|
|
1182
|
-
type: import(
|
|
1182
|
+
type: import('./Media').MediaType.audio;
|
|
1183
1183
|
duration: number;
|
|
1184
1184
|
} | {
|
|
1185
|
-
type: import(
|
|
1185
|
+
type: import('./Media').MediaType.office;
|
|
1186
1186
|
} | {
|
|
1187
|
-
type: import(
|
|
1187
|
+
type: import('./Media').MediaType.archive;
|
|
1188
1188
|
} | {
|
|
1189
|
-
type: import(
|
|
1189
|
+
type: import('./Media').MediaType.binary;
|
|
1190
1190
|
} | {
|
|
1191
|
-
type: import(
|
|
1191
|
+
type: import('./Media').MediaType.executable;
|
|
1192
1192
|
}, {
|
|
1193
|
-
type: import(
|
|
1193
|
+
type: import('./Media').MediaType.picture;
|
|
1194
1194
|
width: number;
|
|
1195
1195
|
height: number;
|
|
1196
1196
|
blurhash?: string | undefined;
|
|
1197
1197
|
} | {
|
|
1198
|
-
type: import(
|
|
1198
|
+
type: import('./Media').MediaType.video;
|
|
1199
1199
|
width: number;
|
|
1200
1200
|
height: number;
|
|
1201
1201
|
duration: number;
|
|
1202
1202
|
} | {
|
|
1203
|
-
type: import(
|
|
1203
|
+
type: import('./Media').MediaType.audio;
|
|
1204
1204
|
duration: number;
|
|
1205
1205
|
} | {
|
|
1206
|
-
type: import(
|
|
1206
|
+
type: import('./Media').MediaType.office;
|
|
1207
1207
|
} | {
|
|
1208
|
-
type: import(
|
|
1208
|
+
type: import('./Media').MediaType.archive;
|
|
1209
1209
|
} | {
|
|
1210
|
-
type: import(
|
|
1210
|
+
type: import('./Media').MediaType.binary;
|
|
1211
1211
|
} | {
|
|
1212
|
-
type: import(
|
|
1212
|
+
type: import('./Media').MediaType.executable;
|
|
1213
1213
|
}>>;
|
|
1214
1214
|
}, z.core.$strip>>;
|
|
1215
1215
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1365,47 +1365,47 @@ export declare const DocumentCreateDtoSchema: z.ZodObject<{
|
|
|
1365
1365
|
storedFileName: z.ZodString;
|
|
1366
1366
|
}, z.core.$strip>>>;
|
|
1367
1367
|
rawOptions: z.ZodOptional<z.ZodCustom<{
|
|
1368
|
-
type: import(
|
|
1368
|
+
type: import('./Media').MediaType.picture;
|
|
1369
1369
|
width: number;
|
|
1370
1370
|
height: number;
|
|
1371
1371
|
blurhash?: string | undefined;
|
|
1372
1372
|
} | {
|
|
1373
|
-
type: import(
|
|
1373
|
+
type: import('./Media').MediaType.video;
|
|
1374
1374
|
width: number;
|
|
1375
1375
|
height: number;
|
|
1376
1376
|
duration: number;
|
|
1377
1377
|
} | {
|
|
1378
|
-
type: import(
|
|
1378
|
+
type: import('./Media').MediaType.audio;
|
|
1379
1379
|
duration: number;
|
|
1380
1380
|
} | {
|
|
1381
|
-
type: import(
|
|
1381
|
+
type: import('./Media').MediaType.office;
|
|
1382
1382
|
} | {
|
|
1383
|
-
type: import(
|
|
1383
|
+
type: import('./Media').MediaType.archive;
|
|
1384
1384
|
} | {
|
|
1385
|
-
type: import(
|
|
1385
|
+
type: import('./Media').MediaType.binary;
|
|
1386
1386
|
} | {
|
|
1387
|
-
type: import(
|
|
1387
|
+
type: import('./Media').MediaType.executable;
|
|
1388
1388
|
}, {
|
|
1389
|
-
type: import(
|
|
1389
|
+
type: import('./Media').MediaType.picture;
|
|
1390
1390
|
width: number;
|
|
1391
1391
|
height: number;
|
|
1392
1392
|
blurhash?: string | undefined;
|
|
1393
1393
|
} | {
|
|
1394
|
-
type: import(
|
|
1394
|
+
type: import('./Media').MediaType.video;
|
|
1395
1395
|
width: number;
|
|
1396
1396
|
height: number;
|
|
1397
1397
|
duration: number;
|
|
1398
1398
|
} | {
|
|
1399
|
-
type: import(
|
|
1399
|
+
type: import('./Media').MediaType.audio;
|
|
1400
1400
|
duration: number;
|
|
1401
1401
|
} | {
|
|
1402
|
-
type: import(
|
|
1402
|
+
type: import('./Media').MediaType.office;
|
|
1403
1403
|
} | {
|
|
1404
|
-
type: import(
|
|
1404
|
+
type: import('./Media').MediaType.archive;
|
|
1405
1405
|
} | {
|
|
1406
|
-
type: import(
|
|
1406
|
+
type: import('./Media').MediaType.binary;
|
|
1407
1407
|
} | {
|
|
1408
|
-
type: import(
|
|
1408
|
+
type: import('./Media').MediaType.executable;
|
|
1409
1409
|
}>>;
|
|
1410
1410
|
}, z.core.$strip>>;
|
|
1411
1411
|
url: z.ZodOptional<z.ZodURL>;
|
|
@@ -66,47 +66,47 @@ export declare const MemberSchema: z.ZodObject<{
|
|
|
66
66
|
storedFileName: z.ZodString;
|
|
67
67
|
}, z.core.$strip>>>;
|
|
68
68
|
rawOptions: z.ZodOptional<z.ZodCustom<{
|
|
69
|
-
type: import(
|
|
69
|
+
type: import('./Media').MediaType.picture;
|
|
70
70
|
width: number;
|
|
71
71
|
height: number;
|
|
72
72
|
blurhash?: string | undefined;
|
|
73
73
|
} | {
|
|
74
|
-
type: import(
|
|
74
|
+
type: import('./Media').MediaType.video;
|
|
75
75
|
width: number;
|
|
76
76
|
height: number;
|
|
77
77
|
duration: number;
|
|
78
78
|
} | {
|
|
79
|
-
type: import(
|
|
79
|
+
type: import('./Media').MediaType.audio;
|
|
80
80
|
duration: number;
|
|
81
81
|
} | {
|
|
82
|
-
type: import(
|
|
82
|
+
type: import('./Media').MediaType.office;
|
|
83
83
|
} | {
|
|
84
|
-
type: import(
|
|
84
|
+
type: import('./Media').MediaType.archive;
|
|
85
85
|
} | {
|
|
86
|
-
type: import(
|
|
86
|
+
type: import('./Media').MediaType.binary;
|
|
87
87
|
} | {
|
|
88
|
-
type: import(
|
|
88
|
+
type: import('./Media').MediaType.executable;
|
|
89
89
|
}, {
|
|
90
|
-
type: import(
|
|
90
|
+
type: import('./Media').MediaType.picture;
|
|
91
91
|
width: number;
|
|
92
92
|
height: number;
|
|
93
93
|
blurhash?: string | undefined;
|
|
94
94
|
} | {
|
|
95
|
-
type: import(
|
|
95
|
+
type: import('./Media').MediaType.video;
|
|
96
96
|
width: number;
|
|
97
97
|
height: number;
|
|
98
98
|
duration: number;
|
|
99
99
|
} | {
|
|
100
|
-
type: import(
|
|
100
|
+
type: import('./Media').MediaType.audio;
|
|
101
101
|
duration: number;
|
|
102
102
|
} | {
|
|
103
|
-
type: import(
|
|
103
|
+
type: import('./Media').MediaType.office;
|
|
104
104
|
} | {
|
|
105
|
-
type: import(
|
|
105
|
+
type: import('./Media').MediaType.archive;
|
|
106
106
|
} | {
|
|
107
|
-
type: import(
|
|
107
|
+
type: import('./Media').MediaType.binary;
|
|
108
108
|
} | {
|
|
109
|
-
type: import(
|
|
109
|
+
type: import('./Media').MediaType.executable;
|
|
110
110
|
}>>;
|
|
111
111
|
}, z.core.$strip>>>;
|
|
112
112
|
createdAt: z.ZodCoercedDate<unknown>;
|