@alicloud/aimiaobi20230801 1.3.0 → 1.3.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 +91 -90
- package/dist/client.js +20 -2
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +97 -90
package/dist/client.d.ts
CHANGED
|
@@ -35,11 +35,11 @@ export declare class CancelAsyncTaskResponseBody extends $tea.Model {
|
|
|
35
35
|
});
|
|
36
36
|
}
|
|
37
37
|
export declare class CancelAsyncTaskResponse extends $tea.Model {
|
|
38
|
-
headers
|
|
38
|
+
headers?: {
|
|
39
39
|
[key: string]: string;
|
|
40
40
|
};
|
|
41
|
-
statusCode
|
|
42
|
-
body
|
|
41
|
+
statusCode?: number;
|
|
42
|
+
body?: CancelAsyncTaskResponseBody;
|
|
43
43
|
static names(): {
|
|
44
44
|
[key: string]: string;
|
|
45
45
|
};
|
|
@@ -108,11 +108,11 @@ export declare class CreateGeneratedContentResponseBody extends $tea.Model {
|
|
|
108
108
|
});
|
|
109
109
|
}
|
|
110
110
|
export declare class CreateGeneratedContentResponse extends $tea.Model {
|
|
111
|
-
headers
|
|
111
|
+
headers?: {
|
|
112
112
|
[key: string]: string;
|
|
113
113
|
};
|
|
114
|
-
statusCode
|
|
115
|
-
body
|
|
114
|
+
statusCode?: number;
|
|
115
|
+
body?: CreateGeneratedContentResponseBody;
|
|
116
116
|
static names(): {
|
|
117
117
|
[key: string]: string;
|
|
118
118
|
};
|
|
@@ -153,11 +153,11 @@ export declare class CreateTokenResponseBody extends $tea.Model {
|
|
|
153
153
|
});
|
|
154
154
|
}
|
|
155
155
|
export declare class CreateTokenResponse extends $tea.Model {
|
|
156
|
-
headers
|
|
156
|
+
headers?: {
|
|
157
157
|
[key: string]: string;
|
|
158
158
|
};
|
|
159
|
-
statusCode
|
|
160
|
-
body
|
|
159
|
+
statusCode?: number;
|
|
160
|
+
body?: CreateTokenResponseBody;
|
|
161
161
|
static names(): {
|
|
162
162
|
[key: string]: string;
|
|
163
163
|
};
|
|
@@ -199,11 +199,11 @@ export declare class DeleteGeneratedContentResponseBody extends $tea.Model {
|
|
|
199
199
|
});
|
|
200
200
|
}
|
|
201
201
|
export declare class DeleteGeneratedContentResponse extends $tea.Model {
|
|
202
|
-
headers
|
|
202
|
+
headers?: {
|
|
203
203
|
[key: string]: string;
|
|
204
204
|
};
|
|
205
|
-
statusCode
|
|
206
|
-
body
|
|
205
|
+
statusCode?: number;
|
|
206
|
+
body?: DeleteGeneratedContentResponseBody;
|
|
207
207
|
static names(): {
|
|
208
208
|
[key: string]: string;
|
|
209
209
|
};
|
|
@@ -245,11 +245,11 @@ export declare class DeleteMaterialByIdResponseBody extends $tea.Model {
|
|
|
245
245
|
});
|
|
246
246
|
}
|
|
247
247
|
export declare class DeleteMaterialByIdResponse extends $tea.Model {
|
|
248
|
-
headers
|
|
248
|
+
headers?: {
|
|
249
249
|
[key: string]: string;
|
|
250
250
|
};
|
|
251
|
-
statusCode
|
|
252
|
-
body
|
|
251
|
+
statusCode?: number;
|
|
252
|
+
body?: DeleteMaterialByIdResponseBody;
|
|
253
253
|
static names(): {
|
|
254
254
|
[key: string]: string;
|
|
255
255
|
};
|
|
@@ -291,11 +291,11 @@ export declare class ExportGeneratedContentResponseBody extends $tea.Model {
|
|
|
291
291
|
});
|
|
292
292
|
}
|
|
293
293
|
export declare class ExportGeneratedContentResponse extends $tea.Model {
|
|
294
|
-
headers
|
|
294
|
+
headers?: {
|
|
295
295
|
[key: string]: string;
|
|
296
296
|
};
|
|
297
|
-
statusCode
|
|
298
|
-
body
|
|
297
|
+
statusCode?: number;
|
|
298
|
+
body?: ExportGeneratedContentResponseBody;
|
|
299
299
|
static names(): {
|
|
300
300
|
[key: string]: string;
|
|
301
301
|
};
|
|
@@ -361,11 +361,11 @@ export declare class FeedbackDialogueResponseBody extends $tea.Model {
|
|
|
361
361
|
});
|
|
362
362
|
}
|
|
363
363
|
export declare class FeedbackDialogueResponse extends $tea.Model {
|
|
364
|
-
headers
|
|
364
|
+
headers?: {
|
|
365
365
|
[key: string]: string;
|
|
366
366
|
};
|
|
367
|
-
statusCode
|
|
368
|
-
body
|
|
367
|
+
statusCode?: number;
|
|
368
|
+
body?: FeedbackDialogueResponseBody;
|
|
369
369
|
static names(): {
|
|
370
370
|
[key: string]: string;
|
|
371
371
|
};
|
|
@@ -422,11 +422,11 @@ export declare class FetchImageTaskResponseBody extends $tea.Model {
|
|
|
422
422
|
});
|
|
423
423
|
}
|
|
424
424
|
export declare class FetchImageTaskResponse extends $tea.Model {
|
|
425
|
-
headers
|
|
425
|
+
headers?: {
|
|
426
426
|
[key: string]: string;
|
|
427
427
|
};
|
|
428
|
-
statusCode
|
|
429
|
-
body
|
|
428
|
+
statusCode?: number;
|
|
429
|
+
body?: FetchImageTaskResponseBody;
|
|
430
430
|
static names(): {
|
|
431
431
|
[key: string]: string;
|
|
432
432
|
};
|
|
@@ -440,6 +440,7 @@ export declare class FetchImageTaskResponse extends $tea.Model {
|
|
|
440
440
|
export declare class GenerateFileUrlByKeyRequest extends $tea.Model {
|
|
441
441
|
agentKey?: string;
|
|
442
442
|
fileKey?: string;
|
|
443
|
+
fileName?: string;
|
|
443
444
|
static names(): {
|
|
444
445
|
[key: string]: string;
|
|
445
446
|
};
|
|
@@ -468,11 +469,11 @@ export declare class GenerateFileUrlByKeyResponseBody extends $tea.Model {
|
|
|
468
469
|
});
|
|
469
470
|
}
|
|
470
471
|
export declare class GenerateFileUrlByKeyResponse extends $tea.Model {
|
|
471
|
-
headers
|
|
472
|
+
headers?: {
|
|
472
473
|
[key: string]: string;
|
|
473
474
|
};
|
|
474
|
-
statusCode
|
|
475
|
-
body
|
|
475
|
+
statusCode?: number;
|
|
476
|
+
body?: GenerateFileUrlByKeyResponseBody;
|
|
476
477
|
static names(): {
|
|
477
478
|
[key: string]: string;
|
|
478
479
|
};
|
|
@@ -533,11 +534,11 @@ export declare class GenerateImageTaskResponseBody extends $tea.Model {
|
|
|
533
534
|
});
|
|
534
535
|
}
|
|
535
536
|
export declare class GenerateImageTaskResponse extends $tea.Model {
|
|
536
|
-
headers
|
|
537
|
+
headers?: {
|
|
537
538
|
[key: string]: string;
|
|
538
539
|
};
|
|
539
|
-
statusCode
|
|
540
|
-
body
|
|
540
|
+
statusCode?: number;
|
|
541
|
+
body?: GenerateImageTaskResponseBody;
|
|
541
542
|
static names(): {
|
|
542
543
|
[key: string]: string;
|
|
543
544
|
};
|
|
@@ -580,11 +581,11 @@ export declare class GenerateUploadConfigResponseBody extends $tea.Model {
|
|
|
580
581
|
});
|
|
581
582
|
}
|
|
582
583
|
export declare class GenerateUploadConfigResponse extends $tea.Model {
|
|
583
|
-
headers
|
|
584
|
+
headers?: {
|
|
584
585
|
[key: string]: string;
|
|
585
586
|
};
|
|
586
|
-
statusCode
|
|
587
|
-
body
|
|
587
|
+
statusCode?: number;
|
|
588
|
+
body?: GenerateUploadConfigResponseBody;
|
|
588
589
|
static names(): {
|
|
589
590
|
[key: string]: string;
|
|
590
591
|
};
|
|
@@ -639,11 +640,11 @@ export declare class GenerateViewPointResponseBody extends $tea.Model {
|
|
|
639
640
|
});
|
|
640
641
|
}
|
|
641
642
|
export declare class GenerateViewPointResponse extends $tea.Model {
|
|
642
|
-
headers
|
|
643
|
+
headers?: {
|
|
643
644
|
[key: string]: string;
|
|
644
645
|
};
|
|
645
|
-
statusCode
|
|
646
|
-
body
|
|
646
|
+
statusCode?: number;
|
|
647
|
+
body?: GenerateViewPointResponseBody;
|
|
647
648
|
static names(): {
|
|
648
649
|
[key: string]: string;
|
|
649
650
|
};
|
|
@@ -685,11 +686,11 @@ export declare class GetDataSourceOrderConfigResponseBody extends $tea.Model {
|
|
|
685
686
|
});
|
|
686
687
|
}
|
|
687
688
|
export declare class GetDataSourceOrderConfigResponse extends $tea.Model {
|
|
688
|
-
headers
|
|
689
|
+
headers?: {
|
|
689
690
|
[key: string]: string;
|
|
690
691
|
};
|
|
691
|
-
statusCode
|
|
692
|
-
body
|
|
692
|
+
statusCode?: number;
|
|
693
|
+
body?: GetDataSourceOrderConfigResponseBody;
|
|
693
694
|
static names(): {
|
|
694
695
|
[key: string]: string;
|
|
695
696
|
};
|
|
@@ -731,11 +732,11 @@ export declare class GetGeneratedContentResponseBody extends $tea.Model {
|
|
|
731
732
|
});
|
|
732
733
|
}
|
|
733
734
|
export declare class GetGeneratedContentResponse extends $tea.Model {
|
|
734
|
-
headers
|
|
735
|
+
headers?: {
|
|
735
736
|
[key: string]: string;
|
|
736
737
|
};
|
|
737
|
-
statusCode
|
|
738
|
-
body
|
|
738
|
+
statusCode?: number;
|
|
739
|
+
body?: GetGeneratedContentResponseBody;
|
|
739
740
|
static names(): {
|
|
740
741
|
[key: string]: string;
|
|
741
742
|
};
|
|
@@ -777,11 +778,11 @@ export declare class GetMaterialByIdResponseBody extends $tea.Model {
|
|
|
777
778
|
});
|
|
778
779
|
}
|
|
779
780
|
export declare class GetMaterialByIdResponse extends $tea.Model {
|
|
780
|
-
headers
|
|
781
|
+
headers?: {
|
|
781
782
|
[key: string]: string;
|
|
782
783
|
};
|
|
783
|
-
statusCode
|
|
784
|
-
body
|
|
784
|
+
statusCode?: number;
|
|
785
|
+
body?: GetMaterialByIdResponseBody;
|
|
785
786
|
static names(): {
|
|
786
787
|
[key: string]: string;
|
|
787
788
|
};
|
|
@@ -822,11 +823,11 @@ export declare class GetPropertiesResponseBody extends $tea.Model {
|
|
|
822
823
|
});
|
|
823
824
|
}
|
|
824
825
|
export declare class GetPropertiesResponse extends $tea.Model {
|
|
825
|
-
headers
|
|
826
|
+
headers?: {
|
|
826
827
|
[key: string]: string;
|
|
827
828
|
};
|
|
828
|
-
statusCode
|
|
829
|
-
body
|
|
829
|
+
statusCode?: number;
|
|
830
|
+
body?: GetPropertiesResponseBody;
|
|
830
831
|
static names(): {
|
|
831
832
|
[key: string]: string;
|
|
832
833
|
};
|
|
@@ -902,11 +903,11 @@ export declare class ListAsyncTasksResponseBody extends $tea.Model {
|
|
|
902
903
|
});
|
|
903
904
|
}
|
|
904
905
|
export declare class ListAsyncTasksResponse extends $tea.Model {
|
|
905
|
-
headers
|
|
906
|
+
headers?: {
|
|
906
907
|
[key: string]: string;
|
|
907
908
|
};
|
|
908
|
-
statusCode
|
|
909
|
-
body
|
|
909
|
+
statusCode?: number;
|
|
910
|
+
body?: ListAsyncTasksResponseBody;
|
|
910
911
|
static names(): {
|
|
911
912
|
[key: string]: string;
|
|
912
913
|
};
|
|
@@ -948,11 +949,11 @@ export declare class ListBuildConfigsResponseBody extends $tea.Model {
|
|
|
948
949
|
});
|
|
949
950
|
}
|
|
950
951
|
export declare class ListBuildConfigsResponse extends $tea.Model {
|
|
951
|
-
headers
|
|
952
|
+
headers?: {
|
|
952
953
|
[key: string]: string;
|
|
953
954
|
};
|
|
954
|
-
statusCode
|
|
955
|
-
body
|
|
955
|
+
statusCode?: number;
|
|
956
|
+
body?: ListBuildConfigsResponseBody;
|
|
956
957
|
static names(): {
|
|
957
958
|
[key: string]: string;
|
|
958
959
|
};
|
|
@@ -1002,11 +1003,11 @@ export declare class ListDialoguesResponseBody extends $tea.Model {
|
|
|
1002
1003
|
});
|
|
1003
1004
|
}
|
|
1004
1005
|
export declare class ListDialoguesResponse extends $tea.Model {
|
|
1005
|
-
headers
|
|
1006
|
+
headers?: {
|
|
1006
1007
|
[key: string]: string;
|
|
1007
1008
|
};
|
|
1008
|
-
statusCode
|
|
1009
|
-
body
|
|
1009
|
+
statusCode?: number;
|
|
1010
|
+
body?: ListDialoguesResponseBody;
|
|
1010
1011
|
static names(): {
|
|
1011
1012
|
[key: string]: string;
|
|
1012
1013
|
};
|
|
@@ -1056,11 +1057,11 @@ export declare class ListGeneratedContentsResponseBody extends $tea.Model {
|
|
|
1056
1057
|
});
|
|
1057
1058
|
}
|
|
1058
1059
|
export declare class ListGeneratedContentsResponse extends $tea.Model {
|
|
1059
|
-
headers
|
|
1060
|
+
headers?: {
|
|
1060
1061
|
[key: string]: string;
|
|
1061
1062
|
};
|
|
1062
|
-
statusCode
|
|
1063
|
-
body
|
|
1063
|
+
statusCode?: number;
|
|
1064
|
+
body?: ListGeneratedContentsResponseBody;
|
|
1064
1065
|
static names(): {
|
|
1065
1066
|
[key: string]: string;
|
|
1066
1067
|
};
|
|
@@ -1121,11 +1122,11 @@ export declare class ListHotNewsWithTypeResponseBody extends $tea.Model {
|
|
|
1121
1122
|
});
|
|
1122
1123
|
}
|
|
1123
1124
|
export declare class ListHotNewsWithTypeResponse extends $tea.Model {
|
|
1124
|
-
headers
|
|
1125
|
+
headers?: {
|
|
1125
1126
|
[key: string]: string;
|
|
1126
1127
|
};
|
|
1127
|
-
statusCode
|
|
1128
|
-
body
|
|
1128
|
+
statusCode?: number;
|
|
1129
|
+
body?: ListHotNewsWithTypeResponseBody;
|
|
1129
1130
|
static names(): {
|
|
1130
1131
|
[key: string]: string;
|
|
1131
1132
|
};
|
|
@@ -1211,11 +1212,11 @@ export declare class ListMaterialDocumentsResponseBody extends $tea.Model {
|
|
|
1211
1212
|
});
|
|
1212
1213
|
}
|
|
1213
1214
|
export declare class ListMaterialDocumentsResponse extends $tea.Model {
|
|
1214
|
-
headers
|
|
1215
|
+
headers?: {
|
|
1215
1216
|
[key: string]: string;
|
|
1216
1217
|
};
|
|
1217
|
-
statusCode
|
|
1218
|
-
body
|
|
1218
|
+
statusCode?: number;
|
|
1219
|
+
body?: ListMaterialDocumentsResponseBody;
|
|
1219
1220
|
static names(): {
|
|
1220
1221
|
[key: string]: string;
|
|
1221
1222
|
};
|
|
@@ -1256,11 +1257,11 @@ export declare class ListVersionsResponseBody extends $tea.Model {
|
|
|
1256
1257
|
});
|
|
1257
1258
|
}
|
|
1258
1259
|
export declare class ListVersionsResponse extends $tea.Model {
|
|
1259
|
-
headers
|
|
1260
|
+
headers?: {
|
|
1260
1261
|
[key: string]: string;
|
|
1261
1262
|
};
|
|
1262
|
-
statusCode
|
|
1263
|
-
body
|
|
1263
|
+
statusCode?: number;
|
|
1264
|
+
body?: ListVersionsResponseBody;
|
|
1264
1265
|
static names(): {
|
|
1265
1266
|
[key: string]: string;
|
|
1266
1267
|
};
|
|
@@ -1302,11 +1303,11 @@ export declare class QueryAsyncTaskResponseBody extends $tea.Model {
|
|
|
1302
1303
|
});
|
|
1303
1304
|
}
|
|
1304
1305
|
export declare class QueryAsyncTaskResponse extends $tea.Model {
|
|
1305
|
-
headers
|
|
1306
|
+
headers?: {
|
|
1306
1307
|
[key: string]: string;
|
|
1307
1308
|
};
|
|
1308
|
-
statusCode
|
|
1309
|
-
body
|
|
1309
|
+
statusCode?: number;
|
|
1310
|
+
body?: QueryAsyncTaskResponseBody;
|
|
1310
1311
|
static names(): {
|
|
1311
1312
|
[key: string]: string;
|
|
1312
1313
|
};
|
|
@@ -1363,11 +1364,11 @@ export declare class SaveDataSourceOrderConfigResponseBody extends $tea.Model {
|
|
|
1363
1364
|
});
|
|
1364
1365
|
}
|
|
1365
1366
|
export declare class SaveDataSourceOrderConfigResponse extends $tea.Model {
|
|
1366
|
-
headers
|
|
1367
|
+
headers?: {
|
|
1367
1368
|
[key: string]: string;
|
|
1368
1369
|
};
|
|
1369
|
-
statusCode
|
|
1370
|
-
body
|
|
1370
|
+
statusCode?: number;
|
|
1371
|
+
body?: SaveDataSourceOrderConfigResponseBody;
|
|
1371
1372
|
static names(): {
|
|
1372
1373
|
[key: string]: string;
|
|
1373
1374
|
};
|
|
@@ -1446,11 +1447,11 @@ export declare class SaveMaterialDocumentResponseBody extends $tea.Model {
|
|
|
1446
1447
|
});
|
|
1447
1448
|
}
|
|
1448
1449
|
export declare class SaveMaterialDocumentResponse extends $tea.Model {
|
|
1449
|
-
headers
|
|
1450
|
+
headers?: {
|
|
1450
1451
|
[key: string]: string;
|
|
1451
1452
|
};
|
|
1452
|
-
statusCode
|
|
1453
|
-
body
|
|
1453
|
+
statusCode?: number;
|
|
1454
|
+
body?: SaveMaterialDocumentResponseBody;
|
|
1454
1455
|
static names(): {
|
|
1455
1456
|
[key: string]: string;
|
|
1456
1457
|
};
|
|
@@ -1518,11 +1519,11 @@ export declare class SearchNewsResponseBody extends $tea.Model {
|
|
|
1518
1519
|
});
|
|
1519
1520
|
}
|
|
1520
1521
|
export declare class SearchNewsResponse extends $tea.Model {
|
|
1521
|
-
headers
|
|
1522
|
+
headers?: {
|
|
1522
1523
|
[key: string]: string;
|
|
1523
1524
|
};
|
|
1524
|
-
statusCode
|
|
1525
|
-
body
|
|
1525
|
+
statusCode?: number;
|
|
1526
|
+
body?: SearchNewsResponseBody;
|
|
1526
1527
|
static names(): {
|
|
1527
1528
|
[key: string]: string;
|
|
1528
1529
|
};
|
|
@@ -1567,11 +1568,11 @@ export declare class SubmitAsyncTaskResponseBody extends $tea.Model {
|
|
|
1567
1568
|
});
|
|
1568
1569
|
}
|
|
1569
1570
|
export declare class SubmitAsyncTaskResponse extends $tea.Model {
|
|
1570
|
-
headers
|
|
1571
|
+
headers?: {
|
|
1571
1572
|
[key: string]: string;
|
|
1572
1573
|
};
|
|
1573
|
-
statusCode
|
|
1574
|
-
body
|
|
1574
|
+
statusCode?: number;
|
|
1575
|
+
body?: SubmitAsyncTaskResponseBody;
|
|
1575
1576
|
static names(): {
|
|
1576
1577
|
[key: string]: string;
|
|
1577
1578
|
};
|
|
@@ -1636,11 +1637,11 @@ export declare class UpdateGeneratedContentResponseBody extends $tea.Model {
|
|
|
1636
1637
|
});
|
|
1637
1638
|
}
|
|
1638
1639
|
export declare class UpdateGeneratedContentResponse extends $tea.Model {
|
|
1639
|
-
headers
|
|
1640
|
+
headers?: {
|
|
1640
1641
|
[key: string]: string;
|
|
1641
1642
|
};
|
|
1642
|
-
statusCode
|
|
1643
|
-
body
|
|
1643
|
+
statusCode?: number;
|
|
1644
|
+
body?: UpdateGeneratedContentResponseBody;
|
|
1644
1645
|
static names(): {
|
|
1645
1646
|
[key: string]: string;
|
|
1646
1647
|
};
|
|
@@ -1719,11 +1720,11 @@ export declare class UpdateMaterialDocumentResponseBody extends $tea.Model {
|
|
|
1719
1720
|
});
|
|
1720
1721
|
}
|
|
1721
1722
|
export declare class UpdateMaterialDocumentResponse extends $tea.Model {
|
|
1722
|
-
headers
|
|
1723
|
+
headers?: {
|
|
1723
1724
|
[key: string]: string;
|
|
1724
1725
|
};
|
|
1725
|
-
statusCode
|
|
1726
|
-
body
|
|
1726
|
+
statusCode?: number;
|
|
1727
|
+
body?: UpdateMaterialDocumentResponseBody;
|
|
1727
1728
|
static names(): {
|
|
1728
1729
|
[key: string]: string;
|
|
1729
1730
|
};
|
package/dist/client.js
CHANGED
|
@@ -1,15 +1,28 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
2
14
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
3
15
|
if (mod && mod.__esModule) return mod;
|
|
4
16
|
var result = {};
|
|
5
|
-
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result
|
|
6
|
-
result
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
7
19
|
return result;
|
|
8
20
|
};
|
|
9
21
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
10
22
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
11
23
|
};
|
|
12
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
exports.SubmitAsyncTaskResponseBodyData = exports.SearchNewsResponseBodyData = exports.SaveDataSourceOrderConfigRequestUserConfigDataSourceList = exports.QueryAsyncTaskResponseBodyData = exports.ListVersionsResponseBodyData = exports.ListMaterialDocumentsResponseBodyData = exports.ListHotNewsWithTypeResponseBodyData = exports.ListHotNewsWithTypeResponseBodyDataNews = exports.ListGeneratedContentsResponseBodyData = exports.ListDialoguesResponseBodyData = exports.ListBuildConfigsResponseBodyData = exports.ListBuildConfigsResponseBodyDataKeywords = exports.ListAsyncTasksResponseBodyData = exports.GetPropertiesResponseBodyData = exports.GetPropertiesResponseBodyDataWanxiangImageStyleConfig = exports.GetPropertiesResponseBodyDataWanxiangImageSizeConfig = exports.GetPropertiesResponseBodyDataUserInfo = exports.GetPropertiesResponseBodyDataSearchSources = exports.GetPropertiesResponseBodyDataIntelligentSearchConfig = exports.GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSources = exports.GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamples = exports.GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamplesArticles = exports.GetPropertiesResponseBodyDataConsoleConfig = exports.GetMaterialByIdResponseBodyData = exports.GetGeneratedContentResponseBodyData = exports.GetDataSourceOrderConfigResponseBodyData = exports.GetDataSourceOrderConfigResponseBodyDataUserConfigDataSourceList = exports.GenerateViewPointResponseBodyData = exports.GenerateViewPointRequestReferenceData = exports.GenerateUploadConfigResponseBodyData = exports.GenerateImageTaskResponseBodyData = exports.GenerateImageTaskResponseBodyDataTaskList = exports.GenerateImageTaskRequestParagraphList = exports.FetchImageTaskResponseBodyData = exports.FetchImageTaskResponseBodyDataTaskInfoList = exports.FetchImageTaskResponseBodyDataTaskInfoListImageList = exports.CreateTokenResponseBodyData = exports.UpdateMaterialDocumentResponse = exports.UpdateMaterialDocumentResponseBody = exports.UpdateMaterialDocumentShrinkRequest = exports.UpdateMaterialDocumentRequest = exports.UpdateGeneratedContentResponse = exports.UpdateGeneratedContentResponseBody = exports.UpdateGeneratedContentShrinkRequest = exports.UpdateGeneratedContentRequest = exports.SubmitAsyncTaskResponse = exports.SubmitAsyncTaskResponseBody = exports.SubmitAsyncTaskRequest = exports.SearchNewsResponse = exports.SearchNewsResponseBody = exports.SearchNewsShrinkRequest = exports.SearchNewsRequest = exports.SaveMaterialDocumentResponse = exports.SaveMaterialDocumentResponseBody = exports.SaveMaterialDocumentShrinkRequest = exports.SaveMaterialDocumentRequest = exports.SaveDataSourceOrderConfigResponse = exports.SaveDataSourceOrderConfigResponseBody = exports.SaveDataSourceOrderConfigShrinkRequest = exports.SaveDataSourceOrderConfigRequest = exports.QueryAsyncTaskResponse = exports.QueryAsyncTaskResponseBody = exports.QueryAsyncTaskRequest = exports.ListVersionsResponse = exports.ListVersionsResponseBody = exports.ListVersionsRequest = exports.ListMaterialDocumentsResponse = exports.ListMaterialDocumentsResponseBody = exports.ListMaterialDocumentsShrinkRequest = exports.ListMaterialDocumentsRequest = exports.ListHotNewsWithTypeResponse = exports.ListHotNewsWithTypeResponseBody = exports.ListHotNewsWithTypeShrinkRequest = exports.ListHotNewsWithTypeRequest = exports.ListGeneratedContentsResponse = exports.ListGeneratedContentsResponseBody = exports.ListGeneratedContentsRequest = exports.ListDialoguesResponse = exports.ListDialoguesResponseBody = exports.ListDialoguesRequest = exports.ListBuildConfigsResponse = exports.ListBuildConfigsResponseBody = exports.ListBuildConfigsRequest = exports.ListAsyncTasksResponse = exports.ListAsyncTasksResponseBody = exports.ListAsyncTasksShrinkRequest = exports.ListAsyncTasksRequest = exports.GetPropertiesResponse = exports.GetPropertiesResponseBody = exports.GetPropertiesRequest = exports.GetMaterialByIdResponse = exports.GetMaterialByIdResponseBody = exports.GetMaterialByIdRequest = exports.GetGeneratedContentResponse = exports.GetGeneratedContentResponseBody = exports.GetGeneratedContentRequest = exports.GetDataSourceOrderConfigResponse = exports.GetDataSourceOrderConfigResponseBody = exports.GetDataSourceOrderConfigRequest = exports.GenerateViewPointResponse = exports.GenerateViewPointResponseBody = exports.GenerateViewPointShrinkRequest = exports.GenerateViewPointRequest = exports.GenerateUploadConfigResponse = exports.GenerateUploadConfigResponseBody = exports.GenerateUploadConfigRequest = exports.GenerateImageTaskResponse = exports.GenerateImageTaskResponseBody = exports.GenerateImageTaskShrinkRequest = exports.GenerateImageTaskRequest = exports.GenerateFileUrlByKeyResponse = exports.GenerateFileUrlByKeyResponseBody = exports.GenerateFileUrlByKeyRequest = exports.FetchImageTaskResponse = exports.FetchImageTaskResponseBody = exports.FetchImageTaskShrinkRequest = exports.FetchImageTaskRequest = exports.FeedbackDialogueResponse = exports.FeedbackDialogueResponseBody = exports.FeedbackDialogueShrinkRequest = exports.FeedbackDialogueRequest = exports.ExportGeneratedContentResponse = exports.ExportGeneratedContentResponseBody = exports.ExportGeneratedContentRequest = exports.DeleteMaterialByIdResponse = exports.DeleteMaterialByIdResponseBody = exports.DeleteMaterialByIdRequest = exports.DeleteGeneratedContentResponse = exports.DeleteGeneratedContentResponseBody = exports.DeleteGeneratedContentRequest = exports.CreateTokenResponse = exports.CreateTokenResponseBody = exports.CreateTokenRequest = exports.CreateGeneratedContentResponse = exports.CreateGeneratedContentResponseBody = exports.CreateGeneratedContentShrinkRequest = exports.CreateGeneratedContentRequest = exports.CancelAsyncTaskResponse = exports.CancelAsyncTaskResponseBody = exports.CancelAsyncTaskRequest = void 0;
|
|
13
26
|
// This file is auto-generated, don't edit it
|
|
14
27
|
/**
|
|
15
28
|
*
|
|
@@ -645,12 +658,14 @@ class GenerateFileUrlByKeyRequest extends $tea.Model {
|
|
|
645
658
|
return {
|
|
646
659
|
agentKey: 'AgentKey',
|
|
647
660
|
fileKey: 'FileKey',
|
|
661
|
+
fileName: 'FileName',
|
|
648
662
|
};
|
|
649
663
|
}
|
|
650
664
|
static types() {
|
|
651
665
|
return {
|
|
652
666
|
agentKey: 'string',
|
|
653
667
|
fileKey: 'string',
|
|
668
|
+
fileName: 'string',
|
|
654
669
|
};
|
|
655
670
|
}
|
|
656
671
|
}
|
|
@@ -3851,6 +3866,9 @@ class Client extends openapi_client_1.default {
|
|
|
3851
3866
|
if (!tea_util_1.default.isUnset(request.fileKey)) {
|
|
3852
3867
|
body["FileKey"] = request.fileKey;
|
|
3853
3868
|
}
|
|
3869
|
+
if (!tea_util_1.default.isUnset(request.fileName)) {
|
|
3870
|
+
body["FileName"] = request.fileName;
|
|
3871
|
+
}
|
|
3854
3872
|
let req = new $OpenApi.OpenApiRequest({
|
|
3855
3873
|
query: openapi_util_1.default.query(query),
|
|
3856
3874
|
body: openapi_util_1.default.parseToMap(body),
|