Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@huaweicloud/huaweicloud-sdk-ocr

Package Overview
Dependencies
Maintainers
2
Versions
166
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@huaweicloud/huaweicloud-sdk-ocr - npm Package Compare versions

Comparing version 3.1.22 to 3.1.23

4

package.json
{
"name": "@huaweicloud/huaweicloud-sdk-ocr",
"version": "3.1.22",
"version": "3.1.23",
"description": "Huaweicloud SDK for ocr",

@@ -17,4 +17,4 @@ "main": "huaweicloud-sdk-ocr.js",

"dependencies": {
"@huaweicloud/huaweicloud-sdk-core": "^3.1.22"
"@huaweicloud/huaweicloud-sdk-core": "^3.1.23"
}
}
export declare class TollInvoiceRequestBody {
image?: string;
url?: string;
private 'return_text_location'?;
constructor();
withImage(image: string): TollInvoiceRequestBody;
withUrl(url: string): TollInvoiceRequestBody;
withReturnTextLocation(returnTextLocation: boolean): TollInvoiceRequestBody;
set returnTextLocation(returnTextLocation: boolean | undefined);
get returnTextLocation(): boolean | undefined;
}

@@ -15,4 +15,18 @@ "use strict";

};
TollInvoiceRequestBody.prototype.withReturnTextLocation = function (returnTextLocation) {
this['return_text_location'] = returnTextLocation;
return this;
};
Object.defineProperty(TollInvoiceRequestBody.prototype, "returnTextLocation", {
get: function () {
return this['return_text_location'];
},
set: function (returnTextLocation) {
this['return_text_location'] = returnTextLocation;
},
enumerable: false,
configurable: true
});
return TollInvoiceRequestBody;
}());
exports.TollInvoiceRequestBody = TollInvoiceRequestBody;

@@ -12,2 +12,3 @@ export declare class TollInvoiceResult {

confidence?: object;
private 'text_location'?;
constructor();

@@ -28,2 +29,5 @@ withCode(code: string): TollInvoiceResult;

withConfidence(confidence: object): TollInvoiceResult;
withTextLocation(textLocation: object): TollInvoiceResult;
set textLocation(textLocation: object | undefined);
get textLocation(): object | undefined;
}

@@ -67,4 +67,18 @@ "use strict";

};
TollInvoiceResult.prototype.withTextLocation = function (textLocation) {
this['text_location'] = textLocation;
return this;
};
Object.defineProperty(TollInvoiceResult.prototype, "textLocation", {
get: function () {
return this['text_location'];
},
set: function (textLocation) {
this['text_location'] = textLocation;
},
enumerable: false,
configurable: true
});
return TollInvoiceResult;
}());
exports.TollInvoiceResult = TollInvoiceResult;
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc