@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.
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 +7 -7
  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
@@ -976,47 +976,47 @@ export declare const AgentInterfaceSchema: z.ZodObject<{
976
976
  storedFileName: z.ZodString;
977
977
  }, z.core.$strip>>>;
978
978
  rawOptions: z.ZodOptional<z.ZodCustom<{
979
- type: import("./Media").MediaType.picture;
979
+ type: import('./Media').MediaType.picture;
980
980
  width: number;
981
981
  height: number;
982
982
  blurhash?: string | undefined;
983
983
  } | {
984
- type: import("./Media").MediaType.video;
984
+ type: import('./Media').MediaType.video;
985
985
  width: number;
986
986
  height: number;
987
987
  duration: number;
988
988
  } | {
989
- type: import("./Media").MediaType.audio;
989
+ type: import('./Media').MediaType.audio;
990
990
  duration: number;
991
991
  } | {
992
- type: import("./Media").MediaType.office;
992
+ type: import('./Media').MediaType.office;
993
993
  } | {
994
- type: import("./Media").MediaType.archive;
994
+ type: import('./Media').MediaType.archive;
995
995
  } | {
996
- type: import("./Media").MediaType.binary;
996
+ type: import('./Media').MediaType.binary;
997
997
  } | {
998
- type: import("./Media").MediaType.executable;
998
+ type: import('./Media').MediaType.executable;
999
999
  }, {
1000
- type: import("./Media").MediaType.picture;
1000
+ type: import('./Media').MediaType.picture;
1001
1001
  width: number;
1002
1002
  height: number;
1003
1003
  blurhash?: string | undefined;
1004
1004
  } | {
1005
- type: import("./Media").MediaType.video;
1005
+ type: import('./Media').MediaType.video;
1006
1006
  width: number;
1007
1007
  height: number;
1008
1008
  duration: number;
1009
1009
  } | {
1010
- type: import("./Media").MediaType.audio;
1010
+ type: import('./Media').MediaType.audio;
1011
1011
  duration: number;
1012
1012
  } | {
1013
- type: import("./Media").MediaType.office;
1013
+ type: import('./Media').MediaType.office;
1014
1014
  } | {
1015
- type: import("./Media").MediaType.archive;
1015
+ type: import('./Media').MediaType.archive;
1016
1016
  } | {
1017
- type: import("./Media").MediaType.binary;
1017
+ type: import('./Media').MediaType.binary;
1018
1018
  } | {
1019
- type: import("./Media").MediaType.executable;
1019
+ type: import('./Media').MediaType.executable;
1020
1020
  }>>;
1021
1021
  }, z.core.$strip>>;
1022
1022
  logo: z.ZodOptional<z.ZodString>;
@@ -1373,47 +1373,47 @@ export declare const AgentSettingsSchema: z.ZodObject<{
1373
1373
  storedFileName: z.ZodString;
1374
1374
  }, z.core.$strip>>>;
1375
1375
  rawOptions: z.ZodOptional<z.ZodCustom<{
1376
- type: import("./Media").MediaType.picture;
1376
+ type: import('./Media').MediaType.picture;
1377
1377
  width: number;
1378
1378
  height: number;
1379
1379
  blurhash?: string | undefined;
1380
1380
  } | {
1381
- type: import("./Media").MediaType.video;
1381
+ type: import('./Media').MediaType.video;
1382
1382
  width: number;
1383
1383
  height: number;
1384
1384
  duration: number;
1385
1385
  } | {
1386
- type: import("./Media").MediaType.audio;
1386
+ type: import('./Media').MediaType.audio;
1387
1387
  duration: number;
1388
1388
  } | {
1389
- type: import("./Media").MediaType.office;
1389
+ type: import('./Media').MediaType.office;
1390
1390
  } | {
1391
- type: import("./Media").MediaType.archive;
1391
+ type: import('./Media').MediaType.archive;
1392
1392
  } | {
1393
- type: import("./Media").MediaType.binary;
1393
+ type: import('./Media').MediaType.binary;
1394
1394
  } | {
1395
- type: import("./Media").MediaType.executable;
1395
+ type: import('./Media').MediaType.executable;
1396
1396
  }, {
1397
- type: import("./Media").MediaType.picture;
1397
+ type: import('./Media').MediaType.picture;
1398
1398
  width: number;
1399
1399
  height: number;
1400
1400
  blurhash?: string | undefined;
1401
1401
  } | {
1402
- type: import("./Media").MediaType.video;
1402
+ type: import('./Media').MediaType.video;
1403
1403
  width: number;
1404
1404
  height: number;
1405
1405
  duration: number;
1406
1406
  } | {
1407
- type: import("./Media").MediaType.audio;
1407
+ type: import('./Media').MediaType.audio;
1408
1408
  duration: number;
1409
1409
  } | {
1410
- type: import("./Media").MediaType.office;
1410
+ type: import('./Media').MediaType.office;
1411
1411
  } | {
1412
- type: import("./Media").MediaType.archive;
1412
+ type: import('./Media').MediaType.archive;
1413
1413
  } | {
1414
- type: import("./Media").MediaType.binary;
1414
+ type: import('./Media').MediaType.binary;
1415
1415
  } | {
1416
- type: import("./Media").MediaType.executable;
1416
+ type: import('./Media').MediaType.executable;
1417
1417
  }>>;
