@ninetailed/experience.js-utils 7.5.3 → 7.6.0-beta.2
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/index.cjs.d.ts +1 -0
- package/{index.cjs → index.cjs.js} +5 -2
- package/{index.js → index.esm.js} +40 -37
- package/package.json +5 -8
- package/src/types/Config.d.ts +3 -0
- package/src/types/Experience.d.ts +78 -0
- package/src/types/Experiment.d.ts +78 -0
|
@@ -52,6 +52,7 @@ export declare const ExperimentSchema: z.ZodObject<{
|
|
|
52
52
|
hidden?: boolean | undefined;
|
|
53
53
|
}[];
|
|
54
54
|
}>, "many">>>;
|
|
55
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
55
56
|
}, "strip", z.ZodTypeAny, {
|
|
56
57
|
distribution: number[];
|
|
57
58
|
traffic: number;
|
|
@@ -64,6 +65,7 @@ export declare const ExperimentSchema: z.ZodObject<{
|
|
|
64
65
|
hidden: boolean;
|
|
65
66
|
}[];
|
|
66
67
|
}[];
|
|
68
|
+
sticky: boolean;
|
|
67
69
|
}, {
|
|
68
70
|
distribution?: number[] | undefined;
|
|
69
71
|
traffic?: number | undefined;
|
|
@@ -76,6 +78,7 @@ export declare const ExperimentSchema: z.ZodObject<{
|
|
|
76
78
|
hidden?: boolean | undefined;
|
|
77
79
|
}[];
|
|
78
80
|
}[] | undefined;
|
|
81
|
+
sticky?: boolean | undefined;
|
|
79
82
|
}>>;
|
|
80
83
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
81
84
|
id: z.ZodString;
|
|
@@ -110,6 +113,7 @@ export declare const ExperimentSchema: z.ZodObject<{
|
|
|
110
113
|
hidden: boolean;
|
|
111
114
|
}[];
|
|
112
115
|
}[];
|
|
116
|
+
sticky: boolean;
|
|
113
117
|
};
|
|
114
118
|
description?: string | undefined;
|
|
115
119
|
audience?: {
|
|
@@ -135,6 +139,7 @@ export declare const ExperimentSchema: z.ZodObject<{
|
|
|
135
139
|
hidden?: boolean | undefined;
|
|
136
140
|
}[];
|
|
137
141
|
}[] | undefined;
|
|
142
|
+
sticky?: boolean | undefined;
|
|
138
143
|
} | undefined;
|
|
139
144
|
audience?: {
|
|
140
145
|
id: string;
|
|
@@ -170,6 +175,7 @@ export declare const Experiment: {
|
|
|
170
175
|
hidden?: boolean | undefined;
|
|
171
176
|
}[];
|
|
172
177
|
}[] | undefined;
|
|
178
|
+
sticky?: boolean | undefined;
|
|
173
179
|
} | undefined;
|
|
174
180
|
audience?: {
|
|
175
181
|
id: string;
|
|
@@ -194,6 +200,7 @@ export declare const Experiment: {
|
|
|
194
200
|
hidden: boolean;
|
|
195
201
|
}[];
|
|
196
202
|
}[];
|
|
203
|
+
sticky: boolean;
|
|
197
204
|
};
|
|
198
205
|
description?: string | undefined;
|
|
199
206
|
audience?: {
|
|
@@ -255,6 +262,7 @@ export declare const Experiment: {
|
|
|
255
262
|
hidden?: boolean | undefined;
|
|
256
263
|
}[];
|
|
257
264
|
}>, "many">>>;
|
|
265
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
258
266
|
}, "strip", z.ZodTypeAny, {
|
|
259
267
|
distribution: number[];
|
|
260
268
|
traffic: number;
|
|
@@ -267,6 +275,7 @@ export declare const Experiment: {
|
|
|
267
275
|
hidden: boolean;
|
|
268
276
|
}[];
|
|
269
277
|
}[];
|
|
278
|
+
sticky: boolean;
|
|
270
279
|
}, {
|
|
271
280
|
distribution?: number[] | undefined;
|
|
272
281
|
traffic?: number | undefined;
|
|
@@ -279,6 +288,7 @@ export declare const Experiment: {
|
|
|
279
288
|
hidden?: boolean | undefined;
|
|
280
289
|
}[];
|
|
281
290
|
}[] | undefined;
|
|
291
|
+
sticky?: boolean | undefined;
|
|
282
292
|
}>>;
|
|
283
293
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
284
294
|
id: z.ZodString;
|
|
@@ -345,6 +355,7 @@ export declare const Experiment: {
|
|
|
345
355
|
hidden?: boolean | undefined;
|
|
346
356
|
}[];
|
|
347
357
|
}>, "many">>>;
|
|
358
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
348
359
|
}, "strip", z.ZodTypeAny, {
|
|
349
360
|
distribution: number[];
|
|
350
361
|
traffic: number;
|
|
@@ -357,6 +368,7 @@ export declare const Experiment: {
|
|
|
357
368
|
hidden: boolean;
|
|
358
369
|
}[];
|
|
359
370
|
}[];
|
|
371
|
+
sticky: boolean;
|
|
360
372
|
}, {
|
|
361
373
|
distribution?: number[] | undefined;
|
|
362
374
|
traffic?: number | undefined;
|
|
@@ -369,6 +381,7 @@ export declare const Experiment: {
|
|
|
369
381
|
hidden?: boolean | undefined;
|
|
370
382
|
}[];
|
|
371
383
|
}[] | undefined;
|
|
384
|
+
sticky?: boolean | undefined;
|
|
372
385
|
}>>;
|
|
373
386
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
374
387
|
id: z.ZodString;
|
|
@@ -435,6 +448,7 @@ export declare const Experiment: {
|
|
|
435
448
|
hidden?: boolean | undefined;
|
|
436
449
|
}[];
|
|
437
450
|
}>, "many">>>;
|
|
451
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
438
452
|
}, "strip", z.ZodTypeAny, {
|
|
439
453
|
distribution: number[];
|
|
440
454
|
traffic: number;
|
|
@@ -447,6 +461,7 @@ export declare const Experiment: {
|
|
|
447
461
|
hidden: boolean;
|
|
448
462
|
}[];
|
|
449
463
|
}[];
|
|
464
|
+
sticky: boolean;
|
|
450
465
|
}, {
|
|
451
466
|
distribution?: number[] | undefined;
|
|
452
467
|
traffic?: number | undefined;
|
|
@@ -459,6 +474,7 @@ export declare const Experiment: {
|
|
|
459
474
|
hidden?: boolean | undefined;
|
|
460
475
|
}[];
|
|
461
476
|
}[] | undefined;
|
|
477
|
+
sticky?: boolean | undefined;
|
|
462
478
|
}>>;
|
|
463
479
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
464
480
|
id: z.ZodString;
|
|
@@ -526,6 +542,7 @@ export declare const Experiment: {
|
|
|
526
542
|
hidden?: boolean | undefined;
|
|
527
543
|
}[];
|
|
528
544
|
}>, "many">>>;
|
|
545
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
529
546
|
}, "strip", z.ZodTypeAny, {
|
|
530
547
|
distribution: number[];
|
|
531
548
|
traffic: number;
|
|
@@ -538,6 +555,7 @@ export declare const Experiment: {
|
|
|
538
555
|
hidden: boolean;
|
|
539
556
|
}[];
|
|
540
557
|
}[];
|
|
558
|
+
sticky: boolean;
|
|
541
559
|
}, {
|
|
542
560
|
distribution?: number[] | undefined;
|
|
543
561
|
traffic?: number | undefined;
|
|
@@ -550,6 +568,7 @@ export declare const Experiment: {
|
|
|
550
568
|
hidden?: boolean | undefined;
|
|
551
569
|
}[];
|
|
552
570
|
}[] | undefined;
|
|
571
|
+
sticky?: boolean | undefined;
|
|
553
572
|
}>>;
|
|
554
573
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
555
574
|
id: z.ZodString;
|
|
@@ -616,6 +635,7 @@ export declare const Experiment: {
|
|
|
616
635
|
hidden?: boolean | undefined;
|
|
617
636
|
}[];
|
|
618
637
|
}>, "many">>>;
|
|
638
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
619
639
|
}, "strip", z.ZodTypeAny, {
|
|
620
640
|
distribution: number[];
|
|
621
641
|
traffic: number;
|
|
@@ -628,6 +648,7 @@ export declare const Experiment: {
|
|
|
628
648
|
hidden: boolean;
|
|
629
649
|
}[];
|
|
630
650
|
}[];
|
|
651
|
+
sticky: boolean;
|
|
631
652
|
}, {
|
|
632
653
|
distribution?: number[] | undefined;
|
|
633
654
|
traffic?: number | undefined;
|
|
@@ -640,6 +661,7 @@ export declare const Experiment: {
|
|
|
640
661
|
hidden?: boolean | undefined;
|
|
641
662
|
}[];
|
|
642
663
|
}[] | undefined;
|
|
664
|
+
sticky?: boolean | undefined;
|
|
643
665
|
}>>;
|
|
644
666
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
645
667
|
id: z.ZodString;
|
|
@@ -706,6 +728,7 @@ export declare const Experiment: {
|
|
|
706
728
|
hidden?: boolean | undefined;
|
|
707
729
|
}[];
|
|
708
730
|
}>, "many">>>;
|
|
731
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
709
732
|
}, "strip", z.ZodTypeAny, {
|
|
710
733
|
distribution: number[];
|
|
711
734
|
traffic: number;
|
|
@@ -718,6 +741,7 @@ export declare const Experiment: {
|
|
|
718
741
|
hidden: boolean;
|
|
719
742
|
}[];
|
|
720
743
|
}[];
|
|
744
|
+
sticky: boolean;
|
|
721
745
|
}, {
|
|
722
746
|
distribution?: number[] | undefined;
|
|
723
747
|
traffic?: number | undefined;
|
|
@@ -730,6 +754,7 @@ export declare const Experiment: {
|
|
|
730
754
|
hidden?: boolean | undefined;
|
|
731
755
|
}[];
|
|
732
756
|
}[] | undefined;
|
|
757
|
+
sticky?: boolean | undefined;
|
|
733
758
|
}>>;
|
|
734
759
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
735
760
|
id: z.ZodString;
|
|
@@ -796,6 +821,7 @@ export declare const Experiment: {
|
|
|
796
821
|
hidden?: boolean | undefined;
|
|
797
822
|
}[];
|
|
798
823
|
}>, "many">>>;
|
|
824
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
799
825
|
}, "strip", z.ZodTypeAny, {
|
|
800
826
|
distribution: number[];
|
|
801
827
|
traffic: number;
|
|
@@ -808,6 +834,7 @@ export declare const Experiment: {
|
|
|
808
834
|
hidden: boolean;
|
|
809
835
|
}[];
|
|
810
836
|
}[];
|
|
837
|
+
sticky: boolean;
|
|
811
838
|
}, {
|
|
812
839
|
distribution?: number[] | undefined;
|
|
813
840
|
traffic?: number | undefined;
|
|
@@ -820,6 +847,7 @@ export declare const Experiment: {
|
|
|
820
847
|
hidden?: boolean | undefined;
|
|
821
848
|
}[];
|
|
822
849
|
}[] | undefined;
|
|
850
|
+
sticky?: boolean | undefined;
|
|
823
851
|
}>>;
|
|
824
852
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
825
853
|
id: z.ZodString;
|
|
@@ -886,6 +914,7 @@ export declare const Experiment: {
|
|
|
886
914
|
hidden?: boolean | undefined;
|
|
887
915
|
}[];
|
|
888
916
|
}>, "many">>>;
|
|
917
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
889
918
|
}, "strip", z.ZodTypeAny, {
|
|
890
919
|
distribution: number[];
|
|
891
920
|
traffic: number;
|
|
@@ -898,6 +927,7 @@ export declare const Experiment: {
|
|
|
898
927
|
hidden: boolean;
|
|
899
928
|
}[];
|
|
900
929
|
}[];
|
|
930
|
+
sticky: boolean;
|
|
901
931
|
}, {
|
|
902
932
|
distribution?: number[] | undefined;
|
|
903
933
|
traffic?: number | undefined;
|
|
@@ -910,6 +940,7 @@ export declare const Experiment: {
|
|
|
910
940
|
hidden?: boolean | undefined;
|
|
911
941
|
}[];
|
|
912
942
|
}[] | undefined;
|
|
943
|
+
sticky?: boolean | undefined;
|
|
913
944
|
}>>;
|
|
914
945
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
915
946
|
id: z.ZodString;
|
|
@@ -976,6 +1007,7 @@ export declare const Experiment: {
|
|
|
976
1007
|
hidden?: boolean | undefined;
|
|
977
1008
|
}[];
|
|
978
1009
|
}>, "many">>>;
|
|
1010
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
979
1011
|
}, "strip", z.ZodTypeAny, {
|
|
980
1012
|
distribution: number[];
|
|
981
1013
|
traffic: number;
|
|
@@ -988,6 +1020,7 @@ export declare const Experiment: {
|
|
|
988
1020
|
hidden: boolean;
|
|
989
1021
|
}[];
|
|
990
1022
|
}[];
|
|
1023
|
+
sticky: boolean;
|
|
991
1024
|
}, {
|
|
992
1025
|
distribution?: number[] | undefined;
|
|
993
1026
|
traffic?: number | undefined;
|
|
@@ -1000,6 +1033,7 @@ export declare const Experiment: {
|
|
|
1000
1033
|
hidden?: boolean | undefined;
|
|
1001
1034
|
}[];
|
|
1002
1035
|
}[] | undefined;
|
|
1036
|
+
sticky?: boolean | undefined;
|
|
1003
1037
|
}>>;
|
|
1004
1038
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1005
1039
|
id: z.ZodString;
|
|
@@ -1066,6 +1100,7 @@ export declare const Experiment: {
|
|
|
1066
1100
|
hidden?: boolean | undefined;
|
|
1067
1101
|
}[];
|
|
1068
1102
|
}>, "many">>>;
|
|
1103
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1069
1104
|
}, "strip", z.ZodTypeAny, {
|
|
1070
1105
|
distribution: number[];
|
|
1071
1106
|
traffic: number;
|
|
@@ -1078,6 +1113,7 @@ export declare const Experiment: {
|
|
|
1078
1113
|
hidden: boolean;
|
|
1079
1114
|
}[];
|
|
1080
1115
|
}[];
|
|
1116
|
+
sticky: boolean;
|
|
1081
1117
|
}, {
|
|
1082
1118
|
distribution?: number[] | undefined;
|
|
1083
1119
|
traffic?: number | undefined;
|
|
@@ -1090,6 +1126,7 @@ export declare const Experiment: {
|
|
|
1090
1126
|
hidden?: boolean | undefined;
|
|
1091
1127
|
}[];
|
|
1092
1128
|
}[] | undefined;
|
|
1129
|
+
sticky?: boolean | undefined;
|
|
1093
1130
|
}>>;
|
|
1094
1131
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1095
1132
|
id: z.ZodString;
|
|
@@ -1156,6 +1193,7 @@ export declare const Experiment: {
|
|
|
1156
1193
|
hidden?: boolean | undefined;
|
|
1157
1194
|
}[];
|
|
1158
1195
|
}>, "many">>>;
|
|
1196
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1159
1197
|
}, "strip", z.ZodTypeAny, {
|
|
1160
1198
|
distribution: number[];
|
|
1161
1199
|
traffic: number;
|
|
@@ -1168,6 +1206,7 @@ export declare const Experiment: {
|
|
|
1168
1206
|
hidden: boolean;
|
|
1169
1207
|
}[];
|
|
1170
1208
|
}[];
|
|
1209
|
+
sticky: boolean;
|
|
1171
1210
|
}, {
|
|
1172
1211
|
distribution?: number[] | undefined;
|
|
1173
1212
|
traffic?: number | undefined;
|
|
@@ -1180,6 +1219,7 @@ export declare const Experiment: {
|
|
|
1180
1219
|
hidden?: boolean | undefined;
|
|
1181
1220
|
}[];
|
|
1182
1221
|
}[] | undefined;
|
|
1222
|
+
sticky?: boolean | undefined;
|
|
1183
1223
|
}>>;
|
|
1184
1224
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1185
1225
|
id: z.ZodString;
|
|
@@ -1246,6 +1286,7 @@ export declare const Experiment: {
|
|
|
1246
1286
|
hidden?: boolean | undefined;
|
|
1247
1287
|
}[];
|
|
1248
1288
|
}>, "many">>>;
|
|
1289
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1249
1290
|
}, "strip", z.ZodTypeAny, {
|
|
1250
1291
|
distribution: number[];
|
|
1251
1292
|
traffic: number;
|
|
@@ -1258,6 +1299,7 @@ export declare const Experiment: {
|
|
|
1258
1299
|
hidden: boolean;
|
|
1259
1300
|
}[];
|
|
1260
1301
|
}[];
|
|
1302
|
+
sticky: boolean;
|
|
1261
1303
|
}, {
|
|
1262
1304
|
distribution?: number[] | undefined;
|
|
1263
1305
|
traffic?: number | undefined;
|
|
@@ -1270,6 +1312,7 @@ export declare const Experiment: {
|
|
|
1270
1312
|
hidden?: boolean | undefined;
|
|
1271
1313
|
}[];
|
|
1272
1314
|
}[] | undefined;
|
|
1315
|
+
sticky?: boolean | undefined;
|
|
1273
1316
|
}>>;
|
|
1274
1317
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1275
1318
|
id: z.ZodString;
|
|
@@ -1336,6 +1379,7 @@ export declare const Experiment: {
|
|
|
1336
1379
|
hidden?: boolean | undefined;
|
|
1337
1380
|
}[];
|
|
1338
1381
|
}>, "many">>>;
|
|
1382
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1339
1383
|
}, "strip", z.ZodTypeAny, {
|
|
1340
1384
|
distribution: number[];
|
|
1341
1385
|
traffic: number;
|
|
@@ -1348,6 +1392,7 @@ export declare const Experiment: {
|
|
|
1348
1392
|
hidden: boolean;
|
|
1349
1393
|
}[];
|
|
1350
1394
|
}[];
|
|
1395
|
+
sticky: boolean;
|
|
1351
1396
|
}, {
|
|
1352
1397
|
distribution?: number[] | undefined;
|
|
1353
1398
|
traffic?: number | undefined;
|
|
@@ -1360,6 +1405,7 @@ export declare const Experiment: {
|
|
|
1360
1405
|
hidden?: boolean | undefined;
|
|
1361
1406
|
}[];
|
|
1362
1407
|
}[] | undefined;
|
|
1408
|
+
sticky?: boolean | undefined;
|
|
1363
1409
|
}>>;
|
|
1364
1410
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1365
1411
|
id: z.ZodString;
|
|
@@ -1426,6 +1472,7 @@ export declare const Experiment: {
|
|
|
1426
1472
|
hidden?: boolean | undefined;
|
|
1427
1473
|
}[];
|
|
1428
1474
|
}>, "many">>>;
|
|
1475
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1429
1476
|
}, "strip", z.ZodTypeAny, {
|
|
1430
1477
|
distribution: number[];
|
|
1431
1478
|
traffic: number;
|
|
@@ -1438,6 +1485,7 @@ export declare const Experiment: {
|
|
|
1438
1485
|
hidden: boolean;
|
|
1439
1486
|
}[];
|
|
1440
1487
|
}[];
|
|
1488
|
+
sticky: boolean;
|
|
1441
1489
|
}, {
|
|
1442
1490
|
distribution?: number[] | undefined;
|
|
1443
1491
|
traffic?: number | undefined;
|
|
@@ -1450,6 +1498,7 @@ export declare const Experiment: {
|
|
|
1450
1498
|
hidden?: boolean | undefined;
|
|
1451
1499
|
}[];
|
|
1452
1500
|
}[] | undefined;
|
|
1501
|
+
sticky?: boolean | undefined;
|
|
1453
1502
|
}>>;
|
|
1454
1503
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1455
1504
|
id: z.ZodString;
|
|
@@ -1516,6 +1565,7 @@ export declare const Experiment: {
|
|
|
1516
1565
|
hidden?: boolean | undefined;
|
|
1517
1566
|
}[];
|
|
1518
1567
|
}>, "many">>>;
|
|
1568
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1519
1569
|
}, "strip", z.ZodTypeAny, {
|
|
1520
1570
|
distribution: number[];
|
|
1521
1571
|
traffic: number;
|
|
@@ -1528,6 +1578,7 @@ export declare const Experiment: {
|
|
|
1528
1578
|
hidden: boolean;
|
|
1529
1579
|
}[];
|
|
1530
1580
|
}[];
|
|
1581
|
+
sticky: boolean;
|
|
1531
1582
|
}, {
|
|
1532
1583
|
distribution?: number[] | undefined;
|
|
1533
1584
|
traffic?: number | undefined;
|
|
@@ -1540,6 +1591,7 @@ export declare const Experiment: {
|
|
|
1540
1591
|
hidden?: boolean | undefined;
|
|
1541
1592
|
}[];
|
|
1542
1593
|
}[] | undefined;
|
|
1594
|
+
sticky?: boolean | undefined;
|
|
1543
1595
|
}>>;
|
|
1544
1596
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1545
1597
|
id: z.ZodString;
|
|
@@ -1606,6 +1658,7 @@ export declare const Experiment: {
|
|
|
1606
1658
|
hidden?: boolean | undefined;
|
|
1607
1659
|
}[];
|
|
1608
1660
|
}>, "many">>>;
|
|
1661
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1609
1662
|
}, "strip", z.ZodTypeAny, {
|
|
1610
1663
|
distribution: number[];
|
|
1611
1664
|
traffic: number;
|
|
@@ -1618,6 +1671,7 @@ export declare const Experiment: {
|
|
|
1618
1671
|
hidden: boolean;
|
|
1619
1672
|
}[];
|
|
1620
1673
|
}[];
|
|
1674
|
+
sticky: boolean;
|
|
1621
1675
|
}, {
|
|
1622
1676
|
distribution?: number[] | undefined;
|
|
1623
1677
|
traffic?: number | undefined;
|
|
@@ -1630,6 +1684,7 @@ export declare const Experiment: {
|
|
|
1630
1684
|
hidden?: boolean | undefined;
|
|
1631
1685
|
}[];
|
|
1632
1686
|
}[] | undefined;
|
|
1687
|
+
sticky?: boolean | undefined;
|
|
1633
1688
|
}>>;
|
|
1634
1689
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1635
1690
|
id: z.ZodString;
|
|
@@ -1696,6 +1751,7 @@ export declare const Experiment: {
|
|
|
1696
1751
|
hidden?: boolean | undefined;
|
|
1697
1752
|
}[];
|
|
1698
1753
|
}>, "many">>>;
|
|
1754
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1699
1755
|
}, "strip", z.ZodTypeAny, {
|
|
1700
1756
|
distribution: number[];
|
|
1701
1757
|
traffic: number;
|
|
@@ -1708,6 +1764,7 @@ export declare const Experiment: {
|
|
|
1708
1764
|
hidden: boolean;
|
|
1709
1765
|
}[];
|
|
1710
1766
|
}[];
|
|
1767
|
+
sticky: boolean;
|
|
1711
1768
|
}, {
|
|
1712
1769
|
distribution?: number[] | undefined;
|
|
1713
1770
|
traffic?: number | undefined;
|
|
@@ -1720,6 +1777,7 @@ export declare const Experiment: {
|
|
|
1720
1777
|
hidden?: boolean | undefined;
|
|
1721
1778
|
}[];
|
|
1722
1779
|
}[] | undefined;
|
|
1780
|
+
sticky?: boolean | undefined;
|
|
1723
1781
|
}>>;
|
|
1724
1782
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1725
1783
|
id: z.ZodString;
|
|
@@ -1786,6 +1844,7 @@ export declare const Experiment: {
|
|
|
1786
1844
|
hidden?: boolean | undefined;
|
|
1787
1845
|
}[];
|
|
1788
1846
|
}>, "many">>>;
|
|
1847
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1789
1848
|
}, "strip", z.ZodTypeAny, {
|
|
1790
1849
|
distribution: number[];
|
|
1791
1850
|
traffic: number;
|
|
@@ -1798,6 +1857,7 @@ export declare const Experiment: {
|
|
|
1798
1857
|
hidden: boolean;
|
|
1799
1858
|
}[];
|
|
1800
1859
|
}[];
|
|
1860
|
+
sticky: boolean;
|
|
1801
1861
|
}, {
|
|
1802
1862
|
distribution?: number[] | undefined;
|
|
1803
1863
|
traffic?: number | undefined;
|
|
@@ -1810,6 +1870,7 @@ export declare const Experiment: {
|
|
|
1810
1870
|
hidden?: boolean | undefined;
|
|
1811
1871
|
}[];
|
|
1812
1872
|
}[] | undefined;
|
|
1873
|
+
sticky?: boolean | undefined;
|
|
1813
1874
|
}>>;
|
|
1814
1875
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1815
1876
|
id: z.ZodString;
|
|
@@ -1876,6 +1937,7 @@ export declare const Experiment: {
|
|
|
1876
1937
|
hidden?: boolean | undefined;
|
|
1877
1938
|
}[];
|
|
1878
1939
|
}>, "many">>>;
|
|
1940
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1879
1941
|
}, "strip", z.ZodTypeAny, {
|
|
1880
1942
|
distribution: number[];
|
|
1881
1943
|
traffic: number;
|
|
@@ -1888,6 +1950,7 @@ export declare const Experiment: {
|
|
|
1888
1950
|
hidden: boolean;
|
|
1889
1951
|
}[];
|
|
1890
1952
|
}[];
|
|
1953
|
+
sticky: boolean;
|
|
1891
1954
|
}, {
|
|
1892
1955
|
distribution?: number[] | undefined;
|
|
1893
1956
|
traffic?: number | undefined;
|
|
@@ -1900,6 +1963,7 @@ export declare const Experiment: {
|
|
|
1900
1963
|
hidden?: boolean | undefined;
|
|
1901
1964
|
}[];
|
|
1902
1965
|
}[] | undefined;
|
|
1966
|
+
sticky?: boolean | undefined;
|
|
1903
1967
|
}>>;
|
|
1904
1968
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1905
1969
|
id: z.ZodString;
|
|
@@ -1966,6 +2030,7 @@ export declare const Experiment: {
|
|
|
1966
2030
|
hidden?: boolean | undefined;
|
|
1967
2031
|
}[];
|
|
1968
2032
|
}>, "many">>>;
|
|
2033
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1969
2034
|
}, "strip", z.ZodTypeAny, {
|
|
1970
2035
|
distribution: number[];
|
|
1971
2036
|
traffic: number;
|
|
@@ -1978,6 +2043,7 @@ export declare const Experiment: {
|
|
|
1978
2043
|
hidden: boolean;
|
|
1979
2044
|
}[];
|
|
1980
2045
|
}[];
|
|
2046
|
+
sticky: boolean;
|
|
1981
2047
|
}, {
|
|
1982
2048
|
distribution?: number[] | undefined;
|
|
1983
2049
|
traffic?: number | undefined;
|
|
@@ -1990,6 +2056,7 @@ export declare const Experiment: {
|
|
|
1990
2056
|
hidden?: boolean | undefined;
|
|
1991
2057
|
}[];
|
|
1992
2058
|
}[] | undefined;
|
|
2059
|
+
sticky?: boolean | undefined;
|
|
1993
2060
|
}>>;
|
|
1994
2061
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1995
2062
|
id: z.ZodString;
|
|
@@ -2056,6 +2123,7 @@ export declare const Experiment: {
|
|
|
2056
2123
|
hidden?: boolean | undefined;
|
|
2057
2124
|
}[];
|
|
2058
2125
|
}>, "many">>>;
|
|
2126
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2059
2127
|
}, "strip", z.ZodTypeAny, {
|
|
2060
2128
|
distribution: number[];
|
|
2061
2129
|
traffic: number;
|
|
@@ -2068,6 +2136,7 @@ export declare const Experiment: {
|
|
|
2068
2136
|
hidden: boolean;
|
|
2069
2137
|
}[];
|
|
2070
2138
|
}[];
|
|
2139
|
+
sticky: boolean;
|
|
2071
2140
|
}, {
|
|
2072
2141
|
distribution?: number[] | undefined;
|
|
2073
2142
|
traffic?: number | undefined;
|
|
@@ -2080,6 +2149,7 @@ export declare const Experiment: {
|
|
|
2080
2149
|
hidden?: boolean | undefined;
|
|
2081
2150
|
}[];
|
|
2082
2151
|
}[] | undefined;
|
|
2152
|
+
sticky?: boolean | undefined;
|
|
2083
2153
|
}>>;
|
|
2084
2154
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2085
2155
|
id: z.ZodString;
|
|
@@ -2115,6 +2185,7 @@ export declare const Experiment: {
|
|
|
2115
2185
|
hidden: boolean;
|
|
2116
2186
|
}[];
|
|
2117
2187
|
}[];
|
|
2188
|
+
sticky: boolean;
|
|
2118
2189
|
};
|
|
2119
2190
|
description?: string | undefined;
|
|
2120
2191
|
audience?: {
|
|
@@ -2142,6 +2213,7 @@ export declare const Experiment: {
|
|
|
2142
2213
|
hidden: boolean;
|
|
2143
2214
|
}[];
|
|
2144
2215
|
}[];
|
|
2216
|
+
sticky: boolean;
|
|
2145
2217
|
};
|
|
2146
2218
|
description?: string | undefined;
|
|
2147
2219
|
audience?: {
|
|
@@ -2168,6 +2240,7 @@ export declare const Experiment: {
|
|
|
2168
2240
|
hidden?: boolean | undefined;
|
|
2169
2241
|
}[];
|
|
2170
2242
|
}[] | undefined;
|
|
2243
|
+
sticky?: boolean | undefined;
|
|
2171
2244
|
} | undefined;
|
|
2172
2245
|
audience?: {
|
|
2173
2246
|
id: string;
|
|
@@ -2226,6 +2299,7 @@ export declare const Experiment: {
|
|
|
2226
2299
|
hidden?: boolean | undefined;
|
|
2227
2300
|
}[];
|
|
2228
2301
|
}>, "many">>>;
|
|
2302
|
+
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2229
2303
|
}, "strip", z.ZodTypeAny, {
|
|
2230
2304
|
distribution: number[];
|
|
2231
2305
|
traffic: number;
|
|
@@ -2238,6 +2312,7 @@ export declare const Experiment: {
|
|
|
2238
2312
|
hidden: boolean;
|
|
2239
2313
|
}[];
|
|
2240
2314
|
}[];
|
|
2315
|
+
sticky: boolean;
|
|
2241
2316
|
}, {
|
|
2242
2317
|
distribution?: number[] | undefined;
|
|
2243
2318
|
traffic?: number | undefined;
|
|
@@ -2250,6 +2325,7 @@ export declare const Experiment: {
|
|
|
2250
2325
|
hidden?: boolean | undefined;
|
|
2251
2326
|
}[];
|
|
2252
2327
|
}[] | undefined;
|
|
2328
|
+
sticky?: boolean | undefined;
|
|
2253
2329
|
}>>;
|
|
2254
2330
|
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2255
2331
|
id: z.ZodString;
|
|
@@ -2284,6 +2360,7 @@ export declare const Experiment: {
|
|
|
2284
2360
|
hidden?: boolean | undefined;
|
|
2285
2361
|
}[];
|
|
2286
2362
|
}[] | undefined;
|
|
2363
|
+
sticky?: boolean | undefined;
|
|
2287
2364
|
} | undefined;
|
|
2288
2365
|
audience?: {
|
|
2289
2366
|
id: string;
|
|
@@ -2309,6 +2386,7 @@ export declare const Experiment: {
|
|
|
2309
2386
|
hidden: boolean;
|
|
2310
2387
|
}[];
|
|
2311
2388
|
}[];
|
|
2389
|
+
sticky: boolean;
|
|
2312
2390
|
};
|
|
2313
2391
|
description?: string | undefined;
|
|
2314
2392
|
audience?: {
|