http-request-manager 18.5.18 → 18.5.19

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.5.18",
3
+ "version": "18.5.19",
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,7 +385,7 @@ declare class HTTPManagerStateService<T extends {
385
385
  userAction$: Observable<any>;
386
386
  wsConnection: boolean;
387
387
  wsOptions: WSOptions;
388
- connectionStatus$?: Observable<boolean>;
388
+ connectionStatus$: Observable<boolean>;
389
389
  constructor(apiOptions: ApiRequest, dataType: DataType | undefined, database?: DatabaseStorage | undefined);
390
390
  setApiRequestOptions(apiOptions?: ApiRequest, dataType?: DataType, database?: DatabaseStorage): void;
391
391
  private setupConnectionStatus;
@@ -1472,7 +1472,7 @@ declare class RequestManagerWsDemoComponent implements OnInit {
1472
1472
  user$: Observable<WSUser | null>;
1473
1473
  attempts$: Observable<number>;
1474
1474
  nextRetry$: Observable<number>;
1475
- connectionStatus$: Observable<boolean> | undefined;
1475
+ connectionStatus$: Observable<boolean>;
1476
1476
  data$: Observable<any>;
1477
1477
  isPending$: Observable<boolean>;
1478
1478
  ngOnInit(): void;
@@ -1590,7 +1590,7 @@ declare class WsMessagingComponent implements OnInit {
1590
1590
  user$: Observable<WSUser | null>;
1591
1591
  users$: Observable<any[]>;
1592
1592
  data$: Observable<any>;
1593
- connectionStatus$: Observable<boolean> | undefined;
1593
+ connectionStatus$: Observable<boolean>;
1594
1594
  messages: _angular_forms.FormGroup<{
1595
1595
  channels: FormControl<WSUser[] | null>;
1596
1596
  toUsers: FormControl<WSUser[] | null>;
Binary file