http-request-manager 18.15.6 → 18.15.8
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "http-request-manager",
|
|
3
|
-
"version": "18.15.
|
|
3
|
+
"version": "18.15.8",
|
|
4
4
|
"homepage": "https://wavecoders.ca",
|
|
5
5
|
"author": "Mike Bonifacio <wavecoders@gmail.com> (http://wavecoders@gmail.com/)",
|
|
6
6
|
"description": "This is an Angular Module containing Components/Services using Material",
|
|
@@ -648,6 +648,7 @@ declare class HTTPManagerStateService<T extends {
|
|
|
648
648
|
private databaseOptions?;
|
|
649
649
|
private readonly volatileHeaders;
|
|
650
650
|
private requestSignatureCache;
|
|
651
|
+
private inFlightRequestSignatures;
|
|
651
652
|
private _requestCachePaths;
|
|
652
653
|
private wsRetryAttempts;
|
|
653
654
|
wsRetryAttempts$: Observable<number>;
|
|
@@ -829,6 +830,8 @@ declare class HTTPManagerStateService<T extends {
|
|
|
829
830
|
private buildRequestSignature;
|
|
830
831
|
private buildSchemaSignature;
|
|
831
832
|
private setCachedRequestSignature;
|
|
833
|
+
private tryBeginInFlightRequest;
|
|
834
|
+
private endInFlightRequest;
|
|
832
835
|
private getRequestCacheMetadata;
|
|
833
836
|
private getStoredSchemaSignature;
|
|
834
837
|
private saveSchemaSignature;
|
|
Binary file
|