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