@alicloud/aimiaobi20230801 1.37.1 → 1.37.2
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 +6 -0
- package/dist/client.js.map +1 -1
- package/dist/models/RunTextPolishingRequest.d.ts +1 -0
- package/dist/models/RunTextPolishingRequest.js +2 -0
- package/dist/models/RunTextPolishingRequest.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +8 -0
- package/src/models/RunTextPolishingRequest.ts +3 -0
package/dist/client.js
CHANGED
|
@@ -10350,6 +10350,9 @@ 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
|
}
|
|
@@ -10406,6 +10409,9 @@ class Client extends openapi_core_1.default {
|
|
|
10406
10409
|
if (!$dara.isNull(request.content)) {
|
|
10407
10410
|
body["Content"] = request.content;
|
|
10408
10411
|
}
|
|
10412
|
+
if (!$dara.isNull(request.originContent)) {
|
|
10413
|
+
body["OriginContent"] = request.originContent;
|
|
10414
|
+
}
|
|
10409
10415
|
if (!$dara.isNull(request.prompt)) {
|
|
10410
10416
|
body["Prompt"] = request.prompt;
|
|
10411
10417
|
}
|