http-request-manager 18.11.22 → 18.12.1

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.22",
3
+ "version": "18.12.1",
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,
@@ -203,10 +203,17 @@ interface ApiRequestInterface {
203
203
  displayError?: boolean;
204
204
  displaySuccess?: boolean;
205
205
  successMessage?: string;
206
+ errorMessage?: string;
206
207
  saveAs?: string;
207
208
  fileContentHeader?: string;
208
209
  ws?: WSOptions;
209
210
  env?: string;
211
+ uploadFiles?: File | File[];
212
+ uploadFieldName?: string;
213
+ uploadHttpMethod?: 'POST' | 'PUT';
214
+ allowedTypes?: string[];
215
+ maxFileSize?: number;
216
+ maxTotalSize?: number;
210
217
  }
211
218
  declare class ApiRequest implements ApiRequestInterface {
212
219
  server: string;
@@ -221,11 +228,18 @@ declare class ApiRequest implements ApiRequestInterface {
221
228
  displayError?: boolean | undefined;
222
229
  displaySuccess?: boolean | undefined;
223
230
  successMessage?: string | undefined;
231
+ errorMessage?: string | undefined;
224
232
  saveAs?: string | undefined;
225
233
  fileContentHeader?: string | undefined;
226
234
  ws?: WSOptions | undefined;
227
235
  env?: string | undefined;
228
- 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, 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);
229
243
  static adapt(item?: any): ApiRequest;
230
244
  }
231
245
 
