@busy-app/busy-lib 0.15.0 → 0.15.1
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.
- package/dist/index.cjs +1072 -1072
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1101 -1099
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -195,6 +195,7 @@ declare abstract class BaseStateStream {
|
|
|
195
195
|
protected dataTimeout: number;
|
|
196
196
|
protected maxReconnectAttempts: number;
|
|
197
197
|
protected maxAuthAttempts: number;
|
|
198
|
+
protected reconnectDelay: number;
|
|
198
199
|
protected abstract streamMode: StreamMode;
|
|
199
200
|
private worker;
|
|
200
201
|
private connectionTimer;
|
|
@@ -5503,6 +5504,7 @@ export declare interface StreamConfig {
|
|
|
5503
5504
|
/** Data inactivity timeout in milliseconds. Default: 15000ms */
|
|
5504
5505
|
dataTimeout?: number;
|
|
5505
5506
|
maxReconnectAttempts?: number;
|
|
5507
|
+
reconnectDelay?: number;
|
|
5506
5508
|
}
|
|
5507
5509
|
|
|
5508
5510
|
/**
|
|
@@ -5836,6 +5838,7 @@ declare type WorkerCommand = {
|
|
|
5836
5838
|
mode: StreamMode;
|
|
5837
5839
|
maxReconnectAttempts: number;
|
|
5838
5840
|
maxAuthAttempts: number;
|
|
5841
|
+
reconnectDelay: number;
|
|
5839
5842
|
} | {
|
|
5840
5843
|
type: 'STOP';
|
|
5841
5844
|
} | {
|