@statsig/client-core 3.30.1 → 3.30.2-beta.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.
@@ -0,0 +1,96 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.EventSender = void 0;
13
+ const Log_1 = require("./Log");
14
+ const NetworkConfig_1 = require("./NetworkConfig");
15
+ const VisibilityObserving_1 = require("./VisibilityObserving");
16
+ class EventSender {
17
+ constructor(sdkKey, network, emitter, logEventUrlConfig, options, loggingEnabled) {
18
+ this._sdkKey = sdkKey;
19
+ this._network = network;
20
+ this._emitter = emitter;
21
+ this._options = options;
22
+ this._logEventUrlConfig = logEventUrlConfig;
23
+ this._loggingEnabled = loggingEnabled;
24
+ }
25
+ setLogEventCompressionMode(mode) {
26
+ this._network.setLogEventCompressionMode(mode);
27
+ }
28
+ setLoggingEnabled(enabled) {
29
+ this._loggingEnabled = enabled;
30
+ }
31
+ sendBatch(batch) {
32
+ return __awaiter(this, void 0, void 0, function* () {
33
+ var _a, _b;
34
+ try {
35
+ const isClosing = (0, VisibilityObserving_1._isUnloading)();
36
+ const shouldUseBeacon = isClosing &&
37
+ this._network.isBeaconSupported() &&
38
+ ((_b = (_a = this._options) === null || _a === void 0 ? void 0 : _a.networkConfig) === null || _b === void 0 ? void 0 : _b.networkOverrideFunc) == null;
39
+ this._emitter({
40
+ name: 'pre_logs_flushed',
41
+ events: batch.events,
42
+ });
43
+ const response = shouldUseBeacon
44
+ ? this._sendEventsViaBeacon(batch)
45
+ : yield this._sendEventsViaPost(batch);
46
+ if (response.success) {
47
+ this._emitter({
48
+ name: 'logs_flushed',
49
+ events: batch.events,
50
+ });
51
+ return response;
52
+ }
53
+ return { success: false, statusCode: -1 };
54
+ }
55
+ catch (error) {
56
+ Log_1.Log.warn('Failed to send batch:', error);
57
+ return { success: false, statusCode: -1 };
58
+ }
59
+ });
60
+ }
61
+ _sendEventsViaPost(batch) {
62
+ return __awaiter(this, void 0, void 0, function* () {
63
+ var _a;
64
+ const result = yield this._network.post(this._getRequestData(batch));
65
+ const code = (_a = result === null || result === void 0 ? void 0 : result.code) !== null && _a !== void 0 ? _a : -1;
66
+ return { success: code >= 200 && code < 300, statusCode: code };
67
+ });
68
+ }
69
+ _sendEventsViaBeacon(batch) {
70
+ const success = this._network.beacon(this._getRequestData(batch));
71
+ return {
72
+ success,
73
+ statusCode: success ? 200 : -1,
74
+ };
75
+ }
76
+ _getRequestData(batch) {
77
+ return {
78
+ sdkKey: this._sdkKey,
79
+ data: {
80
+ events: batch.events,
81
+ },
82
+ urlConfig: this._logEventUrlConfig,
83
+ retries: 3,
84
+ isCompressable: true,
85
+ params: {
86
+ [NetworkConfig_1.NetworkParam.EventCount]: String(batch.events.length),
87
+ },
88
+ headers: {
89
+ 'statsig-event-count': String(batch.events.length),
90
+ 'statsig-retry-count': String(batch.attempts),
91
+ },
92
+ credentials: 'same-origin',
93
+ };
94
+ }
95
+ }
96
+ exports.EventSender = EventSender;
@@ -0,0 +1,50 @@
1
+ import { BatchQueue } from './BatchedEventsQueue';
2
+ import { ErrorBoundary } from './ErrorBoundary';
3
+ import { NetworkCore } from './NetworkCore';
4
+ import { PendingEvents } from './PendingEvents';
5
+ import { StatsigClientEmitEventFunc } from './StatsigClientBase';
6
+ import { StatsigEventInternal } from './StatsigEvent';
7
+ import { LogEventCompressionMode, LoggingEnabledOption, NetworkConfigCommon, StatsigOptionsCommon } from './StatsigOptionsCommon';
8
+ import { UrlConfiguration } from './UrlConfiguration';
9
+ type PrepareFlushCallBack = () => void;
10
+ export declare class FlushCoordinator {
11
+ private _flushInterval;
12
+ private _batchQueue;
13
+ private _pendingEvents;
14
+ private _eventSender;
15
+ private _onPrepareFlush;
16
+ private _errorBoundary;
17
+ private _cooldownTimer;
18
+ private _maxIntervalTimer;
19
+ private _hasRunQuickFlush;
20
+ private _currentFlushPromise;
21
+ private _creationTime;
22
+ private _sdkKey;
23
+ private _storageKey;
24
+ constructor(batchQueue: BatchQueue, pendingEvents: PendingEvents, onPrepareFlush: PrepareFlushCallBack, sdkKey: string, network: NetworkCore, emitter: StatsigClientEmitEventFunc, logEventUrlConfig: UrlConfiguration, options: StatsigOptionsCommon<NetworkConfigCommon> | null, loggingEnabled: LoggingEnabledOption, errorBoundary: ErrorBoundary);
25
+ setLoggingEnabled(loggingEnabled: LoggingEnabledOption): void;
26
+ setLogEventCompressionMode(mode: LogEventCompressionMode): void;
27
+ startScheduledFlushCycle(): void;
28
+ stopScheduledFlushCycle(): void;
29
+ addEvent(event: StatsigEventInternal): void;
30
+ processManualFlush(): Promise<void>;
31
+ processShutdown(): Promise<void>;
32
+ private _executeFlush;
33
+ checkQuickFlush(): void;
34
+ private _attemptScheduledFlush;
35
+ processLimitFlush(): void;
36
+ private _processLimitFlushInternal;
37
+ private _scheduleNextFlush;
38
+ private _clearAllTimers;
39
+ private _processNextBatch;
40
+ private _processOneBatch;
41
+ private _prepareQueueForFlush;
42
+ containsAtLeastOneFullBatch(): boolean;
43
+ convertPendingEventsToBatches(): number;
44
+ private _handleFailure;
45
+ loadAndRetryShutdownFailedEvents(): Promise<void>;
46
+ private _getStorageKey;
47
+ private _saveShutdownFailedEventsToStorage;
48
+ private _getShutdownFailedEventsFromStorage;
49
+ }
50
+ export {};
@@ -0,0 +1,332 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.FlushCoordinator = void 0;
13
+ const EventRetryConstants_1 = require("./EventRetryConstants");
14
+ const EventSender_1 = require("./EventSender");
15
+ const FlushInterval_1 = require("./FlushInterval");
16
+ const FlushTypes_1 = require("./FlushTypes");
17
+ const Hashing_1 = require("./Hashing");
18
+ const Log_1 = require("./Log");
19
+ const NetworkCore_1 = require("./NetworkCore");
20
+ const StorageProvider_1 = require("./StorageProvider");
21
+ class FlushCoordinator {
22
+ constructor(batchQueue, pendingEvents, onPrepareFlush,
23
+ // For Event Sender
24
+ sdkKey, network, emitter, logEventUrlConfig, options, loggingEnabled, errorBoundary) {
25
+ this._cooldownTimer = null;
26
+ this._maxIntervalTimer = null;
27
+ this._hasRunQuickFlush = false;
28
+ this._currentFlushPromise = null;
29
+ this._creationTime = Date.now();
30
+ this._storageKey = null;
31
+ this._flushInterval = new FlushInterval_1.FlushInterval();
32
+ this._batchQueue = batchQueue;
33
+ this._pendingEvents = pendingEvents;
34
+ this._onPrepareFlush = onPrepareFlush;
35
+ this._errorBoundary = errorBoundary;
36
+ this._sdkKey = sdkKey;
37
+ this._eventSender = new EventSender_1.EventSender(sdkKey, network, emitter, logEventUrlConfig, options, loggingEnabled);
38
+ }
39
+ setLoggingEnabled(loggingEnabled) {
40
+ this._eventSender.setLoggingEnabled(loggingEnabled);
41
+ }
42
+ setLogEventCompressionMode(mode) {
43
+ this._eventSender.setLogEventCompressionMode(mode);
44
+ }
45
+ startScheduledFlushCycle() {
46
+ this._scheduleNextFlush();
47
+ }
48
+ stopScheduledFlushCycle() {
49
+ this._clearAllTimers();
50
+ }
51
+ addEvent(event) {
52
+ this._pendingEvents.addToPendingEventsQueue(event);
53
+ if (this._pendingEvents.hasEventsForFullBatch()) {
54
+ this.processLimitFlush();
55
+ }
56
+ }
57
+ processManualFlush() {
58
+ return __awaiter(this, void 0, void 0, function* () {
59
+ if (this._currentFlushPromise) {
60
+ yield this._currentFlushPromise;
61
+ }
62
+ this._currentFlushPromise = this._executeFlush(FlushTypes_1.FlushType.Manual).finally(() => {
63
+ this._currentFlushPromise = null;
64
+ this._scheduleNextFlush();
65
+ });
66
+ return this._currentFlushPromise;
67
+ });
68
+ }
69
+ processShutdown() {
70
+ return __awaiter(this, void 0, void 0, function* () {
71
+ if (this._currentFlushPromise) {
72
+ yield this._currentFlushPromise;
73
+ }
74
+ this._currentFlushPromise = this._executeFlush(FlushTypes_1.FlushType.Shutdown)
75
+ .catch((error) => {
76
+ Log_1.Log.error(`Error during shutdown flush: ${error}`);
77
+ })
78
+ .finally(() => {
79
+ this._currentFlushPromise = null;
80
+ });
81
+ return this._currentFlushPromise;
82
+ });
83
+ }
84
+ _executeFlush(flushType) {
85
+ return __awaiter(this, void 0, void 0, function* () {
86
+ this._clearAllTimers();
87
+ try {
88
+ this._prepareQueueForFlush(flushType);
89
+ const batches = this._batchQueue.takeAllBatches();
90
+ if (batches.length === 0) {
91
+ return;
92
+ }
93
+ yield Promise.all(batches.map((batch) => this._processOneBatch(batch, flushType)));
94
+ }
95
+ finally {
96
+ this._scheduleNextFlush();
97
+ }
98
+ });
99
+ }
100
+ checkQuickFlush() {
101
+ if (this._hasRunQuickFlush) {
102
+ return;
103
+ }
104
+ if (Date.now() - this._creationTime >
105
+ EventRetryConstants_1.EventRetryConstants.QUICK_FLUSH_WINDOW_MS) {
106
+ return;
107
+ }
108
+ this._hasRunQuickFlush = true;
109
+ setTimeout(() => {
110
+ this.processManualFlush().catch((error) => {
111
+ Log_1.Log.warn('Quick flush failed:', error);
112
+ });
113
+ }, EventRetryConstants_1.EventRetryConstants.QUICK_FLUSH_WINDOW_MS);
114
+ }
115
+ _attemptScheduledFlush() {
116
+ if (this._currentFlushPromise) {
117
+ this._scheduleNextFlush();
118
+ return;
119
+ }
120
+ const shouldFlushBySize = this.containsAtLeastOneFullBatch();
121
+ const shouldFlushByTime = this._flushInterval.hasReachedMaxInterval();
122
+ if (!shouldFlushBySize && !shouldFlushByTime) {
123
+ this._scheduleNextFlush();
124
+ return;
125
+ }
126
+ this._flushInterval.markFlushAttempt();
127
+ let flushType;
128
+ if (shouldFlushBySize) {
129
+ flushType = FlushTypes_1.FlushType.ScheduledFullBatch;
130
+ }
131
+ else {
132
+ flushType = FlushTypes_1.FlushType.ScheduledMaxTime;
133
+ }
134
+ this._currentFlushPromise = this._processNextBatch(flushType)
135
+ .then(() => {
136
+ //This discards boolean result. Main goal here is to track completion
137
+ })
138
+ .catch((error) => {
139
+ Log_1.Log.error('Error during scheduled flush:', error);
140
+ })
141
+ .finally(() => {
142
+ this._currentFlushPromise = null;
143
+ this._scheduleNextFlush();
144
+ });
145
+ }
146
+ processLimitFlush() {
147
+ if (!this._flushInterval.hasCompletelyRecoveredFromBackoff()) {
148
+ return;
149
+ }
150
+ if (this._currentFlushPromise) {
151
+ return;
152
+ }
153
+ this._currentFlushPromise = this._processLimitFlushInternal()
154
+ .catch((error) => {
155
+ Log_1.Log.error(`Error during limit flush`, error);
156
+ })
157
+ .finally(() => {
158
+ this._currentFlushPromise = null;
159
+ this._scheduleNextFlush();
160
+ });
161
+ }
162
+ _processLimitFlushInternal() {
163
+ return __awaiter(this, void 0, void 0, function* () {
164
+ const success = yield this._processNextBatch(FlushTypes_1.FlushType.Limit);
165
+ if (!success) {
166
+ return;
167
+ }
168
+ while (this._flushInterval.hasCompletelyRecoveredFromBackoff() &&
169
+ this.containsAtLeastOneFullBatch()) {
170
+ const success = yield this._processNextBatch(FlushTypes_1.FlushType.Limit);
171
+ if (!success) {
172
+ break;
173
+ }
174
+ }
175
+ });
176
+ }
177
+ _scheduleNextFlush() {
178
+ this._clearAllTimers();
179
+ const cooldownDelay = Math.max(0, this._flushInterval.getTimeUntilNextFlush());
180
+ this._cooldownTimer = setTimeout(() => {
181
+ this._cooldownTimer = null;
182
+ this._attemptScheduledFlush();
183
+ }, cooldownDelay);
184
+ const maxIntervalDelay = Math.max(0, this._flushInterval.getTimeTillMaxInterval());
185
+ this._maxIntervalTimer = setTimeout(() => {
186
+ this._maxIntervalTimer = null;
187
+ this._attemptScheduledFlush();
188
+ }, maxIntervalDelay);
189
+ }
190
+ _clearAllTimers() {
191
+ if (this._cooldownTimer !== null) {
192
+ clearTimeout(this._cooldownTimer);
193
+ this._cooldownTimer = null;
194
+ }
195
+ if (this._maxIntervalTimer !== null) {
196
+ clearTimeout(this._maxIntervalTimer);
197
+ this._maxIntervalTimer = null;
198
+ }
199
+ }
200
+ _processNextBatch(flushType) {
201
+ return __awaiter(this, void 0, void 0, function* () {
202
+ this._prepareQueueForFlush(flushType);
203
+ const batch = this._batchQueue.takeNextBatch();
204
+ if (!batch) {
205
+ return false;
206
+ }
207
+ return this._processOneBatch(batch, flushType);
208
+ });
209
+ }
210
+ _processOneBatch(batch, flushType) {
211
+ return __awaiter(this, void 0, void 0, function* () {
212
+ const result = yield this._eventSender.sendBatch(batch);
213
+ if (result.success) {
214
+ this._flushInterval.adjustForSuccess();
215
+ return true;
216
+ }
217
+ this._flushInterval.adjustForFailure();
218
+ this._handleFailure(batch, flushType, result.statusCode);
219
+ return false;
220
+ });
221
+ }
222
+ _prepareQueueForFlush(flushType) {
223
+ this._onPrepareFlush();
224
+ const droppedCount = this.convertPendingEventsToBatches();
225
+ if (droppedCount > 0) {
226
+ Log_1.Log.warn(`Dropped ${droppedCount} events`);
227
+ this._errorBoundary.logDroppedEvents(droppedCount, `Batch queue limit reached`, {
228
+ loggingInterval: this._flushInterval.getCurrentIntervalMs(),
229
+ batchSize: this._batchQueue.batchSize(),
230
+ maxPendingBatches: EventRetryConstants_1.EventRetryConstants.MAX_PENDING_BATCHES,
231
+ flushType: flushType,
232
+ });
233
+ }
234
+ }
235
+ containsAtLeastOneFullBatch() {
236
+ return (this._pendingEvents.hasEventsForFullBatch() ||
237
+ this._batchQueue.hasFullBatch());
238
+ }
239
+ convertPendingEventsToBatches() {
240
+ if (this._pendingEvents.isEmpty()) {
241
+ return 0;
242
+ }
243
+ const allEvents = this._pendingEvents.takeAll();
244
+ return this._batchQueue.createBatches(allEvents);
245
+ }
246
+ _handleFailure(batch, flushType, statusCode) {
247
+ if (flushType === FlushTypes_1.FlushType.Shutdown) {
248
+ Log_1.Log.warn(`${flushType} flush failed during shutdown. ` +
249
+ `${batch.events.length} event(s) will be saved to storage for retry in next session.`);
250
+ this._saveShutdownFailedEventsToStorage(batch.events);
251
+ this._errorBoundary.logEventRequestFailure(batch.events.length, `flush failed during shutdown - saved to storage`, flushType, statusCode);
252
+ return;
253
+ }
254
+ if (!NetworkCore_1.RETRYABLE_CODES.has(statusCode)) {
255
+ Log_1.Log.warn(`${flushType} flush failed after ${batch.attempts} attempt(s). ` +
256
+ `${batch.events.length} event(s) will be dropped. Non-retryable error: ${statusCode}`);
257
+ this._errorBoundary.logEventRequestFailure(batch.events.length, `non-retryable error`, flushType, statusCode);
258
+ return;
259
+ }
260
+ if (batch.attempts >= EventRetryConstants_1.EventRetryConstants.MAX_RETRY_ATTEMPTS) {
261
+ Log_1.Log.warn(`${flushType} flush failed after ${batch.attempts} attempt(s). ` +
262
+ `${batch.events.length} event(s) will be dropped.`);
263
+ this._errorBoundary.logEventRequestFailure(batch.events.length, `max retry attempts exceeded`, flushType, statusCode);
264
+ return;
265
+ }
266
+ batch.incrementAttempts();
267
+ const droppedCount = this._batchQueue.requeueBatch(batch);
268
+ if (droppedCount > 0) {
269
+ Log_1.Log.warn(`Failed to requeue batch : dropped ${droppedCount} events due to full queue`);
270
+ this._errorBoundary.logDroppedEvents(droppedCount, `Batch queue limit reached`, {
271
+ loggingInterval: this._flushInterval.getCurrentIntervalMs(),
272
+ batchSize: this._batchQueue.batchSize(),
273
+ maxPendingBatches: EventRetryConstants_1.EventRetryConstants.MAX_PENDING_BATCHES,
274
+ flushType: flushType,
275
+ });
276
+ }
277
+ }
278
+ loadAndRetryShutdownFailedEvents() {
279
+ return __awaiter(this, void 0, void 0, function* () {
280
+ const storageKey = this._getStorageKey();
281
+ try {
282
+ const events = this._getShutdownFailedEventsFromStorage(storageKey);
283
+ if (events.length === 0) {
284
+ return;
285
+ }
286
+ Log_1.Log.debug(`Loading ${events.length} failed shutdown event(s) from storage for retry`);
287
+ StorageProvider_1.Storage.removeItem(storageKey);
288
+ events.forEach((event) => {
289
+ this.addEvent(event);
290
+ });
291
+ yield this.processManualFlush();
292
+ }
293
+ catch (error) {
294
+ Log_1.Log.warn('Failed to load and retry failed shutdown events:', error);
295
+ }
296
+ });
297
+ }
298
+ _getStorageKey() {
299
+ if (!this._storageKey) {
300
+ this._storageKey = `statsig.failed_shutdown_events.${(0, Hashing_1._DJB2)(this._sdkKey)}`;
301
+ }
302
+ return this._storageKey;
303
+ }
304
+ _saveShutdownFailedEventsToStorage(events) {
305
+ const storageKey = this._getStorageKey();
306
+ try {
307
+ const existingEvents = this._getShutdownFailedEventsFromStorage(storageKey);
308
+ let allEvents = [...existingEvents, ...events];
309
+ if (allEvents.length > EventRetryConstants_1.EventRetryConstants.MAX_LOCAL_STORAGE) {
310
+ allEvents = allEvents.slice(-EventRetryConstants_1.EventRetryConstants.MAX_LOCAL_STORAGE);
311
+ }
312
+ (0, StorageProvider_1._setObjectInStorage)(storageKey, allEvents);
313
+ Log_1.Log.debug(`Saved ${events.length} failed shutdown event(s) to storage (total stored: ${allEvents.length})`);
314
+ }
315
+ catch (error) {
316
+ Log_1.Log.warn('Unable to save failed shutdown events to storage:', error);
317
+ }
318
+ }
319
+ _getShutdownFailedEventsFromStorage(storageKey) {
320
+ try {
321
+ const events = (0, StorageProvider_1._getObjectFromStorage)(storageKey);
322
+ if (Array.isArray(events)) {
323
+ return events;
324
+ }
325
+ return [];
326
+ }
327
+ catch (_a) {
328
+ return [];
329
+ }
330
+ }
331
+ }
332
+ exports.FlushCoordinator = FlushCoordinator;
@@ -0,0 +1,13 @@
1
+ export declare class FlushInterval {
2
+ private _currentIntervalMs;
3
+ private _lastFlushAttemptTime;
4
+ getCurrentIntervalMs(): number;
5
+ markFlushAttempt(): void;
6
+ getTimeSinceLastAttempt(): number;
7
+ hasReachedMaxInterval(): boolean;
8
+ getTimeTillMaxInterval(): number;
9
+ hasCompletelyRecoveredFromBackoff(): boolean;
10
+ adjustForSuccess(): void;
11
+ adjustForFailure(): void;
12
+ getTimeUntilNextFlush(): number;
13
+ }
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FlushInterval = void 0;
4
+ const MIN_FLUSH_INTERVAL_MS = 1000;
5
+ const MAX_FLUSH_INTERVAL_MS = 60000;
6
+ class FlushInterval {
7
+ constructor() {
8
+ this._currentIntervalMs = MIN_FLUSH_INTERVAL_MS;
9
+ this._lastFlushAttemptTime = Date.now();
10
+ }
11
+ getCurrentIntervalMs() {
12
+ return this._currentIntervalMs;
13
+ }
14
+ markFlushAttempt() {
15
+ this._lastFlushAttemptTime = Date.now();
16
+ }
17
+ getTimeSinceLastAttempt() {
18
+ return Date.now() - this._lastFlushAttemptTime;
19
+ }
20
+ hasReachedMaxInterval() {
21
+ return this.getTimeSinceLastAttempt() >= MAX_FLUSH_INTERVAL_MS;
22
+ }
23
+ getTimeTillMaxInterval() {
24
+ return MAX_FLUSH_INTERVAL_MS - this.getTimeSinceLastAttempt();
25
+ }
26
+ hasCompletelyRecoveredFromBackoff() {
27
+ return this._currentIntervalMs <= MIN_FLUSH_INTERVAL_MS;
28
+ }
29
+ adjustForSuccess() {
30
+ const current = this._currentIntervalMs;
31
+ if (current === MIN_FLUSH_INTERVAL_MS) {
32
+ return;
33
+ }
34
+ this._currentIntervalMs = Math.max(MIN_FLUSH_INTERVAL_MS, Math.floor(current / 2));
35
+ }
36
+ adjustForFailure() {
37
+ const current = this._currentIntervalMs;
38
+ this._currentIntervalMs = Math.min(MAX_FLUSH_INTERVAL_MS, current * 2);
39
+ }
40
+ getTimeUntilNextFlush() {
41
+ return this.getCurrentIntervalMs() - this.getTimeSinceLastAttempt();
42
+ }
43
+ }
44
+ exports.FlushInterval = FlushInterval;
@@ -0,0 +1,7 @@
1
+ export declare enum FlushType {
2
+ ScheduledMaxTime = "scheduled:max_time",
3
+ ScheduledFullBatch = "scheduled:full_batch",
4
+ Limit = "limit",
5
+ Manual = "manual",
6
+ Shutdown = "shutdown"
7
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FlushType = void 0;
4
+ /* eslint-disable no-restricted-syntax */
5
+ var FlushType;
6
+ (function (FlushType) {
7
+ FlushType["ScheduledMaxTime"] = "scheduled:max_time";
8
+ FlushType["ScheduledFullBatch"] = "scheduled:full_batch";
9
+ FlushType["Limit"] = "limit";
10
+ FlushType["Manual"] = "manual";
11
+ FlushType["Shutdown"] = "shutdown";
12
+ })(FlushType || (exports.FlushType = FlushType = {}));
@@ -5,6 +5,7 @@ import { StatsigClientEmitEventFunc } from './StatsigClientBase';
5
5
  import { AnyStatsigOptions, LogEventCompressionMode } from './StatsigOptionsCommon';
6
6
  import { Flatten } from './TypingUtils';
7
7
  import { UrlConfiguration } from './UrlConfiguration';
8
+ export declare const RETRYABLE_CODES: Set<number>;
8
9
  type RequestArgs = {
9
10
  sdkKey: string;
10
11
  urlConfig: UrlConfiguration;
@@ -9,7 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
9
9
  });
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.NetworkCore = void 0;
12
+ exports.NetworkCore = exports.RETRYABLE_CODES = void 0;
13
13
  require("./$_StatsigGlobal");
