@thantickets/common 1.0.24 → 1.0.25

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,7 +11,6 @@ export declare abstract class Listener<T extends Event> {
11
11
  protected client: Stan;
12
12
  protected actWait: number;
13
13
  constructor(client: Stan);
14
- protected getClient(): Stan;
15
14
  subscriptionOptions(): import("node-nats-streaming").SubscriptionOptions;
16
15
  listen(): void;
17
16
  parseMessage(msg: Message): any;
@@ -6,9 +6,6 @@ class Listener {
6
6
  this.actWait = 5 * 1000;
7
7
  this.client = client;
8
8
  }
9
- getClient() {
10
- return this.client;
11
- }
12
9
  subscriptionOptions() {
13
10
  return this.client
14
11
  .subscriptionOptions()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thantickets/common",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",