http-request-manager 18.16.26 → 18.16.29
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.16.
|
|
3
|
+
"version": "18.16.29",
|
|
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",
|
|
@@ -235,13 +235,13 @@ declare class ApiRequest implements ApiRequestInterface {
|
|
|
235
235
|
fileContentHeader?: string | undefined;
|
|
236
236
|
ws?: WSOptions | undefined;
|
|
237
237
|
env?: string | undefined;
|
|
238
|
-
uploadFiles?:
|
|
238
|
+
uploadFiles?: File | File[] | undefined;
|
|
239
239
|
uploadFieldName?: string | undefined;
|
|
240
|
-
uploadHttpMethod?:
|
|
240
|
+
uploadHttpMethod?: "POST" | "PUT" | undefined;
|
|
241
241
|
allowedTypes?: string[] | undefined;
|
|
242
242
|
maxFileSize?: number | undefined;
|
|
243
243
|
maxTotalSize?: number | undefined;
|
|
244
|
-
constructor(server?: string, path?: any[] | undefined, headers?: any, adapter?: any, mapper?: any, polling?: number | undefined, retry?: RetryOptions | undefined, stream?: boolean | undefined, streamType?: StreamType | undefined, displayError?: boolean | undefined, displaySuccess?: boolean | undefined, successMessage?: string | undefined, errorMessage?: string | undefined, saveAs?: string | undefined, fileContentHeader?: string | undefined, ws?: WSOptions | undefined, env?: string | undefined, uploadFiles?:
|
|
244
|
+
constructor(server?: string, path?: any[] | undefined, headers?: any, adapter?: any, mapper?: any, polling?: number | undefined, retry?: RetryOptions | undefined, stream?: boolean | undefined, streamType?: StreamType | undefined, displayError?: boolean | undefined, displaySuccess?: boolean | undefined, successMessage?: string | undefined, errorMessage?: string | undefined, saveAs?: string | undefined, fileContentHeader?: string | undefined, ws?: WSOptions | undefined, env?: string | undefined, uploadFiles?: File | File[] | undefined, uploadFieldName?: string | undefined, uploadHttpMethod?: "POST" | "PUT" | undefined, allowedTypes?: string[] | undefined, maxFileSize?: number | undefined, maxTotalSize?: number | undefined);
|
|
245
245
|
static adapt(item?: any): ApiRequest;
|
|
246
246
|
}
|
|
247
247
|
|
|
@@ -391,8 +391,8 @@ declare class RequestOptions implements RequestOptionsInterface {
|
|
|
391
391
|
headers: {};
|
|
392
392
|
forceRefresh?: boolean | undefined;
|
|
393
393
|
ignoreQueryParams?: string[] | undefined;
|
|
394
|
-
queryParamsExpiresIn?:
|
|
395
|
-
constructor(path?: any[], headers?: {}, forceRefresh?: boolean | undefined, ignoreQueryParams?: string[] | undefined, queryParamsExpiresIn?:
|
|
394
|
+
queryParamsExpiresIn?: string | number | undefined;
|
|
395
|
+
constructor(path?: any[], headers?: {}, forceRefresh?: boolean | undefined, ignoreQueryParams?: string[] | undefined, queryParamsExpiresIn?: string | number | undefined);
|
|
396
396
|
static adapt(item?: any): RequestOptions;
|
|
397
397
|
}
|
|
398
398
|
|
|
@@ -855,11 +855,8 @@ declare class HTTPManagerStateService<T extends {
|
|
|
855
855
|
clearDatabase(): void;
|
|
856
856
|
private isEmpty;
|
|
857
857
|
/**
|
|
858
|
-
*
|
|
859
|
-
* Handles both array and single object responses
|
|
860
|
-
* Only applies adapter when it exists - returns data as-is otherwise
|
|
858
|
+
* Update request options with provided headers
|
|
861
859
|
*/
|
|
862
|
-
private applyAdapter;
|
|
863
860
|
private updateRequestOptions;
|
|
864
861
|
private normalizeObject;
|
|
865
862
|
private filterHeaders;
|
|
@@ -883,7 +880,6 @@ declare class HTTPManagerStateService<T extends {
|
|
|
883
880
|
private trackerNormalizeParamKey;
|
|
884
881
|
private trackerNormalizeParamValue;
|
|
885
882
|
private trackerFilterQuery;
|
|
886
|
-
private trackerBuildExpiryEpoch;
|
|
887
883
|
private checkTrackerAllowsRequest;
|
|
888
884
|
static ɵfac: i0.ɵɵFactoryDeclaration<HTTPManagerStateService<any>, never>;
|
|
889
885
|
static ɵprov: i0.ɵɵInjectableDeclaration<HTTPManagerStateService<any>>;
|
|
@@ -2105,12 +2101,12 @@ declare class LocalStorageManagerService extends ComponentStore<State> implement
|
|
|
2105
2101
|
options: SettingOptions;
|
|
2106
2102
|
}>) => rxjs.Subscription;
|
|
2107
2103
|
readonly createStore: (observableOrValue: {
|
|
2108
|
-
id?: string;
|
|
2104
|
+
id?: string | undefined;
|
|
2109
2105
|
name: string;
|
|
2110
2106
|
data: any;
|
|
2111
2107
|
options: SettingOptions;
|
|
2112
2108
|
} | rxjs.Observable<{
|
|
2113
|
-
id?: string;
|
|
2109
|
+
id?: string | undefined;
|
|
2114
2110
|
name: string;
|
|
2115
2111
|
data: any;
|
|
2116
2112
|
options: SettingOptions;
|
|
@@ -2418,8 +2414,14 @@ declare const RandomPaletteColor: () => string;
|
|
|
2418
2414
|
* @returns A random HSL color string (e.g., "hsl(120, 100%, 50%)")
|
|
2419
2415
|
*/
|
|
2420
2416
|
declare const RandomHSLColor: (options?: {
|
|
2421
|
-
saturation?: [
|
|
2422
|
-
|
|
2417
|
+
saturation?: [
|
|
2418
|
+
number,
|
|
2419
|
+
number
|
|
2420
|
+
];
|
|
2421
|
+
lightness?: [
|
|
2422
|
+
number,
|
|
2423
|
+
number
|
|
2424
|
+
];
|
|
2423
2425
|
}) => string;
|
|
2424
2426
|
|
|
2425
2427
|
declare class AsymmetricalEncryptionService {
|
|
@@ -3682,11 +3684,11 @@ declare class DisplayConfig implements DisplayConfigInterface {
|
|
|
3682
3684
|
type: DisplayType;
|
|
3683
3685
|
supportsMarkdown?: boolean | undefined;
|
|
3684
3686
|
stackable?: boolean | undefined;
|
|
3685
|
-
queueBehavior?:
|
|
3687
|
+
queueBehavior?: "replace" | "queue" | "ignore" | undefined;
|
|
3686
3688
|
autoDismiss?: number | undefined;
|
|
3687
3689
|
width?: string | undefined;
|
|
3688
3690
|
height?: string | undefined;
|
|
3689
|
-
constructor(type?: DisplayType, supportsMarkdown?: boolean | undefined, stackable?: boolean | undefined, queueBehavior?:
|
|
3691
|
+
constructor(type?: DisplayType, supportsMarkdown?: boolean | undefined, stackable?: boolean | undefined, queueBehavior?: "replace" | "queue" | "ignore" | undefined, autoDismiss?: number | undefined, width?: string | undefined, height?: string | undefined);
|
|
3690
3692
|
static adapt(item?: any): DisplayConfig;
|
|
3691
3693
|
}
|
|
3692
3694
|
|
|
@@ -3794,8 +3796,8 @@ declare class WsMessagingComponent implements OnInit, OnDestroy {
|
|
|
3794
3796
|
selectedChannels: FormControl<string[] | null>;
|
|
3795
3797
|
content: FormControl<string | null>;
|
|
3796
3798
|
}>;
|
|
3797
|
-
get selectedChannels(): FormControl
|
|
3798
|
-
get content(): FormControl
|
|
3799
|
+
get selectedChannels(): FormControl<any>;
|
|
3800
|
+
get content(): FormControl<any>;
|
|
3799
3801
|
communicationMessages$: Observable<any[]>;
|
|
3800
3802
|
latestCommunicationMessages$: Observable<any>;
|
|
3801
3803
|
chat$: Observable<{
|
|
@@ -3861,7 +3863,7 @@ declare class WsNotificationsComponent implements OnInit, OnDestroy {
|
|
|
3861
3863
|
notificationForm: _angular_forms.FormGroup<{
|
|
3862
3864
|
content: FormControl<string | null>;
|
|
3863
3865
|
}>;
|
|
3864
|
-
get content(): FormControl
|
|
3866
|
+
get content(): FormControl<any>;
|
|
3865
3867
|
/**
|
|
3866
3868
|
* Check if currently connected to a channel
|
|
3867
3869
|
*/
|
|
Binary file
|