aspose-barcode-cloud-node 24.4.0 → 24.6.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/README.md +1 -1
- package/dist/Authentication.d.ts +7 -7
- package/dist/Configuration.d.ts +30 -30
- package/dist/JWTAuth.d.ts +14 -14
- package/dist/api.d.ts +227 -228
- package/dist/aspose-barcode-cloud-node.cjs.development.js +2528 -316
- 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 +2466 -409
- package/dist/aspose-barcode-cloud-node.esm.js.map +1 -1
- package/dist/httpClient.d.ts +32 -33
- package/dist/index.d.ts +2 -2
- package/dist/models.d.ts +3429 -3430
- package/dist/multipart.d.ts +23 -24
- package/package.json +16 -14
package/dist/multipart.d.ts
CHANGED
|
@@ -1,24 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
readonly
|
|
13
|
-
readonly
|
|
14
|
-
readonly
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
export {};
|
|
1
|
+
import { StringKeyWithStringValue } from 'httpClient';
|
|
2
|
+
export interface FormParamsType extends Array<Array<string>> {
|
|
3
|
+
}
|
|
4
|
+
interface IFormFile {
|
|
5
|
+
name: string;
|
|
6
|
+
filename: string;
|
|
7
|
+
data: Buffer;
|
|
8
|
+
contentType?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class FormFile implements IFormFile {
|
|
11
|
+
readonly name: string;
|
|
12
|
+
readonly filename: string;
|
|
13
|
+
readonly data: Buffer;
|
|
14
|
+
readonly contentType?: string | undefined;
|
|
15
|
+
constructor(name: string, filename: string, data: Buffer, contentType?: string | undefined);
|
|
16
|
+
}
|
|
17
|
+
export declare class Multipart {
|
|
18
|
+
readonly boundary: string;
|
|
19
|
+
readonly body: Buffer;
|
|
20
|
+
readonly headers: StringKeyWithStringValue;
|
|
21
|
+
constructor(textFields: FormParamsType, files?: IFormFile[]);
|
|
22
|
+
}
|
|
23
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aspose-barcode-cloud-node",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.6.0",
|
|
4
4
|
"description": "Aspose.BarCode Cloud SDK for Node.js",
|
|
5
5
|
"homepage": "https://products.aspose.cloud/barcode/nodejs",
|
|
6
6
|
"repository": {
|
|
@@ -129,14 +129,14 @@
|
|
|
129
129
|
"dist"
|
|
130
130
|
],
|
|
131
131
|
"engines": {
|
|
132
|
-
"node": ">=
|
|
132
|
+
"node": ">=16"
|
|
133
133
|
},
|
|
134
134
|
"scripts": {
|
|
135
|
-
"test": "
|
|
136
|
-
"cover": "
|
|
137
|
-
"lint": "
|
|
138
|
-
"format": "
|
|
139
|
-
"prepare": "
|
|
135
|
+
"test": "dts test",
|
|
136
|
+
"cover": "dts test --coverage",
|
|
137
|
+
"lint": "dts lint src test",
|
|
138
|
+
"format": "dts lint src test --fix",
|
|
139
|
+
"prepare": "dts build --target node",
|
|
140
140
|
"check-updates": "ncu -u --enginesNode"
|
|
141
141
|
},
|
|
142
142
|
"prettier": {
|
|
@@ -147,13 +147,15 @@
|
|
|
147
147
|
"tabWidth": 4
|
|
148
148
|
},
|
|
149
149
|
"devDependencies": {
|
|
150
|
-
"@types/uuid": "^
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
"
|
|
154
|
-
"
|
|
155
|
-
"
|
|
156
|
-
"
|
|
150
|
+
"@types/uuid": "^10.0.0",
|
|
151
|
+
"dts-cli": "^2.0.5",
|
|
152
|
+
"eslint-config-prettier": "^9.1.0",
|
|
153
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
154
|
+
"npm-check-updates": "^16.14.20",
|
|
155
|
+
"prettier": "^3.3.2",
|
|
156
|
+
"ts-jest": "^29.1.3",
|
|
157
|
+
"tslib": "^2.6.3",
|
|
158
|
+
"uuid": "^10.0.0"
|
|
157
159
|
},
|
|
158
160
|
"bugs": {
|
|
159
161
|
"url": "https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-node/issues"
|