@ninetailed/experience.js-utils 4.2.3 → 4.3.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/package.json +3 -3
- package/types/Audience.d.ts +2 -2
- package/types/Experience.d.ts +454 -357
- package/types/Experiment.d.ts +460 -441
- package/types/Variant.d.ts +5 -7
package/types/Experience.d.ts
CHANGED
|
@@ -88,43 +88,33 @@ export declare const ExperienceSchema: z.ZodObject<{
|
|
|
88
88
|
name: z.ZodOptional<z.ZodString>;
|
|
89
89
|
description: z.ZodOptional<z.ZodString>;
|
|
90
90
|
}, "strip", z.ZodTypeAny, {
|
|
91
|
+
id: string;
|
|
91
92
|
name?: string | undefined;
|
|
92
93
|
description?: string | undefined;
|
|
93
|
-
id: string;
|
|
94
94
|
}, {
|
|
95
|
+
id: string;
|
|
95
96
|
name?: string | undefined;
|
|
96
97
|
description?: string | undefined;
|
|
97
|
-
id: string;
|
|
98
98
|
}>>>;
|
|
99
99
|
/**
|
|
100
100
|
* All used variants of the experience (References to other Content Types)
|
|
101
101
|
*/
|
|
102
102
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
103
103
|
id: z.ZodString;
|
|
104
|
-
}, "strip", z.ZodUnknown, {
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
id:
|
|
110
|
-
}
|
|
111
|
-
[x: string]: unknown;
|
|
112
|
-
id: string;
|
|
113
|
-
}[], unknown>>;
|
|
104
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
105
|
+
id: z.ZodString;
|
|
106
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
107
|
+
id: z.ZodString;
|
|
108
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
109
|
+
id: z.ZodString;
|
|
110
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
114
111
|
}, "strip", z.ZodTypeAny, {
|
|
115
|
-
description?: string | undefined;
|
|
116
|
-
audience?: {
|
|
117
|
-
name?: string | undefined;
|
|
118
|
-
description?: string | undefined;
|
|
119
|
-
id: string;
|
|
120
|
-
} | null | undefined;
|
|
121
112
|
id: string;
|
|
122
113
|
name: string;
|
|
123
114
|
type: string;
|
|
124
|
-
variants: {
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
}[];
|
|
115
|
+
variants: z.objectOutputType<{
|
|
116
|
+
id: z.ZodString;
|
|
117
|
+
}, z.ZodUnknown, "strip">[];
|
|
128
118
|
config: {
|
|
129
119
|
distribution: number[];
|
|
130
120
|
traffic: number;
|
|
@@ -138,9 +128,17 @@ export declare const ExperienceSchema: z.ZodObject<{
|
|
|
138
128
|
}[];
|
|
139
129
|
}[];
|
|
140
130
|
};
|
|
131
|
+
description?: string | undefined;
|
|
132
|
+
audience?: {
|
|
133
|
+
id: string;
|
|
134
|
+
name?: string | undefined;
|
|
135
|
+
description?: string | undefined;
|
|
136
|
+
} | null | undefined;
|
|
141
137
|
}, {
|
|
138
|
+
id: string;
|
|
139
|
+
name: string;
|
|
140
|
+
type: string;
|
|
142
141
|
description?: string | undefined;
|
|
143
|
-
variants?: unknown;
|
|
144
142
|
config?: {
|
|
145
143
|
distribution?: number[] | undefined;
|
|
146
144
|
traffic?: number | undefined;
|
|
@@ -155,13 +153,11 @@ export declare const ExperienceSchema: z.ZodObject<{
|
|
|
155
153
|
}[] | undefined;
|
|
156
154
|
} | undefined;
|
|
157
155
|
audience?: {
|
|
156
|
+
id: string;
|
|
158
157
|
name?: string | undefined;
|
|
159
158
|
description?: string | undefined;
|
|
160
|
-
id: string;
|
|
161
159
|
} | null | undefined;
|
|
162
|
-
|
|
163
|
-
name: string;
|
|
164
|
-
type: string;
|
|
160
|
+
variants?: unknown;
|
|
165
161
|
}>;
|
|
166
162
|
type ExperienceInput = z.input<typeof ExperienceSchema>;
|
|
167
163
|
export type ExperienceLike<Variant extends Reference = Reference> = Omit<ExperienceInput, 'variants'> & {
|
|
@@ -174,8 +170,10 @@ export type Experience<Variant extends Reference = Reference> = Omit<ExperienceO
|
|
|
174
170
|
export declare const Experience: {
|
|
175
171
|
parse: <T extends Reference>(input: ExperienceLike<T>) => Experience<T>;
|
|
176
172
|
safeParse: <T_1 extends Reference>(input: ExperienceLike<T_1>) => z.SafeParseError<{
|
|
173
|
+
id: string;
|
|
174
|
+
name: string;
|
|
175
|
+
type: string;
|
|
177
176
|
description?: string | undefined;
|
|
178
|
-
variants?: unknown;
|
|
179
177
|
config?: {
|
|
180
178
|
distribution?: number[] | undefined;
|
|
181
179
|
traffic?: number | undefined;
|
|
@@ -190,22 +188,14 @@ export declare const Experience: {
|
|
|
190
188
|
}[] | undefined;
|
|
191
189
|
} | undefined;
|
|
192
190
|
audience?: {
|
|
191
|
+
id: string;
|
|
193
192
|
name?: string | undefined;
|
|
194
193
|
description?: string | undefined;
|
|
195
|
-
id: string;
|
|
196
194
|
} | null | undefined;
|
|
197
|
-
|
|
198
|
-
name: string;
|
|
199
|
-
type: string;
|
|
195
|
+
variants?: unknown;
|
|
200
196
|
}> | {
|
|
201
197
|
data: {
|
|
202
198
|
variants: T_1[];
|
|
203
|
-
description?: string | undefined;
|
|
204
|
-
audience?: {
|
|
205
|
-
name?: string | undefined;
|
|
206
|
-
description?: string | undefined;
|
|
207
|
-
id: string;
|
|
208
|
-
} | null | undefined;
|
|
209
199
|
id: string;
|
|
210
200
|
name: string;
|
|
211
201
|
type: string;
|
|
@@ -222,6 +212,12 @@ export declare const Experience: {
|
|
|
222
212
|
}[];
|
|
223
213
|
}[];
|
|
224
214
|
};
|
|
215
|
+
description?: string | undefined;
|
|
216
|
+
audience?: {
|
|
217
|
+
id: string;
|
|
218
|
+
name?: string | undefined;
|
|
219
|
+
description?: string | undefined;
|
|
220
|
+
} | null | undefined;
|
|
225
221
|
};
|
|
226
222
|
success: true;
|
|
227
223
|
};
|
|
@@ -313,44 +309,190 @@ export declare const Experience: {
|
|
|
313
309
|
name: z.ZodOptional<z.ZodString>;
|
|
314
310
|
description: z.ZodOptional<z.ZodString>;
|
|
315
311
|
}, "strip", z.ZodTypeAny, {
|
|
312
|
+
id: string;
|
|
316
313
|
name?: string | undefined;
|
|
317
314
|
description?: string | undefined;
|
|
318
|
-
id: string;
|
|
319
315
|
}, {
|
|
316
|
+
id: string;
|
|
320
317
|
name?: string | undefined;
|
|
321
318
|
description?: string | undefined;
|
|
322
|
-
id: string;
|
|
323
319
|
}>>>;
|
|
324
320
|
/**
|
|
325
321
|
* All used variants of the experience (References to other Content Types)
|
|
326
322
|
*/
|
|
327
323
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
328
324
|
id: z.ZodString;
|
|
329
|
-
}, "strip", z.ZodUnknown, {
|
|
330
|
-
|
|
331
|
-
|
|
325
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
326
|
+
id: z.ZodString;
|
|
327
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
328
|
+
id: z.ZodString;
|
|
329
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
330
|
+
id: z.ZodString;
|
|
331
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
332
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
333
|
+
id: z.ZodString;
|
|
334
|
+
/**
|
|
335
|
+
* The name of the experience (Short Text)
|
|
336
|
+
*/
|
|
337
|
+
name: z.ZodString;
|
|
338
|
+
/**
|
|
339
|
+
* The description of the experience (Short Text)
|
|
340
|
+
*/
|
|
341
|
+
description: z.ZodOptional<z.ZodString>;
|
|
342
|
+
/**
|
|
343
|
+
* The type if the experience (nt_experiment | nt_personalization)
|
|
344
|
+
*/
|
|
345
|
+
type: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
|
346
|
+
/**
|
|
347
|
+
* The config of the experience (JSON)
|
|
348
|
+
*/
|
|
349
|
+
config: z.ZodDefault<z.ZodObject<{
|
|
350
|
+
distribution: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
351
|
+
traffic: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
352
|
+
components: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
353
|
+
baseline: z.ZodObject<{
|
|
354
|
+
id: z.ZodDefault<z.ZodString>;
|
|
355
|
+
}, "strip", z.ZodTypeAny, {
|
|
356
|
+
id: string;
|
|
357
|
+
}, {
|
|
358
|
+
id?: string | undefined;
|
|
359
|
+
}>;
|
|
360
|
+
variants: z.ZodArray<z.ZodObject<{
|
|
361
|
+
id: z.ZodDefault<z.ZodString>;
|
|
362
|
+
hidden: z.ZodDefault<z.ZodBoolean>;
|
|
363
|
+
}, "strip", z.ZodTypeAny, {
|
|
364
|
+
id: string;
|
|
365
|
+
hidden: boolean;
|
|
366
|
+
}, {
|
|
367
|
+
id?: string | undefined;
|
|
368
|
+
hidden?: boolean | undefined;
|
|
369
|
+
}>, "many">;
|
|
370
|
+
}, "strip", z.ZodTypeAny, {
|
|
371
|
+
baseline: {
|
|
372
|
+
id: string;
|
|
373
|
+
};
|
|
374
|
+
variants: {
|
|
375
|
+
id: string;
|
|
376
|
+
hidden: boolean;
|
|
377
|
+
}[];
|
|
378
|
+
}, {
|
|
379
|
+
baseline: {
|
|
380
|
+
id?: string | undefined;
|
|
381
|
+
};
|
|
382
|
+
variants: {
|
|
383
|
+
id?: string | undefined;
|
|
384
|
+
hidden?: boolean | undefined;
|
|
385
|
+
}[];
|
|
386
|
+
}>, "many">>>;
|
|
387
|
+
}, "strip", z.ZodTypeAny, {
|
|
388
|
+
distribution: number[];
|
|
389
|
+
traffic: number;
|
|
390
|
+
components: {
|
|
391
|
+
baseline: {
|
|
392
|
+
id: string;
|
|
393
|
+
};
|
|
394
|
+
variants: {
|
|
395
|
+
id: string;
|
|
396
|
+
hidden: boolean;
|
|
397
|
+
}[];
|
|
398
|
+
}[];
|
|
332
399
|
}, {
|
|
333
|
-
[
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
400
|
+
distribution?: number[] | undefined;
|
|
401
|
+
traffic?: number | undefined;
|
|
402
|
+
components?: {
|
|
403
|
+
baseline: {
|
|
404
|
+
id?: string | undefined;
|
|
405
|
+
};
|
|
406
|
+
variants: {
|
|
407
|
+
id?: string | undefined;
|
|
408
|
+
hidden?: boolean | undefined;
|
|
409
|
+
}[];
|
|
410
|
+
}[] | undefined;
|
|
411
|
+
}>>;
|
|
412
|
+
/**
|
|
413
|
+
* The audience of the experience (Audience)
|
|
414
|
+
*/
|
|
415
|
+
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
416
|
+
id: z.ZodString;
|
|
417
|
+
name: z.ZodOptional<z.ZodString>;
|
|
418
|
+
description: z.ZodOptional<z.ZodString>;
|
|
419
|
+
}, "strip", z.ZodTypeAny, {
|
|
337
420
|
id: string;
|
|
338
|
-
}[], unknown>>;
|
|
339
|
-
}, "passthrough", z.ZodTypeAny, {
|
|
340
|
-
description?: string | undefined;
|
|
341
|
-
audience?: {
|
|
342
421
|
name?: string | undefined;
|
|
343
422
|
description?: string | undefined;
|
|
423
|
+
}, {
|
|
344
424
|
id: string;
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
425
|
+
name?: string | undefined;
|
|
426
|
+
description?: string | undefined;
|
|
427
|
+
}>>>;
|
|
428
|
+
/**
|
|
429
|
+
* All used variants of the experience (References to other Content Types)
|
|
430
|
+
*/
|
|
431
|
+
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
432
|
+
id: z.ZodString;
|
|
433
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
434
|
+
id: z.ZodString;
|
|
435
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
436
|
+
id: z.ZodString;
|
|
437
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
438
|
+
id: z.ZodString;
|
|
439
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
440
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
441
|
+
id: z.ZodString;
|
|
442
|
+
/**
|
|
443
|
+
* The name of the experience (Short Text)
|
|
444
|
+
*/
|
|
445
|
+
name: z.ZodString;
|
|
446
|
+
/**
|
|
447
|
+
* The description of the experience (Short Text)
|
|
448
|
+
*/
|
|
449
|
+
description: z.ZodOptional<z.ZodString>;
|
|
450
|
+
/**
|
|
451
|
+
* The type if the experience (nt_experiment | nt_personalization)
|
|
452
|
+
*/
|
|
453
|
+
type: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
|
454
|
+
/**
|
|
455
|
+
* The config of the experience (JSON)
|
|
456
|
+
*/
|
|
457
|
+
config: z.ZodDefault<z.ZodObject<{
|
|
458
|
+
distribution: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
459
|
+
traffic: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
460
|
+
components: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
461
|
+
baseline: z.ZodObject<{
|
|
462
|
+
id: z.ZodDefault<z.ZodString>;
|
|
463
|
+
}, "strip", z.ZodTypeAny, {
|
|
464
|
+
id: string;
|
|
465
|
+
}, {
|
|
466
|
+
id?: string | undefined;
|
|
467
|
+
}>;
|
|
468
|
+
variants: z.ZodArray<z.ZodObject<{
|
|
469
|
+
id: z.ZodDefault<z.ZodString>;
|
|
470
|
+
hidden: z.ZodDefault<z.ZodBoolean>;
|
|
471
|
+
}, "strip", z.ZodTypeAny, {
|
|
472
|
+
id: string;
|
|
473
|
+
hidden: boolean;
|
|
474
|
+
}, {
|
|
475
|
+
id?: string | undefined;
|
|
476
|
+
hidden?: boolean | undefined;
|
|
477
|
+
}>, "many">;
|
|
478
|
+
}, "strip", z.ZodTypeAny, {
|
|
479
|
+
baseline: {
|
|
480
|
+
id: string;
|
|
481
|
+
};
|
|
482
|
+
variants: {
|
|
483
|
+
id: string;
|
|
484
|
+
hidden: boolean;
|
|
485
|
+
}[];
|
|
486
|
+
}, {
|
|
487
|
+
baseline: {
|
|
488
|
+
id?: string | undefined;
|
|
489
|
+
};
|
|
490
|
+
variants: {
|
|
491
|
+
id?: string | undefined;
|
|
492
|
+
hidden?: boolean | undefined;
|
|
493
|
+
}[];
|
|
494
|
+
}>, "many">>>;
|
|
495
|
+
}, "strip", z.ZodTypeAny, {
|
|
354
496
|
distribution: number[];
|
|
355
497
|
traffic: number;
|
|
356
498
|
components: {
|
|
@@ -362,11 +504,7 @@ export declare const Experience: {
|
|
|
362
504
|
hidden: boolean;
|
|
363
505
|
}[];
|
|
364
506
|
}[];
|
|
365
|
-
}
|
|
366
|
-
}, {
|
|
367
|
-
description?: string | undefined;
|
|
368
|
-
variants?: unknown;
|
|
369
|
-
config?: {
|
|
507
|
+
}, {
|
|
370
508
|
distribution?: number[] | undefined;
|
|
371
509
|
traffic?: number | undefined;
|
|
372
510
|
components?: {
|
|
@@ -378,17 +516,37 @@ export declare const Experience: {
|
|
|
378
516
|
hidden?: boolean | undefined;
|
|
379
517
|
}[];
|
|
380
518
|
}[] | undefined;
|
|
381
|
-
}
|
|
382
|
-
|
|
519
|
+
}>>;
|
|
520
|
+
/**
|
|
521
|
+
* The audience of the experience (Audience)
|
|
522
|
+
*/
|
|
523
|
+
audience: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
524
|
+
id: z.ZodString;
|
|
525
|
+
name: z.ZodOptional<z.ZodString>;
|
|
526
|
+
description: z.ZodOptional<z.ZodString>;
|
|
527
|
+
}, "strip", z.ZodTypeAny, {
|
|
528
|
+
id: string;
|
|
383
529
|
name?: string | undefined;
|
|
384
530
|
description?: string | undefined;
|
|
531
|
+
}, {
|
|
385
532
|
id: string;
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
533
|
+
name?: string | undefined;
|
|
534
|
+
description?: string | undefined;
|
|
535
|
+
}>>>;
|
|
536
|
+
/**
|
|
537
|
+
* All used variants of the experience (References to other Content Types)
|
|
538
|
+
*/
|
|
539
|
+
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
540
|
+
id: z.ZodString;
|
|
541
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
542
|
+
id: z.ZodString;
|
|
543
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
544
|
+
id: z.ZodString;
|
|
545
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
546
|
+
id: z.ZodString;
|
|
547
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
548
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
549
|
+
augment: <Augmentation extends z.ZodRawShape>(augmentation: Augmentation) => z.ZodObject<Omit<{
|
|
392
550
|
id: z.ZodString;
|
|
393
551
|
/**
|
|
394
552
|
* The name of the experience (Short Text)
|
|
@@ -476,30 +634,27 @@ export declare const Experience: {
|
|
|
476
634
|
name: z.ZodOptional<z.ZodString>;
|
|
477
635
|
description: z.ZodOptional<z.ZodString>;
|
|
478
636
|
}, "strip", z.ZodTypeAny, {
|
|
637
|
+
id: string;
|
|
479
638
|
name?: string | undefined;
|
|
480
639
|
description?: string | undefined;
|
|
481
|
-
id: string;
|
|
482
640
|
}, {
|
|
641
|
+
id: string;
|
|
483
642
|
name?: string | undefined;
|
|
484
643
|
description?: string | undefined;
|
|
485
|
-
id: string;
|
|
486
644
|
}>>>;
|
|
487
645
|
/**
|
|
488
646
|
* All used variants of the experience (References to other Content Types)
|
|
489
647
|
*/
|
|
490
648
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
491
649
|
id: z.ZodString;
|
|
492
|
-
}, "strip", z.ZodUnknown, {
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
id:
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
id: string;
|
|
501
|
-
}[], unknown>>;
|
|
502
|
-
}, Augmentation>, "strip", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.extendShape<{
|
|
650
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
651
|
+
id: z.ZodString;
|
|
652
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
653
|
+
id: z.ZodString;
|
|
654
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
655
|
+
id: z.ZodString;
|
|
656
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
657
|
+
}, keyof Augmentation> & Augmentation extends infer T_2 ? { [k in keyof T_2]: (Omit<{
|
|
503
658
|
id: z.ZodString;
|
|
504
659
|
/**
|
|
505
660
|
* The name of the experience (Short Text)
|
|
@@ -587,30 +742,27 @@ export declare const Experience: {
|
|
|
587
742
|
name: z.ZodOptional<z.ZodString>;
|
|
588
743
|
description: z.ZodOptional<z.ZodString>;
|
|
589
744
|
}, "strip", z.ZodTypeAny, {
|
|
745
|
+
id: string;
|
|
590
746
|
name?: string | undefined;
|
|
591
747
|
description?: string | undefined;
|
|
592
|
-
id: string;
|
|
593
748
|
}, {
|
|
749
|
+
id: string;
|
|
594
750
|
name?: string | undefined;
|
|
595
751
|
description?: string | undefined;
|
|
596
|
-
id: string;
|
|
597
752
|
}>>>;
|
|
598
753
|
/**
|
|
599
754
|
* All used variants of the experience (References to other Content Types)
|
|
600
755
|
*/
|
|
601
756
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
602
757
|
id: z.ZodString;
|
|
603
|
-
}, "strip", z.ZodUnknown, {
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
id:
|
|
609
|
-
}
|
|
610
|
-
|
|
611
|
-
id: string;
|
|
612
|
-
}[], unknown>>;
|
|
613
|
-
}, Augmentation> extends infer T_3 extends z.ZodRawShape ? { [k_1 in keyof T_3]: z.extendShape<{
|
|
758
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
759
|
+
id: z.ZodString;
|
|
760
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
761
|
+
id: z.ZodString;
|
|
762
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
763
|
+
id: z.ZodString;
|
|
764
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
765
|
+
}, keyof Augmentation> & Augmentation)[k]; } : never, "strip", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<Omit<{
|
|
614
766
|
id: z.ZodString;
|
|
615
767
|
/**
|
|
616
768
|
* The name of the experience (Short Text)
|
|
@@ -698,30 +850,27 @@ export declare const Experience: {
|
|
|
698
850
|
name: z.ZodOptional<z.ZodString>;
|
|
699
851
|
description: z.ZodOptional<z.ZodString>;
|
|
700
852
|
}, "strip", z.ZodTypeAny, {
|
|
853
|
+
id: string;
|
|
701
854
|
name?: string | undefined;
|
|
702
855
|
description?: string | undefined;
|
|
703
|
-
id: string;
|
|
704
856
|
}, {
|
|
857
|
+
id: string;
|
|
705
858
|
name?: string | undefined;
|
|
706
859
|
description?: string | undefined;
|
|
707
|
-
id: string;
|
|
708
860
|
}>>>;
|
|
709
861
|
/**
|
|
710
862
|
* All used variants of the experience (References to other Content Types)
|
|
711
863
|
*/
|
|
712
864
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
713
865
|
id: z.ZodString;
|
|
714
|
-
}, "strip", z.ZodUnknown, {
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
id:
|
|
720
|
-
}
|
|
721
|
-
|
|
722
|
-
id: string;
|
|
723
|
-
}[], unknown>>;
|
|
724
|
-
}, Augmentation>[k_1]["_output"]; } : never> extends infer T_2 extends object ? { [k in keyof T_2]: z.objectUtil.addQuestionMarks<z.extendShape<{
|
|
866
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
867
|
+
id: z.ZodString;
|
|
868
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
869
|
+
id: z.ZodString;
|
|
870
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
871
|
+
id: z.ZodString;
|
|
872
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
873
|
+
}, keyof Augmentation> & Augmentation extends infer T_4 ? { [k_2 in keyof T_4]: (Omit<{
|
|
725
874
|
id: z.ZodString;
|
|
726
875
|
/**
|
|
727
876
|
* The name of the experience (Short Text)
|
|
@@ -809,30 +958,27 @@ export declare const Experience: {
|
|
|
809
958
|
name: z.ZodOptional<z.ZodString>;
|
|
810
959
|
description: z.ZodOptional<z.ZodString>;
|
|
811
960
|
}, "strip", z.ZodTypeAny, {
|
|
961
|
+
id: string;
|
|
812
962
|
name?: string | undefined;
|
|
813
963
|
description?: string | undefined;
|
|
814
|
-
id: string;
|
|
815
964
|
}, {
|
|
965
|
+
id: string;
|
|
816
966
|
name?: string | undefined;
|
|
817
967
|
description?: string | undefined;
|
|
818
|
-
id: string;
|
|
819
968
|
}>>>;
|
|
820
969
|
/**
|
|
821
970
|
* All used variants of the experience (References to other Content Types)
|
|
822
971
|
*/
|
|
823
972
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
824
973
|
id: z.ZodString;
|
|
825
|
-
}, "strip", z.ZodUnknown, {
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
id:
|
|
831
|
-
}
|
|
832
|
-
|
|
833
|
-
id: string;
|
|
834
|
-
}[], unknown>>;
|
|
835
|
-
}, Augmentation> extends infer T_3 extends z.ZodRawShape ? { [k_1 in keyof T_3]: z.extendShape<{
|
|
974
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
975
|
+
id: z.ZodString;
|
|
976
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
977
|
+
id: z.ZodString;
|
|
978
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
979
|
+
id: z.ZodString;
|
|
980
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
981
|
+
}, keyof Augmentation> & Augmentation)[k_2]; } : never>, (z.baseObjectOutputType<Omit<{
|
|
836
982
|
id: z.ZodString;
|
|
837
983
|
/**
|
|
838
984
|
* The name of the experience (Short Text)
|
|
@@ -920,30 +1066,27 @@ export declare const Experience: {
|
|
|
920
1066
|
name: z.ZodOptional<z.ZodString>;
|
|
921
1067
|
description: z.ZodOptional<z.ZodString>;
|
|
922
1068
|
}, "strip", z.ZodTypeAny, {
|
|
1069
|
+
id: string;
|
|
923
1070
|
name?: string | undefined;
|
|
924
1071
|
description?: string | undefined;
|
|
925
|
-
id: string;
|
|
926
1072
|
}, {
|
|
1073
|
+
id: string;
|
|
927
1074
|
name?: string | undefined;
|
|
928
1075
|
description?: string | undefined;
|
|
929
|
-
id: string;
|
|
930
1076
|
}>>>;
|
|
931
1077
|
/**
|
|
932
1078
|
* All used variants of the experience (References to other Content Types)
|
|
933
1079
|
*/
|
|
934
1080
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
935
1081
|
id: z.ZodString;
|
|
936
|
-
}, "strip", z.ZodUnknown, {
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
id:
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
id: string;
|
|
945
|
-
}[], unknown>>;
|
|
946
|
-
}, Augmentation>[k_1]["_output"]; } : never>[k]; } : never, z.objectUtil.addQuestionMarks<z.extendShape<{
|
|
1082
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1083
|
+
id: z.ZodString;
|
|
1084
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1085
|
+
id: z.ZodString;
|
|
1086
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
1087
|
+
id: z.ZodString;
|
|
1088
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
1089
|
+
}, keyof Augmentation> & Augmentation extends infer T_4 ? { [k_2 in keyof T_4]: (Omit<{
|
|
947
1090
|
id: z.ZodString;
|
|
948
1091
|
/**
|
|
949
1092
|
* The name of the experience (Short Text)
|
|
@@ -1031,30 +1174,27 @@ export declare const Experience: {
|
|
|
1031
1174
|
name: z.ZodOptional<z.ZodString>;
|
|
1032
1175
|
description: z.ZodOptional<z.ZodString>;
|
|
1033
1176
|
}, "strip", z.ZodTypeAny, {
|
|
1177
|
+
id: string;
|
|
1034
1178
|
name?: string | undefined;
|
|
1035
1179
|
description?: string | undefined;
|
|
1036
|
-
id: string;
|
|
1037
1180
|
}, {
|
|
1181
|
+
id: string;
|
|
1038
1182
|
name?: string | undefined;
|
|
1039
1183
|
description?: string | undefined;
|
|
1040
|
-
id: string;
|
|
1041
1184
|
}>>>;
|
|
1042
1185
|
/**
|
|
1043
1186
|
* All used variants of the experience (References to other Content Types)
|
|
1044
1187
|
*/
|
|
1045
1188
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
1046
1189
|
id: z.ZodString;
|
|
1047
|
-
}, "strip", z.ZodUnknown, {
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
id:
|
|
1053
|
-
}
|
|
1054
|
-
|
|
1055
|
-
id: string;
|
|
1056
|
-
}[], unknown>>;
|
|
1057
|
-
}, Augmentation> extends infer T_5 extends z.ZodRawShape ? { [k_3 in keyof T_5]: z.extendShape<{
|
|
1190
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1191
|
+
id: z.ZodString;
|
|
1192
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1193
|
+
id: z.ZodString;
|
|
1194
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
1195
|
+
id: z.ZodString;
|
|
1196
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
1197
|
+
}, keyof Augmentation> & Augmentation)[k_2]; } : never> extends infer T_5 extends object ? { [k_3 in keyof T_5]: undefined extends z.baseObjectOutputType<Omit<{
|
|
1058
1198
|
id: z.ZodString;
|
|
1059
1199
|
/**
|
|
1060
1200
|
* The name of the experience (Short Text)
|
|
@@ -1142,30 +1282,27 @@ export declare const Experience: {
|
|
|
1142
1282
|
name: z.ZodOptional<z.ZodString>;
|
|
1143
1283
|
description: z.ZodOptional<z.ZodString>;
|
|
1144
1284
|
}, "strip", z.ZodTypeAny, {
|
|
1285
|
+
id: string;
|
|
1145
1286
|
name?: string | undefined;
|
|
1146
1287
|
description?: string | undefined;
|
|
1147
|
-
id: string;
|
|
1148
1288
|
}, {
|
|
1289
|
+
id: string;
|
|
1149
1290
|
name?: string | undefined;
|
|
1150
1291
|
description?: string | undefined;
|
|
1151
|
-
id: string;
|
|
1152
1292
|
}>>>;
|
|
1153
1293
|
/**
|
|
1154
1294
|
* All used variants of the experience (References to other Content Types)
|
|
1155
1295
|
*/
|
|
1156
1296
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
1157
1297
|
id: z.ZodString;
|
|
1158
|
-
}, "strip", z.ZodUnknown, {
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
id:
|
|
1164
|
-
}
|
|
1165
|
-
|
|
1166
|
-
id: string;
|
|
1167
|
-
}[], unknown>>;
|
|
1168
|
-
}, Augmentation>[k_3]["_input"]; } : never> extends infer T_4 extends object ? { [k_2 in keyof T_4]: z.objectUtil.addQuestionMarks<z.extendShape<{
|
|
1298
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1299
|
+
id: z.ZodString;
|
|
1300
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1301
|
+
id: z.ZodString;
|
|
1302
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
1303
|
+
id: z.ZodString;
|
|
1304
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
1305
|
+
}, keyof Augmentation> & Augmentation extends infer T_4 ? { [k_2 in keyof T_4]: (Omit<{
|
|
1169
1306
|
id: z.ZodString;
|
|
1170
1307
|
/**
|
|
1171
1308
|
* The name of the experience (Short Text)
|
|
@@ -1253,30 +1390,27 @@ export declare const Experience: {
|
|
|
1253
1390
|
name: z.ZodOptional<z.ZodString>;
|
|
1254
1391
|
description: z.ZodOptional<z.ZodString>;
|
|
1255
1392
|
}, "strip", z.ZodTypeAny, {
|
|
1393
|
+
id: string;
|
|
1256
1394
|
name?: string | undefined;
|
|
1257
1395
|
description?: string | undefined;
|
|
1258
|
-
id: string;
|
|
1259
1396
|
}, {
|
|
1397
|
+
id: string;
|
|
1260
1398
|
name?: string | undefined;
|
|
1261
1399
|
description?: string | undefined;
|
|
1262
|
-
id: string;
|
|
1263
1400
|
}>>>;
|
|
1264
1401
|
/**
|
|
1265
1402
|
* All used variants of the experience (References to other Content Types)
|
|
1266
1403
|
*/
|
|
1267
1404
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
1268
1405
|
id: z.ZodString;
|
|
1269
|
-
}, "strip", z.ZodUnknown, {
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
id:
|
|
1275
|
-
}
|
|
1276
|
-
|
|
1277
|
-
id: string;
|
|
1278
|
-
}[], unknown>>;
|
|
1279
|
-
}, Augmentation> extends infer T_5 extends z.ZodRawShape ? { [k_3 in keyof T_5]: z.extendShape<{
|
|
1406
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1407
|
+
id: z.ZodString;
|
|
1408
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1409
|
+
id: z.ZodString;
|
|
1410
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
1411
|
+
id: z.ZodString;
|
|
1412
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
1413
|
+
}, keyof Augmentation> & Augmentation)[k_2]; } : never>[k_3] ? never : k_3; } : never)[keyof Augmentation | Exclude<"id", keyof Augmentation> | Exclude<"name", keyof Augmentation> | Exclude<"description", keyof Augmentation> | Exclude<"type", keyof Augmentation> | Exclude<"variants", keyof Augmentation> | Exclude<"config", keyof Augmentation> | Exclude<"audience", keyof Augmentation>]> extends infer T_3 ? { [k_1 in keyof T_3]: z.objectUtil.addQuestionMarks<z.baseObjectOutputType<Omit<{
|
|
1280
1414
|
id: z.ZodString;
|
|
1281
1415
|
/**
|
|
1282
1416
|
* The name of the experience (Short Text)
|
|
@@ -1364,31 +1498,27 @@ export declare const Experience: {
|
|
|
1364
1498
|
name: z.ZodOptional<z.ZodString>;
|
|
1365
1499
|
description: z.ZodOptional<z.ZodString>;
|
|
1366
1500
|
}, "strip", z.ZodTypeAny, {
|
|
1501
|
+
id: string;
|
|
1367
1502
|
name?: string | undefined;
|
|
1368
1503
|
description?: string | undefined;
|
|
1369
|
-
id: string;
|
|
1370
1504
|
}, {
|
|
1505
|
+
id: string;
|
|
1371
1506
|
name?: string | undefined;
|
|
1372
1507
|
description?: string | undefined;
|
|
1373
|
-
id: string;
|
|
1374
1508
|
}>>>;
|
|
1375
1509
|
/**
|
|
1376
1510
|
* All used variants of the experience (References to other Content Types)
|
|
1377
1511
|
*/
|
|
1378
1512
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
1379
1513
|
id: z.ZodString;
|
|
1380
|
-
}, "strip", z.ZodUnknown, {
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
id:
|
|
1386
|
-
}
|
|
1387
|
-
|
|
1388
|
-
id: string;
|
|
1389
|
-
}[], unknown>>;
|
|
1390
|
-
}, Augmentation>[k_3]["_input"]; } : never>[k_2]; } : never>;
|
|
1391
|
-
extend: <Augmentation_1 extends z.ZodRawShape>(augmentation: Augmentation_1) => z.ZodObject<z.extendShape<{
|
|
1514
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1515
|
+
id: z.ZodString;
|
|
1516
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1517
|
+
id: z.ZodString;
|
|
1518
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
1519
|
+
id: z.ZodString;
|
|
1520
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
1521
|
+
}, keyof Augmentation> & Augmentation extends infer T_4 ? { [k_2 in keyof T_4]: (Omit<{
|
|
1392
1522
|
id: z.ZodString;
|
|
1393
1523
|
/**
|
|
1394
1524
|
* The name of the experience (Short Text)
|
|
@@ -1476,30 +1606,27 @@ export declare const Experience: {
|
|
|
1476
1606
|
name: z.ZodOptional<z.ZodString>;
|
|
1477
1607
|
description: z.ZodOptional<z.ZodString>;
|
|
1478
1608
|
}, "strip", z.ZodTypeAny, {
|
|
1609
|
+
id: string;
|
|
1479
1610
|
name?: string | undefined;
|
|
1480
1611
|
description?: string | undefined;
|
|
1481
|
-
id: string;
|
|
1482
1612
|
}, {
|
|
1613
|
+
id: string;
|
|
1483
1614
|
name?: string | undefined;
|
|
1484
1615
|
description?: string | undefined;
|
|
1485
|
-
id: string;
|
|
1486
1616
|
}>>>;
|
|
1487
1617
|
/**
|
|
1488
1618
|
* All used variants of the experience (References to other Content Types)
|
|
1489
1619
|
*/
|
|
1490
1620
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
1491
1621
|
id: z.ZodString;
|
|
1492
|
-
}, "strip", z.ZodUnknown, {
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
id:
|
|
1498
|
-
}
|
|
1499
|
-
|
|
1500
|
-
id: string;
|
|
1501
|
-
}[], unknown>>;
|
|
1502
|
-
}, Augmentation_1>, "strip", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.extendShape<{
|
|
1622
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1623
|
+
id: z.ZodString;
|
|
1624
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1625
|
+
id: z.ZodString;
|
|
1626
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
1627
|
+
id: z.ZodString;
|
|
1628
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
1629
|
+
}, keyof Augmentation> & Augmentation)[k_2]; } : never>, (z.baseObjectOutputType<Omit<{
|
|
1503
1630
|
id: z.ZodString;
|
|
1504
1631
|
/**
|
|
1505
1632
|
* The name of the experience (Short Text)
|
|
@@ -1587,30 +1714,27 @@ export declare const Experience: {
|
|
|
1587
1714
|
name: z.ZodOptional<z.ZodString>;
|
|
1588
1715
|
description: z.ZodOptional<z.ZodString>;
|
|
1589
1716
|
}, "strip", z.ZodTypeAny, {
|
|
1717
|
+
id: string;
|
|
1590
1718
|
name?: string | undefined;
|
|
1591
1719
|
description?: string | undefined;
|
|
1592
|
-
id: string;
|
|
1593
1720
|
}, {
|
|
1721
|
+
id: string;
|
|
1594
1722
|
name?: string | undefined;
|
|
1595
1723
|
description?: string | undefined;
|
|
1596
|
-
id: string;
|
|
1597
1724
|
}>>>;
|
|
1598
1725
|
/**
|
|
1599
1726
|
* All used variants of the experience (References to other Content Types)
|
|
1600
1727
|
*/
|
|
1601
1728
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
1602
1729
|
id: z.ZodString;
|
|
1603
|
-
}, "strip", z.ZodUnknown, {
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
id:
|
|
1609
|
-
}
|
|
1610
|
-
|
|
1611
|
-
id: string;
|
|
1612
|
-
}[], unknown>>;
|
|
1613
|
-
}, Augmentation_1> extends infer T_7 extends z.ZodRawShape ? { [k_5 in keyof T_7]: z.extendShape<{
|
|
1730
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1731
|
+
id: z.ZodString;
|
|
1732
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1733
|
+
id: z.ZodString;
|
|
1734
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
1735
|
+
id: z.ZodString;
|
|
1736
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
1737
|
+
}, keyof Augmentation> & Augmentation extends infer T_4 ? { [k_2 in keyof T_4]: (Omit<{
|
|
1614
1738
|
id: z.ZodString;
|
|
1615
1739
|
/**
|
|
1616
1740
|
* The name of the experience (Short Text)
|
|
@@ -1698,30 +1822,27 @@ export declare const Experience: {
|
|
|
1698
1822
|
name: z.ZodOptional<z.ZodString>;
|
|
1699
1823
|
description: z.ZodOptional<z.ZodString>;
|
|
1700
1824
|
}, "strip", z.ZodTypeAny, {
|
|
1825
|
+
id: string;
|
|
1701
1826
|
name?: string | undefined;
|
|
1702
1827
|
description?: string | undefined;
|
|
1703
|
-
id: string;
|
|
1704
1828
|
}, {
|
|
1829
|
+
id: string;
|
|
1705
1830
|
name?: string | undefined;
|
|
1706
1831
|
description?: string | undefined;
|
|
1707
|
-
id: string;
|
|
1708
1832
|
}>>>;
|
|
1709
1833
|
/**
|
|
1710
1834
|
* All used variants of the experience (References to other Content Types)
|
|
1711
1835
|
*/
|
|
1712
1836
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
1713
1837
|
id: z.ZodString;
|
|
1714
|
-
}, "strip", z.ZodUnknown, {
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
id:
|
|
1720
|
-
}
|
|
1721
|
-
|
|
1722
|
-
id: string;
|
|
1723
|
-
}[], unknown>>;
|
|
1724
|
-
}, Augmentation_1>[k_5]["_output"]; } : never> extends infer T_6 extends object ? { [k_4 in keyof T_6]: z.objectUtil.addQuestionMarks<z.extendShape<{
|
|
1838
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1839
|
+
id: z.ZodString;
|
|
1840
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1841
|
+
id: z.ZodString;
|
|
1842
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
1843
|
+
id: z.ZodString;
|
|
1844
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
1845
|
+
}, keyof Augmentation> & Augmentation)[k_2]; } : never> extends infer T_5 extends object ? { [k_3 in keyof T_5]: undefined extends z.baseObjectOutputType<Omit<{
|
|
1725
1846
|
id: z.ZodString;
|
|
1726
1847
|
/**
|
|
1727
1848
|
* The name of the experience (Short Text)
|
|
@@ -1809,30 +1930,27 @@ export declare const Experience: {
|
|
|
1809
1930
|
name: z.ZodOptional<z.ZodString>;
|
|
1810
1931
|
description: z.ZodOptional<z.ZodString>;
|
|
1811
1932
|
}, "strip", z.ZodTypeAny, {
|
|
1933
|
+
id: string;
|
|
1812
1934
|
name?: string | undefined;
|
|
1813
1935
|
description?: string | undefined;
|
|
1814
|
-
id: string;
|
|
1815
1936
|
}, {
|
|
1937
|
+
id: string;
|
|
1816
1938
|
name?: string | undefined;
|
|
1817
1939
|
description?: string | undefined;
|
|
1818
|
-
id: string;
|
|
1819
1940
|
}>>>;
|
|
1820
1941
|
/**
|
|
1821
1942
|
* All used variants of the experience (References to other Content Types)
|
|
1822
1943
|
*/
|
|
1823
1944
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
1824
1945
|
id: z.ZodString;
|
|
1825
|
-
}, "strip", z.ZodUnknown, {
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
id:
|
|
1831
|
-
}
|
|
1832
|
-
|
|
1833
|
-
id: string;
|
|
1834
|
-
}[], unknown>>;
|
|
1835
|
-
}, Augmentation_1> extends infer T_7 extends z.ZodRawShape ? { [k_5 in keyof T_7]: z.extendShape<{
|
|
1946
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1947
|
+
id: z.ZodString;
|
|
1948
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1949
|
+
id: z.ZodString;
|
|
1950
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
1951
|
+
id: z.ZodString;
|
|
1952
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
1953
|
+
}, keyof Augmentation> & Augmentation extends infer T_4 ? { [k_2 in keyof T_4]: (Omit<{
|
|
1836
1954
|
id: z.ZodString;
|
|
1837
1955
|
/**
|
|
1838
1956
|
* The name of the experience (Short Text)
|
|
@@ -1920,30 +2038,27 @@ export declare const Experience: {
|
|
|
1920
2038
|
name: z.ZodOptional<z.ZodString>;
|
|
1921
2039
|
description: z.ZodOptional<z.ZodString>;
|
|
1922
2040
|
}, "strip", z.ZodTypeAny, {
|
|
2041
|
+
id: string;
|
|
1923
2042
|
name?: string | undefined;
|
|
1924
2043
|
description?: string | undefined;
|
|
1925
|
-
id: string;
|
|
1926
2044
|
}, {
|
|
2045
|
+
id: string;
|
|
1927
2046
|
name?: string | undefined;
|
|
1928
2047
|
description?: string | undefined;
|
|
1929
|
-
id: string;
|
|
1930
2048
|
}>>>;
|
|
1931
2049
|
/**
|
|
1932
2050
|
* All used variants of the experience (References to other Content Types)
|
|
1933
2051
|
*/
|
|
1934
2052
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
1935
2053
|
id: z.ZodString;
|
|
1936
|
-
}, "strip", z.ZodUnknown, {
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
id:
|
|
1942
|
-
}
|
|
1943
|
-
|
|
1944
|
-
id: string;
|
|
1945
|
-
}[], unknown>>;
|
|
1946
|
-
}, Augmentation_1>[k_5]["_output"]; } : never>[k_4]; } : never, z.objectUtil.addQuestionMarks<z.extendShape<{
|
|
2054
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2055
|
+
id: z.ZodString;
|
|
2056
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2057
|
+
id: z.ZodString;
|
|
2058
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
2059
|
+
id: z.ZodString;
|
|
2060
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
2061
|
+
}, keyof Augmentation> & Augmentation)[k_2]; } : never>[k_3] ? never : k_3; } : never)[keyof Augmentation | Exclude<"id", keyof Augmentation> | Exclude<"name", keyof Augmentation> | Exclude<"description", keyof Augmentation> | Exclude<"type", keyof Augmentation> | Exclude<"variants", keyof Augmentation> | Exclude<"config", keyof Augmentation> | Exclude<"audience", keyof Augmentation>]>[k_1]; } : never, z.baseObjectInputType<Omit<{
|
|
1947
2062
|
id: z.ZodString;
|
|
1948
2063
|
/**
|
|
1949
2064
|
* The name of the experience (Short Text)
|
|
@@ -2031,30 +2146,27 @@ export declare const Experience: {
|
|
|
2031
2146
|
name: z.ZodOptional<z.ZodString>;
|
|
2032
2147
|
description: z.ZodOptional<z.ZodString>;
|
|
2033
2148
|
}, "strip", z.ZodTypeAny, {
|
|
2149
|
+
id: string;
|
|
2034
2150
|
name?: string | undefined;
|
|
2035
2151
|
description?: string | undefined;
|
|
2036
|
-
id: string;
|
|
2037
2152
|
}, {
|
|
2153
|
+
id: string;
|
|
2038
2154
|
name?: string | undefined;
|
|
2039
2155
|
description?: string | undefined;
|
|
2040
|
-
id: string;
|
|
2041
2156
|
}>>>;
|
|
2042
2157
|
/**
|
|
2043
2158
|
* All used variants of the experience (References to other Content Types)
|
|
2044
2159
|
*/
|
|
2045
2160
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
2046
2161
|
id: z.ZodString;
|
|
2047
|
-
}, "strip", z.ZodUnknown, {
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
id:
|
|
2053
|
-
}
|
|
2054
|
-
|
|
2055
|
-
id: string;
|
|
2056
|
-
}[], unknown>>;
|
|
2057
|
-
}, Augmentation_1> extends infer T_9 extends z.ZodRawShape ? { [k_7 in keyof T_9]: z.extendShape<{
|
|
2162
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2163
|
+
id: z.ZodString;
|
|
2164
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2165
|
+
id: z.ZodString;
|
|
2166
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
2167
|
+
id: z.ZodString;
|
|
2168
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
2169
|
+
}, keyof Augmentation> & Augmentation extends infer T_7 ? { [k_5 in keyof T_7]: (Omit<{
|
|
2058
2170
|
id: z.ZodString;
|
|
2059
2171
|
/**
|
|
2060
2172
|
* The name of the experience (Short Text)
|
|
@@ -2142,30 +2254,27 @@ export declare const Experience: {
|
|
|
2142
2254
|
name: z.ZodOptional<z.ZodString>;
|
|
2143
2255
|
description: z.ZodOptional<z.ZodString>;
|
|
2144
2256
|
}, "strip", z.ZodTypeAny, {
|
|
2257
|
+
id: string;
|
|
2145
2258
|
name?: string | undefined;
|
|
2146
2259
|
description?: string | undefined;
|
|
2147
|
-
id: string;
|
|
2148
2260
|
}, {
|
|
2261
|
+
id: string;
|
|
2149
2262
|
name?: string | undefined;
|
|
2150
2263
|
description?: string | undefined;
|
|
2151
|
-
id: string;
|
|
2152
2264
|
}>>>;
|
|
2153
2265
|
/**
|
|
2154
2266
|
* All used variants of the experience (References to other Content Types)
|
|
2155
2267
|
*/
|
|
2156
2268
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
2157
2269
|
id: z.ZodString;
|
|
2158
|
-
}, "strip", z.ZodUnknown, {
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
id:
|
|
2164
|
-
}
|
|
2165
|
-
|
|
2166
|
-
id: string;
|
|
2167
|
-
}[], unknown>>;
|
|
2168
|
-
}, Augmentation_1>[k_7]["_input"]; } : never> extends infer T_8 extends object ? { [k_6 in keyof T_8]: z.objectUtil.addQuestionMarks<z.extendShape<{
|
|
2270
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2271
|
+
id: z.ZodString;
|
|
2272
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2273
|
+
id: z.ZodString;
|
|
2274
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
2275
|
+
id: z.ZodString;
|
|
2276
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
2277
|
+
}, keyof Augmentation> & Augmentation)[k_5]; } : never> extends infer T_6 ? { [k_4 in keyof T_6]: z.baseObjectInputType<Omit<{
|
|
2169
2278
|
id: z.ZodString;
|
|
2170
2279
|
/**
|
|
2171
2280
|
* The name of the experience (Short Text)
|
|
@@ -2253,30 +2362,27 @@ export declare const Experience: {
|
|
|
2253
2362
|
name: z.ZodOptional<z.ZodString>;
|
|
2254
2363
|
description: z.ZodOptional<z.ZodString>;
|
|
2255
2364
|
}, "strip", z.ZodTypeAny, {
|
|
2365
|
+
id: string;
|
|
2256
2366
|
name?: string | undefined;
|
|
2257
2367
|
description?: string | undefined;
|
|
2258
|
-
id: string;
|
|
2259
2368
|
}, {
|
|
2369
|
+
id: string;
|
|
2260
2370
|
name?: string | undefined;
|
|
2261
2371
|
description?: string | undefined;
|
|
2262
|
-
id: string;
|
|
2263
2372
|
}>>>;
|
|
2264
2373
|
/**
|
|
2265
2374
|
* All used variants of the experience (References to other Content Types)
|
|
2266
2375
|
*/
|
|
2267
2376
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
2268
2377
|
id: z.ZodString;
|
|
2269
|
-
}, "strip", z.ZodUnknown, {
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
id:
|
|
2275
|
-
}
|
|
2276
|
-
|
|
2277
|
-
id: string;
|
|
2278
|
-
}[], unknown>>;
|
|
2279
|
-
}, Augmentation_1> extends infer T_9 extends z.ZodRawShape ? { [k_7 in keyof T_9]: z.extendShape<{
|
|
2378
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2379
|
+
id: z.ZodString;
|
|
2380
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2381
|
+
id: z.ZodString;
|
|
2382
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
2383
|
+
id: z.ZodString;
|
|
2384
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
2385
|
+
}, keyof Augmentation> & Augmentation extends infer T_7 ? { [k_5 in keyof T_7]: (Omit<{
|
|
2280
2386
|
id: z.ZodString;
|
|
2281
2387
|
/**
|
|
2282
2388
|
* The name of the experience (Short Text)
|
|
@@ -2364,44 +2470,34 @@ export declare const Experience: {
|
|
|
2364
2470
|
name: z.ZodOptional<z.ZodString>;
|
|
2365
2471
|
description: z.ZodOptional<z.ZodString>;
|
|
2366
2472
|
}, "strip", z.ZodTypeAny, {
|
|
2473
|
+
id: string;
|
|
2367
2474
|
name?: string | undefined;
|
|
2368
2475
|
description?: string | undefined;
|
|
2369
|
-
id: string;
|
|
2370
2476
|
}, {
|
|
2477
|
+
id: string;
|
|
2371
2478
|
name?: string | undefined;
|
|
2372
2479
|
description?: string | undefined;
|
|
2373
|
-
id: string;
|
|
2374
2480
|
}>>>;
|
|
2375
2481
|
/**
|
|
2376
2482
|
* All used variants of the experience (References to other Content Types)
|
|
2377
2483
|
*/
|
|
2378
2484
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
2379
2485
|
id: z.ZodString;
|
|
2380
|
-
}, "strip", z.ZodUnknown, {
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
id:
|
|
2386
|
-
}
|
|
2387
|
-
|
|
2388
|
-
id: string;
|
|
2389
|
-
}[], unknown>>;
|
|
2390
|
-
}, Augmentation_1>[k_7]["_input"]; } : never>[k_6]; } : never>;
|
|
2486
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2487
|
+
id: z.ZodString;
|
|
2488
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2489
|
+
id: z.ZodString;
|
|
2490
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
2491
|
+
id: z.ZodString;
|
|
2492
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
2493
|
+
}, keyof Augmentation> & Augmentation)[k_5]; } : never>[k_4]; } : never>;
|
|
2391
2494
|
_type: {
|
|
2392
|
-
description?: string | undefined;
|
|
2393
|
-
audience?: {
|
|
2394
|
-
name?: string | undefined;
|
|
2395
|
-
description?: string | undefined;
|
|
2396
|
-
id: string;
|
|
2397
|
-
} | null | undefined;
|
|
2398
2495
|
id: string;
|
|
2399
2496
|
name: string;
|
|
2400
2497
|
type: string;
|
|
2401
|
-
variants: {
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
}[];
|
|
2498
|
+
variants: z.objectOutputType<{
|
|
2499
|
+
id: z.ZodString;
|
|
2500
|
+
}, z.ZodUnknown, "strip">[];
|
|
2405
2501
|
config: {
|
|
2406
2502
|
distribution: number[];
|
|
2407
2503
|
traffic: number;
|
|
@@ -2415,21 +2511,20 @@ export declare const Experience: {
|
|
|
2415
2511
|
}[];
|
|
2416
2512
|
}[];
|
|
2417
2513
|
};
|
|
2418
|
-
};
|
|
2419
|
-
_output: {
|
|
2420
2514
|
description?: string | undefined;
|
|
2421
2515
|
audience?: {
|
|
2516
|
+
id: string;
|
|
2422
2517
|
name?: string | undefined;
|
|
2423
2518
|
description?: string | undefined;
|
|
2424
|
-
id: string;
|
|
2425
2519
|
} | null | undefined;
|
|
2520
|
+
};
|
|
2521
|
+
_output: {
|
|
2426
2522
|
id: string;
|
|
2427
2523
|
name: string;
|
|
2428
2524
|
type: string;
|
|
2429
|
-
variants: {
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
}[];
|
|
2525
|
+
variants: z.objectOutputType<{
|
|
2526
|
+
id: z.ZodString;
|
|
2527
|
+
}, z.ZodUnknown, "strip">[];
|
|
2433
2528
|
config: {
|
|
2434
2529
|
distribution: number[];
|
|
2435
2530
|
traffic: number;
|
|
@@ -2443,10 +2538,18 @@ export declare const Experience: {
|
|
|
2443
2538
|
}[];
|
|
2444
2539
|
}[];
|
|
2445
2540
|
};
|
|
2541
|
+
description?: string | undefined;
|
|
2542
|
+
audience?: {
|
|
2543
|
+
id: string;
|
|
2544
|
+
name?: string | undefined;
|
|
2545
|
+
description?: string | undefined;
|
|
2546
|
+
} | null | undefined;
|
|
2446
2547
|
};
|
|
2447
2548
|
_input: {
|
|
2549
|
+
id: string;
|
|
2550
|
+
name: string;
|
|
2551
|
+
type: string;
|
|
2448
2552
|
description?: string | undefined;
|
|
2449
|
-
variants?: unknown;
|
|
2450
2553
|
config?: {
|
|
2451
2554
|
distribution?: number[] | undefined;
|
|
2452
2555
|
traffic?: number | undefined;
|
|
@@ -2461,13 +2564,11 @@ export declare const Experience: {
|
|
|
2461
2564
|
}[] | undefined;
|
|
2462
2565
|
} | undefined;
|
|
2463
2566
|
audience?: {
|
|
2567
|
+
id: string;
|
|
2464
2568
|
name?: string | undefined;
|
|
2465
2569
|
description?: string | undefined;
|
|
2466
|
-
id: string;
|
|
2467
2570
|
} | null | undefined;
|
|
2468
|
-
|
|
2469
|
-
name: string;
|
|
2470
|
-
type: string;
|
|
2571
|
+
variants?: unknown;
|
|
2471
2572
|
};
|
|
2472
2573
|
_def: z.ZodObjectDef<{
|
|
2473
2574
|
id: z.ZodString;
|
|
@@ -2557,33 +2658,32 @@ export declare const Experience: {
|
|
|
2557
2658
|
name: z.ZodOptional<z.ZodString>;
|
|
2558
2659
|
description: z.ZodOptional<z.ZodString>;
|
|
2559
2660
|
}, "strip", z.ZodTypeAny, {
|
|
2661
|
+
id: string;
|
|
2560
2662
|
name?: string | undefined;
|
|
2561
2663
|
description?: string | undefined;
|
|
2562
|
-
id: string;
|
|
2563
2664
|
}, {
|
|
2665
|
+
id: string;
|
|
2564
2666
|
name?: string | undefined;
|
|
2565
2667
|
description?: string | undefined;
|
|
2566
|
-
id: string;
|
|
2567
2668
|
}>>>;
|
|
2568
2669
|
/**
|
|
2569
2670
|
* All used variants of the experience (References to other Content Types)
|
|
2570
2671
|
*/
|
|
2571
2672
|
variants: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
2572
2673
|
id: z.ZodString;
|
|
2573
|
-
}, "strip", z.ZodUnknown, {
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
id:
|
|
2579
|
-
}
|
|
2580
|
-
[x: string]: unknown;
|
|
2581
|
-
id: string;
|
|
2582
|
-
}[], unknown>>;
|
|
2674
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2675
|
+
id: z.ZodString;
|
|
2676
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2677
|
+
id: z.ZodString;
|
|
2678
|
+
}, z.ZodUnknown, "strip">>, "many">, z.objectOutputType<{
|
|
2679
|
+
id: z.ZodString;
|
|
2680
|
+
}, z.ZodUnknown, "strip">[], unknown>>;
|
|
2583
2681
|
}, "strip", z.ZodTypeAny>;
|
|
2584
2682
|
spa: (data: unknown, params?: Partial<z.ParseParams> | undefined) => Promise<z.SafeParseReturnType<{
|
|
2683
|
+
id: string;
|
|
2684
|
+
name: string;
|
|
2685
|
+
type: string;
|
|
2585
2686
|
description?: string | undefined;
|
|
2586
|
-
variants?: unknown;
|
|
2587
2687
|
config?: {
|
|
2588
2688
|
distribution?: number[] | undefined;
|
|
2589
2689
|
traffic?: number | undefined;
|
|
@@ -2598,27 +2698,18 @@ export declare const Experience: {
|
|
|
2598
2698
|
}[] | undefined;
|
|
2599
2699
|
} | undefined;
|
|
2600
2700
|
audience?: {
|
|
2601
|
-
name?: string | undefined;
|
|
2602
|
-
description?: string | undefined;
|
|
2603
2701
|
id: string;
|
|
2604
|
-
} | null | undefined;
|
|
2605
|
-
id: string;
|
|
2606
|
-
name: string;
|
|
2607
|
-
type: string;
|
|
2608
|
-
}, {
|
|
2609
|
-
description?: string | undefined;
|
|
2610
|
-
audience?: {
|
|
2611
2702
|
name?: string | undefined;
|
|
2612
2703
|
description?: string | undefined;
|
|
2613
|
-
id: string;
|
|
2614
2704
|
} | null | undefined;
|
|
2705
|
+
variants?: unknown;
|
|
2706
|
+
}, {
|
|
2615
2707
|
id: string;
|
|
2616
2708
|
name: string;
|
|
2617
2709
|
type: string;
|
|
2618
|
-
variants: {
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
}[];
|
|
2710
|
+
variants: z.objectOutputType<{
|
|
2711
|
+
id: z.ZodString;
|
|
2712
|
+
}, z.ZodUnknown, "strip">[];
|
|
2622
2713
|
config: {
|
|
2623
2714
|
distribution: number[];
|
|
2624
2715
|
traffic: number;
|
|
@@ -2632,6 +2723,12 @@ export declare const Experience: {
|
|
|
2632
2723
|
}[];
|
|
2633
2724
|
}[];
|
|
2634
2725
|
};
|
|
2726
|
+
description?: string | undefined;
|
|
2727
|
+
audience?: {
|
|
2728
|
+
id: string;
|
|
2729
|
+
name?: string | undefined;
|
|
2730
|
+
description?: string | undefined;
|
|
2731
|
+
} | null | undefined;
|
|
2635
2732
|
}>>;
|
|
2636
2733
|
};
|
|
2637
2734
|
export {};
|