http-request-manager 18.10.1 → 18.10.2

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.10.1",
3
+ "version": "18.10.2",
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",
@@ -2797,6 +2797,7 @@ declare class WsDataControlComponent implements OnInit {
2797
2797
  user: any;
2798
2798
  path: (string | number)[];
2799
2799
  stateDataRequestService: StateDataRequestService;
2800
+ webSocketMessageService: WebSocketMessageService;
2800
2801
  user$: rxjs.Observable<WSUser | null>;
2801
2802
  users$: rxjs.Observable<any[]>;
2802
2803
  userAction$: rxjs.Observable<any>;
@@ -2807,6 +2808,15 @@ declare class WsDataControlComponent implements OnInit {
2807
2808
  onAddData(): void;
2808
2809
  onUpdateData(data: any[]): void;
2809
2810
  onRemoveData(data: any): void;
2811
+ /**
2812
+ * Test direct state message via WebSocketMessageService
2813
+ * Sends an UPDATE message that should trigger fetchRecord() in the state manager
2814
+ *
2815
+ * @param recordId - The record ID to update (default: 63)
2816
+ * @param useFakeSessionId - If true, uses a fake sessionId to avoid filtering (default: true)
2817
+ * @param customSessionId - Optional custom sessionId (overrides useFakeSessionId if provided)
2818
+ */
2819
+ onTestDirectStateMessage(recordId?: number, useFakeSessionId?: boolean, customSessionId?: string): void;
2810
2820
  static ɵfac: i0.ɵɵFactoryDeclaration<WsDataControlComponent, never>;
2811
2821
  static ɵcmp: i0.ɵɵComponentDeclaration<WsDataControlComponent, "app-ws-data-control", never, { "server": { "alias": "server"; "required": false; }; "wsServer": { "alias": "wsServer"; "required": false; }; "jwtToken": { "alias": "jwtToken"; "required": false; }; "user": { "alias": "user"; "required": false; }; "path": { "alias": "path"; "required": false; }; }, {}, never, never, false, never>;
2812
2822
  }
Binary file