@alicloud/csas20230120 1.14.6 → 1.14.7
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/CreateWmEmbedTaskRequest.d.ts +112 -0
- package/dist/models/CreateWmEmbedTaskRequest.js +201 -1
- package/dist/models/CreateWmEmbedTaskRequest.js.map +1 -1
- package/dist/models/CreateWmEmbedTaskShrinkRequest.d.ts +1 -0
- package/dist/models/CreateWmEmbedTaskShrinkRequest.js +2 -0
- package/dist/models/CreateWmEmbedTaskShrinkRequest.js.map +1 -1
- package/dist/models/model.d.ts +6 -0
- package/dist/models/model.js +27 -15
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +8 -0
- package/src/models/CreateWmEmbedTaskRequest.ts +258 -0
- package/src/models/CreateWmEmbedTaskShrinkRequest.ts +3 -0
- package/src/models/model.ts +6 -0
package/dist/client.js
CHANGED
|
@@ -917,6 +917,9 @@ class Client extends openapi_core_1.default {
|
|
|
917
917
|
if (!$dara.isNull(tmpReq.documentControl)) {
|
|
918
918
|
request.documentControlShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.documentControl, "DocumentControl", "json");
|
|
919
919
|
}
|
|
920
|
+
if (!$dara.isNull(tmpReq.imageControl)) {
|
|
921
|
+
request.imageControlShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.imageControl, "ImageControl", "json");
|
|
922
|
+
}
|
|
920
923
|
let query = {};
|
|
921
924
|
if (!$dara.isNull(request.csvControlShrink)) {
|
|
922
925
|
query["CsvControl"] = request.csvControlShrink;
|
|
@@ -931,6 +934,9 @@ class Client extends openapi_core_1.default {
|
|
|
931
934
|
if (!$dara.isNull(request.filename)) {
|
|
932
935
|
body["Filename"] = request.filename;
|
|
933
936
|
}
|
|
937
|
+
if (!$dara.isNull(request.imageControlShrink)) {
|
|
938
|
+
body["ImageControl"] = request.imageControlShrink;
|
|
939
|
+
}
|
|
934
940
|
if (!$dara.isNull(request.imageEmbedJpegQuality)) {
|
|
935
941
|
body["ImageEmbedJpegQuality"] = request.imageEmbedJpegQuality;
|
|
936
942
|
}
|