@alicloud/quanmiaolightapp20240801 2.9.3 → 2.10.1
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/client.d.ts +183 -0
- package/dist/client.js +1209 -0
- package/dist/client.js.map +1 -1
- package/dist/models/GetFileContentRequest.d.ts +18 -0
- package/dist/models/GetFileContentRequest.js +58 -0
- package/dist/models/GetFileContentRequest.js.map +1 -0
- package/dist/models/GetFileContentResponse.d.ts +19 -0
- package/dist/models/GetFileContentResponse.js +69 -0
- package/dist/models/GetFileContentResponse.js.map +1 -0
- package/dist/models/GetFileContentResponseBody.d.ts +59 -0
- package/dist/models/GetFileContentResponseBody.js +90 -0
- package/dist/models/GetFileContentResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +4 -0
- package/dist/models/model.js +14 -6
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1251 -72
- package/src/models/GetFileContentRequest.ts +31 -0
- package/src/models/GetFileContentResponse.ts +40 -0
- package/src/models/GetFileContentResponseBody.ts +95 -0
- package/src/models/model.ts +4 -0
package/dist/client.d.ts
CHANGED
|
@@ -116,6 +116,24 @@ export default class Client extends OpenApi {
|
|
|
116
116
|
* @returns GetEssayCorrectionTaskResponse
|
|
117
117
|
*/
|
|
118
118
|
getEssayCorrectionTask(workspaceId: string, request: $_model.GetEssayCorrectionTaskRequest): Promise<$_model.GetEssayCorrectionTaskResponse>;
|
|
119
|
+
/**
|
|
120
|
+
* 获取文件内容
|
|
121
|
+
*
|
|
122
|
+
* @param request - GetFileContentRequest
|
|
123
|
+
* @param headers - map
|
|
124
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
125
|
+
* @returns GetFileContentResponse
|
|
126
|
+
*/
|
|
127
|
+
getFileContentWithOptions(workspaceId: string, request: $_model.GetFileContentRequest, headers: {
|
|
128
|
+
[key: string]: string;
|
|
129
|
+
}, runtime: $dara.RuntimeOptions): Promise<$_model.GetFileContentResponse>;
|
|
130
|
+
/**
|
|
131
|
+
* 获取文件内容
|
|
132
|
+
*
|
|
133
|
+
* @param request - GetFileContentRequest
|
|
134
|
+
* @returns GetFileContentResponse
|
|
135
|
+
*/
|
|
136
|
+
getFileContent(workspaceId: string, request: $_model.GetFileContentRequest): Promise<$_model.GetFileContentResponse>;
|
|
119
137
|
/**
|
|
120
138
|
* 获取挖掘分析任务结果
|
|
121
139
|
*
|
|
@@ -221,6 +239,17 @@ export default class Client extends OpenApi {
|
|
|
221
239
|
* @returns ListHotTopicSummariesResponse
|
|
222
240
|
*/
|
|
223
241
|
listHotTopicSummaries(workspaceId: string, request: $_model.ListHotTopicSummariesRequest): Promise<$_model.ListHotTopicSummariesResponse>;
|
|
242
|
+
/**
|
|
243
|
+
* 企业VOC分析
|
|
244
|
+
*
|
|
245
|
+
* @param tmpReq - RunEnterpriseVocAnalysisRequest
|
|
246
|
+
* @param headers - map
|
|
247
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
248
|
+
* @returns RunEnterpriseVocAnalysisResponse
|
|
249
|
+
*/
|
|
250
|
+
runEnterpriseVocAnalysisWithSSE(workspaceId: string, tmpReq: $_model.RunEnterpriseVocAnalysisRequest, headers: {
|
|
251
|
+
[key: string]: string;
|
|
252
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunEnterpriseVocAnalysisResponse, any, unknown>;
|
|
224
253
|
/**
|
|
225
254
|
* 企业VOC分析
|
|
226
255
|
*
|
|
@@ -239,6 +268,17 @@ export default class Client extends OpenApi {
|
|
|
239
268
|
* @returns RunEnterpriseVocAnalysisResponse
|
|
240
269
|
*/
|
|
241
270
|
runEnterpriseVocAnalysis(workspaceId: string, request: $_model.RunEnterpriseVocAnalysisRequest): Promise<$_model.RunEnterpriseVocAnalysisResponse>;
|
|
271
|
+
/**
|
|
272
|
+
* 作业批改
|
|
273
|
+
*
|
|
274
|
+
* @param request - RunEssayCorrectionRequest
|
|
275
|
+
* @param headers - map
|
|
276
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
277
|
+
* @returns RunEssayCorrectionResponse
|
|
278
|
+
*/
|
|
279
|
+
runEssayCorrectionWithSSE(workspaceId: string, request: $_model.RunEssayCorrectionRequest, headers: {
|
|
280
|
+
[key: string]: string;
|
|
281
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunEssayCorrectionResponse, any, unknown>;
|
|
242
282
|
/**
|
|
243
283
|
* 作业批改
|
|
244
284
|
*
|
|
@@ -257,6 +297,17 @@ export default class Client extends OpenApi {
|
|
|
257
297
|
* @returns RunEssayCorrectionResponse
|
|
258
298
|
*/
|
|
259
299
|
runEssayCorrection(workspaceId: string, request: $_model.RunEssayCorrectionRequest): Promise<$_model.RunEssayCorrectionResponse>;
|
|
300
|
+
/**
|
|
301
|
+
* 轻应用-热点播报-问答
|
|
302
|
+
*
|
|
303
|
+
* @param tmpReq - RunHotTopicChatRequest
|
|
304
|
+
* @param headers - map
|
|
305
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
306
|
+
* @returns RunHotTopicChatResponse
|
|
307
|
+
*/
|
|
308
|
+
runHotTopicChatWithSSE(workspaceId: string, tmpReq: $_model.RunHotTopicChatRequest, headers: {
|
|
309
|
+
[key: string]: string;
|
|
310
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunHotTopicChatResponse, any, unknown>;
|
|
260
311
|
/**
|
|
261
312
|
* 轻应用-热点播报-问答
|
|
262
313
|
*
|
|
@@ -275,6 +326,17 @@ export default class Client extends OpenApi {
|
|
|
275
326
|
* @returns RunHotTopicChatResponse
|
|
276
327
|
*/
|
|
277
328
|
runHotTopicChat(workspaceId: string, request: $_model.RunHotTopicChatRequest): Promise<$_model.RunHotTopicChatResponse>;
|
|
329
|
+
/**
|
|
330
|
+
* 轻应用-热点播报-热点摘要生成
|
|
331
|
+
*
|
|
332
|
+
* @param tmpReq - RunHotTopicSummaryRequest
|
|
333
|
+
* @param headers - map
|
|
334
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
335
|
+
* @returns RunHotTopicSummaryResponse
|
|
336
|
+
*/
|
|
337
|
+
runHotTopicSummaryWithSSE(workspaceId: string, tmpReq: $_model.RunHotTopicSummaryRequest, headers: {
|
|
338
|
+
[key: string]: string;
|
|
339
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunHotTopicSummaryResponse, any, unknown>;
|
|
278
340
|
/**
|
|
279
341
|
* 轻应用-热点播报-热点摘要生成
|
|
280
342
|
*
|
|
@@ -293,6 +355,17 @@ export default class Client extends OpenApi {
|
|
|
293
355
|
* @returns RunHotTopicSummaryResponse
|
|
294
356
|
*/
|
|
295
357
|
runHotTopicSummary(workspaceId: string, request: $_model.RunHotTopicSummaryRequest): Promise<$_model.RunHotTopicSummaryResponse>;
|
|
358
|
+
/**
|
|
359
|
+
* 营销信息抽取服务
|
|
360
|
+
*
|
|
361
|
+
* @param tmpReq - RunMarketingInformationExtractRequest
|
|
362
|
+
* @param headers - map
|
|
363
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
364
|
+
* @returns RunMarketingInformationExtractResponse
|
|
365
|
+
*/
|
|
366
|
+
runMarketingInformationExtractWithSSE(workspaceId: string, tmpReq: $_model.RunMarketingInformationExtractRequest, headers: {
|
|
367
|
+
[key: string]: string;
|
|
368
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunMarketingInformationExtractResponse, any, unknown>;
|
|
296
369
|
/**
|
|
297
370
|
* 营销信息抽取服务
|
|
298
371
|
*
|
|
@@ -311,6 +384,17 @@ export default class Client extends OpenApi {
|
|
|
311
384
|
* @returns RunMarketingInformationExtractResponse
|
|
312
385
|
*/
|
|
313
386
|
runMarketingInformationExtract(workspaceId: string, request: $_model.RunMarketingInformationExtractRequest): Promise<$_model.RunMarketingInformationExtractResponse>;
|
|
387
|
+
/**
|
|
388
|
+
* 营销文案写作服务
|
|
389
|
+
*
|
|
390
|
+
* @param request - RunMarketingInformationWritingRequest
|
|
391
|
+
* @param headers - map
|
|
392
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
393
|
+
* @returns RunMarketingInformationWritingResponse
|
|
394
|
+
*/
|
|
395
|
+
runMarketingInformationWritingWithSSE(workspaceId: string, request: $_model.RunMarketingInformationWritingRequest, headers: {
|
|
396
|
+
[key: string]: string;
|
|
397
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunMarketingInformationWritingResponse, any, unknown>;
|
|
314
398
|
/**
|
|
315
399
|
* 营销文案写作服务
|
|
316
400
|
*
|
|
@@ -329,6 +413,17 @@ export default class Client extends OpenApi {
|
|
|
329
413
|
* @returns RunMarketingInformationWritingResponse
|
|
330
414
|
*/
|
|
331
415
|
runMarketingInformationWriting(workspaceId: string, request: $_model.RunMarketingInformationWritingRequest): Promise<$_model.RunMarketingInformationWritingResponse>;
|
|
416
|
+
/**
|
|
417
|
+
* 轻应用-网络内容审核
|
|
418
|
+
*
|
|
419
|
+
* @param tmpReq - RunNetworkContentAuditRequest
|
|
420
|
+
* @param headers - map
|
|
421
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
422
|
+
* @returns RunNetworkContentAuditResponse
|
|
423
|
+
*/
|
|
424
|
+
runNetworkContentAuditWithSSE(workspaceId: string, tmpReq: $_model.RunNetworkContentAuditRequest, headers: {
|
|
425
|
+
[key: string]: string;
|
|
426
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunNetworkContentAuditResponse, any, unknown>;
|
|
332
427
|
/**
|
|
333
428
|
* 轻应用-网络内容审核
|
|
334
429
|
*
|
|
@@ -347,6 +442,17 @@ export default class Client extends OpenApi {
|
|
|
347
442
|
* @returns RunNetworkContentAuditResponse
|
|
348
443
|
*/
|
|
349
444
|
runNetworkContentAudit(workspaceId: string, request: $_model.RunNetworkContentAuditRequest): Promise<$_model.RunNetworkContentAuditResponse>;
|
|
445
|
+
/**
|
|
446
|
+
* 作业批改
|
|
447
|
+
*
|
|
448
|
+
* @param request - RunOcrParseRequest
|
|
449
|
+
* @param headers - map
|
|
450
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
451
|
+
* @returns RunOcrParseResponse
|
|
452
|
+
*/
|
|
453
|
+
runOcrParseWithSSE(workspaceId: string, request: $_model.RunOcrParseRequest, headers: {
|
|
454
|
+
[key: string]: string;
|
|
455
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunOcrParseResponse, any, unknown>;
|
|
350
456
|
/**
|
|
351
457
|
* 作业批改
|
|
352
458
|
*
|
|
@@ -365,6 +471,17 @@ export default class Client extends OpenApi {
|
|
|
365
471
|
* @returns RunOcrParseResponse
|
|
366
472
|
*/
|
|
367
473
|
runOcrParse(workspaceId: string, request: $_model.RunOcrParseRequest): Promise<$_model.RunOcrParseResponse>;
|
|
474
|
+
/**
|
|
475
|
+
* 长剧本创作
|
|
476
|
+
*
|
|
477
|
+
* @param request - RunScriptChatRequest
|
|
478
|
+
* @param headers - map
|
|
479
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
480
|
+
* @returns RunScriptChatResponse
|
|
481
|
+
*/
|
|
482
|
+
runScriptChatWithSSE(workspaceId: string, request: $_model.RunScriptChatRequest, headers: {
|
|
483
|
+
[key: string]: string;
|
|
484
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunScriptChatResponse, any, unknown>;
|
|
368
485
|
/**
|
|
369
486
|
* 长剧本创作
|
|
370
487
|
*
|
|
@@ -383,6 +500,17 @@ export default class Client extends OpenApi {
|
|
|
383
500
|
* @returns RunScriptChatResponse
|
|
384
501
|
*/
|
|
385
502
|
runScriptChat(workspaceId: string, request: $_model.RunScriptChatRequest): Promise<$_model.RunScriptChatResponse>;
|
|
503
|
+
/**
|
|
504
|
+
* 剧本续写
|
|
505
|
+
*
|
|
506
|
+
* @param request - RunScriptContinueRequest
|
|
507
|
+
* @param headers - map
|
|
508
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
509
|
+
* @returns RunScriptContinueResponse
|
|
510
|
+
*/
|
|
511
|
+
runScriptContinueWithSSE(workspaceId: string, request: $_model.RunScriptContinueRequest, headers: {
|
|
512
|
+
[key: string]: string;
|
|
513
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunScriptContinueResponse, any, unknown>;
|
|
386
514
|
/**
|
|
387
515
|
* 剧本续写
|
|
388
516
|
*
|
|
@@ -401,6 +529,17 @@ export default class Client extends OpenApi {
|
|
|
401
529
|
* @returns RunScriptContinueResponse
|
|
402
530
|
*/
|
|
403
531
|
runScriptContinue(workspaceId: string, request: $_model.RunScriptContinueRequest): Promise<$_model.RunScriptContinueResponse>;
|
|
532
|
+
/**
|
|
533
|
+
* 剧本策划
|
|
534
|
+
*
|
|
535
|
+
* @param request - RunScriptPlanningRequest
|
|
536
|
+
* @param headers - map
|
|
537
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
538
|
+
* @returns RunScriptPlanningResponse
|
|
539
|
+
*/
|
|
540
|
+
runScriptPlanningWithSSE(workspaceId: string, request: $_model.RunScriptPlanningRequest, headers: {
|
|
541
|
+
[key: string]: string;
|
|
542
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunScriptPlanningResponse, any, unknown>;
|
|
404
543
|
/**
|
|
405
544
|
* 剧本策划
|
|
406
545
|
*
|
|
@@ -419,6 +558,17 @@ export default class Client extends OpenApi {
|
|
|
419
558
|
* @returns RunScriptPlanningResponse
|
|
420
559
|
*/
|
|
421
560
|
runScriptPlanning(workspaceId: string, request: $_model.RunScriptPlanningRequest): Promise<$_model.RunScriptPlanningResponse>;
|
|
561
|
+
/**
|
|
562
|
+
* 剧本对话内容的整理
|
|
563
|
+
*
|
|
564
|
+
* @param request - RunScriptRefineRequest
|
|
565
|
+
* @param headers - map
|
|
566
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
567
|
+
* @returns RunScriptRefineResponse
|
|
568
|
+
*/
|
|
569
|
+
runScriptRefineWithSSE(workspaceId: string, request: $_model.RunScriptRefineRequest, headers: {
|
|
570
|
+
[key: string]: string;
|
|
571
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunScriptRefineResponse, any, unknown>;
|
|
422
572
|
/**
|
|
423
573
|
* 剧本对话内容的整理
|
|
424
574
|
*
|
|
@@ -437,6 +587,17 @@ export default class Client extends OpenApi {
|
|
|
437
587
|
* @returns RunScriptRefineResponse
|
|
438
588
|
*/
|
|
439
589
|
runScriptRefine(workspaceId: string, request: $_model.RunScriptRefineRequest): Promise<$_model.RunScriptRefineResponse>;
|
|
590
|
+
/**
|
|
591
|
+
* 文体学习和写作推理服务
|
|
592
|
+
*
|
|
593
|
+
* @param tmpReq - RunStyleWritingRequest
|
|
594
|
+
* @param headers - map
|
|
595
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
596
|
+
* @returns RunStyleWritingResponse
|
|
597
|
+
*/
|
|
598
|
+
runStyleWritingWithSSE(workspaceId: string, tmpReq: $_model.RunStyleWritingRequest, headers: {
|
|
599
|
+
[key: string]: string;
|
|
600
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunStyleWritingResponse, any, unknown>;
|
|
440
601
|
/**
|
|
441
602
|
* 文体学习和写作推理服务
|
|
442
603
|
*
|
|
@@ -455,6 +616,17 @@ export default class Client extends OpenApi {
|
|
|
455
616
|
* @returns RunStyleWritingResponse
|
|
456
617
|
*/
|
|
457
618
|
runStyleWriting(workspaceId: string, request: $_model.RunStyleWritingRequest): Promise<$_model.RunStyleWritingResponse>;
|
|
619
|
+
/**
|
|
620
|
+
* 轻应用-标签挖掘
|
|
621
|
+
*
|
|
622
|
+
* @param tmpReq - RunTagMiningAnalysisRequest
|
|
623
|
+
* @param headers - map
|
|
624
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
625
|
+
* @returns RunTagMiningAnalysisResponse
|
|
626
|
+
*/
|
|
627
|
+
runTagMiningAnalysisWithSSE(workspaceId: string, tmpReq: $_model.RunTagMiningAnalysisRequest, headers: {
|
|
628
|
+
[key: string]: string;
|
|
629
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunTagMiningAnalysisResponse, any, unknown>;
|
|
458
630
|
/**
|
|
459
631
|
* 轻应用-标签挖掘
|
|
460
632
|
*
|
|
@@ -473,6 +645,17 @@ export default class Client extends OpenApi {
|
|
|
473
645
|
* @returns RunTagMiningAnalysisResponse
|
|
474
646
|
*/
|
|
475
647
|
runTagMiningAnalysis(workspaceId: string, request: $_model.RunTagMiningAnalysisRequest): Promise<$_model.RunTagMiningAnalysisResponse>;
|
|
648
|
+
/**
|
|
649
|
+
* 轻应用-视频理解
|
|
650
|
+
*
|
|
651
|
+
* @param tmpReq - RunVideoAnalysisRequest
|
|
652
|
+
* @param headers - map
|
|
653
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
654
|
+
* @returns RunVideoAnalysisResponse
|
|
655
|
+
*/
|
|
656
|
+
runVideoAnalysisWithSSE(workspaceId: string, tmpReq: $_model.RunVideoAnalysisRequest, headers: {
|
|
657
|
+
[key: string]: string;
|
|
658
|
+
}, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunVideoAnalysisResponse, any, unknown>;
|
|
476
659
|
/**
|
|
477
660
|
* 轻应用-视频理解
|
|
478
661
|
*
|