@splitsoftware/splitio-commons 2.10.2-rc.2 → 2.10.2-rc.3
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/package.json +1 -1
- package/types/splitio.d.ts +9 -0
package/package.json
CHANGED
package/types/splitio.d.ts
CHANGED
|
@@ -506,6 +506,15 @@ declare namespace SplitIO {
|
|
|
506
506
|
names: string[]
|
|
507
507
|
}
|
|
508
508
|
|
|
509
|
+
/**
|
|
510
|
+
* Metadata keys for SDK update events.
|
|
511
|
+
* Use the string literals directly: 'FLAGS_UPDATE' or 'SEGMENTS_UPDATE'
|
|
512
|
+
*/
|
|
513
|
+
type SdkUpdateMetadataKeys = {
|
|
514
|
+
FLAGS_UPDATE: 'FLAGS_UPDATE';
|
|
515
|
+
SEGMENTS_UPDATE: 'SEGMENTS_UPDATE';
|
|
516
|
+
};
|
|
517
|
+
|
|
509
518
|
/**
|
|
510
519
|
* Metadata for the ready events emitted when the SDK is ready to evaluate feature flags.
|
|
511
520
|
*/
|