http-request-manager 18.11.23 → 18.12.3

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.11.23",
3
+ "version": "18.12.3",
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",
@@ -4,37 +4,37 @@ import * as i0 from '@angular/core';
4
4
  import { InjectionToken, OnDestroy, Injector, OnInit, EventEmitter, ModuleWithProviders } from '@angular/core';
5
5
  import { ComponentStore } from '@ngrx/component-store';
6
6
  import { HttpClient, HttpHeaders, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
7
- import * as i17 from 'toast-message-display';
7
+ import * as i18 from 'toast-message-display';
8
8
  import { ToastMessageDisplayService } from 'toast-message-display';
9
9
  import Dexie, { Table } from 'dexie';
10
- import * as i35 from '@ngx-translate/core';
10
+ import * as i36 from '@ngx-translate/core';
11
11
  import { TranslateService } from '@ngx-translate/core';
12
12
  import * as _angular_forms from '@angular/forms';
13
13
  import { FormArray, FormBuilder, FormControl } from '@angular/forms';
14
14
  import { DataSource } from '@angular/cdk/collections';
15
15
  import * as i4 from '@angular/common';
16
16
  import * as i7 from '@angular/material/button';
17
- import * as i20 from '@angular/material/tabs';
18
- import * as i21 from '@angular/material/select';
19
- import * as i22 from '@angular/material/chips';
20
- import * as i23 from '@angular/material/menu';
17
+ import * as i21 from '@angular/material/tabs';
18
+ import * as i22 from '@angular/material/select';
19
+ import * as i23 from '@angular/material/chips';
20
+ import * as i24 from '@angular/material/menu';
21
21
  import * as i5 from '@angular/material/icon';
22
- import * as i25 from '@angular/material/table';
23
- import * as i26 from '@angular/material/button-toggle';
24
- import * as i27 from '@angular/material/autocomplete';
25
- import * as i28 from '@angular/material/progress-bar';
22
+ import * as i26 from '@angular/material/table';
23
+ import * as i27 from '@angular/material/button-toggle';
24
+ import * as i28 from '@angular/material/autocomplete';
25
+ import * as i29 from '@angular/material/progress-bar';
26
26
  import * as i6 from '@angular/material/progress-spinner';
27
27
  import { ProgressSpinnerMode } from '@angular/material/progress-spinner';
28
- import * as i30 from '@angular/material/slide-toggle';
29
- import * as i31 from '@angular/material/divider';
30
- import * as i32 from '@angular/material/form-field';
31
- import * as i33 from '@angular/material/input';
32
- import * as i34 from '@angular/material/toolbar';
33
- import * as i36 from '@angular/material/sidenav';
34
- import * as i37 from '@angular/material/datepicker';
35
- import * as i38 from '@angular/material/core';
28
+ import * as i31 from '@angular/material/slide-toggle';
29
+ import * as i32 from '@angular/material/divider';
30
+ import * as i33 from '@angular/material/form-field';
31
+ import * as i34 from '@angular/material/input';
32
+ import * as i35 from '@angular/material/toolbar';
33
+ import * as i37 from '@angular/material/sidenav';
34
+ import * as i38 from '@angular/material/datepicker';
35
+ import * as i39 from '@angular/material/core';
36
36
  import { ThemePalette } from '@angular/material/core';
37
- import * as i39 from '@angular/material/card';
37
+ import * as i40 from '@angular/material/card';
38
38
 
39
39
  declare enum StorageType {
40
40
  GLOBAL = 0,
@@ -208,6 +208,12 @@ interface ApiRequestInterface {
208
208
  fileContentHeader?: string;
209
209
  ws?: WSOptions;
210
210
  env?: string;
211
+ uploadFiles?: File | File[];
212
+ uploadFieldName?: string;
213
+ uploadHttpMethod?: 'POST' | 'PUT';
214
+ allowedTypes?: string[];
215
+ maxFileSize?: number;
216
+ maxTotalSize?: number;
211
217
  }
212
218
  declare class ApiRequest implements ApiRequestInterface {
213
219
  server: string;
@@ -227,7 +233,13 @@ declare class ApiRequest implements ApiRequestInterface {
227
233
  fileContentHeader?: string | undefined;
228
234
  ws?: WSOptions | undefined;
229
235
  env?: string | undefined;
230
- 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);
236
+ uploadFiles?: (File | File[]) | undefined;
237
+ uploadFieldName?: string | undefined;
238
+ uploadHttpMethod?: ("POST" | "PUT") | undefined;
239
+ allowedTypes?: string[] | undefined;
240
+ maxFileSize?: number | undefined;
241
+ maxTotalSize?: number | undefined;
242
+ 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);
231
243
  static adapt(item?: any): ApiRequest;
232
244
  }
233
245
 
@@ -361,6 +373,17 @@ declare class RequestOptions implements RequestOptionsInterface {
361
373
  static adapt(item?: any): RequestOptions;
362
374
  }
363
375
 
376
+ interface OperationResultInterface {
377
+ success: boolean;
378
+ operation: 'CREATE' | 'UPDATE' | 'DELETE';
379
+ }
380
+ declare class OperationResultModel implements OperationResultInterface {
381
+ success: boolean;
382
+ operation: 'CREATE' | 'UPDATE' | 'DELETE';
383
+ constructor(success?: boolean, operation?: 'CREATE' | 'UPDATE' | 'DELETE');
384
+ static adapt(item?: any): OperationResultModel;
385
+ }
386
+
364
387
  interface TableSchemaDefInterface {
365
388
  table: string;
366
389
  schema: string;
@@ -528,6 +551,8 @@ declare class HTTPManagerStateService<T extends {
528
551
  logger: LoggerService;
529
552
  error$: Observable<boolean>;
530
553
  isPending$: Observable<boolean>;
554
+ private operationSuccess;
555
+ operationSuccess$: Observable<OperationResultModel | null>;
531
556
  private page;
532
557
  page$: Observable<number>;
533
558
  private totalPages;
@@ -1029,6 +1054,9 @@ declare class RequestService extends WebsocketService {
1029
1054
  private request;
1030
1055
  private requestStreaming;
1031
1056
  downloadFileRequest(options: ApiRequest): Observable<any>;
1057
+ uploadFileRequest(options: ApiRequest): Observable<any>;
1058
+ private validateUploadFiles;
1059
+ private buildFormData;
1032
1060
  private handleFinalize;
1033
1061
  private downloadFile;
1034
1062
  private createFileType;
@@ -1183,6 +1211,33 @@ declare class ConfigOptions implements ConfigOptionsInterface {
1183
1211
  */
1184
1212
  declare const CONFIG_SETTINGS_TOKEN: InjectionToken<ConfigOptions>;
1185
1213
 
1214
+ interface InvalidFileInfoInterface {
1215
+ fileName: string;
1216
+ fileSize: number;
1217
+ fileType: string;
1218
+ errors: string[];
1219
+ }
1220
+ declare class InvalidFileInfoModel implements InvalidFileInfoInterface {
1221
+ fileName: string;
1222
+ fileSize: number;
1223
+ fileType: string;
1224
+ errors: string[];
1225
+ constructor(fileName?: string, fileSize?: number, fileType?: string, errors?: string[]);
1226
+ static adapt(item?: any): InvalidFileInfoModel;
1227
+ }
1228
+ interface UploadValidationErrorInterface {
1229
+ invalidFiles: InvalidFileInfoModel[];
1230
+ validFilesCount: number;
1231
+ totalFilesCount: number;
1232
+ }
1233
+ declare class UploadValidationErrorModel implements UploadValidationErrorInterface {
1234
+ invalidFiles: InvalidFileInfoModel[];
1235
+ validFilesCount: number;
1236
+ totalFilesCount: number;
1237
+ constructor(invalidFiles?: InvalidFileInfoModel[], validFilesCount?: number, totalFilesCount?: number);
1238
+ static adapt(item?: any): UploadValidationErrorModel;
1239
+ }
1240
+
1186
1241
  interface UserDataInterface {
1187
1242
  ldap: string;
1188
1243
  name: string;
@@ -1478,6 +1533,7 @@ declare class HTTPManagerService<T> extends RequestService {
1478
1533
  }>(data: T, options: ApiRequest, params?: any[]): Observable<T>;
1479
1534
  deleteRequest<T>(options: ApiRequest, params?: any[]): Observable<T>;
1480
1535
  downloadRequest<T>(options: ApiRequest, params?: any[], saveAs?: string): Observable<T>;
1536
+ uploadRequest<T>(files: File | File[], options: ApiRequest, params?: any[]): Observable<T>;
1481
1537
  private createObservable;
1482
1538
  private createRequest;
1483
1539
  private prepareRequestData;
@@ -1551,6 +1607,9 @@ declare class RequestSignalsService extends WebsocketService {
1551
1607
  private request;
1552
1608
  private requestStreamingOperator;
1553
1609
  downloadFileRequest(options: ApiRequest): Observable<any>;
1610
+ uploadFileRequest(options: ApiRequest): Observable<any>;
1611
+ private validateUploadFiles;
1612
+ private buildFormData;
1554
1613
  private handleFinalize;
1555
1614
  private downloadFile;
1556
1615
  private createFileType;
@@ -1668,6 +1727,7 @@ declare class HTTPManagerSignalsService<T> extends RequestSignalsService {
1668
1727
  }>(data: T, options: ApiRequest, params?: any[]): Observable<T>;
1669
1728
  deleteRequest<T>(options: ApiRequest, params?: any[]): Observable<T>;
1670
1729
  downloadRequest<T>(options: ApiRequest, params?: any[], saveAs?: string): Observable<T>;
1730
+ uploadRequest<T>(files: File | File[], options: ApiRequest, params?: any[]): Observable<T>;
1671
1731
  private createObservable;
1672
1732
  private createRequest;
1673
1733
  private prepareRequestData;
@@ -1914,6 +1974,25 @@ declare class StateStorageOptions implements StateStorageOptionsInterface {
1914
1974
  static adapt(item?: any): StateStorageOptions;
1915
1975
  }
1916
1976
 
1977
+ interface StateOperationResultInterface {
1978
+ success: boolean;
1979
+ operation: 'CREATE' | 'UPDATE' | 'DELETE';
1980
+ key?: string;
1981
+ value?: any;
1982
+ timestamp: number;
1983
+ error?: string;
1984
+ }
1985
+ declare class StateOperationResult implements StateOperationResultInterface {
1986
+ success: boolean;
1987
+ operation: 'CREATE' | 'UPDATE' | 'DELETE';
1988
+ key?: string | undefined;
1989
+ value?: any;
1990
+ timestamp: number;
1991
+ error?: string | undefined;
1992
+ constructor(success?: boolean, operation?: 'CREATE' | 'UPDATE' | 'DELETE', key?: string | undefined, value?: any, timestamp?: number, error?: string | undefined);
1993
+ static adapt(item?: any): StateOperationResult;
1994
+ }
1995
+
1917
1996
  interface StateStoreManagerData$1<T> {
1918
1997
  }
1919
1998
  declare class StoreStateManagerService<T extends object = StateStoreManagerData$1<any>> extends ComponentStore<T> {
@@ -1922,13 +2001,18 @@ declare class StoreStateManagerService<T extends object = StateStoreManagerData$
1922
2001
  subscriptions: Subscription;
1923
2002
  settings: any;
1924
2003
  private isRestoring;
2004
+ private operationResult;
2005
+ operationResult$: Observable<StateOperationResult | null>;
1925
2006
  constructor(options?: StateStorageOptions);
1926
2007
  private static init;
1927
2008
  init(options?: StateStorageOptions): void;
1928
2009
  restoreState(): Subscription;
1929
2010
  updateState(state: any): void;
1930
- readonly data$: rxjs.Observable<any>;
2011
+ readonly data$: Observable<any>;
1931
2012
  readonly updateData: (() => void) | ((observableOrValue: any) => Subscription);
2013
+ createRecord(key: string, value: any): void;
2014
+ updateRecord(key: string, value: any): void;
2015
+ deleteRecord(key: string): void;
1932
2016
  static ɵfac: i0.ɵɵFactoryDeclaration<StoreStateManagerService<any>, never>;
1933
2017
  static ɵprov: i0.ɵɵInjectableDeclaration<StoreStateManagerService<any>>;
1934
2018
  }
@@ -1940,6 +2024,8 @@ declare class StoreStateManagerSignalsService<T extends object = StateStoreManag
1940
2024
  private state;
1941
2025
  private isRestoring;
1942
2026
  private settings;
2027
+ private operationResultSignal;
2028
+ readonly operationResult: i0.Signal<StateOperationResult | null>;
1943
2029
  readonly data: i0.Signal<T | null>;
1944
2030
  readonly transformedData: i0.Signal<any>;
1945
2031
  constructor();
@@ -1947,6 +2033,9 @@ declare class StoreStateManagerSignalsService<T extends object = StateStoreManag
1947
2033
  restoreState(): void;
1948
2034
  updateState(state: Partial<T>): void;
1949
2035
  updateData(data: Partial<T>): void;
2036
+ createRecord(key: string, value: any): void;
2037
+ updateRecord(key: string, value: any): void;
2038
+ deleteRecord(key: string): void;
1950
2039
  resetState(): void;
1951
2040
  static ɵfac: i0.ɵɵFactoryDeclaration<StoreStateManagerSignalsService<any>, never>;
1952
2041
  static ɵprov: i0.ɵɵInjectableDeclaration<StoreStateManagerSignalsService<any>>;
@@ -2237,6 +2326,12 @@ declare class HttpRequestServicesDemoComponent implements OnInit {
2237
2326
  new: boolean;
2238
2327
  divider?: undefined;
2239
2328
  disabled?: undefined;
2329
+ } | {
2330
+ name: string;
2331
+ value: string;
2332
+ new: boolean;
2333
+ divider: boolean;
2334
+ disabled?: undefined;
2240
2335
  } | {
2241
2336
  name: string;
2242
2337
  value: string;
@@ -3456,6 +3551,42 @@ declare class WsChatsComponent implements OnInit {
3456
3551
  static ɵcmp: i0.ɵɵComponentDeclaration<WsChatsComponent, "app-ws-chats", never, {}, {}, never, never, false, never>;
3457
3552
  }
3458
3553
 
3554
+ interface UploadStateInterface {
3555
+ selectedFiles: File[];
3556
+ isUploading: boolean;
3557
+ progress: number;
3558
+ currentFile: string | null;
3559
+ errorMessage: string | null;
3560
+ successMessage: string | null;
3561
+ }
3562
+ declare class UploadStateModel implements UploadStateInterface {
3563
+ selectedFiles: File[];
3564
+ isUploading: boolean;
3565
+ progress: number;
3566
+ currentFile: string | null;
3567
+ errorMessage: string | null;
3568
+ successMessage: string | null;
3569
+ constructor(selectedFiles?: File[], isUploading?: boolean, progress?: number, currentFile?: string | null, errorMessage?: string | null, successMessage?: string | null);
3570
+ static adapt(item?: any): UploadStateModel;
3571
+ }
3572
+
3573
+ declare class UploadDemoComponent implements OnInit, OnDestroy {
3574
+ private httpManager;
3575
+ private toastService;
3576
+ uploadState: UploadStateModel;
3577
+ allowedTypes: string[];
3578
+ maxFileSize: number;
3579
+ ngOnInit(): void;
3580
+ ngOnDestroy(): void;
3581
+ onFileSelected(event: Event): void;
3582
+ validateFile(file: File): string | null;
3583
+ clearSelection(): void;
3584
+ startUpload(): void;
3585
+ getFileSizeString(size: number): string;
3586
+ static ɵfac: i0.ɵɵFactoryDeclaration<UploadDemoComponent, never>;
3587
+ static ɵcmp: i0.ɵɵComponentDeclaration<UploadDemoComponent, "lib-upload-demo", never, {}, {}, never, never, false, never>;
3588
+ }
3589
+
3459
3590
  declare class SpinnerComponent implements OnInit {
3460
3591
  color: ThemePalette;
3461
3592
  diameter?: number;
@@ -3537,7 +3668,7 @@ declare class FileDownloaderModule {
3537
3668
  declare class HttpRequestManagerModule {
3538
3669
  static forRoot(config?: ConfigOptions): ModuleWithProviders<HttpRequestManagerModule>;
3539
3670
  static ɵfac: i0.ɵɵFactoryDeclaration<HttpRequestManagerModule, never>;
3540
- static ɵmod: i0.ɵɵNgModuleDeclaration<HttpRequestManagerModule, [typeof RequestManagerBasicDemoComponent, typeof HttpRequestServicesDemoComponent, typeof RequestManagerStateDemoComponent, typeof RequestManagerDemoComponent, typeof RequestSignalsManagerDemoComponent, typeof LocalStorageDemoComponent, typeof LocalStorageSignalsDemoComponent, typeof RequestManagerWsDemoComponent, typeof StoreStateManagerDemoComponent, typeof DatabaseDataDemoComponent, typeof WsDataControlComponent, typeof WsMessagingComponent, typeof WsNotificationsComponent, typeof WsAiMessagingComponent, typeof WsChatsComponent], [typeof i4.CommonModule, typeof i17.ToastMessageDisplayModule, typeof _angular_forms.FormsModule, typeof _angular_forms.ReactiveFormsModule, typeof i7.MatButtonModule, typeof i20.MatTabsModule, typeof i21.MatSelectModule, typeof i22.MatChipsModule, typeof i23.MatMenuModule, typeof i5.MatIconModule, typeof i25.MatTableModule, typeof i26.MatButtonToggleModule, typeof i27.MatAutocompleteModule, typeof i28.MatProgressBarModule, typeof i6.MatProgressSpinnerModule, typeof i30.MatSlideToggleModule, typeof i31.MatDividerModule, typeof i32.MatFormFieldModule, typeof i33.MatInputModule, typeof i34.MatToolbarModule, typeof i30.MatSlideToggleModule, typeof i35.TranslateModule, typeof i36.MatSidenavModule, typeof i37.MatDatepickerModule, typeof i38.MatNativeDateModule, typeof i39.MatCardModule, typeof FileDownloaderModule], [typeof HttpRequestServicesDemoComponent]>;
3671
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HttpRequestManagerModule, [typeof RequestManagerBasicDemoComponent, typeof HttpRequestServicesDemoComponent, typeof RequestManagerStateDemoComponent, typeof RequestManagerDemoComponent, typeof RequestSignalsManagerDemoComponent, typeof LocalStorageDemoComponent, typeof LocalStorageSignalsDemoComponent, typeof RequestManagerWsDemoComponent, typeof StoreStateManagerDemoComponent, typeof DatabaseDataDemoComponent, typeof WsDataControlComponent, typeof WsMessagingComponent, typeof WsNotificationsComponent, typeof WsAiMessagingComponent, typeof WsChatsComponent, typeof UploadDemoComponent], [typeof i4.CommonModule, typeof i18.ToastMessageDisplayModule, typeof _angular_forms.FormsModule, typeof _angular_forms.ReactiveFormsModule, typeof i7.MatButtonModule, typeof i21.MatTabsModule, typeof i22.MatSelectModule, typeof i23.MatChipsModule, typeof i24.MatMenuModule, typeof i5.MatIconModule, typeof i26.MatTableModule, typeof i27.MatButtonToggleModule, typeof i28.MatAutocompleteModule, typeof i29.MatProgressBarModule, typeof i6.MatProgressSpinnerModule, typeof i31.MatSlideToggleModule, typeof i32.MatDividerModule, typeof i33.MatFormFieldModule, typeof i34.MatInputModule, typeof i35.MatToolbarModule, typeof i31.MatSlideToggleModule, typeof i36.TranslateModule, typeof i37.MatSidenavModule, typeof i38.MatDatepickerModule, typeof i39.MatNativeDateModule, typeof i40.MatCardModule, typeof FileDownloaderModule], [typeof HttpRequestServicesDemoComponent, typeof UploadDemoComponent]>;
3541
3672
  static ɵinj: i0.ɵɵInjectorDeclaration<HttpRequestManagerModule>;
3542
3673
  }
3543
3674
 
@@ -3556,5 +3687,5 @@ declare class StoreStateSignalsDemoComponent implements OnInit {
3556
3687
  static ɵcmp: i0.ɵɵComponentDeclaration<StoreStateSignalsDemoComponent, "app-store-state-signals-demo", never, {}, {}, never, never, false, never>;
3557
3688
  }
3558
3689
 
3559
- export { ApiRequest, AppService, AsymmetricalEncryptionService, BatchOptions, BatchResult, CONFIG_SETTINGS_TOKEN, ChannelType, ConfigHTTPOptions, ConfigOptions, DataType, DatabaseDataDemoComponent, DatabaseManagerService, DatabaseStorage, DbService, ErrorDisplaySettings, GlobalStoreOptions, HTTPManagerService, HTTPManagerSignalsService, HTTPManagerStateService, HeadersService, HttpRequestManagerModule, HttpRequestServicesDemoComponent, LocalStorageDemoComponent, LocalStorageManagerService, LocalStorageOptions, LocalStorageSignalsDemoComponent, LocalStorageSignalsManagerService, LoggerService, NotificationMessage, PathQueryService, PublicMessage, Random, RandomHSLColor, RandomHexColor, RandomNumber, RandomNumbers, RandomNumbersUnique, RandomPaletteColor, RandomSignature, RandomStr, RandomVisibleColor, RequestErrorInterceptor, RequestHeadersInterceptor, RequestManagerDemoComponent, RequestManagerStateDemoComponent, RequestOptions, RequestService, RequestSignalsService, RetryOptions, SettingOptions, StateMessage, StateStorageOptions, StorageData, StorageOption, StorageType, StoreStateManagerService, StoreStateManagerSignalsService, StoreStateSignalsDemoComponent, StreamType, SymmetricalEncryptionService, TableSchemaDef, UUID, UUID_STR, UserData, UtilsService, WSOptions, WebSocketMessageService, WithCredentialsInterceptor, calculateBatchProgress, countdown, createChannelName, delayedRetry, isErrorState, isPendingState, isSuccessState, requestPolling, requestStreaming, streamAI, streamAuto, streamEvents, streamJSON, streamNDJSON };
3560
- export type { APIStateManagerData, ApiRequestInterface, BatchErrorState, BatchOptionsInterface, BatchPendingState, BatchProgress, BatchRequestState, BatchResultInterface, BatchSuccessState, ConfigHTTPOptionsInterface, ConfigOptionsInterface, DatabaseStorageInterface, ErrorDisplaySettingsInterface, GlobalStoreOptionsInterface, LocalStorageOptionsInterface, NotificationMessageInterface, ParsingResult, PublicMessageInterface, RequestOptionsInterface, RetryOptionsInterface, SettingOptionsInterface, State, StateMessageInterface, StateStorageOptionsInterface, StateStoreManagerData$1 as StateStoreManagerData, StorageDataInterface, StorageOptionInterface, StreamConfig, StreamEvent, TableRecord, TableSchemaDefInterface, UserDataInterface, WSOptionsInterface };
3690
+ export { ApiRequest, AppService, AsymmetricalEncryptionService, BatchOptions, BatchResult, CONFIG_SETTINGS_TOKEN, ChannelType, ConfigHTTPOptions, ConfigOptions, DataType, DatabaseDataDemoComponent, DatabaseManagerService, DatabaseStorage, DbService, ErrorDisplaySettings, GlobalStoreOptions, HTTPManagerService, HTTPManagerSignalsService, HTTPManagerStateService, HeadersService, HttpRequestManagerModule, HttpRequestServicesDemoComponent, InvalidFileInfoModel, LocalStorageDemoComponent, LocalStorageManagerService, LocalStorageOptions, LocalStorageSignalsDemoComponent, LocalStorageSignalsManagerService, LoggerService, NotificationMessage, OperationResultModel, PathQueryService, PublicMessage, Random, RandomHSLColor, RandomHexColor, RandomNumber, RandomNumbers, RandomNumbersUnique, RandomPaletteColor, RandomSignature, RandomStr, RandomVisibleColor, RequestErrorInterceptor, RequestHeadersInterceptor, RequestManagerDemoComponent, RequestManagerStateDemoComponent, RequestOptions, RequestService, RequestSignalsService, RetryOptions, SettingOptions, StateMessage, StateOperationResult, StateStorageOptions, StorageData, StorageOption, StorageType, StoreStateManagerService, StoreStateManagerSignalsService, StoreStateSignalsDemoComponent, 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 };
3691
+ export type { APIStateManagerData, ApiRequestInterface, BatchErrorState, BatchOptionsInterface, BatchPendingState, BatchProgress, BatchRequestState, BatchResultInterface, BatchSuccessState, ConfigHTTPOptionsInterface, ConfigOptionsInterface, DatabaseStorageInterface, ErrorDisplaySettingsInterface, GlobalStoreOptionsInterface, InvalidFileInfoInterface, LocalStorageOptionsInterface, NotificationMessageInterface, OperationResultInterface, ParsingResult, PublicMessageInterface, RequestOptionsInterface, RetryOptionsInterface, SettingOptionsInterface, State, StateMessageInterface, StateOperationResultInterface, StateStorageOptionsInterface, StateStoreManagerData$1 as StateStoreManagerData, StorageDataInterface, StorageOptionInterface, StreamConfig, StreamEvent, TableRecord, TableSchemaDefInterface, UploadValidationErrorInterface, UserDataInterface, WSOptionsInterface };
Binary file