@ninetailed/experience.js-utils-contentful 7.23.1 → 7.24.0
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/src/types/BaselineWithExperiencesEntry.d.ts +57 -57
- package/src/types/ExperienceEntry.d.ts +243 -243
- package/src/types/ExperimentEntry.d.ts +432 -432
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ninetailed/experience.js-utils-contentful",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.24.0",
|
|
4
4
|
"description": "Contentful utilities for Experience.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"contentful": "^11.10.2",
|
|
32
32
|
"@contentful/rich-text-types": "17.2.5",
|
|
33
|
-
"@ninetailed/experience.js-utils": "7.
|
|
34
|
-
"@ninetailed/experience.js-shared": "7.
|
|
33
|
+
"@ninetailed/experience.js-utils": "7.24.0",
|
|
34
|
+
"@ninetailed/experience.js-shared": "7.24.0",
|
|
35
35
|
"zod": "3.23.0"
|
|
36
36
|
},
|
|
37
37
|
"resolutions": {
|
|
@@ -250,31 +250,31 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
250
250
|
}>, z.ZodObject<{
|
|
251
251
|
type: z.ZodLiteral<import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable>;
|
|
252
252
|
key: z.ZodString;
|
|
253
|
-
valueType: z.ZodNativeEnum<typeof import("
|
|
253
|
+
valueType: z.ZodNativeEnum<typeof import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum>;
|
|
254
254
|
baseline: z.ZodObject<{
|
|
255
|
-
value: z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodType<import("
|
|
255
|
+
value: z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodType<import("dist/packages/sdks/shared").Properties, z.ZodTypeDef, unknown>]>;
|
|
256
256
|
}, "strip", z.ZodTypeAny, {
|
|
257
|
-
value: string | number | boolean | import("
|
|
257
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
258
258
|
}, {
|
|
259
259
|
value?: unknown;
|
|
260
260
|
}>;
|
|
261
261
|
variants: z.ZodArray<z.ZodObject<{
|
|
262
|
-
value: z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodType<import("
|
|
262
|
+
value: z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodType<import("dist/packages/sdks/shared").Properties, z.ZodTypeDef, unknown>]>;
|
|
263
263
|
}, "strip", z.ZodTypeAny, {
|
|
264
|
-
value: string | number | boolean | import("
|
|
264
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
265
265
|
}, {
|
|
266
266
|
value?: unknown;
|
|
267
267
|
}>, "many">;
|
|
268
268
|
}, "strip", z.ZodTypeAny, {
|
|
269
269
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
270
270
|
baseline: {
|
|
271
|
-
value: string | number | boolean | import("
|
|
271
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
272
272
|
};
|
|
273
273
|
variants: {
|
|
274
|
-
value: string | number | boolean | import("
|
|
274
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
275
275
|
}[];
|
|
276
276
|
key: string;
|
|
277
|
-
valueType: import("
|
|
277
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
278
278
|
}, {
|
|
279
279
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
280
280
|
baseline: {
|
|
@@ -284,7 +284,7 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
284
284
|
value?: unknown;
|
|
285
285
|
}[];
|
|
286
286
|
key: string;
|
|
287
|
-
valueType: import("
|
|
287
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
288
288
|
}>]>, {
|
|
289
289
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.EntryReplacement;
|
|
290
290
|
baseline: {
|
|
@@ -298,13 +298,13 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
298
298
|
} | {
|
|
299
299
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
300
300
|
baseline: {
|
|
301
|
-
value: string | number | boolean | import("
|
|
301
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
302
302
|
};
|
|
303
303
|
variants: {
|
|
304
|
-
value: string | number | boolean | import("
|
|
304
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
305
305
|
}[];
|
|
306
306
|
key: string;
|
|
307
|
-
valueType: import("
|
|
307
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
308
308
|
}, unknown>, "many">>>;
|
|
309
309
|
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
310
310
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -323,13 +323,13 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
323
323
|
} | {
|
|
324
324
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
325
325
|
baseline: {
|
|
326
|
-
value: string | number | boolean | import("
|
|
326
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
327
327
|
};
|
|
328
328
|
variants: {
|
|
329
|
-
value: string | number | boolean | import("
|
|
329
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
330
330
|
}[];
|
|
331
331
|
key: string;
|
|
332
|
-
valueType: import("
|
|
332
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
333
333
|
})[];
|
|
334
334
|
sticky: boolean;
|
|
335
335
|
}, {
|
|
@@ -353,13 +353,13 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
353
353
|
} | {
|
|
354
354
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
355
355
|
baseline: {
|
|
356
|
-
value: string | number | boolean | import("
|
|
356
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
357
357
|
};
|
|
358
358
|
variants: {
|
|
359
|
-
value: string | number | boolean | import("
|
|
359
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
360
360
|
}[];
|
|
361
361
|
key: string;
|
|
362
|
-
valueType: import("
|
|
362
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
363
363
|
})[];
|
|
364
364
|
sticky: boolean;
|
|
365
365
|
}, {
|
|
@@ -960,13 +960,13 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
960
960
|
} | {
|
|
961
961
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
962
962
|
baseline: {
|
|
963
|
-
value: string | number | boolean | import("
|
|
963
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
964
964
|
};
|
|
965
965
|
variants: {
|
|
966
|
-
value: string | number | boolean | import("
|
|
966
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
967
967
|
}[];
|
|
968
968
|
key: string;
|
|
969
|
-
valueType: import("
|
|
969
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
970
970
|
})[];
|
|
971
971
|
sticky: boolean;
|
|
972
972
|
};
|
|
@@ -1176,13 +1176,13 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
1176
1176
|
} | {
|
|
1177
1177
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
1178
1178
|
baseline: {
|
|
1179
|
-
value: string | number | boolean | import("
|
|
1179
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
1180
1180
|
};
|
|
1181
1181
|
variants: {
|
|
1182
|
-
value: string | number | boolean | import("
|
|
1182
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
1183
1183
|
}[];
|
|
1184
1184
|
key: string;
|
|
1185
|
-
valueType: import("
|
|
1185
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
1186
1186
|
})[];
|
|
1187
1187
|
sticky: boolean;
|
|
1188
1188
|
};
|
|
@@ -1472,13 +1472,13 @@ declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.objectUtil.exten
|
|
|
1472
1472
|
} | {
|
|
1473
1473
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
1474
1474
|
baseline: {
|
|
1475
|
-
value: string | number | boolean | import("
|
|
1475
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
1476
1476
|
};
|
|
1477
1477
|
variants: {
|
|
1478
|
-
value: string | number | boolean | import("
|
|
1478
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
1479
1479
|
}[];
|
|
1480
1480
|
key: string;
|
|
1481
|
-
valueType: import("
|
|
1481
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
1482
1482
|
})[];
|
|
1483
1483
|
sticky: boolean;
|
|
1484
1484
|
};
|
|
@@ -2199,31 +2199,31 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
2199
2199
|
}>, z.ZodObject<{
|
|
2200
2200
|
type: z.ZodLiteral<import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable>;
|
|
2201
2201
|
key: z.ZodString;
|
|
2202
|
-
valueType: z.ZodNativeEnum<typeof import("
|
|
2202
|
+
valueType: z.ZodNativeEnum<typeof import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum>;
|
|
2203
2203
|
baseline: z.ZodObject<{
|
|
2204
|
-
value: z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodType<import("
|
|
2204
|
+
value: z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodType<import("dist/packages/sdks/shared").Properties, z.ZodTypeDef, unknown>]>;
|
|
2205
2205
|
}, "strip", z.ZodTypeAny, {
|
|
2206
|
-
value: string | number | boolean | import("
|
|
2206
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
2207
2207
|
}, {
|
|
2208
2208
|
value?: unknown;
|
|
2209
2209
|
}>;
|
|
2210
2210
|
variants: z.ZodArray<z.ZodObject<{
|
|
2211
|
-
value: z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodType<import("
|
|
2211
|
+
value: z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodType<import("dist/packages/sdks/shared").Properties, z.ZodTypeDef, unknown>]>;
|
|
2212
2212
|
}, "strip", z.ZodTypeAny, {
|
|
2213
|
-
value: string | number | boolean | import("
|
|
2213
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
2214
2214
|
}, {
|
|
2215
2215
|
value?: unknown;
|
|
2216
2216
|
}>, "many">;
|
|
2217
2217
|
}, "strip", z.ZodTypeAny, {
|
|
2218
2218
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
2219
2219
|
baseline: {
|
|
2220
|
-
value: string | number | boolean | import("
|
|
2220
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
2221
2221
|
};
|
|
2222
2222
|
variants: {
|
|
2223
|
-
value: string | number | boolean | import("
|
|
2223
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
2224
2224
|
}[];
|
|
2225
2225
|
key: string;
|
|
2226
|
-
valueType: import("
|
|
2226
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
2227
2227
|
}, {
|
|
2228
2228
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
2229
2229
|
baseline: {
|
|
@@ -2233,7 +2233,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
2233
2233
|
value?: unknown;
|
|
2234
2234
|
}[];
|
|
2235
2235
|
key: string;
|
|
2236
|
-
valueType: import("
|
|
2236
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
2237
2237
|
}>]>, {
|
|
2238
2238
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.EntryReplacement;
|
|
2239
2239
|
baseline: {
|
|
@@ -2247,13 +2247,13 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
2247
2247
|
} | {
|
|
2248
2248
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
2249
2249
|
baseline: {
|
|
2250
|
-
value: string | number | boolean | import("
|
|
2250
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
2251
2251
|
};
|
|
2252
2252
|
variants: {
|
|
2253
|
-
value: string | number | boolean | import("
|
|
2253
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
2254
2254
|
}[];
|
|
2255
2255
|
key: string;
|
|
2256
|
-
valueType: import("
|
|
2256
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
2257
2257
|
}, unknown>, "many">>>;
|
|
2258
2258
|
sticky: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2259
2259
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2272,13 +2272,13 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
2272
2272
|
} | {
|
|
2273
2273
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
2274
2274
|
baseline: {
|
|
2275
|
-
value: string | number | boolean | import("
|
|
2275
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
2276
2276
|
};
|
|
2277
2277
|
variants: {
|
|
2278
|
-
value: string | number | boolean | import("
|
|
2278
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
2279
2279
|
}[];
|
|
2280
2280
|
key: string;
|
|
2281
|
-
valueType: import("
|
|
2281
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
2282
2282
|
})[];
|
|
2283
2283
|
sticky: boolean;
|
|
2284
2284
|
}, {
|
|
@@ -2302,13 +2302,13 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
2302
2302
|
} | {
|
|
2303
2303
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
2304
2304
|
baseline: {
|
|
2305
|
-
value: string | number | boolean | import("
|
|
2305
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
2306
2306
|
};
|
|
2307
2307
|
variants: {
|
|
2308
|
-
value: string | number | boolean | import("
|
|
2308
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
2309
2309
|
}[];
|
|
2310
2310
|
key: string;
|
|
2311
|
-
valueType: import("
|
|
2311
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
2312
2312
|
})[];
|
|
2313
2313
|
sticky: boolean;
|
|
2314
2314
|
}, {
|
|
@@ -2909,13 +2909,13 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
2909
2909
|
} | {
|
|
2910
2910
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
2911
2911
|
baseline: {
|
|
2912
|
-
value: string | number | boolean | import("
|
|
2912
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
2913
2913
|
};
|
|
2914
2914
|
variants: {
|
|
2915
|
-
value: string | number | boolean | import("
|
|
2915
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
2916
2916
|
}[];
|
|
2917
2917
|
key: string;
|
|
2918
|
-
valueType: import("
|
|
2918
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
2919
2919
|
})[];
|
|
2920
2920
|
sticky: boolean;
|
|
2921
2921
|
};
|
|
@@ -3125,13 +3125,13 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
3125
3125
|
} | {
|
|
3126
3126
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
3127
3127
|
baseline: {
|
|
3128
|
-
value: string | number | boolean | import("
|
|
3128
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
3129
3129
|
};
|
|
3130
3130
|
variants: {
|
|
3131
|
-
value: string | number | boolean | import("
|
|
3131
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
3132
3132
|
}[];
|
|
3133
3133
|
key: string;
|
|
3134
|
-
valueType: import("
|
|
3134
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
3135
3135
|
})[];
|
|
3136
3136
|
sticky: boolean;
|
|
3137
3137
|
};
|
|
@@ -3421,13 +3421,13 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
3421
3421
|
} | {
|
|
3422
3422
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
3423
3423
|
baseline: {
|
|
3424
|
-
value: string | number | boolean | import("
|
|
3424
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
3425
3425
|
};
|
|
3426
3426
|
variants: {
|
|
3427
|
-
value: string | number | boolean | import("
|
|
3427
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
3428
3428
|
}[];
|
|
3429
3429
|
key: string;
|
|
3430
|
-
valueType: import("
|
|
3430
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
3431
3431
|
})[];
|
|
3432
3432
|
sticky: boolean;
|
|
3433
3433
|
};
|
|
@@ -3721,13 +3721,13 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.objectUti
|
|
|
3721
3721
|
} | {
|
|
3722
3722
|
type: import("dist/packages/utils/javascript/src/types/Config").ComponentTypeEnum.InlineVariable;
|
|
3723
3723
|
baseline: {
|
|
3724
|
-
value: string | number | boolean | import("
|
|
3724
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
3725
3725
|
};
|
|
3726
3726
|
variants: {
|
|
3727
|
-
value: string | number | boolean | import("
|
|
3727
|
+
value: string | number | boolean | import("dist/packages/sdks/shared").Properties;
|
|
3728
3728
|
}[];
|
|
3729
3729
|
key: string;
|
|
3730
|
-
valueType: import("
|
|
3730
|
+
valueType: import("dist/packages/sdks/shared").InlineVariableComponentValueTypeEnum;
|
|
3731
3731
|
})[];
|
|
3732
3732
|
sticky: boolean;
|
|
3733
3733
|
};
|