This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
index.d.ts
820 lines (744 loc) · 32.4 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
/**
* This is the API reference for the LaunchDarkly Client-Side SDK for React Native.
*
* In typical usage, you will instantiate [[LDClient]] and then call [[configure]] once at startup time to
* set up your connection to LaunchDarkly.
*
* For more information, see the [SDK reference guide](https://docs.launchdarkly.com/sdk/client-side/react-native).
* @module
*/
declare module 'launchdarkly-react-native-client-sdk' {
import type { LDContext } from 'launchdarkly-js-sdk-common';
export type { LDContext, LDMultiKindContext } from 'launchdarkly-js-sdk-common';
/**
* Configuration options for the LaunchDarkly React Native SDK.
*/
export type LDConfig = {
/**
* Information about the application where the LaunchDarkly SDK is running.
*/
application?: {
/**
* A unique identifier representing the application where the LaunchDarkly SDK is running.
*
* This can be specified as any string value as long as it only uses the following characters: ASCII letters,
* ASCII digits, period, hyphen, underscore. A string containing any other characters will be ignored.
*
* Example: `authentication-service`
*/
id?: string;
/**
* A unique identifier representing the version of the application where the LaunchDarkly SDK is running.
*
* This can be specified as any string value as long as it only uses the following characters: ASCII letters,
* ASCII digits, period, hyphen, underscore. A string containing any other characters will be ignored.
*
* Example: `1.0.0` (standard version string) or `abcdef` (sha prefix)
*/
version?: string;
/**
* Sets a human friendly name for the application in which the LaunchDarkly SDK is running.
*/
name?: string;
/**
* Sets a human friendly name for the version of the application in which the LaunchDarkly SDK is running.
*/
versionName?: string;
};
/**
* The mobile SDK key associated with your LaunchDarkly environment.
*
* This field is required as the React Native SDK will use this value to uniquely
* identify your LaunchDarkly account.
*/
mobileKey: string;
/**
* When enabled the SDK will automatically send data about the mobile
* environment to LaunchDarkly.
*
* The default value is false (the SDK will not send mobile environment data).
*/
enableAutoEnvAttributes?: boolean;
/**
* The base URI for the LaunchDarkly polling server.
*
* Most customers should use the default value.
*/
pollUrl?: string;
/**
* The base URI for the LaunchDarkly streaming server.
*
* Most customers should use the default value.
*/
streamUrl?: string;
/**
* The base URI for the LaunchDarkly events server.
*
* Most customers should use the default value.
*/
eventsUrl?: string;
/**
* The capacity of the analytics events queue.
*
* The client buffers up to this many events in memory before flushing. If the capacity is exceeded
* before the queue is flushed, events will be discarded. Increasing the capacity means that events
* are less likely to be discarded, at the cost of consuming more memory. Note that in regular usage
* flag evaluations do not produce individual events, only summary counts, so you only need a large
* capacity if you are generating a large number of click, pageview, or identify events (or if you
* are using the event debugger).
*
* The default value is 100.
*/
eventCapacity?: number;
/**
* The interval in between flushes of the analytics events queue, in milliseconds.
*
* The default value is 30000ms (30 seconds).
*/
flushInterval?: number;
/**
* The timeout interval for connecting to LaunchDarkly for flag requests and event reports.
*
* The default value is 10000ms (10 seconds).
*/
connectionTimeout?: number;
/**
* The interval by which the SDK polls for flag updates when the application is in the foreground. This
* property is only used if is the streaming connection is disabled.
*
* The default value is 300000ms (5 min).
*/
pollingInterval?: number;
/**
* The interval by which the SDK polls for flag updates when the application is in the background.
*
* The default value is 3600000ms (1 hour).
*/
backgroundPollingInterval?: number;
/**
* Whether or not to use the REPORT verb to fetch flag settings.
*
* If this is true, flag settings will be fetched with a REPORT request
* including a JSON entity body with the context.
*
* Otherwise (by default) a GET request will be issued with the context passed as
* a base64 URL-encoded path parameter.
*
* Do not use unless advised by LaunchDarkly.
*/
useReport?: boolean;
/**
* Whether or not to open a streaming connection to LaunchDarkly for live flag updates.
*
* If this is true, the client will always attempt to maintain a streaming connection; if false,
* it never will.
*
* The default value is true.
*/
stream?: boolean;
/**
* Whether or not the SDK should attempt to check for flag updates while the application
* runs in the background.
*
* If this is true, the client will periodically poll for updates while in the background; if
* false, the SDK will not attempt to receive updates while the app is backgrounded.
*
* The default value is false.
*/
disableBackgroundUpdating?: boolean;
/**
* Disables all network calls from the LaunchDarkly SDK.
*
* This can also be specified after the client has been created, using LDClient.setOffline().
*
* The default value is false (the client will make network calls).
*/
offline?: boolean;
/**
* Controls information logged to the console, and modifying some setting ranges to facilitate debugging.
*
* This setting is only used when running in iOS. In Android this setting is ignored.
*
* The default value is false.
*/
debugMode?: boolean;
/**
* Whether LaunchDarkly should provide additional information about how flag values were
* calculated.
*
* The additional information will then be available through the client's
* `LDClient.*VariationDetail` methods. Since this increases the size of network requests,
* such information is not sent unless you set this option to true.
*/
evaluationReasons?: boolean;
/**
* Setting for the maximum number of locally cached contexts. Default is 5 contexts.
*/
maxCachedContexts?: number;
/**
* Setting for whether sending diagnostic data about the SDK is disabled. The default is false.
*/
diagnosticOptOut?: boolean;
/**
* The time interval between sending periodic diagnostic data. The default is 900000ms (15 minutes).
*/
diagnosticRecordingInterval?: number;
/**
* The mapping of environment names as keys to mobile keys for each environment as values.
*/
secondaryMobileKeys?: Record<string, string>;
/**
* Whether to treat all context attributes as private for event reporting for all contexts.
* The SDK will not include private attribute values in analytics events, but private attribute names will be sent.
* The default is false.
*/
allAttributesPrivate?: boolean;
/**
* The names of context attributes that should be marked as private, and not sent to
* LaunchDarkly in analytics events.
*
* You can also specify this on a per-context basis with {@link LDContextMeta.privateAttributes}
*/
privateAttributes?: string[];
/**
* Android only.
*
* Set to true to make the SDK provide unique keys for anonymous contexts.
* Read more at https://launchdarkly.github.io/android-client-sdk/com/launchdarkly/sdk/android/LDConfig.Builder.html#generateAnonymousKeys(boolean).
*
* The default is true.
*/
generateAnonymousKeysAndroid?: boolean;
};
/**
* Describes the kind of error which occurred when a flag evaluation was calculated.
*
* This extends String for backwards compatibility. In a future major release, references to this type
* may be replaced with String references.
*/
export interface LDEvaluationReasonErrorKind extends String {}
/**
* Describes the reason behind how a flag evaluation was calculated.
*
* This extends String for backwards compatibility. In a future major release, references to this type
* may be replaced with String references.
*/
export interface LDEvaluationReasonKind extends String {}
/**
* Describes what state of connection to LaunchDarkly the SDK is in.
*
* This extends String for backwards compatibility. In a future major release, references to this type
* may be replaced with String references.
*/
export interface LDConnectionMode extends String {}
/**
* Describes why a connection request to LaunchDarkly failed.
*
* This extends String for backwards compatibility. In a future major release, references to this type
* may be replaced with String references.
*/
export interface LDFailureReason extends String {}
/**
* The flag is off and therefore returned its configured off value.
*/
export type LDEvaluationReasonOff = {
kind: 'OFF';
};
/**
* The flag is on, but the context did not match any targets or rules, so it returned the value that appears
* on the dashboard under "Default rule."
*/
export type LDEvaluationReasonFallthrough = {
kind: 'FALLTHROUGH';
};
/**
* The context key was specifically targeted for this flag in the "Target individual contexts" section.
*/
export type LDEvaluationReasonTargetMatch = {
kind: 'TARGET_MATCH';
};
/**
* The context who encountered the flag matched one of the flag's rules.
*/
export type LDEvaluationReasonRuleMatch = {
kind: 'RULE_MATCH';
/**
* The positional index of the matched rule (0 for the first rule).
*/
ruleIndex: number;
/**
* The rule's unique identifier, which stays the same even if you rearrange the order of the rules.
*/
ruleId: string;
};
/**
* The flag had at least one prerequisite flag that either was off or did not return the desired variation.
* Because of this, the flag returned its "off" value.
*/
export type LDEvaluationReasonPrerequisiteFailed = {
kind: 'PREREQUISITE_FAILED';
/**
* The key of the prerequisite flag that failed.
*/
prerequisiteKey: string;
};
/**
* The flag could not be evaluated, so the default value was returned.
*/
export type LDEvaluationReasonError = {
kind: 'ERROR';
/**
* The kind of error which occurred.
*
* Kinds of errors include:
*
* - `'CLIENT_NOT_READY'`: The client is not able to establish a connection to LaunchDarkly yet. If there is a persistent feature store, the store does not yet contain flag data.
* - `'FLAG_NOT_FOUND'`: The flag key did not match any known flag.
* - `'USER_NOT_SPECIFIED'`: The user object or user key was not provided.
* - `'MALFORMED_FLAG'`: There was an internal inconsistency in the flag data. For example, a rule specified a nonexistent variation. This is an unusual condition that might require assistance from LaunchDarkly's Support team.
* - `'WRONG_TYPE'`: The application code requested the flag value with a different data type than it actually is. For example, the code asked for a boolean when the flag type is actually a string.
* - `'EXCEPTION'`: An unexpected error stopped flag evaluation. This could happen if you are using a persistent feature store and the database stops working. When this happens, the SDK always prints the specific error to the log.
*/
errorKind: LDEvaluationReasonErrorKind;
};
/**
* Describes the reason that a flag evaluation produced a particular value. This is
* part of the [[LDEvaluationDetail]] object returned by the variation detail methods.
*/
export type LDEvaluationReason =
| LDEvaluationReasonOff
| LDEvaluationReasonFallthrough
| LDEvaluationReasonTargetMatch
| LDEvaluationReasonRuleMatch
| LDEvaluationReasonPrerequisiteFailed
| LDEvaluationReasonError;
/**
* An object that combines the result of a feature flag evaluation with information about
* how it was calculated.
*
* This is the result of calling one of the `LDClient.*VariationDetail` methods.
*
* For more information, see the [documentation](https://docs.launchdarkly.com/sdk/concepts/evaluation-reasons).
*
* @typeparam T
* The type of flag being evaluated.
*/
export type LDEvaluationDetail<T> = {
/**
* The result of the flag evaluation. This will be either one of the flag's variations or
* the default value that was passed to the variation detail function.
*/
value: T;
/**
* The index of the returned value within the flag's list of variations, e.g. 0 for the
* first variation-- or `null` if the default value was returned.
*/
variationIndex?: number;
/**
* An object describing the main factor that influenced the flag evaluation value.
*/
reason: LDEvaluationReason;
};
/**
* A map of feature flags from their keys to their values.
*/
export interface LDFlagSet {
[key: string]: any;
}
/**
* The LaunchDarkly SDK client object.
*
* Applications should configure the client at application startup time and reuse the same instance.
*
* For more information, see the [SDK Reference Guide](https://docs.launchdarkly.com/sdk/client-side/react-native).
*/
export default class LDClient {
constructor();
/**
* Returns the SDK version.
*
* @returns
* A string containing the SDK version.
*/
getVersion(): string;
/**
* Initialize the SDK to work with the specified client configuration options and on behalf of the specified context.
* Will block for a number of seconds represented until flags are received from LaunchDarkly if the timeout parameter
* is passed.
*
* This should only be called once at application start time.
*
* @param config
* the client configuration options
* @param context
* the LDContext object
* @param timeout
* (Optional) A number representing how long to wait for flags
*/
configure(config: LDConfig, context: LDContext, timeout?: number): Promise<null>;
/**
* Determines the variation of a boolean feature flag for the current context.
*
* @param flagKey
* The unique key of the feature flag.
* @param defaultValue
* The default value of the flag, to be used if the value is not available from LaunchDarkly.
* @param environment
* Optional environment name to obtain the result from the corresponding secondary environment
* @returns
* A promise containing the flag's value.
*/
boolVariation(flagKey: string, defaultValue: boolean, environment?: string): Promise<boolean>;
/**
* Determines the variation of a numeric feature flag for the current context.
*
* @param flagKey
* The unique key of the feature flag.
* @param defaultValue
* The default value of the flag, to be used if the value is not available from LaunchDarkly.
* @param environment
* Optional environment name to obtain the result from the corresponding secondary environment
* @returns
* A promise containing the flag's value.
*/
numberVariation(flagKey: string, defaultValue: number, environment?: string): Promise<number>;
/**
* Determines the variation of a string feature flag for the current context.
*
* @param flagKey
* The unique key of the feature flag.
* @param defaultValue
* The default value of the flag, to be used if the value is not available from LaunchDarkly.
* @param environment
* Optional environment name to obtain the result from the corresponding secondary environment
* @returns
* A promise containing the flag's value.
*/
stringVariation(flagKey: string, defaultValue: string, environment?: string): Promise<string>;
/**
* Determines the variation of a JSON feature flag for the current context.
*
* @param flagKey
* The unique key of the feature flag.
* @param defaultValue
* The default value of the flag, to be used if the value is not available from LaunchDarkly.
* @param environment
* Optional environment name to obtain the result from the corresponding secondary environment
* @returns
* A promise containing the flag's value.
*/
jsonVariation(flagKey: string, defaultValue: any, environment?: string): Promise<any>;
/**
* Determines the variation of a boolean feature flag for a context, along with information about how it was
* calculated.
*
* Note that this will only work if you have set `evaluationReasons` to true in [[LDConfig]].
* Otherwise, the `reason` property of the result will be null.
*
* For more information, see the [SDK reference guide](https://docs.launchdarkly.com/sdk/concepts/evaluation-reasons).
*
* @param flagKey
* The unique key of the feature flag.
* @param defaultValue
* The default value of the flag, to be used if the value is not available from LaunchDarkly.
* @param environment
* Optional environment name to obtain the result from the corresponding secondary environment
* @returns
* A promise containing an [[LDEvaluationDetail]] object containing the value and explanation.
*/
boolVariationDetail(
flagKey: string,
defaultValue: boolean,
environment?: string,
): Promise<LDEvaluationDetail<boolean>>;
/**
* Determines the variation of a numeric feature flag for a context, along with information about how it was
* calculated.
*
* Note that this will only work if you have set `evaluationReasons` to true in [[LDConfig]].
* Otherwise, the `reason` property of the result will be null.
*
* For more information, see the [SDK reference guide](https://docs.launchdarkly.com/sdk/concepts/evaluation-reasons).
*
* @param flagKey
* The unique key of the feature flag.
* @param defaultValue
* The default value of the flag, to be used if the value is not available from LaunchDarkly.
* @param environment
* Optional environment name to obtain the result from the corresponding secondary environment
* @returns
* A promise containing an [[LDEvaluationDetail]] object containing the value and explanation.
*/
numberVariationDetail(
flagKey: string,
defaultValue: number,
environment?: string,
): Promise<LDEvaluationDetail<number>>;
/**
* Determines the variation of a string feature flag for a context, along with information about how it was
* calculated.
*
* Note that this will only work if you have set `evaluationReasons` to true in [[LDConfig]].
* Otherwise, the `reason` property of the result will be null.
*
* For more information, see the [SDK reference guide](https://docs.launchdarkly.com/sdk/concepts/evaluation-reasons).
*
* @param flagKey
* The unique key of the feature flag.
* @param defaultValue
* The default value of the flag, to be used if the value is not available from LaunchDarkly.
* @param environment
* Optional environment name to obtain the result from the corresponding secondary environment
* @returns
* A promise containing an [[LDEvaluationDetail]] object containing the value and explanation.
*/
stringVariationDetail(
flagKey: string,
defaultValue: string,
environment?: string,
): Promise<LDEvaluationDetail<string>>;
/**
* Determines the variation of a JSON feature flag for a context, along with information about how it was
* calculated.
*
* Note that this will only work if you have set `evaluationReasons` to true in [[LDConfig]].
* Otherwise, the `reason` property of the result will be null.
*
* For more information, see the [SDK reference guide](https://docs.launchdarkly.com/sdk/concepts/evaluation-reasons).
*
* @param flagKey
* The unique key of the feature flag.
* @param defaultValue
* The default value of the flag, to be used if the value is not available from LaunchDarkly.
* @param environment
* Optional environment name to obtain the result from the corresponding secondary environment
* @returns
* A promise containing an [[LDEvaluationDetail]] object containing the value and explanation.
*/
jsonVariationDetail(flagKey: string, defaultValue: any, environment?: string): Promise<LDEvaluationDetail<any>>;
/**
* Returns a map of all available flags to the current context's values.
*
* @param environment
* Optional environment name to obtain the result from the corresponding secondary environment
* @returns
* A promise containing an object in which each key is a feature flag key and each value is the flag value.
* Note that there is no way to specify a default value for each flag as there is with the
* `*Variation` methods, so any flag that cannot be evaluated will have a null value.
*/
allFlags(environment?: string): Promise<LDFlagSet>;
/**
* Track events to use in metrics or Experimentation.
*
* @param eventName
* The name of the event, which may correspond to a metric in experiments.
* @param data
* Optional additional information to associate with the event.
* @param metricValue
* Optional numeric value to attach to the tracked event
* @param environment
* Optional string to execute the function in a different environment than the default.
*/
track(eventName: string, data?: any, metricValue?: number, environment?: string): void;
/**
* Checks whether the client has been put into offline mode. This is true only if [[setOffline]]
* was called, or if the configuration had [[LDConfig.offline]] set to true,
* not if the client is simply offline due to a loss of network connectivity.
*
* @returns
* A promise containing true if the client is in offline mode
*/
isOffline(): Promise<boolean>;
/**
* Shuts down any network connections maintained by the client and puts the client in offline
* mode, preventing the client from opening new network connections until [[setOnline]] is called.
*
* Note: The client automatically monitors the device's network connectivity and app foreground
* status, so calling [[setOffline]] or [[setOnline]] is normally unnecessary in most situations.
*
* @returns
* A promise containing true if the change was made successfully
*/
setOffline(): Promise<boolean>;
/**
* Restores network connectivity for the client, if the client was previously in offline mode.
* This operation may be throttled if it is called too frequently.
*
* Note: The client automatically monitors the device's network connectivity and app foreground
* status, so calling [[setOffline]] or [[setOnline]] is normally unnecessary in most situations.
*
* @returns
* A promise containing true if the change was made successfully
*/
setOnline(): Promise<boolean>;
/**
* Checks whether the client is ready to return feature flag values. This is true if either
* the client has successfully connected to LaunchDarkly and received feature flags, or the
* client has been put into offline mode (in which case it will return only default flag values).
*
* This function will return a rejected promise in case the client has not been initialized.
*
* @param environment
* Optional environment name to obtain the result from the corresponding secondary environment
* @returns
* A promise containing true if the client is initialized or offline, otherwise a rejected promise
*/
isInitialized(environment?: string): Promise<boolean>;
/**
* Flushes all pending analytics events.
*
* Normally, batches of events are delivered in the background at intervals determined by the
* `flushInterval` property of [[LDConfig]]. Calling `flush` triggers an
* immediate delivery.
*/
flush(): void;
/**
* Shuts down the client and releases its resources, after delivering any pending analytics
* events. After the client is closed, all calls to the `*Variation` methods will return default values,
* and it will not make any requests to LaunchDarkly.
*/
close(): Promise<void>;
/**
* Sets the current context, retrieves flags for that context, then sends an Identify Event to LaunchDarkly.
*
* @param context
* The LDContext for evaluation and event reporting
* @returns
* A promise indicating when this operation is complete (meaning that flags are ready for evaluation).
*/
identify(context: LDContext): Promise<null>;
/**
* Registers a callback to be called when the flag with key `flagKey` changes from its current value.
*
* @param flagKey
* The flag key to attach the callback to
* @param callback
* The callback to attach to the flag key
* @param environment
* Optional string to execute the function in a different environment than the default.
*/
registerFeatureFlagListener(flagKey: string, callback: (flagKey: string) => void, environment?: string): void;
/**
* Unregisters a callback for the flag with key `flagKey`.
*
* @param flagKey
* The flag key to remove the callback from
* @param callback
* The callback to remove from the flag key
* @param environment
* Optional string to execute the function in a different environment than the default.
*/
unregisterFeatureFlagListener(flagKey: string, callback: (flagKey: string) => void, environment?: string): void;
/**
* Returns the current state of the connection to LaunchDarkly.
*
* States include:
*
* - `'STREAMING'`: The SDK is either connected to the flag stream, or is actively attempting to acquire a connection.
* - `'POLLING'`: The SDK was configured with streaming disabled, and is in foreground polling mode.
* - `'BACKGROUND_POLLING'`: (Android specific enum value) The SDK has detected the application is in the background and has transitioned to battery conscious background polling.
* - `'BACKGROUND_DISABLED'`: (Android specific enum value) The SDK was configured with background polling disabled. The SDK has detected the application is in the background and is not attempting to update the flag cache.
* - `'OFFLINE'`: The SDK has detected that the mobile device does not have an active network connection so has ceased flag update attempts until the network status changes.
* - `'SET_OFFLINE'`: (Android specific enum value) The SDK has been explicitly set offline, either in the initial configuration, by setOffline(), or as a result of failed authentication to LaunchDarkly. The SDK will stay offline unless setOnline() is called.
* - `'SHUTDOWN'`: (Android specific enum value) The shutdown state indicates the SDK has been permanently shutdown as a result of a call to close().
* - `'ESTABLISHING_STREAMING_CONNECTION'`: (iOS specific enum value) The SDK is attempting to connect to LaunchDarkly by streaming.
*
* @param environment
* Optional string to execute the function in a different environment than the default.
* @returns
* A promise containing a LDConnectionMode enum value representing the status of the connection to LaunchDarkly.
*/
getConnectionMode(environment?: string): Promise<LDConnectionMode>;
/**
* Returns the most recent successful flag cache update in millis from the epoch
* or null if flags have never been retrieved.
*
* @param environment
* Optional string to execute the function in a different environment than the default.
* @returns
* A promise containing a number representing the status of the connection to LaunchDarkly,
* or null if a successful connection has yet to be established.
*/
getLastSuccessfulConnection(environment?: string): Promise<number | null>;
/**
* Most recent unsuccessful flag cache update attempt in millis from the epoch
* or null if flag update has never been attempted.
*
* @param environment
* Optional string to execute the function in a different environment than the default.
* @returns
* A promise containing a number representing the status of the connection to LaunchDarkly,
* or null if a failed connection has yet to occur.
*/
getLastFailedConnection(environment?: string): Promise<number | null>;
/**
* Returns the most recent connection failure reason or null.
*
* Reasons include:
*
* - `'NONE'`: This indicates when no error has been recorded.
* - `'UNKNOWN_ERROR'`: This indicates when there is an internal error in the stream request.
* - `'UNAUTHORIZED'`: (iOS specific enum value) This indicates when an incorrect mobile key is provided.
* - `'HTTP_ERROR'`: (iOS specific enum value) This indicates when an error with an HTTP error code is present.
* - `'UNEXPECTED_RESPONSE_CODE'`: (Android specific enum value) This indicates the LDFailure is an instance of LDInvalidResponseCodeFailure. See Android documentation for more details.
* - `'UNEXPECTED_STREAM_ELEMENT_TYPE'`: (Android specific enum value) An event was received through the stream was had an unknown event name. This could indicate a newer SDK is available if new event types have become available through the flag stream since the SDKs release.
* - `'NETWORK_FAILURE'`: (Android specific enum value) A network request for polling, or the EventSource stream reported a failure.
* - `'INVALID_RESPONSE_BODY'`: (Android specific enum value) A response body received either through polling or streaming was unable to be parsed.
*
* @param environment
* Optional string to execute the function in a different environment than the default.
* @returns
* A promise containing a LDFailureReason enum value representing the reason for the most recently failed
* connection to LaunchDarkly, or null if a failed connection has yet to occur.
*/
getLastFailure(environment?: string): Promise<LDFailureReason | null>;
/**
* Registers a callback to be called on connection status updates.
*
* @param listenerId
* The listener to be called on a connection status update
* @param callback
* The callback to attach to the connection status update
* @param environment
* Optional string to execute the function in a different environment than the default.
*/
registerCurrentConnectionModeListener(
listenerId: string,
callback: (connectionMode: string) => void,
environment?: string,
): void;
/**
* Unregisters a callback so that it will no longer be called on connection status updates.
*
* @param listenerId
* The listener to remove the callback from
* @param environment
* Optional string to execute the function in a different environment than the default.
*/
unregisterCurrentConnectionModeListener(listenerId: string, environment?: string): void;
/**
* Registers a callback to be called when a flag update is processed by the SDK.
*
* @param listenerId
* The listener to be called when a flag update is processed
* @param callback
* The callback to attach to the flag update
* @param environment
* Optional string to execute the function in a different environment than the default.
*/
registerAllFlagsListener(
listenerId: string,
callback: (updatedFlags: string[]) => void,
environment?: string,
): void;
/**
* Unregisters a callback so it will no longer be called on flag updates.
*
* @param listenerId
* The listener to be removed
* @param environment
* Optional string to execute the function in a different environment than the default.
*/
unregisterAllFlagsListener(listenerId: string, environment?: string): void;
}
}