@squidcloud/client 1.0.48 → 1.0.50

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.
@@ -4,8 +4,8 @@ export declare class DestructManager {
4
4
  private readonly predestructors;
5
5
  private readonly destructors;
6
6
  private readonly isDestructedSubject;
7
- get isDestructed(): boolean;
8
- get isDestructedObservable(): Observable<boolean>;
7
+ get isDestructing(): boolean;
8
+ get isDestructingObservable(): Observable<boolean>;
9
9
  onPreDestruct(fn: DestructorFn): void;
10
10
  onDestruct(fn: DestructorFn): void;
11
11
  destruct(): Promise<void>;
@@ -5,6 +5,7 @@ import { SocketManagerInterface } from './socket.manager';
5
5
  export declare class RpcManager {
6
6
  private readonly rpcEndpoint;
7
7
  private readonly socketManager;
8
+ private readonly destructManager;
8
9
  private readonly headers;
9
10
  private readonly staticHeaders;
10
11
  private readonly onGoingRpcsCounter;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/client",
3
- "version": "1.0.48",
3
+ "version": "1.0.50",
4
4
  "description": "A typescript implementation of the Squid client",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/typescript-client/src/index.d.ts",