1418
1418
  }, z.core.$strip>>;
1419
1419
  logo: z.ZodOptional<z.ZodString>;
@@ -1755,47 +1755,47 @@ export declare const AgentDtoSchema: z.ZodObject<{
1755
1755
  storedFileName: z.ZodString;
1756
1756
  }, z.core.$strip>>>;
1757
1757
  rawOptions: z.ZodOptional<z.ZodCustom<{
1758
- type: import("./Media").MediaType.picture;
1758
+ type: import('./Media').MediaType.picture;
1759
1759
  width: number;
1760
1760
  height: number;
1761
1761
  blurhash?: string | undefined;
1762
1762
  } | {
1763
- type: import("./Media").MediaType.video;
1763
+ type: import('./Media').MediaType.video;
1764
1764
  width: number;
1765
1765
  height: number;
1766
1766
  duration: number;
1767
1767
  } | {
1768
- type: import("./Media").MediaType.audio;
1768
+ type: import('./Media').MediaType.audio;
1769
1769
  duration: number;
1770
1770
  } | {
1771
- type: import("./Media").MediaType.office;
1771
+ type: import('./Media').MediaType.office;
1772
1772
  } | {
1773
- type: import("./Media").MediaType.archive;
1773
+ type: import('./Media').MediaType.archive;
1774
1774
  } | {
1775
- type: import("./Media").MediaType.binary;
1775
+ type: import('./Media').MediaType.binary;
1776
1776
  } | {
1777
- type: import("./Media").MediaType.executable;
1777
+ type: import('./Media').MediaType.executable;
1778
1778
  }, {
1779
- type: import("./Media").MediaType.picture;
1779
+ type: import('./Media').MediaType.picture;
1780
1780
  width: number;
1781
1781
  height: number;
1782
1782
  blurhash?: string | undefined;
1783
1783
  } | {
1784
- type: import("./Media").MediaType.video;
1784
+ type: import('./Media').MediaType.video;
1785
1785
  width: number;
1786
1786
  height: number;
1787
1787
  duration: number;
1788
1788
  } | {
1789
- type: import("./Media").MediaType.audio;
1789
+ type: import('./Media').MediaType.audio;
1790
1790
  duration: number;
1791
1791
  } | {
1792
- type: import("./Media").MediaType.office;
1792
+ type: import('./Media').MediaType.office;
1793
1793
  } | {
1794
- type: import("./Media").MediaType.archive;
1794
+ type: import('./Media').MediaType.archive;
1795
1795
  } | {
1796
- type: import("./Media").MediaType.binary;
1796
+ type: import('./Media').MediaType.binary;
1797
1797
  } | {
1798
- type: import("./Media").MediaType.executable;
1798
+ type: import('./Media').MediaType.executable;
1799
1799
  }>>;
1800
1800
  }, z.core.$strip>>;
1801
1801
  logo: z.ZodOptional<z.ZodString>;
@@ -2138,47 +2138,47 @@ export declare const AgentSchema: z.ZodLazy<z.ZodObject<{
2138
2138
  storedFileName: z.ZodString;
2139
2139
  }, z.core.$strip>>>;
