You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: flagsmith-engine/evaluation/evaluationContext/evaluationContext.types.ts
+5-10Lines changed: 5 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -6,23 +6,23 @@
6
6
*/
7
7
8
8
/**
9
-
* An environment's unique identifier.
9
+
* Unique environment key. May be used for selecting a value for a multivariate feature, or for % split segmentation.
10
10
*/
11
11
exporttypeKey=string;
12
12
/**
13
13
* An environment's human-readable name.
14
14
*/
15
15
exporttypeName=string;
16
16
/**
17
-
* A unique identifier for an identity, used for segment and multivariate feature flag targeting, and displayed in the Flagsmith UI.
17
+
* A unique identifier for an identity as displayed in the Flagsmith UI.
18
18
*/
19
19
exporttypeIdentifier=string;
20
20
/**
21
21
* Key used when selecting a value for a multivariate feature, or for % split segmentation. Set to an internal identifier or a composite value based on the environment key and identifier, depending on Flagsmith implementation.
22
22
*/
23
23
exporttypeKey1=string;
24
24
/**
25
-
* Key used for % split segmentation.
25
+
* Unique segment key used for % split segmentation.
26
26
*/
27
27
exporttypeKey2=string;
28
28
/**
@@ -85,13 +85,9 @@ export type SubRules = SegmentRule[];
85
85
*/
86
86
exporttypeRules=SegmentRule[];
87
87
/**
88
-
* Key used when selecting a value for a multivariate feature. Set to an internal identifier or a UUID, depending on Flagsmith implementation.
88
+
* Unique feature key used when selecting a variant if the feature is multivariate. Set to an internal identifier or a UUID, depending on Flagsmith implementation.
0 commit comments