@ninetailed/experience.js-utils-contentful 7.18.6 → 7.18.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs.js +27 -10
- package/index.esm.js +30 -10
- package/package.json +4 -4
- package/src/lib/ExperienceMapper.d.ts +17 -0
- package/src/lib/__test__/contentful-generated-types.d.ts +1 -0
- package/src/lib/__test__/ntExperiences.d.ts +1 -0
- package/src/types/BaselineWithExperiencesEntry.d.ts +16 -0
- package/src/types/ExperienceEntry.d.ts +40 -0
- package/src/types/ExperimentEntry.d.ts +67 -0
- package/src/types/fixtures/experienceEntryWithoutLinkType.d.ts +1 -0
- package/src/types/fixtures/experienceEntryWithoutVariants.d.ts +1 -0
package/index.cjs.js
CHANGED
|
@@ -154,7 +154,8 @@ const ExperienceEntryFields = zod.z.object({
|
|
|
154
154
|
/**
|
|
155
155
|
* All used variants of the experience (Contentful references to other Content Types)
|
|
156
156
|
*/
|
|
157
|
-
nt_variants: zod.z.array(EntrySchema).optional()
|
|
157
|
+
nt_variants: zod.z.array(EntrySchema).optional(),
|
|
158
|
+
nt_experience_id: zod.z.string()
|
|
158
159
|
});
|
|
159
160
|
const ExperienceEntrySchema = EntrySchema.extend({
|
|
160
161
|
fields: ExperienceEntryFields
|
|
@@ -223,16 +224,18 @@ function mapAudience(ctfAudienceEntry) {
|
|
|
223
224
|
description: ctfAudienceEntry.fields.nt_description || ''
|
|
224
225
|
};
|
|
225
226
|
}
|
|
226
|
-
function createExperience(
|
|
227
|
+
function createExperience(fields, variants) {
|
|
227
228
|
const {
|
|
228
229
|
nt_name,
|
|
229
230
|
nt_description,
|
|
230
231
|
nt_type,
|
|
231
232
|
nt_audience,
|
|
232
|
-
nt_config
|
|
233
|
+
nt_config,
|
|
234
|
+
nt_experience_id
|
|
233
235
|
} = fields;
|
|
234
236
|
return Object.assign(Object.assign({
|
|
235
|
-
|
|
237
|
+
// By the time we reach here, nt_experience_id is guaranteed to be defined thanks to zod validations in validateExperienceEntry
|
|
238
|
+
id: nt_experience_id,
|
|
236
239
|
name: nt_name,
|
|
237
240
|
description: nt_description || '',
|
|
238
241
|
type: nt_type
|
|
@@ -255,34 +258,48 @@ class ExperienceMapper {
|
|
|
255
258
|
static isExperienceEntry(entry) {
|
|
256
259
|
return ExperienceEntry.safeParse(entry).success;
|
|
257
260
|
}
|
|
261
|
+
/**
|
|
262
|
+
* Maps a Contentful Ninetailed Experience Entry to a format compatible with the Experience.js SDK.
|
|
263
|
+
*
|
|
264
|
+
* @param ctfEntry A Contentful Ninetailed Experience Entry
|
|
265
|
+
*/
|
|
258
266
|
static mapExperience(ctfEntry) {
|
|
259
267
|
const {
|
|
260
|
-
sys,
|
|
261
268
|
fields
|
|
262
269
|
} = validateExperienceEntry(ctfEntry);
|
|
263
270
|
const variants = fields.nt_variants.map(variant => Object.assign(Object.assign({}, variant), {
|
|
264
271
|
id: variant.sys.id
|
|
265
272
|
}));
|
|
266
|
-
const experience = createExperience(
|
|
273
|
+
const experience = createExperience(fields, variants);
|
|
267
274
|
return experience_jsUtils.ExperienceMapper.mapExperience(experience);
|
|
268
275
|
}
|
|
276
|
+
/**
|
|
277
|
+
*
|
|
278
|
+
* Maps a Contentful Ninetailed Experience Entry to a format compatible with the Experience.js SDK
|
|
279
|
+
* using a custom mapping function for the Experience's variants.
|
|
280
|
+
*
|
|
281
|
+
* @param ctfEntry A Contentful Ninetailed Experience Entry
|
|
282
|
+
* @param mapFn A custom function to map the Experience's variants
|
|
283
|
+
*/
|
|
269
284
|
static mapCustomExperience(ctfEntry, mapFn) {
|
|
270
285
|
const {
|
|
271
|
-
sys,
|
|
272
286
|
fields
|
|
273
287
|
} = validateExperienceEntry(ctfEntry);
|
|
274
288
|
const variants = fields.nt_variants.map(mapFn);
|
|
275
|
-
const experience = createExperience(
|
|
289
|
+
const experience = createExperience(fields, variants);
|
|
276
290
|
return experience_jsUtils.ExperienceMapper.mapExperience(experience);
|
|
277
291
|
}
|
|
292
|
+
/**
|
|
293
|
+
* Similar to `mapCustomExperience` but supports asynchronous mapping functions.
|
|
294
|
+
* @see mapCustomExperience
|
|
295
|
+
*/
|
|
278
296
|
static mapCustomExperienceAsync(ctfEntry, mapFn) {
|
|
279
297
|
return __awaiter(this, void 0, void 0, function* () {
|
|
280
298
|
const {
|
|
281
|
-
sys,
|
|
282
299
|
fields
|
|
283
300
|
} = validateExperienceEntry(ctfEntry);
|
|
284
301
|
const variants = yield Promise.all(fields.nt_variants.map(mapFn));
|
|
285
|
-
const experience = createExperience(
|
|
302
|
+
const experience = createExperience(fields, variants);
|
|
286
303
|
return experience_jsUtils.ExperienceMapper.mapExperience(experience);
|
|
287
304
|
});
|
|
288
305
|
}
|
package/index.esm.js
CHANGED
|
@@ -125,7 +125,8 @@ const ExperienceEntryFields = z.object({
|
|
|
125
125
|
/**
|
|
126
126
|
* All used variants of the experience (Contentful references to other Content Types)
|
|
127
127
|
*/
|
|
128
|
-
nt_variants: z.array(EntrySchema).optional()
|
|
128
|
+
nt_variants: z.array(EntrySchema).optional(),
|
|
129
|
+
nt_experience_id: z.string()
|
|
129
130
|
});
|
|
130
131
|
const ExperienceEntrySchema = EntrySchema.extend({
|
|
131
132
|
fields: ExperienceEntryFields
|
|
@@ -194,16 +195,18 @@ function mapAudience(ctfAudienceEntry) {
|
|
|
194
195
|
description: ctfAudienceEntry.fields.nt_description || ''
|
|
195
196
|
};
|
|
196
197
|
}
|
|
197
|
-
function createExperience(
|
|
198
|
+
function createExperience(fields, variants) {
|
|
198
199
|
const {
|
|
199
200
|
nt_name,
|
|
200
201
|
nt_description,
|
|
201
202
|
nt_type,
|
|
202
203
|
nt_audience,
|
|
203
|
-
nt_config
|
|
204
|
+
nt_config,
|
|
205
|
+
nt_experience_id
|
|
204
206
|
} = fields;
|
|
205
207
|
return Object.assign({
|
|
206
|
-
|
|
208
|
+
// By the time we reach here, nt_experience_id is guaranteed to be defined thanks to zod validations in validateExperienceEntry
|
|
209
|
+
id: nt_experience_id,
|
|
207
210
|
name: nt_name,
|
|
208
211
|
description: nt_description || '',
|
|
209
212
|
type: nt_type
|
|
@@ -226,33 +229,50 @@ class ExperienceMapper {
|
|
|
226
229
|
static isExperienceEntry(entry) {
|
|
227
230
|
return ExperienceEntry.safeParse(entry).success;
|
|
228
231
|
}
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* Maps a Contentful Ninetailed Experience Entry to a format compatible with the Experience.js SDK.
|
|
235
|
+
*
|
|
236
|
+
* @param ctfEntry A Contentful Ninetailed Experience Entry
|
|
237
|
+
*/
|
|
229
238
|
static mapExperience(ctfEntry) {
|
|
230
239
|
const {
|
|
231
|
-
sys,
|
|
232
240
|
fields
|
|
233
241
|
} = validateExperienceEntry(ctfEntry);
|
|
234
242
|
const variants = fields.nt_variants.map(variant => Object.assign({}, variant, {
|
|
235
243
|
id: variant.sys.id
|
|
236
244
|
}));
|
|
237
|
-
const experience = createExperience(
|
|
245
|
+
const experience = createExperience(fields, variants);
|
|
238
246
|
return ExperienceMapper$1.mapExperience(experience);
|
|
239
247
|
}
|
|
248
|
+
|
|
249
|
+
/**
|
|
250
|
+
*
|
|
251
|
+
* Maps a Contentful Ninetailed Experience Entry to a format compatible with the Experience.js SDK
|
|
252
|
+
* using a custom mapping function for the Experience's variants.
|
|
253
|
+
*
|
|
254
|
+
* @param ctfEntry A Contentful Ninetailed Experience Entry
|
|
255
|
+
* @param mapFn A custom function to map the Experience's variants
|
|
256
|
+
*/
|
|
240
257
|
static mapCustomExperience(ctfEntry, mapFn) {
|
|
241
258
|
const {
|
|
242
|
-
sys,
|
|
243
259
|
fields
|
|
244
260
|
} = validateExperienceEntry(ctfEntry);
|
|
245
261
|
const variants = fields.nt_variants.map(mapFn);
|
|
246
|
-
const experience = createExperience(
|
|
262
|
+
const experience = createExperience(fields, variants);
|
|
247
263
|
return ExperienceMapper$1.mapExperience(experience);
|
|
248
264
|
}
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* Similar to `mapCustomExperience` but supports asynchronous mapping functions.
|
|
268
|
+
* @see mapCustomExperience
|
|
269
|
+
*/
|
|
249
270
|
static async mapCustomExperienceAsync(ctfEntry, mapFn) {
|
|
250
271
|
const {
|
|
251
|
-
sys,
|
|
252
272
|
fields
|
|
253
273
|
} = validateExperienceEntry(ctfEntry);
|
|
254
274
|
const variants = await Promise.all(fields.nt_variants.map(mapFn));
|
|
255
|
-
const experience = createExperience(
|
|
275
|
+
const experience = createExperience(fields, variants);
|
|
256
276
|
return ExperienceMapper$1.mapExperience(experience);
|
|
257
277
|
}
|
|
258
278
|
static isExperiment(entry) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ninetailed/experience.js-utils-contentful",
|
|
3
|
-
"version": "7.18.
|
|
3
|
+
"version": "7.18.7",
|
|
4
4
|
"description": "Contentful utilities for Experience.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"contentful": "^9.1.32",
|
|
32
32
|
"@contentful/rich-text-types": "16.2.0",
|
|
33
|
-
"@ninetailed/experience.js-utils": "7.18.
|
|
34
|
-
"@ninetailed/experience.js": "7.18.
|
|
35
|
-
"@ninetailed/experience.js-shared": "7.18.
|
|
33
|
+
"@ninetailed/experience.js-utils": "7.18.7",
|
|
34
|
+
"@ninetailed/experience.js": "7.18.7",
|
|
35
|
+
"@ninetailed/experience.js-shared": "7.18.7",
|
|
36
36
|
"zod": "3.23.0"
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -8,6 +8,11 @@ export type MapVariantFunction<In extends EntryFields, Out extends Reference> =
|
|
|
8
8
|
export type MapVariantFunctionAsync<In extends EntryFields, Out extends Reference> = (input: EntryLike<In>) => Promise<Out>;
|
|
9
9
|
export declare class ExperienceMapper {
|
|
10
10
|
static isExperienceEntry<VariantFields extends EntryFields>(entry: ExperienceEntryLike<VariantFields>): entry is ExperienceEntry<VariantFields>;
|
|
11
|
+
/**
|
|
12
|
+
* Maps a Contentful Ninetailed Experience Entry to a format compatible with the Experience.js SDK.
|
|
13
|
+
*
|
|
14
|
+
* @param ctfEntry A Contentful Ninetailed Experience Entry
|
|
15
|
+
*/
|
|
11
16
|
static mapExperience<VariantFields extends EntryFields>(ctfEntry: ExperienceEntryLike<VariantFields>): import("@ninetailed/experience.js").ExperienceConfiguration<{
|
|
12
17
|
id: string;
|
|
13
18
|
sys: {
|
|
@@ -50,7 +55,19 @@ export declare class ExperienceMapper {
|
|
|
50
55
|
} | undefined;
|
|
51
56
|
fields: VariantFields;
|
|
52
57
|
}>;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* Maps a Contentful Ninetailed Experience Entry to a format compatible with the Experience.js SDK
|
|
61
|
+
* using a custom mapping function for the Experience's variants.
|
|
62
|
+
*
|
|
63
|
+
* @param ctfEntry A Contentful Ninetailed Experience Entry
|
|
64
|
+
* @param mapFn A custom function to map the Experience's variants
|
|
65
|
+
*/
|
|
53
66
|
static mapCustomExperience<Variant extends Reference, VariantFields extends EntryFields>(ctfEntry: ExperienceEntryLike<VariantFields>, mapFn: MapVariantFunction<VariantFields, Variant>): import("@ninetailed/experience.js").ExperienceConfiguration<Variant>;
|
|
67
|
+
/**
|
|
68
|
+
* Similar to `mapCustomExperience` but supports asynchronous mapping functions.
|
|
69
|
+
* @see mapCustomExperience
|
|
70
|
+
*/
|
|
54
71
|
static mapCustomExperienceAsync<Variant extends Reference, VariantFields extends EntryFields>(ctfEntry: ExperienceEntryLike<VariantFields>, mapFn: MapVariantFunctionAsync<VariantFields, Variant>): Promise<import("@ninetailed/experience.js").ExperienceConfiguration<Awaited<Variant>>>;
|
|
55
72
|
static isExperiment(entry: ExperienceEntryLike): entry is ExperimentEntry;
|
|
56
73
|
static mapExperiment(entry: ExperienceEntryLike): import("@ninetailed/experience.js").ExperienceConfiguration<{
|
|
@@ -940,6 +940,7 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
940
940
|
}[];
|
|
941
941
|
} | undefined;
|
|
942
942
|
}>, "many">>;
|
|
943
|
+
nt_experience_id: z.ZodString;
|
|
943
944
|
}, "strip", z.ZodTypeAny, {
|
|
944
945
|
nt_name: string;
|
|
945
946
|
nt_type: string;
|
|
@@ -969,6 +970,7 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
969
970
|
})[];
|
|
970
971
|
sticky: boolean;
|
|
971
972
|
};
|
|
973
|
+
nt_experience_id: string;
|
|
972
974
|
nt_description?: string | null | undefined;
|
|
973
975
|
nt_audience?: {
|
|
974
976
|
sys: {
|
|
@@ -1059,6 +1061,7 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
1059
1061
|
}, {
|
|
1060
1062
|
nt_name: string;
|
|
1061
1063
|
nt_type: string;
|
|
1064
|
+
nt_experience_id: string;
|
|
1062
1065
|
nt_description?: string | null | undefined;
|
|
1063
1066
|
nt_config?: {
|
|
1064
1067
|
distribution?: number[] | undefined;
|
|
@@ -1212,6 +1215,7 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
1212
1215
|
})[];
|
|
1213
1216
|
sticky: boolean;
|
|
1214
1217
|
};
|
|
1218
|
+
nt_experience_id: string;
|
|
1215
1219
|
nt_description?: string | null | undefined;
|
|
1216
1220
|
nt_audience?: {
|
|
1217
1221
|
sys: {
|
|
@@ -1342,6 +1346,7 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
1342
1346
|
fields: {
|
|
1343
1347
|
nt_name: string;
|
|
1344
1348
|
nt_type: string;
|
|
1349
|
+
nt_experience_id: string;
|
|
1345
1350
|
nt_description?: string | null | undefined;
|
|
1346
1351
|
nt_config?: {
|
|
1347
1352
|
distribution?: number[] | undefined;
|
|
@@ -1506,6 +1511,7 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
1506
1511
|
})[];
|
|
1507
1512
|
sticky: boolean;
|
|
1508
1513
|
};
|
|
1514
|
+
nt_experience_id: string;
|
|
1509
1515
|
nt_description?: string | null | undefined;
|
|
1510
1516
|
nt_audience?: {
|
|
1511
1517
|
sys: {
|
|
@@ -1638,6 +1644,7 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
1638
1644
|
fields: {
|
|
1639
1645
|
nt_name: string;
|
|
1640
1646
|
nt_type: string;
|
|
1647
|
+
nt_experience_id: string;
|
|
1641
1648
|
nt_description?: string | null | undefined;
|
|
1642
1649
|
nt_config?: {
|
|
1643
1650
|
distribution?: number[] | undefined;
|
|
@@ -2882,6 +2889,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
2882
2889
|
}[];
|
|
2883
2890
|
} | undefined;
|
|
2884
2891
|
}>, "many">>;
|
|
2892
|
+
nt_experience_id: z.ZodString;
|
|
2885
2893
|
}, "strip", z.ZodTypeAny, {
|
|
2886
2894
|
nt_name: string;
|
|
2887
2895
|
nt_type: string;
|
|
@@ -2911,6 +2919,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
2911
2919
|
})[];
|
|
2912
2920
|
sticky: boolean;
|
|
2913
2921
|
};
|
|
2922
|
+
nt_experience_id: string;
|
|
2914
2923
|
nt_description?: string | null | undefined;
|
|
2915
2924
|
nt_audience?: {
|
|
2916
2925
|
sys: {
|
|
@@ -3001,6 +3010,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
3001
3010
|
}, {
|
|
3002
3011
|
nt_name: string;
|
|
3003
3012
|
nt_type: string;
|
|
3013
|
+
nt_experience_id: string;
|
|
3004
3014
|
nt_description?: string | null | undefined;
|
|
3005
3015
|
nt_config?: {
|
|
3006
3016
|
distribution?: number[] | undefined;
|
|
@@ -3154,6 +3164,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
3154
3164
|
})[];
|
|
3155
3165
|
sticky: boolean;
|
|
3156
3166
|
};
|
|
3167
|
+
nt_experience_id: string;
|
|
3157
3168
|
nt_description?: string | null | undefined;
|
|
3158
3169
|
nt_audience?: {
|
|
3159
3170
|
sys: {
|
|
@@ -3284,6 +3295,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
3284
3295
|
fields: {
|
|
3285
3296
|
nt_name: string;
|
|
3286
3297
|
nt_type: string;
|
|
3298
|
+
nt_experience_id: string;
|
|
3287
3299
|
nt_description?: string | null | undefined;
|
|
3288
3300
|
nt_config?: {
|
|
3289
3301
|
distribution?: number[] | undefined;
|
|
@@ -3448,6 +3460,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
3448
3460
|
})[];
|
|
3449
3461
|
sticky: boolean;
|
|
3450
3462
|
};
|
|
3463
|
+
nt_experience_id: string;
|
|
3451
3464
|
nt_description?: string | null | undefined;
|
|
3452
3465
|
nt_audience?: {
|
|
3453
3466
|
sys: {
|
|
@@ -3580,6 +3593,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
3580
3593
|
fields: {
|
|
3581
3594
|
nt_name: string;
|
|
3582
3595
|
nt_type: string;
|
|
3596
|
+
nt_experience_id: string;
|
|
3583
3597
|
nt_description?: string | null | undefined;
|
|
3584
3598
|
nt_config?: {
|
|
3585
3599
|
distribution?: number[] | undefined;
|
|
@@ -3775,6 +3789,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
3775
3789
|
})[];
|
|
3776
3790
|
sticky: boolean;
|
|
3777
3791
|
};
|
|
3792
|
+
nt_experience_id: string;
|
|
3778
3793
|
nt_description?: string | null | undefined;
|
|
3779
3794
|
nt_audience?: {
|
|
3780
3795
|
sys: {
|
|
@@ -3947,6 +3962,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
3947
3962
|
fields: {
|
|
3948
3963
|
nt_name: string;
|
|
3949
3964
|
nt_type: string;
|
|
3965
|
+
nt_experience_id: string;
|
|
3950
3966
|
nt_description?: string | null | undefined;
|
|
3951
3967
|
nt_config?: {
|
|
3952
3968
|
distribution?: number[] | undefined;
|
|
@@ -767,6 +767,7 @@ export declare const ExperienceEntryFields: z.ZodObject<{
|
|
|
767
767
|
}[];
|
|
768
768
|
} | undefined;
|
|
769
769
|
}>, "many">>;
|
|
770
|
+
nt_experience_id: z.ZodString;
|
|
770
771
|
}, "strip", z.ZodTypeAny, {
|
|
771
772
|
nt_name: string;
|
|
772
773
|
nt_type: string;
|
|
@@ -796,6 +797,7 @@ export declare const ExperienceEntryFields: z.ZodObject<{
|
|
|
796
797
|
})[];
|
|
797
798
|
sticky: boolean;
|
|
798
799
|
};
|
|
800
|
+
nt_experience_id: string;
|
|
799
801
|
nt_description?: string | null | undefined;
|
|
800
802
|
nt_audience?: {
|
|
801
803
|
sys: {
|
|
@@ -886,6 +888,7 @@ export declare const ExperienceEntryFields: z.ZodObject<{
|
|
|
886
888
|
}, {
|
|
887
889
|
nt_name: string;
|
|
888
890
|
nt_type: string;
|
|
891
|
+
nt_experience_id: string;
|
|
889
892
|
nt_description?: string | null | undefined;
|
|
890
893
|
nt_config?: {
|
|
891
894
|
distribution?: number[] | undefined;
|
|
@@ -1948,6 +1951,7 @@ export declare const ExperienceEntrySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1948
1951
|
}[];
|
|
1949
1952
|
} | undefined;
|
|
1950
1953
|
}>, "many">>;
|
|
1954
|
+
nt_experience_id: z.ZodString;
|
|
1951
1955
|
}, "strip", z.ZodTypeAny, {
|
|
1952
1956
|
nt_name: string;
|
|
1953
1957
|
nt_type: string;
|
|
@@ -1977,6 +1981,7 @@ export declare const ExperienceEntrySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1977
1981
|
})[];
|
|
1978
1982
|
sticky: boolean;
|
|
1979
1983
|
};
|
|
1984
|
+
nt_experience_id: string;
|
|
1980
1985
|
nt_description?: string | null | undefined;
|
|
1981
1986
|
nt_audience?: {
|
|
1982
1987
|
sys: {
|
|
@@ -2067,6 +2072,7 @@ export declare const ExperienceEntrySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
2067
2072
|
}, {
|
|
2068
2073
|
nt_name: string;
|
|
2069
2074
|
nt_type: string;
|
|
2075
|
+
nt_experience_id: string;
|
|
2070
2076
|
nt_description?: string | null | undefined;
|
|
2071
2077
|
nt_config?: {
|
|
2072
2078
|
distribution?: number[] | undefined;
|
|
@@ -2220,6 +2226,7 @@ export declare const ExperienceEntrySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
2220
2226
|
})[];
|
|
2221
2227
|
sticky: boolean;
|
|
2222
2228
|
};
|
|
2229
|
+
nt_experience_id: string;
|
|
2223
2230
|
nt_description?: string | null | undefined;
|
|
2224
2231
|
nt_audience?: {
|
|
2225
2232
|
sys: {
|
|
@@ -2350,6 +2357,7 @@ export declare const ExperienceEntrySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
2350
2357
|
fields: {
|
|
2351
2358
|
nt_name: string;
|
|
2352
2359
|
nt_type: string;
|
|
2360
|
+
nt_experience_id: string;
|
|
2353
2361
|
nt_description?: string | null | undefined;
|
|
2354
2362
|
nt_config?: {
|
|
2355
2363
|
distribution?: number[] | undefined;
|
|
@@ -3422,6 +3430,7 @@ export declare const ExperienceEntry: {
|
|
|
3422
3430
|
}[];
|
|
3423
3431
|
} | undefined;
|
|
3424
3432
|
}>, "many">>;
|
|
3433
|
+
nt_experience_id: z.ZodString;
|
|
3425
3434
|
}, "strip", z.ZodTypeAny, {
|
|
3426
3435
|
nt_name: string;
|
|
3427
3436
|
nt_type: string;
|
|
@@ -3451,6 +3460,7 @@ export declare const ExperienceEntry: {
|
|
|
3451
3460
|
})[];
|
|
3452
3461
|
sticky: boolean;
|
|
3453
3462
|
};
|
|
3463
|
+
nt_experience_id: string;
|
|
3454
3464
|
nt_description?: string | null | undefined;
|
|
3455
3465
|
nt_audience?: {
|
|
3456
3466
|
sys: {
|
|
@@ -3541,6 +3551,7 @@ export declare const ExperienceEntry: {
|
|
|
3541
3551
|
}, {
|
|
3542
3552
|
nt_name: string;
|
|
3543
3553
|
nt_type: string;
|
|
3554
|
+
nt_experience_id: string;
|
|
3544
3555
|
nt_description?: string | null | undefined;
|
|
3545
3556
|
nt_config?: {
|
|
3546
3557
|
distribution?: number[] | undefined;
|
|
@@ -4596,6 +4607,7 @@ export declare const ExperienceEntry: {
|
|
|
4596
4607
|
}[];
|
|
4597
4608
|
} | undefined;
|
|
4598
4609
|
}>, "many">>;
|
|
4610
|
+
nt_experience_id: z.ZodString;
|
|
4599
4611
|
}, "strip", z.ZodTypeAny, {
|
|
4600
4612
|
nt_name: string;
|
|
4601
4613
|
nt_type: string;
|
|
@@ -4625,6 +4637,7 @@ export declare const ExperienceEntry: {
|
|
|
4625
4637
|
})[];
|
|
4626
4638
|
sticky: boolean;
|
|
4627
4639
|
};
|
|
4640
|
+
nt_experience_id: string;
|
|
4628
4641
|
nt_description?: string | null | undefined;
|
|
4629
4642
|
nt_audience?: {
|
|
4630
4643
|
sys: {
|
|
@@ -4715,6 +4728,7 @@ export declare const ExperienceEntry: {
|
|
|
4715
4728
|
}, {
|
|
4716
4729
|
nt_name: string;
|
|
4717
4730
|
nt_type: string;
|
|
4731
|
+
nt_experience_id: string;
|
|
4718
4732
|
nt_description?: string | null | undefined;
|
|
4719
4733
|
nt_config?: {
|
|
4720
4734
|
distribution?: number[] | undefined;
|
|
@@ -5770,6 +5784,7 @@ export declare const ExperienceEntry: {
|
|
|
5770
5784
|
}[];
|
|
5771
5785
|
} | undefined;
|
|
5772
5786
|
}>, "many">>;
|
|
5787
|
+
nt_experience_id: z.ZodString;
|
|
5773
5788
|
}, "strip", z.ZodTypeAny, {
|
|
5774
5789
|
nt_name: string;
|
|
5775
5790
|
nt_type: string;
|
|
@@ -5799,6 +5814,7 @@ export declare const ExperienceEntry: {
|
|
|
5799
5814
|
})[];
|
|
5800
5815
|
sticky: boolean;
|
|
5801
5816
|
};
|
|
5817
|
+
nt_experience_id: string;
|
|
5802
5818
|
nt_description?: string | null | undefined;
|
|
5803
5819
|
nt_audience?: {
|
|
5804
5820
|
sys: {
|
|
@@ -5889,6 +5905,7 @@ export declare const ExperienceEntry: {
|
|
|
5889
5905
|
}, {
|
|
5890
5906
|
nt_name: string;
|
|
5891
5907
|
nt_type: string;
|
|
5908
|
+
nt_experience_id: string;
|
|
5892
5909
|
nt_description?: string | null | undefined;
|
|
5893
5910
|
nt_config?: {
|
|
5894
5911
|
distribution?: number[] | undefined;
|
|
@@ -6945,6 +6962,7 @@ export declare const ExperienceEntry: {
|
|
|
6945
6962
|
}[];
|
|
6946
6963
|
} | undefined;
|
|
6947
6964
|
}>, "many">>;
|
|
6965
|
+
nt_experience_id: z.ZodString;
|
|
6948
6966
|
}, "strip", z.ZodTypeAny, {
|
|
6949
6967
|
nt_name: string;
|
|
6950
6968
|
nt_type: string;
|
|
@@ -6974,6 +6992,7 @@ export declare const ExperienceEntry: {
|
|
|
6974
6992
|
})[];
|
|
6975
6993
|
sticky: boolean;
|
|
6976
6994
|
};
|
|
6995
|
+
nt_experience_id: string;
|
|
6977
6996
|
nt_description?: string | null | undefined;
|
|
6978
6997
|
nt_audience?: {
|
|
6979
6998
|
sys: {
|
|
@@ -7064,6 +7083,7 @@ export declare const ExperienceEntry: {
|
|
|
7064
7083
|
}, {
|
|
7065
7084
|
nt_name: string;
|
|
7066
7085
|
nt_type: string;
|
|
7086
|
+
nt_experience_id: string;
|
|
7067
7087
|
nt_description?: string | null | undefined;
|
|
7068
7088
|
nt_config?: {
|
|
7069
7089
|
distribution?: number[] | undefined;
|
|
@@ -8119,6 +8139,7 @@ export declare const ExperienceEntry: {
|
|
|
8119
8139
|
}[];
|
|
8120
8140
|
} | undefined;
|
|
8121
8141
|
}>, "many">>;
|
|
8142
|
+
nt_experience_id: z.ZodString;
|
|
8122
8143
|
}, "strip", z.ZodTypeAny, {
|
|
8123
8144
|
nt_name: string;
|
|
8124
8145
|
nt_type: string;
|
|
@@ -8148,6 +8169,7 @@ export declare const ExperienceEntry: {
|
|
|
8148
8169
|
})[];
|
|
8149
8170
|
sticky: boolean;
|
|
8150
8171
|
};
|
|
8172
|
+
nt_experience_id: string;
|
|
8151
8173
|
nt_description?: string | null | undefined;
|
|
8152
8174
|
nt_audience?: {
|
|
8153
8175
|
sys: {
|
|
@@ -8238,6 +8260,7 @@ export declare const ExperienceEntry: {
|
|
|
8238
8260
|
}, {
|
|
8239
8261
|
nt_name: string;
|
|
8240
8262
|
nt_type: string;
|
|
8263
|
+
nt_experience_id: string;
|
|
8241
8264
|
nt_description?: string | null | undefined;
|
|
8242
8265
|
nt_config?: {
|
|
8243
8266
|
distribution?: number[] | undefined;
|
|
@@ -9293,6 +9316,7 @@ export declare const ExperienceEntry: {
|
|
|
9293
9316
|
}[];
|
|
9294
9317
|
} | undefined;
|
|
9295
9318
|
}>, "many">>;
|
|
9319
|
+
nt_experience_id: z.ZodString;
|
|
9296
9320
|
}, "strip", z.ZodTypeAny, {
|
|
9297
9321
|
nt_name: string;
|
|
9298
9322
|
nt_type: string;
|
|
@@ -9322,6 +9346,7 @@ export declare const ExperienceEntry: {
|
|
|
9322
9346
|
})[];
|
|
9323
9347
|
sticky: boolean;
|
|
9324
9348
|
};
|
|
9349
|
+
nt_experience_id: string;
|
|
9325
9350
|
nt_description?: string | null | undefined;
|
|
9326
9351
|
nt_audience?: {
|
|
9327
9352
|
sys: {
|
|
@@ -9412,6 +9437,7 @@ export declare const ExperienceEntry: {
|
|
|
9412
9437
|
}, {
|
|
9413
9438
|
nt_name: string;
|
|
9414
9439
|
nt_type: string;
|
|
9440
|
+
nt_experience_id: string;
|
|
9415
9441
|
nt_description?: string | null | undefined;
|
|
9416
9442
|
nt_config?: {
|
|
9417
9443
|
distribution?: number[] | undefined;
|
|
@@ -10467,6 +10493,7 @@ export declare const ExperienceEntry: {
|
|
|
10467
10493
|
}[];
|
|
10468
10494
|
} | undefined;
|
|
10469
10495
|
}>, "many">>;
|
|
10496
|
+
nt_experience_id: z.ZodString;
|
|
10470
10497
|
}, "strip", z.ZodTypeAny, {
|
|
10471
10498
|
nt_name: string;
|
|
10472
10499
|
nt_type: string;
|
|
@@ -10496,6 +10523,7 @@ export declare const ExperienceEntry: {
|
|
|
10496
10523
|
})[];
|
|
10497
10524
|
sticky: boolean;
|
|
10498
10525
|
};
|
|
10526
|
+
nt_experience_id: string;
|
|
10499
10527
|
nt_description?: string | null | undefined;
|
|
10500
10528
|
nt_audience?: {
|
|
10501
10529
|
sys: {
|
|
@@ -10586,6 +10614,7 @@ export declare const ExperienceEntry: {
|
|
|
10586
10614
|
}, {
|
|
10587
10615
|
nt_name: string;
|
|
10588
10616
|
nt_type: string;
|
|
10617
|
+
nt_experience_id: string;
|
|
10589
10618
|
nt_description?: string | null | undefined;
|
|
10590
10619
|
nt_config?: {
|
|
10591
10620
|
distribution?: number[] | undefined;
|
|
@@ -11641,6 +11670,7 @@ export declare const ExperienceEntry: {
|
|
|
11641
11670
|
}[];
|
|
11642
11671
|
} | undefined;
|
|
11643
11672
|
}>, "many">>;
|
|
11673
|
+
nt_experience_id: z.ZodString;
|
|
11644
11674
|
}, "strip", z.ZodTypeAny, {
|
|
11645
11675
|
nt_name: string;
|
|
11646
11676
|
nt_type: string;
|
|
@@ -11670,6 +11700,7 @@ export declare const ExperienceEntry: {
|
|
|
11670
11700
|
})[];
|
|
11671
11701
|
sticky: boolean;
|
|
11672
11702
|
};
|
|
11703
|
+
nt_experience_id: string;
|
|
11673
11704
|
nt_description?: string | null | undefined;
|
|
11674
11705
|
nt_audience?: {
|
|
11675
11706
|
sys: {
|
|
@@ -11760,6 +11791,7 @@ export declare const ExperienceEntry: {
|
|
|
11760
11791
|
}, {
|
|
11761
11792
|
nt_name: string;
|
|
11762
11793
|
nt_type: string;
|
|
11794
|
+
nt_experience_id: string;
|
|
11763
11795
|
nt_description?: string | null | undefined;
|
|
11764
11796
|
nt_config?: {
|
|
11765
11797
|
distribution?: number[] | undefined;
|
|
@@ -11914,6 +11946,7 @@ export declare const ExperienceEntry: {
|
|
|
11914
11946
|
})[];
|
|
11915
11947
|
sticky: boolean;
|
|
11916
11948
|
};
|
|
11949
|
+
nt_experience_id: string;
|
|
11917
11950
|
nt_description?: string | null | undefined;
|
|
11918
11951
|
nt_audience?: {
|
|
11919
11952
|
sys: {
|
|
@@ -12071,6 +12104,7 @@ export declare const ExperienceEntry: {
|
|
|
12071
12104
|
})[];
|
|
12072
12105
|
sticky: boolean;
|
|
12073
12106
|
};
|
|
12107
|
+
nt_experience_id: string;
|
|
12074
12108
|
nt_description?: string | null | undefined;
|
|
12075
12109
|
nt_audience?: {
|
|
12076
12110
|
sys: {
|
|
@@ -12202,6 +12236,7 @@ export declare const ExperienceEntry: {
|
|
|
12202
12236
|
fields: {
|
|
12203
12237
|
nt_name: string;
|
|
12204
12238
|
nt_type: string;
|
|
12239
|
+
nt_experience_id: string;
|
|
12205
12240
|
nt_description?: string | null | undefined;
|
|
12206
12241
|
nt_config?: {
|
|
12207
12242
|
distribution?: number[] | undefined;
|
|
@@ -13267,6 +13302,7 @@ export declare const ExperienceEntry: {
|
|
|
13267
13302
|
}[];
|
|
13268
13303
|
} | undefined;
|
|
13269
13304
|
}>, "many">>;
|
|
13305
|
+
nt_experience_id: z.ZodString;
|
|
13270
13306
|
}, "strip", z.ZodTypeAny, {
|
|
13271
13307
|
nt_name: string;
|
|
13272
13308
|
nt_type: string;
|
|
@@ -13296,6 +13332,7 @@ export declare const ExperienceEntry: {
|
|
|
13296
13332
|
})[];
|
|
13297
13333
|
sticky: boolean;
|
|
13298
13334
|
};
|
|
13335
|
+
nt_experience_id: string;
|
|
13299
13336
|
nt_description?: string | null | undefined;
|
|
13300
13337
|
nt_audience?: {
|
|
13301
13338
|
sys: {
|
|
@@ -13386,6 +13423,7 @@ export declare const ExperienceEntry: {
|
|
|
13386
13423
|
}, {
|
|
13387
13424
|
nt_name: string;
|
|
13388
13425
|
nt_type: string;
|
|
13426
|
+
nt_experience_id: string;
|
|
13389
13427
|
nt_description?: string | null | undefined;
|
|
13390
13428
|
nt_config?: {
|
|
13391
13429
|
distribution?: number[] | undefined;
|
|
@@ -13514,6 +13552,7 @@ export declare const ExperienceEntry: {
|
|
|
13514
13552
|
fields: {
|
|
13515
13553
|
nt_name: string;
|
|
13516
13554
|
nt_type: string;
|
|
13555
|
+
nt_experience_id: string;
|
|
13517
13556
|
nt_description?: string | null | undefined;
|
|
13518
13557
|
nt_config?: {
|
|
13519
13558
|
distribution?: number[] | undefined;
|
|
@@ -13676,6 +13715,7 @@ export declare const ExperienceEntry: {
|
|
|
13676
13715
|
})[];
|
|
13677
13716
|
sticky: boolean;
|
|
13678
13717
|
};
|
|
13718
|
+
nt_experience_id: string;
|
|
13679
13719
|
nt_description?: string | null | undefined;
|
|
13680
13720
|
nt_audience?: {
|
|
13681
13721
|
sys: {
|
|
@@ -937,6 +937,7 @@ export declare const ExperimentEntrySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
937
937
|
}[];
|
|
938
938
|
} | undefined;
|
|
939
939
|
}>, "many">>;
|
|
940
|
+
nt_experience_id: z.ZodString;
|
|
940
941
|
}, "strip", z.ZodTypeAny, {
|
|
941
942
|
nt_name: string;
|
|
942
943
|
nt_type: string;
|
|
@@ -966,6 +967,7 @@ export declare const ExperimentEntrySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
966
967
|
})[];
|
|
967
968
|
sticky: boolean;
|
|
968
969
|
};
|
|
970
|
+
nt_experience_id: string;
|
|
969
971
|
nt_description?: string | null | undefined;
|
|
970
972
|
nt_audience?: {
|
|
971
973
|
sys: {
|
|
@@ -1056,6 +1058,7 @@ export declare const ExperimentEntrySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1056
1058
|
}, {
|
|
1057
1059
|
nt_name: string;
|
|
1058
1060
|
nt_type: string;
|
|
1061
|
+
nt_experience_id: string;
|
|
1059
1062
|
nt_description?: string | null | undefined;
|
|
1060
1063
|
nt_config?: {
|
|
1061
1064
|
distribution?: number[] | undefined;
|
|
@@ -1893,6 +1896,7 @@ export declare const ExperimentEntrySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1893
1896
|
}[];
|
|
1894
1897
|
} | undefined;
|
|
1895
1898
|
}>, "many">>;
|
|
1899
|
+
nt_experience_id: z.ZodString;
|
|
1896
1900
|
}, {
|
|
1897
1901
|
nt_type: z.ZodString;
|
|
1898
1902
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1924,6 +1928,7 @@ export declare const ExperimentEntrySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
1924
1928
|
})[];
|
|
1925
1929
|
sticky: boolean;
|
|
1926
1930
|
};
|
|
1931
|
+
nt_experience_id: string;
|
|
1927
1932
|
nt_description?: string | null | undefined;
|
|
1928
1933
|
nt_audience?: {
|
|
1929
1934
|
sys: {
|
|
@@ -2014,6 +2019,7 @@ export declare const ExperimentEntrySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
2014
2019
|
}, {
|
|
2015
2020
|
nt_name: string;
|
|
2016
2021
|
nt_type: string;
|
|
2022
|
+
nt_experience_id: string;
|
|
2017
2023
|
nt_description?: string | null | undefined;
|
|
2018
2024
|
nt_config?: {
|
|
2019
2025
|
distribution?: number[] | undefined;
|
|
@@ -2167,6 +2173,7 @@ export declare const ExperimentEntrySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
2167
2173
|
})[];
|
|
2168
2174
|
sticky: boolean;
|
|
2169
2175
|
};
|
|
2176
|
+
nt_experience_id: string;
|
|
2170
2177
|
nt_description?: string | null | undefined;
|
|
2171
2178
|
nt_audience?: {
|
|
2172
2179
|
sys: {
|
|
@@ -2297,6 +2304,7 @@ export declare const ExperimentEntrySchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
2297
2304
|
fields: {
|
|
2298
2305
|
nt_name: string;
|
|
2299
2306
|
nt_type: string;
|
|
2307
|
+
nt_experience_id: string;
|
|
2300
2308
|
nt_description?: string | null | undefined;
|
|
2301
2309
|
nt_config?: {
|
|
2302
2310
|
distribution?: number[] | undefined;
|
|
@@ -3342,6 +3350,7 @@ export declare const ExperimentEntry: {
|
|
|
3342
3350
|
}[];
|
|
3343
3351
|
} | undefined;
|
|
3344
3352
|
}>, "many">>;
|
|
3353
|
+
nt_experience_id: z.ZodString;
|
|
3345
3354
|
}, "strip", z.ZodTypeAny, {
|
|
3346
3355
|
nt_name: string;
|
|
3347
3356
|
nt_type: string;
|
|
@@ -3371,6 +3380,7 @@ export declare const ExperimentEntry: {
|
|
|
3371
3380
|
})[];
|
|
3372
3381
|
sticky: boolean;
|
|
3373
3382
|
};
|
|
3383
|
+
nt_experience_id: string;
|
|
3374
3384
|
nt_description?: string | null | undefined;
|
|
3375
3385
|
nt_audience?: {
|
|
3376
3386
|
sys: {
|
|
@@ -3461,6 +3471,7 @@ export declare const ExperimentEntry: {
|
|
|
3461
3471
|
}, {
|
|
3462
3472
|
nt_name: string;
|
|
3463
3473
|
nt_type: string;
|
|
3474
|
+
nt_experience_id: string;
|
|
3464
3475
|
nt_description?: string | null | undefined;
|
|
3465
3476
|
nt_config?: {
|
|
3466
3477
|
distribution?: number[] | undefined;
|
|
@@ -4298,6 +4309,7 @@ export declare const ExperimentEntry: {
|
|
|
4298
4309
|
}[];
|
|
4299
4310
|
} | undefined;
|
|
4300
4311
|
}>, "many">>;
|
|
4312
|
+
nt_experience_id: z.ZodString;
|
|
4301
4313
|
}, {
|
|
4302
4314
|
nt_type: z.ZodString;
|
|
4303
4315
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4329,6 +4341,7 @@ export declare const ExperimentEntry: {
|
|
|
4329
4341
|
})[];
|
|
4330
4342
|
sticky: boolean;
|
|
4331
4343
|
};
|
|
4344
|
+
nt_experience_id: string;
|
|
4332
4345
|
nt_description?: string | null | undefined;
|
|
4333
4346
|
nt_audience?: {
|
|
4334
4347
|
sys: {
|
|
@@ -4419,6 +4432,7 @@ export declare const ExperimentEntry: {
|
|
|
4419
4432
|
}, {
|
|
4420
4433
|
nt_name: string;
|
|
4421
4434
|
nt_type: string;
|
|
4435
|
+
nt_experience_id: string;
|
|
4422
4436
|
nt_description?: string | null | undefined;
|
|
4423
4437
|
nt_config?: {
|
|
4424
4438
|
distribution?: number[] | undefined;
|
|
@@ -5450,6 +5464,7 @@ export declare const ExperimentEntry: {
|
|
|
5450
5464
|
}[];
|
|
5451
5465
|
} | undefined;
|
|
5452
5466
|
}>, "many">>;
|
|
5467
|
+
nt_experience_id: z.ZodString;
|
|
5453
5468
|
}, "strip", z.ZodTypeAny, {
|
|
5454
5469
|
nt_name: string;
|
|
5455
5470
|
nt_type: string;
|
|
@@ -5479,6 +5494,7 @@ export declare const ExperimentEntry: {
|
|
|
5479
5494
|
})[];
|
|
5480
5495
|
sticky: boolean;
|
|
5481
5496
|
};
|
|
5497
|
+
nt_experience_id: string;
|
|
5482
5498
|
nt_description?: string | null | undefined;
|
|
5483
5499
|
nt_audience?: {
|
|
5484
5500
|
sys: {
|
|
@@ -5569,6 +5585,7 @@ export declare const ExperimentEntry: {
|
|
|
5569
5585
|
}, {
|
|
5570
5586
|
nt_name: string;
|
|
5571
5587
|
nt_type: string;
|
|
5588
|
+
nt_experience_id: string;
|
|
5572
5589
|
nt_description?: string | null | undefined;
|
|
5573
5590
|
nt_config?: {
|
|
5574
5591
|
distribution?: number[] | undefined;
|
|
@@ -6406,6 +6423,7 @@ export declare const ExperimentEntry: {
|
|
|
6406
6423
|
}[];
|
|
6407
6424
|
} | undefined;
|
|
6408
6425
|
}>, "many">>;
|
|
6426
|
+
nt_experience_id: z.ZodString;
|
|
6409
6427
|
}, {
|
|
6410
6428
|
nt_type: z.ZodString;
|
|
6411
6429
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6437,6 +6455,7 @@ export declare const ExperimentEntry: {
|
|
|
6437
6455
|
})[];
|
|
6438
6456
|
sticky: boolean;
|
|
6439
6457
|
};
|
|
6458
|
+
nt_experience_id: string;
|
|
6440
6459
|
nt_description?: string | null | undefined;
|
|
6441
6460
|
nt_audience?: {
|
|
6442
6461
|
sys: {
|
|
@@ -6527,6 +6546,7 @@ export declare const ExperimentEntry: {
|
|
|
6527
6546
|
}, {
|
|
6528
6547
|
nt_name: string;
|
|
6529
6548
|
nt_type: string;
|
|
6549
|
+
nt_experience_id: string;
|
|
6530
6550
|
nt_description?: string | null | undefined;
|
|
6531
6551
|
nt_config?: {
|
|
6532
6552
|
distribution?: number[] | undefined;
|
|
@@ -7558,6 +7578,7 @@ export declare const ExperimentEntry: {
|
|
|
7558
7578
|
}[];
|
|
7559
7579
|
} | undefined;
|
|
7560
7580
|
}>, "many">>;
|
|
7581
|
+
nt_experience_id: z.ZodString;
|
|
7561
7582
|
}, "strip", z.ZodTypeAny, {
|
|
7562
7583
|
nt_name: string;
|
|
7563
7584
|
nt_type: string;
|
|
@@ -7587,6 +7608,7 @@ export declare const ExperimentEntry: {
|
|
|
7587
7608
|
})[];
|
|
7588
7609
|
sticky: boolean;
|
|
7589
7610
|
};
|
|
7611
|
+
nt_experience_id: string;
|
|
7590
7612
|
nt_description?: string | null | undefined;
|
|
7591
7613
|
nt_audience?: {
|
|
7592
7614
|
sys: {
|
|
@@ -7677,6 +7699,7 @@ export declare const ExperimentEntry: {
|
|
|
7677
7699
|
}, {
|
|
7678
7700
|
nt_name: string;
|
|
7679
7701
|
nt_type: string;
|
|
7702
|
+
nt_experience_id: string;
|
|
7680
7703
|
nt_description?: string | null | undefined;
|
|
7681
7704
|
nt_config?: {
|
|
7682
7705
|
distribution?: number[] | undefined;
|
|
@@ -8514,6 +8537,7 @@ export declare const ExperimentEntry: {
|
|
|
8514
8537
|
}[];
|
|
8515
8538
|
} | undefined;
|
|
8516
8539
|
}>, "many">>;
|
|
8540
|
+
nt_experience_id: z.ZodString;
|
|
8517
8541
|
}, {
|
|
8518
8542
|
nt_type: z.ZodString;
|
|
8519
8543
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -8545,6 +8569,7 @@ export declare const ExperimentEntry: {
|
|
|
8545
8569
|
})[];
|
|
8546
8570
|
sticky: boolean;
|
|
8547
8571
|
};
|
|
8572
|
+
nt_experience_id: string;
|
|
8548
8573
|
nt_description?: string | null | undefined;
|
|
8549
8574
|
nt_audience?: {
|
|
8550
8575
|
sys: {
|
|
@@ -8635,6 +8660,7 @@ export declare const ExperimentEntry: {
|
|
|
8635
8660
|
}, {
|
|
8636
8661
|
nt_name: string;
|
|
8637
8662
|
nt_type: string;
|
|
8663
|
+
nt_experience_id: string;
|
|
8638
8664
|
nt_description?: string | null | undefined;
|
|
8639
8665
|
nt_config?: {
|
|
8640
8666
|
distribution?: number[] | undefined;
|
|
@@ -9667,6 +9693,7 @@ export declare const ExperimentEntry: {
|
|
|
9667
9693
|
}[];
|
|
9668
9694
|
} | undefined;
|
|
9669
9695
|
}>, "many">>;
|
|
9696
|
+
nt_experience_id: z.ZodString;
|
|
9670
9697
|
}, "strip", z.ZodTypeAny, {
|
|
9671
9698
|
nt_name: string;
|
|
9672
9699
|
nt_type: string;
|
|
@@ -9696,6 +9723,7 @@ export declare const ExperimentEntry: {
|
|
|
9696
9723
|
})[];
|
|
9697
9724
|
sticky: boolean;
|
|
9698
9725
|
};
|
|
9726
|
+
nt_experience_id: string;
|
|
9699
9727
|
nt_description?: string | null | undefined;
|
|
9700
9728
|
nt_audience?: {
|
|
9701
9729
|
sys: {
|
|
@@ -9786,6 +9814,7 @@ export declare const ExperimentEntry: {
|
|
|
9786
9814
|
}, {
|
|
9787
9815
|
nt_name: string;
|
|
9788
9816
|
nt_type: string;
|
|
9817
|
+
nt_experience_id: string;
|
|
9789
9818
|
nt_description?: string | null | undefined;
|
|
9790
9819
|
nt_config?: {
|
|
9791
9820
|
distribution?: number[] | undefined;
|
|
@@ -10623,6 +10652,7 @@ export declare const ExperimentEntry: {
|
|
|
10623
10652
|
}[];
|
|
10624
10653
|
} | undefined;
|
|
10625
10654
|
}>, "many">>;
|
|
10655
|
+
nt_experience_id: z.ZodString;
|
|
10626
10656
|
}, {
|
|
10627
10657
|
nt_type: z.ZodString;
|
|
10628
10658
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10654,6 +10684,7 @@ export declare const ExperimentEntry: {
|
|
|
10654
10684
|
})[];
|
|
10655
10685
|
sticky: boolean;
|
|
10656
10686
|
};
|
|
10687
|
+
nt_experience_id: string;
|
|
10657
10688
|
nt_description?: string | null | undefined;
|
|
10658
10689
|
nt_audience?: {
|
|
10659
10690
|
sys: {
|
|
@@ -10744,6 +10775,7 @@ export declare const ExperimentEntry: {
|
|
|
10744
10775
|
}, {
|
|
10745
10776
|
nt_name: string;
|
|
10746
10777
|
nt_type: string;
|
|
10778
|
+
nt_experience_id: string;
|
|
10747
10779
|
nt_description?: string | null | undefined;
|
|
10748
10780
|
nt_config?: {
|
|
10749
10781
|
distribution?: number[] | undefined;
|
|
@@ -11775,6 +11807,7 @@ export declare const ExperimentEntry: {
|
|
|
11775
11807
|
}[];
|
|
11776
11808
|
} | undefined;
|
|
11777
11809
|
}>, "many">>;
|
|
11810
|
+
nt_experience_id: z.ZodString;
|
|
11778
11811
|
}, "strip", z.ZodTypeAny, {
|
|
11779
11812
|
nt_name: string;
|
|
11780
11813
|
nt_type: string;
|
|
@@ -11804,6 +11837,7 @@ export declare const ExperimentEntry: {
|
|
|
11804
11837
|
})[];
|
|
11805
11838
|
sticky: boolean;
|
|
11806
11839
|
};
|
|
11840
|
+
nt_experience_id: string;
|
|
11807
11841
|
nt_description?: string | null | undefined;
|
|
11808
11842
|
nt_audience?: {
|
|
11809
11843
|
sys: {
|
|
@@ -11894,6 +11928,7 @@ export declare const ExperimentEntry: {
|
|
|
11894
11928
|
}, {
|
|
11895
11929
|
nt_name: string;
|
|
11896
11930
|
nt_type: string;
|
|
11931
|
+
nt_experience_id: string;
|
|
11897
11932
|
nt_description?: string | null | undefined;
|
|
11898
11933
|
nt_config?: {
|
|
11899
11934
|
distribution?: number[] | undefined;
|
|
@@ -12731,6 +12766,7 @@ export declare const ExperimentEntry: {
|
|
|
12731
12766
|
}[];
|
|
12732
12767
|
} | undefined;
|
|
12733
12768
|
}>, "many">>;
|
|
12769
|
+
nt_experience_id: z.ZodString;
|
|
12734
12770
|
}, {
|
|
12735
12771
|
nt_type: z.ZodString;
|
|
12736
12772
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -12762,6 +12798,7 @@ export declare const ExperimentEntry: {
|
|
|
12762
12798
|
})[];
|
|
12763
12799
|
sticky: boolean;
|
|
12764
12800
|
};
|
|
12801
|
+
nt_experience_id: string;
|
|
12765
12802
|
nt_description?: string | null | undefined;
|
|
12766
12803
|
nt_audience?: {
|
|
12767
12804
|
sys: {
|
|
@@ -12852,6 +12889,7 @@ export declare const ExperimentEntry: {
|
|
|
12852
12889
|
}, {
|
|
12853
12890
|
nt_name: string;
|
|
12854
12891
|
nt_type: string;
|
|
12892
|
+
nt_experience_id: string;
|
|
12855
12893
|
nt_description?: string | null | undefined;
|
|
12856
12894
|
nt_config?: {
|
|
12857
12895
|
distribution?: number[] | undefined;
|
|
@@ -13883,6 +13921,7 @@ export declare const ExperimentEntry: {
|
|
|
13883
13921
|
}[];
|
|
13884
13922
|
} | undefined;
|
|
13885
13923
|
}>, "many">>;
|
|
13924
|
+
nt_experience_id: z.ZodString;
|
|
13886
13925
|
}, "strip", z.ZodTypeAny, {
|
|
13887
13926
|
nt_name: string;
|
|
13888
13927
|
nt_type: string;
|
|
@@ -13912,6 +13951,7 @@ export declare const ExperimentEntry: {
|
|
|
13912
13951
|
})[];
|
|
13913
13952
|
sticky: boolean;
|
|
13914
13953
|
};
|
|
13954
|
+
nt_experience_id: string;
|
|
13915
13955
|
nt_description?: string | null | undefined;
|
|
13916
13956
|
nt_audience?: {
|
|
13917
13957
|
sys: {
|
|
@@ -14002,6 +14042,7 @@ export declare const ExperimentEntry: {
|
|
|
14002
14042
|
}, {
|
|
14003
14043
|
nt_name: string;
|
|
14004
14044
|
nt_type: string;
|
|
14045
|
+
nt_experience_id: string;
|
|
14005
14046
|
nt_description?: string | null | undefined;
|
|
14006
14047
|
nt_config?: {
|
|
14007
14048
|
distribution?: number[] | undefined;
|
|
@@ -14839,6 +14880,7 @@ export declare const ExperimentEntry: {
|
|
|
14839
14880
|
}[];
|
|
14840
14881
|
} | undefined;
|
|
14841
14882
|
}>, "many">>;
|
|
14883
|
+
nt_experience_id: z.ZodString;
|
|
14842
14884
|
}, {
|
|
14843
14885
|
nt_type: z.ZodString;
|
|
14844
14886
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -14870,6 +14912,7 @@ export declare const ExperimentEntry: {
|
|
|
14870
14912
|
})[];
|
|
14871
14913
|
sticky: boolean;
|
|
14872
14914
|
};
|
|
14915
|
+
nt_experience_id: string;
|
|
14873
14916
|
nt_description?: string | null | undefined;
|
|
14874
14917
|
nt_audience?: {
|
|
14875
14918
|
sys: {
|
|
@@ -14960,6 +15003,7 @@ export declare const ExperimentEntry: {
|
|
|
14960
15003
|
}, {
|
|
14961
15004
|
nt_name: string;
|
|
14962
15005
|
nt_type: string;
|
|
15006
|
+
nt_experience_id: string;
|
|
14963
15007
|
nt_description?: string | null | undefined;
|
|
14964
15008
|
nt_config?: {
|
|
14965
15009
|
distribution?: number[] | undefined;
|
|
@@ -15991,6 +16035,7 @@ export declare const ExperimentEntry: {
|
|
|
15991
16035
|
}[];
|
|
15992
16036
|
} | undefined;
|
|
15993
16037
|
}>, "many">>;
|
|
16038
|
+
nt_experience_id: z.ZodString;
|
|
15994
16039
|
}, "strip", z.ZodTypeAny, {
|
|
15995
16040
|
nt_name: string;
|
|
15996
16041
|
nt_type: string;
|
|
@@ -16020,6 +16065,7 @@ export declare const ExperimentEntry: {
|
|
|
16020
16065
|
})[];
|
|
16021
16066
|
sticky: boolean;
|
|
16022
16067
|
};
|
|
16068
|
+
nt_experience_id: string;
|
|
16023
16069
|
nt_description?: string | null | undefined;
|
|
16024
16070
|
nt_audience?: {
|
|
16025
16071
|
sys: {
|
|
@@ -16110,6 +16156,7 @@ export declare const ExperimentEntry: {
|
|
|
16110
16156
|
}, {
|
|
16111
16157
|
nt_name: string;
|
|
16112
16158
|
nt_type: string;
|
|
16159
|
+
nt_experience_id: string;
|
|
16113
16160
|
nt_description?: string | null | undefined;
|
|
16114
16161
|
nt_config?: {
|
|
16115
16162
|
distribution?: number[] | undefined;
|
|
@@ -16947,6 +16994,7 @@ export declare const ExperimentEntry: {
|
|
|
16947
16994
|
}[];
|
|
16948
16995
|
} | undefined;
|
|
16949
16996
|
}>, "many">>;
|
|
16997
|
+
nt_experience_id: z.ZodString;
|
|
16950
16998
|
}, {
|
|
16951
16999
|
nt_type: z.ZodString;
|
|
16952
17000
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -16978,6 +17026,7 @@ export declare const ExperimentEntry: {
|
|
|
16978
17026
|
})[];
|
|
16979
17027
|
sticky: boolean;
|
|
16980
17028
|
};
|
|
17029
|
+
nt_experience_id: string;
|
|
16981
17030
|
nt_description?: string | null | undefined;
|
|
16982
17031
|
nt_audience?: {
|
|
16983
17032
|
sys: {
|
|
@@ -17068,6 +17117,7 @@ export declare const ExperimentEntry: {
|
|
|
17068
17117
|
}, {
|
|
17069
17118
|
nt_name: string;
|
|
17070
17119
|
nt_type: string;
|
|
17120
|
+
nt_experience_id: string;
|
|
17071
17121
|
nt_description?: string | null | undefined;
|
|
17072
17122
|
nt_config?: {
|
|
17073
17123
|
distribution?: number[] | undefined;
|
|
@@ -18099,6 +18149,7 @@ export declare const ExperimentEntry: {
|
|
|
18099
18149
|
}[];
|
|
18100
18150
|
} | undefined;
|
|
18101
18151
|
}>, "many">>;
|
|
18152
|
+
nt_experience_id: z.ZodString;
|
|
18102
18153
|
}, "strip", z.ZodTypeAny, {
|
|
18103
18154
|
nt_name: string;
|
|
18104
18155
|
nt_type: string;
|
|
@@ -18128,6 +18179,7 @@ export declare const ExperimentEntry: {
|
|
|
18128
18179
|
})[];
|
|
18129
18180
|
sticky: boolean;
|
|
18130
18181
|
};
|
|
18182
|
+
nt_experience_id: string;
|
|
18131
18183
|
nt_description?: string | null | undefined;
|
|
18132
18184
|
nt_audience?: {
|
|
18133
18185
|
sys: {
|
|
@@ -18218,6 +18270,7 @@ export declare const ExperimentEntry: {
|
|
|
18218
18270
|
}, {
|
|
18219
18271
|
nt_name: string;
|
|
18220
18272
|
nt_type: string;
|
|
18273
|
+
nt_experience_id: string;
|
|
18221
18274
|
nt_description?: string | null | undefined;
|
|
18222
18275
|
nt_config?: {
|
|
18223
18276
|
distribution?: number[] | undefined;
|
|
@@ -19055,6 +19108,7 @@ export declare const ExperimentEntry: {
|
|
|
19055
19108
|
}[];
|
|
19056
19109
|
} | undefined;
|
|
19057
19110
|
}>, "many">>;
|
|
19111
|
+
nt_experience_id: z.ZodString;
|
|
19058
19112
|
}, {
|
|
19059
19113
|
nt_type: z.ZodString;
|
|
19060
19114
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -19086,6 +19140,7 @@ export declare const ExperimentEntry: {
|
|
|
19086
19140
|
})[];
|
|
19087
19141
|
sticky: boolean;
|
|
19088
19142
|
};
|
|
19143
|
+
nt_experience_id: string;
|
|
19089
19144
|
nt_description?: string | null | undefined;
|
|
19090
19145
|
nt_audience?: {
|
|
19091
19146
|
sys: {
|
|
@@ -19176,6 +19231,7 @@ export declare const ExperimentEntry: {
|
|
|
19176
19231
|
}, {
|
|
19177
19232
|
nt_name: string;
|
|
19178
19233
|
nt_type: string;
|
|
19234
|
+
nt_experience_id: string;
|
|
19179
19235
|
nt_description?: string | null | undefined;
|
|
19180
19236
|
nt_config?: {
|
|
19181
19237
|
distribution?: number[] | undefined;
|
|
@@ -19330,6 +19386,7 @@ export declare const ExperimentEntry: {
|
|
|
19330
19386
|
})[];
|
|
19331
19387
|
sticky: boolean;
|
|
19332
19388
|
};
|
|
19389
|
+
nt_experience_id: string;
|
|
19333
19390
|
nt_description?: string | null | undefined;
|
|
19334
19391
|
nt_audience?: {
|
|
19335
19392
|
sys: {
|
|
@@ -19487,6 +19544,7 @@ export declare const ExperimentEntry: {
|
|
|
19487
19544
|
})[];
|
|
19488
19545
|
sticky: boolean;
|
|
19489
19546
|
};
|
|
19547
|
+
nt_experience_id: string;
|
|
19490
19548
|
nt_description?: string | null | undefined;
|
|
19491
19549
|
nt_audience?: {
|
|
19492
19550
|
sys: {
|
|
@@ -19618,6 +19676,7 @@ export declare const ExperimentEntry: {
|
|
|
19618
19676
|
fields: {
|
|
19619
19677
|
nt_name: string;
|
|
19620
19678
|
nt_type: string;
|
|
19679
|
+
nt_experience_id: string;
|
|
19621
19680
|
nt_description?: string | null | undefined;
|
|
19622
19681
|
nt_config?: {
|
|
19623
19682
|
distribution?: number[] | undefined;
|
|
@@ -20659,6 +20718,7 @@ export declare const ExperimentEntry: {
|
|
|
20659
20718
|
}[];
|
|
20660
20719
|
} | undefined;
|
|
20661
20720
|
}>, "many">>;
|
|
20721
|
+
nt_experience_id: z.ZodString;
|
|
20662
20722
|
}, "strip", z.ZodTypeAny, {
|
|
20663
20723
|
nt_name: string;
|
|
20664
20724
|
nt_type: string;
|
|
@@ -20688,6 +20748,7 @@ export declare const ExperimentEntry: {
|
|
|
20688
20748
|
})[];
|
|
20689
20749
|
sticky: boolean;
|
|
20690
20750
|
};
|
|
20751
|
+
nt_experience_id: string;
|
|
20691
20752
|
nt_description?: string | null | undefined;
|
|
20692
20753
|
nt_audience?: {
|
|
20693
20754
|
sys: {
|
|
@@ -20778,6 +20839,7 @@ export declare const ExperimentEntry: {
|
|
|
20778
20839
|
}, {
|
|
20779
20840
|
nt_name: string;
|
|
20780
20841
|
nt_type: string;
|
|
20842
|
+
nt_experience_id: string;
|
|
20781
20843
|
nt_description?: string | null | undefined;
|
|
20782
20844
|
nt_config?: {
|
|
20783
20845
|
distribution?: number[] | undefined;
|
|
@@ -21615,6 +21677,7 @@ export declare const ExperimentEntry: {
|
|
|
21615
21677
|
}[];
|
|
21616
21678
|
} | undefined;
|
|
21617
21679
|
}>, "many">>;
|
|
21680
|
+
nt_experience_id: z.ZodString;
|
|
21618
21681
|
}, {
|
|
21619
21682
|
nt_type: z.ZodString;
|
|
21620
21683
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -21646,6 +21709,7 @@ export declare const ExperimentEntry: {
|
|
|
21646
21709
|
})[];
|
|
21647
21710
|
sticky: boolean;
|
|
21648
21711
|
};
|
|
21712
|
+
nt_experience_id: string;
|
|
21649
21713
|
nt_description?: string | null | undefined;
|
|
21650
21714
|
nt_audience?: {
|
|
21651
21715
|
sys: {
|
|
@@ -21736,6 +21800,7 @@ export declare const ExperimentEntry: {
|
|
|
21736
21800
|
}, {
|
|
21737
21801
|
nt_name: string;
|
|
21738
21802
|
nt_type: string;
|
|
21803
|
+
nt_experience_id: string;
|
|
21739
21804
|
nt_description?: string | null | undefined;
|
|
21740
21805
|
nt_config?: {
|
|
21741
21806
|
distribution?: number[] | undefined;
|
|
@@ -21864,6 +21929,7 @@ export declare const ExperimentEntry: {
|
|
|
21864
21929
|
fields: {
|
|
21865
21930
|
nt_name: string;
|
|
21866
21931
|
nt_type: string;
|
|
21932
|
+
nt_experience_id: string;
|
|
21867
21933
|
nt_description?: string | null | undefined;
|
|
21868
21934
|
nt_config?: {
|
|
21869
21935
|
distribution?: number[] | undefined;
|
|
@@ -22026,6 +22092,7 @@ export declare const ExperimentEntry: {
|
|
|
22026
22092
|
})[];
|
|
22027
22093
|
sticky: boolean;
|
|
22028
22094
|
};
|
|
22095
|
+
nt_experience_id: string;
|
|
22029
22096
|
nt_description?: string | null | undefined;
|
|
22030
22097
|
nt_audience?: {
|
|
22031
22098
|
sys: {
|