2140
2140
  rawOptions: z.ZodOptional<z.ZodCustom<{
2141
- type: import("./Media").MediaType.picture;
2141
+ type: import('./Media').MediaType.picture;
2142
2142
  width: number;
2143
2143
  height: number;
2144
2144
  blurhash?: string | undefined;
2145
2145
  } | {
2146
- type: import("./Media").MediaType.video;
2146
+ type: import('./Media').MediaType.video;
2147
2147
  width: number;
2148
2148
  height: number;
2149
2149
  duration: number;
2150
2150
  } | {
2151
- type: import("./Media").MediaType.audio;
2151
+ type: import('./Media').MediaType.audio;
2152
2152
  duration: number;
2153
2153
  } | {
2154
- type: import("./Media").MediaType.office;
2154
+ type: import('./Media').MediaType.office;
2155
2155
  } | {
2156
- type: import("./Media").MediaType.archive;
2156
+ type: import('./Media').MediaType.archive;
2157
2157
  } | {
2158
- type: import("./Media").MediaType.binary;
2158
+ type: import('./Media').MediaType.binary;
2159
2159
  } | {
2160
- type: import("./Media").MediaType.executable;
2160
+ type: import('./Media').MediaType.executable;
2161
2161
  }, {
2162
- type: import("./Media").MediaType.picture;
2162
+ type: import('./Media').MediaType.picture;
2163
2163
  width: number;
2164
2164
  height: number;
2165
2165
  blurhash?: string | undefined;
2166
2166
  } | {
2167
- type: import("./Media").MediaType.video;
2167
+ type: import('./Media').MediaType.video;
2168
2168
  width: number;
2169
2169
  height: number;
2170
2170
  duration: number;
2171
2171
  } | {
2172
- type: import("./Media").MediaType.audio;
2172
+ type: import('./Media').MediaType.audio;
2173
2173
  duration: number;
2174
2174
  } | {
2175
- type: import("./Media").MediaType.office;
2175
+ type: import('./Media').MediaType.office;
2176
2176
  } | {
2177
- type: import("./Media").MediaType.archive;
2177
+ type: import('./Media').MediaType.archive;
2178
2178
  } | {
2179
- type: import("./Media").MediaType.binary;
2179
+ type: import('./Media').MediaType.binary;
2180
2180
  } | {
2181
- type: import("./Media").MediaType.executable;
2181
+ type: import('./Media').MediaType.executable;
2182
2182
  }>>;
2183
2183
  }, z.core.$strip>>;
2184
2184
  logo: z.ZodOptional<z.ZodString>;
@@ -2400,47 +2400,47 @@ export declare const AgentPublicSchema: z.ZodObject<{
2400
2400
  storedFileName: z.ZodString;
2401
2401
  }, z.core.$strip>>>;
2402
2402
  rawOptions: z.ZodOptional<z.ZodCustom<{
2403
- type: import("./Media").MediaType.picture;
2403
+ type: import('./Media').MediaType.picture;
2404
2404
  width: number;
2405
2405
  height: number;
2406
2406
  blurhash?: string | undefined;
2407
2407
  } | {
2408
- type: import("./Media").MediaType.video;
2408
+ type: import('./Media').MediaType.video;
2409
2409
  width: number;
2410
2410
  height: number;
2411
2411
  duration: number;
2412
2412
  } | {
2413
- type: import("./Media").MediaType.audio;
2413
+ type: import('./Media').MediaType.audio;
2414
2414
  duration: number;
2415
2415
  } | {
2416
- type: import("./Media").MediaType.office;
2416
+ type: import('./Media').MediaType.office;
2417
2417
  } | {
2418
- type: import("./Media").MediaType.archive;
2418
+ type: import('./Media').MediaType.archive;
2419
2419
  } | {
2420
- type: import("./Media").MediaType.binary;
2420
+ type: import('./Media').MediaType.binary;
2421
2421
  } | {
2422
- type: import("./Media").MediaType.executable;
2422
+ type: import('./Media').MediaType.executable;
2423
2423
  }, {
2424
- type: import("./Media").MediaType.picture;
2424
+ type: import('./Media').MediaType.picture;
2425
2425
  width: number;
2426
2426
  height: number;
2427
2427
  blurhash?: string | undefined;
2428
2428
  } | {
2429
- type: import("./Media").MediaType.video;
2429
+ type: import('./Media').MediaType.video;
2430
2430
  width: number;
2431
2431
  height: number;
2432
2432
  duration: number;
2433
2433
  } | {
2434
- type: import("./Media").MediaType.audio;
2434
+ type: import('./Media').MediaType.audio;
2435
2435
  duration: number;
2436
2436
  } | {
2437
- type: import("./Media").MediaType.office;
2437
+ type: import('./Media').MediaType.office;
2438
2438
  } | {
2439
- type: import("./Media").MediaType.archive;
2439
+ type: import('./Media').MediaType.archive;
2440
2440
  } | {
2441
- type: import("./Media").MediaType.binary;
2441
+ type: import('./Media').MediaType.binary;
2442
2442
  } | {
2443
- type: import("./Media").MediaType.executable;
2443
+ type: import('./Media').MediaType.executable;
2444
2444
  }>>;
