File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 112.12.0 (February 24, 2026)
2- - Added support for ioredis v5.
2+ - Added support for ioredis v5 (Related to issue https://github.com/splitio/javascript-commons/issues/471) .
33
442.11.0 (January 28, 2026)
55 - Added functionality to provide metadata alongside SDK update and READY events. Read more in our docs.
Original file line number Diff line number Diff line change @@ -233,8 +233,8 @@ export interface IConfig {
233233 seed ?: number ,
234234 trafficAllocation ?: number ,
235235 trafficAllocationSeed ?: number
236- configurations : {
237- [ treatmentName : string ] : string | null
236+ configurations ? : {
237+ [ treatmentName : string ] : string
238238 } ,
239239 sets ?: string [ ] ,
240240 impressionsDisabled ?: boolean ,
@@ -277,7 +277,7 @@ export interface ISplit {
277277 trafficAllocation ?: number ,
278278 trafficAllocationSeed ?: number
279279 configurations ?: {
280- [ treatmentName : string ] : string | null
280+ [ treatmentName : string ] : string
281281 } ,
282282 sets ?: string [ ] ,
283283 impressionsDisabled ?: boolean
Original file line number Diff line number Diff line change @@ -102,7 +102,8 @@ export type TELEMETRY = 'te';
102102export type TOKEN = 'to' ;
103103export type SEGMENT = 'se' ;
104104export type MEMBERSHIPS = 'ms' ;
105- export type OperationType = SPLITS | IMPRESSIONS | IMPRESSIONS_COUNT | EVENTS | TELEMETRY | TOKEN | SEGMENT | MEMBERSHIPS ;
105+ export type CONFIGS = 'cf' ;
106+ export type OperationType = SPLITS | IMPRESSIONS | IMPRESSIONS_COUNT | EVENTS | TELEMETRY | TOKEN | SEGMENT | MEMBERSHIPS | CONFIGS ;
106107
107108export type LastSync = Partial < Record < OperationType , number | undefined > >
108109export type HttpErrors = Partial < Record < OperationType , { [ statusCode : string ] : number } > >
Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ export const TELEMETRY = 'te';
7575export const TOKEN = 'to' ;
7676export const SEGMENT = 'se' ;
7777export const MEMBERSHIPS = 'ms' ;
78+ export const CONFIGS = 'cf' ;
7879
7980export const TREATMENT = 't' ;
8081export const TREATMENTS = 'ts' ;
You can’t perform that action at this time.
0 commit comments