http-request-manager 18.7.11 → 18.7.12

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.7.11",
3
+ "version": "18.7.12",
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",
@@ -248,6 +248,28 @@ declare class WSUser implements WSUserInterface {
248
248
  static adapt(item?: any): WSUser;
249
249
  }
250
250
 
251
+ interface ChannelMessageDataInterface {
252
+ channel: string;
253
+ users: WSUser[];
254
+ }
255
+ declare class ChannelMessageData implements ChannelMessageDataInterface {
256
+ channel: string;
257
+ users: WSUser[];
258
+ constructor(channel: string, users?: WSUser[]);
259
+ static adapt(item?: any): ChannelMessageData;
260
+ }
261
+
262
+ interface ChannelMessageInterface {
263
+ sessionId: any;
264
+ content: any;
265
+ }
266
+ declare class ChannelMessage implements ChannelMessageInterface {
267
+ sessionId: any;
268
+ content: any;
269
+ constructor(sessionId?: any, content?: any);
270
+ static adapt(item?: any): ChannelMessage;
271
+ }
272
+
251
273
  declare enum CommunicationType {
252
274
  MESSAGE = 0,
253
275
  ALERT = 1,
@@ -343,17 +365,6 @@ declare class DatabaseManagerService extends DbService {
343
365
  static ɵprov: i0.ɵɵInjectableDeclaration<DatabaseManagerService>;
344
366
  }
345
367
 
346
- interface ChannelMessageInterface {
347
- sessionId: any;
348
- content: any;
349
- }
350
- declare class ChannelMessage implements ChannelMessageInterface {
351
- sessionId: any;
352
- content: any;
353
- constructor(sessionId?: any, content?: any);
354
- static adapt(item?: any): ChannelMessage;
355
- }
356
-
357
368
  /**
358
369
  * Channel type enum for different communication purposes
359
370
  * - STATE: Private channels for state synchronization (SYS- prefix)
@@ -2240,5 +2251,5 @@ declare class HttpRequestManagerModule {
2240
2251
  static ɵinj: i0.ɵɵInjectorDeclaration<HttpRequestManagerModule>;
2241
2252
  }
2242
2253
 
2243
- export { ApiRequest, AppService, AsymmetricalEncryptionService, CONFIG_SETTINGS_TOKEN, ChannelInfo, ChannelType, CommunicationType, ConfigHTTPOptions, ConfigOptions, DataType, DatabaseDataDemoComponent, DatabaseManagerService, DatabaseStorage, DbService, ErrorDisplaySettings, GlobalStoreOptions, HTTPManagerService, HTTPManagerSignalsService, HTTPManagerStateService, HeadersService, HttpRequestManagerModule, HttpRequestServicesDemoComponent, LocalStorageDemoComponent, LocalStorageManagerService, LocalStorageOptions, LocalStorageSignalsManagerService, PathQueryService, Random, RandomHSLColor, RandomHexColor, RandomNumber, RandomNumbers, RandomNumbersUnique, RandomPaletteColor, RandomSignature, RandomStr, RandomVisibleColor, RequestErrorInterceptor, RequestHeadersInterceptor, RequestManagerDemoComponent, RequestManagerStateDemoComponent, RequestOptions, RequestService, RequestSignalsService, RetryOptions, SettingOptions, StateStorageOptions, StorageData, StorageOption, StorageType, StoreStateManagerService, StreamType, SymmetricalEncryptionService, TableSchemaDef, UUID, UUID_STR, UtilsService, WSOptions, WSUser, WebsocketService, WithCredentialsInterceptor, countdown, createChannelName, delayedRetry, requestPolling, requestStreaming, streamAI, streamAuto, streamEvents, streamJSON, streamNDJSON };
2244
- export type { APIStateManagerData, ApiRequestInterface, ChannelInfoInterface, ConfigHTTPOptionsInterface, ConfigOptionsInterface, DatabaseStorageInterface, ErrorDisplaySettingsInterface, GlobalStoreOptionsInterface, LocalStorageOptionsInterface, RequestOptionsInterface, RetryOptionsInterface, SettingOptionsInterface, State, StateStorageOptionsInterface, StateStoreManagerData, StorageDataInterface, StorageOptionInterface, StreamConfig, TableRecord, TableSchemaDefInterface, WSOptionsInterface, WSUserInterface };
2254
+ export { ApiRequest, AppService, AsymmetricalEncryptionService, CONFIG_SETTINGS_TOKEN, ChannelInfo, ChannelMessage, ChannelMessageData, ChannelType, CommunicationType, ConfigHTTPOptions, ConfigOptions, DataType, DatabaseDataDemoComponent, DatabaseManagerService, DatabaseStorage, DbService, ErrorDisplaySettings, GlobalStoreOptions, HTTPManagerService, HTTPManagerSignalsService, HTTPManagerStateService, HeadersService, HttpRequestManagerModule, HttpRequestServicesDemoComponent, LocalStorageDemoComponent, LocalStorageManagerService, LocalStorageOptions, LocalStorageSignalsDemoComponent, LocalStorageSignalsManagerService, PathQueryService, Random, RandomHSLColor, RandomHexColor, RandomNumber, RandomNumbers, RandomNumbersUnique, RandomPaletteColor, RandomSignature, RandomStr, RandomVisibleColor, RequestErrorInterceptor, RequestHeadersInterceptor, RequestManagerDemoComponent, RequestManagerStateDemoComponent, RequestManagerWsDemoComponent, RequestOptions, RequestService, RequestSignalsManagerDemoComponent, RequestSignalsService, RetryOptions, SettingOptions, StateStorageOptions, StorageData, StorageOption, StorageType, StoreStateManagerDemoComponent, StoreStateManagerService, StreamType, SymmetricalEncryptionService, TableSchemaDef, UUID, UUID_STR, UtilsService, WSOptions, WSUser, WebsocketService, WithCredentialsInterceptor, countdown, createChannelName, delayedRetry, requestPolling, requestStreaming, streamAI, streamAuto, streamEvents, streamJSON, streamNDJSON };
2255
+ export type { APIStateManagerData, ApiRequestInterface, ChannelInfoInterface, ChannelMessageDataInterface, ChannelMessageInterface, ConfigHTTPOptionsInterface, ConfigOptionsInterface, DatabaseStorageInterface, ErrorDisplaySettingsInterface, GlobalStoreOptionsInterface, LocalStorageOptionsInterface, RequestOptionsInterface, RetryOptionsInterface, SettingOptionsInterface, State, StateStorageOptionsInterface, StateStoreManagerData, StorageDataInterface, StorageOptionInterface, StreamConfig, TableRecord, TableSchemaDefInterface, WSOptionsInterface, WSUserInterface };
Binary file