2445
2445
  }, z.core.$strip>>;
2446
2446
  logo: z.ZodOptional<z.ZodString>;
@@ -2620,47 +2620,47 @@ export declare const AgentAccessGrantedSchema: z.ZodObject<{
2620
2620
  storedFileName: z.ZodString;
2621
2621
  }, z.core.$strip>>>;
2622
2622
  rawOptions: z.ZodOptional<z.ZodCustom<{
2623
- type: import("./Media").MediaType.picture;
2623
+ type: import('./Media').MediaType.picture;
2624
2624
  width: number;
2625
2625
  height: number;
2626
2626
  blurhash?: string | undefined;
2627
2627
  } | {
2628
- type: import("./Media").MediaType.video;
2628
+ type: import('./Media').MediaType.video;
2629
2629
  width: number;
2630
2630
  height: number;
2631
2631
  duration: number;
2632
2632
  } | {
2633
- type: import("./Media").MediaType.audio;
2633
+ type: import('./Media').MediaType.audio;
2634
2634
  duration: number;
2635
2635
  } | {
2636
- type: import("./Media").MediaType.office;
2636
+ type: import('./Media').MediaType.office;
2637
2637
  } | {
2638
- type: import("./Media").MediaType.archive;
2638
+ type: import('./Media').MediaType.archive;
2639
2639
  } | {
2640
- type: import("./Media").MediaType.binary;
2640
+ type: import('./Media').MediaType.binary;
2641
2641
  } | {
2642
- type: import("./Media").MediaType.executable;
2642
+ type: import('./Media').MediaType.executable;
2643
2643
  }, {
2644
- type: import("./Media").MediaType.picture;
2644
+ type: import('./Media').MediaType.picture;
2645
2645
  width: number;
2646
2646
  height: number;
2647
2647
  blurhash?: string | undefined;
2648
2648
  } | {
2649
- type: import("./Media").MediaType.video;
2649
+ type: import('./Media').MediaType.video;
2650
2650
  width: number;
2651
2651
  height: number;
2652
2652
  duration: number;
2653
2653
  } | {
2654
- type: import("./Media").MediaType.audio;
2654
+ type: import('./Media').MediaType.audio;
2655
2655
  duration: number;
2656
2656
  } | {
2657
- type: import("./Media").MediaType.office;
2657
+ type: import('./Media').MediaType.office;
2658
2658
  } | {
2659
- type: import("./Media").MediaType.archive;
2659
+ type: import('./Media').MediaType.archive;
2660
2660
  } | {
2661
- type: import("./Media").MediaType.binary;
2661
+ type: import('./Media').MediaType.binary;
2662
2662
  } | {
2663
- type: import("./Media").MediaType.executable;
2663
+ type: import('./Media').MediaType.executable;
2664
2664
  }>>;
2665
2665
  }, z.core.$strip>>;
2666
2666
  logo: z.ZodOptional<z.ZodString>;
@@ -2800,47 +2800,47 @@ export declare const AgentAccessDecisionSchema: z.ZodDiscriminatedUnion<[z.ZodOb
2800
2800
  storedFileName: z.ZodString;
2801
2801
  }, z.core.$strip>>>;
