aspose-barcode-cloud-node 23.11.0 → 23.12.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/aspose-barcode-cloud-node.cjs.development.js +4 -7
- 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 +4 -7
- package/dist/aspose-barcode-cloud-node.esm.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2334,14 +2334,11 @@ class ObjectSerializer {
|
|
|
2334
2334
|
if (discriminatorProperty == null) {
|
|
2335
2335
|
return expectedType; // the type does not have a discriminator. use it.
|
|
2336
2336
|
}
|
|
2337
|
-
|
|
2338
2337
|
if (data[discriminatorProperty]) {
|
|
2339
2338
|
return data[discriminatorProperty]; // use the type given in the discriminator
|
|
2340
2339
|
}
|
|
2341
|
-
|
|
2342
2340
|
return expectedType; // discriminator was not present (or an empty string)
|
|
2343
2341
|
}
|
|
2344
|
-
|
|
2345
2342
|
static serialize(data, type) {
|
|
2346
2343
|
if (data == null) {
|
|
2347
2344
|
return data;
|
|
@@ -2512,7 +2509,7 @@ class BarcodeApi {
|
|
|
2512
2509
|
constructor(configuration) {
|
|
2513
2510
|
this.defaultHeaders = {
|
|
2514
2511
|
'x-aspose-client': 'nodejs sdk',
|
|
2515
|
-
'x-aspose-client-version': '23.
|
|
2512
|
+
'x-aspose-client-version': '23.12.0'
|
|
2516
2513
|
};
|
|
2517
2514
|
this._configuration = configuration;
|
|
2518
2515
|
this._client = new HttpClient();
|
|
@@ -3191,7 +3188,7 @@ class FileApi {
|
|
|
3191
3188
|
constructor(configuration) {
|
|
3192
3189
|
this.defaultHeaders = {
|
|
3193
3190
|
'x-aspose-client': 'nodejs sdk',
|
|
3194
|
-
'x-aspose-client-version': '23.
|
|
3191
|
+
'x-aspose-client-version': '23.12.0'
|
|
3195
3192
|
};
|
|
3196
3193
|
this._configuration = configuration;
|
|
3197
3194
|
this._client = new HttpClient();
|
|
@@ -3375,7 +3372,7 @@ class FolderApi {
|
|
|
3375
3372
|
constructor(configuration) {
|
|
3376
3373
|
this.defaultHeaders = {
|
|
3377
3374
|
'x-aspose-client': 'nodejs sdk',
|
|
3378
|
-
'x-aspose-client-version': '23.
|
|
3375
|
+
'x-aspose-client-version': '23.12.0'
|
|
3379
3376
|
};
|
|
3380
3377
|
this._configuration = configuration;
|
|
3381
3378
|
this._client = new HttpClient();
|
|
@@ -3541,7 +3538,7 @@ class StorageApi {
|
|
|
3541
3538
|
constructor(configuration) {
|
|
3542
3539
|
this.defaultHeaders = {
|
|
3543
3540
|
'x-aspose-client': 'nodejs sdk',
|
|
3544
|
-
'x-aspose-client-version': '23.
|
|
3541
|
+
'x-aspose-client-version': '23.12.0'
|
|
3545
3542
|
};
|
|
3546
3543
|
this._configuration = configuration;
|
|
3547
3544
|
this._client = new HttpClient();
|