@alicloud/aimiaobi20230801 1.37.1 → 1.37.3
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.js +12 -0
- package/dist/client.js.map +1 -1
- package/dist/models/RunTextPolishingRequest.d.ts +6 -0
- package/dist/models/RunTextPolishingRequest.js +4 -0
- package/dist/models/RunTextPolishingRequest.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +16 -0
- package/src/models/RunTextPolishingRequest.ts +10 -0
package/dist/client.js
CHANGED
|
@@ -10350,9 +10350,15 @@ class Client extends openapi_core_1.default {
|
|
|
10350
10350
|
if (!$dara.isNull(request.content)) {
|
|
10351
10351
|
body["Content"] = request.content;
|
|
10352
10352
|
}
|
|
10353
|
+
if (!$dara.isNull(request.originContent)) {
|
|
10354
|
+
body["OriginContent"] = request.originContent;
|
|
10355
|
+
}
|
|
10353
10356
|
if (!$dara.isNull(request.prompt)) {
|
|
10354
10357
|
body["Prompt"] = request.prompt;
|
|
10355
10358
|
}
|
|
10359
|
+
if (!$dara.isNull(request.taskId)) {
|
|
10360
|
+
body["TaskId"] = request.taskId;
|
|
10361
|
+
}
|
|
10356
10362
|
if (!$dara.isNull(request.workspaceId)) {
|
|
10357
10363
|
body["WorkspaceId"] = request.workspaceId;
|
|
10358
10364
|
}
|
|
@@ -10406,9 +10412,15 @@ class Client extends openapi_core_1.default {
|
|
|
10406
10412
|
if (!$dara.isNull(request.content)) {
|
|
10407
10413
|
body["Content"] = request.content;
|
|
10408
10414
|
}
|
|
10415
|
+
if (!$dara.isNull(request.originContent)) {
|
|
10416
|
+
body["OriginContent"] = request.originContent;
|
|
10417
|
+
}
|
|
10409
10418
|
if (!$dara.isNull(request.prompt)) {
|
|
10410
10419
|
body["Prompt"] = request.prompt;
|
|
10411
10420
|
}
|
|
10421
|
+
if (!$dara.isNull(request.taskId)) {
|
|
10422
|
+
body["TaskId"] = request.taskId;
|
|
10423
|
+
}
|
|
10412
10424
|
if (!$dara.isNull(request.workspaceId)) {
|
|
10413
10425
|
body["WorkspaceId"] = request.workspaceId;
|
|
10414
10426
|
}
|