@financial-times/content-curation-client 3.2.0 → 4.0.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/dist/_tsup-dts-rollup.d.cts +448 -1293
- package/dist/_tsup-dts-rollup.d.ts +448 -1293
- package/dist/index.cjs +11 -18
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -3
- package/dist/index.d.ts +1 -3
- package/dist/index.js +11 -18
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -259,133 +259,6 @@ export declare class BaseApiClient {
|
|
|
259
259
|
protected put<ReqSchema extends ZodTypeAny, ResponseDataSchema extends ZodTypeAny>(path: string, body: z.infer<ReqSchema>, requestSchema: ReqSchema, responseDataSchema: ResponseDataSchema): Promise<z.infer<ResponseDataSchema>>;
|
|
260
260
|
}
|
|
261
261
|
|
|
262
|
-
declare const CustomIframeSlice: {
|
|
263
|
-
InputSchema: z.ZodObject<{
|
|
264
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
265
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
266
|
-
properties: z.ZodObject<{
|
|
267
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
268
|
-
text: z.ZodString;
|
|
269
|
-
href: z.ZodOptional<z.ZodString>;
|
|
270
|
-
}, "strip", z.ZodTypeAny, {
|
|
271
|
-
text: string;
|
|
272
|
-
href?: string | undefined;
|
|
273
|
-
}, {
|
|
274
|
-
text: string;
|
|
275
|
-
href?: string | undefined;
|
|
276
|
-
}>>;
|
|
277
|
-
} & {
|
|
278
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
279
|
-
} & {
|
|
280
|
-
iframeSrc: z.ZodString;
|
|
281
|
-
}, "strip", z.ZodTypeAny, {
|
|
282
|
-
displayBehaviour: "standalone" | "associated";
|
|
283
|
-
iframeSrc: string;
|
|
284
|
-
heading?: {
|
|
285
|
-
text: string;
|
|
286
|
-
href?: string | undefined;
|
|
287
|
-
} | undefined;
|
|
288
|
-
}, {
|
|
289
|
-
displayBehaviour: "standalone" | "associated";
|
|
290
|
-
iframeSrc: string;
|
|
291
|
-
heading?: {
|
|
292
|
-
text: string;
|
|
293
|
-
href?: string | undefined;
|
|
294
|
-
} | undefined;
|
|
295
|
-
}>;
|
|
296
|
-
} & {
|
|
297
|
-
sliceId: z.ZodOptional<z.ZodString>;
|
|
298
|
-
}, "strip", z.ZodTypeAny, {
|
|
299
|
-
type: "CustomIframe";
|
|
300
|
-
properties: {
|
|
301
|
-
displayBehaviour: "standalone" | "associated";
|
|
302
|
-
iframeSrc: string;
|
|
303
|
-
heading?: {
|
|
304
|
-
text: string;
|
|
305
|
-
href?: string | undefined;
|
|
306
|
-
} | undefined;
|
|
307
|
-
};
|
|
308
|
-
hidden?: boolean | undefined;
|
|
309
|
-
sliceId?: string | undefined;
|
|
310
|
-
}, {
|
|
311
|
-
type: "CustomIframe";
|
|
312
|
-
properties: {
|
|
313
|
-
displayBehaviour: "standalone" | "associated";
|
|
314
|
-
iframeSrc: string;
|
|
315
|
-
heading?: {
|
|
316
|
-
text: string;
|
|
317
|
-
href?: string | undefined;
|
|
318
|
-
} | undefined;
|
|
319
|
-
};
|
|
320
|
-
hidden?: boolean | undefined;
|
|
321
|
-
sliceId?: string | undefined;
|
|
322
|
-
}>;
|
|
323
|
-
OutputSchema: z.ZodObject<{
|
|
324
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
325
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
326
|
-
properties: z.ZodObject<{
|
|
327
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
328
|
-
text: z.ZodString;
|
|
329
|
-
href: z.ZodOptional<z.ZodString>;
|
|
330
|
-
}, "strip", z.ZodTypeAny, {
|
|
331
|
-
text: string;
|
|
332
|
-
href?: string | undefined;
|
|
333
|
-
}, {
|
|
334
|
-
text: string;
|
|
335
|
-
href?: string | undefined;
|
|
336
|
-
}>>;
|
|
337
|
-
} & {
|
|
338
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
339
|
-
} & {
|
|
340
|
-
iframeSrc: z.ZodString;
|
|
341
|
-
}, "strip", z.ZodTypeAny, {
|
|
342
|
-
displayBehaviour: "standalone" | "associated";
|
|
343
|
-
iframeSrc: string;
|
|
344
|
-
heading?: {
|
|
345
|
-
text: string;
|
|
346
|
-
href?: string | undefined;
|
|
347
|
-
} | undefined;
|
|
348
|
-
}, {
|
|
349
|
-
displayBehaviour: "standalone" | "associated";
|
|
350
|
-
iframeSrc: string;
|
|
351
|
-
heading?: {
|
|
352
|
-
text: string;
|
|
353
|
-
href?: string | undefined;
|
|
354
|
-
} | undefined;
|
|
355
|
-
}>;
|
|
356
|
-
} & {
|
|
357
|
-
sliceId: z.ZodString;
|
|
358
|
-
}, "strip", z.ZodTypeAny, {
|
|
359
|
-
type: "CustomIframe";
|
|
360
|
-
properties: {
|
|
361
|
-
displayBehaviour: "standalone" | "associated";
|
|
362
|
-
iframeSrc: string;
|
|
363
|
-
heading?: {
|
|
364
|
-
text: string;
|
|
365
|
-
href?: string | undefined;
|
|
366
|
-
} | undefined;
|
|
367
|
-
};
|
|
368
|
-
sliceId: string;
|
|
369
|
-
hidden?: boolean | undefined;
|
|
370
|
-
}, {
|
|
371
|
-
type: "CustomIframe";
|
|
372
|
-
properties: {
|
|
373
|
-
displayBehaviour: "standalone" | "associated";
|
|
374
|
-
iframeSrc: string;
|
|
375
|
-
heading?: {
|
|
376
|
-
text: string;
|
|
377
|
-
href?: string | undefined;
|
|
378
|
-
} | undefined;
|
|
379
|
-
};
|
|
380
|
-
sliceId: string;
|
|
381
|
-
hidden?: boolean | undefined;
|
|
382
|
-
}>;
|
|
383
|
-
};
|
|
384
|
-
|
|
385
|
-
declare type CustomIframeSliceType = z.infer<typeof CustomIframeSlice.OutputSchema>;
|
|
386
|
-
export { CustomIframeSliceType }
|
|
387
|
-
export { CustomIframeSliceType as CustomIframeSliceType_alias_1 }
|
|
388
|
-
|
|
389
262
|
export declare const default_alias: Options | Options[] | ((overrideOptions: Options) => Options | Options[] | Promise<Options | Options[]>);
|
|
390
263
|
|
|
391
264
|
declare type Draft = z.infer<typeof DraftSchema>;
|
|
@@ -521,7 +394,7 @@ declare const DraftSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
521
394
|
} | undefined;
|
|
522
395
|
} | undefined;
|
|
523
396
|
}>, z.ZodObject<{
|
|
524
|
-
type: z.ZodLiteral<"
|
|
397
|
+
type: z.ZodLiteral<"Interactive">;
|
|
525
398
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
526
399
|
properties: z.ZodObject<{
|
|
527
400
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -534,112 +407,62 @@ declare const DraftSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
534
407
|
text: string;
|
|
535
408
|
href?: string | undefined;
|
|
536
409
|
}>>;
|
|
537
|
-
} & {
|
|
538
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
539
410
|
} & {
|
|
540
411
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
541
412
|
flourishId: z.ZodString;
|
|
413
|
+
flourishAltText: z.ZodString;
|
|
414
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
415
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
542
416
|
}, "strip", z.ZodTypeAny, {
|
|
543
|
-
displayBehaviour: "standalone" | "associated";
|
|
544
417
|
flourishId: string;
|
|
418
|
+
flourishAltText: string;
|
|
545
419
|
heading?: {
|
|
546
420
|
text: string;
|
|
547
421
|
href?: string | undefined;
|
|
548
422
|
} | undefined;
|
|
549
423
|
flourishDescription?: string | undefined;
|
|
424
|
+
storyUUID?: string | undefined;
|
|
425
|
+
theme?: string | undefined;
|
|
550
426
|
}, {
|
|
551
|
-
displayBehaviour: "standalone" | "associated";
|
|
552
427
|
flourishId: string;
|
|
428
|
+
flourishAltText: string;
|
|
553
429
|
heading?: {
|
|
554
430
|
text: string;
|
|
555
431
|
href?: string | undefined;
|
|
556
432
|
} | undefined;
|
|
557
433
|
flourishDescription?: string | undefined;
|
|
434
|
+
storyUUID?: string | undefined;
|
|
435
|
+
theme?: string | undefined;
|
|
558
436
|
}>;
|
|
559
437
|
} & {
|
|
560
438
|
sliceId: z.ZodString;
|
|
561
439
|
}, "strip", z.ZodTypeAny, {
|
|
562
|
-
type: "
|
|
440
|
+
type: "Interactive";
|
|
563
441
|
properties: {
|
|
564
|
-
displayBehaviour: "standalone" | "associated";
|
|
565
442
|
flourishId: string;
|
|
443
|
+
flourishAltText: string;
|
|
566
444
|
heading?: {
|
|
567
445
|
text: string;
|
|
568
446
|
href?: string | undefined;
|
|
569
447
|
} | undefined;
|
|
570
448
|
flourishDescription?: string | undefined;
|
|
449
|
+
storyUUID?: string | undefined;
|
|
450
|
+
theme?: string | undefined;
|
|
571
451
|
};
|
|
572
452
|
sliceId: string;
|
|
573
453
|
hidden?: boolean | undefined;
|
|
574
454
|
}, {
|
|
575
|
-
type: "
|
|
455
|
+
type: "Interactive";
|
|
576
456
|
properties: {
|
|
577
|
-
displayBehaviour: "standalone" | "associated";
|
|
578
457
|
flourishId: string;
|
|
458
|
+
flourishAltText: string;
|
|
579
459
|
heading?: {
|
|
580
460
|
text: string;
|
|
581
461
|
href?: string | undefined;
|
|
582
462
|
} | undefined;
|
|
583
463
|
flourishDescription?: string | undefined;
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
hidden?: boolean | undefined;
|
|
587
|
-
}>, z.ZodObject<{
|
|
588
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
589
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
590
|
-
properties: z.ZodObject<{
|
|
591
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
592
|
-
text: z.ZodString;
|
|
593
|
-
href: z.ZodOptional<z.ZodString>;
|
|
594
|
-
}, "strip", z.ZodTypeAny, {
|
|
595
|
-
text: string;
|
|
596
|
-
href?: string | undefined;
|
|
597
|
-
}, {
|
|
598
|
-
text: string;
|
|
599
|
-
href?: string | undefined;
|
|
600
|
-
}>>;
|
|
601
|
-
} & {
|
|
602
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
603
|
-
} & {
|
|
604
|
-
iframeSrc: z.ZodString;
|
|
605
|
-
}, "strip", z.ZodTypeAny, {
|
|
606
|
-
displayBehaviour: "standalone" | "associated";
|
|
607
|
-
iframeSrc: string;
|
|
608
|
-
heading?: {
|
|
609
|
-
text: string;
|
|
610
|
-
href?: string | undefined;
|
|
611
|
-
} | undefined;
|
|
612
|
-
}, {
|
|
613
|
-
displayBehaviour: "standalone" | "associated";
|
|
614
|
-
iframeSrc: string;
|
|
615
|
-
heading?: {
|
|
616
|
-
text: string;
|
|
617
|
-
href?: string | undefined;
|
|
618
|
-
} | undefined;
|
|
619
|
-
}>;
|
|
620
|
-
} & {
|
|
621
|
-
sliceId: z.ZodString;
|
|
622
|
-
}, "strip", z.ZodTypeAny, {
|
|
623
|
-
type: "CustomIframe";
|
|
624
|
-
properties: {
|
|
625
|
-
displayBehaviour: "standalone" | "associated";
|
|
626
|
-
iframeSrc: string;
|
|
627
|
-
heading?: {
|
|
628
|
-
text: string;
|
|
629
|
-
href?: string | undefined;
|
|
630
|
-
} | undefined;
|
|
631
|
-
};
|
|
632
|
-
sliceId: string;
|
|
633
|
-
hidden?: boolean | undefined;
|
|
634
|
-
}, {
|
|
635
|
-
type: "CustomIframe";
|
|
636
|
-
properties: {
|
|
637
|
-
displayBehaviour: "standalone" | "associated";
|
|
638
|
-
iframeSrc: string;
|
|
639
|
-
heading?: {
|
|
640
|
-
text: string;
|
|
641
|
-
href?: string | undefined;
|
|
642
|
-
} | undefined;
|
|
464
|
+
storyUUID?: string | undefined;
|
|
465
|
+
theme?: string | undefined;
|
|
643
466
|
};
|
|
644
467
|
sliceId: string;
|
|
645
468
|
hidden?: boolean | undefined;
|
|
@@ -1352,27 +1175,17 @@ declare const DraftSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1352
1175
|
} | undefined;
|
|
1353
1176
|
} | undefined;
|
|
1354
1177
|
} | {
|
|
1355
|
-
type: "
|
|
1178
|
+
type: "Interactive";
|
|
1356
1179
|
properties: {
|
|
1357
|
-
displayBehaviour: "standalone" | "associated";
|
|
1358
1180
|
flourishId: string;
|
|
1181
|
+
flourishAltText: string;
|
|
1359
1182
|
heading?: {
|
|
1360
1183
|
text: string;
|
|
1361
1184
|
href?: string | undefined;
|
|
1362
1185
|
} | undefined;
|
|
1363
1186
|
flourishDescription?: string | undefined;
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
hidden?: boolean | undefined;
|
|
1367
|
-
} | {
|
|
1368
|
-
type: "CustomIframe";
|
|
1369
|
-
properties: {
|
|
1370
|
-
displayBehaviour: "standalone" | "associated";
|
|
1371
|
-
iframeSrc: string;
|
|
1372
|
-
heading?: {
|
|
1373
|
-
text: string;
|
|
1374
|
-
href?: string | undefined;
|
|
1375
|
-
} | undefined;
|
|
1187
|
+
storyUUID?: string | undefined;
|
|
1188
|
+
theme?: string | undefined;
|
|
1376
1189
|
};
|
|
1377
1190
|
sliceId: string;
|
|
1378
1191
|
hidden?: boolean | undefined;
|
|
@@ -1490,27 +1303,17 @@ declare const DraftSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1490
1303
|
} | undefined;
|
|
1491
1304
|
} | undefined;
|
|
1492
1305
|
} | {
|
|
1493
|
-
type: "
|
|
1306
|
+
type: "Interactive";
|
|
1494
1307
|
properties: {
|
|
1495
|
-
displayBehaviour: "standalone" | "associated";
|
|
1496
1308
|
flourishId: string;
|
|
1309
|
+
flourishAltText: string;
|
|
1497
1310
|
heading?: {
|
|
1498
1311
|
text: string;
|
|
1499
1312
|
href?: string | undefined;
|
|
1500
1313
|
} | undefined;
|
|
1501
1314
|
flourishDescription?: string | undefined;
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
hidden?: boolean | undefined;
|
|
1505
|
-
} | {
|
|
1506
|
-
type: "CustomIframe";
|
|
1507
|
-
properties: {
|
|
1508
|
-
displayBehaviour: "standalone" | "associated";
|
|
1509
|
-
iframeSrc: string;
|
|
1510
|
-
heading?: {
|
|
1511
|
-
text: string;
|
|
1512
|
-
href?: string | undefined;
|
|
1513
|
-
} | undefined;
|
|
1315
|
+
storyUUID?: string | undefined;
|
|
1316
|
+
theme?: string | undefined;
|
|
1514
1317
|
};
|
|
1515
1318
|
sliceId: string;
|
|
1516
1319
|
hidden?: boolean | undefined;
|
|
@@ -1640,27 +1443,17 @@ declare const DraftSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1640
1443
|
} | undefined;
|
|
1641
1444
|
} | undefined;
|
|
1642
1445
|
} | {
|
|
1643
|
-
type: "
|
|
1446
|
+
type: "Interactive";
|
|
1644
1447
|
properties: {
|
|
1645
|
-
displayBehaviour: "standalone" | "associated";
|
|
1646
1448
|
flourishId: string;
|
|
1449
|
+
flourishAltText: string;
|
|
1647
1450
|
heading?: {
|
|
1648
1451
|
text: string;
|
|
1649
1452
|
href?: string | undefined;
|
|
1650
1453
|
} | undefined;
|
|
1651
1454
|
flourishDescription?: string | undefined;
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
hidden?: boolean | undefined;
|
|
1655
|
-
} | {
|
|
1656
|
-
type: "CustomIframe";
|
|
1657
|
-
properties: {
|
|
1658
|
-
displayBehaviour: "standalone" | "associated";
|
|
1659
|
-
iframeSrc: string;
|
|
1660
|
-
heading?: {
|
|
1661
|
-
text: string;
|
|
1662
|
-
href?: string | undefined;
|
|
1663
|
-
} | undefined;
|
|
1455
|
+
storyUUID?: string | undefined;
|
|
1456
|
+
theme?: string | undefined;
|
|
1664
1457
|
};
|
|
1665
1458
|
sliceId: string;
|
|
1666
1459
|
hidden?: boolean | undefined;
|
|
@@ -1790,27 +1583,17 @@ declare const DraftSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1790
1583
|
} | undefined;
|
|
1791
1584
|
} | undefined;
|
|
1792
1585
|
} | {
|
|
1793
|
-
type: "
|
|
1586
|
+
type: "Interactive";
|
|
1794
1587
|
properties: {
|
|
1795
|
-
displayBehaviour: "standalone" | "associated";
|
|
1796
1588
|
flourishId: string;
|
|
1589
|
+
flourishAltText: string;
|
|
1797
1590
|
heading?: {
|
|
1798
1591
|
text: string;
|
|
1799
1592
|
href?: string | undefined;
|
|
1800
1593
|
} | undefined;
|
|
1801
1594
|
flourishDescription?: string | undefined;
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
hidden?: boolean | undefined;
|
|
1805
|
-
} | {
|
|
1806
|
-
type: "CustomIframe";
|
|
1807
|
-
properties: {
|
|
1808
|
-
displayBehaviour: "standalone" | "associated";
|
|
1809
|
-
iframeSrc: string;
|
|
1810
|
-
heading?: {
|
|
1811
|
-
text: string;
|
|
1812
|
-
href?: string | undefined;
|
|
1813
|
-
} | undefined;
|
|
1595
|
+
storyUUID?: string | undefined;
|
|
1596
|
+
theme?: string | undefined;
|
|
1814
1597
|
};
|
|
1815
1598
|
sliceId: string;
|
|
1816
1599
|
hidden?: boolean | undefined;
|
|
@@ -1980,7 +1763,7 @@ declare const DraftSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1980
1763
|
} | undefined;
|
|
1981
1764
|
} | undefined;
|
|
1982
1765
|
}>, z.ZodObject<{
|
|
1983
|
-
type: z.ZodLiteral<"
|
|
1766
|
+
type: z.ZodLiteral<"Interactive">;
|
|
1984
1767
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1985
1768
|
properties: z.ZodObject<{
|
|
1986
1769
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -1993,112 +1776,62 @@ declare const DraftSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1993
1776
|
text: string;
|
|
1994
1777
|
href?: string | undefined;
|
|
1995
1778
|
}>>;
|
|
1996
|
-
} & {
|
|
1997
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
1998
1779
|
} & {
|
|
1999
1780
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
2000
1781
|
flourishId: z.ZodString;
|
|
1782
|
+
flourishAltText: z.ZodString;
|
|
1783
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
1784
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
2001
1785
|
}, "strip", z.ZodTypeAny, {
|
|
2002
|
-
displayBehaviour: "standalone" | "associated";
|
|
2003
1786
|
flourishId: string;
|
|
1787
|
+
flourishAltText: string;
|
|
2004
1788
|
heading?: {
|
|
2005
1789
|
text: string;
|
|
2006
1790
|
href?: string | undefined;
|
|
2007
1791
|
} | undefined;
|
|
2008
1792
|
flourishDescription?: string | undefined;
|
|
1793
|
+
storyUUID?: string | undefined;
|
|
1794
|
+
theme?: string | undefined;
|
|
2009
1795
|
}, {
|
|
2010
|
-
displayBehaviour: "standalone" | "associated";
|
|
2011
1796
|
flourishId: string;
|
|
1797
|
+
flourishAltText: string;
|
|
2012
1798
|
heading?: {
|
|
2013
1799
|
text: string;
|
|
2014
1800
|
href?: string | undefined;
|
|
2015
1801
|
} | undefined;
|
|
2016
1802
|
flourishDescription?: string | undefined;
|
|
1803
|
+
storyUUID?: string | undefined;
|
|
1804
|
+
theme?: string | undefined;
|
|
2017
1805
|
}>;
|
|
2018
1806
|
} & {
|
|
2019
1807
|
sliceId: z.ZodString;
|
|
2020
1808
|
}, "strip", z.ZodTypeAny, {
|
|
2021
|
-
type: "
|
|
1809
|
+
type: "Interactive";
|
|
2022
1810
|
properties: {
|
|
2023
|
-
displayBehaviour: "standalone" | "associated";
|
|
2024
1811
|
flourishId: string;
|
|
1812
|
+
flourishAltText: string;
|
|
2025
1813
|
heading?: {
|
|
2026
1814
|
text: string;
|
|
2027
1815
|
href?: string | undefined;
|
|
2028
1816
|
} | undefined;
|
|
2029
1817
|
flourishDescription?: string | undefined;
|
|
1818
|
+
storyUUID?: string | undefined;
|
|
1819
|
+
theme?: string | undefined;
|
|
2030
1820
|
};
|
|
2031
1821
|
sliceId: string;
|
|
2032
1822
|
hidden?: boolean | undefined;
|
|
2033
1823
|
}, {
|
|
2034
|
-
type: "
|
|
1824
|
+
type: "Interactive";
|
|
2035
1825
|
properties: {
|
|
2036
|
-
displayBehaviour: "standalone" | "associated";
|
|
2037
1826
|
flourishId: string;
|
|
1827
|
+
flourishAltText: string;
|
|
2038
1828
|
heading?: {
|
|
2039
1829
|
text: string;
|
|
2040
1830
|
href?: string | undefined;
|
|
2041
1831
|
} | undefined;
|
|
2042
1832
|
flourishDescription?: string | undefined;
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
hidden?: boolean | undefined;
|
|
2046
|
-
}>, z.ZodObject<{
|
|
2047
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
2048
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2049
|
-
properties: z.ZodObject<{
|
|
2050
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
2051
|
-
text: z.ZodString;
|
|
2052
|
-
href: z.ZodOptional<z.ZodString>;
|
|
2053
|
-
}, "strip", z.ZodTypeAny, {
|
|
2054
|
-
text: string;
|
|
2055
|
-
href?: string | undefined;
|
|
2056
|
-
}, {
|
|
2057
|
-
text: string;
|
|
2058
|
-
href?: string | undefined;
|
|
2059
|
-
}>>;
|
|
2060
|
-
} & {
|
|
2061
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
2062
|
-
} & {
|
|
2063
|
-
iframeSrc: z.ZodString;
|
|
2064
|
-
}, "strip", z.ZodTypeAny, {
|
|
2065
|
-
displayBehaviour: "standalone" | "associated";
|
|
2066
|
-
iframeSrc: string;
|
|
2067
|
-
heading?: {
|
|
2068
|
-
text: string;
|
|
2069
|
-
href?: string | undefined;
|
|
2070
|
-
} | undefined;
|
|
2071
|
-
}, {
|
|
2072
|
-
displayBehaviour: "standalone" | "associated";
|
|
2073
|
-
iframeSrc: string;
|
|
2074
|
-
heading?: {
|
|
2075
|
-
text: string;
|
|
2076
|
-
href?: string | undefined;
|
|
2077
|
-
} | undefined;
|
|
2078
|
-
}>;
|
|
2079
|
-
} & {
|
|
2080
|
-
sliceId: z.ZodString;
|
|
2081
|
-
}, "strip", z.ZodTypeAny, {
|
|
2082
|
-
type: "CustomIframe";
|
|
2083
|
-
properties: {
|
|
2084
|
-
displayBehaviour: "standalone" | "associated";
|
|
2085
|
-
iframeSrc: string;
|
|
2086
|
-
heading?: {
|
|
2087
|
-
text: string;
|
|
2088
|
-
href?: string | undefined;
|
|
2089
|
-
} | undefined;
|
|
2090
|
-
};
|
|
2091
|
-
sliceId: string;
|
|
2092
|
-
hidden?: boolean | undefined;
|
|
2093
|
-
}, {
|
|
2094
|
-
type: "CustomIframe";
|
|
2095
|
-
properties: {
|
|
2096
|
-
displayBehaviour: "standalone" | "associated";
|
|
2097
|
-
iframeSrc: string;
|
|
2098
|
-
heading?: {
|
|
2099
|
-
text: string;
|
|
2100
|
-
href?: string | undefined;
|
|
2101
|
-
} | undefined;
|
|
1833
|
+
storyUUID?: string | undefined;
|
|
1834
|
+
theme?: string | undefined;
|
|
2102
1835
|
};
|
|
2103
1836
|
sliceId: string;
|
|
2104
1837
|
hidden?: boolean | undefined;
|
|
@@ -2846,27 +2579,17 @@ declare const DraftSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2846
2579
|
} | undefined;
|
|
2847
2580
|
} | undefined;
|
|
2848
2581
|
} | {
|
|
2849
|
-
type: "
|
|
2582
|
+
type: "Interactive";
|
|
2850
2583
|
properties: {
|
|
2851
|
-
displayBehaviour: "standalone" | "associated";
|
|
2852
2584
|
flourishId: string;
|
|
2585
|
+
flourishAltText: string;
|
|
2853
2586
|
heading?: {
|
|
2854
2587
|
text: string;
|
|
2855
2588
|
href?: string | undefined;
|
|
2856
2589
|
} | undefined;
|
|
2857
2590
|
flourishDescription?: string | undefined;
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
hidden?: boolean | undefined;
|
|
2861
|
-
} | {
|
|
2862
|
-
type: "CustomIframe";
|
|
2863
|
-
properties: {
|
|
2864
|
-
displayBehaviour: "standalone" | "associated";
|
|
2865
|
-
iframeSrc: string;
|
|
2866
|
-
heading?: {
|
|
2867
|
-
text: string;
|
|
2868
|
-
href?: string | undefined;
|
|
2869
|
-
} | undefined;
|
|
2591
|
+
storyUUID?: string | undefined;
|
|
2592
|
+
theme?: string | undefined;
|
|
2870
2593
|
};
|
|
2871
2594
|
sliceId: string;
|
|
2872
2595
|
hidden?: boolean | undefined;
|
|
@@ -2985,27 +2708,17 @@ declare const DraftSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2985
2708
|
} | undefined;
|
|
2986
2709
|
} | undefined;
|
|
2987
2710
|
} | {
|
|
2988
|
-
type: "
|
|
2711
|
+
type: "Interactive";
|
|
2989
2712
|
properties: {
|
|
2990
|
-
displayBehaviour: "standalone" | "associated";
|
|
2991
2713
|
flourishId: string;
|
|
2714
|
+
flourishAltText: string;
|
|
2992
2715
|
heading?: {
|
|
2993
2716
|
text: string;
|
|
2994
2717
|
href?: string | undefined;
|
|
2995
2718
|
} | undefined;
|
|
2996
2719
|
flourishDescription?: string | undefined;
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
hidden?: boolean | undefined;
|
|
3000
|
-
} | {
|
|
3001
|
-
type: "CustomIframe";
|
|
3002
|
-
properties: {
|
|
3003
|
-
displayBehaviour: "standalone" | "associated";
|
|
3004
|
-
iframeSrc: string;
|
|
3005
|
-
heading?: {
|
|
3006
|
-
text: string;
|
|
3007
|
-
href?: string | undefined;
|
|
3008
|
-
} | undefined;
|
|
2720
|
+
storyUUID?: string | undefined;
|
|
2721
|
+
theme?: string | undefined;
|
|
3009
2722
|
};
|
|
3010
2723
|
sliceId: string;
|
|
3011
2724
|
hidden?: boolean | undefined;
|
|
@@ -3136,27 +2849,17 @@ declare const DraftSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3136
2849
|
} | undefined;
|
|
3137
2850
|
} | undefined;
|
|
3138
2851
|
} | {
|
|
3139
|
-
type: "
|
|
2852
|
+
type: "Interactive";
|
|
3140
2853
|
properties: {
|
|
3141
|
-
displayBehaviour: "standalone" | "associated";
|
|
3142
2854
|
flourishId: string;
|
|
2855
|
+
flourishAltText: string;
|
|
3143
2856
|
heading?: {
|
|
3144
2857
|
text: string;
|
|
3145
2858
|
href?: string | undefined;
|
|
3146
2859
|
} | undefined;
|
|
3147
2860
|
flourishDescription?: string | undefined;
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
hidden?: boolean | undefined;
|
|
3151
|
-
} | {
|
|
3152
|
-
type: "CustomIframe";
|
|
3153
|
-
properties: {
|
|
3154
|
-
displayBehaviour: "standalone" | "associated";
|
|
3155
|
-
iframeSrc: string;
|
|
3156
|
-
heading?: {
|
|
3157
|
-
text: string;
|
|
3158
|
-
href?: string | undefined;
|
|
3159
|
-
} | undefined;
|
|
2861
|
+
storyUUID?: string | undefined;
|
|
2862
|
+
theme?: string | undefined;
|
|
3160
2863
|
};
|
|
3161
2864
|
sliceId: string;
|
|
3162
2865
|
hidden?: boolean | undefined;
|
|
@@ -3287,32 +2990,22 @@ declare const DraftSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3287
2990
|
} | undefined;
|
|
3288
2991
|
} | undefined;
|
|
3289
2992
|
} | {
|
|
3290
|
-
type: "
|
|
2993
|
+
type: "Interactive";
|
|
3291
2994
|
properties: {
|
|
3292
|
-
displayBehaviour: "standalone" | "associated";
|
|
3293
2995
|
flourishId: string;
|
|
2996
|
+
flourishAltText: string;
|
|
3294
2997
|
heading?: {
|
|
3295
2998
|
text: string;
|
|
3296
2999
|
href?: string | undefined;
|
|
3297
3000
|
} | undefined;
|
|
3298
3001
|
flourishDescription?: string | undefined;
|
|
3002
|
+
storyUUID?: string | undefined;
|
|
3003
|
+
theme?: string | undefined;
|
|
3299
3004
|
};
|
|
3300
3005
|
sliceId: string;
|
|
3301
3006
|
hidden?: boolean | undefined;
|
|
3302
3007
|
} | {
|
|
3303
|
-
type: "
|
|
3304
|
-
properties: {
|
|
3305
|
-
displayBehaviour: "standalone" | "associated";
|
|
3306
|
-
iframeSrc: string;
|
|
3307
|
-
heading?: {
|
|
3308
|
-
text: string;
|
|
3309
|
-
href?: string | undefined;
|
|
3310
|
-
} | undefined;
|
|
3311
|
-
};
|
|
3312
|
-
sliceId: string;
|
|
3313
|
-
hidden?: boolean | undefined;
|
|
3314
|
-
} | {
|
|
3315
|
-
type: "Experiment";
|
|
3008
|
+
type: "Experiment";
|
|
3316
3009
|
properties: {
|
|
3317
3010
|
experimentId: string;
|
|
3318
3011
|
experimentName: string;
|
|
@@ -3542,143 +3235,6 @@ declare type ExperimentSliceType = z.infer<typeof ExperimentSlice.OutputSchema>;
|
|
|
3542
3235
|
export { ExperimentSliceType }
|
|
3543
3236
|
export { ExperimentSliceType as ExperimentSliceType_alias_1 }
|
|
3544
3237
|
|
|
3545
|
-
declare const FlourishGraphicSlice: {
|
|
3546
|
-
InputSchema: z.ZodObject<{
|
|
3547
|
-
type: z.ZodLiteral<"FlourishGraphic">;
|
|
3548
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3549
|
-
properties: z.ZodObject<{
|
|
3550
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
3551
|
-
text: z.ZodString;
|
|
3552
|
-
href: z.ZodOptional<z.ZodString>;
|
|
3553
|
-
}, "strip", z.ZodTypeAny, {
|
|
3554
|
-
text: string;
|
|
3555
|
-
href?: string | undefined;
|
|
3556
|
-
}, {
|
|
3557
|
-
text: string;
|
|
3558
|
-
href?: string | undefined;
|
|
3559
|
-
}>>;
|
|
3560
|
-
} & {
|
|
3561
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
3562
|
-
} & {
|
|
3563
|
-
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
3564
|
-
flourishId: z.ZodString;
|
|
3565
|
-
}, "strip", z.ZodTypeAny, {
|
|
3566
|
-
displayBehaviour: "standalone" | "associated";
|
|
3567
|
-
flourishId: string;
|
|
3568
|
-
heading?: {
|
|
3569
|
-
text: string;
|
|
3570
|
-
href?: string | undefined;
|
|
3571
|
-
} | undefined;
|
|
3572
|
-
flourishDescription?: string | undefined;
|
|
3573
|
-
}, {
|
|
3574
|
-
displayBehaviour: "standalone" | "associated";
|
|
3575
|
-
flourishId: string;
|
|
3576
|
-
heading?: {
|
|
3577
|
-
text: string;
|
|
3578
|
-
href?: string | undefined;
|
|
3579
|
-
} | undefined;
|
|
3580
|
-
flourishDescription?: string | undefined;
|
|
3581
|
-
}>;
|
|
3582
|
-
} & {
|
|
3583
|
-
sliceId: z.ZodOptional<z.ZodString>;
|
|
3584
|
-
}, "strip", z.ZodTypeAny, {
|
|
3585
|
-
type: "FlourishGraphic";
|
|
3586
|
-
properties: {
|
|
3587
|
-
displayBehaviour: "standalone" | "associated";
|
|
3588
|
-
flourishId: string;
|
|
3589
|
-
heading?: {
|
|
3590
|
-
text: string;
|
|
3591
|
-
href?: string | undefined;
|
|
3592
|
-
} | undefined;
|
|
3593
|
-
flourishDescription?: string | undefined;
|
|
3594
|
-
};
|
|
3595
|
-
hidden?: boolean | undefined;
|
|
3596
|
-
sliceId?: string | undefined;
|
|
3597
|
-
}, {
|
|
3598
|
-
type: "FlourishGraphic";
|
|
3599
|
-
properties: {
|
|
3600
|
-
displayBehaviour: "standalone" | "associated";
|
|
3601
|
-
flourishId: string;
|
|
3602
|
-
heading?: {
|
|
3603
|
-
text: string;
|
|
3604
|
-
href?: string | undefined;
|
|
3605
|
-
} | undefined;
|
|
3606
|
-
flourishDescription?: string | undefined;
|
|
3607
|
-
};
|
|
3608
|
-
hidden?: boolean | undefined;
|
|
3609
|
-
sliceId?: string | undefined;
|
|
3610
|
-
}>;
|
|
3611
|
-
OutputSchema: z.ZodObject<{
|
|
3612
|
-
type: z.ZodLiteral<"FlourishGraphic">;
|
|
3613
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3614
|
-
properties: z.ZodObject<{
|
|
3615
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
3616
|
-
text: z.ZodString;
|
|
3617
|
-
href: z.ZodOptional<z.ZodString>;
|
|
3618
|
-
}, "strip", z.ZodTypeAny, {
|
|
3619
|
-
text: string;
|
|
3620
|
-
href?: string | undefined;
|
|
3621
|
-
}, {
|
|
3622
|
-
text: string;
|
|
3623
|
-
href?: string | undefined;
|
|
3624
|
-
}>>;
|
|
3625
|
-
} & {
|
|
3626
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
3627
|
-
} & {
|
|
3628
|
-
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
3629
|
-
flourishId: z.ZodString;
|
|
3630
|
-
}, "strip", z.ZodTypeAny, {
|
|
3631
|
-
displayBehaviour: "standalone" | "associated";
|
|
3632
|
-
flourishId: string;
|
|
3633
|
-
heading?: {
|
|
3634
|
-
text: string;
|
|
3635
|
-
href?: string | undefined;
|
|
3636
|
-
} | undefined;
|
|
3637
|
-
flourishDescription?: string | undefined;
|
|
3638
|
-
}, {
|
|
3639
|
-
displayBehaviour: "standalone" | "associated";
|
|
3640
|
-
flourishId: string;
|
|
3641
|
-
heading?: {
|
|
3642
|
-
text: string;
|
|
3643
|
-
href?: string | undefined;
|
|
3644
|
-
} | undefined;
|
|
3645
|
-
flourishDescription?: string | undefined;
|
|
3646
|
-
}>;
|
|
3647
|
-
} & {
|
|
3648
|
-
sliceId: z.ZodString;
|
|
3649
|
-
}, "strip", z.ZodTypeAny, {
|
|
3650
|
-
type: "FlourishGraphic";
|
|
3651
|
-
properties: {
|
|
3652
|
-
displayBehaviour: "standalone" | "associated";
|
|
3653
|
-
flourishId: string;
|
|
3654
|
-
heading?: {
|
|
3655
|
-
text: string;
|
|
3656
|
-
href?: string | undefined;
|
|
3657
|
-
} | undefined;
|
|
3658
|
-
flourishDescription?: string | undefined;
|
|
3659
|
-
};
|
|
3660
|
-
sliceId: string;
|
|
3661
|
-
hidden?: boolean | undefined;
|
|
3662
|
-
}, {
|
|
3663
|
-
type: "FlourishGraphic";
|
|
3664
|
-
properties: {
|
|
3665
|
-
displayBehaviour: "standalone" | "associated";
|
|
3666
|
-
flourishId: string;
|
|
3667
|
-
heading?: {
|
|
3668
|
-
text: string;
|
|
3669
|
-
href?: string | undefined;
|
|
3670
|
-
} | undefined;
|
|
3671
|
-
flourishDescription?: string | undefined;
|
|
3672
|
-
};
|
|
3673
|
-
sliceId: string;
|
|
3674
|
-
hidden?: boolean | undefined;
|
|
3675
|
-
}>;
|
|
3676
|
-
};
|
|
3677
|
-
|
|
3678
|
-
declare type FlourishGraphicSliceType = z.infer<typeof FlourishGraphicSlice.OutputSchema>;
|
|
3679
|
-
export { FlourishGraphicSliceType }
|
|
3680
|
-
export { FlourishGraphicSliceType as FlourishGraphicSliceType_alias_1 }
|
|
3681
|
-
|
|
3682
3238
|
declare const HeroSlice: {
|
|
3683
3239
|
InputSchema: z.ZodObject<{
|
|
3684
3240
|
type: z.ZodLiteral<"Hero">;
|
|
@@ -3893,7 +3449,7 @@ declare const HomepageDraftSchema: z.ZodObject<{
|
|
|
3893
3449
|
} | undefined;
|
|
3894
3450
|
} | undefined;
|
|
3895
3451
|
}>, z.ZodObject<{
|
|
3896
|
-
type: z.ZodLiteral<"
|
|
3452
|
+
type: z.ZodLiteral<"Interactive">;
|
|
3897
3453
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3898
3454
|
properties: z.ZodObject<{
|
|
3899
3455
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -3906,112 +3462,62 @@ declare const HomepageDraftSchema: z.ZodObject<{
|
|
|
3906
3462
|
text: string;
|
|
3907
3463
|
href?: string | undefined;
|
|
3908
3464
|
}>>;
|
|
3909
|
-
} & {
|
|
3910
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
3911
3465
|
} & {
|
|
3912
3466
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
3913
3467
|
flourishId: z.ZodString;
|
|
3468
|
+
flourishAltText: z.ZodString;
|
|
3469
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
3470
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
3914
3471
|
}, "strip", z.ZodTypeAny, {
|
|
3915
|
-
displayBehaviour: "standalone" | "associated";
|
|
3916
3472
|
flourishId: string;
|
|
3473
|
+
flourishAltText: string;
|
|
3917
3474
|
heading?: {
|
|
3918
3475
|
text: string;
|
|
3919
3476
|
href?: string | undefined;
|
|
3920
3477
|
} | undefined;
|
|
3921
3478
|
flourishDescription?: string | undefined;
|
|
3479
|
+
storyUUID?: string | undefined;
|
|
3480
|
+
theme?: string | undefined;
|
|
3922
3481
|
}, {
|
|
3923
|
-
displayBehaviour: "standalone" | "associated";
|
|
3924
3482
|
flourishId: string;
|
|
3483
|
+
flourishAltText: string;
|
|
3925
3484
|
heading?: {
|
|
3926
3485
|
text: string;
|
|
3927
3486
|
href?: string | undefined;
|
|
3928
3487
|
} | undefined;
|
|
3929
3488
|
flourishDescription?: string | undefined;
|
|
3489
|
+
storyUUID?: string | undefined;
|
|
3490
|
+
theme?: string | undefined;
|
|
3930
3491
|
}>;
|
|
3931
3492
|
} & {
|
|
3932
3493
|
sliceId: z.ZodString;
|
|
3933
3494
|
}, "strip", z.ZodTypeAny, {
|
|
3934
|
-
type: "
|
|
3495
|
+
type: "Interactive";
|
|
3935
3496
|
properties: {
|
|
3936
|
-
displayBehaviour: "standalone" | "associated";
|
|
3937
3497
|
flourishId: string;
|
|
3498
|
+
flourishAltText: string;
|
|
3938
3499
|
heading?: {
|
|
3939
3500
|
text: string;
|
|
3940
3501
|
href?: string | undefined;
|
|
3941
3502
|
} | undefined;
|
|
3942
3503
|
flourishDescription?: string | undefined;
|
|
3504
|
+
storyUUID?: string | undefined;
|
|
3505
|
+
theme?: string | undefined;
|
|
3943
3506
|
};
|
|
3944
3507
|
sliceId: string;
|
|
3945
3508
|
hidden?: boolean | undefined;
|
|
3946
3509
|
}, {
|
|
3947
|
-
type: "
|
|
3510
|
+
type: "Interactive";
|
|
3948
3511
|
properties: {
|
|
3949
|
-
displayBehaviour: "standalone" | "associated";
|
|
3950
3512
|
flourishId: string;
|
|
3513
|
+
flourishAltText: string;
|
|
3951
3514
|
heading?: {
|
|
3952
3515
|
text: string;
|
|
3953
3516
|
href?: string | undefined;
|
|
3954
3517
|
} | undefined;
|
|
3955
3518
|
flourishDescription?: string | undefined;
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
hidden?: boolean | undefined;
|
|
3959
|
-
}>, z.ZodObject<{
|
|
3960
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
3961
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3962
|
-
properties: z.ZodObject<{
|
|
3963
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
3964
|
-
text: z.ZodString;
|
|
3965
|
-
href: z.ZodOptional<z.ZodString>;
|
|
3966
|
-
}, "strip", z.ZodTypeAny, {
|
|
3967
|
-
text: string;
|
|
3968
|
-
href?: string | undefined;
|
|
3969
|
-
}, {
|
|
3970
|
-
text: string;
|
|
3971
|
-
href?: string | undefined;
|
|
3972
|
-
}>>;
|
|
3973
|
-
} & {
|
|
3974
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
3975
|
-
} & {
|
|
3976
|
-
iframeSrc: z.ZodString;
|
|
3977
|
-
}, "strip", z.ZodTypeAny, {
|
|
3978
|
-
displayBehaviour: "standalone" | "associated";
|
|
3979
|
-
iframeSrc: string;
|
|
3980
|
-
heading?: {
|
|
3981
|
-
text: string;
|
|
3982
|
-
href?: string | undefined;
|
|
3983
|
-
} | undefined;
|
|
3984
|
-
}, {
|
|
3985
|
-
displayBehaviour: "standalone" | "associated";
|
|
3986
|
-
iframeSrc: string;
|
|
3987
|
-
heading?: {
|
|
3988
|
-
text: string;
|
|
3989
|
-
href?: string | undefined;
|
|
3990
|
-
} | undefined;
|
|
3991
|
-
}>;
|
|
3992
|
-
} & {
|
|
3993
|
-
sliceId: z.ZodString;
|
|
3994
|
-
}, "strip", z.ZodTypeAny, {
|
|
3995
|
-
type: "CustomIframe";
|
|
3996
|
-
properties: {
|
|
3997
|
-
displayBehaviour: "standalone" | "associated";
|
|
3998
|
-
iframeSrc: string;
|
|
3999
|
-
heading?: {
|
|
4000
|
-
text: string;
|
|
4001
|
-
href?: string | undefined;
|
|
4002
|
-
} | undefined;
|
|
4003
|
-
};
|
|
4004
|
-
sliceId: string;
|
|
4005
|
-
hidden?: boolean | undefined;
|
|
4006
|
-
}, {
|
|
4007
|
-
type: "CustomIframe";
|
|
4008
|
-
properties: {
|
|
4009
|
-
displayBehaviour: "standalone" | "associated";
|
|
4010
|
-
iframeSrc: string;
|
|
4011
|
-
heading?: {
|
|
4012
|
-
text: string;
|
|
4013
|
-
href?: string | undefined;
|
|
4014
|
-
} | undefined;
|
|
3519
|
+
storyUUID?: string | undefined;
|
|
3520
|
+
theme?: string | undefined;
|
|
4015
3521
|
};
|
|
4016
3522
|
sliceId: string;
|
|
4017
3523
|
hidden?: boolean | undefined;
|
|
@@ -4759,27 +4265,17 @@ declare const HomepageDraftSchema: z.ZodObject<{
|
|
|
4759
4265
|
} | undefined;
|
|
4760
4266
|
} | undefined;
|
|
4761
4267
|
} | {
|
|
4762
|
-
type: "
|
|
4268
|
+
type: "Interactive";
|
|
4763
4269
|
properties: {
|
|
4764
|
-
displayBehaviour: "standalone" | "associated";
|
|
4765
4270
|
flourishId: string;
|
|
4271
|
+
flourishAltText: string;
|
|
4766
4272
|
heading?: {
|
|
4767
4273
|
text: string;
|
|
4768
4274
|
href?: string | undefined;
|
|
4769
4275
|
} | undefined;
|
|
4770
4276
|
flourishDescription?: string | undefined;
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
hidden?: boolean | undefined;
|
|
4774
|
-
} | {
|
|
4775
|
-
type: "CustomIframe";
|
|
4776
|
-
properties: {
|
|
4777
|
-
displayBehaviour: "standalone" | "associated";
|
|
4778
|
-
iframeSrc: string;
|
|
4779
|
-
heading?: {
|
|
4780
|
-
text: string;
|
|
4781
|
-
href?: string | undefined;
|
|
4782
|
-
} | undefined;
|
|
4277
|
+
storyUUID?: string | undefined;
|
|
4278
|
+
theme?: string | undefined;
|
|
4783
4279
|
};
|
|
4784
4280
|
sliceId: string;
|
|
4785
4281
|
hidden?: boolean | undefined;
|
|
@@ -4898,27 +4394,17 @@ declare const HomepageDraftSchema: z.ZodObject<{
|
|
|
4898
4394
|
} | undefined;
|
|
4899
4395
|
} | undefined;
|
|
4900
4396
|
} | {
|
|
4901
|
-
type: "
|
|
4397
|
+
type: "Interactive";
|
|
4902
4398
|
properties: {
|
|
4903
|
-
displayBehaviour: "standalone" | "associated";
|
|
4904
4399
|
flourishId: string;
|
|
4400
|
+
flourishAltText: string;
|
|
4905
4401
|
heading?: {
|
|
4906
4402
|
text: string;
|
|
4907
4403
|
href?: string | undefined;
|
|
4908
4404
|
} | undefined;
|
|
4909
4405
|
flourishDescription?: string | undefined;
|
|
4910
|
-
|
|
4911
|
-
|
|
4912
|
-
hidden?: boolean | undefined;
|
|
4913
|
-
} | {
|
|
4914
|
-
type: "CustomIframe";
|
|
4915
|
-
properties: {
|
|
4916
|
-
displayBehaviour: "standalone" | "associated";
|
|
4917
|
-
iframeSrc: string;
|
|
4918
|
-
heading?: {
|
|
4919
|
-
text: string;
|
|
4920
|
-
href?: string | undefined;
|
|
4921
|
-
} | undefined;
|
|
4406
|
+
storyUUID?: string | undefined;
|
|
4407
|
+
theme?: string | undefined;
|
|
4922
4408
|
};
|
|
4923
4409
|
sliceId: string;
|
|
4924
4410
|
hidden?: boolean | undefined;
|
|
@@ -5049,27 +4535,17 @@ declare const HomepageDraftSchema: z.ZodObject<{
|
|
|
5049
4535
|
} | undefined;
|
|
5050
4536
|
} | undefined;
|
|
5051
4537
|
} | {
|
|
5052
|
-
type: "
|
|
4538
|
+
type: "Interactive";
|
|
5053
4539
|
properties: {
|
|
5054
|
-
displayBehaviour: "standalone" | "associated";
|
|
5055
4540
|
flourishId: string;
|
|
4541
|
+
flourishAltText: string;
|
|
5056
4542
|
heading?: {
|
|
5057
4543
|
text: string;
|
|
5058
4544
|
href?: string | undefined;
|
|
5059
4545
|
} | undefined;
|
|
5060
4546
|
flourishDescription?: string | undefined;
|
|
5061
|
-
|
|
5062
|
-
|
|
5063
|
-
hidden?: boolean | undefined;
|
|
5064
|
-
} | {
|
|
5065
|
-
type: "CustomIframe";
|
|
5066
|
-
properties: {
|
|
5067
|
-
displayBehaviour: "standalone" | "associated";
|
|
5068
|
-
iframeSrc: string;
|
|
5069
|
-
heading?: {
|
|
5070
|
-
text: string;
|
|
5071
|
-
href?: string | undefined;
|
|
5072
|
-
} | undefined;
|
|
4547
|
+
storyUUID?: string | undefined;
|
|
4548
|
+
theme?: string | undefined;
|
|
5073
4549
|
};
|
|
5074
4550
|
sliceId: string;
|
|
5075
4551
|
hidden?: boolean | undefined;
|
|
@@ -5200,27 +4676,17 @@ declare const HomepageDraftSchema: z.ZodObject<{
|
|
|
5200
4676
|
} | undefined;
|
|
5201
4677
|
} | undefined;
|
|
5202
4678
|
} | {
|
|
5203
|
-
type: "
|
|
4679
|
+
type: "Interactive";
|
|
5204
4680
|
properties: {
|
|
5205
|
-
displayBehaviour: "standalone" | "associated";
|
|
5206
4681
|
flourishId: string;
|
|
4682
|
+
flourishAltText: string;
|
|
5207
4683
|
heading?: {
|
|
5208
4684
|
text: string;
|
|
5209
4685
|
href?: string | undefined;
|
|
5210
4686
|
} | undefined;
|
|
5211
4687
|
flourishDescription?: string | undefined;
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
hidden?: boolean | undefined;
|
|
5215
|
-
} | {
|
|
5216
|
-
type: "CustomIframe";
|
|
5217
|
-
properties: {
|
|
5218
|
-
displayBehaviour: "standalone" | "associated";
|
|
5219
|
-
iframeSrc: string;
|
|
5220
|
-
heading?: {
|
|
5221
|
-
text: string;
|
|
5222
|
-
href?: string | undefined;
|
|
5223
|
-
} | undefined;
|
|
4688
|
+
storyUUID?: string | undefined;
|
|
4689
|
+
theme?: string | undefined;
|
|
5224
4690
|
};
|
|
5225
4691
|
sliceId: string;
|
|
5226
4692
|
hidden?: boolean | undefined;
|
|
@@ -5483,7 +4949,7 @@ declare const HomepageStructureInputSchema: z.ZodObject<{
|
|
|
5483
4949
|
} | undefined;
|
|
5484
4950
|
sliceId?: string | undefined;
|
|
5485
4951
|
}>, z.ZodObject<{
|
|
5486
|
-
type: z.ZodLiteral<"
|
|
4952
|
+
type: z.ZodLiteral<"Interactive">;
|
|
5487
4953
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
5488
4954
|
properties: z.ZodObject<{
|
|
5489
4955
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -5496,112 +4962,62 @@ declare const HomepageStructureInputSchema: z.ZodObject<{
|
|
|
5496
4962
|
text: string;
|
|
5497
4963
|
href?: string | undefined;
|
|
5498
4964
|
}>>;
|
|
5499
|
-
} & {
|
|
5500
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
5501
4965
|
} & {
|
|
5502
4966
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
5503
4967
|
flourishId: z.ZodString;
|
|
4968
|
+
flourishAltText: z.ZodString;
|
|
4969
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
4970
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
5504
4971
|
}, "strip", z.ZodTypeAny, {
|
|
5505
|
-
displayBehaviour: "standalone" | "associated";
|
|
5506
4972
|
flourishId: string;
|
|
4973
|
+
flourishAltText: string;
|
|
5507
4974
|
heading?: {
|
|
5508
4975
|
text: string;
|
|
5509
4976
|
href?: string | undefined;
|
|
5510
4977
|
} | undefined;
|
|
5511
4978
|
flourishDescription?: string | undefined;
|
|
4979
|
+
storyUUID?: string | undefined;
|
|
4980
|
+
theme?: string | undefined;
|
|
5512
4981
|
}, {
|
|
5513
|
-
displayBehaviour: "standalone" | "associated";
|
|
5514
4982
|
flourishId: string;
|
|
4983
|
+
flourishAltText: string;
|
|
5515
4984
|
heading?: {
|
|
5516
4985
|
text: string;
|
|
5517
4986
|
href?: string | undefined;
|
|
5518
4987
|
} | undefined;
|
|
5519
4988
|
flourishDescription?: string | undefined;
|
|
4989
|
+
storyUUID?: string | undefined;
|
|
4990
|
+
theme?: string | undefined;
|
|
5520
4991
|
}>;
|
|
5521
4992
|
} & {
|
|
5522
4993
|
sliceId: z.ZodOptional<z.ZodString>;
|
|
5523
4994
|
}, "strip", z.ZodTypeAny, {
|
|
5524
|
-
type: "
|
|
4995
|
+
type: "Interactive";
|
|
5525
4996
|
properties: {
|
|
5526
|
-
displayBehaviour: "standalone" | "associated";
|
|
5527
4997
|
flourishId: string;
|
|
4998
|
+
flourishAltText: string;
|
|
5528
4999
|
heading?: {
|
|
5529
5000
|
text: string;
|
|
5530
5001
|
href?: string | undefined;
|
|
5531
5002
|
} | undefined;
|
|
5532
5003
|
flourishDescription?: string | undefined;
|
|
5004
|
+
storyUUID?: string | undefined;
|
|
5005
|
+
theme?: string | undefined;
|
|
5533
5006
|
};
|
|
5534
5007
|
hidden?: boolean | undefined;
|
|
5535
5008
|
sliceId?: string | undefined;
|
|
5536
5009
|
}, {
|
|
5537
|
-
type: "
|
|
5010
|
+
type: "Interactive";
|
|
5538
5011
|
properties: {
|
|
5539
|
-
displayBehaviour: "standalone" | "associated";
|
|
5540
5012
|
flourishId: string;
|
|
5013
|
+
flourishAltText: string;
|
|
5541
5014
|
heading?: {
|
|
5542
5015
|
text: string;
|
|
5543
5016
|
href?: string | undefined;
|
|
5544
5017
|
} | undefined;
|
|
5545
5018
|
flourishDescription?: string | undefined;
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
sliceId?: string | undefined;
|
|
5549
|
-
}>, z.ZodObject<{
|
|
5550
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
5551
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
5552
|
-
properties: z.ZodObject<{
|
|
5553
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
5554
|
-
text: z.ZodString;
|
|
5555
|
-
href: z.ZodOptional<z.ZodString>;
|
|
5556
|
-
}, "strip", z.ZodTypeAny, {
|
|
5557
|
-
text: string;
|
|
5558
|
-
href?: string | undefined;
|
|
5559
|
-
}, {
|
|
5560
|
-
text: string;
|
|
5561
|
-
href?: string | undefined;
|
|
5562
|
-
}>>;
|
|
5563
|
-
} & {
|
|
5564
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
5565
|
-
} & {
|
|
5566
|
-
iframeSrc: z.ZodString;
|
|
5567
|
-
}, "strip", z.ZodTypeAny, {
|
|
5568
|
-
displayBehaviour: "standalone" | "associated";
|
|
5569
|
-
iframeSrc: string;
|
|
5570
|
-
heading?: {
|
|
5571
|
-
text: string;
|
|
5572
|
-
href?: string | undefined;
|
|
5573
|
-
} | undefined;
|
|
5574
|
-
}, {
|
|
5575
|
-
displayBehaviour: "standalone" | "associated";
|
|
5576
|
-
iframeSrc: string;
|
|
5577
|
-
heading?: {
|
|
5578
|
-
text: string;
|
|
5579
|
-
href?: string | undefined;
|
|
5580
|
-
} | undefined;
|
|
5581
|
-
}>;
|
|
5582
|
-
} & {
|
|
5583
|
-
sliceId: z.ZodOptional<z.ZodString>;
|
|
5584
|
-
}, "strip", z.ZodTypeAny, {
|
|
5585
|
-
type: "CustomIframe";
|
|
5586
|
-
properties: {
|
|
5587
|
-
displayBehaviour: "standalone" | "associated";
|
|
5588
|
-
iframeSrc: string;
|
|
5589
|
-
heading?: {
|
|
5590
|
-
text: string;
|
|
5591
|
-
href?: string | undefined;
|
|
5592
|
-
} | undefined;
|
|
5593
|
-
};
|
|
5594
|
-
hidden?: boolean | undefined;
|
|
5595
|
-
sliceId?: string | undefined;
|
|
5596
|
-
}, {
|
|
5597
|
-
type: "CustomIframe";
|
|
5598
|
-
properties: {
|
|
5599
|
-
displayBehaviour: "standalone" | "associated";
|
|
5600
|
-
iframeSrc: string;
|
|
5601
|
-
heading?: {
|
|
5602
|
-
text: string;
|
|
5603
|
-
href?: string | undefined;
|
|
5604
|
-
} | undefined;
|
|
5019
|
+
storyUUID?: string | undefined;
|
|
5020
|
+
theme?: string | undefined;
|
|
5605
5021
|
};
|
|
5606
5022
|
hidden?: boolean | undefined;
|
|
5607
5023
|
sliceId?: string | undefined;
|
|
@@ -6347,27 +5763,17 @@ declare const HomepageStructureInputSchema: z.ZodObject<{
|
|
|
6347
5763
|
} | undefined;
|
|
6348
5764
|
sliceId?: string | undefined;
|
|
6349
5765
|
} | {
|
|
6350
|
-
type: "
|
|
5766
|
+
type: "Interactive";
|
|
6351
5767
|
properties: {
|
|
6352
|
-
displayBehaviour: "standalone" | "associated";
|
|
6353
5768
|
flourishId: string;
|
|
5769
|
+
flourishAltText: string;
|
|
6354
5770
|
heading?: {
|
|
6355
5771
|
text: string;
|
|
6356
5772
|
href?: string | undefined;
|
|
6357
5773
|
} | undefined;
|
|
6358
5774
|
flourishDescription?: string | undefined;
|
|
6359
|
-
|
|
6360
|
-
|
|
6361
|
-
sliceId?: string | undefined;
|
|
6362
|
-
} | {
|
|
6363
|
-
type: "CustomIframe";
|
|
6364
|
-
properties: {
|
|
6365
|
-
displayBehaviour: "standalone" | "associated";
|
|
6366
|
-
iframeSrc: string;
|
|
6367
|
-
heading?: {
|
|
6368
|
-
text: string;
|
|
6369
|
-
href?: string | undefined;
|
|
6370
|
-
} | undefined;
|
|
5775
|
+
storyUUID?: string | undefined;
|
|
5776
|
+
theme?: string | undefined;
|
|
6371
5777
|
};
|
|
6372
5778
|
hidden?: boolean | undefined;
|
|
6373
5779
|
sliceId?: string | undefined;
|
|
@@ -6484,27 +5890,17 @@ declare const HomepageStructureInputSchema: z.ZodObject<{
|
|
|
6484
5890
|
} | undefined;
|
|
6485
5891
|
sliceId?: string | undefined;
|
|
6486
5892
|
} | {
|
|
6487
|
-
type: "
|
|
5893
|
+
type: "Interactive";
|
|
6488
5894
|
properties: {
|
|
6489
|
-
displayBehaviour: "standalone" | "associated";
|
|
6490
5895
|
flourishId: string;
|
|
5896
|
+
flourishAltText: string;
|
|
6491
5897
|
heading?: {
|
|
6492
5898
|
text: string;
|
|
6493
5899
|
href?: string | undefined;
|
|
6494
5900
|
} | undefined;
|
|
6495
5901
|
flourishDescription?: string | undefined;
|
|
6496
|
-
|
|
6497
|
-
|
|
6498
|
-
sliceId?: string | undefined;
|
|
6499
|
-
} | {
|
|
6500
|
-
type: "CustomIframe";
|
|
6501
|
-
properties: {
|
|
6502
|
-
displayBehaviour: "standalone" | "associated";
|
|
6503
|
-
iframeSrc: string;
|
|
6504
|
-
heading?: {
|
|
6505
|
-
text: string;
|
|
6506
|
-
href?: string | undefined;
|
|
6507
|
-
} | undefined;
|
|
5902
|
+
storyUUID?: string | undefined;
|
|
5903
|
+
theme?: string | undefined;
|
|
6508
5904
|
};
|
|
6509
5905
|
hidden?: boolean | undefined;
|
|
6510
5906
|
sliceId?: string | undefined;
|
|
@@ -6657,7 +6053,7 @@ declare const HomepageStructureOutputSchema: z.ZodObject<{
|
|
|
6657
6053
|
} | undefined;
|
|
6658
6054
|
} | undefined;
|
|
6659
6055
|
}>, z.ZodObject<{
|
|
6660
|
-
type: z.ZodLiteral<"
|
|
6056
|
+
type: z.ZodLiteral<"Interactive">;
|
|
6661
6057
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6662
6058
|
properties: z.ZodObject<{
|
|
6663
6059
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -6670,112 +6066,62 @@ declare const HomepageStructureOutputSchema: z.ZodObject<{
|
|
|
6670
6066
|
text: string;
|
|
6671
6067
|
href?: string | undefined;
|
|
6672
6068
|
}>>;
|
|
6673
|
-
} & {
|
|
6674
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
6675
6069
|
} & {
|
|
6676
6070
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
6677
6071
|
flourishId: z.ZodString;
|
|
6072
|
+
flourishAltText: z.ZodString;
|
|
6073
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
6074
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
6678
6075
|
}, "strip", z.ZodTypeAny, {
|
|
6679
|
-
displayBehaviour: "standalone" | "associated";
|
|
6680
6076
|
flourishId: string;
|
|
6077
|
+
flourishAltText: string;
|
|
6681
6078
|
heading?: {
|
|
6682
6079
|
text: string;
|
|
6683
6080
|
href?: string | undefined;
|
|
6684
6081
|
} | undefined;
|
|
6685
6082
|
flourishDescription?: string | undefined;
|
|
6083
|
+
storyUUID?: string | undefined;
|
|
6084
|
+
theme?: string | undefined;
|
|
6686
6085
|
}, {
|
|
6687
|
-
displayBehaviour: "standalone" | "associated";
|
|
6688
6086
|
flourishId: string;
|
|
6087
|
+
flourishAltText: string;
|
|
6689
6088
|
heading?: {
|
|
6690
6089
|
text: string;
|
|
6691
6090
|
href?: string | undefined;
|
|
6692
6091
|
} | undefined;
|
|
6693
6092
|
flourishDescription?: string | undefined;
|
|
6093
|
+
storyUUID?: string | undefined;
|
|
6094
|
+
theme?: string | undefined;
|
|
6694
6095
|
}>;
|
|
6695
6096
|
} & {
|
|
6696
6097
|
sliceId: z.ZodString;
|
|
6697
6098
|
}, "strip", z.ZodTypeAny, {
|
|
6698
|
-
type: "
|
|
6099
|
+
type: "Interactive";
|
|
6699
6100
|
properties: {
|
|
6700
|
-
displayBehaviour: "standalone" | "associated";
|
|
6701
6101
|
flourishId: string;
|
|
6102
|
+
flourishAltText: string;
|
|
6702
6103
|
heading?: {
|
|
6703
6104
|
text: string;
|
|
6704
6105
|
href?: string | undefined;
|
|
6705
6106
|
} | undefined;
|
|
6706
6107
|
flourishDescription?: string | undefined;
|
|
6108
|
+
storyUUID?: string | undefined;
|
|
6109
|
+
theme?: string | undefined;
|
|
6707
6110
|
};
|
|
6708
6111
|
sliceId: string;
|
|
6709
6112
|
hidden?: boolean | undefined;
|
|
6710
6113
|
}, {
|
|
6711
|
-
type: "
|
|
6114
|
+
type: "Interactive";
|
|
6712
6115
|
properties: {
|
|
6713
|
-
displayBehaviour: "standalone" | "associated";
|
|
6714
6116
|
flourishId: string;
|
|
6117
|
+
flourishAltText: string;
|
|
6715
6118
|
heading?: {
|
|
6716
6119
|
text: string;
|
|
6717
6120
|
href?: string | undefined;
|
|
6718
6121
|
} | undefined;
|
|
6719
6122
|
flourishDescription?: string | undefined;
|
|
6720
|
-
|
|
6721
|
-
|
|
6722
|
-
hidden?: boolean | undefined;
|
|
6723
|
-
}>, z.ZodObject<{
|
|
6724
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
6725
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6726
|
-
properties: z.ZodObject<{
|
|
6727
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
6728
|
-
text: z.ZodString;
|
|
6729
|
-
href: z.ZodOptional<z.ZodString>;
|
|
6730
|
-
}, "strip", z.ZodTypeAny, {
|
|
6731
|
-
text: string;
|
|
6732
|
-
href?: string | undefined;
|
|
6733
|
-
}, {
|
|
6734
|
-
text: string;
|
|
6735
|
-
href?: string | undefined;
|
|
6736
|
-
}>>;
|
|
6737
|
-
} & {
|
|
6738
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
6739
|
-
} & {
|
|
6740
|
-
iframeSrc: z.ZodString;
|
|
6741
|
-
}, "strip", z.ZodTypeAny, {
|
|
6742
|
-
displayBehaviour: "standalone" | "associated";
|
|
6743
|
-
iframeSrc: string;
|
|
6744
|
-
heading?: {
|
|
6745
|
-
text: string;
|
|
6746
|
-
href?: string | undefined;
|
|
6747
|
-
} | undefined;
|
|
6748
|
-
}, {
|
|
6749
|
-
displayBehaviour: "standalone" | "associated";
|
|
6750
|
-
iframeSrc: string;
|
|
6751
|
-
heading?: {
|
|
6752
|
-
text: string;
|
|
6753
|
-
href?: string | undefined;
|
|
6754
|
-
} | undefined;
|
|
6755
|
-
}>;
|
|
6756
|
-
} & {
|
|
6757
|
-
sliceId: z.ZodString;
|
|
6758
|
-
}, "strip", z.ZodTypeAny, {
|
|
6759
|
-
type: "CustomIframe";
|
|
6760
|
-
properties: {
|
|
6761
|
-
displayBehaviour: "standalone" | "associated";
|
|
6762
|
-
iframeSrc: string;
|
|
6763
|
-
heading?: {
|
|
6764
|
-
text: string;
|
|
6765
|
-
href?: string | undefined;
|
|
6766
|
-
} | undefined;
|
|
6767
|
-
};
|
|
6768
|
-
sliceId: string;
|
|
6769
|
-
hidden?: boolean | undefined;
|
|
6770
|
-
}, {
|
|
6771
|
-
type: "CustomIframe";
|
|
6772
|
-
properties: {
|
|
6773
|
-
displayBehaviour: "standalone" | "associated";
|
|
6774
|
-
iframeSrc: string;
|
|
6775
|
-
heading?: {
|
|
6776
|
-
text: string;
|
|
6777
|
-
href?: string | undefined;
|
|
6778
|
-
} | undefined;
|
|
6123
|
+
storyUUID?: string | undefined;
|
|
6124
|
+
theme?: string | undefined;
|
|
6779
6125
|
};
|
|
6780
6126
|
sliceId: string;
|
|
6781
6127
|
hidden?: boolean | undefined;
|
|
@@ -7523,27 +6869,17 @@ declare const HomepageStructureOutputSchema: z.ZodObject<{
|
|
|
7523
6869
|
} | undefined;
|
|
7524
6870
|
} | undefined;
|
|
7525
6871
|
} | {
|
|
7526
|
-
type: "
|
|
6872
|
+
type: "Interactive";
|
|
7527
6873
|
properties: {
|
|
7528
|
-
displayBehaviour: "standalone" | "associated";
|
|
7529
6874
|
flourishId: string;
|
|
6875
|
+
flourishAltText: string;
|
|
7530
6876
|
heading?: {
|
|
7531
6877
|
text: string;
|
|
7532
6878
|
href?: string | undefined;
|
|
7533
6879
|
} | undefined;
|
|
7534
6880
|
flourishDescription?: string | undefined;
|
|
7535
|
-
|
|
7536
|
-
|
|
7537
|
-
hidden?: boolean | undefined;
|
|
7538
|
-
} | {
|
|
7539
|
-
type: "CustomIframe";
|
|
7540
|
-
properties: {
|
|
7541
|
-
displayBehaviour: "standalone" | "associated";
|
|
7542
|
-
iframeSrc: string;
|
|
7543
|
-
heading?: {
|
|
7544
|
-
text: string;
|
|
7545
|
-
href?: string | undefined;
|
|
7546
|
-
} | undefined;
|
|
6881
|
+
storyUUID?: string | undefined;
|
|
6882
|
+
theme?: string | undefined;
|
|
7547
6883
|
};
|
|
7548
6884
|
sliceId: string;
|
|
7549
6885
|
hidden?: boolean | undefined;
|
|
@@ -7662,27 +6998,17 @@ declare const HomepageStructureOutputSchema: z.ZodObject<{
|
|
|
7662
6998
|
} | undefined;
|
|
7663
6999
|
} | undefined;
|
|
7664
7000
|
} | {
|
|
7665
|
-
type: "
|
|
7001
|
+
type: "Interactive";
|
|
7666
7002
|
properties: {
|
|
7667
|
-
displayBehaviour: "standalone" | "associated";
|
|
7668
7003
|
flourishId: string;
|
|
7004
|
+
flourishAltText: string;
|
|
7669
7005
|
heading?: {
|
|
7670
7006
|
text: string;
|
|
7671
7007
|
href?: string | undefined;
|
|
7672
7008
|
} | undefined;
|
|
7673
7009
|
flourishDescription?: string | undefined;
|
|
7674
|
-
|
|
7675
|
-
|
|
7676
|
-
hidden?: boolean | undefined;
|
|
7677
|
-
} | {
|
|
7678
|
-
type: "CustomIframe";
|
|
7679
|
-
properties: {
|
|
7680
|
-
displayBehaviour: "standalone" | "associated";
|
|
7681
|
-
iframeSrc: string;
|
|
7682
|
-
heading?: {
|
|
7683
|
-
text: string;
|
|
7684
|
-
href?: string | undefined;
|
|
7685
|
-
} | undefined;
|
|
7010
|
+
storyUUID?: string | undefined;
|
|
7011
|
+
theme?: string | undefined;
|
|
7686
7012
|
};
|
|
7687
7013
|
sliceId: string;
|
|
7688
7014
|
hidden?: boolean | undefined;
|
|
@@ -7781,13 +7107,160 @@ declare const HomepageStructureOutputSchema: z.ZodObject<{
|
|
|
7781
7107
|
export { HomepageStructureOutputSchema }
|
|
7782
7108
|
export { HomepageStructureOutputSchema as HomepageStructureOutputSchema_alias_1 }
|
|
7783
7109
|
|
|
7784
|
-
|
|
7785
|
-
|
|
7786
|
-
|
|
7787
|
-
|
|
7788
|
-
|
|
7789
|
-
|
|
7790
|
-
|
|
7110
|
+
declare const InteractiveSlice: {
|
|
7111
|
+
InputSchema: z.ZodObject<{
|
|
7112
|
+
type: z.ZodLiteral<"Interactive">;
|
|
7113
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7114
|
+
properties: z.ZodObject<{
|
|
7115
|
+
heading: z.ZodOptional<z.ZodObject<{
|
|
7116
|
+
text: z.ZodString;
|
|
7117
|
+
href: z.ZodOptional<z.ZodString>;
|
|
7118
|
+
}, "strip", z.ZodTypeAny, {
|
|
7119
|
+
text: string;
|
|
7120
|
+
href?: string | undefined;
|
|
7121
|
+
}, {
|
|
7122
|
+
text: string;
|
|
7123
|
+
href?: string | undefined;
|
|
7124
|
+
}>>;
|
|
7125
|
+
} & {
|
|
7126
|
+
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
7127
|
+
flourishId: z.ZodString;
|
|
7128
|
+
flourishAltText: z.ZodString;
|
|
7129
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
7130
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
7131
|
+
}, "strip", z.ZodTypeAny, {
|
|
7132
|
+
flourishId: string;
|
|
7133
|
+
flourishAltText: string;
|
|
7134
|
+
heading?: {
|
|
7135
|
+
text: string;
|
|
7136
|
+
href?: string | undefined;
|
|
7137
|
+
} | undefined;
|
|
7138
|
+
flourishDescription?: string | undefined;
|
|
7139
|
+
storyUUID?: string | undefined;
|
|
7140
|
+
theme?: string | undefined;
|
|
7141
|
+
}, {
|
|
7142
|
+
flourishId: string;
|
|
7143
|
+
flourishAltText: string;
|
|
7144
|
+
heading?: {
|
|
7145
|
+
text: string;
|
|
7146
|
+
href?: string | undefined;
|
|
7147
|
+
} | undefined;
|
|
7148
|
+
flourishDescription?: string | undefined;
|
|
7149
|
+
storyUUID?: string | undefined;
|
|
7150
|
+
theme?: string | undefined;
|
|
7151
|
+
}>;
|
|
7152
|
+
} & {
|
|
7153
|
+
sliceId: z.ZodOptional<z.ZodString>;
|
|
7154
|
+
}, "strip", z.ZodTypeAny, {
|
|
7155
|
+
type: "Interactive";
|
|
7156
|
+
properties: {
|
|
7157
|
+
flourishId: string;
|
|
7158
|
+
flourishAltText: string;
|
|
7159
|
+
heading?: {
|
|
7160
|
+
text: string;
|
|
7161
|
+
href?: string | undefined;
|
|
7162
|
+
} | undefined;
|
|
7163
|
+
flourishDescription?: string | undefined;
|
|
7164
|
+
storyUUID?: string | undefined;
|
|
7165
|
+
theme?: string | undefined;
|
|
7166
|
+
};
|
|
7167
|
+
hidden?: boolean | undefined;
|
|
7168
|
+
sliceId?: string | undefined;
|
|
7169
|
+
}, {
|
|
7170
|
+
type: "Interactive";
|
|
7171
|
+
properties: {
|
|
7172
|
+
flourishId: string;
|
|
7173
|
+
flourishAltText: string;
|
|
7174
|
+
heading?: {
|
|
7175
|
+
text: string;
|
|
7176
|
+
href?: string | undefined;
|
|
7177
|
+
} | undefined;
|
|
7178
|
+
flourishDescription?: string | undefined;
|
|
7179
|
+
storyUUID?: string | undefined;
|
|
7180
|
+
theme?: string | undefined;
|
|
7181
|
+
};
|
|
7182
|
+
hidden?: boolean | undefined;
|
|
7183
|
+
sliceId?: string | undefined;
|
|
7184
|
+
}>;
|
|
7185
|
+
OutputSchema: z.ZodObject<{
|
|
7186
|
+
type: z.ZodLiteral<"Interactive">;
|
|
7187
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7188
|
+
properties: z.ZodObject<{
|
|
7189
|
+
heading: z.ZodOptional<z.ZodObject<{
|
|
7190
|
+
text: z.ZodString;
|
|
7191
|
+
href: z.ZodOptional<z.ZodString>;
|
|
7192
|
+
}, "strip", z.ZodTypeAny, {
|
|
7193
|
+
text: string;
|
|
7194
|
+
href?: string | undefined;
|
|
7195
|
+
}, {
|
|
7196
|
+
text: string;
|
|
7197
|
+
href?: string | undefined;
|
|
7198
|
+
}>>;
|
|
7199
|
+
} & {
|
|
7200
|
+
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
7201
|
+
flourishId: z.ZodString;
|
|
7202
|
+
flourishAltText: z.ZodString;
|
|
7203
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
7204
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
7205
|
+
}, "strip", z.ZodTypeAny, {
|
|
7206
|
+
flourishId: string;
|
|
7207
|
+
flourishAltText: string;
|
|
7208
|
+
heading?: {
|
|
7209
|
+
text: string;
|
|
7210
|
+
href?: string | undefined;
|
|
7211
|
+
} | undefined;
|
|
7212
|
+
flourishDescription?: string | undefined;
|
|
7213
|
+
storyUUID?: string | undefined;
|
|
7214
|
+
theme?: string | undefined;
|
|
7215
|
+
}, {
|
|
7216
|
+
flourishId: string;
|
|
7217
|
+
flourishAltText: string;
|
|
7218
|
+
heading?: {
|
|
7219
|
+
text: string;
|
|
7220
|
+
href?: string | undefined;
|
|
7221
|
+
} | undefined;
|
|
7222
|
+
flourishDescription?: string | undefined;
|
|
7223
|
+
storyUUID?: string | undefined;
|
|
7224
|
+
theme?: string | undefined;
|
|
7225
|
+
}>;
|
|
7226
|
+
} & {
|
|
7227
|
+
sliceId: z.ZodString;
|
|
7228
|
+
}, "strip", z.ZodTypeAny, {
|
|
7229
|
+
type: "Interactive";
|
|
7230
|
+
properties: {
|
|
7231
|
+
flourishId: string;
|
|
7232
|
+
flourishAltText: string;
|
|
7233
|
+
heading?: {
|
|
7234
|
+
text: string;
|
|
7235
|
+
href?: string | undefined;
|
|
7236
|
+
} | undefined;
|
|
7237
|
+
flourishDescription?: string | undefined;
|
|
7238
|
+
storyUUID?: string | undefined;
|
|
7239
|
+
theme?: string | undefined;
|
|
7240
|
+
};
|
|
7241
|
+
sliceId: string;
|
|
7242
|
+
hidden?: boolean | undefined;
|
|
7243
|
+
}, {
|
|
7244
|
+
type: "Interactive";
|
|
7245
|
+
properties: {
|
|
7246
|
+
flourishId: string;
|
|
7247
|
+
flourishAltText: string;
|
|
7248
|
+
heading?: {
|
|
7249
|
+
text: string;
|
|
7250
|
+
href?: string | undefined;
|
|
7251
|
+
} | undefined;
|
|
7252
|
+
flourishDescription?: string | undefined;
|
|
7253
|
+
storyUUID?: string | undefined;
|
|
7254
|
+
theme?: string | undefined;
|
|
7255
|
+
};
|
|
7256
|
+
sliceId: string;
|
|
7257
|
+
hidden?: boolean | undefined;
|
|
7258
|
+
}>;
|
|
7259
|
+
};
|
|
7260
|
+
|
|
7261
|
+
declare type InteractiveSliceType = z.infer<typeof InteractiveSlice.OutputSchema>;
|
|
7262
|
+
export { InteractiveSliceType }
|
|
7263
|
+
export { InteractiveSliceType as InteractiveSliceType_alias_1 }
|
|
7791
7264
|
|
|
7792
7265
|
declare type LegacyBlock = z.infer<typeof LegacyBlockSchema>;
|
|
7793
7266
|
export { LegacyBlock }
|
|
@@ -7826,20 +7299,25 @@ declare const LegacyBlockSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7826
7299
|
type: z.ZodLiteral<"info-box">;
|
|
7827
7300
|
properties: z.ZodObject<{
|
|
7828
7301
|
bodyHTML: z.ZodString;
|
|
7302
|
+
title: z.ZodOptional<z.ZodString>;
|
|
7829
7303
|
}, "strip", z.ZodTypeAny, {
|
|
7830
7304
|
bodyHTML: string;
|
|
7305
|
+
title?: string | undefined;
|
|
7831
7306
|
}, {
|
|
7832
7307
|
bodyHTML: string;
|
|
7308
|
+
title?: string | undefined;
|
|
7833
7309
|
}>;
|
|
7834
7310
|
}, "strip", z.ZodTypeAny, {
|
|
7835
7311
|
type: "info-box";
|
|
7836
7312
|
properties: {
|
|
7837
7313
|
bodyHTML: string;
|
|
7314
|
+
title?: string | undefined;
|
|
7838
7315
|
};
|
|
7839
7316
|
}, {
|
|
7840
7317
|
type: "info-box";
|
|
7841
7318
|
properties: {
|
|
7842
7319
|
bodyHTML: string;
|
|
7320
|
+
title?: string | undefined;
|
|
7843
7321
|
};
|
|
7844
7322
|
}>, z.ZodObject<{
|
|
7845
7323
|
type: z.ZodLiteral<"container">;
|
|
@@ -8041,20 +7519,25 @@ declare const LegacyPageStructureOutputSchema: z.ZodObject<{
|
|
|
8041
7519
|
type: z.ZodLiteral<"info-box">;
|
|
8042
7520
|
properties: z.ZodObject<{
|
|
8043
7521
|
bodyHTML: z.ZodString;
|
|
7522
|
+
title: z.ZodOptional<z.ZodString>;
|
|
8044
7523
|
}, "strip", z.ZodTypeAny, {
|
|
8045
7524
|
bodyHTML: string;
|
|
7525
|
+
title?: string | undefined;
|
|
8046
7526
|
}, {
|
|
8047
7527
|
bodyHTML: string;
|
|
7528
|
+
title?: string | undefined;
|
|
8048
7529
|
}>;
|
|
8049
7530
|
}, "strip", z.ZodTypeAny, {
|
|
8050
7531
|
type: "info-box";
|
|
8051
7532
|
properties: {
|
|
8052
7533
|
bodyHTML: string;
|
|
7534
|
+
title?: string | undefined;
|
|
8053
7535
|
};
|
|
8054
7536
|
}, {
|
|
8055
7537
|
type: "info-box";
|
|
8056
7538
|
properties: {
|
|
8057
7539
|
bodyHTML: string;
|
|
7540
|
+
title?: string | undefined;
|
|
8058
7541
|
};
|
|
8059
7542
|
}>, z.ZodObject<{
|
|
8060
7543
|
type: z.ZodLiteral<"container">;
|
|
@@ -8226,6 +7709,7 @@ declare const LegacyPageStructureOutputSchema: z.ZodObject<{
|
|
|
8226
7709
|
type: "info-box";
|
|
8227
7710
|
properties: {
|
|
8228
7711
|
bodyHTML: string;
|
|
7712
|
+
title?: string | undefined;
|
|
8229
7713
|
};
|
|
8230
7714
|
} | {
|
|
8231
7715
|
type: "container";
|
|
@@ -8276,6 +7760,7 @@ declare const LegacyPageStructureOutputSchema: z.ZodObject<{
|
|
|
8276
7760
|
type: "info-box";
|
|
8277
7761
|
properties: {
|
|
8278
7762
|
bodyHTML: string;
|
|
7763
|
+
title?: string | undefined;
|
|
8279
7764
|
};
|
|
8280
7765
|
} | {
|
|
8281
7766
|
type: "container";
|
|
@@ -8434,7 +7919,7 @@ declare const PageDraftSchema: z.ZodObject<{
|
|
|
8434
7919
|
} | undefined;
|
|
8435
7920
|
} | undefined;
|
|
8436
7921
|
}>, z.ZodObject<{
|
|
8437
|
-
type: z.ZodLiteral<"
|
|
7922
|
+
type: z.ZodLiteral<"Interactive">;
|
|
8438
7923
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
8439
7924
|
properties: z.ZodObject<{
|
|
8440
7925
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -8447,112 +7932,62 @@ declare const PageDraftSchema: z.ZodObject<{
|
|
|
8447
7932
|
text: string;
|
|
8448
7933
|
href?: string | undefined;
|
|
8449
7934
|
}>>;
|
|
8450
|
-
} & {
|
|
8451
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
8452
7935
|
} & {
|
|
8453
7936
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
8454
7937
|
flourishId: z.ZodString;
|
|
7938
|
+
flourishAltText: z.ZodString;
|
|
7939
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
7940
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
8455
7941
|
}, "strip", z.ZodTypeAny, {
|
|
8456
|
-
displayBehaviour: "standalone" | "associated";
|
|
8457
7942
|
flourishId: string;
|
|
7943
|
+
flourishAltText: string;
|
|
8458
7944
|
heading?: {
|
|
8459
7945
|
text: string;
|
|
8460
7946
|
href?: string | undefined;
|
|
8461
7947
|
} | undefined;
|
|
8462
7948
|
flourishDescription?: string | undefined;
|
|
7949
|
+
storyUUID?: string | undefined;
|
|
7950
|
+
theme?: string | undefined;
|
|
8463
7951
|
}, {
|
|
8464
|
-
displayBehaviour: "standalone" | "associated";
|
|
8465
7952
|
flourishId: string;
|
|
7953
|
+
flourishAltText: string;
|
|
8466
7954
|
heading?: {
|
|
8467
7955
|
text: string;
|
|
8468
7956
|
href?: string | undefined;
|
|
8469
7957
|
} | undefined;
|
|
8470
7958
|
flourishDescription?: string | undefined;
|
|
7959
|
+
storyUUID?: string | undefined;
|
|
7960
|
+
theme?: string | undefined;
|
|
8471
7961
|
}>;
|
|
8472
7962
|
} & {
|
|
8473
7963
|
sliceId: z.ZodString;
|
|
8474
7964
|
}, "strip", z.ZodTypeAny, {
|
|
8475
|
-
type: "
|
|
7965
|
+
type: "Interactive";
|
|
8476
7966
|
properties: {
|
|
8477
|
-
displayBehaviour: "standalone" | "associated";
|
|
8478
7967
|
flourishId: string;
|
|
7968
|
+
flourishAltText: string;
|
|
8479
7969
|
heading?: {
|
|
8480
7970
|
text: string;
|
|
8481
7971
|
href?: string | undefined;
|
|
8482
7972
|
} | undefined;
|
|
8483
7973
|
flourishDescription?: string | undefined;
|
|
7974
|
+
storyUUID?: string | undefined;
|
|
7975
|
+
theme?: string | undefined;
|
|
8484
7976
|
};
|
|
8485
7977
|
sliceId: string;
|
|
8486
7978
|
hidden?: boolean | undefined;
|
|
8487
7979
|
}, {
|
|
8488
|
-
type: "
|
|
7980
|
+
type: "Interactive";
|
|
8489
7981
|
properties: {
|
|
8490
|
-
displayBehaviour: "standalone" | "associated";
|
|
8491
7982
|
flourishId: string;
|
|
7983
|
+
flourishAltText: string;
|
|
8492
7984
|
heading?: {
|
|
8493
7985
|
text: string;
|
|
8494
7986
|
href?: string | undefined;
|
|
8495
7987
|
} | undefined;
|
|
8496
7988
|
flourishDescription?: string | undefined;
|
|
8497
|
-
|
|
8498
|
-
|
|
8499
|
-
hidden?: boolean | undefined;
|
|
8500
|
-
}>, z.ZodObject<{
|
|
8501
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
8502
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
8503
|
-
properties: z.ZodObject<{
|
|
8504
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
8505
|
-
text: z.ZodString;
|
|
8506
|
-
href: z.ZodOptional<z.ZodString>;
|
|
8507
|
-
}, "strip", z.ZodTypeAny, {
|
|
8508
|
-
text: string;
|
|
8509
|
-
href?: string | undefined;
|
|
8510
|
-
}, {
|
|
8511
|
-
text: string;
|
|
8512
|
-
href?: string | undefined;
|
|
8513
|
-
}>>;
|
|
8514
|
-
} & {
|
|
8515
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
8516
|
-
} & {
|
|
8517
|
-
iframeSrc: z.ZodString;
|
|
8518
|
-
}, "strip", z.ZodTypeAny, {
|
|
8519
|
-
displayBehaviour: "standalone" | "associated";
|
|
8520
|
-
iframeSrc: string;
|
|
8521
|
-
heading?: {
|
|
8522
|
-
text: string;
|
|
8523
|
-
href?: string | undefined;
|
|
8524
|
-
} | undefined;
|
|
8525
|
-
}, {
|
|
8526
|
-
displayBehaviour: "standalone" | "associated";
|
|
8527
|
-
iframeSrc: string;
|
|
8528
|
-
heading?: {
|
|
8529
|
-
text: string;
|
|
8530
|
-
href?: string | undefined;
|
|
8531
|
-
} | undefined;
|
|
8532
|
-
}>;
|
|
8533
|
-
} & {
|
|
8534
|
-
sliceId: z.ZodString;
|
|
8535
|
-
}, "strip", z.ZodTypeAny, {
|
|
8536
|
-
type: "CustomIframe";
|
|
8537
|
-
properties: {
|
|
8538
|
-
displayBehaviour: "standalone" | "associated";
|
|
8539
|
-
iframeSrc: string;
|
|
8540
|
-
heading?: {
|
|
8541
|
-
text: string;
|
|
8542
|
-
href?: string | undefined;
|
|
8543
|
-
} | undefined;
|
|
8544
|
-
};
|
|
8545
|
-
sliceId: string;
|
|
8546
|
-
hidden?: boolean | undefined;
|
|
8547
|
-
}, {
|
|
8548
|
-
type: "CustomIframe";
|
|
8549
|
-
properties: {
|
|
8550
|
-
displayBehaviour: "standalone" | "associated";
|
|
8551
|
-
iframeSrc: string;
|
|
8552
|
-
heading?: {
|
|
8553
|
-
text: string;
|
|
8554
|
-
href?: string | undefined;
|
|
8555
|
-
} | undefined;
|
|
7989
|
+
storyUUID?: string | undefined;
|
|
7990
|
+
theme?: string | undefined;
|
|
8556
7991
|
};
|
|
8557
7992
|
sliceId: string;
|
|
8558
7993
|
hidden?: boolean | undefined;
|
|
@@ -9261,31 +8696,21 @@ declare const PageDraftSchema: z.ZodObject<{
|
|
|
9261
8696
|
properties?: {
|
|
9262
8697
|
heading?: {
|
|
9263
8698
|
text: string;
|
|
9264
|
-
href?: string | undefined;
|
|
9265
|
-
} | undefined;
|
|
9266
|
-
} | undefined;
|
|
9267
|
-
} | {
|
|
9268
|
-
type: "FlourishGraphic";
|
|
9269
|
-
properties: {
|
|
9270
|
-
displayBehaviour: "standalone" | "associated";
|
|
9271
|
-
flourishId: string;
|
|
9272
|
-
heading?: {
|
|
9273
|
-
text: string;
|
|
9274
|
-
href?: string | undefined;
|
|
9275
|
-
} | undefined;
|
|
9276
|
-
flourishDescription?: string | undefined;
|
|
9277
|
-
};
|
|
9278
|
-
sliceId: string;
|
|
9279
|
-
hidden?: boolean | undefined;
|
|
8699
|
+
href?: string | undefined;
|
|
8700
|
+
} | undefined;
|
|
8701
|
+
} | undefined;
|
|
9280
8702
|
} | {
|
|
9281
|
-
type: "
|
|
8703
|
+
type: "Interactive";
|
|
9282
8704
|
properties: {
|
|
9283
|
-
|
|
9284
|
-
|
|
8705
|
+
flourishId: string;
|
|
8706
|
+
flourishAltText: string;
|
|
9285
8707
|
heading?: {
|
|
9286
8708
|
text: string;
|
|
9287
8709
|
href?: string | undefined;
|
|
9288
8710
|
} | undefined;
|
|
8711
|
+
flourishDescription?: string | undefined;
|
|
8712
|
+
storyUUID?: string | undefined;
|
|
8713
|
+
theme?: string | undefined;
|
|
9289
8714
|
};
|
|
9290
8715
|
sliceId: string;
|
|
9291
8716
|
hidden?: boolean | undefined;
|
|
@@ -9403,27 +8828,17 @@ declare const PageDraftSchema: z.ZodObject<{
|
|
|
9403
8828
|
} | undefined;
|
|
9404
8829
|
} | undefined;
|
|
9405
8830
|
} | {
|
|
9406
|
-
type: "
|
|
8831
|
+
type: "Interactive";
|
|
9407
8832
|
properties: {
|
|
9408
|
-
displayBehaviour: "standalone" | "associated";
|
|
9409
8833
|
flourishId: string;
|
|
8834
|
+
flourishAltText: string;
|
|
9410
8835
|
heading?: {
|
|
9411
8836
|
text: string;
|
|
9412
8837
|
href?: string | undefined;
|
|
9413
8838
|
} | undefined;
|
|
9414
8839
|
flourishDescription?: string | undefined;
|
|
9415
|
-
|
|
9416
|
-
|
|
9417
|
-
hidden?: boolean | undefined;
|
|
9418
|
-
} | {
|
|
9419
|
-
type: "CustomIframe";
|
|
9420
|
-
properties: {
|
|
9421
|
-
displayBehaviour: "standalone" | "associated";
|
|
9422
|
-
iframeSrc: string;
|
|
9423
|
-
heading?: {
|
|
9424
|
-
text: string;
|
|
9425
|
-
href?: string | undefined;
|
|
9426
|
-
} | undefined;
|
|
8840
|
+
storyUUID?: string | undefined;
|
|
8841
|
+
theme?: string | undefined;
|
|
9427
8842
|
};
|
|
9428
8843
|
sliceId: string;
|
|
9429
8844
|
hidden?: boolean | undefined;
|
|
@@ -9553,27 +8968,17 @@ declare const PageDraftSchema: z.ZodObject<{
|
|
|
9553
8968
|
} | undefined;
|
|
9554
8969
|
} | undefined;
|
|
9555
8970
|
} | {
|
|
9556
|
-
type: "
|
|
8971
|
+
type: "Interactive";
|
|
9557
8972
|
properties: {
|
|
9558
|
-
displayBehaviour: "standalone" | "associated";
|
|
9559
8973
|
flourishId: string;
|
|
8974
|
+
flourishAltText: string;
|
|
9560
8975
|
heading?: {
|
|
9561
8976
|
text: string;
|
|
9562
8977
|
href?: string | undefined;
|
|
9563
8978
|
} | undefined;
|
|
9564
8979
|
flourishDescription?: string | undefined;
|
|
9565
|
-
|
|
9566
|
-
|
|
9567
|
-
hidden?: boolean | undefined;
|
|
9568
|
-
} | {
|
|
9569
|
-
type: "CustomIframe";
|
|
9570
|
-
properties: {
|
|
9571
|
-
displayBehaviour: "standalone" | "associated";
|
|
9572
|
-
iframeSrc: string;
|
|
9573
|
-
heading?: {
|
|
9574
|
-
text: string;
|
|
9575
|
-
href?: string | undefined;
|
|
9576
|
-
} | undefined;
|
|
8980
|
+
storyUUID?: string | undefined;
|
|
8981
|
+
theme?: string | undefined;
|
|
9577
8982
|
};
|
|
9578
8983
|
sliceId: string;
|
|
9579
8984
|
hidden?: boolean | undefined;
|
|
@@ -9703,27 +9108,17 @@ declare const PageDraftSchema: z.ZodObject<{
|
|
|
9703
9108
|
} | undefined;
|
|
9704
9109
|
} | undefined;
|
|
9705
9110
|
} | {
|
|
9706
|
-
type: "
|
|
9111
|
+
type: "Interactive";
|
|
9707
9112
|
properties: {
|
|
9708
|
-
displayBehaviour: "standalone" | "associated";
|
|
9709
9113
|
flourishId: string;
|
|
9114
|
+
flourishAltText: string;
|
|
9710
9115
|
heading?: {
|
|
9711
9116
|
text: string;
|
|
9712
9117
|
href?: string | undefined;
|
|
9713
9118
|
} | undefined;
|
|
9714
9119
|
flourishDescription?: string | undefined;
|
|
9715
|
-
|
|
9716
|
-
|
|
9717
|
-
hidden?: boolean | undefined;
|
|
9718
|
-
} | {
|
|
9719
|
-
type: "CustomIframe";
|
|
9720
|
-
properties: {
|
|
9721
|
-
displayBehaviour: "standalone" | "associated";
|
|
9722
|
-
iframeSrc: string;
|
|
9723
|
-
heading?: {
|
|
9724
|
-
text: string;
|
|
9725
|
-
href?: string | undefined;
|
|
9726
|
-
} | undefined;
|
|
9120
|
+
storyUUID?: string | undefined;
|
|
9121
|
+
theme?: string | undefined;
|
|
9727
9122
|
};
|
|
9728
9123
|
sliceId: string;
|
|
9729
9124
|
hidden?: boolean | undefined;
|
|
@@ -9910,7 +9305,7 @@ declare const PageStructureInputSchema: z.ZodObject<{
|
|
|
9910
9305
|
} | undefined;
|
|
9911
9306
|
sliceId?: string | undefined;
|
|
9912
9307
|
}>, z.ZodObject<{
|
|
9913
|
-
type: z.ZodLiteral<"
|
|
9308
|
+
type: z.ZodLiteral<"Interactive">;
|
|
9914
9309
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
9915
9310
|
properties: z.ZodObject<{
|
|
9916
9311
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -9923,112 +9318,62 @@ declare const PageStructureInputSchema: z.ZodObject<{
|
|
|
9923
9318
|
text: string;
|
|
9924
9319
|
href?: string | undefined;
|
|
9925
9320
|
}>>;
|
|
9926
|
-
} & {
|
|
9927
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
9928
9321
|
} & {
|
|
9929
9322
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
9930
9323
|
flourishId: z.ZodString;
|
|
9324
|
+
flourishAltText: z.ZodString;
|
|
9325
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
9326
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
9931
9327
|
}, "strip", z.ZodTypeAny, {
|
|
9932
|
-
displayBehaviour: "standalone" | "associated";
|
|
9933
9328
|
flourishId: string;
|
|
9329
|
+
flourishAltText: string;
|
|
9934
9330
|
heading?: {
|
|
9935
9331
|
text: string;
|
|
9936
9332
|
href?: string | undefined;
|
|
9937
9333
|
} | undefined;
|
|
9938
9334
|
flourishDescription?: string | undefined;
|
|
9335
|
+
storyUUID?: string | undefined;
|
|
9336
|
+
theme?: string | undefined;
|
|
9939
9337
|
}, {
|
|
9940
|
-
displayBehaviour: "standalone" | "associated";
|
|
9941
9338
|
flourishId: string;
|
|
9339
|
+
flourishAltText: string;
|
|
9942
9340
|
heading?: {
|
|
9943
9341
|
text: string;
|
|
9944
9342
|
href?: string | undefined;
|
|
9945
9343
|
} | undefined;
|
|
9946
9344
|
flourishDescription?: string | undefined;
|
|
9345
|
+
storyUUID?: string | undefined;
|
|
9346
|
+
theme?: string | undefined;
|
|
9947
9347
|
}>;
|
|
9948
9348
|
} & {
|
|
9949
9349
|
sliceId: z.ZodOptional<z.ZodString>;
|
|
9950
9350
|
}, "strip", z.ZodTypeAny, {
|
|
9951
|
-
type: "
|
|
9351
|
+
type: "Interactive";
|
|
9952
9352
|
properties: {
|
|
9953
|
-
displayBehaviour: "standalone" | "associated";
|
|
9954
9353
|
flourishId: string;
|
|
9354
|
+
flourishAltText: string;
|
|
9955
9355
|
heading?: {
|
|
9956
9356
|
text: string;
|
|
9957
9357
|
href?: string | undefined;
|
|
9958
9358
|
} | undefined;
|
|
9959
9359
|
flourishDescription?: string | undefined;
|
|
9360
|
+
storyUUID?: string | undefined;
|
|
9361
|
+
theme?: string | undefined;
|
|
9960
9362
|
};
|
|
9961
9363
|
hidden?: boolean | undefined;
|
|
9962
9364
|
sliceId?: string | undefined;
|
|
9963
9365
|
}, {
|
|
9964
|
-
type: "
|
|
9366
|
+
type: "Interactive";
|
|
9965
9367
|
properties: {
|
|
9966
|
-
displayBehaviour: "standalone" | "associated";
|
|
9967
9368
|
flourishId: string;
|
|
9369
|
+
flourishAltText: string;
|
|
9968
9370
|
heading?: {
|
|
9969
9371
|
text: string;
|
|
9970
9372
|
href?: string | undefined;
|
|
9971
9373
|
} | undefined;
|
|
9972
9374
|
flourishDescription?: string | undefined;
|
|
9973
|
-
|
|
9974
|
-
|
|
9975
|
-
sliceId?: string | undefined;
|
|
9976
|
-
}>, z.ZodObject<{
|
|
9977
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
9978
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
9979
|
-
properties: z.ZodObject<{
|
|
9980
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
9981
|
-
text: z.ZodString;
|
|
9982
|
-
href: z.ZodOptional<z.ZodString>;
|
|
9983
|
-
}, "strip", z.ZodTypeAny, {
|
|
9984
|
-
text: string;
|
|
9985
|
-
href?: string | undefined;
|
|
9986
|
-
}, {
|
|
9987
|
-
text: string;
|
|
9988
|
-
href?: string | undefined;
|
|
9989
|
-
}>>;
|
|
9990
|
-
} & {
|
|
9991
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
9992
|
-
} & {
|
|
9993
|
-
iframeSrc: z.ZodString;
|
|
9994
|
-
}, "strip", z.ZodTypeAny, {
|
|
9995
|
-
displayBehaviour: "standalone" | "associated";
|
|
9996
|
-
iframeSrc: string;
|
|
9997
|
-
heading?: {
|
|
9998
|
-
text: string;
|
|
9999
|
-
href?: string | undefined;
|
|
10000
|
-
} | undefined;
|
|
10001
|
-
}, {
|
|
10002
|
-
displayBehaviour: "standalone" | "associated";
|
|
10003
|
-
iframeSrc: string;
|
|
10004
|
-
heading?: {
|
|
10005
|
-
text: string;
|
|
10006
|
-
href?: string | undefined;
|
|
10007
|
-
} | undefined;
|
|
10008
|
-
}>;
|
|
10009
|
-
} & {
|
|
10010
|
-
sliceId: z.ZodOptional<z.ZodString>;
|
|
10011
|
-
}, "strip", z.ZodTypeAny, {
|
|
10012
|
-
type: "CustomIframe";
|
|
10013
|
-
properties: {
|
|
10014
|
-
displayBehaviour: "standalone" | "associated";
|
|
10015
|
-
iframeSrc: string;
|
|
10016
|
-
heading?: {
|
|
10017
|
-
text: string;
|
|
10018
|
-
href?: string | undefined;
|
|
10019
|
-
} | undefined;
|
|
10020
|
-
};
|
|
10021
|
-
hidden?: boolean | undefined;
|
|
10022
|
-
sliceId?: string | undefined;
|
|
10023
|
-
}, {
|
|
10024
|
-
type: "CustomIframe";
|
|
10025
|
-
properties: {
|
|
10026
|
-
displayBehaviour: "standalone" | "associated";
|
|
10027
|
-
iframeSrc: string;
|
|
10028
|
-
heading?: {
|
|
10029
|
-
text: string;
|
|
10030
|
-
href?: string | undefined;
|
|
10031
|
-
} | undefined;
|
|
9375
|
+
storyUUID?: string | undefined;
|
|
9376
|
+
theme?: string | undefined;
|
|
10032
9377
|
};
|
|
10033
9378
|
hidden?: boolean | undefined;
|
|
10034
9379
|
sliceId?: string | undefined;
|
|
@@ -10740,27 +10085,17 @@ declare const PageStructureInputSchema: z.ZodObject<{
|
|
|
10740
10085
|
} | undefined;
|
|
10741
10086
|
sliceId?: string | undefined;
|
|
10742
10087
|
} | {
|
|
10743
|
-
type: "
|
|
10088
|
+
type: "Interactive";
|
|
10744
10089
|
properties: {
|
|
10745
|
-
displayBehaviour: "standalone" | "associated";
|
|
10746
10090
|
flourishId: string;
|
|
10091
|
+
flourishAltText: string;
|
|
10747
10092
|
heading?: {
|
|
10748
10093
|
text: string;
|
|
10749
10094
|
href?: string | undefined;
|
|
10750
10095
|
} | undefined;
|
|
10751
10096
|
flourishDescription?: string | undefined;
|
|
10752
|
-
|
|
10753
|
-
|
|
10754
|
-
sliceId?: string | undefined;
|
|
10755
|
-
} | {
|
|
10756
|
-
type: "CustomIframe";
|
|
10757
|
-
properties: {
|
|
10758
|
-
displayBehaviour: "standalone" | "associated";
|
|
10759
|
-
iframeSrc: string;
|
|
10760
|
-
heading?: {
|
|
10761
|
-
text: string;
|
|
10762
|
-
href?: string | undefined;
|
|
10763
|
-
} | undefined;
|
|
10097
|
+
storyUUID?: string | undefined;
|
|
10098
|
+
theme?: string | undefined;
|
|
10764
10099
|
};
|
|
10765
10100
|
hidden?: boolean | undefined;
|
|
10766
10101
|
sliceId?: string | undefined;
|
|
@@ -10876,27 +10211,17 @@ declare const PageStructureInputSchema: z.ZodObject<{
|
|
|
10876
10211
|
} | undefined;
|
|
10877
10212
|
sliceId?: string | undefined;
|
|
10878
10213
|
} | {
|
|
10879
|
-
type: "
|
|
10214
|
+
type: "Interactive";
|
|
10880
10215
|
properties: {
|
|
10881
|
-
displayBehaviour: "standalone" | "associated";
|
|
10882
10216
|
flourishId: string;
|
|
10217
|
+
flourishAltText: string;
|
|
10883
10218
|
heading?: {
|
|
10884
10219
|
text: string;
|
|
10885
10220
|
href?: string | undefined;
|
|
10886
10221
|
} | undefined;
|
|
10887
10222
|
flourishDescription?: string | undefined;
|
|
10888
|
-
|
|
10889
|
-
|
|
10890
|
-
sliceId?: string | undefined;
|
|
10891
|
-
} | {
|
|
10892
|
-
type: "CustomIframe";
|
|
10893
|
-
properties: {
|
|
10894
|
-
displayBehaviour: "standalone" | "associated";
|
|
10895
|
-
iframeSrc: string;
|
|
10896
|
-
heading?: {
|
|
10897
|
-
text: string;
|
|
10898
|
-
href?: string | undefined;
|
|
10899
|
-
} | undefined;
|
|
10223
|
+
storyUUID?: string | undefined;
|
|
10224
|
+
theme?: string | undefined;
|
|
10900
10225
|
};
|
|
10901
10226
|
hidden?: boolean | undefined;
|
|
10902
10227
|
sliceId?: string | undefined;
|
|
@@ -11081,7 +10406,7 @@ declare const PageStructureOutputSchema: z.ZodObject<{
|
|
|
11081
10406
|
} | undefined;
|
|
11082
10407
|
} | undefined;
|
|
11083
10408
|
}>, z.ZodObject<{
|
|
11084
|
-
type: z.ZodLiteral<"
|
|
10409
|
+
type: z.ZodLiteral<"Interactive">;
|
|
11085
10410
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
11086
10411
|
properties: z.ZodObject<{
|
|
11087
10412
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -11094,112 +10419,62 @@ declare const PageStructureOutputSchema: z.ZodObject<{
|
|
|
11094
10419
|
text: string;
|
|
11095
10420
|
href?: string | undefined;
|
|
11096
10421
|
}>>;
|
|
11097
|
-
} & {
|
|
11098
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
11099
10422
|
} & {
|
|
11100
10423
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
11101
10424
|
flourishId: z.ZodString;
|
|
10425
|
+
flourishAltText: z.ZodString;
|
|
10426
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
10427
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
11102
10428
|
}, "strip", z.ZodTypeAny, {
|
|
11103
|
-
displayBehaviour: "standalone" | "associated";
|
|
11104
10429
|
flourishId: string;
|
|
10430
|
+
flourishAltText: string;
|
|
11105
10431
|
heading?: {
|
|
11106
10432
|
text: string;
|
|
11107
10433
|
href?: string | undefined;
|
|
11108
10434
|
} | undefined;
|
|
11109
10435
|
flourishDescription?: string | undefined;
|
|
10436
|
+
storyUUID?: string | undefined;
|
|
10437
|
+
theme?: string | undefined;
|
|
11110
10438
|
}, {
|
|
11111
|
-
displayBehaviour: "standalone" | "associated";
|
|
11112
10439
|
flourishId: string;
|
|
10440
|
+
flourishAltText: string;
|
|
11113
10441
|
heading?: {
|
|
11114
10442
|
text: string;
|
|
11115
10443
|
href?: string | undefined;
|
|
11116
10444
|
} | undefined;
|
|
11117
10445
|
flourishDescription?: string | undefined;
|
|
10446
|
+
storyUUID?: string | undefined;
|
|
10447
|
+
theme?: string | undefined;
|
|
11118
10448
|
}>;
|
|
11119
10449
|
} & {
|
|
11120
10450
|
sliceId: z.ZodString;
|
|
11121
10451
|
}, "strip", z.ZodTypeAny, {
|
|
11122
|
-
type: "
|
|
10452
|
+
type: "Interactive";
|
|
11123
10453
|
properties: {
|
|
11124
|
-
displayBehaviour: "standalone" | "associated";
|
|
11125
10454
|
flourishId: string;
|
|
10455
|
+
flourishAltText: string;
|
|
11126
10456
|
heading?: {
|
|
11127
10457
|
text: string;
|
|
11128
10458
|
href?: string | undefined;
|
|
11129
10459
|
} | undefined;
|
|
11130
10460
|
flourishDescription?: string | undefined;
|
|
10461
|
+
storyUUID?: string | undefined;
|
|
10462
|
+
theme?: string | undefined;
|
|
11131
10463
|
};
|
|
11132
10464
|
sliceId: string;
|
|
11133
10465
|
hidden?: boolean | undefined;
|
|
11134
10466
|
}, {
|
|
11135
|
-
type: "
|
|
10467
|
+
type: "Interactive";
|
|
11136
10468
|
properties: {
|
|
11137
|
-
displayBehaviour: "standalone" | "associated";
|
|
11138
10469
|
flourishId: string;
|
|
10470
|
+
flourishAltText: string;
|
|
11139
10471
|
heading?: {
|
|
11140
10472
|
text: string;
|
|
11141
10473
|
href?: string | undefined;
|
|
11142
10474
|
} | undefined;
|
|
11143
10475
|
flourishDescription?: string | undefined;
|
|
11144
|
-
|
|
11145
|
-
|
|
11146
|
-
hidden?: boolean | undefined;
|
|
11147
|
-
}>, z.ZodObject<{
|
|
11148
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
11149
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
11150
|
-
properties: z.ZodObject<{
|
|
11151
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
11152
|
-
text: z.ZodString;
|
|
11153
|
-
href: z.ZodOptional<z.ZodString>;
|
|
11154
|
-
}, "strip", z.ZodTypeAny, {
|
|
11155
|
-
text: string;
|
|
11156
|
-
href?: string | undefined;
|
|
11157
|
-
}, {
|
|
11158
|
-
text: string;
|
|
11159
|
-
href?: string | undefined;
|
|
11160
|
-
}>>;
|
|
11161
|
-
} & {
|
|
11162
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
11163
|
-
} & {
|
|
11164
|
-
iframeSrc: z.ZodString;
|
|
11165
|
-
}, "strip", z.ZodTypeAny, {
|
|
11166
|
-
displayBehaviour: "standalone" | "associated";
|
|
11167
|
-
iframeSrc: string;
|
|
11168
|
-
heading?: {
|
|
11169
|
-
text: string;
|
|
11170
|
-
href?: string | undefined;
|
|
11171
|
-
} | undefined;
|
|
11172
|
-
}, {
|
|
11173
|
-
displayBehaviour: "standalone" | "associated";
|
|
11174
|
-
iframeSrc: string;
|
|
11175
|
-
heading?: {
|
|
11176
|
-
text: string;
|
|
11177
|
-
href?: string | undefined;
|
|
11178
|
-
} | undefined;
|
|
11179
|
-
}>;
|
|
11180
|
-
} & {
|
|
11181
|
-
sliceId: z.ZodString;
|
|
11182
|
-
}, "strip", z.ZodTypeAny, {
|
|
11183
|
-
type: "CustomIframe";
|
|
11184
|
-
properties: {
|
|
11185
|
-
displayBehaviour: "standalone" | "associated";
|
|
11186
|
-
iframeSrc: string;
|
|
11187
|
-
heading?: {
|
|
11188
|
-
text: string;
|
|
11189
|
-
href?: string | undefined;
|
|
11190
|
-
} | undefined;
|
|
11191
|
-
};
|
|
11192
|
-
sliceId: string;
|
|
11193
|
-
hidden?: boolean | undefined;
|
|
11194
|
-
}, {
|
|
11195
|
-
type: "CustomIframe";
|
|
11196
|
-
properties: {
|
|
11197
|
-
displayBehaviour: "standalone" | "associated";
|
|
11198
|
-
iframeSrc: string;
|
|
11199
|
-
heading?: {
|
|
11200
|
-
text: string;
|
|
11201
|
-
href?: string | undefined;
|
|
11202
|
-
} | undefined;
|
|
10476
|
+
storyUUID?: string | undefined;
|
|
10477
|
+
theme?: string | undefined;
|
|
11203
10478
|
};
|
|
11204
10479
|
sliceId: string;
|
|
11205
10480
|
hidden?: boolean | undefined;
|
|
@@ -11912,27 +11187,17 @@ declare const PageStructureOutputSchema: z.ZodObject<{
|
|
|
11912
11187
|
} | undefined;
|
|
11913
11188
|
} | undefined;
|
|
11914
11189
|
} | {
|
|
11915
|
-
type: "
|
|
11190
|
+
type: "Interactive";
|
|
11916
11191
|
properties: {
|
|
11917
|
-
displayBehaviour: "standalone" | "associated";
|
|
11918
11192
|
flourishId: string;
|
|
11193
|
+
flourishAltText: string;
|
|
11919
11194
|
heading?: {
|
|
11920
11195
|
text: string;
|
|
11921
11196
|
href?: string | undefined;
|
|
11922
11197
|
} | undefined;
|
|
11923
11198
|
flourishDescription?: string | undefined;
|
|
11924
|
-
|
|
11925
|
-
|
|
11926
|
-
hidden?: boolean | undefined;
|
|
11927
|
-
} | {
|
|
11928
|
-
type: "CustomIframe";
|
|
11929
|
-
properties: {
|
|
11930
|
-
displayBehaviour: "standalone" | "associated";
|
|
11931
|
-
iframeSrc: string;
|
|
11932
|
-
heading?: {
|
|
11933
|
-
text: string;
|
|
11934
|
-
href?: string | undefined;
|
|
11935
|
-
} | undefined;
|
|
11199
|
+
storyUUID?: string | undefined;
|
|
11200
|
+
theme?: string | undefined;
|
|
11936
11201
|
};
|
|
11937
11202
|
sliceId: string;
|
|
11938
11203
|
hidden?: boolean | undefined;
|
|
@@ -12050,27 +11315,17 @@ declare const PageStructureOutputSchema: z.ZodObject<{
|
|
|
12050
11315
|
} | undefined;
|
|
12051
11316
|
} | undefined;
|
|
12052
11317
|
} | {
|
|
12053
|
-
type: "
|
|
11318
|
+
type: "Interactive";
|
|
12054
11319
|
properties: {
|
|
12055
|
-
displayBehaviour: "standalone" | "associated";
|
|
12056
11320
|
flourishId: string;
|
|
11321
|
+
flourishAltText: string;
|
|
12057
11322
|
heading?: {
|
|
12058
11323
|
text: string;
|
|
12059
11324
|
href?: string | undefined;
|
|
12060
11325
|
} | undefined;
|
|
12061
11326
|
flourishDescription?: string | undefined;
|
|
12062
|
-
|
|
12063
|
-
|
|
12064
|
-
hidden?: boolean | undefined;
|
|
12065
|
-
} | {
|
|
12066
|
-
type: "CustomIframe";
|
|
12067
|
-
properties: {
|
|
12068
|
-
displayBehaviour: "standalone" | "associated";
|
|
12069
|
-
iframeSrc: string;
|
|
12070
|
-
heading?: {
|
|
12071
|
-
text: string;
|
|
12072
|
-
href?: string | undefined;
|
|
12073
|
-
} | undefined;
|
|
11327
|
+
storyUUID?: string | undefined;
|
|
11328
|
+
theme?: string | undefined;
|
|
12074
11329
|
};
|
|
12075
11330
|
sliceId: string;
|
|
12076
11331
|
hidden?: boolean | undefined;
|
|
@@ -12524,7 +11779,7 @@ declare const SliceApiInputSchema: z.ZodDiscriminatedUnion<"type", readonly [z.Z
|
|
|
12524
11779
|
} | undefined;
|
|
12525
11780
|
sliceId?: string | undefined;
|
|
12526
11781
|
}>, z.ZodObject<{
|
|
12527
|
-
type: z.ZodLiteral<"
|
|
11782
|
+
type: z.ZodLiteral<"Interactive">;
|
|
12528
11783
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
12529
11784
|
properties: z.ZodObject<{
|
|
12530
11785
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -12537,112 +11792,62 @@ declare const SliceApiInputSchema: z.ZodDiscriminatedUnion<"type", readonly [z.Z
|
|
|
12537
11792
|
text: string;
|
|
12538
11793
|
href?: string | undefined;
|
|
12539
11794
|
}>>;
|
|
12540
|
-
} & {
|
|
12541
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
12542
11795
|
} & {
|
|
12543
11796
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
12544
11797
|
flourishId: z.ZodString;
|
|
11798
|
+
flourishAltText: z.ZodString;
|
|
11799
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
11800
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
12545
11801
|
}, "strip", z.ZodTypeAny, {
|
|
12546
|
-
displayBehaviour: "standalone" | "associated";
|
|
12547
11802
|
flourishId: string;
|
|
11803
|
+
flourishAltText: string;
|
|
12548
11804
|
heading?: {
|
|
12549
11805
|
text: string;
|
|
12550
11806
|
href?: string | undefined;
|
|
12551
11807
|
} | undefined;
|
|
12552
11808
|
flourishDescription?: string | undefined;
|
|
11809
|
+
storyUUID?: string | undefined;
|
|
11810
|
+
theme?: string | undefined;
|
|
12553
11811
|
}, {
|
|
12554
|
-
displayBehaviour: "standalone" | "associated";
|
|
12555
11812
|
flourishId: string;
|
|
11813
|
+
flourishAltText: string;
|
|
12556
11814
|
heading?: {
|
|
12557
11815
|
text: string;
|
|
12558
11816
|
href?: string | undefined;
|
|
12559
11817
|
} | undefined;
|
|
12560
11818
|
flourishDescription?: string | undefined;
|
|
11819
|
+
storyUUID?: string | undefined;
|
|
11820
|
+
theme?: string | undefined;
|
|
12561
11821
|
}>;
|
|
12562
11822
|
} & {
|
|
12563
11823
|
sliceId: z.ZodOptional<z.ZodString>;
|
|
12564
11824
|
}, "strip", z.ZodTypeAny, {
|
|
12565
|
-
type: "
|
|
11825
|
+
type: "Interactive";
|
|
12566
11826
|
properties: {
|
|
12567
|
-
displayBehaviour: "standalone" | "associated";
|
|
12568
11827
|
flourishId: string;
|
|
11828
|
+
flourishAltText: string;
|
|
12569
11829
|
heading?: {
|
|
12570
11830
|
text: string;
|
|
12571
11831
|
href?: string | undefined;
|
|
12572
11832
|
} | undefined;
|
|
12573
11833
|
flourishDescription?: string | undefined;
|
|
11834
|
+
storyUUID?: string | undefined;
|
|
11835
|
+
theme?: string | undefined;
|
|
12574
11836
|
};
|
|
12575
11837
|
hidden?: boolean | undefined;
|
|
12576
11838
|
sliceId?: string | undefined;
|
|
12577
11839
|
}, {
|
|
12578
|
-
type: "
|
|
11840
|
+
type: "Interactive";
|
|
12579
11841
|
properties: {
|
|
12580
|
-
displayBehaviour: "standalone" | "associated";
|
|
12581
11842
|
flourishId: string;
|
|
11843
|
+
flourishAltText: string;
|
|
12582
11844
|
heading?: {
|
|
12583
11845
|
text: string;
|
|
12584
11846
|
href?: string | undefined;
|
|
12585
11847
|
} | undefined;
|
|
12586
11848
|
flourishDescription?: string | undefined;
|
|
12587
|
-
|
|
12588
|
-
|
|
12589
|
-
sliceId?: string | undefined;
|
|
12590
|
-
}>, z.ZodObject<{
|
|
12591
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
12592
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
12593
|
-
properties: z.ZodObject<{
|
|
12594
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
12595
|
-
text: z.ZodString;
|
|
12596
|
-
href: z.ZodOptional<z.ZodString>;
|
|
12597
|
-
}, "strip", z.ZodTypeAny, {
|
|
12598
|
-
text: string;
|
|
12599
|
-
href?: string | undefined;
|
|
12600
|
-
}, {
|
|
12601
|
-
text: string;
|
|
12602
|
-
href?: string | undefined;
|
|
12603
|
-
}>>;
|
|
12604
|
-
} & {
|
|
12605
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
12606
|
-
} & {
|
|
12607
|
-
iframeSrc: z.ZodString;
|
|
12608
|
-
}, "strip", z.ZodTypeAny, {
|
|
12609
|
-
displayBehaviour: "standalone" | "associated";
|
|
12610
|
-
iframeSrc: string;
|
|
12611
|
-
heading?: {
|
|
12612
|
-
text: string;
|
|
12613
|
-
href?: string | undefined;
|
|
12614
|
-
} | undefined;
|
|
12615
|
-
}, {
|
|
12616
|
-
displayBehaviour: "standalone" | "associated";
|
|
12617
|
-
iframeSrc: string;
|
|
12618
|
-
heading?: {
|
|
12619
|
-
text: string;
|
|
12620
|
-
href?: string | undefined;
|
|
12621
|
-
} | undefined;
|
|
12622
|
-
}>;
|
|
12623
|
-
} & {
|
|
12624
|
-
sliceId: z.ZodOptional<z.ZodString>;
|
|
12625
|
-
}, "strip", z.ZodTypeAny, {
|
|
12626
|
-
type: "CustomIframe";
|
|
12627
|
-
properties: {
|
|
12628
|
-
displayBehaviour: "standalone" | "associated";
|
|
12629
|
-
iframeSrc: string;
|
|
12630
|
-
heading?: {
|
|
12631
|
-
text: string;
|
|
12632
|
-
href?: string | undefined;
|
|
12633
|
-
} | undefined;
|
|
12634
|
-
};
|
|
12635
|
-
hidden?: boolean | undefined;
|
|
12636
|
-
sliceId?: string | undefined;
|
|
12637
|
-
}, {
|
|
12638
|
-
type: "CustomIframe";
|
|
12639
|
-
properties: {
|
|
12640
|
-
displayBehaviour: "standalone" | "associated";
|
|
12641
|
-
iframeSrc: string;
|
|
12642
|
-
heading?: {
|
|
12643
|
-
text: string;
|
|
12644
|
-
href?: string | undefined;
|
|
12645
|
-
} | undefined;
|
|
11849
|
+
storyUUID?: string | undefined;
|
|
11850
|
+
theme?: string | undefined;
|
|
12646
11851
|
};
|
|
12647
11852
|
hidden?: boolean | undefined;
|
|
12648
11853
|
sliceId?: string | undefined;
|
|
@@ -13387,7 +12592,7 @@ declare const SliceApiOutputSchema: z.ZodDiscriminatedUnion<"type", readonly [z.
|
|
|
13387
12592
|
} | undefined;
|
|
13388
12593
|
} | undefined;
|
|
13389
12594
|
}>, z.ZodObject<{
|
|
13390
|
-
type: z.ZodLiteral<"
|
|
12595
|
+
type: z.ZodLiteral<"Interactive">;
|
|
13391
12596
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
13392
12597
|
properties: z.ZodObject<{
|
|
13393
12598
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -13400,112 +12605,62 @@ declare const SliceApiOutputSchema: z.ZodDiscriminatedUnion<"type", readonly [z.
|
|
|
13400
12605
|
text: string;
|
|
13401
12606
|
href?: string | undefined;
|
|
13402
12607
|
}>>;
|
|
13403
|
-
} & {
|
|
13404
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
13405
12608
|
} & {
|
|
13406
12609
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
13407
12610
|
flourishId: z.ZodString;
|
|
12611
|
+
flourishAltText: z.ZodString;
|
|
12612
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
12613
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
13408
12614
|
}, "strip", z.ZodTypeAny, {
|
|
13409
|
-
displayBehaviour: "standalone" | "associated";
|
|
13410
12615
|
flourishId: string;
|
|
12616
|
+
flourishAltText: string;
|
|
13411
12617
|
heading?: {
|
|
13412
12618
|
text: string;
|
|
13413
12619
|
href?: string | undefined;
|
|
13414
12620
|
} | undefined;
|
|
13415
12621
|
flourishDescription?: string | undefined;
|
|
12622
|
+
storyUUID?: string | undefined;
|
|
12623
|
+
theme?: string | undefined;
|
|
13416
12624
|
}, {
|
|
13417
|
-
displayBehaviour: "standalone" | "associated";
|
|
13418
12625
|
flourishId: string;
|
|
12626
|
+
flourishAltText: string;
|
|
13419
12627
|
heading?: {
|
|
13420
12628
|
text: string;
|
|
13421
12629
|
href?: string | undefined;
|
|
13422
12630
|
} | undefined;
|
|
13423
12631
|
flourishDescription?: string | undefined;
|
|
12632
|
+
storyUUID?: string | undefined;
|
|
12633
|
+
theme?: string | undefined;
|
|
13424
12634
|
}>;
|
|
13425
12635
|
} & {
|
|
13426
12636
|
sliceId: z.ZodString;
|
|
13427
12637
|
}, "strip", z.ZodTypeAny, {
|
|
13428
|
-
type: "
|
|
12638
|
+
type: "Interactive";
|
|
13429
12639
|
properties: {
|
|
13430
|
-
displayBehaviour: "standalone" | "associated";
|
|
13431
12640
|
flourishId: string;
|
|
12641
|
+
flourishAltText: string;
|
|
13432
12642
|
heading?: {
|
|
13433
12643
|
text: string;
|
|
13434
12644
|
href?: string | undefined;
|
|
13435
12645
|
} | undefined;
|
|
13436
12646
|
flourishDescription?: string | undefined;
|
|
12647
|
+
storyUUID?: string | undefined;
|
|
12648
|
+
theme?: string | undefined;
|
|
13437
12649
|
};
|
|
13438
12650
|
sliceId: string;
|
|
13439
12651
|
hidden?: boolean | undefined;
|
|
13440
12652
|
}, {
|
|
13441
|
-
type: "
|
|
12653
|
+
type: "Interactive";
|
|
13442
12654
|
properties: {
|
|
13443
|
-
displayBehaviour: "standalone" | "associated";
|
|
13444
12655
|
flourishId: string;
|
|
12656
|
+
flourishAltText: string;
|
|
13445
12657
|
heading?: {
|
|
13446
12658
|
text: string;
|
|
13447
12659
|
href?: string | undefined;
|
|
13448
12660
|
} | undefined;
|
|
13449
12661
|
flourishDescription?: string | undefined;
|
|
13450
|
-
|
|
13451
|
-
|
|
13452
|
-
hidden?: boolean | undefined;
|
|
13453
|
-
}>, z.ZodObject<{
|
|
13454
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
13455
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
13456
|
-
properties: z.ZodObject<{
|
|
13457
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
13458
|
-
text: z.ZodString;
|
|
13459
|
-
href: z.ZodOptional<z.ZodString>;
|
|
13460
|
-
}, "strip", z.ZodTypeAny, {
|
|
13461
|
-
text: string;
|
|
13462
|
-
href?: string | undefined;
|
|
13463
|
-
}, {
|
|
13464
|
-
text: string;
|
|
13465
|
-
href?: string | undefined;
|
|
13466
|
-
}>>;
|
|
13467
|
-
} & {
|
|
13468
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
13469
|
-
} & {
|
|
13470
|
-
iframeSrc: z.ZodString;
|
|
13471
|
-
}, "strip", z.ZodTypeAny, {
|
|
13472
|
-
displayBehaviour: "standalone" | "associated";
|
|
13473
|
-
iframeSrc: string;
|
|
13474
|
-
heading?: {
|
|
13475
|
-
text: string;
|
|
13476
|
-
href?: string | undefined;
|
|
13477
|
-
} | undefined;
|
|
13478
|
-
}, {
|
|
13479
|
-
displayBehaviour: "standalone" | "associated";
|
|
13480
|
-
iframeSrc: string;
|
|
13481
|
-
heading?: {
|
|
13482
|
-
text: string;
|
|
13483
|
-
href?: string | undefined;
|
|
13484
|
-
} | undefined;
|
|
13485
|
-
}>;
|
|
13486
|
-
} & {
|
|
13487
|
-
sliceId: z.ZodString;
|
|
13488
|
-
}, "strip", z.ZodTypeAny, {
|
|
13489
|
-
type: "CustomIframe";
|
|
13490
|
-
properties: {
|
|
13491
|
-
displayBehaviour: "standalone" | "associated";
|
|
13492
|
-
iframeSrc: string;
|
|
13493
|
-
heading?: {
|
|
13494
|
-
text: string;
|
|
13495
|
-
href?: string | undefined;
|
|
13496
|
-
} | undefined;
|
|
13497
|
-
};
|
|
13498
|
-
sliceId: string;
|
|
13499
|
-
hidden?: boolean | undefined;
|
|
13500
|
-
}, {
|
|
13501
|
-
type: "CustomIframe";
|
|
13502
|
-
properties: {
|
|
13503
|
-
displayBehaviour: "standalone" | "associated";
|
|
13504
|
-
iframeSrc: string;
|
|
13505
|
-
heading?: {
|
|
13506
|
-
text: string;
|
|
13507
|
-
href?: string | undefined;
|
|
13508
|
-
} | undefined;
|
|
12662
|
+
storyUUID?: string | undefined;
|
|
12663
|
+
theme?: string | undefined;
|
|
13509
12664
|
};
|
|
13510
12665
|
sliceId: string;
|
|
13511
12666
|
hidden?: boolean | undefined;
|