http-request-manager 18.16.6 → 18.16.11
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.11",
|
|
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",
|
|
@@ -385,8 +385,6 @@ interface RequestOptionsInterface {
|
|
|
385
385
|
forceRefresh?: boolean;
|
|
386
386
|
ignoreQueryParams?: string[];
|
|
387
387
|
queryParamsExpiresIn?: string | number;
|
|
388
|
-
watchParams?: string[];
|
|
389
|
-
watchExpiresAt?: number;
|
|
390
388
|
}
|
|
391
389
|
declare class RequestOptions implements RequestOptionsInterface {
|
|
392
390
|
path: any[];
|
|
@@ -394,9 +392,7 @@ declare class RequestOptions implements RequestOptionsInterface {
|
|
|
394
392
|
forceRefresh?: boolean | undefined;
|
|
395
393
|
ignoreQueryParams?: string[] | undefined;
|
|
396
394
|
queryParamsExpiresIn?: (string | number) | undefined;
|
|
397
|
-
|
|
398
|
-
watchExpiresAt?: number | undefined;
|
|
399
|
-
constructor(path?: any[], headers?: {}, forceRefresh?: boolean | undefined, ignoreQueryParams?: string[] | undefined, queryParamsExpiresIn?: (string | number) | undefined, watchParams?: string[] | undefined, watchExpiresAt?: number | undefined);
|
|
395
|
+
constructor(path?: any[], headers?: {}, forceRefresh?: boolean | undefined, ignoreQueryParams?: string[] | undefined, queryParamsExpiresIn?: (string | number) | undefined);
|
|
400
396
|
static adapt(item?: any): RequestOptions;
|
|
401
397
|
}
|
|
402
398
|
|
|
@@ -2318,56 +2314,6 @@ declare const UUID: () => `${string}-${string}-${string}-${string}-${string}`;
|
|
|
2318
2314
|
*/
|
|
2319
2315
|
declare const UUID_STR: () => string;
|
|
2320
2316
|
|
|
2321
|
-
type QueryValue = string;
|
|
2322
|
-
type NormalizedQueryParams = Record<string, QueryValue>;
|
|
2323
|
-
interface NormalizedRequestOptionsInterface {
|
|
2324
|
-
pathKey: string;
|
|
2325
|
-
query: NormalizedQueryParams;
|
|
2326
|
-
hasQuery: boolean;
|
|
2327
|
-
}
|
|
2328
|
-
declare class NormalizedRequestOptionsModel implements NormalizedRequestOptionsInterface {
|
|
2329
|
-
pathKey: string;
|
|
2330
|
-
query: NormalizedQueryParams;
|
|
2331
|
-
hasQuery: boolean;
|
|
2332
|
-
constructor(pathKey?: string, query?: NormalizedQueryParams, hasQuery?: boolean);
|
|
2333
|
-
static adapt(item?: any): NormalizedRequestOptionsModel;
|
|
2334
|
-
}
|
|
2335
|
-
|
|
2336
|
-
interface PathTrackerStateInterface {
|
|
2337
|
-
watchExpiresAt?: number;
|
|
2338
|
-
consumedValuesByKey: Record<string, QueryValue[]>;
|
|
2339
|
-
}
|
|
2340
|
-
declare class PathTrackerStateModel implements PathTrackerStateInterface {
|
|
2341
|
-
consumedValuesByKey: Record<string, QueryValue[]>;
|
|
2342
|
-
watchExpiresAt?: number | undefined;
|
|
2343
|
-
constructor(consumedValuesByKey?: Record<string, QueryValue[]>, watchExpiresAt?: number | undefined);
|
|
2344
|
-
static adapt(item?: any): PathTrackerStateModel;
|
|
2345
|
-
}
|
|
2346
|
-
|
|
2347
|
-
interface QueryTrackerStateInterface {
|
|
2348
|
-
paths: Record<string, PathTrackerStateInterface>;
|
|
2349
|
-
}
|
|
2350
|
-
declare class QueryTrackerStateModel implements QueryTrackerStateInterface {
|
|
2351
|
-
paths: Record<string, PathTrackerStateInterface>;
|
|
2352
|
-
constructor(paths?: Record<string, PathTrackerStateInterface>);
|
|
2353
|
-
static adapt(item?: any): QueryTrackerStateModel;
|
|
2354
|
-
}
|
|
2355
|
-
|
|
2356
|
-
interface QueryParamsTrackerOptionsInterface {
|
|
2357
|
-
mode?: 'exact' | 'variation';
|
|
2358
|
-
watchParams?: string[];
|
|
2359
|
-
watchExpiresAt?: string | number;
|
|
2360
|
-
watchParamsExpire?: string | number;
|
|
2361
|
-
}
|
|
2362
|
-
declare class QueryParamsTrackerOptionsModel implements QueryParamsTrackerOptionsInterface {
|
|
2363
|
-
mode?: ("exact" | "variation") | undefined;
|
|
2364
|
-
watchParams?: string[] | undefined;
|
|
2365
|
-
watchExpiresAt?: (string | number) | undefined;
|
|
2366
|
-
watchParamsExpire?: (string | number) | undefined;
|
|
2367
|
-
constructor(mode?: ("exact" | "variation") | undefined, watchParams?: string[] | undefined, watchExpiresAt?: (string | number) | undefined, watchParamsExpire?: (string | number) | undefined);
|
|
2368
|
-
static adapt(item?: any): QueryParamsTrackerOptionsModel;
|
|
2369
|
-
}
|
|
2370
|
-
|
|
2371
2317
|
interface ErrorDisplaySettingsInterface {
|
|
2372
2318
|
displayTime: number;
|
|
2373
2319
|
position: string;
|
|
@@ -2792,8 +2738,7 @@ declare class RequestManagerStateDemoComponent implements OnInit {
|
|
|
2792
2738
|
apiOptions: ApiRequest;
|
|
2793
2739
|
path: any[];
|
|
2794
2740
|
};
|
|
2795
|
-
private
|
|
2796
|
-
private normalizeWatchExpiry;
|
|
2741
|
+
private parseIgnoreParams;
|
|
2797
2742
|
private buildDemoRequestOptions;
|
|
2798
2743
|
onSetStateOptions(): void;
|
|
2799
2744
|
onClearRecords(): void;
|
|
@@ -3978,5 +3923,5 @@ declare class StoreStateSignalsDemoComponent implements OnInit {
|
|
|
3978
3923
|
static ɵcmp: i0.ɵɵComponentDeclaration<StoreStateSignalsDemoComponent, "app-store-state-signals-demo", never, {}, {}, never, never, false, never>;
|
|
3979
3924
|
}
|
|
3980
3925
|
|
|
3981
|
-
export { ApiRequest, AppService, AsymmetricalEncryptionService, BatchOptions, BatchResult, CONFIG_SETTINGS_TOKEN, ChannelType, ConfigHTTPOptions, ConfigOptions, DataType, DatabaseDataDemoComponent, DatabaseManagerService, DatabaseStorage, DbService, DexieSqlService, ErrorDisplaySettings, ExecutionPlanType, GlobalStoreOptions, HTTPManagerService, HTTPManagerSignalsService, HTTPManagerStateService, HeadersService, HttpRequestManagerModule, HttpRequestServicesDemoComponent, InvalidFileInfoModel, LocalStorageDemoComponent, LocalStorageManagerService, LocalStorageOptions, LocalStorageSignalsDemoComponent, LocalStorageSignalsManagerService, LoggerService,
|
|
3982
|
-
export type { APIStateManagerData, ApiRequestInterface, BatchErrorState, BatchOptionsInterface, BatchPendingState, BatchProgress, BatchRequestState, BatchResultInterface, BatchSuccessState, ConfigHTTPOptionsInterface, ConfigOptionsInterface, DatabaseStorageInterface, DexieOp, DexieSqlOptions, ErrorDisplaySettingsInterface, ExecutionPlan, GlobalStoreOptionsInterface, InvalidFileInfoInterface, JoinInfo, LocalStorageOptionsInterface,
|
|
3926
|
+
export { ApiRequest, AppService, AsymmetricalEncryptionService, BatchOptions, BatchResult, CONFIG_SETTINGS_TOKEN, ChannelType, ConfigHTTPOptions, ConfigOptions, DataType, DatabaseDataDemoComponent, DatabaseManagerService, DatabaseStorage, DbService, DexieSqlService, ErrorDisplaySettings, ExecutionPlanType, GlobalStoreOptions, HTTPManagerService, HTTPManagerSignalsService, HTTPManagerStateService, HeadersService, HttpRequestManagerModule, HttpRequestServicesDemoComponent, InvalidFileInfoModel, LocalStorageDemoComponent, LocalStorageManagerService, LocalStorageOptions, LocalStorageSignalsDemoComponent, LocalStorageSignalsManagerService, LoggerService, NotificationMessage, OperationResultModel, ParsingResultModel, PathQueryService, PublicMessage, Random, RandomHSLColor, RandomHexColor, RandomNumber, RandomNumbers, RandomNumbersUnique, RandomPaletteColor, RandomSignature, RandomStr, RandomVisibleColor, RequestErrorInterceptor, RequestHeadersInterceptor, RequestManagerDemoComponent, RequestManagerStateDemoComponent, RequestOptions, RequestService, RequestSignalsService, RetryOptions, SettingOptions, SqlParseError, SqlValidationError, StateMessage, StateOperationResult, StateStorageOptions, StorageData, StorageOption, StorageType, StoreStateManagerService, StoreStateManagerSignalsService, StoreStateSignalsDemoComponent, StreamConfigModel, StreamEventMetadataModel, StreamEventModel, StreamOutputModel, StreamProgressModel, StreamType, SymmetricalEncryptionService, TableSchemaDef, UUID, UUID_STR, UploadDemoComponent, UploadValidationErrorModel, UserData, UtilsService, WSOptions, WebSocketMessageService, WithCredentialsInterceptor, calculateBatchProgress, countdown, createChannelName, delayedRetry, isErrorState, isPendingState, isSuccessState, requestPolling, requestStreaming, streamAI, streamAuto, streamEvents, streamJSON, streamNDJSON };
|
|
3927
|
+
export type { APIStateManagerData, ApiRequestInterface, BatchErrorState, BatchOptionsInterface, BatchPendingState, BatchProgress, BatchRequestState, BatchResultInterface, BatchSuccessState, ConfigHTTPOptionsInterface, ConfigOptionsInterface, DatabaseStorageInterface, DexieOp, DexieSqlOptions, ErrorDisplaySettingsInterface, ExecutionPlan, GlobalStoreOptionsInterface, InvalidFileInfoInterface, JoinInfo, LocalStorageOptionsInterface, NotificationMessageInterface, OperationResultInterface, ParseResult, ParsingResultInterface, PlanStep, PublicMessageInterface, RequestOptionsInterface, RetryOptionsInterface, SettingOptionsInterface, State, StateMessageInterface, StateOperationResultInterface, StateStorageOptionsInterface, StateStoreManagerData$1 as StateStoreManagerData, StorageDataInterface, StorageOptionInterface, StreamConfigInterface, StreamEventInterface, StreamEventMetadataInterface, StreamOutputInterface, StreamProgressInterface, TableRecord, TableSchemaDefInterface, TableSchemaInfo, UploadValidationErrorInterface, UserDataInterface, ValidatedQuery, WSOptionsInterface };
|
|
Binary file
|