2802
2802
  rawOptions: z.ZodOptional<z.ZodCustom<{
2803
- type: import("./Media").MediaType.picture;
2803
+ type: import('./Media').MediaType.picture;
2804
2804
  width: number;
2805
2805
  height: number;
2806
2806
  blurhash?: string | undefined;
2807
2807
  } | {
2808
- type: import("./Media").MediaType.video;
2808
+ type: import('./Media').MediaType.video;
2809
2809
  width: number;
2810
2810
  height: number;
2811
2811
  duration: number;
2812
2812
  } | {
2813
- type: import("./Media").MediaType.audio;
2813
+ type: import('./Media').MediaType.audio;
2814
2814
  duration: number;
2815
2815
  } | {
2816
- type: import("./Media").MediaType.office;
2816
+ type: import('./Media').MediaType.office;
2817
2817
  } | {
2818
- type: import("./Media").MediaType.archive;
2818
+ type: import('./Media').MediaType.archive;
2819
2819
  } | {
2820
- type: import("./Media").MediaType.binary;
2820
+ type: import('./Media').MediaType.binary;
2821
2821
  } | {
2822
- type: import("./Media").MediaType.executable;
2822
+ type: import('./Media').MediaType.executable;
2823
2823
  }, {
2824
- type: import("./Media").MediaType.picture;
2824
+ type: import('./Media').MediaType.picture;
2825
2825
  width: number;
2826
2826
  height: number;
2827
2827
  blurhash?: string | undefined;
2828
2828
  } | {
2829
- type: import("./Media").MediaType.video;
2829
+ type: import('./Media').MediaType.video;
2830
2830
  width: number;
2831
2831
  height: number;
2832
2832
  duration: number;
2833
2833
  } | {
2834
- type: import("./Media").MediaType.audio;
2834
+ type: import('./Media').MediaType.audio;
2835
2835
  duration: number;
2836
2836
  } | {
2837
- type: import("./Media").MediaType.office;
2837
+ type: import('./Media').MediaType.office;
2838
2838
  } | {
2839
- type: import("./Media").MediaType.archive;
2839
+ type: import('./Media').MediaType.archive;
2840
2840
  } | {
2841
- type: import("./Media").MediaType.binary;
2841
+ type: import('./Media').MediaType.binary;
2842
2842
  } | {
2843
- type: import("./Media").MediaType.executable;
2843
+ type: import('./Media').MediaType.executable;
2844
2844
  }>>;
2845
2845
  }, z.core.$strip>>;
2846
2846
  logo: z.ZodOptional<z.ZodString>;
@@ -2985,47 +2985,47 @@ export declare const AgentAccessSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2985
2985
  storedFileName: z.ZodString;
2986
2986
  }, z.core.$strip>>>;
2987
2987
  rawOptions: z.ZodOptional<z.ZodCustom<{
2988
- type: import("./Media").MediaType.picture;
2988
+ type: import('./Media').MediaType.picture;
2989
2989
  width: number;
2990
2990
  height: number;
2991
2991
  blurhash?: string | undefined;
2992
2992
  } | {
2993
- type: import("./Media").MediaType.video;
2993
+ type: import('./Media').MediaType.video;
2994
2994
  width: number;
2995
2995
  height: number;
2996
2996
  duration: number;
2997
2997
  } | {
2998
- type: import("./Media").MediaType.audio;
2998
+ type: import('./Media').MediaType.audio;
2999
2999
  duration: number;
3000
3000
  } | {
3001
- type: import("./Media").MediaType.office;
3001
+ type: import('./Media').MediaType.office;
3002
3002
  } | {
3003
- type: import("./Media").MediaType.archive;
3003
+ type: import('./Media').MediaType.archive;
3004
3004
  } | {
3005
- type: import("./Media").MediaType.binary;
3005
+ type: import('./Media').MediaType.binary;
3006
3006
  } | {
3007
- type: import("./Media").MediaType.executable;
3007
+ type: import('./Media').MediaType.executable;
3008
3008
  }, {
3009
- type: import("./Media").MediaType.picture;
3009
+ type: import('./Media').MediaType.picture;
3010
3010
  width: number;
3011
3011
  height: number;
3012
3012
  blurhash?: string | undefined;
3013
3013
  } | {
3014
- type: import("./Media").MediaType.video;
3014
+ type: import('./Media').MediaType.video;
3015
3015
  width: number;
3016
3016
  height: number;
3017
3017
  duration: number;
3018
3018
  } | {
3019
- type: import("./Media").MediaType.audio;
3019
+ type: import('./Media').MediaType.audio;
3020
3020
  duration: number;
3021
3021
  } | {
3022
- type: import("./Media").MediaType.office;
3022
+ type: import('./Media').MediaType.office;
3023
3023
  } | {
3024
- type: import("./Media").MediaType.archive;
3024
+ type: import('./Media').MediaType.archive;
3025
3025
  } | {
3026
- type: import("./Media").MediaType.binary;
3026
+ type: import('./Media').MediaType.binary;
3027
3027
  } | {
3028
- type: import("./Media").MediaType.executable;
3028
+ type: import('./Media').MediaType.executable;
3029
3029
  }>>;
3030
3030
  }, z.core.$strip>>;
3031
3031
  logo: z.ZodOptional<z.ZodString>;