14
14
  const __StatsigGlobal_1 = require("./$_StatsigGlobal");
15
15
  const Diagnostics_1 = require("./Diagnostics");
@@ -31,7 +31,9 @@ const BACKOFF_MAX_MS = 30000;
31
31
  const RATE_LIMIT_WINDOW_MS = 1000;
32
32
  const RATE_LIMIT_MAX_REQ_COUNT = 50;
33
33
  const LEAK_RATE = RATE_LIMIT_MAX_REQ_COUNT / RATE_LIMIT_WINDOW_MS;
34
- const RETRYABLE_CODES = new Set([408, 500, 502, 503, 504, 522, 524, 599]);
34
+ exports.RETRYABLE_CODES = new Set([
35
+ 408, 500, 502, 503, 504, 522, 524, 599,
36
+ ]);
35
37
  class NetworkCore {
36
38
  constructor(options, _emitter) {
37
39
  this._emitter = _emitter;
@@ -161,7 +163,7 @@ class NetworkCore {
161
163
  }
162
164
  if (!retries ||
163
165
  currentAttempt > retries ||
164
- !RETRYABLE_CODES.has((_b = response === null || response === void 0 ? void 0 : response.status) !== null && _b !== void 0 ? _b : 500)) {
166
+ !exports.RETRYABLE_CODES.has((_b = response === null || response === void 0 ? void 0 : response.status) !== null && _b !== void 0 ? _b : 500)) {
165
167
  (_c = this._emitter) === null || _c === void 0 ? void 0 : _c.call(this, {
166
168
  name: 'error',
167
169
  error,
@@ -0,0 +1,10 @@
1
+ import { StatsigEventInternal } from './StatsigEvent';
2
+ export declare class PendingEvents {
3
+ private _pendingEvents;
4
+ private _batchSize;
5
+ constructor(batchSize: number);
6
+ addToPendingEventsQueue(event: StatsigEventInternal): void;
7
+ hasEventsForFullBatch(): boolean;
8
+ takeAll(): StatsigEventInternal[];
9
+ isEmpty(): boolean;
10
+ }
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PendingEvents = void 0;
4
+ const Log_1 = require("./Log");
5
+ class PendingEvents {
6
+ constructor(batchSize) {
7
+ this._pendingEvents = [];
8
+ this._batchSize = batchSize;
9
+ }
10
+ addToPendingEventsQueue(event) {
11
+ this._pendingEvents.push(event);
12
+ Log_1.Log.debug('Enqueued Event:', event);
13
+ }
14
+ hasEventsForFullBatch() {
15
+ return this._pendingEvents.length >= this._batchSize;
16
+ }
17
+ takeAll() {
18
+ const events = this._pendingEvents;
19
+ this._pendingEvents = [];
20
+ return events;
21
+ }
22
+ isEmpty() {
23
+ return this._pendingEvents.length === 0;
24
+ }
25
+ }
26
+ exports.PendingEvents = PendingEvents;
@@ -41,8 +41,8 @@ class StatsigClientBase {
41
41
  this._options = options !== null && options !== void 0 ? options : {};
42
42
  this._memoCache = {};
43
43
  this.overrideAdapter = (_a = options === null || options === void 0 ? void 0 : options.overrideAdapter) !== null && _a !== void 0 ? _a : null;
44
- this._logger = new EventLogger_1.EventLogger(sdkKey, emitter, network, options);
45
44
  this._errorBoundary = new ErrorBoundary_1.ErrorBoundary(sdkKey, options, emitter);
45
+ this._logger = new EventLogger_1.EventLogger(sdkKey, emitter, network, options, this._errorBoundary);
46
46
  this._errorBoundary.wrap(this);
47
47
  this._errorBoundary.wrap(adapter);
48
48
  this._errorBoundary.wrap(this._logger);
@@ -1,4 +1,4 @@
1
- export declare const SDK_VERSION = "3.30.1";
1
+ export declare const SDK_VERSION = "3.30.2-beta.1";
2
2
  export type StatsigMetadata = {
3
3
  readonly [key: string]: string | undefined | null;
4
4
  readonly appVersion?: string;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.StatsigMetadataProvider = exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = '3.30.1';
4
+ exports.SDK_VERSION = '3.30.2-beta.1';
5
5
  let metadata = {
6
6
  sdkVersion: exports.SDK_VERSION,
7
7
  sdkType: 'js-mono', // js-mono is overwritten by Precomp and OnDevice clients
@@ -75,7 +75,13 @@ exports.Storage = {
75
75
  };
76
76
  function _getObjectFromStorage(key) {
77
77
  const value = exports.Storage.getItem(key);
78
- return JSON.parse(value !== null && value !== void 0 ? value : 'null');
78
+ try {
79
+ return JSON.parse(value !== null && value !== void 0 ? value : 'null');
80
+ }
81
+ catch (e) {
82
+ Log_1.Log.error(`Failed to parse value for key "${key}"`);
83
+ return null;
84
+ }
79
85
  }
80
86
  exports._getObjectFromStorage = _getObjectFromStorage;
81
87
  function _setObjectInStorage(key, obj) {