@alicloud/green20220302 2.2.2 → 2.2.4
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 +41 -0
- package/dist/client.js +335 -272
- package/dist/client.js.map +1 -1
- package/package.json +4 -4
- package/src/client.ts +72 -0
package/dist/client.d.ts
CHANGED
|
@@ -882,7 +882,22 @@ export declare class DescribeImageResultExtResponseBodyDataPublicFigure extends
|
|
|
882
882
|
[key: string]: any;
|
|
883
883
|
});
|
|
884
884
|
}
|
|
885
|
+
export declare class DescribeImageResultExtResponseBodyDataTextInImageCustomTexts extends $tea.Model {
|
|
886
|
+
keyWords?: string;
|
|
887
|
+
libId?: string;
|
|
888
|
+
libName?: string;
|
|
889
|
+
static names(): {
|
|
890
|
+
[key: string]: string;
|
|
891
|
+
};
|
|
892
|
+
static types(): {
|
|
893
|
+
[key: string]: any;
|
|
894
|
+
};
|
|
895
|
+
constructor(map?: {
|
|
896
|
+
[key: string]: any;
|
|
897
|
+
});
|
|
898
|
+
}
|
|
885
899
|
export declare class DescribeImageResultExtResponseBodyDataTextInImage extends $tea.Model {
|
|
900
|
+
customTexts?: DescribeImageResultExtResponseBodyDataTextInImageCustomTexts[];
|
|
886
901
|
ocrDatas?: string[];
|
|
887
902
|
riskWords?: string[];
|
|
888
903
|
static names(): {
|
|
@@ -994,6 +1009,31 @@ export declare class ImageAsyncModerationResponseBodyData extends $tea.Model {
|
|
|
994
1009
|
[key: string]: any;
|
|
995
1010
|
});
|
|
996
1011
|
}
|
|
1012
|
+
export declare class ImageModerationResponseBodyDataExtRecognition extends $tea.Model {
|
|
1013
|
+
classification?: string;
|
|
1014
|
+
confidence?: number;
|
|
1015
|
+
static names(): {
|
|
1016
|
+
[key: string]: string;
|
|
1017
|
+
};
|
|
1018
|
+
static types(): {
|
|
1019
|
+
[key: string]: any;
|
|
1020
|
+
};
|
|
1021
|
+
constructor(map?: {
|
|
1022
|
+
[key: string]: any;
|
|
1023
|
+
});
|
|
1024
|
+
}
|
|
1025
|
+
export declare class ImageModerationResponseBodyDataExt extends $tea.Model {
|
|
1026
|
+
recognition?: ImageModerationResponseBodyDataExtRecognition[];
|
|
1027
|
+
static names(): {
|
|
1028
|
+
[key: string]: string;
|
|
1029
|
+
};
|
|
1030
|
+
static types(): {
|
|
1031
|
+
[key: string]: any;
|
|
1032
|
+
};
|
|
1033
|
+
constructor(map?: {
|
|
1034
|
+
[key: string]: any;
|
|
1035
|
+
});
|
|
1036
|
+
}
|
|
997
1037
|
export declare class ImageModerationResponseBodyDataResult extends $tea.Model {
|
|
998
1038
|
confidence?: number;
|
|
999
1039
|
label?: string;
|
|
@@ -1009,6 +1049,7 @@ export declare class ImageModerationResponseBodyDataResult extends $tea.Model {
|
|
|
1009
1049
|
}
|
|
1010
1050
|
export declare class ImageModerationResponseBodyData extends $tea.Model {
|
|
1011
1051
|
dataId?: string;
|
|
1052
|
+
ext?: ImageModerationResponseBodyDataExt;
|
|
1012
1053
|
result?: ImageModerationResponseBodyDataResult[];
|
|
1013
1054
|
static names(): {
|
|
1014
1055
|
[key: string]: string;
|