@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.
- 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 +9 -9
- 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
|
@@ -68,26 +68,26 @@ declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, Compone
|
|
|
68
68
|
signData?: string | undefined;
|
|
69
69
|
}[];
|
|
70
70
|
rawOptions?: {
|
|
71
|
-
type: import(
|
|
71
|
+
type: import('../../models/src').MediaType.picture;
|
|
72
72
|
width: number;
|
|
73
73
|
height: number;
|
|
74
74
|
blurhash?: string | undefined;
|
|
75
75
|
} | {
|
|
76
|
-
type: import(
|
|
76
|
+
type: import('../../models/src').MediaType.video;
|
|
77
77
|
width: number;
|
|
78
78
|
height: number;
|
|
79
79
|
duration: number;
|
|
80
80
|
} | {
|
|
81
|
-
type: import(
|
|
81
|
+
type: import('../../models/src').MediaType.audio;
|
|
82
82
|
duration: number;
|
|
83
83
|
} | {
|
|
84
|
-
type: import(
|
|
84
|
+
type: import('../../models/src').MediaType.office;
|
|
85
85
|
} | {
|
|
86
|
-
type: import(
|
|
86
|
+
type: import('../../models/src').MediaType.archive;
|
|
87
87
|
} | {
|
|
88
|
-
type: import(
|
|
88
|
+
type: import('../../models/src').MediaType.binary;
|
|
89
89
|
} | {
|
|
90
|
-
type: import(
|
|
90
|
+
type: import('../../models/src').MediaType.executable;
|
|
91
91
|
} | undefined;
|
|
92
92
|
} | undefined) => any;
|
|
93
93
|
"upload-success": (args_0: {
|
|
@@ -139,26 +139,26 @@ declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, Compone
|
|
|
139
139
|
signData?: string | undefined;
|
|
140
140
|
}[];
|
|
141
141
|
rawOptions?: {
|
|
142
|
-
type: import(
|
|
142
|
+
type: import('../../models/src').MediaType.picture;
|
|
143
143
|
width: number;
|
|
144
144
|
height: number;
|
|
145
145
|
blurhash?: string | undefined;
|
|
146
146
|
} | {
|
|
147
|
-
type: import(
|
|
147
|
+
type: import('../../models/src').MediaType.video;
|
|
148
148
|
width: number;
|
|
149
149
|
height: number;
|
|
150
150
|
duration: number;
|
|
151
151
|
} | {
|
|
152
|
-
type: import(
|
|
152
|
+
type: import('../../models/src').MediaType.audio;
|
|
153
153
|
duration: number;
|
|
154
154
|
} | {
|
|
155
|
-
type: import(
|
|
155
|
+
type: import('../../models/src').MediaType.office;
|
|
156
156
|
} | {
|
|
157
|
-
type: import(
|
|
157
|
+
type: import('../../models/src').MediaType.archive;
|
|
158
158
|
} | {
|
|
159
|
-
type: import(
|
|
159
|
+
type: import('../../models/src').MediaType.binary;
|
|
160
160
|
} | {
|
|
161
|
-
type: import(
|
|
161
|
+
type: import('../../models/src').MediaType.executable;
|
|
162
162
|
} | undefined;
|
|
163
163
|
}) => any;
|
|
164
164
|
"download-url": (args_0: string) => any;
|
|
@@ -212,26 +212,26 @@ declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, Compone
|
|
|
212
212
|
signData?: string | undefined;
|
|
213
213
|
}[];
|
|
214
214
|
rawOptions?: {
|
|
215
|
-
type: import(
|
|
215
|
+
type: import('../../models/src').MediaType.picture;
|
|
216
216
|
width: number;
|
|
217
217
|
height: number;
|
|
218
218
|
blurhash?: string | undefined;
|
|
219
219
|
} | {
|
|
220
|
-
type: import(
|
|
220
|
+
type: import('../../models/src').MediaType.video;
|
|
221
221
|
width: number;
|
|
222
222
|
height: number;
|
|
223
223
|
duration: number;
|
|
224
224
|
} | {
|
|
225
|
-
type: import(
|
|
225
|
+
type: import('../../models/src').MediaType.audio;
|
|
226
226
|
duration: number;
|
|
227
227
|
} | {
|
|
228
|
-
type: import(
|
|
228
|
+
type: import('../../models/src').MediaType.office;
|
|
229
229
|
} | {
|
|
230
|
-
type: import(
|
|
230
|
+
type: import('../../models/src').MediaType.archive;
|
|
231
231
|
} | {
|
|
232
|
-
type: import(
|
|
232
|
+
type: import('../../models/src').MediaType.binary;
|
|
233
233
|
} | {
|
|
234
|
-
type: import(
|
|
234
|
+
type: import('../../models/src').MediaType.executable;
|
|
235
235
|
} | undefined;
|
|
236
236
|
} | undefined) => any) | undefined;
|
|
237
237
|
"onUpload-success"?: ((args_0: {
|
|
@@ -283,26 +283,26 @@ declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, Compone
|
|
|
283
283
|
signData?: string | undefined;
|
|
284
284
|
}[];
|
|
285
285
|
rawOptions?: {
|
|
286
|
-
type: import(
|
|
286
|
+
type: import('../../models/src').MediaType.picture;
|
|
287
287
|
width: number;
|
|
288
288
|
height: number;
|
|
289
289
|
blurhash?: string | undefined;
|
|
290
290
|
} | {
|
|
291
|
-
type: import(
|
|
291
|
+
type: import('../../models/src').MediaType.video;
|
|
292
292
|
width: number;
|
|
293
293
|
height: number;
|
|
294
294
|
duration: number;
|
|
295
295
|
} | {
|
|
296
|
-
type: import(
|
|
296
|
+
type: import('../../models/src').MediaType.audio;
|
|
297
297
|
duration: number;
|
|
298
298
|
} | {
|
|
299
|
-
type: import(
|
|
299
|
+
type: import('../../models/src').MediaType.office;
|
|
300
300
|
} | {
|
|
301
|
-
type: import(
|
|
301
|
+
type: import('../../models/src').MediaType.archive;
|
|
302
302
|
} | {
|
|
303
|
-
type: import(
|
|
303
|
+
type: import('../../models/src').MediaType.binary;
|
|
304
304
|
} | {
|
|
305
|
-
type: import(
|
|
305
|
+
type: import('../../models/src').MediaType.executable;
|
|
306
306
|
} | undefined;
|
|
307
307
|
}) => any) | undefined;
|
|
308
308
|
"onDownload-url"?: ((args_0: string) => any) | undefined;
|
|
@@ -360,26 +360,26 @@ declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, Compone
|
|
|
360
360
|
signData?: string | undefined;
|
|
361
361
|
}[];
|
|
362
362
|
rawOptions?: {
|
|
363
|
-
type: import(
|
|
363
|
+
type: import('../../models/src').MediaType.picture;
|
|
364
364
|
width: number;
|
|
365
365
|
height: number;
|
|
366
366
|
blurhash?: string | undefined;
|
|
367
367
|
} | {
|
|
368
|
-
type: import(
|
|
368
|
+
type: import('../../models/src').MediaType.video;
|
|
369
369
|
width: number;
|
|
370
370
|
height: number;
|
|
371
371
|
duration: number;
|
|
372
372
|
} | {
|
|
373
|
-
type: import(
|
|
373
|
+
type: import('../../models/src').MediaType.audio;
|
|
374
374
|
duration: number;
|
|
375
375
|
} | {
|
|
376
|
-
type: import(
|
|
376
|
+
type: import('../../models/src').MediaType.office;
|
|
377
377
|
} | {
|
|
378
|
-
type: import(
|
|
378
|
+
type: import('../../models/src').MediaType.archive;
|
|
379
379
|
} | {
|
|
380
|
-
type: import(
|
|
380
|
+
type: import('../../models/src').MediaType.binary;
|
|
381
381
|
} | {
|
|
382
|
-
type: import(
|
|
382
|
+
type: import('../../models/src').MediaType.executable;
|
|
383
383
|
} | undefined;
|
|
384
384
|
} | {
|
|
385
385
|
name: string;
|
|
@@ -430,26 +430,26 @@ declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, Compone
|
|
|
430
430
|
signData?: string | undefined;
|
|
431
431
|
}[];
|
|
432
432
|
rawOptions?: {
|
|
433
|
-
type: import(
|
|
433
|
+
type: import('../../models/src').MediaType.picture;
|
|
434
434
|
width: number;
|
|
435
435
|
height: number;
|
|
436
436
|
blurhash?: string | undefined;
|
|
437
437
|
} | {
|
|
438
|
-
type: import(
|
|
438
|
+
type: import('../../models/src').MediaType.video;
|
|
439
439
|
width: number;
|
|
440
440
|
height: number;
|
|
441
441
|
duration: number;
|
|
442
442
|
} | {
|
|
443
|
-
type: import(
|
|
443
|
+
type: import('../../models/src').MediaType.audio;
|
|
444
444
|
duration: number;
|
|
445
445
|
} | {
|
|
446
|
-
type: import(
|
|
446
|
+
type: import('../../models/src').MediaType.office;
|
|
447
447
|
} | {
|
|
448
|
-
type: import(
|
|
448
|
+
type: import('../../models/src').MediaType.archive;
|
|
449
449
|
} | {
|
|
450
|
-
type: import(
|
|
450
|
+
type: import('../../models/src').MediaType.binary;
|
|
451
451
|
} | {
|
|
452
|
-
type: import(
|
|
452
|
+
type: import('../../models/src').MediaType.executable;
|
|
453
453
|
} | undefined;
|
|
454
454
|
}[];
|
|
455
455
|
max: number | string;
|
|
@@ -267,26 +267,26 @@ declare const __VLS_base: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Com
|
|
|
267
267
|
signData?: string | undefined;
|
|
268
268
|
}[];
|
|
269
269
|
rawOptions?: {
|
|
270
|
-
type: import(
|
|
270
|
+
type: import('../../../models/src').MediaType.picture;
|
|
271
271
|
width: number;
|
|
272
272
|
height: number;
|
|
273
273
|
blurhash?: string | undefined;
|
|
274
274
|
} | {
|
|
275
|
-
type: import(
|
|
275
|
+
type: import('../../../models/src').MediaType.video;
|
|
276
276
|
width: number;
|
|
277
277
|
height: number;
|
|
278
278
|
duration: number;
|
|
279
279
|
} | {
|
|
280
|
-
type: import(
|
|
280
|
+
type: import('../../../models/src').MediaType.audio;
|
|
281
281
|
duration: number;
|
|
282
282
|
} | {
|
|
283
|
-
type: import(
|
|
283
|
+
type: import('../../../models/src').MediaType.office;
|
|
284
284
|
} | {
|
|
285
|
-
type: import(
|
|
285
|
+
type: import('../../../models/src').MediaType.archive;
|
|
286
286
|
} | {
|
|
287
|
-
type: import(
|
|
287
|
+
type: import('../../../models/src').MediaType.binary;
|
|
288
288
|
} | {
|
|
289
|
-
type: import(
|
|
289
|
+
type: import('../../../models/src').MediaType.executable;
|
|
290
290
|
} | undefined;
|
|
291
291
|
} | undefined) => any;
|
|
292
292
|
"update:minuteRateLimit": (value: number) => any;
|
|
@@ -502,26 +502,26 @@ declare const __VLS_base: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Com
|
|
|
502
502
|
signData?: string | undefined;
|
|
503
503
|
}[];
|
|
504
504
|
rawOptions?: {
|
|
505
|
-
type: import(
|
|
505
|
+
type: import('../../../models/src').MediaType.picture;
|
|
506
506
|
width: number;
|
|
507
507
|
height: number;
|
|
508
508
|
blurhash?: string | undefined;
|
|
509
509
|
} | {
|
|
510
|
-
type: import(
|
|
510
|
+
type: import('../../../models/src').MediaType.video;
|
|
511
511
|
width: number;
|
|
512
512
|
height: number;
|
|
513
513
|
duration: number;
|
|
514
514
|
} | {
|
|
515
|
-
type: import(
|
|
515
|
+
type: import('../../../models/src').MediaType.audio;
|
|
516
516
|
duration: number;
|
|
517
517
|
} | {
|
|
518
|
-
type: import(
|
|
518
|
+
type: import('../../../models/src').MediaType.office;
|
|
519
519
|
} | {
|
|
520
|
-
type: import(
|
|
520
|
+
type: import('../../../models/src').MediaType.archive;
|
|
521
521
|
} | {
|
|
522
|
-
type: import(
|
|
522
|
+
type: import('../../../models/src').MediaType.binary;
|
|
523
523
|
} | {
|
|
524
|
-
type: import(
|
|
524
|
+
type: import('../../../models/src').MediaType.executable;
|
|
525
525
|
} | undefined;
|
|
526
526
|
} | undefined) => any) | undefined;
|
|
527
527
|
"onUpdate:minuteRateLimit"?: ((value: number) => any) | undefined;
|
|
@@ -106,26 +106,26 @@ export declare function useChatbotStore(agentId: string): Store<`chatbot-${strin
|
|
|
106
106
|
signData?: string | undefined;
|
|
107
107
|
}[];
|
|
108
108
|
rawOptions?: {
|
|
109
|
-
type: import(
|
|
109
|
+
type: import('../../../models/src').MediaType.picture;
|
|
110
110
|
width: number;
|
|
111
111
|
height: number;
|
|
112
112
|
blurhash?: string | undefined;
|
|
113
113
|
} | {
|
|
114
|
-
type: import(
|
|
114
|
+
type: import('../../../models/src').MediaType.video;
|
|
115
115
|
width: number;
|
|
116
116
|
height: number;
|
|
117
117
|
duration: number;
|
|
118
118
|
} | {
|
|
119
|
-
type: import(
|
|
119
|
+
type: import('../../../models/src').MediaType.audio;
|
|
120
120
|
duration: number;
|
|
121
121
|
} | {
|
|
122
|
-
type: import(
|
|
122
|
+
type: import('../../../models/src').MediaType.office;
|
|
123
123
|
} | {
|
|
124
|
-
type: import(
|
|
124
|
+
type: import('../../../models/src').MediaType.archive;
|
|
125
125
|
} | {
|
|
126
|
-
type: import(
|
|
126
|
+
type: import('../../../models/src').MediaType.binary;
|
|
127
127
|
} | {
|
|
128
|
-
type: import(
|
|
128
|
+
type: import('../../../models/src').MediaType.executable;
|
|
129
129
|
} | undefined;
|
|
130
130
|
} | undefined;
|
|
131
131
|
logo?: string | undefined;
|
|
@@ -199,26 +199,26 @@ export declare function useChatbotStore(agentId: string): Store<`chatbot-${strin
|
|
|
199
199
|
signData?: string | undefined;
|
|
200
200
|
}[];
|
|
201
201
|
rawOptions?: {
|
|
202
|
-
type: import(
|
|
202
|
+
type: import('../../../models/src').MediaType.picture;
|
|
203
203
|
width: number;
|
|
204
204
|
height: number;
|
|
205
205
|
blurhash?: string | undefined;
|
|
206
206
|
} | {
|
|
207
|
-
type: import(
|
|
207
|
+
type: import('../../../models/src').MediaType.video;
|
|
208
208
|
width: number;
|
|
209
209
|
height: number;
|
|
210
210
|
duration: number;
|
|
211
211
|
} | {
|
|
212
|
-
type: import(
|
|
212
|
+
type: import('../../../models/src').MediaType.audio;
|
|
213
213
|
duration: number;
|
|
214
214
|
} | {
|
|
215
|
-
type: import(
|
|
215
|
+
type: import('../../../models/src').MediaType.office;
|
|
216
216
|
} | {
|
|
217
|
-
type: import(
|
|
217
|
+
type: import('../../../models/src').MediaType.archive;
|
|
218
218
|
} | {
|
|
219
|
-
type: import(
|
|
219
|
+
type: import('../../../models/src').MediaType.binary;
|
|
220
220
|
} | {
|
|
221
|
-
type: import(
|
|
221
|
+
type: import('../../../models/src').MediaType.executable;
|
|
222
222
|
} | undefined;
|
|
223
223
|
} | undefined;
|
|
224
224
|
logo?: string | undefined;
|
|
@@ -1744,26 +1744,26 @@ export declare function useChatbotStore(agentId: string): Store<`chatbot-${strin
|
|
|
1744
1744
|
signData?: string | undefined;
|
|
1745
1745
|
}[];
|
|
1746
1746
|
rawOptions?: {
|
|
1747
|
-
type: import(
|
|
1747
|
+
type: import('../../../models/src').MediaType.picture;
|
|
1748
1748
|
width: number;
|
|
1749
1749
|
height: number;
|
|
1750
1750
|
blurhash?: string | undefined;
|
|
1751
1751
|
} | {
|
|
1752
|
-
type: import(
|
|
1752
|
+
type: import('../../../models/src').MediaType.video;
|
|
1753
1753
|
width: number;
|
|
1754
1754
|
height: number;
|
|
1755
1755
|
duration: number;
|
|
1756
1756
|
} | {
|
|
1757
|
-
type: import(
|
|
1757
|
+
type: import('../../../models/src').MediaType.audio;
|
|
1758
1758
|
duration: number;
|
|
1759
1759
|
} | {
|
|
1760
|
-
type: import(
|
|
1760
|
+
type: import('../../../models/src').MediaType.office;
|
|
1761
1761
|
} | {
|
|
1762
|
-
type: import(
|
|
1762
|
+
type: import('../../../models/src').MediaType.archive;
|
|
1763
1763
|
} | {
|
|
1764
|
-
type: import(
|
|
1764
|
+
type: import('../../../models/src').MediaType.binary;
|
|
1765
1765
|
} | {
|
|
1766
|
-
type: import(
|
|
1766
|
+
type: import('../../../models/src').MediaType.executable;
|
|
1767
1767
|
} | undefined;
|
|
1768
1768
|
} | undefined;
|
|
1769
1769
|
logo?: string | undefined;
|
|
@@ -1837,26 +1837,26 @@ export declare function useChatbotStore(agentId: string): Store<`chatbot-${strin
|
|
|
1837
1837
|
signData?: string | undefined;
|
|
1838
1838
|
}[];
|
|
1839
1839
|
rawOptions?: {
|
|
1840
|
-
type: import(
|
|
1840
|
+
type: import('../../../models/src').MediaType.picture;
|
|
1841
1841
|
width: number;
|
|
1842
1842
|
height: number;
|
|
1843
1843
|
blurhash?: string | undefined;
|
|
1844
1844
|
} | {
|
|
1845
|
-
type: import(
|
|
1845
|
+
type: import('../../../models/src').MediaType.video;
|
|
1846
1846
|
width: number;
|
|
1847
1847
|
height: number;
|
|
1848
1848
|
duration: number;
|
|
1849
1849
|
} | {
|
|
1850
|
-
type: import(
|
|
1850
|
+
type: import('../../../models/src').MediaType.audio;
|
|
1851
1851
|
duration: number;
|
|
1852
1852
|
} | {
|
|
1853
|
-
type: import(
|
|
1853
|
+
type: import('../../../models/src').MediaType.office;
|
|
1854
1854
|
} | {
|
|
1855
|
-
type: import(
|
|
1855
|
+
type: import('../../../models/src').MediaType.archive;
|
|
1856
1856
|
} | {
|
|
1857
|
-
type: import(
|
|
1857
|
+
type: import('../../../models/src').MediaType.binary;
|
|
1858
1858
|
} | {
|
|
1859
|
-
type: import(
|
|
1859
|
+
type: import('../../../models/src').MediaType.executable;
|
|
1860
1860
|
} | undefined;
|
|
1861
1861
|
} | undefined;
|
|
1862
1862
|
logo?: string | undefined;
|
|
@@ -3382,26 +3382,26 @@ export declare function useChatbotStore(agentId: string): Store<`chatbot-${strin
|
|
|
3382
3382
|
signData?: string | undefined;
|
|
3383
3383
|
}[];
|
|
3384
3384
|
rawOptions?: {
|
|
3385
|
-
type: import(
|
|
3385
|
+
type: import('../../../models/src').MediaType.picture;
|
|
3386
3386
|
width: number;
|
|
3387
3387
|
height: number;
|
|
3388
3388
|
blurhash?: string | undefined;
|
|
3389
3389
|
} | {
|
|
3390
|
-
type: import(
|
|
3390
|
+
type: import('../../../models/src').MediaType.video;
|
|
3391
3391
|
width: number;
|
|
3392
3392
|
height: number;
|
|
3393
3393
|
duration: number;
|
|
3394
3394
|
} | {
|
|
3395
|
-
type: import(
|
|
3395
|
+
type: import('../../../models/src').MediaType.audio;
|
|
3396
3396
|
duration: number;
|
|
3397
3397
|
} | {
|
|
3398
|
-
type: import(
|
|
3398
|
+
type: import('../../../models/src').MediaType.office;
|
|
3399
3399
|
} | {
|
|
3400
|
-
type: import(
|
|
3400
|
+
type: import('../../../models/src').MediaType.archive;
|
|
3401
3401
|
} | {
|
|
3402
|
-
type: import(
|
|
3402
|
+
type: import('../../../models/src').MediaType.binary;
|
|
3403
3403
|
} | {
|
|
3404
|
-
type: import(
|
|
3404
|
+
type: import('../../../models/src').MediaType.executable;
|
|
3405
3405
|
} | undefined;
|
|
3406
3406
|
} | undefined;
|
|
3407
3407
|
logo?: string | undefined;
|
|
@@ -3475,26 +3475,26 @@ export declare function useChatbotStore(agentId: string): Store<`chatbot-${strin
|
|
|
3475
3475
|
signData?: string | undefined;
|
|
3476
3476
|
}[];
|
|
3477
3477
|
rawOptions?: {
|
|
3478
|
-
type: import(
|
|
3478
|
+
type: import('../../../models/src').MediaType.picture;
|
|
3479
3479
|
width: number;
|
|
3480
3480
|
height: number;
|
|
3481
3481
|
blurhash?: string | undefined;
|
|
3482
3482
|
} | {
|
|
3483
|
-
type: import(
|
|
3483
|
+
type: import('../../../models/src').MediaType.video;
|
|
3484
3484
|
width: number;
|
|
3485
3485
|
height: number;
|
|
3486
3486
|
duration: number;
|
|
3487
3487
|
} | {
|
|
3488
|
-
type: import(
|
|
3488
|
+
type: import('../../../models/src').MediaType.audio;
|
|
3489
3489
|
duration: number;
|
|
3490
3490
|
} | {
|
|
3491
|
-
type: import(
|
|
3491
|
+
type: import('../../../models/src').MediaType.office;
|
|
3492
3492
|
} | {
|
|
3493
|
-
type: import(
|
|
3493
|
+
type: import('../../../models/src').MediaType.archive;
|
|
3494
3494
|
} | {
|
|
3495
|
-
type: import(
|
|
3495
|
+
type: import('../../../models/src').MediaType.binary;
|
|
3496
3496
|
} | {
|
|
3497
|
-
type: import(
|
|
3497
|
+
type: import('../../../models/src').MediaType.executable;
|
|
3498
3498
|
} | undefined;
|
|
3499
3499
|
} | undefined;
|
|
3500
3500
|
logo?: string | undefined;
|