aspose-barcode-cloud-node 23.8.0 → 23.10.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 CHANGED
@@ -5,7 +5,7 @@
5
5
  [![npm](https://img.shields.io/npm/v/aspose-barcode-cloud-node)](https://www.npmjs.com/package/aspose-barcode-cloud-node)
6
6
 
7
7
  + API version: 3.0
8
- + Package version: 23.8.0
8
+ + Package version: 23.10.0
9
9
 
10
10
  ## Demo applications
11
11
 
@@ -3,5 +3,5 @@ export interface Authentication {
3
3
  /**
4
4
  * Apply authentication settings to header and query params.
5
5
  */
6
- applyToRequest(requestOptions: HttpOptions): void;
6
+ applyToRequestAsync(requestOptions: HttpOptions): Promise<void>;
7
7
  }
package/dist/JWTAuth.d.ts CHANGED
@@ -9,6 +9,6 @@ export declare class JWTAuth implements Authentication {
9
9
  /**
10
10
  * Apply authentication settings to header and query params.
11
11
  */
12
- applyToRequest(requestOptions: HttpOptions): Promise<void>;
12
+ applyToRequestAsync(requestOptions: HttpOptions): Promise<void>;
13
13
  private requestToken;
14
14
  }