@@ -1027,6 +1041,9 @@ declare class RequestService extends WebsocketService {
1027
1041
  private request;
1028
1042
  private requestStreaming;
1029
1043
  downloadFileRequest(options: ApiRequest): Observable<any>;
1044
+ uploadFileRequest(options: ApiRequest): Observable<any>;
1045
+ private validateUploadFiles;
1046
+ private buildFormData;
1030
1047
  private handleFinalize;
1031
1048
  private downloadFile;
1032
1049
  private createFileType;
@@ -1053,7 +1070,7 @@ interface BatchOptionsInterface {
1053
1070
  ignoreErrors?: boolean;
1054
1071
  logErrors?: boolean;
1055
1072
  displaySuccess?: boolean;
1056
- successMessage?: string;
1073
+ displayError?: boolean;
1057
1074
  }
1058
1075
  declare class BatchOptions implements BatchOptionsInterface {
1059
1076
  mode: 'sequential' | 'parallel';
@@ -1062,8 +1079,8 @@ declare class BatchOptions implements BatchOptionsInterface {
1062
1079
  ignoreErrors: boolean;
1063
1080
  logErrors: boolean;
1064
1081
  displaySuccess?: boolean | undefined;
1065
- successMessage?: string | undefined;
1066
- constructor(mode?: 'sequential' | 'parallel', stopOnError?: boolean, concurrency?: number, ignoreErrors?: boolean, logErrors?: boolean, displaySuccess?: boolean | undefined, successMessage?: string | undefined);
1082
+ displayError?: boolean | undefined;
1083
+ constructor(mode?: 'sequential' | 'parallel', stopOnError?: boolean, concurrency?: number, ignoreErrors?: boolean, logErrors?: boolean, displaySuccess?: boolean | undefined, displayError?: boolean | undefined);
1067
1084
  static adapt(item?: any): BatchOptions;
1068
1085
  }
1069
1086
 
@@ -1136,7 +1153,6 @@ interface ConfigHTTPOptionsInterface {
1136
1153
  stream?: boolean;
1137
1154
  displayError?: boolean;
1138
1155
  displaySuccess?: boolean;
1139
- successMessage?: string;
1140
1156
  }
1141
1157
  declare class ConfigHTTPOptions implements ConfigHTTPOptionsInterface {
1142
1158
  server: string;
@@ -1147,8 +1163,7 @@ declare class ConfigHTTPOptions implements ConfigHTTPOptionsInterface {
1147
1163
  stream?: boolean | undefined;
1148
1164
  displayError?: boolean | undefined;
1149
1165
  displaySuccess?: boolean | undefined;
1150
- successMessage?: string | undefined;
1151
- constructor(server?: string, path?: any[] | undefined, headers?: any, polling?: number | undefined, retry?: RetryOptions | undefined, stream?: boolean | undefined, displayError?: boolean | undefined, displaySuccess?: boolean | undefined, successMessage?: string | undefined);
1166
+ constructor(server?: string, path?: any[] | undefined, headers?: any, polling?: number | undefined, retry?: RetryOptions | undefined, stream?: boolean | undefined, displayError?: boolean | undefined, displaySuccess?: boolean | undefined);
1152
1167
  static adapt(item?: any): ConfigHTTPOptions;
1153
1168
  }
1154
1169
 
@@ -1183,6 +1198,33 @@ declare class ConfigOptions implements ConfigOptionsInterface {
1183
1198
  */
1184
1199
  declare const CONFIG_SETTINGS_TOKEN: InjectionToken<ConfigOptions>;
1185
1200
 
1201
+ interface InvalidFileInfoInterface {
1202
+ fileName: string;
1203
+ fileSize: number;
1204
+ fileType: string;
1205
+ errors: string[];
1206
+ }
1207
+ declare class InvalidFileInfoModel implements InvalidFileInfoInterface {
1208
+ fileName: string;
1209
+ fileSize: number;
1210
+ fileType: string;
1211
+ errors: string[];
1212
+ constructor(fileName?: string, fileSize?: number, fileType?: string, errors?: string[]);
1213
+ static adapt(item?: any): InvalidFileInfoModel;
1214
+ }
1215
+ interface UploadValidationErrorInterface {
1216
+ invalidFiles: InvalidFileInfoModel[];
1217
+ validFilesCount: number;
1218
+ totalFilesCount: number;
1219
+ }
1220
+ declare class UploadValidationErrorModel implements UploadValidationErrorInterface {
1221
+ invalidFiles: InvalidFileInfoModel[];
1222
+ validFilesCount: number;
1223
+ totalFilesCount: number;
1224
+ constructor(invalidFiles?: InvalidFileInfoModel[], validFilesCount?: number, totalFilesCount?: number);
1225
+ static adapt(item?: any): UploadValidationErrorModel;
1226
+ }
1227
+
1186
1228
  interface UserDataInterface {
1187
1229
  ldap: string;
1188
1230
  name: string;
@@ -1478,6 +1520,7 @@ declare class HTTPManagerService<T> extends RequestService {
1478
1520
  }>(data: T, options: ApiRequest, params?: any[]): Observable<T>;
1479
1521
  deleteRequest<T>(options: ApiRequest, params?: any[]): Observable<T>;
1480
1522
  downloadRequest<T>(options: ApiRequest, params?: any[], saveAs?: string): Observable<T>;
1523
+ uploadRequest<T>(files: File | File[], options: ApiRequest, params?: any[]): Observable<T>;
1481
1524
  private createObservable;
1482
1525
  private createRequest;
1483
1526
  private prepareRequestData;
@@ -1499,14 +1542,14 @@ declare class HTTPManagerService<T> extends RequestService {
1499
1542
  * @param options Optional batch configuration
1500
1543
  * @returns Observable emitting array of data when all requests complete
1501
1544
  */
1502
- getSequentialRequest<U = T>(requests: ApiRequest[], options?: BatchOptions): Observable<U[]>;
1545
+ getSequentialRequest<U = T>(requests: ApiRequest[], options?: BatchOptions, successMessage?: string, errorMessage?: string): Observable<U[]>;
1503
1546
  /**
1504
1547
  * Execute requests in parallel with concurrency control
1505
1548
  * @param requests Array of ApiRequest configurations
1506
1549
  * @param options Optional batch configuration with concurrency limit
1507
1550
  * @returns Observable emitting array of data when all requests complete
1508
1551
  */
1509
- getParallelRequest<U = T>(requests: ApiRequest[], options?: BatchOptions): Observable<U[]>;
1552
+ getParallelRequest<U = T>(requests: ApiRequest[], options?: BatchOptions, successMessage?: string, errorMessage?: string): Observable<U[]>;
1510
1553
  /**
1511
1554
  * Execute multiple HTTP requests and emit individual state changes in real-time
1512
1555
  * @param requests Array of ApiRequest configurations
@@ -1551,6 +1594,9 @@ declare class RequestSignalsService extends WebsocketService {
1551
1594
  private request;
1552
1595
  private requestStreamingOperator;
1553
1596
  downloadFileRequest(options: ApiRequest): Observable<any>;
1597
+ uploadFileRequest(options: ApiRequest): Observable<any>;
1598
+ private validateUploadFiles;
1599
+ private buildFormData;
1554
1600
  private handleFinalize;
1555
1601
  private downloadFile;
1556
1602
  private createFileType;
@@ -1668,6 +1714,7 @@ declare class HTTPManagerSignalsService<T> extends RequestSignalsService {
1668
1714
  }>(data: T, options: ApiRequest, params?: any[]): Observable<T>;
1669
1715
  deleteRequest<T>(options: ApiRequest, params?: any[]): Observable<T>;
1670
1716
  downloadRequest<T>(options: ApiRequest, params?: any[], saveAs?: string): Observable<T>;
1717
+ uploadRequest<T>(files: File | File[], options: ApiRequest, params?: any[]): Observable<T>;
1671
1718
  private createObservable;
1672
1719
  private createRequest;
1673
1720
  private prepareRequestData;
@@ -1689,14 +1736,14 @@ declare class HTTPManagerSignalsService<T> extends RequestSignalsService {
1689
1736
  * @param options Optional batch configuration
1690
1737
  * @returns Observable emitting array of data when all requests complete
1691
1738
  */
1692
- getSequentialRequest<U = T>(requests: ApiRequest[], options?: BatchOptions): Observable<U[]>;
1739
+ getSequentialRequest<U = T>(requests: ApiRequest[], options?: BatchOptions, successMessage?: string, errorMessage?: string): Observable<U[]>;
1693
1740
  /**
1694
1741
  * Execute requests in parallel with concurrency control
1695
1742
  * @param requests Array of ApiRequest configurations
1696
1743
  * @param options Optional batch configuration with concurrency limit
1697
1744
  * @returns Observable emitting array of data when all requests complete
1698
1745
  */
1699
- getParallelRequest<U = T>(requests: ApiRequest[], options?: BatchOptions): Observable<U[]>;
1746
+ getParallelRequest<U = T>(requests: ApiRequest[], options?: BatchOptions, successMessage?: string, errorMessage?: string): Observable<U[]>;
1700
1747
  /**
1701
1748
  * Execute multiple HTTP requests and emit individual state changes in real-time
1702
1749
  * @param requests Array of ApiRequest configurations
@@ -2237,6 +2284,12 @@ declare class HttpRequestServicesDemoComponent implements OnInit {
2237
2284
  new: boolean;
2238
2285
  divider?: undefined;
2239
2286
  disabled?: undefined;
2287
+ } | {
2288
+ name: string;
2289
+ value: string;
2290
+ new: boolean;
2291
+ divider: boolean;
2292
+ disabled?: undefined;
2240
2293
  } | {
2241
2294
  name: string;
2242
2295
  value: string;
@@ -3456,6 +3509,42 @@ declare class WsChatsComponent implements OnInit {
3456
3509
  static ɵcmp: i0.ɵɵComponentDeclaration<WsChatsComponent, "app-ws-chats", never, {}, {}, never, never, false, never>;
3457
3510
  }
3458
3511
 
3512
+ interface UploadStateInterface {
3513
+ selectedFiles: File[];
3514
+ isUploading: boolean;
3515
+ progress: number;
3516
+ currentFile: string | null;
3517
+ errorMessage: string | null;
3518
+ successMessage: string | null;
3519
+ }
3520
+ declare class UploadStateModel implements UploadStateInterface {
3521
+ selectedFiles: File[];
3522
+ isUploading: boolean;
3523
+ progress: number;
3524
+ currentFile: string | null;
3525
+ errorMessage: string | null;
3526
+ successMessage: string | null;
3527
+ constructor(selectedFiles?: File[], isUploading?: boolean, progress?: number, currentFile?: string | null, errorMessage?: string | null, successMessage?: string | null);
3528
+ static adapt(item?: any): UploadStateModel;
3529
+ }
3530
+
3531
+ declare class UploadDemoComponent implements OnInit, OnDestroy {
3532
+ private httpManager;
3533
+ private toastService;
3534
+ uploadState: UploadStateModel;
3535
+ allowedTypes: string[];
3536
+ maxFileSize: number;
3537
+ ngOnInit(): void;
3538
+ ngOnDestroy(): void;
3539
+ onFileSelected(event: Event): void;
3540
+ validateFile(file: File): string | null;
3541
+ clearSelection(): void;
3542
+ startUpload(): void;
3543
+ getFileSizeString(size: number): string;
3544
+ static ɵfac: i0.ɵɵFactoryDeclaration<UploadDemoComponent, never>;
3545
+ static ɵcmp: i0.ɵɵComponentDeclaration<UploadDemoComponent, "lib-upload-demo", never, {}, {}, never, never, false, never>;
3546
+ }
3547
+
3459
3548
  declare class SpinnerComponent implements OnInit {
3460
3549
  color: ThemePalette;
3461
3550
  diameter?: number;
@@ -3537,7 +3626,7 @@ declare class FileDownloaderModule {
3537
3626
  declare class HttpRequestManagerModule {
3538
3627
  static forRoot(config?: ConfigOptions): ModuleWithProviders<HttpRequestManagerModule>;
3539
3628
  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]>;
3629
+ 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
3630
  static ɵinj: i0.ɵɵInjectorDeclaration<HttpRequestManagerModule>;
3542
3631
  }
3543
3632
 
@@ -3556,5 +3645,5 @@ declare class StoreStateSignalsDemoComponent implements OnInit {
3556
3645
  static ɵcmp: i0.ɵɵComponentDeclaration<StoreStateSignalsDemoComponent, "app-store-state-signals-demo", never, {}, {}, never, never, false, never>;
3557
3646
  }
3558
3647
 
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 };
3648
+ 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, 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, UploadDemoComponent, UploadValidationErrorModel, UserData, UtilsService, WSOptions, WebSocketMessageService, WithCredentialsInterceptor, calculateBatchProgress, countdown, createChannelName, delayedRetry, isErrorState, isPendingState, isSuccessState, requestPolling, requestStreaming, streamAI, streamAuto, streamEvents, streamJSON, streamNDJSON };
3649
+ export type { APIStateManagerData, ApiRequestInterface, BatchErrorState, BatchOptionsInterface, BatchPendingState, BatchProgress, BatchRequestState, BatchResultInterface, BatchSuccessState, ConfigHTTPOptionsInterface, ConfigOptionsInterface, DatabaseStorageInterface, ErrorDisplaySettingsInterface, GlobalStoreOptionsInterface, InvalidFileInfoInterface, LocalStorageOptionsInterface, NotificationMessageInterface, ParsingResult, PublicMessageInterface, RequestOptionsInterface, RetryOptionsInterface, SettingOptionsInterface, State, StateMessageInterface, StateStorageOptionsInterface, StateStoreManagerData$1 as StateStoreManagerData, StorageDataInterface, StorageOptionInterface, StreamConfig, StreamEvent, TableRecord, TableSchemaDefInterface, UploadValidationErrorInterface, UserDataInterface, WSOptionsInterface };
Binary file