V13-FE-011: finalize search list layout slice
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
// generated from contracts/experiments/kbx.experiments.json; do not edit.
|
||||
namespace Kbx.Shared.Experiments.Generated;
|
||||
|
||||
public sealed record KbxFeatureFlagDefinition(string Id,string ScreenId,string Surface,string DefaultVariant,bool KillSwitch);
|
||||
public sealed record KbxVariantWeight(string Key,int Weight);
|
||||
public sealed record KbxExperimentDefinition(string Id,string FlagId,string ScreenId,string State,int RolloutPercent,int MinExposurePerVariant,IReadOnlyList<KbxVariantWeight> Variants,string PrimaryMetric,string PrimaryDirection,double MinimumImprovementPercent);
|
||||
public static class KbxExperimentCatalog
|
||||
{
|
||||
public const string SourceSha256 = "2510a2927bab297858e09e75c8af9bb766d91b92cc0daf99433f6377d399fbf9";
|
||||
public static readonly IReadOnlyDictionary<string,KbxFeatureFlagDefinition> FeatureFlags = new Dictionary<string,KbxFeatureFlagDefinition>(StringComparer.Ordinal)
|
||||
{
|
||||
["oms.order-list.exception-summary-v2"] = new("oms.order-list.exception-summary-v2", "OMS-ORD-001", "information-emphasis", "control", true)
|
||||
};
|
||||
public static readonly IReadOnlyDictionary<string,KbxExperimentDefinition> Experiments = new Dictionary<string,KbxExperimentDefinition>(StringComparer.Ordinal)
|
||||
{
|
||||
["exp.oms.order-list.exception-summary-v2"] = new("exp.oms.order-list.exception-summary-v2", "oms.order-list.exception-summary-v2", "OMS-ORD-001", "draft", 0, 200, new[] { new KbxVariantWeight("control", 50), new KbxVariantWeight("exception-summary", 50) }, "semantic_interactions_per_task", "lower", 10)
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user