aspose-barcode-cloud-node 24.12.0 → 25.2.0
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/LICENSE +1 -1
- package/README.md +27 -36
- package/dist/Configuration.d.ts +1 -1
- package/dist/api.d.ts +38 -161
- package/dist/aspose-barcode-cloud-node.cjs.development.js +916 -5351
- package/dist/aspose-barcode-cloud-node.cjs.development.js.map +1 -1
- package/dist/aspose-barcode-cloud-node.cjs.production.min.js +1 -1
- package/dist/aspose-barcode-cloud-node.cjs.production.min.js.map +1 -1
- package/dist/aspose-barcode-cloud-node.esm.js +900 -5291
- package/dist/aspose-barcode-cloud-node.esm.js.map +1 -1
- package/dist/httpClient.d.ts +2 -0
- package/dist/models.d.ts +397 -3127
- package/dist/multipart.d.ts +3 -3
- package/package.json +4 -4
package/dist/multipart.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { StringKeyWithStringValue } from 'httpClient';
|
|
2
2
|
export interface FormParamsType extends Array<Array<string>> {
|
|
3
3
|
}
|
|
4
|
-
interface
|
|
4
|
+
interface IRequestFile {
|
|
5
5
|
name: string;
|
|
6
6
|
filename: string;
|
|
7
7
|
data: Buffer;
|
|
8
8
|
contentType?: string;
|
|
9
9
|
}
|
|
10
|
-
export declare class
|
|
10
|
+
export declare class RequestFile implements IRequestFile {
|
|
11
11
|
readonly name: string;
|
|
12
12
|
readonly filename: string;
|
|
13
13
|
readonly data: Buffer;
|
|
@@ -18,6 +18,6 @@ export declare class Multipart {
|
|
|
18
18
|
readonly boundary: string;
|
|
19
19
|
readonly body: Buffer;
|
|
20
20
|
readonly headers: StringKeyWithStringValue;
|
|
21
|
-
constructor(textFields: FormParamsType, files?:
|
|
21
|
+
constructor(textFields: FormParamsType, files?: IRequestFile[]);
|
|
22
22
|
}
|
|
23
23
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aspose-barcode-cloud-node",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "25.2.0",
|
|
4
4
|
"description": "Aspose.BarCode Cloud SDK for Node.js",
|
|
5
5
|
"homepage": "https://products.aspose.cloud/barcode/nodejs",
|
|
6
6
|
"repository": {
|
|
@@ -149,13 +149,13 @@
|
|
|
149
149
|
"devDependencies": {
|
|
150
150
|
"@types/uuid": "^10.0.0",
|
|
151
151
|
"dts-cli": "^2.0.5",
|
|
152
|
-
"eslint-config-prettier": "^
|
|
153
|
-
"eslint-plugin-prettier": "^5.2.
|
|
152
|
+
"eslint-config-prettier": "^10.0.1",
|
|
153
|
+
"eslint-plugin-prettier": "^5.2.3",
|
|
154
154
|
"npm-check-updates": "^16.14.20",
|
|
155
155
|
"prettier": "^3.4.2",
|
|
156
156
|
"ts-jest": "^29.1.3",
|
|
157
157
|
"tslib": "^2.8.1",
|
|
158
|
-
"uuid": "^11.0.
|
|
158
|
+
"uuid": "^11.0.5"
|
|
159
159
|
},
|
|
160
160
|
"bugs": {
|
|
161
161
|
"url": "https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-node/issues"
|