We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a516806 commit 60f4a1cCopy full SHA for 60f4a1c
1 file changed
src/dtos/types.ts
@@ -234,7 +234,7 @@ export interface ISplit {
234
[treatmentName: string]: string
235
} | null,
236
sets?: string[] | null,
237
- impressionsDisabled?: boolean
+ impressionsDisabled?: boolean | null
238
}
239
240
// Split definition used in offline mode
@@ -246,12 +246,12 @@ export interface ISplitChangesResponse {
246
t: number,
247
s?: number,
248
d?: ISplit[] | null,
249
- },
+ } | null,
250
rbs?: {
251
252
253
d?: IRBSegment[] | null,
254
- }
255
256
257
/** Interface of the parsed JSON response of `/segmentChanges/{segmentName}` */
0 commit comments