@alicloud/aimiaobi20230801 1.20.5 → 1.20.6
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 +2 -0
- package/dist/client.js +7 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +10 -0
package/dist/client.d.ts
CHANGED
|
@@ -25827,6 +25827,7 @@ export declare class SubmitDocClusterTaskResponse extends $dara.Model {
|
|
|
25827
25827
|
});
|
|
25828
25828
|
}
|
|
25829
25829
|
export declare class SubmitEnterpriseVocAnalysisTaskRequest extends $dara.Model {
|
|
25830
|
+
apiKey?: string;
|
|
25830
25831
|
/**
|
|
25831
25832
|
* @remarks
|
|
25832
25833
|
* This parameter is required.
|
|
@@ -25883,6 +25884,7 @@ export declare class SubmitEnterpriseVocAnalysisTaskRequest extends $dara.Model
|
|
|
25883
25884
|
});
|
|
25884
25885
|
}
|
|
25885
25886
|
export declare class SubmitEnterpriseVocAnalysisTaskShrinkRequest extends $dara.Model {
|
|
25887
|
+
apiKey?: string;
|
|
25886
25888
|
/**
|
|
25887
25889
|
* @remarks
|
|
25888
25890
|
* This parameter is required.
|
package/dist/client.js
CHANGED
|
@@ -24538,6 +24538,7 @@ exports.SubmitDocClusterTaskResponse = SubmitDocClusterTaskResponse;
|
|
|
24538
24538
|
class SubmitEnterpriseVocAnalysisTaskRequest extends $dara.Model {
|
|
24539
24539
|
static names() {
|
|
24540
24540
|
return {
|
|
24541
|
+
apiKey: 'ApiKey',
|
|
24541
24542
|
contentTags: 'ContentTags',
|
|
24542
24543
|
contents: 'Contents',
|
|
24543
24544
|
fileKey: 'FileKey',
|
|
@@ -24552,6 +24553,7 @@ class SubmitEnterpriseVocAnalysisTaskRequest extends $dara.Model {
|
|
|
24552
24553
|
}
|
|
24553
24554
|
static types() {
|
|
24554
24555
|
return {
|
|
24556
|
+
apiKey: 'string',
|
|
24555
24557
|
contentTags: { 'type': 'array', 'itemType': SubmitEnterpriseVocAnalysisTaskRequestContentTags },
|
|
24556
24558
|
contents: { 'type': 'array', 'itemType': SubmitEnterpriseVocAnalysisTaskRequestContents },
|
|
24557
24559
|
fileKey: 'string',
|
|
@@ -24584,6 +24586,7 @@ exports.SubmitEnterpriseVocAnalysisTaskRequest = SubmitEnterpriseVocAnalysisTask
|
|
|
24584
24586
|
class SubmitEnterpriseVocAnalysisTaskShrinkRequest extends $dara.Model {
|
|
24585
24587
|
static names() {
|
|
24586
24588
|
return {
|
|
24589
|
+
apiKey: 'ApiKey',
|
|
24587
24590
|
contentTagsShrink: 'ContentTags',
|
|
24588
24591
|
contentsShrink: 'Contents',
|
|
24589
24592
|
fileKey: 'FileKey',
|
|
@@ -24598,6 +24601,7 @@ class SubmitEnterpriseVocAnalysisTaskShrinkRequest extends $dara.Model {
|
|
|
24598
24601
|
}
|
|
24599
24602
|
static types() {
|
|
24600
24603
|
return {
|
|
24604
|
+
apiKey: 'string',
|
|
24601
24605
|
contentTagsShrink: 'string',
|
|
24602
24606
|
contentsShrink: 'string',
|
|
24603
24607
|
fileKey: 'string',
|
|
@@ -32205,6 +32209,9 @@ class Client extends openapi_core_1.default {
|
|
|
32205
32209
|
request.filterTagsShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.filterTags, "FilterTags", "json");
|
|
32206
32210
|
}
|
|
32207
32211
|
let body = {};
|
|
32212
|
+
if (!$dara.isNull(request.apiKey)) {
|
|
32213
|
+
body["ApiKey"] = request.apiKey;
|
|
32214
|
+
}
|
|
32208
32215
|
if (!$dara.isNull(request.contentTagsShrink)) {
|
|
32209
32216
|
body["ContentTags"] = request.contentTagsShrink;
|
|
32210
32217
|
}
|