@ninetailed/experience.js-utils-contentful 4.2.0-beta.2 → 4.2.0-beta.4
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 +42 -9
- package/index.js +42 -9
- package/package.json +5 -5
- package/types/BaselineWithExperiencesEntry.d.ts +612 -678
- package/types/EntryFields.d.ts +8 -1
- package/types/ExperimentEntry.d.ts +24085 -1060
|
@@ -2,8 +2,8 @@ import { z } from 'zod';
|
|
|
2
2
|
import { EntryFields } from './EntryFields';
|
|
3
3
|
import { ExperienceEntry, ExperienceEntryLike } from './ExperienceEntry';
|
|
4
4
|
import { FieldsOverride } from './FieldsOverride';
|
|
5
|
-
declare const BaselineWithExperiencesEntryFields: z.ZodObject<
|
|
6
|
-
nt_experiences: z.ZodArray<z.ZodObject<
|
|
5
|
+
declare const BaselineWithExperiencesEntryFields: z.ZodObject<{
|
|
6
|
+
nt_experiences: z.ZodArray<z.ZodObject<{
|
|
7
7
|
sys: z.ZodObject<{
|
|
8
8
|
type: z.ZodOptional<z.ZodString>;
|
|
9
9
|
id: z.ZodString;
|
|
@@ -12,13 +12,11 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
12
12
|
locale: z.ZodOptional<z.ZodString>;
|
|
13
13
|
revision: z.ZodOptional<z.ZodNumber>;
|
|
14
14
|
space: z.ZodOptional<z.ZodObject<{
|
|
15
|
-
sys: z.ZodObject<
|
|
15
|
+
sys: z.ZodObject<{
|
|
16
16
|
type: z.ZodString;
|
|
17
|
-
linkType: z.ZodString;
|
|
18
17
|
id: z.ZodString;
|
|
19
|
-
}, {
|
|
20
18
|
linkType: z.ZodString;
|
|
21
|
-
}
|
|
19
|
+
}, "strip", z.ZodTypeAny, {
|
|
22
20
|
type: string;
|
|
23
21
|
id: string;
|
|
24
22
|
linkType: string;
|
|
@@ -41,13 +39,11 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
41
39
|
};
|
|
42
40
|
}>>;
|
|
43
41
|
environment: z.ZodOptional<z.ZodObject<{
|
|
44
|
-
sys: z.ZodObject<
|
|
42
|
+
sys: z.ZodObject<{
|
|
45
43
|
type: z.ZodString;
|
|
46
|
-
linkType: z.ZodString;
|
|
47
44
|
id: z.ZodString;
|
|
48
|
-
}, {
|
|
49
45
|
linkType: z.ZodString;
|
|
50
|
-
}
|
|
46
|
+
}, "strip", z.ZodTypeAny, {
|
|
51
47
|
type: string;
|
|
52
48
|
id: string;
|
|
53
49
|
linkType: string;
|
|
@@ -70,13 +66,11 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
70
66
|
};
|
|
71
67
|
}>>;
|
|
72
68
|
contentType: z.ZodOptional<z.ZodObject<{
|
|
73
|
-
sys: z.ZodObject<
|
|
69
|
+
sys: z.ZodObject<{
|
|
74
70
|
type: z.ZodString;
|
|
75
|
-
linkType: z.ZodString;
|
|
76
71
|
id: z.ZodString;
|
|
77
|
-
}, {
|
|
78
72
|
linkType: z.ZodString;
|
|
79
|
-
}
|
|
73
|
+
}, "strip", z.ZodTypeAny, {
|
|
80
74
|
type: string;
|
|
81
75
|
id: string;
|
|
82
76
|
linkType: string;
|
|
@@ -99,6 +93,7 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
99
93
|
};
|
|
100
94
|
}>>;
|
|
101
95
|
}, "strip", z.ZodTypeAny, {
|
|
96
|
+
id: string;
|
|
102
97
|
type?: string | undefined;
|
|
103
98
|
createdAt?: string | undefined;
|
|
104
99
|
updatedAt?: string | undefined;
|
|
@@ -125,8 +120,8 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
125
120
|
linkType: string;
|
|
126
121
|
};
|
|
127
122
|
} | undefined;
|
|
128
|
-
id: string;
|
|
129
123
|
}, {
|
|
124
|
+
id: string;
|
|
130
125
|
type?: string | undefined;
|
|
131
126
|
createdAt?: string | undefined;
|
|
132
127
|
updatedAt?: string | undefined;
|
|
@@ -153,18 +148,14 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
153
148
|
linkType: string;
|
|
154
149
|
};
|
|
155
150
|
} | undefined;
|
|
156
|
-
id: string;
|
|
157
151
|
}>;
|
|
158
|
-
fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
|
|
159
152
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
160
153
|
tags: z.ZodArray<z.ZodObject<{
|
|
161
|
-
sys: z.ZodObject<
|
|
154
|
+
sys: z.ZodObject<{
|
|
162
155
|
type: z.ZodString;
|
|
163
|
-
linkType: z.ZodString;
|
|
164
156
|
id: z.ZodString;
|
|
165
|
-
}, {
|
|
166
157
|
linkType: z.ZodString;
|
|
167
|
-
}
|
|
158
|
+
}, "strip", z.ZodTypeAny, {
|
|
168
159
|
type: string;
|
|
169
160
|
id: string;
|
|
170
161
|
linkType: string;
|
|
@@ -203,7 +194,6 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
203
194
|
};
|
|
204
195
|
}[];
|
|
205
196
|
}>>;
|
|
206
|
-
}, {
|
|
207
197
|
fields: z.ZodObject<{
|
|
208
198
|
nt_name: z.ZodString;
|
|
209
199
|
nt_description: z.ZodOptional<z.ZodString>;
|
|
@@ -295,7 +285,7 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
295
285
|
}[];
|
|
296
286
|
}[] | undefined;
|
|
297
287
|
} | null | undefined>;
|
|
298
|
-
nt_audience: z.ZodNullable<z.ZodOptional<z.ZodObject<
|
|
288
|
+
nt_audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
299
289
|
sys: z.ZodObject<{
|
|
300
290
|
type: z.ZodOptional<z.ZodString>;
|
|
301
291
|
id: z.ZodString;
|
|
@@ -304,13 +294,11 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
304
294
|
locale: z.ZodOptional<z.ZodString>;
|
|
305
295
|
revision: z.ZodOptional<z.ZodNumber>;
|
|
306
296
|
space: z.ZodOptional<z.ZodObject<{
|
|
307
|
-
sys: z.ZodObject<
|
|
297
|
+
sys: z.ZodObject<{
|
|
308
298
|
type: z.ZodString;
|
|
309
|
-
linkType: z.ZodString;
|
|
310
299
|
id: z.ZodString;
|
|
311
|
-
}, {
|
|
312
300
|
linkType: z.ZodString;
|
|
313
|
-
}
|
|
301
|
+
}, "strip", z.ZodTypeAny, {
|
|
314
302
|
type: string;
|
|
315
303
|
id: string;
|
|
316
304
|
linkType: string;
|
|
@@ -333,13 +321,11 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
333
321
|
};
|
|
334
322
|
}>>;
|
|
335
323
|
environment: z.ZodOptional<z.ZodObject<{
|
|
336
|
-
sys: z.ZodObject<
|
|
324
|
+
sys: z.ZodObject<{
|
|
337
325
|
type: z.ZodString;
|
|
338
|
-
linkType: z.ZodString;
|
|
339
326
|
id: z.ZodString;
|
|
340
|
-
}, {
|
|
341
327
|
linkType: z.ZodString;
|
|
342
|
-
}
|
|
328
|
+
}, "strip", z.ZodTypeAny, {
|
|
343
329
|
type: string;
|
|
344
330
|
id: string;
|
|
345
331
|
linkType: string;
|
|
@@ -362,13 +348,11 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
362
348
|
};
|
|
363
349
|
}>>;
|
|
364
350
|
contentType: z.ZodOptional<z.ZodObject<{
|
|
365
|
-
sys: z.ZodObject<
|
|
351
|
+
sys: z.ZodObject<{
|
|
366
352
|
type: z.ZodString;
|
|
367
|
-
linkType: z.ZodString;
|
|
368
353
|
id: z.ZodString;
|
|
369
|
-
}, {
|
|
370
354
|
linkType: z.ZodString;
|
|
371
|
-
}
|
|
355
|
+
}, "strip", z.ZodTypeAny, {
|
|
372
356
|
type: string;
|
|
373
357
|
id: string;
|
|
374
358
|
linkType: string;
|
|
@@ -391,6 +375,7 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
391
375
|
};
|
|
392
376
|
}>>;
|
|
393
377
|
}, "strip", z.ZodTypeAny, {
|
|
378
|
+
id: string;
|
|
394
379
|
type?: string | undefined;
|
|
395
380
|
createdAt?: string | undefined;
|
|
396
381
|
updatedAt?: string | undefined;
|
|
@@ -417,8 +402,8 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
417
402
|
linkType: string;
|
|
418
403
|
};
|
|
419
404
|
} | undefined;
|
|
420
|
-
id: string;
|
|
421
405
|
}, {
|
|
406
|
+
id: string;
|
|
422
407
|
type?: string | undefined;
|
|
423
408
|
createdAt?: string | undefined;
|
|
424
409
|
updatedAt?: string | undefined;
|
|
@@ -445,18 +430,14 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
445
430
|
linkType: string;
|
|
446
431
|
};
|
|
447
432
|
} | undefined;
|
|
448
|
-
id: string;
|
|
449
433
|
}>;
|
|
450
|
-
fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
|
|
451
434
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
452
435
|
tags: z.ZodArray<z.ZodObject<{
|
|
453
|
-
sys: z.ZodObject<
|
|
436
|
+
sys: z.ZodObject<{
|
|
454
437
|
type: z.ZodString;
|
|
455
|
-
linkType: z.ZodString;
|
|
456
438
|
id: z.ZodString;
|
|
457
|
-
}, {
|
|
458
439
|
linkType: z.ZodString;
|
|
459
|
-
}
|
|
440
|
+
}, "strip", z.ZodTypeAny, {
|
|
460
441
|
type: string;
|
|
461
442
|
id: string;
|
|
462
443
|
linkType: string;
|
|
@@ -495,31 +476,22 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
495
476
|
};
|
|
496
477
|
}[];
|
|
497
478
|
}>>;
|
|
498
|
-
|
|
499
|
-
fields: z.ZodObject<z.extendShape<{}, {
|
|
479
|
+
fields: z.ZodObject<{
|
|
500
480
|
nt_name: z.ZodString;
|
|
501
481
|
nt_description: z.ZodOptional<z.ZodString>;
|
|
502
482
|
nt_audience_id: z.ZodString;
|
|
503
|
-
}
|
|
504
|
-
nt_description?: string | undefined;
|
|
483
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
505
484
|
nt_name: string;
|
|
506
485
|
nt_audience_id: string;
|
|
507
|
-
}, {
|
|
508
486
|
nt_description?: string | undefined;
|
|
487
|
+
}, {
|
|
509
488
|
nt_name: string;
|
|
510
489
|
nt_audience_id: string;
|
|
490
|
+
nt_description?: string | undefined;
|
|
511
491
|
}>;
|
|
512
|
-
}
|
|
513
|
-
metadata?: {
|
|
514
|
-
tags: {
|
|
515
|
-
sys: {
|
|
516
|
-
type: string;
|
|
517
|
-
id: string;
|
|
518
|
-
linkType: string;
|
|
519
|
-
};
|
|
520
|
-
}[];
|
|
521
|
-
} | undefined;
|
|
492
|
+
}, "strip", z.ZodTypeAny, {
|
|
522
493
|
sys: {
|
|
494
|
+
id: string;
|
|
523
495
|
type?: string | undefined;
|
|
524
496
|
createdAt?: string | undefined;
|
|
525
497
|
updatedAt?: string | undefined;
|
|
@@ -546,14 +518,12 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
546
518
|
linkType: string;
|
|
547
519
|
};
|
|
548
520
|
} | undefined;
|
|
549
|
-
id: string;
|
|
550
521
|
};
|
|
551
522
|
fields: {
|
|
552
|
-
nt_description?: string | undefined;
|
|
553
523
|
nt_name: string;
|
|
554
524
|
nt_audience_id: string;
|
|
525
|
+
nt_description?: string | undefined;
|
|
555
526
|
};
|
|
556
|
-
}, {
|
|
557
527
|
metadata?: {
|
|
558
528
|
tags: {
|
|
559
529
|
sys: {
|
|
@@ -563,7 +533,9 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
563
533
|
};
|
|
564
534
|
}[];
|
|
565
535
|
} | undefined;
|
|
536
|
+
}, {
|
|
566
537
|
sys: {
|
|
538
|
+
id: string;
|
|
567
539
|
type?: string | undefined;
|
|
568
540
|
createdAt?: string | undefined;
|
|
569
541
|
updatedAt?: string | undefined;
|
|
@@ -590,13 +562,21 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
590
562
|
linkType: string;
|
|
591
563
|
};
|
|
592
564
|
} | undefined;
|
|
593
|
-
id: string;
|
|
594
565
|
};
|
|
595
566
|
fields: {
|
|
596
|
-
nt_description?: string | undefined;
|
|
597
567
|
nt_name: string;
|
|
598
568
|
nt_audience_id: string;
|
|
569
|
+
nt_description?: string | undefined;
|
|
599
570
|
};
|
|
571
|
+
metadata?: {
|
|
572
|
+
tags: {
|
|
573
|
+
sys: {
|
|
574
|
+
type: string;
|
|
575
|
+
id: string;
|
|
576
|
+
linkType: string;
|
|
577
|
+
};
|
|
578
|
+
}[];
|
|
579
|
+
} | undefined;
|
|
600
580
|
}>>>;
|
|
601
581
|
nt_variants: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
602
582
|
sys: z.ZodObject<{
|
|
@@ -607,13 +587,11 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
607
587
|
locale: z.ZodOptional<z.ZodString>;
|
|
608
588
|
revision: z.ZodOptional<z.ZodNumber>;
|
|
609
589
|
space: z.ZodOptional<z.ZodObject<{
|
|
610
|
-
sys: z.ZodObject<
|
|
590
|
+
sys: z.ZodObject<{
|
|
611
591
|
type: z.ZodString;
|
|
612
|
-
linkType: z.ZodString;
|
|
613
592
|
id: z.ZodString;
|
|
614
|
-
}, {
|
|
615
593
|
linkType: z.ZodString;
|
|
616
|
-
}
|
|
594
|
+
}, "strip", z.ZodTypeAny, {
|
|
617
595
|
type: string;
|
|
618
596
|
id: string;
|
|
619
597
|
linkType: string;
|
|
@@ -636,13 +614,11 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
636
614
|
};
|
|
637
615
|
}>>;
|
|
638
616
|
environment: z.ZodOptional<z.ZodObject<{
|
|
639
|
-
sys: z.ZodObject<
|
|
617
|
+
sys: z.ZodObject<{
|
|
640
618
|
type: z.ZodString;
|
|
641
|
-
linkType: z.ZodString;
|
|
642
619
|
id: z.ZodString;
|
|
643
|
-
}, {
|
|
644
620
|
linkType: z.ZodString;
|
|
645
|
-
}
|
|
621
|
+
}, "strip", z.ZodTypeAny, {
|
|
646
622
|
type: string;
|
|
647
623
|
id: string;
|
|
648
624
|
linkType: string;
|
|
@@ -665,13 +641,11 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
665
641
|
};
|
|
666
642
|
}>>;
|
|
667
643
|
contentType: z.ZodOptional<z.ZodObject<{
|
|
668
|
-
sys: z.ZodObject<
|
|
644
|
+
sys: z.ZodObject<{
|
|
669
645
|
type: z.ZodString;
|
|
670
|
-
linkType: z.ZodString;
|
|
671
646
|
id: z.ZodString;
|
|
672
|
-
}, {
|
|
673
647
|
linkType: z.ZodString;
|
|
674
|
-
}
|
|
648
|
+
}, "strip", z.ZodTypeAny, {
|
|
675
649
|
type: string;
|
|
676
650
|
id: string;
|
|
677
651
|
linkType: string;
|
|
@@ -694,6 +668,7 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
694
668
|
};
|
|
695
669
|
}>>;
|
|
696
670
|
}, "strip", z.ZodTypeAny, {
|
|
671
|
+
id: string;
|
|
697
672
|
type?: string | undefined;
|
|
698
673
|
createdAt?: string | undefined;
|
|
699
674
|
updatedAt?: string | undefined;
|
|
@@ -720,8 +695,8 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
720
695
|
linkType: string;
|
|
721
696
|
};
|
|
722
697
|
} | undefined;
|
|
723
|
-
id: string;
|
|
724
698
|
}, {
|
|
699
|
+
id: string;
|
|
725
700
|
type?: string | undefined;
|
|
726
701
|
createdAt?: string | undefined;
|
|
727
702
|
updatedAt?: string | undefined;
|
|
@@ -748,18 +723,15 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
748
723
|
linkType: string;
|
|
749
724
|
};
|
|
750
725
|
} | undefined;
|
|
751
|
-
id: string;
|
|
752
726
|
}>;
|
|
753
|
-
fields: z.ZodObject<{},
|
|
727
|
+
fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
|
|
754
728
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
755
729
|
tags: z.ZodArray<z.ZodObject<{
|
|
756
|
-
sys: z.ZodObject<
|
|
730
|
+
sys: z.ZodObject<{
|
|
757
731
|
type: z.ZodString;
|
|
758
|
-
linkType: z.ZodString;
|
|
759
732
|
id: z.ZodString;
|
|
760
|
-
}, {
|
|
761
733
|
linkType: z.ZodString;
|
|
762
|
-
}
|
|
734
|
+
}, "strip", z.ZodTypeAny, {
|
|
763
735
|
type: string;
|
|
764
736
|
id: string;
|
|
765
737
|
linkType: string;
|
|
@@ -799,16 +771,8 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
799
771
|
}[];
|
|
800
772
|
}>>;
|
|
801
773
|
}, "strip", z.ZodTypeAny, {
|
|
802
|
-
metadata?: {
|
|
803
|
-
tags: {
|
|
804
|
-
sys: {
|
|
805
|
-
type: string;
|
|
806
|
-
id: string;
|
|
807
|
-
linkType: string;
|
|
808
|
-
};
|
|
809
|
-
}[];
|
|
810
|
-
} | undefined;
|
|
811
774
|
sys: {
|
|
775
|
+
id: string;
|
|
812
776
|
type?: string | undefined;
|
|
813
777
|
createdAt?: string | undefined;
|
|
814
778
|
updatedAt?: string | undefined;
|
|
@@ -835,10 +799,8 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
835
799
|
linkType: string;
|
|
836
800
|
};
|
|
837
801
|
} | undefined;
|
|
838
|
-
id: string;
|
|
839
802
|
};
|
|
840
803
|
fields: {};
|
|
841
|
-
}, {
|
|
842
804
|
metadata?: {
|
|
843
805
|
tags: {
|
|
844
806
|
sys: {
|
|
@@ -848,7 +810,9 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
848
810
|
};
|
|
849
811
|
}[];
|
|
850
812
|
} | undefined;
|
|
813
|
+
}, {
|
|
851
814
|
sys: {
|
|
815
|
+
id: string;
|
|
852
816
|
type?: string | undefined;
|
|
853
817
|
createdAt?: string | undefined;
|
|
854
818
|
updatedAt?: string | undefined;
|
|
@@ -875,12 +839,8 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
875
839
|
linkType: string;
|
|
876
840
|
};
|
|
877
841
|
} | undefined;
|
|
878
|
-
id: string;
|
|
879
842
|
};
|
|
880
843
|
fields: {};
|
|
881
|
-
}>, "many">>;
|
|
882
|
-
}, "strip", z.ZodTypeAny, {
|
|
883
|
-
nt_audience?: {
|
|
884
844
|
metadata?: {
|
|
885
845
|
tags: {
|
|
886
846
|
sys: {
|
|
@@ -890,7 +850,27 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
890
850
|
};
|
|
891
851
|
}[];
|
|
892
852
|
} | undefined;
|
|
853
|
+
}>, "many">>;
|
|
854
|
+
}, "strip", z.ZodTypeAny, {
|
|
855
|
+
nt_name: string;
|
|
856
|
+
nt_type: string;
|
|
857
|
+
nt_config: {
|
|
858
|
+
distribution: number[];
|
|
859
|
+
traffic: number;
|
|
860
|
+
components: {
|
|
861
|
+
baseline: {
|
|
862
|
+
id: string;
|
|
863
|
+
};
|
|
864
|
+
variants: {
|
|
865
|
+
id: string;
|
|
866
|
+
hidden: boolean;
|
|
867
|
+
}[];
|
|
868
|
+
}[];
|
|
869
|
+
};
|
|
870
|
+
nt_description?: string | undefined;
|
|
871
|
+
nt_audience?: {
|
|
893
872
|
sys: {
|
|
873
|
+
id: string;
|
|
894
874
|
type?: string | undefined;
|
|
895
875
|
createdAt?: string | undefined;
|
|
896
876
|
updatedAt?: string | undefined;
|
|
@@ -917,16 +897,12 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
917
897
|
linkType: string;
|
|
918
898
|
};
|
|
919
899
|
} | undefined;
|
|
920
|
-
id: string;
|
|
921
900
|
};
|
|
922
901
|
fields: {
|
|
923
|
-
nt_description?: string | undefined;
|
|
924
902
|
nt_name: string;
|
|
925
903
|
nt_audience_id: string;
|
|
904
|
+
nt_description?: string | undefined;
|
|
926
905
|
};
|
|
927
|
-
} | null | undefined;
|
|
928
|
-
nt_description?: string | undefined;
|
|
929
|
-
nt_variants?: {
|
|
930
906
|
metadata?: {
|
|
931
907
|
tags: {
|
|
932
908
|
sys: {
|
|
@@ -936,7 +912,10 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
936
912
|
};
|
|
937
913
|
}[];
|
|
938
914
|
} | undefined;
|
|
915
|
+
} | null | undefined;
|
|
916
|
+
nt_variants?: {
|
|
939
917
|
sys: {
|
|
918
|
+
id: string;
|
|
940
919
|
type?: string | undefined;
|
|
941
920
|
createdAt?: string | undefined;
|
|
942
921
|
updatedAt?: string | undefined;
|
|
@@ -963,27 +942,8 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
963
942
|
linkType: string;
|
|
964
943
|
};
|
|
965
944
|
} | undefined;
|
|
966
|
-
id: string;
|
|
967
945
|
};
|
|
968
946
|
fields: {};
|
|
969
|
-
}[] | undefined;
|
|
970
|
-
nt_name: string;
|
|
971
|
-
nt_type: string;
|
|
972
|
-
nt_config: {
|
|
973
|
-
distribution: number[];
|
|
974
|
-
traffic: number;
|
|
975
|
-
components: {
|
|
976
|
-
baseline: {
|
|
977
|
-
id: string;
|
|
978
|
-
};
|
|
979
|
-
variants: {
|
|
980
|
-
id: string;
|
|
981
|
-
hidden: boolean;
|
|
982
|
-
}[];
|
|
983
|
-
}[];
|
|
984
|
-
};
|
|
985
|
-
}, {
|
|
986
|
-
nt_audience?: {
|
|
987
947
|
metadata?: {
|
|
988
948
|
tags: {
|
|
989
949
|
sys: {
|
|
@@ -993,7 +953,27 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
993
953
|
};
|
|
994
954
|
}[];
|
|
995
955
|
} | undefined;
|
|
956
|
+
}[] | undefined;
|
|
957
|
+
}, {
|
|
958
|
+
nt_name: string;
|
|
959
|
+
nt_type: string;
|
|
960
|
+
nt_description?: string | undefined;
|
|
961
|
+
nt_config?: {
|
|
962
|
+
distribution?: number[] | undefined;
|
|
963
|
+
traffic?: number | undefined;
|
|
964
|
+
components?: {
|
|
965
|
+
baseline: {
|
|
966
|
+
id?: string | undefined;
|
|
967
|
+
};
|
|
968
|
+
variants: {
|
|
969
|
+
id?: string | undefined;
|
|
970
|
+
hidden?: boolean | undefined;
|
|
971
|
+
}[];
|
|
972
|
+
}[] | undefined;
|
|
973
|
+
} | null | undefined;
|
|
974
|
+
nt_audience?: {
|
|
996
975
|
sys: {
|
|
976
|
+
id: string;
|
|
997
977
|
type?: string | undefined;
|
|
998
978
|
createdAt?: string | undefined;
|
|
999
979
|
updatedAt?: string | undefined;
|
|
@@ -1020,29 +1000,12 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1020
1000
|
linkType: string;
|
|
1021
1001
|
};
|
|
1022
1002
|
} | undefined;
|
|
1023
|
-
id: string;
|
|
1024
1003
|
};
|
|
1025
1004
|
fields: {
|
|
1026
|
-
nt_description?: string | undefined;
|
|
1027
1005
|
nt_name: string;
|
|
1028
1006
|
nt_audience_id: string;
|
|
1007
|
+
nt_description?: string | undefined;
|
|
1029
1008
|
};
|
|
1030
|
-
} | null | undefined;
|
|
1031
|
-
nt_description?: string | undefined;
|
|
1032
|
-
nt_config?: {
|
|
1033
|
-
distribution?: number[] | undefined;
|
|
1034
|
-
traffic?: number | undefined;
|
|
1035
|
-
components?: {
|
|
1036
|
-
baseline: {
|
|
1037
|
-
id?: string | undefined;
|
|
1038
|
-
};
|
|
1039
|
-
variants: {
|
|
1040
|
-
id?: string | undefined;
|
|
1041
|
-
hidden?: boolean | undefined;
|
|
1042
|
-
}[];
|
|
1043
|
-
}[] | undefined;
|
|
1044
|
-
} | null | undefined;
|
|
1045
|
-
nt_variants?: {
|
|
1046
1009
|
metadata?: {
|
|
1047
1010
|
tags: {
|
|
1048
1011
|
sys: {
|
|
@@ -1052,7 +1015,10 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1052
1015
|
};
|
|
1053
1016
|
}[];
|
|
1054
1017
|
} | undefined;
|
|
1018
|
+
} | null | undefined;
|
|
1019
|
+
nt_variants?: {
|
|
1055
1020
|
sys: {
|
|
1021
|
+
id: string;
|
|
1056
1022
|
type?: string | undefined;
|
|
1057
1023
|
createdAt?: string | undefined;
|
|
1058
1024
|
updatedAt?: string | undefined;
|
|
@@ -1079,24 +1045,22 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1079
1045
|
linkType: string;
|
|
1080
1046
|
};
|
|
1081
1047
|
} | undefined;
|
|
1082
|
-
id: string;
|
|
1083
1048
|
};
|
|
1084
1049
|
fields: {};
|
|
1050
|
+
metadata?: {
|
|
1051
|
+
tags: {
|
|
1052
|
+
sys: {
|
|
1053
|
+
type: string;
|
|
1054
|
+
id: string;
|
|
1055
|
+
linkType: string;
|
|
1056
|
+
};
|
|
1057
|
+
}[];
|
|
1058
|
+
} | undefined;
|
|
1085
1059
|
}[] | undefined;
|
|
1086
|
-
nt_name: string;
|
|
1087
|
-
nt_type: string;
|
|
1088
1060
|
}>;
|
|
1089
|
-
}
|
|
1090
|
-
metadata?: {
|
|
1091
|
-
tags: {
|
|
1092
|
-
sys: {
|
|
1093
|
-
type: string;
|
|
1094
|
-
id: string;
|
|
1095
|
-
linkType: string;
|
|
1096
|
-
};
|
|
1097
|
-
}[];
|
|
1098
|
-
} | undefined;
|
|
1061
|
+
}, "strip", z.ZodTypeAny, {
|
|
1099
1062
|
sys: {
|
|
1063
|
+
id: string;
|
|
1100
1064
|
type?: string | undefined;
|
|
1101
1065
|
createdAt?: string | undefined;
|
|
1102
1066
|
updatedAt?: string | undefined;
|
|
@@ -1123,20 +1087,27 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1123
1087
|
linkType: string;
|
|
1124
1088
|
};
|
|
1125
1089
|
} | undefined;
|
|
1126
|
-
id: string;
|
|
1127
1090
|
};
|
|
1128
1091
|
fields: {
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1092
|
+
nt_name: string;
|
|
1093
|
+
nt_type: string;
|
|
1094
|
+
nt_config: {
|
|
1095
|
+
distribution: number[];
|
|
1096
|
+
traffic: number;
|
|
1097
|
+
components: {
|
|
1098
|
+
baseline: {
|
|
1099
|
+
id: string;
|
|
1100
|
+
};
|
|
1101
|
+
variants: {
|
|
1102
|
+
id: string;
|
|
1103
|
+
hidden: boolean;
|
|
1137
1104
|
}[];
|
|
1138
|
-
}
|
|
1105
|
+
}[];
|
|
1106
|
+
};
|
|
1107
|
+
nt_description?: string | undefined;
|
|
1108
|
+
nt_audience?: {
|
|
1139
1109
|
sys: {
|
|
1110
|
+
id: string;
|
|
1140
1111
|
type?: string | undefined;
|
|
1141
1112
|
createdAt?: string | undefined;
|
|
1142
1113
|
updatedAt?: string | undefined;
|
|
@@ -1163,16 +1134,12 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1163
1134
|
linkType: string;
|
|
1164
1135
|
};
|
|
1165
1136
|
} | undefined;
|
|
1166
|
-
id: string;
|
|
1167
1137
|
};
|
|
1168
1138
|
fields: {
|
|
1169
|
-
nt_description?: string | undefined;
|
|
1170
1139
|
nt_name: string;
|
|
1171
1140
|
nt_audience_id: string;
|
|
1141
|
+
nt_description?: string | undefined;
|
|
1172
1142
|
};
|
|
1173
|
-
} | null | undefined;
|
|
1174
|
-
nt_description?: string | undefined;
|
|
1175
|
-
nt_variants?: {
|
|
1176
1143
|
metadata?: {
|
|
1177
1144
|
tags: {
|
|
1178
1145
|
sys: {
|
|
@@ -1182,7 +1149,10 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1182
1149
|
};
|
|
1183
1150
|
}[];
|
|
1184
1151
|
} | undefined;
|
|
1152
|
+
} | null | undefined;
|
|
1153
|
+
nt_variants?: {
|
|
1185
1154
|
sys: {
|
|
1155
|
+
id: string;
|
|
1186
1156
|
type?: string | undefined;
|
|
1187
1157
|
createdAt?: string | undefined;
|
|
1188
1158
|
updatedAt?: string | undefined;
|
|
@@ -1209,27 +1179,19 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1209
1179
|
linkType: string;
|
|
1210
1180
|
};
|
|
1211
1181
|
} | undefined;
|
|
1212
|
-
id: string;
|
|
1213
1182
|
};
|
|
1214
1183
|
fields: {};
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
baseline: {
|
|
1223
|
-
id: string;
|
|
1224
|
-
};
|
|
1225
|
-
variants: {
|
|
1226
|
-
id: string;
|
|
1227
|
-
hidden: boolean;
|
|
1184
|
+
metadata?: {
|
|
1185
|
+
tags: {
|
|
1186
|
+
sys: {
|
|
1187
|
+
type: string;
|
|
1188
|
+
id: string;
|
|
1189
|
+
linkType: string;
|
|
1190
|
+
};
|
|
1228
1191
|
}[];
|
|
1229
|
-
}
|
|
1230
|
-
};
|
|
1192
|
+
} | undefined;
|
|
1193
|
+
}[] | undefined;
|
|
1231
1194
|
};
|
|
1232
|
-
}, {
|
|
1233
1195
|
metadata?: {
|
|
1234
1196
|
tags: {
|
|
1235
1197
|
sys: {
|
|
@@ -1239,7 +1201,9 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1239
1201
|
};
|
|
1240
1202
|
}[];
|
|
1241
1203
|
} | undefined;
|
|
1204
|
+
}, {
|
|
1242
1205
|
sys: {
|
|
1206
|
+
id: string;
|
|
1243
1207
|
type?: string | undefined;
|
|
1244
1208
|
createdAt?: string | undefined;
|
|
1245
1209
|
updatedAt?: string | undefined;
|
|
@@ -1266,20 +1230,27 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1266
1230
|
linkType: string;
|
|
1267
1231
|
};
|
|
1268
1232
|
} | undefined;
|
|
1269
|
-
id: string;
|
|
1270
1233
|
};
|
|
1271
1234
|
fields: {
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1235
|
+
nt_name: string;
|
|
1236
|
+
nt_type: string;
|
|
1237
|
+
nt_description?: string | undefined;
|
|
1238
|
+
nt_config?: {
|
|
1239
|
+
distribution?: number[] | undefined;
|
|
1240
|
+
traffic?: number | undefined;
|
|
1241
|
+
components?: {
|
|
1242
|
+
baseline: {
|
|
1243
|
+
id?: string | undefined;
|
|
1244
|
+
};
|
|
1245
|
+
variants: {
|
|
1246
|
+
id?: string | undefined;
|
|
1247
|
+
hidden?: boolean | undefined;
|
|
1280
1248
|
}[];
|
|
1281
|
-
} | undefined;
|
|
1249
|
+
}[] | undefined;
|
|
1250
|
+
} | null | undefined;
|
|
1251
|
+
nt_audience?: {
|
|
1282
1252
|
sys: {
|
|
1253
|
+
id: string;
|
|
1283
1254
|
type?: string | undefined;
|
|
1284
1255
|
createdAt?: string | undefined;
|
|
1285
1256
|
updatedAt?: string | undefined;
|
|
@@ -1306,29 +1277,12 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1306
1277
|
linkType: string;
|
|
1307
1278
|
};
|
|
1308
1279
|
} | undefined;
|
|
1309
|
-
id: string;
|
|
1310
1280
|
};
|
|
1311
1281
|
fields: {
|
|
1312
|
-
nt_description?: string | undefined;
|
|
1313
1282
|
nt_name: string;
|
|
1314
1283
|
nt_audience_id: string;
|
|
1284
|
+
nt_description?: string | undefined;
|
|
1315
1285
|
};
|
|
1316
|
-
} | null | undefined;
|
|
1317
|
-
nt_description?: string | undefined;
|
|
1318
|
-
nt_config?: {
|
|
1319
|
-
distribution?: number[] | undefined;
|
|
1320
|
-
traffic?: number | undefined;
|
|
1321
|
-
components?: {
|
|
1322
|
-
baseline: {
|
|
1323
|
-
id?: string | undefined;
|
|
1324
|
-
};
|
|
1325
|
-
variants: {
|
|
1326
|
-
id?: string | undefined;
|
|
1327
|
-
hidden?: boolean | undefined;
|
|
1328
|
-
}[];
|
|
1329
|
-
}[] | undefined;
|
|
1330
|
-
} | null | undefined;
|
|
1331
|
-
nt_variants?: {
|
|
1332
1286
|
metadata?: {
|
|
1333
1287
|
tags: {
|
|
1334
1288
|
sys: {
|
|
@@ -1338,7 +1292,10 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1338
1292
|
};
|
|
1339
1293
|
}[];
|
|
1340
1294
|
} | undefined;
|
|
1295
|
+
} | null | undefined;
|
|
1296
|
+
nt_variants?: {
|
|
1341
1297
|
sys: {
|
|
1298
|
+
id: string;
|
|
1342
1299
|
type?: string | undefined;
|
|
1343
1300
|
createdAt?: string | undefined;
|
|
1344
1301
|
updatedAt?: string | undefined;
|
|
@@ -1365,16 +1322,19 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1365
1322
|
linkType: string;
|
|
1366
1323
|
};
|
|
1367
1324
|
} | undefined;
|
|
1368
|
-
id: string;
|
|
1369
1325
|
};
|
|
1370
1326
|
fields: {};
|
|
1327
|
+
metadata?: {
|
|
1328
|
+
tags: {
|
|
1329
|
+
sys: {
|
|
1330
|
+
type: string;
|
|
1331
|
+
id: string;
|
|
1332
|
+
linkType: string;
|
|
1333
|
+
};
|
|
1334
|
+
}[];
|
|
1335
|
+
} | undefined;
|
|
1371
1336
|
}[] | undefined;
|
|
1372
|
-
nt_name: string;
|
|
1373
|
-
nt_type: string;
|
|
1374
1337
|
};
|
|
1375
|
-
}>, "many">;
|
|
1376
|
-
}>, "passthrough", z.ZodTypeAny, {
|
|
1377
|
-
nt_experiences: {
|
|
1378
1338
|
metadata?: {
|
|
1379
1339
|
tags: {
|
|
1380
1340
|
sys: {
|
|
@@ -1384,7 +1344,11 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1384
1344
|
};
|
|
1385
1345
|
}[];
|
|
1386
1346
|
} | undefined;
|
|
1347
|
+
}>, "many">;
|
|
1348
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1349
|
+
nt_experiences: {
|
|
1387
1350
|
sys: {
|
|
1351
|
+
id: string;
|
|
1388
1352
|
type?: string | undefined;
|
|
1389
1353
|
createdAt?: string | undefined;
|
|
1390
1354
|
updatedAt?: string | undefined;
|
|
@@ -1411,20 +1375,27 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1411
1375
|
linkType: string;
|
|
1412
1376
|
};
|
|
1413
1377
|
} | undefined;
|
|
1414
|
-
id: string;
|
|
1415
1378
|
};
|
|
1416
1379
|
fields: {
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1380
|
+
nt_name: string;
|
|
1381
|
+
nt_type: string;
|
|
1382
|
+
nt_config: {
|
|
1383
|
+
distribution: number[];
|
|
1384
|
+
traffic: number;
|
|
1385
|
+
components: {
|
|
1386
|
+
baseline: {
|
|
1387
|
+
id: string;
|
|
1388
|
+
};
|
|
1389
|
+
variants: {
|
|
1390
|
+
id: string;
|
|
1391
|
+
hidden: boolean;
|
|
1425
1392
|
}[];
|
|
1426
|
-
}
|
|
1393
|
+
}[];
|
|
1394
|
+
};
|
|
1395
|
+
nt_description?: string | undefined;
|
|
1396
|
+
nt_audience?: {
|
|
1427
1397
|
sys: {
|
|
1398
|
+
id: string;
|
|
1428
1399
|
type?: string | undefined;
|
|
1429
1400
|
createdAt?: string | undefined;
|
|
1430
1401
|
updatedAt?: string | undefined;
|
|
@@ -1451,16 +1422,12 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1451
1422
|
linkType: string;
|
|
1452
1423
|
};
|
|
1453
1424
|
} | undefined;
|
|
1454
|
-
id: string;
|
|
1455
1425
|
};
|
|
1456
1426
|
fields: {
|
|
1457
|
-
nt_description?: string | undefined;
|
|
1458
1427
|
nt_name: string;
|
|
1459
1428
|
nt_audience_id: string;
|
|
1429
|
+
nt_description?: string | undefined;
|
|
1460
1430
|
};
|
|
1461
|
-
} | null | undefined;
|
|
1462
|
-
nt_description?: string | undefined;
|
|
1463
|
-
nt_variants?: {
|
|
1464
1431
|
metadata?: {
|
|
1465
1432
|
tags: {
|
|
1466
1433
|
sys: {
|
|
@@ -1470,7 +1437,10 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1470
1437
|
};
|
|
1471
1438
|
}[];
|
|
1472
1439
|
} | undefined;
|
|
1440
|
+
} | null | undefined;
|
|
1441
|
+
nt_variants?: {
|
|
1473
1442
|
sys: {
|
|
1443
|
+
id: string;
|
|
1474
1444
|
type?: string | undefined;
|
|
1475
1445
|
createdAt?: string | undefined;
|
|
1476
1446
|
updatedAt?: string | undefined;
|
|
@@ -1497,29 +1467,19 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1497
1467
|
linkType: string;
|
|
1498
1468
|
};
|
|
1499
1469
|
} | undefined;
|
|
1500
|
-
id: string;
|
|
1501
1470
|
};
|
|
1502
1471
|
fields: {};
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
baseline: {
|
|
1511
|
-
id: string;
|
|
1512
|
-
};
|
|
1513
|
-
variants: {
|
|
1514
|
-
id: string;
|
|
1515
|
-
hidden: boolean;
|
|
1472
|
+
metadata?: {
|
|
1473
|
+
tags: {
|
|
1474
|
+
sys: {
|
|
1475
|
+
type: string;
|
|
1476
|
+
id: string;
|
|
1477
|
+
linkType: string;
|
|
1478
|
+
};
|
|
1516
1479
|
}[];
|
|
1517
|
-
}
|
|
1518
|
-
};
|
|
1480
|
+
} | undefined;
|
|
1481
|
+
}[] | undefined;
|
|
1519
1482
|
};
|
|
1520
|
-
}[];
|
|
1521
|
-
}, {
|
|
1522
|
-
nt_experiences: {
|
|
1523
1483
|
metadata?: {
|
|
1524
1484
|
tags: {
|
|
1525
1485
|
sys: {
|
|
@@ -1529,7 +1489,11 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1529
1489
|
};
|
|
1530
1490
|
}[];
|
|
1531
1491
|
} | undefined;
|
|
1492
|
+
}[];
|
|
1493
|
+
}, {
|
|
1494
|
+
nt_experiences: {
|
|
1532
1495
|
sys: {
|
|
1496
|
+
id: string;
|
|
1533
1497
|
type?: string | undefined;
|
|
1534
1498
|
createdAt?: string | undefined;
|
|
1535
1499
|
updatedAt?: string | undefined;
|
|
@@ -1556,20 +1520,27 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1556
1520
|
linkType: string;
|
|
1557
1521
|
};
|
|
1558
1522
|
} | undefined;
|
|
1559
|
-
id: string;
|
|
1560
1523
|
};
|
|
1561
1524
|
fields: {
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1525
|
+
nt_name: string;
|
|
1526
|
+
nt_type: string;
|
|
1527
|
+
nt_description?: string | undefined;
|
|
1528
|
+
nt_config?: {
|
|
1529
|
+
distribution?: number[] | undefined;
|
|
1530
|
+
traffic?: number | undefined;
|
|
1531
|
+
components?: {
|
|
1532
|
+
baseline: {
|
|
1533
|
+
id?: string | undefined;
|
|
1534
|
+
};
|
|
1535
|
+
variants: {
|
|
1536
|
+
id?: string | undefined;
|
|
1537
|
+
hidden?: boolean | undefined;
|
|
1570
1538
|
}[];
|
|
1571
|
-
} | undefined;
|
|
1539
|
+
}[] | undefined;
|
|
1540
|
+
} | null | undefined;
|
|
1541
|
+
nt_audience?: {
|
|
1572
1542
|
sys: {
|
|
1543
|
+
id: string;
|
|
1573
1544
|
type?: string | undefined;
|
|
1574
1545
|
createdAt?: string | undefined;
|
|
1575
1546
|
updatedAt?: string | undefined;
|
|
@@ -1596,29 +1567,12 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1596
1567
|
linkType: string;
|
|
1597
1568
|
};
|
|
1598
1569
|
} | undefined;
|
|
1599
|
-
id: string;
|
|
1600
1570
|
};
|
|
1601
1571
|
fields: {
|
|
1602
|
-
nt_description?: string | undefined;
|
|
1603
1572
|
nt_name: string;
|
|
1604
1573
|
nt_audience_id: string;
|
|
1574
|
+
nt_description?: string | undefined;
|
|
1605
1575
|
};
|
|
1606
|
-
} | null | undefined;
|
|
1607
|
-
nt_description?: string | undefined;
|
|
1608
|
-
nt_config?: {
|
|
1609
|
-
distribution?: number[] | undefined;
|
|
1610
|
-
traffic?: number | undefined;
|
|
1611
|
-
components?: {
|
|
1612
|
-
baseline: {
|
|
1613
|
-
id?: string | undefined;
|
|
1614
|
-
};
|
|
1615
|
-
variants: {
|
|
1616
|
-
id?: string | undefined;
|
|
1617
|
-
hidden?: boolean | undefined;
|
|
1618
|
-
}[];
|
|
1619
|
-
}[] | undefined;
|
|
1620
|
-
} | null | undefined;
|
|
1621
|
-
nt_variants?: {
|
|
1622
1576
|
metadata?: {
|
|
1623
1577
|
tags: {
|
|
1624
1578
|
sys: {
|
|
@@ -1628,7 +1582,10 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1628
1582
|
};
|
|
1629
1583
|
}[];
|
|
1630
1584
|
} | undefined;
|
|
1585
|
+
} | null | undefined;
|
|
1586
|
+
nt_variants?: {
|
|
1631
1587
|
sys: {
|
|
1588
|
+
id: string;
|
|
1632
1589
|
type?: string | undefined;
|
|
1633
1590
|
createdAt?: string | undefined;
|
|
1634
1591
|
updatedAt?: string | undefined;
|
|
@@ -1655,13 +1612,28 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{},
|
|
|
1655
1612
|
linkType: string;
|
|
1656
1613
|
};
|
|
1657
1614
|
} | undefined;
|
|
1658
|
-
id: string;
|
|
1659
1615
|
};
|
|
1660
1616
|
fields: {};
|
|
1617
|
+
metadata?: {
|
|
1618
|
+
tags: {
|
|
1619
|
+
sys: {
|
|
1620
|
+
type: string;
|
|
1621
|
+
id: string;
|
|
1622
|
+
linkType: string;
|
|
1623
|
+
};
|
|
1624
|
+
}[];
|
|
1625
|
+
} | undefined;
|
|
1661
1626
|
}[] | undefined;
|
|
1662
|
-
nt_name: string;
|
|
1663
|
-
nt_type: string;
|
|
1664
1627
|
};
|
|
1628
|
+
metadata?: {
|
|
1629
|
+
tags: {
|
|
1630
|
+
sys: {
|
|
1631
|
+
type: string;
|
|
1632
|
+
id: string;
|
|
1633
|
+
linkType: string;
|
|
1634
|
+
};
|
|
1635
|
+
}[];
|
|
1636
|
+
} | undefined;
|
|
1665
1637
|
}[];
|
|
1666
1638
|
}>;
|
|
1667
1639
|
export type BaselineWithExperiencesEntryFieldsLike<VariantFields extends EntryFields = EntryFields> = Omit<z.input<typeof BaselineWithExperiencesEntryFields>, 'nt_experiences'> & {
|
|
@@ -1670,7 +1642,7 @@ export type BaselineWithExperiencesEntryFieldsLike<VariantFields extends EntryFi
|
|
|
1670
1642
|
export type BaselineWithExperiencesEntryFields<VariantFields extends EntryFields = EntryFields> = Omit<z.infer<typeof BaselineWithExperiencesEntryFields>, 'nt_experiences'> & {
|
|
1671
1643
|
nt_experiences: ExperienceEntryLike<VariantFields>[];
|
|
1672
1644
|
};
|
|
1673
|
-
export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<
|
|
1645
|
+
export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<{
|
|
1674
1646
|
sys: z.ZodObject<{
|
|
1675
1647
|
type: z.ZodOptional<z.ZodString>;
|
|
1676
1648
|
id: z.ZodString;
|
|
@@ -1679,13 +1651,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
1679
1651
|
locale: z.ZodOptional<z.ZodString>;
|
|
1680
1652
|
revision: z.ZodOptional<z.ZodNumber>;
|
|
1681
1653
|
space: z.ZodOptional<z.ZodObject<{
|
|
1682
|
-
sys: z.ZodObject<
|
|
1654
|
+
sys: z.ZodObject<{
|
|
1683
1655
|
type: z.ZodString;
|
|
1684
|
-
linkType: z.ZodString;
|
|
1685
1656
|
id: z.ZodString;
|
|
1686
|
-
}, {
|
|
1687
1657
|
linkType: z.ZodString;
|
|
1688
|
-
}
|
|
1658
|
+
}, "strip", z.ZodTypeAny, {
|
|
1689
1659
|
type: string;
|
|
1690
1660
|
id: string;
|
|
1691
1661
|
linkType: string;
|
|
@@ -1708,13 +1678,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
1708
1678
|
};
|
|
1709
1679
|
}>>;
|
|
1710
1680
|
environment: z.ZodOptional<z.ZodObject<{
|
|
1711
|
-
sys: z.ZodObject<
|
|
1681
|
+
sys: z.ZodObject<{
|
|
1712
1682
|
type: z.ZodString;
|
|
1713
|
-
linkType: z.ZodString;
|
|
1714
1683
|
id: z.ZodString;
|
|
1715
|
-
}, {
|
|
1716
1684
|
linkType: z.ZodString;
|
|
1717
|
-
}
|
|
1685
|
+
}, "strip", z.ZodTypeAny, {
|
|
1718
1686
|
type: string;
|
|
1719
1687
|
id: string;
|
|
1720
1688
|
linkType: string;
|
|
@@ -1737,13 +1705,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
1737
1705
|
};
|
|
1738
1706
|
}>>;
|
|
1739
1707
|
contentType: z.ZodOptional<z.ZodObject<{
|
|
1740
|
-
sys: z.ZodObject<
|
|
1708
|
+
sys: z.ZodObject<{
|
|
1741
1709
|
type: z.ZodString;
|
|
1742
|
-
linkType: z.ZodString;
|
|
1743
1710
|
id: z.ZodString;
|
|
1744
|
-
}, {
|
|
1745
1711
|
linkType: z.ZodString;
|
|
1746
|
-
}
|
|
1712
|
+
}, "strip", z.ZodTypeAny, {
|
|
1747
1713
|
type: string;
|
|
1748
1714
|
id: string;
|
|
1749
1715
|
linkType: string;
|
|
@@ -1766,6 +1732,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
1766
1732
|
};
|
|
1767
1733
|
}>>;
|
|
1768
1734
|
}, "strip", z.ZodTypeAny, {
|
|
1735
|
+
id: string;
|
|
1769
1736
|
type?: string | undefined;
|
|
1770
1737
|
createdAt?: string | undefined;
|
|
1771
1738
|
updatedAt?: string | undefined;
|
|
@@ -1792,8 +1759,8 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
1792
1759
|
linkType: string;
|
|
1793
1760
|
};
|
|
1794
1761
|
} | undefined;
|
|
1795
|
-
id: string;
|
|
1796
1762
|
}, {
|
|
1763
|
+
id: string;
|
|
1797
1764
|
type?: string | undefined;
|
|
1798
1765
|
createdAt?: string | undefined;
|
|
1799
1766
|
updatedAt?: string | undefined;
|
|
@@ -1820,18 +1787,14 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
1820
1787
|
linkType: string;
|
|
1821
1788
|
};
|
|
1822
1789
|
} | undefined;
|
|
1823
|
-
id: string;
|
|
1824
1790
|
}>;
|
|
1825
|
-
fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
|
|
1826
1791
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
1827
1792
|
tags: z.ZodArray<z.ZodObject<{
|
|
1828
|
-
sys: z.ZodObject<
|
|
1793
|
+
sys: z.ZodObject<{
|
|
1829
1794
|
type: z.ZodString;
|
|
1830
|
-
linkType: z.ZodString;
|
|
1831
1795
|
id: z.ZodString;
|
|
1832
|
-
}, {
|
|
1833
1796
|
linkType: z.ZodString;
|
|
1834
|
-
}
|
|
1797
|
+
}, "strip", z.ZodTypeAny, {
|
|
1835
1798
|
type: string;
|
|
1836
1799
|
id: string;
|
|
1837
1800
|
linkType: string;
|
|
@@ -1870,9 +1833,8 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
1870
1833
|
};
|
|
1871
1834
|
}[];
|
|
1872
1835
|
}>>;
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
nt_experiences: z.ZodArray<z.ZodObject<z.extendShape<{
|
|
1836
|
+
fields: z.ZodObject<{
|
|
1837
|
+
nt_experiences: z.ZodArray<z.ZodObject<{
|
|
1876
1838
|
sys: z.ZodObject<{
|
|
1877
1839
|
type: z.ZodOptional<z.ZodString>;
|
|
1878
1840
|
id: z.ZodString;
|
|
@@ -1881,13 +1843,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
1881
1843
|
locale: z.ZodOptional<z.ZodString>;
|
|
1882
1844
|
revision: z.ZodOptional<z.ZodNumber>;
|
|
1883
1845
|
space: z.ZodOptional<z.ZodObject<{
|
|
1884
|
-
sys: z.ZodObject<
|
|
1846
|
+
sys: z.ZodObject<{
|
|
1885
1847
|
type: z.ZodString;
|
|
1886
|
-
linkType: z.ZodString;
|
|
1887
1848
|
id: z.ZodString;
|
|
1888
|
-
}, {
|
|
1889
1849
|
linkType: z.ZodString;
|
|
1890
|
-
}
|
|
1850
|
+
}, "strip", z.ZodTypeAny, {
|
|
1891
1851
|
type: string;
|
|
1892
1852
|
id: string;
|
|
1893
1853
|
linkType: string;
|
|
@@ -1910,13 +1870,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
1910
1870
|
};
|
|
1911
1871
|
}>>;
|
|
1912
1872
|
environment: z.ZodOptional<z.ZodObject<{
|
|
1913
|
-
sys: z.ZodObject<
|
|
1873
|
+
sys: z.ZodObject<{
|
|
1914
1874
|
type: z.ZodString;
|
|
1915
|
-
linkType: z.ZodString;
|
|
1916
1875
|
id: z.ZodString;
|
|
1917
|
-
}, {
|
|
1918
1876
|
linkType: z.ZodString;
|
|
1919
|
-
}
|
|
1877
|
+
}, "strip", z.ZodTypeAny, {
|
|
1920
1878
|
type: string;
|
|
1921
1879
|
id: string;
|
|
1922
1880
|
linkType: string;
|
|
@@ -1939,13 +1897,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
1939
1897
|
};
|
|
1940
1898
|
}>>;
|
|
1941
1899
|
contentType: z.ZodOptional<z.ZodObject<{
|
|
1942
|
-
sys: z.ZodObject<
|
|
1900
|
+
sys: z.ZodObject<{
|
|
1943
1901
|
type: z.ZodString;
|
|
1944
|
-
linkType: z.ZodString;
|
|
1945
1902
|
id: z.ZodString;
|
|
1946
|
-
}, {
|
|
1947
1903
|
linkType: z.ZodString;
|
|
1948
|
-
}
|
|
1904
|
+
}, "strip", z.ZodTypeAny, {
|
|
1949
1905
|
type: string;
|
|
1950
1906
|
id: string;
|
|
1951
1907
|
linkType: string;
|
|
@@ -1968,6 +1924,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
1968
1924
|
};
|
|
1969
1925
|
}>>;
|
|
1970
1926
|
}, "strip", z.ZodTypeAny, {
|
|
1927
|
+
id: string;
|
|
1971
1928
|
type?: string | undefined;
|
|
1972
1929
|
createdAt?: string | undefined;
|
|
1973
1930
|
updatedAt?: string | undefined;
|
|
@@ -1994,8 +1951,8 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
1994
1951
|
linkType: string;
|
|
1995
1952
|
};
|
|
1996
1953
|
} | undefined;
|
|
1997
|
-
id: string;
|
|
1998
1954
|
}, {
|
|
1955
|
+
id: string;
|
|
1999
1956
|
type?: string | undefined;
|
|
2000
1957
|
createdAt?: string | undefined;
|
|
2001
1958
|
updatedAt?: string | undefined;
|
|
@@ -2022,18 +1979,14 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2022
1979
|
linkType: string;
|
|
2023
1980
|
};
|
|
2024
1981
|
} | undefined;
|
|
2025
|
-
id: string;
|
|
2026
1982
|
}>;
|
|
2027
|
-
fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
|
|
2028
1983
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
2029
1984
|
tags: z.ZodArray<z.ZodObject<{
|
|
2030
|
-
sys: z.ZodObject<
|
|
1985
|
+
sys: z.ZodObject<{
|
|
2031
1986
|
type: z.ZodString;
|
|
2032
|
-
linkType: z.ZodString;
|
|
2033
1987
|
id: z.ZodString;
|
|
2034
|
-
}, {
|
|
2035
1988
|
linkType: z.ZodString;
|
|
2036
|
-
}
|
|
1989
|
+
}, "strip", z.ZodTypeAny, {
|
|
2037
1990
|
type: string;
|
|
2038
1991
|
id: string;
|
|
2039
1992
|
linkType: string;
|
|
@@ -2072,7 +2025,6 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2072
2025
|
};
|
|
2073
2026
|
}[];
|
|
2074
2027
|
}>>;
|
|
2075
|
-
}, {
|
|
2076
2028
|
fields: z.ZodObject<{
|
|
2077
2029
|
nt_name: z.ZodString;
|
|
2078
2030
|
nt_description: z.ZodOptional<z.ZodString>;
|
|
@@ -2164,7 +2116,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2164
2116
|
}[];
|
|
2165
2117
|
}[] | undefined;
|
|
2166
2118
|
} | null | undefined>;
|
|
2167
|
-
nt_audience: z.ZodNullable<z.ZodOptional<z.ZodObject<
|
|
2119
|
+
nt_audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2168
2120
|
sys: z.ZodObject<{
|
|
2169
2121
|
type: z.ZodOptional<z.ZodString>;
|
|
2170
2122
|
id: z.ZodString;
|
|
@@ -2173,13 +2125,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2173
2125
|
locale: z.ZodOptional<z.ZodString>;
|
|
2174
2126
|
revision: z.ZodOptional<z.ZodNumber>;
|
|
2175
2127
|
space: z.ZodOptional<z.ZodObject<{
|
|
2176
|
-
sys: z.ZodObject<
|
|
2128
|
+
sys: z.ZodObject<{
|
|
2177
2129
|
type: z.ZodString;
|
|
2178
|
-
linkType: z.ZodString;
|
|
2179
2130
|
id: z.ZodString;
|
|
2180
|
-
}, {
|
|
2181
2131
|
linkType: z.ZodString;
|
|
2182
|
-
}
|
|
2132
|
+
}, "strip", z.ZodTypeAny, {
|
|
2183
2133
|
type: string;
|
|
2184
2134
|
id: string;
|
|
2185
2135
|
linkType: string;
|
|
@@ -2202,13 +2152,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2202
2152
|
};
|
|
2203
2153
|
}>>;
|
|
2204
2154
|
environment: z.ZodOptional<z.ZodObject<{
|
|
2205
|
-
sys: z.ZodObject<
|
|
2155
|
+
sys: z.ZodObject<{
|
|
2206
2156
|
type: z.ZodString;
|
|
2207
|
-
linkType: z.ZodString;
|
|
2208
2157
|
id: z.ZodString;
|
|
2209
|
-
}, {
|
|
2210
2158
|
linkType: z.ZodString;
|
|
2211
|
-
}
|
|
2159
|
+
}, "strip", z.ZodTypeAny, {
|
|
2212
2160
|
type: string;
|
|
2213
2161
|
id: string;
|
|
2214
2162
|
linkType: string;
|
|
@@ -2231,13 +2179,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2231
2179
|
};
|
|
2232
2180
|
}>>;
|
|
2233
2181
|
contentType: z.ZodOptional<z.ZodObject<{
|
|
2234
|
-
sys: z.ZodObject<
|
|
2182
|
+
sys: z.ZodObject<{
|
|
2235
2183
|
type: z.ZodString;
|
|
2236
|
-
linkType: z.ZodString;
|
|
2237
2184
|
id: z.ZodString;
|
|
2238
|
-
}, {
|
|
2239
2185
|
linkType: z.ZodString;
|
|
2240
|
-
}
|
|
2186
|
+
}, "strip", z.ZodTypeAny, {
|
|
2241
2187
|
type: string;
|
|
2242
2188
|
id: string;
|
|
2243
2189
|
linkType: string;
|
|
@@ -2260,6 +2206,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2260
2206
|
};
|
|
2261
2207
|
}>>;
|
|
2262
2208
|
}, "strip", z.ZodTypeAny, {
|
|
2209
|
+
id: string;
|
|
2263
2210
|
type?: string | undefined;
|
|
2264
2211
|
createdAt?: string | undefined;
|
|
2265
2212
|
updatedAt?: string | undefined;
|
|
@@ -2286,8 +2233,8 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2286
2233
|
linkType: string;
|
|
2287
2234
|
};
|
|
2288
2235
|
} | undefined;
|
|
2289
|
-
id: string;
|
|
2290
2236
|
}, {
|
|
2237
|
+
id: string;
|
|
2291
2238
|
type?: string | undefined;
|
|
2292
2239
|
createdAt?: string | undefined;
|
|
2293
2240
|
updatedAt?: string | undefined;
|
|
@@ -2314,18 +2261,14 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2314
2261
|
linkType: string;
|
|
2315
2262
|
};
|
|
2316
2263
|
} | undefined;
|
|
2317
|
-
id: string;
|
|
2318
2264
|
}>;
|
|
2319
|
-
fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
|
|
2320
2265
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
2321
2266
|
tags: z.ZodArray<z.ZodObject<{
|
|
2322
|
-
sys: z.ZodObject<
|
|
2267
|
+
sys: z.ZodObject<{
|
|
2323
2268
|
type: z.ZodString;
|
|
2324
|
-
linkType: z.ZodString;
|
|
2325
2269
|
id: z.ZodString;
|
|
2326
|
-
}, {
|
|
2327
2270
|
linkType: z.ZodString;
|
|
2328
|
-
}
|
|
2271
|
+
}, "strip", z.ZodTypeAny, {
|
|
2329
2272
|
type: string;
|
|
2330
2273
|
id: string;
|
|
2331
2274
|
linkType: string;
|
|
@@ -2364,31 +2307,22 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2364
2307
|
};
|
|
2365
2308
|
}[];
|
|
2366
2309
|
}>>;
|
|
2367
|
-
|
|
2368
|
-
fields: z.ZodObject<z.extendShape<{}, {
|
|
2310
|
+
fields: z.ZodObject<{
|
|
2369
2311
|
nt_name: z.ZodString;
|
|
2370
2312
|
nt_description: z.ZodOptional<z.ZodString>;
|
|
2371
2313
|
nt_audience_id: z.ZodString;
|
|
2372
|
-
}
|
|
2373
|
-
nt_description?: string | undefined;
|
|
2314
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2374
2315
|
nt_name: string;
|
|
2375
2316
|
nt_audience_id: string;
|
|
2376
|
-
}, {
|
|
2377
2317
|
nt_description?: string | undefined;
|
|
2318
|
+
}, {
|
|
2378
2319
|
nt_name: string;
|
|
2379
2320
|
nt_audience_id: string;
|
|
2321
|
+
nt_description?: string | undefined;
|
|
2380
2322
|
}>;
|
|
2381
|
-
}
|
|
2382
|
-
metadata?: {
|
|
2383
|
-
tags: {
|
|
2384
|
-
sys: {
|
|
2385
|
-
type: string;
|
|
2386
|
-
id: string;
|
|
2387
|
-
linkType: string;
|
|
2388
|
-
};
|
|
2389
|
-
}[];
|
|
2390
|
-
} | undefined;
|
|
2323
|
+
}, "strip", z.ZodTypeAny, {
|
|
2391
2324
|
sys: {
|
|
2325
|
+
id: string;
|
|
2392
2326
|
type?: string | undefined;
|
|
2393
2327
|
createdAt?: string | undefined;
|
|
2394
2328
|
updatedAt?: string | undefined;
|
|
@@ -2415,14 +2349,12 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2415
2349
|
linkType: string;
|
|
2416
2350
|
};
|
|
2417
2351
|
} | undefined;
|
|
2418
|
-
id: string;
|
|
2419
2352
|
};
|
|
2420
2353
|
fields: {
|
|
2421
|
-
nt_description?: string | undefined;
|
|
2422
2354
|
nt_name: string;
|
|
2423
2355
|
nt_audience_id: string;
|
|
2356
|
+
nt_description?: string | undefined;
|
|
2424
2357
|
};
|
|
2425
|
-
}, {
|
|
2426
2358
|
metadata?: {
|
|
2427
2359
|
tags: {
|
|
2428
2360
|
sys: {
|
|
@@ -2432,7 +2364,9 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2432
2364
|
};
|
|
2433
2365
|
}[];
|
|
2434
2366
|
} | undefined;
|
|
2367
|
+
}, {
|
|
2435
2368
|
sys: {
|
|
2369
|
+
id: string;
|
|
2436
2370
|
type?: string | undefined;
|
|
2437
2371
|
createdAt?: string | undefined;
|
|
2438
2372
|
updatedAt?: string | undefined;
|
|
@@ -2459,13 +2393,21 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2459
2393
|
linkType: string;
|
|
2460
2394
|
};
|
|
2461
2395
|
} | undefined;
|
|
2462
|
-
id: string;
|
|
2463
2396
|
};
|
|
2464
2397
|
fields: {
|
|
2465
|
-
nt_description?: string | undefined;
|
|
2466
2398
|
nt_name: string;
|
|
2467
2399
|
nt_audience_id: string;
|
|
2400
|
+
nt_description?: string | undefined;
|
|
2468
2401
|
};
|
|
2402
|
+
metadata?: {
|
|
2403
|
+
tags: {
|
|
2404
|
+
sys: {
|
|
2405
|
+
type: string;
|
|
2406
|
+
id: string;
|
|
2407
|
+
linkType: string;
|
|
2408
|
+
};
|
|
2409
|
+
}[];
|
|
2410
|
+
} | undefined;
|
|
2469
2411
|
}>>>;
|
|
2470
2412
|
nt_variants: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2471
2413
|
sys: z.ZodObject<{
|
|
@@ -2476,13 +2418,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2476
2418
|
locale: z.ZodOptional<z.ZodString>;
|
|
2477
2419
|
revision: z.ZodOptional<z.ZodNumber>;
|
|
2478
2420
|
space: z.ZodOptional<z.ZodObject<{
|
|
2479
|
-
sys: z.ZodObject<
|
|
2421
|
+
sys: z.ZodObject<{
|
|
2480
2422
|
type: z.ZodString;
|
|
2481
|
-
linkType: z.ZodString;
|
|
2482
2423
|
id: z.ZodString;
|
|
2483
|
-
}, {
|
|
2484
2424
|
linkType: z.ZodString;
|
|
2485
|
-
}
|
|
2425
|
+
}, "strip", z.ZodTypeAny, {
|
|
2486
2426
|
type: string;
|
|
2487
2427
|
id: string;
|
|
2488
2428
|
linkType: string;
|
|
@@ -2505,13 +2445,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2505
2445
|
};
|
|
2506
2446
|
}>>;
|
|
2507
2447
|
environment: z.ZodOptional<z.ZodObject<{
|
|
2508
|
-
sys: z.ZodObject<
|
|
2448
|
+
sys: z.ZodObject<{
|
|
2509
2449
|
type: z.ZodString;
|
|
2510
|
-
linkType: z.ZodString;
|
|
2511
2450
|
id: z.ZodString;
|
|
2512
|
-
}, {
|
|
2513
2451
|
linkType: z.ZodString;
|
|
2514
|
-
}
|
|
2452
|
+
}, "strip", z.ZodTypeAny, {
|
|
2515
2453
|
type: string;
|
|
2516
2454
|
id: string;
|
|
2517
2455
|
linkType: string;
|
|
@@ -2534,13 +2472,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2534
2472
|
};
|
|
2535
2473
|
}>>;
|
|
2536
2474
|
contentType: z.ZodOptional<z.ZodObject<{
|
|
2537
|
-
sys: z.ZodObject<
|
|
2475
|
+
sys: z.ZodObject<{
|
|
2538
2476
|
type: z.ZodString;
|
|
2539
|
-
linkType: z.ZodString;
|
|
2540
2477
|
id: z.ZodString;
|
|
2541
|
-
}, {
|
|
2542
2478
|
linkType: z.ZodString;
|
|
2543
|
-
}
|
|
2479
|
+
}, "strip", z.ZodTypeAny, {
|
|
2544
2480
|
type: string;
|
|
2545
2481
|
id: string;
|
|
2546
2482
|
linkType: string;
|
|
@@ -2563,6 +2499,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2563
2499
|
};
|
|
2564
2500
|
}>>;
|
|
2565
2501
|
}, "strip", z.ZodTypeAny, {
|
|
2502
|
+
id: string;
|
|
2566
2503
|
type?: string | undefined;
|
|
2567
2504
|
createdAt?: string | undefined;
|
|
2568
2505
|
updatedAt?: string | undefined;
|
|
@@ -2589,8 +2526,8 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2589
2526
|
linkType: string;
|
|
2590
2527
|
};
|
|
2591
2528
|
} | undefined;
|
|
2592
|
-
id: string;
|
|
2593
2529
|
}, {
|
|
2530
|
+
id: string;
|
|
2594
2531
|
type?: string | undefined;
|
|
2595
2532
|
createdAt?: string | undefined;
|
|
2596
2533
|
updatedAt?: string | undefined;
|
|
@@ -2617,18 +2554,15 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2617
2554
|
linkType: string;
|
|
2618
2555
|
};
|
|
2619
2556
|
} | undefined;
|
|
2620
|
-
id: string;
|
|
2621
2557
|
}>;
|
|
2622
|
-
fields: z.ZodObject<{},
|
|
2558
|
+
fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
|
|
2623
2559
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
2624
2560
|
tags: z.ZodArray<z.ZodObject<{
|
|
2625
|
-
sys: z.ZodObject<
|
|
2561
|
+
sys: z.ZodObject<{
|
|
2626
2562
|
type: z.ZodString;
|
|
2627
|
-
linkType: z.ZodString;
|
|
2628
2563
|
id: z.ZodString;
|
|
2629
|
-
}, {
|
|
2630
2564
|
linkType: z.ZodString;
|
|
2631
|
-
}
|
|
2565
|
+
}, "strip", z.ZodTypeAny, {
|
|
2632
2566
|
type: string;
|
|
2633
2567
|
id: string;
|
|
2634
2568
|
linkType: string;
|
|
@@ -2668,16 +2602,8 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2668
2602
|
}[];
|
|
2669
2603
|
}>>;
|
|
2670
2604
|
}, "strip", z.ZodTypeAny, {
|
|
2671
|
-
metadata?: {
|
|
2672
|
-
tags: {
|
|
2673
|
-
sys: {
|
|
2674
|
-
type: string;
|
|
2675
|
-
id: string;
|
|
2676
|
-
linkType: string;
|
|
2677
|
-
};
|
|
2678
|
-
}[];
|
|
2679
|
-
} | undefined;
|
|
2680
2605
|
sys: {
|
|
2606
|
+
id: string;
|
|
2681
2607
|
type?: string | undefined;
|
|
2682
2608
|
createdAt?: string | undefined;
|
|
2683
2609
|
updatedAt?: string | undefined;
|
|
@@ -2704,10 +2630,8 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2704
2630
|
linkType: string;
|
|
2705
2631
|
};
|
|
2706
2632
|
} | undefined;
|
|
2707
|
-
id: string;
|
|
2708
2633
|
};
|
|
2709
2634
|
fields: {};
|
|
2710
|
-
}, {
|
|
2711
2635
|
metadata?: {
|
|
2712
2636
|
tags: {
|
|
2713
2637
|
sys: {
|
|
@@ -2717,7 +2641,9 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2717
2641
|
};
|
|
2718
2642
|
}[];
|
|
2719
2643
|
} | undefined;
|
|
2644
|
+
}, {
|
|
2720
2645
|
sys: {
|
|
2646
|
+
id: string;
|
|
2721
2647
|
type?: string | undefined;
|
|
2722
2648
|
createdAt?: string | undefined;
|
|
2723
2649
|
updatedAt?: string | undefined;
|
|
@@ -2744,12 +2670,8 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2744
2670
|
linkType: string;
|
|
2745
2671
|
};
|
|
2746
2672
|
} | undefined;
|
|
2747
|
-
id: string;
|
|
2748
2673
|
};
|
|
2749
2674
|
fields: {};
|
|
2750
|
-
}>, "many">>;
|
|
2751
|
-
}, "strip", z.ZodTypeAny, {
|
|
2752
|
-
nt_audience?: {
|
|
2753
2675
|
metadata?: {
|
|
2754
2676
|
tags: {
|
|
2755
2677
|
sys: {
|
|
@@ -2759,7 +2681,27 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2759
2681
|
};
|
|
2760
2682
|
}[];
|
|
2761
2683
|
} | undefined;
|
|
2684
|
+
}>, "many">>;
|
|
2685
|
+
}, "strip", z.ZodTypeAny, {
|
|
2686
|
+
nt_name: string;
|
|
2687
|
+
nt_type: string;
|
|
2688
|
+
nt_config: {
|
|
2689
|
+
distribution: number[];
|
|
2690
|
+
traffic: number;
|
|
2691
|
+
components: {
|
|
2692
|
+
baseline: {
|
|
2693
|
+
id: string;
|
|
2694
|
+
};
|
|
2695
|
+
variants: {
|
|
2696
|
+
id: string;
|
|
2697
|
+
hidden: boolean;
|
|
2698
|
+
}[];
|
|
2699
|
+
}[];
|
|
2700
|
+
};
|
|
2701
|
+
nt_description?: string | undefined;
|
|
2702
|
+
nt_audience?: {
|
|
2762
2703
|
sys: {
|
|
2704
|
+
id: string;
|
|
2763
2705
|
type?: string | undefined;
|
|
2764
2706
|
createdAt?: string | undefined;
|
|
2765
2707
|
updatedAt?: string | undefined;
|
|
@@ -2786,16 +2728,12 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2786
2728
|
linkType: string;
|
|
2787
2729
|
};
|
|
2788
2730
|
} | undefined;
|
|
2789
|
-
id: string;
|
|
2790
2731
|
};
|
|
2791
2732
|
fields: {
|
|
2792
|
-
nt_description?: string | undefined;
|
|
2793
2733
|
nt_name: string;
|
|
2794
2734
|
nt_audience_id: string;
|
|
2735
|
+
nt_description?: string | undefined;
|
|
2795
2736
|
};
|
|
2796
|
-
} | null | undefined;
|
|
2797
|
-
nt_description?: string | undefined;
|
|
2798
|
-
nt_variants?: {
|
|
2799
2737
|
metadata?: {
|
|
2800
2738
|
tags: {
|
|
2801
2739
|
sys: {
|
|
@@ -2805,7 +2743,10 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2805
2743
|
};
|
|
2806
2744
|
}[];
|
|
2807
2745
|
} | undefined;
|
|
2746
|
+
} | null | undefined;
|
|
2747
|
+
nt_variants?: {
|
|
2808
2748
|
sys: {
|
|
2749
|
+
id: string;
|
|
2809
2750
|
type?: string | undefined;
|
|
2810
2751
|
createdAt?: string | undefined;
|
|
2811
2752
|
updatedAt?: string | undefined;
|
|
@@ -2832,27 +2773,8 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2832
2773
|
linkType: string;
|
|
2833
2774
|
};
|
|
2834
2775
|
} | undefined;
|
|
2835
|
-
id: string;
|
|
2836
2776
|
};
|
|
2837
2777
|
fields: {};
|
|
2838
|
-
}[] | undefined;
|
|
2839
|
-
nt_name: string;
|
|
2840
|
-
nt_type: string;
|
|
2841
|
-
nt_config: {
|
|
2842
|
-
distribution: number[];
|
|
2843
|
-
traffic: number;
|
|
2844
|
-
components: {
|
|
2845
|
-
baseline: {
|
|
2846
|
-
id: string;
|
|
2847
|
-
};
|
|
2848
|
-
variants: {
|
|
2849
|
-
id: string;
|
|
2850
|
-
hidden: boolean;
|
|
2851
|
-
}[];
|
|
2852
|
-
}[];
|
|
2853
|
-
};
|
|
2854
|
-
}, {
|
|
2855
|
-
nt_audience?: {
|
|
2856
2778
|
metadata?: {
|
|
2857
2779
|
tags: {
|
|
2858
2780
|
sys: {
|
|
@@ -2862,7 +2784,27 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2862
2784
|
};
|
|
2863
2785
|
}[];
|
|
2864
2786
|
} | undefined;
|
|
2787
|
+
}[] | undefined;
|
|
2788
|
+
}, {
|
|
2789
|
+
nt_name: string;
|
|
2790
|
+
nt_type: string;
|
|
2791
|
+
nt_description?: string | undefined;
|
|
2792
|
+
nt_config?: {
|
|
2793
|
+
distribution?: number[] | undefined;
|
|
2794
|
+
traffic?: number | undefined;
|
|
2795
|
+
components?: {
|
|
2796
|
+
baseline: {
|
|
2797
|
+
id?: string | undefined;
|
|
2798
|
+
};
|
|
2799
|
+
variants: {
|
|
2800
|
+
id?: string | undefined;
|
|
2801
|
+
hidden?: boolean | undefined;
|
|
2802
|
+
}[];
|
|
2803
|
+
}[] | undefined;
|
|
2804
|
+
} | null | undefined;
|
|
2805
|
+
nt_audience?: {
|
|
2865
2806
|
sys: {
|
|
2807
|
+
id: string;
|
|
2866
2808
|
type?: string | undefined;
|
|
2867
2809
|
createdAt?: string | undefined;
|
|
2868
2810
|
updatedAt?: string | undefined;
|
|
@@ -2889,29 +2831,12 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2889
2831
|
linkType: string;
|
|
2890
2832
|
};
|
|
2891
2833
|
} | undefined;
|
|
2892
|
-
id: string;
|
|
2893
2834
|
};
|
|
2894
2835
|
fields: {
|
|
2895
|
-
nt_description?: string | undefined;
|
|
2896
2836
|
nt_name: string;
|
|
2897
2837
|
nt_audience_id: string;
|
|
2838
|
+
nt_description?: string | undefined;
|
|
2898
2839
|
};
|
|
2899
|
-
} | null | undefined;
|
|
2900
|
-
nt_description?: string | undefined;
|
|
2901
|
-
nt_config?: {
|
|
2902
|
-
distribution?: number[] | undefined;
|
|
2903
|
-
traffic?: number | undefined;
|
|
2904
|
-
components?: {
|
|
2905
|
-
baseline: {
|
|
2906
|
-
id?: string | undefined;
|
|
2907
|
-
};
|
|
2908
|
-
variants: {
|
|
2909
|
-
id?: string | undefined;
|
|
2910
|
-
hidden?: boolean | undefined;
|
|
2911
|
-
}[];
|
|
2912
|
-
}[] | undefined;
|
|
2913
|
-
} | null | undefined;
|
|
2914
|
-
nt_variants?: {
|
|
2915
2840
|
metadata?: {
|
|
2916
2841
|
tags: {
|
|
2917
2842
|
sys: {
|
|
@@ -2921,7 +2846,10 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2921
2846
|
};
|
|
2922
2847
|
}[];
|
|
2923
2848
|
} | undefined;
|
|
2849
|
+
} | null | undefined;
|
|
2850
|
+
nt_variants?: {
|
|
2924
2851
|
sys: {
|
|
2852
|
+
id: string;
|
|
2925
2853
|
type?: string | undefined;
|
|
2926
2854
|
createdAt?: string | undefined;
|
|
2927
2855
|
updatedAt?: string | undefined;
|
|
@@ -2948,24 +2876,22 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2948
2876
|
linkType: string;
|
|
2949
2877
|
};
|
|
2950
2878
|
} | undefined;
|
|
2951
|
-
id: string;
|
|
2952
2879
|
};
|
|
2953
2880
|
fields: {};
|
|
2881
|
+
metadata?: {
|
|
2882
|
+
tags: {
|
|
2883
|
+
sys: {
|
|
2884
|
+
type: string;
|
|
2885
|
+
id: string;
|
|
2886
|
+
linkType: string;
|
|
2887
|
+
};
|
|
2888
|
+
}[];
|
|
2889
|
+
} | undefined;
|
|
2954
2890
|
}[] | undefined;
|
|
2955
|
-
nt_name: string;
|
|
2956
|
-
nt_type: string;
|
|
2957
2891
|
}>;
|
|
2958
|
-
}
|
|
2959
|
-
metadata?: {
|
|
2960
|
-
tags: {
|
|
2961
|
-
sys: {
|
|
2962
|
-
type: string;
|
|
2963
|
-
id: string;
|
|
2964
|
-
linkType: string;
|
|
2965
|
-
};
|
|
2966
|
-
}[];
|
|
2967
|
-
} | undefined;
|
|
2892
|
+
}, "strip", z.ZodTypeAny, {
|
|
2968
2893
|
sys: {
|
|
2894
|
+
id: string;
|
|
2969
2895
|
type?: string | undefined;
|
|
2970
2896
|
createdAt?: string | undefined;
|
|
2971
2897
|
updatedAt?: string | undefined;
|
|
@@ -2992,20 +2918,27 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
2992
2918
|
linkType: string;
|
|
2993
2919
|
};
|
|
2994
2920
|
} | undefined;
|
|
2995
|
-
id: string;
|
|
2996
2921
|
};
|
|
2997
2922
|
fields: {
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
2923
|
+
nt_name: string;
|
|
2924
|
+
nt_type: string;
|
|
2925
|
+
nt_config: {
|
|
2926
|
+
distribution: number[];
|
|
2927
|
+
traffic: number;
|
|
2928
|
+
components: {
|
|
2929
|
+
baseline: {
|
|
2930
|
+
id: string;
|
|
2931
|
+
};
|
|
2932
|
+
variants: {
|
|
2933
|
+
id: string;
|
|
2934
|
+
hidden: boolean;
|
|
3006
2935
|
}[];
|
|
3007
|
-
}
|
|
2936
|
+
}[];
|
|
2937
|
+
};
|
|
2938
|
+
nt_description?: string | undefined;
|
|
2939
|
+
nt_audience?: {
|
|
3008
2940
|
sys: {
|
|
2941
|
+
id: string;
|
|
3009
2942
|
type?: string | undefined;
|
|
3010
2943
|
createdAt?: string | undefined;
|
|
3011
2944
|
updatedAt?: string | undefined;
|
|
@@ -3032,16 +2965,12 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3032
2965
|
linkType: string;
|
|
3033
2966
|
};
|
|
3034
2967
|
} | undefined;
|
|
3035
|
-
id: string;
|
|
3036
2968
|
};
|
|
3037
2969
|
fields: {
|
|
3038
|
-
nt_description?: string | undefined;
|
|
3039
2970
|
nt_name: string;
|
|
3040
2971
|
nt_audience_id: string;
|
|
2972
|
+
nt_description?: string | undefined;
|
|
3041
2973
|
};
|
|
3042
|
-
} | null | undefined;
|
|
3043
|
-
nt_description?: string | undefined;
|
|
3044
|
-
nt_variants?: {
|
|
3045
2974
|
metadata?: {
|
|
3046
2975
|
tags: {
|
|
3047
2976
|
sys: {
|
|
@@ -3051,7 +2980,10 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3051
2980
|
};
|
|
3052
2981
|
}[];
|
|
3053
2982
|
} | undefined;
|
|
2983
|
+
} | null | undefined;
|
|
2984
|
+
nt_variants?: {
|
|
3054
2985
|
sys: {
|
|
2986
|
+
id: string;
|
|
3055
2987
|
type?: string | undefined;
|
|
3056
2988
|
createdAt?: string | undefined;
|
|
3057
2989
|
updatedAt?: string | undefined;
|
|
@@ -3078,27 +3010,19 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3078
3010
|
linkType: string;
|
|
3079
3011
|
};
|
|
3080
3012
|
} | undefined;
|
|
3081
|
-
id: string;
|
|
3082
3013
|
};
|
|
3083
3014
|
fields: {};
|
|
3015
|
+
metadata?: {
|
|
3016
|
+
tags: {
|
|
3017
|
+
sys: {
|
|
3018
|
+
type: string;
|
|
3019
|
+
id: string;
|
|
3020
|
+
linkType: string;
|
|
3021
|
+
};
|
|
3022
|
+
}[];
|
|
3023
|
+
} | undefined;
|
|
3084
3024
|
}[] | undefined;
|
|
3085
|
-
nt_name: string;
|
|
3086
|
-
nt_type: string;
|
|
3087
|
-
nt_config: {
|
|
3088
|
-
distribution: number[];
|
|
3089
|
-
traffic: number;
|
|
3090
|
-
components: {
|
|
3091
|
-
baseline: {
|
|
3092
|
-
id: string;
|
|
3093
|
-
};
|
|
3094
|
-
variants: {
|
|
3095
|
-
id: string;
|
|
3096
|
-
hidden: boolean;
|
|
3097
|
-
}[];
|
|
3098
|
-
}[];
|
|
3099
|
-
};
|
|
3100
3025
|
};
|
|
3101
|
-
}, {
|
|
3102
3026
|
metadata?: {
|
|
3103
3027
|
tags: {
|
|
3104
3028
|
sys: {
|
|
@@ -3108,7 +3032,9 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3108
3032
|
};
|
|
3109
3033
|
}[];
|
|
3110
3034
|
} | undefined;
|
|
3035
|
+
}, {
|
|
3111
3036
|
sys: {
|
|
3037
|
+
id: string;
|
|
3112
3038
|
type?: string | undefined;
|
|
3113
3039
|
createdAt?: string | undefined;
|
|
3114
3040
|
updatedAt?: string | undefined;
|
|
@@ -3135,20 +3061,27 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3135
3061
|
linkType: string;
|
|
3136
3062
|
};
|
|
3137
3063
|
} | undefined;
|
|
3138
|
-
id: string;
|
|
3139
3064
|
};
|
|
3140
3065
|
fields: {
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3066
|
+
nt_name: string;
|
|
3067
|
+
nt_type: string;
|
|
3068
|
+
nt_description?: string | undefined;
|
|
3069
|
+
nt_config?: {
|
|
3070
|
+
distribution?: number[] | undefined;
|
|
3071
|
+
traffic?: number | undefined;
|
|
3072
|
+
components?: {
|
|
3073
|
+
baseline: {
|
|
3074
|
+
id?: string | undefined;
|
|
3075
|
+
};
|
|
3076
|
+
variants: {
|
|
3077
|
+
id?: string | undefined;
|
|
3078
|
+
hidden?: boolean | undefined;
|
|
3149
3079
|
}[];
|
|
3150
|
-
} | undefined;
|
|
3080
|
+
}[] | undefined;
|
|
3081
|
+
} | null | undefined;
|
|
3082
|
+
nt_audience?: {
|
|
3151
3083
|
sys: {
|
|
3084
|
+
id: string;
|
|
3152
3085
|
type?: string | undefined;
|
|
3153
3086
|
createdAt?: string | undefined;
|
|
3154
3087
|
updatedAt?: string | undefined;
|
|
@@ -3175,29 +3108,12 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3175
3108
|
linkType: string;
|
|
3176
3109
|
};
|
|
3177
3110
|
} | undefined;
|
|
3178
|
-
id: string;
|
|
3179
3111
|
};
|
|
3180
3112
|
fields: {
|
|
3181
|
-
nt_description?: string | undefined;
|
|
3182
3113
|
nt_name: string;
|
|
3183
3114
|
nt_audience_id: string;
|
|
3115
|
+
nt_description?: string | undefined;
|
|
3184
3116
|
};
|
|
3185
|
-
} | null | undefined;
|
|
3186
|
-
nt_description?: string | undefined;
|
|
3187
|
-
nt_config?: {
|
|
3188
|
-
distribution?: number[] | undefined;
|
|
3189
|
-
traffic?: number | undefined;
|
|
3190
|
-
components?: {
|
|
3191
|
-
baseline: {
|
|
3192
|
-
id?: string | undefined;
|
|
3193
|
-
};
|
|
3194
|
-
variants: {
|
|
3195
|
-
id?: string | undefined;
|
|
3196
|
-
hidden?: boolean | undefined;
|
|
3197
|
-
}[];
|
|
3198
|
-
}[] | undefined;
|
|
3199
|
-
} | null | undefined;
|
|
3200
|
-
nt_variants?: {
|
|
3201
3117
|
metadata?: {
|
|
3202
3118
|
tags: {
|
|
3203
3119
|
sys: {
|
|
@@ -3207,7 +3123,10 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3207
3123
|
};
|
|
3208
3124
|
}[];
|
|
3209
3125
|
} | undefined;
|
|
3126
|
+
} | null | undefined;
|
|
3127
|
+
nt_variants?: {
|
|
3210
3128
|
sys: {
|
|
3129
|
+
id: string;
|
|
3211
3130
|
type?: string | undefined;
|
|
3212
3131
|
createdAt?: string | undefined;
|
|
3213
3132
|
updatedAt?: string | undefined;
|
|
@@ -3234,16 +3153,19 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3234
3153
|
linkType: string;
|
|
3235
3154
|
};
|
|
3236
3155
|
} | undefined;
|
|
3237
|
-
id: string;
|
|
3238
3156
|
};
|
|
3239
3157
|
fields: {};
|
|
3158
|
+
metadata?: {
|
|
3159
|
+
tags: {
|
|
3160
|
+
sys: {
|
|
3161
|
+
type: string;
|
|
3162
|
+
id: string;
|
|
3163
|
+
linkType: string;
|
|
3164
|
+
};
|
|
3165
|
+
}[];
|
|
3166
|
+
} | undefined;
|
|
3240
3167
|
}[] | undefined;
|
|
3241
|
-
nt_name: string;
|
|
3242
|
-
nt_type: string;
|
|
3243
3168
|
};
|
|
3244
|
-
}>, "many">;
|
|
3245
|
-
}>, "passthrough", z.ZodTypeAny, {
|
|
3246
|
-
nt_experiences: {
|
|
3247
3169
|
metadata?: {
|
|
3248
3170
|
tags: {
|
|
3249
3171
|
sys: {
|
|
@@ -3253,7 +3175,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3253
3175
|
};
|
|
3254
3176
|
}[];
|
|
3255
3177
|
} | undefined;
|
|
3178
|
+
}>, "many">;
|
|
3179
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
3180
|
+
nt_experiences: {
|
|
3256
3181
|
sys: {
|
|
3182
|
+
id: string;
|
|
3257
3183
|
type?: string | undefined;
|
|
3258
3184
|
createdAt?: string | undefined;
|
|
3259
3185
|
updatedAt?: string | undefined;
|
|
@@ -3280,20 +3206,27 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3280
3206
|
linkType: string;
|
|
3281
3207
|
};
|
|
3282
3208
|
} | undefined;
|
|
3283
|
-
id: string;
|
|
3284
3209
|
};
|
|
3285
3210
|
fields: {
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3211
|
+
nt_name: string;
|
|
3212
|
+
nt_type: string;
|
|
3213
|
+
nt_config: {
|
|
3214
|
+
distribution: number[];
|
|
3215
|
+
traffic: number;
|
|
3216
|
+
components: {
|
|
3217
|
+
baseline: {
|
|
3218
|
+
id: string;
|
|
3219
|
+
};
|
|
3220
|
+
variants: {
|
|
3221
|
+
id: string;
|
|
3222
|
+
hidden: boolean;
|
|
3294
3223
|
}[];
|
|
3295
|
-
}
|
|
3224
|
+
}[];
|
|
3225
|
+
};
|
|
3226
|
+
nt_description?: string | undefined;
|
|
3227
|
+
nt_audience?: {
|
|
3296
3228
|
sys: {
|
|
3229
|
+
id: string;
|
|
3297
3230
|
type?: string | undefined;
|
|
3298
3231
|
createdAt?: string | undefined;
|
|
3299
3232
|
updatedAt?: string | undefined;
|
|
@@ -3320,16 +3253,12 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3320
3253
|
linkType: string;
|
|
3321
3254
|
};
|
|
3322
3255
|
} | undefined;
|
|
3323
|
-
id: string;
|
|
3324
3256
|
};
|
|
3325
3257
|
fields: {
|
|
3326
|
-
nt_description?: string | undefined;
|
|
3327
3258
|
nt_name: string;
|
|
3328
3259
|
nt_audience_id: string;
|
|
3260
|
+
nt_description?: string | undefined;
|
|
3329
3261
|
};
|
|
3330
|
-
} | null | undefined;
|
|
3331
|
-
nt_description?: string | undefined;
|
|
3332
|
-
nt_variants?: {
|
|
3333
3262
|
metadata?: {
|
|
3334
3263
|
tags: {
|
|
3335
3264
|
sys: {
|
|
@@ -3339,7 +3268,10 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3339
3268
|
};
|
|
3340
3269
|
}[];
|
|
3341
3270
|
} | undefined;
|
|
3271
|
+
} | null | undefined;
|
|
3272
|
+
nt_variants?: {
|
|
3342
3273
|
sys: {
|
|
3274
|
+
id: string;
|
|
3343
3275
|
type?: string | undefined;
|
|
3344
3276
|
createdAt?: string | undefined;
|
|
3345
3277
|
updatedAt?: string | undefined;
|
|
@@ -3366,29 +3298,19 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3366
3298
|
linkType: string;
|
|
3367
3299
|
};
|
|
3368
3300
|
} | undefined;
|
|
3369
|
-
id: string;
|
|
3370
3301
|
};
|
|
3371
3302
|
fields: {};
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
baseline: {
|
|
3380
|
-
id: string;
|
|
3381
|
-
};
|
|
3382
|
-
variants: {
|
|
3383
|
-
id: string;
|
|
3384
|
-
hidden: boolean;
|
|
3303
|
+
metadata?: {
|
|
3304
|
+
tags: {
|
|
3305
|
+
sys: {
|
|
3306
|
+
type: string;
|
|
3307
|
+
id: string;
|
|
3308
|
+
linkType: string;
|
|
3309
|
+
};
|
|
3385
3310
|
}[];
|
|
3386
|
-
}
|
|
3387
|
-
};
|
|
3311
|
+
} | undefined;
|
|
3312
|
+
}[] | undefined;
|
|
3388
3313
|
};
|
|
3389
|
-
}[];
|
|
3390
|
-
}, {
|
|
3391
|
-
nt_experiences: {
|
|
3392
3314
|
metadata?: {
|
|
3393
3315
|
tags: {
|
|
3394
3316
|
sys: {
|
|
@@ -3398,7 +3320,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3398
3320
|
};
|
|
3399
3321
|
}[];
|
|
3400
3322
|
} | undefined;
|
|
3323
|
+
}[];
|
|
3324
|
+
}, {
|
|
3325
|
+
nt_experiences: {
|
|
3401
3326
|
sys: {
|
|
3327
|
+
id: string;
|
|
3402
3328
|
type?: string | undefined;
|
|
3403
3329
|
createdAt?: string | undefined;
|
|
3404
3330
|
updatedAt?: string | undefined;
|
|
@@ -3425,20 +3351,27 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3425
3351
|
linkType: string;
|
|
3426
3352
|
};
|
|
3427
3353
|
} | undefined;
|
|
3428
|
-
id: string;
|
|
3429
3354
|
};
|
|
3430
3355
|
fields: {
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3356
|
+
nt_name: string;
|
|
3357
|
+
nt_type: string;
|
|
3358
|
+
nt_description?: string | undefined;
|
|
3359
|
+
nt_config?: {
|
|
3360
|
+
distribution?: number[] | undefined;
|
|
3361
|
+
traffic?: number | undefined;
|
|
3362
|
+
components?: {
|
|
3363
|
+
baseline: {
|
|
3364
|
+
id?: string | undefined;
|
|
3365
|
+
};
|
|
3366
|
+
variants: {
|
|
3367
|
+
id?: string | undefined;
|
|
3368
|
+
hidden?: boolean | undefined;
|
|
3439
3369
|
}[];
|
|
3440
|
-
} | undefined;
|
|
3370
|
+
}[] | undefined;
|
|
3371
|
+
} | null | undefined;
|
|
3372
|
+
nt_audience?: {
|
|
3441
3373
|
sys: {
|
|
3374
|
+
id: string;
|
|
3442
3375
|
type?: string | undefined;
|
|
3443
3376
|
createdAt?: string | undefined;
|
|
3444
3377
|
updatedAt?: string | undefined;
|
|
@@ -3465,29 +3398,12 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3465
3398
|
linkType: string;
|
|
3466
3399
|
};
|
|
3467
3400
|
} | undefined;
|
|
3468
|
-
id: string;
|
|
3469
3401
|
};
|
|
3470
3402
|
fields: {
|
|
3471
|
-
nt_description?: string | undefined;
|
|
3472
3403
|
nt_name: string;
|
|
3473
3404
|
nt_audience_id: string;
|
|
3405
|
+
nt_description?: string | undefined;
|
|
3474
3406
|
};
|
|
3475
|
-
} | null | undefined;
|
|
3476
|
-
nt_description?: string | undefined;
|
|
3477
|
-
nt_config?: {
|
|
3478
|
-
distribution?: number[] | undefined;
|
|
3479
|
-
traffic?: number | undefined;
|
|
3480
|
-
components?: {
|
|
3481
|
-
baseline: {
|
|
3482
|
-
id?: string | undefined;
|
|
3483
|
-
};
|
|
3484
|
-
variants: {
|
|
3485
|
-
id?: string | undefined;
|
|
3486
|
-
hidden?: boolean | undefined;
|
|
3487
|
-
}[];
|
|
3488
|
-
}[] | undefined;
|
|
3489
|
-
} | null | undefined;
|
|
3490
|
-
nt_variants?: {
|
|
3491
3407
|
metadata?: {
|
|
3492
3408
|
tags: {
|
|
3493
3409
|
sys: {
|
|
@@ -3497,7 +3413,10 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3497
3413
|
};
|
|
3498
3414
|
}[];
|
|
3499
3415
|
} | undefined;
|
|
3416
|
+
} | null | undefined;
|
|
3417
|
+
nt_variants?: {
|
|
3500
3418
|
sys: {
|
|
3419
|
+
id: string;
|
|
3501
3420
|
type?: string | undefined;
|
|
3502
3421
|
createdAt?: string | undefined;
|
|
3503
3422
|
updatedAt?: string | undefined;
|
|
@@ -3524,26 +3443,33 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3524
3443
|
linkType: string;
|
|
3525
3444
|
};
|
|
3526
3445
|
} | undefined;
|
|
3527
|
-
id: string;
|
|
3528
3446
|
};
|
|
3529
3447
|
fields: {};
|
|
3448
|
+
metadata?: {
|
|
3449
|
+
tags: {
|
|
3450
|
+
sys: {
|
|
3451
|
+
type: string;
|
|
3452
|
+
id: string;
|
|
3453
|
+
linkType: string;
|
|
3454
|
+
};
|
|
3455
|
+
}[];
|
|
3456
|
+
} | undefined;
|
|
3530
3457
|
}[] | undefined;
|
|
3531
|
-
nt_name: string;
|
|
3532
|
-
nt_type: string;
|
|
3533
3458
|
};
|
|
3459
|
+
metadata?: {
|
|
3460
|
+
tags: {
|
|
3461
|
+
sys: {
|
|
3462
|
+
type: string;
|
|
3463
|
+
id: string;
|
|
3464
|
+
linkType: string;
|
|
3465
|
+
};
|
|
3466
|
+
}[];
|
|
3467
|
+
} | undefined;
|
|
3534
3468
|
}[];
|
|
3535
3469
|
}>;
|
|
3536
|
-
}
|
|
3537
|
-
metadata?: {
|
|
3538
|
-
tags: {
|
|
3539
|
-
sys: {
|
|
3540
|
-
type: string;
|
|
3541
|
-
id: string;
|
|
3542
|
-
linkType: string;
|
|
3543
|
-
};
|
|
3544
|
-
}[];
|
|
3545
|
-
} | undefined;
|
|
3470
|
+
}, "strip", z.ZodTypeAny, {
|
|
3546
3471
|
sys: {
|
|
3472
|
+
id: string;
|
|
3547
3473
|
type?: string | undefined;
|
|
3548
3474
|
createdAt?: string | undefined;
|
|
3549
3475
|
updatedAt?: string | undefined;
|
|
@@ -3570,20 +3496,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3570
3496
|
linkType: string;
|
|
3571
3497
|
};
|
|
3572
3498
|
} | undefined;
|
|
3573
|
-
id: string;
|
|
3574
3499
|
};
|
|
3575
3500
|
fields: {
|
|
3576
3501
|
nt_experiences: {
|
|
3577
|
-
metadata?: {
|
|
3578
|
-
tags: {
|
|
3579
|
-
sys: {
|
|
3580
|
-
type: string;
|
|
3581
|
-
id: string;
|
|
3582
|
-
linkType: string;
|
|
3583
|
-
};
|
|
3584
|
-
}[];
|
|
3585
|
-
} | undefined;
|
|
3586
3502
|
sys: {
|
|
3503
|
+
id: string;
|
|
3587
3504
|
type?: string | undefined;
|
|
3588
3505
|
createdAt?: string | undefined;
|
|
3589
3506
|
updatedAt?: string | undefined;
|
|
@@ -3610,20 +3527,27 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3610
3527
|
linkType: string;
|
|
3611
3528
|
};
|
|
3612
3529
|
} | undefined;
|
|
3613
|
-
id: string;
|
|
3614
3530
|
};
|
|
3615
3531
|
fields: {
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3532
|
+
nt_name: string;
|
|
3533
|
+
nt_type: string;
|
|
3534
|
+
nt_config: {
|
|
3535
|
+
distribution: number[];
|
|
3536
|
+
traffic: number;
|
|
3537
|
+
components: {
|
|
3538
|
+
baseline: {
|
|
3539
|
+
id: string;
|
|
3540
|
+
};
|
|
3541
|
+
variants: {
|
|
3542
|
+
id: string;
|
|
3543
|
+
hidden: boolean;
|
|
3624
3544
|
}[];
|
|
3625
|
-
}
|
|
3545
|
+
}[];
|
|
3546
|
+
};
|
|
3547
|
+
nt_description?: string | undefined;
|
|
3548
|
+
nt_audience?: {
|
|
3626
3549
|
sys: {
|
|
3550
|
+
id: string;
|
|
3627
3551
|
type?: string | undefined;
|
|
3628
3552
|
createdAt?: string | undefined;
|
|
3629
3553
|
updatedAt?: string | undefined;
|
|
@@ -3650,16 +3574,12 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3650
3574
|
linkType: string;
|
|
3651
3575
|
};
|
|
3652
3576
|
} | undefined;
|
|
3653
|
-
id: string;
|
|
3654
3577
|
};
|
|
3655
3578
|
fields: {
|
|
3656
|
-
nt_description?: string | undefined;
|
|
3657
3579
|
nt_name: string;
|
|
3658
3580
|
nt_audience_id: string;
|
|
3581
|
+
nt_description?: string | undefined;
|
|
3659
3582
|
};
|
|
3660
|
-
} | null | undefined;
|
|
3661
|
-
nt_description?: string | undefined;
|
|
3662
|
-
nt_variants?: {
|
|
3663
3583
|
metadata?: {
|
|
3664
3584
|
tags: {
|
|
3665
3585
|
sys: {
|
|
@@ -3669,7 +3589,10 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3669
3589
|
};
|
|
3670
3590
|
}[];
|
|
3671
3591
|
} | undefined;
|
|
3592
|
+
} | null | undefined;
|
|
3593
|
+
nt_variants?: {
|
|
3672
3594
|
sys: {
|
|
3595
|
+
id: string;
|
|
3673
3596
|
type?: string | undefined;
|
|
3674
3597
|
createdAt?: string | undefined;
|
|
3675
3598
|
updatedAt?: string | undefined;
|
|
@@ -3696,29 +3619,30 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3696
3619
|
linkType: string;
|
|
3697
3620
|
};
|
|
3698
3621
|
} | undefined;
|
|
3699
|
-
id: string;
|
|
3700
3622
|
};
|
|
3701
3623
|
fields: {};
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
baseline: {
|
|
3710
|
-
id: string;
|
|
3711
|
-
};
|
|
3712
|
-
variants: {
|
|
3713
|
-
id: string;
|
|
3714
|
-
hidden: boolean;
|
|
3624
|
+
metadata?: {
|
|
3625
|
+
tags: {
|
|
3626
|
+
sys: {
|
|
3627
|
+
type: string;
|
|
3628
|
+
id: string;
|
|
3629
|
+
linkType: string;
|
|
3630
|
+
};
|
|
3715
3631
|
}[];
|
|
3716
|
-
}
|
|
3717
|
-
};
|
|
3632
|
+
} | undefined;
|
|
3633
|
+
}[] | undefined;
|
|
3718
3634
|
};
|
|
3635
|
+
metadata?: {
|
|
3636
|
+
tags: {
|
|
3637
|
+
sys: {
|
|
3638
|
+
type: string;
|
|
3639
|
+
id: string;
|
|
3640
|
+
linkType: string;
|
|
3641
|
+
};
|
|
3642
|
+
}[];
|
|
3643
|
+
} | undefined;
|
|
3719
3644
|
}[];
|
|
3720
3645
|
};
|
|
3721
|
-
}, {
|
|
3722
3646
|
metadata?: {
|
|
3723
3647
|
tags: {
|
|
3724
3648
|
sys: {
|
|
@@ -3728,7 +3652,9 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3728
3652
|
};
|
|
3729
3653
|
}[];
|
|
3730
3654
|
} | undefined;
|
|
3655
|
+
}, {
|
|
3731
3656
|
sys: {
|
|
3657
|
+
id: string;
|
|
3732
3658
|
type?: string | undefined;
|
|
3733
3659
|
createdAt?: string | undefined;
|
|
3734
3660
|
updatedAt?: string | undefined;
|
|
@@ -3755,20 +3681,11 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3755
3681
|
linkType: string;
|
|
3756
3682
|
};
|
|
3757
3683
|
} | undefined;
|
|
3758
|
-
id: string;
|
|
3759
3684
|
};
|
|
3760
3685
|
fields: {
|
|
3761
3686
|
nt_experiences: {
|
|
3762
|
-
metadata?: {
|
|
3763
|
-
tags: {
|
|
3764
|
-
sys: {
|
|
3765
|
-
type: string;
|
|
3766
|
-
id: string;
|
|
3767
|
-
linkType: string;
|
|
3768
|
-
};
|
|
3769
|
-
}[];
|
|
3770
|
-
} | undefined;
|
|
3771
3687
|
sys: {
|
|
3688
|
+
id: string;
|
|
3772
3689
|
type?: string | undefined;
|
|
3773
3690
|
createdAt?: string | undefined;
|
|
3774
3691
|
updatedAt?: string | undefined;
|
|
@@ -3795,20 +3712,27 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3795
3712
|
linkType: string;
|
|
3796
3713
|
};
|
|
3797
3714
|
} | undefined;
|
|
3798
|
-
id: string;
|
|
3799
3715
|
};
|
|
3800
3716
|
fields: {
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
|
|
3808
|
-
|
|
3717
|
+
nt_name: string;
|
|
3718
|
+
nt_type: string;
|
|
3719
|
+
nt_description?: string | undefined;
|
|
3720
|
+
nt_config?: {
|
|
3721
|
+
distribution?: number[] | undefined;
|
|
3722
|
+
traffic?: number | undefined;
|
|
3723
|
+
components?: {
|
|
3724
|
+
baseline: {
|
|
3725
|
+
id?: string | undefined;
|
|
3726
|
+
};
|
|
3727
|
+
variants: {
|
|
3728
|
+
id?: string | undefined;
|
|
3729
|
+
hidden?: boolean | undefined;
|
|
3809
3730
|
}[];
|
|
3810
|
-
} | undefined;
|
|
3731
|
+
}[] | undefined;
|
|
3732
|
+
} | null | undefined;
|
|
3733
|
+
nt_audience?: {
|
|
3811
3734
|
sys: {
|
|
3735
|
+
id: string;
|
|
3812
3736
|
type?: string | undefined;
|
|
3813
3737
|
createdAt?: string | undefined;
|
|
3814
3738
|
updatedAt?: string | undefined;
|
|
@@ -3835,29 +3759,12 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3835
3759
|
linkType: string;
|
|
3836
3760
|
};
|
|
3837
3761
|
} | undefined;
|
|
3838
|
-
id: string;
|
|
3839
3762
|
};
|
|
3840
3763
|
fields: {
|
|
3841
|
-
nt_description?: string | undefined;
|
|
3842
3764
|
nt_name: string;
|
|
3843
3765
|
nt_audience_id: string;
|
|
3766
|
+
nt_description?: string | undefined;
|
|
3844
3767
|
};
|
|
3845
|
-
} | null | undefined;
|
|
3846
|
-
nt_description?: string | undefined;
|
|
3847
|
-
nt_config?: {
|
|
3848
|
-
distribution?: number[] | undefined;
|
|
3849
|
-
traffic?: number | undefined;
|
|
3850
|
-
components?: {
|
|
3851
|
-
baseline: {
|
|
3852
|
-
id?: string | undefined;
|
|
3853
|
-
};
|
|
3854
|
-
variants: {
|
|
3855
|
-
id?: string | undefined;
|
|
3856
|
-
hidden?: boolean | undefined;
|
|
3857
|
-
}[];
|
|
3858
|
-
}[] | undefined;
|
|
3859
|
-
} | null | undefined;
|
|
3860
|
-
nt_variants?: {
|
|
3861
3768
|
metadata?: {
|
|
3862
3769
|
tags: {
|
|
3863
3770
|
sys: {
|
|
@@ -3867,7 +3774,10 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3867
3774
|
};
|
|
3868
3775
|
}[];
|
|
3869
3776
|
} | undefined;
|
|
3777
|
+
} | null | undefined;
|
|
3778
|
+
nt_variants?: {
|
|
3870
3779
|
sys: {
|
|
3780
|
+
id: string;
|
|
3871
3781
|
type?: string | undefined;
|
|
3872
3782
|
createdAt?: string | undefined;
|
|
3873
3783
|
updatedAt?: string | undefined;
|
|
@@ -3894,15 +3804,39 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
|
|
|
3894
3804
|
linkType: string;
|
|
3895
3805
|
};
|
|
3896
3806
|
} | undefined;
|
|
3897
|
-
id: string;
|
|
3898
3807
|
};
|
|
3899
3808
|
fields: {};
|
|
3809
|
+
metadata?: {
|
|
3810
|
+
tags: {
|
|
3811
|
+
sys: {
|
|
3812
|
+
type: string;
|
|
3813
|
+
id: string;
|
|
3814
|
+
linkType: string;
|
|
3815
|
+
};
|
|
3816
|
+
}[];
|
|
3817
|
+
} | undefined;
|
|
3900
3818
|
}[] | undefined;
|
|
3901
|
-
nt_name: string;
|
|
3902
|
-
nt_type: string;
|
|
3903
3819
|
};
|
|
3820
|
+
metadata?: {
|
|
3821
|
+
tags: {
|
|
3822
|
+
sys: {
|
|
3823
|
+
type: string;
|
|
3824
|
+
id: string;
|
|
3825
|
+
linkType: string;
|
|
3826
|
+
};
|
|
3827
|
+
}[];
|
|
3828
|
+
} | undefined;
|
|
3904
3829
|
}[];
|
|
3905
3830
|
};
|
|
3831
|
+
metadata?: {
|
|
3832
|
+
tags: {
|
|
3833
|
+
sys: {
|
|
3834
|
+
type: string;
|
|
3835
|
+
id: string;
|
|
3836
|
+
linkType: string;
|
|
3837
|
+
};
|
|
3838
|
+
}[];
|
|
3839
|
+
} | undefined;
|
|
3906
3840
|
}>;
|
|
3907
3841
|
type BaselineWithExperiencesEntryInput = z.input<typeof BaselineWithExperiencesEntrySchema>;
|
|
3908
3842
|
export type BaselineWithExperiencesEntryLike<VariantFields extends EntryFields = EntryFields> = FieldsOverride<BaselineWithExperiencesEntryInput, BaselineWithExperiencesEntryFieldsLike<VariantFields>>;
|