@financial-times/content-curation-client 3.3.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 +441 -1298
- package/dist/_tsup-dts-rollup.d.ts +441 -1298
- package/dist/index.cjs +9 -17
- 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 +9 -17
- 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;
|
|
@@ -6342,32 +5758,22 @@ declare const HomepageStructureInputSchema: z.ZodObject<{
|
|
|
6342
5758
|
properties?: {
|
|
6343
5759
|
heading?: {
|
|
6344
5760
|
text: string;
|
|
6345
|
-
href?: string | undefined;
|
|
6346
|
-
} | undefined;
|
|
6347
|
-
} | undefined;
|
|
6348
|
-
sliceId?: string | undefined;
|
|
6349
|
-
} | {
|
|
6350
|
-
type: "FlourishGraphic";
|
|
6351
|
-
properties: {
|
|
6352
|
-
displayBehaviour: "standalone" | "associated";
|
|
6353
|
-
flourishId: string;
|
|
6354
|
-
heading?: {
|
|
6355
|
-
text: string;
|
|
6356
|
-
href?: string | undefined;
|
|
6357
|
-
} | undefined;
|
|
6358
|
-
flourishDescription?: string | undefined;
|
|
6359
|
-
};
|
|
6360
|
-
hidden?: boolean | undefined;
|
|
5761
|
+
href?: string | undefined;
|
|
5762
|
+
} | undefined;
|
|
5763
|
+
} | undefined;
|
|
6361
5764
|
sliceId?: string | undefined;
|
|
6362
5765
|
} | {
|
|
6363
|
-
type: "
|
|
5766
|
+
type: "Interactive";
|
|
6364
5767
|
properties: {
|
|
6365
|
-
|
|
6366
|
-
|
|
5768
|
+
flourishId: string;
|
|
5769
|
+
flourishAltText: string;
|
|
6367
5770
|
heading?: {
|
|
6368
5771
|
text: string;
|
|
6369
5772
|
href?: string | undefined;
|
|
6370
5773
|
} | undefined;
|
|
5774
|
+
flourishDescription?: string | 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 }
|
|
@@ -8446,7 +7919,7 @@ declare const PageDraftSchema: z.ZodObject<{
|
|
|
8446
7919
|
} | undefined;
|
|
8447
7920
|
} | undefined;
|
|
8448
7921
|
}>, z.ZodObject<{
|
|
8449
|
-
type: z.ZodLiteral<"
|
|
7922
|
+
type: z.ZodLiteral<"Interactive">;
|
|
8450
7923
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
8451
7924
|
properties: z.ZodObject<{
|
|
8452
7925
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -8459,112 +7932,62 @@ declare const PageDraftSchema: z.ZodObject<{
|
|
|
8459
7932
|
text: string;
|
|
8460
7933
|
href?: string | undefined;
|
|
8461
7934
|
}>>;
|
|
8462
|
-
} & {
|
|
8463
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
8464
7935
|
} & {
|
|
8465
7936
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
8466
7937
|
flourishId: z.ZodString;
|
|
7938
|
+
flourishAltText: z.ZodString;
|
|
7939
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
7940
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
8467
7941
|
}, "strip", z.ZodTypeAny, {
|
|
8468
|
-
displayBehaviour: "standalone" | "associated";
|
|
8469
7942
|
flourishId: string;
|
|
7943
|
+
flourishAltText: string;
|
|
8470
7944
|
heading?: {
|
|
8471
7945
|
text: string;
|
|
8472
7946
|
href?: string | undefined;
|
|
8473
7947
|
} | undefined;
|
|
8474
7948
|
flourishDescription?: string | undefined;
|
|
7949
|
+
storyUUID?: string | undefined;
|
|
7950
|
+
theme?: string | undefined;
|
|
8475
7951
|
}, {
|
|
8476
|
-
displayBehaviour: "standalone" | "associated";
|
|
8477
7952
|
flourishId: string;
|
|
7953
|
+
flourishAltText: string;
|
|
8478
7954
|
heading?: {
|
|
8479
7955
|
text: string;
|
|
8480
7956
|
href?: string | undefined;
|
|
8481
7957
|
} | undefined;
|
|
8482
7958
|
flourishDescription?: string | undefined;
|
|
7959
|
+
storyUUID?: string | undefined;
|
|
7960
|
+
theme?: string | undefined;
|
|
8483
7961
|
}>;
|
|
8484
7962
|
} & {
|
|
8485
7963
|
sliceId: z.ZodString;
|
|
8486
7964
|
}, "strip", z.ZodTypeAny, {
|
|
8487
|
-
type: "
|
|
7965
|
+
type: "Interactive";
|
|
8488
7966
|
properties: {
|
|
8489
|
-
displayBehaviour: "standalone" | "associated";
|
|
8490
7967
|
flourishId: string;
|
|
7968
|
+
flourishAltText: string;
|
|
8491
7969
|
heading?: {
|
|
8492
7970
|
text: string;
|
|
8493
7971
|
href?: string | undefined;
|
|
8494
7972
|
} | undefined;
|
|
8495
7973
|
flourishDescription?: string | undefined;
|
|
7974
|
+
storyUUID?: string | undefined;
|
|
7975
|
+
theme?: string | undefined;
|
|
8496
7976
|
};
|
|
8497
7977
|
sliceId: string;
|
|
8498
7978
|
hidden?: boolean | undefined;
|
|
8499
7979
|
}, {
|
|
8500
|
-
type: "
|
|
7980
|
+
type: "Interactive";
|
|
8501
7981
|
properties: {
|
|
8502
|
-
displayBehaviour: "standalone" | "associated";
|
|
8503
7982
|
flourishId: string;
|
|
7983
|
+
flourishAltText: string;
|
|
8504
7984
|
heading?: {
|
|
8505
7985
|
text: string;
|
|
8506
7986
|
href?: string | undefined;
|
|
8507
7987
|
} | undefined;
|
|
8508
7988
|
flourishDescription?: string | undefined;
|
|
8509
|
-
|
|
8510
|
-
|
|
8511
|
-
hidden?: boolean | undefined;
|
|
8512
|
-
}>, z.ZodObject<{
|
|
8513
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
8514
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
8515
|
-
properties: z.ZodObject<{
|
|
8516
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
8517
|
-
text: z.ZodString;
|
|
8518
|
-
href: z.ZodOptional<z.ZodString>;
|
|
8519
|
-
}, "strip", z.ZodTypeAny, {
|
|
8520
|
-
text: string;
|
|
8521
|
-
href?: string | undefined;
|
|
8522
|
-
}, {
|
|
8523
|
-
text: string;
|
|
8524
|
-
href?: string | undefined;
|
|
8525
|
-
}>>;
|
|
8526
|
-
} & {
|
|
8527
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
8528
|
-
} & {
|
|
8529
|
-
iframeSrc: z.ZodString;
|
|
8530
|
-
}, "strip", z.ZodTypeAny, {
|
|
8531
|
-
displayBehaviour: "standalone" | "associated";
|
|
8532
|
-
iframeSrc: string;
|
|
8533
|
-
heading?: {
|
|
8534
|
-
text: string;
|
|
8535
|
-
href?: string | undefined;
|
|
8536
|
-
} | undefined;
|
|
8537
|
-
}, {
|
|
8538
|
-
displayBehaviour: "standalone" | "associated";
|
|
8539
|
-
iframeSrc: string;
|
|
8540
|
-
heading?: {
|
|
8541
|
-
text: string;
|
|
8542
|
-
href?: string | undefined;
|
|
8543
|
-
} | undefined;
|
|
8544
|
-
}>;
|
|
8545
|
-
} & {
|
|
8546
|
-
sliceId: z.ZodString;
|
|
8547
|
-
}, "strip", z.ZodTypeAny, {
|
|
8548
|
-
type: "CustomIframe";
|
|
8549
|
-
properties: {
|
|
8550
|
-
displayBehaviour: "standalone" | "associated";
|
|
8551
|
-
iframeSrc: string;
|
|
8552
|
-
heading?: {
|
|
8553
|
-
text: string;
|
|
8554
|
-
href?: string | undefined;
|
|
8555
|
-
} | undefined;
|
|
8556
|
-
};
|
|
8557
|
-
sliceId: string;
|
|
8558
|
-
hidden?: boolean | undefined;
|
|
8559
|
-
}, {
|
|
8560
|
-
type: "CustomIframe";
|
|
8561
|
-
properties: {
|
|
8562
|
-
displayBehaviour: "standalone" | "associated";
|
|
8563
|
-
iframeSrc: string;
|
|
8564
|
-
heading?: {
|
|
8565
|
-
text: string;
|
|
8566
|
-
href?: string | undefined;
|
|
8567
|
-
} | undefined;
|
|
7989
|
+
storyUUID?: string | undefined;
|
|
7990
|
+
theme?: string | undefined;
|
|
8568
7991
|
};
|
|
8569
7992
|
sliceId: string;
|
|
8570
7993
|
hidden?: boolean | undefined;
|
|
@@ -9273,31 +8696,21 @@ declare const PageDraftSchema: z.ZodObject<{
|
|
|
9273
8696
|
properties?: {
|
|
9274
8697
|
heading?: {
|
|
9275
8698
|
text: string;
|
|
9276
|
-
href?: string | undefined;
|
|
9277
|
-
} | undefined;
|
|
9278
|
-
} | undefined;
|
|
9279
|
-
} | {
|
|
9280
|
-
type: "FlourishGraphic";
|
|
9281
|
-
properties: {
|
|
9282
|
-
displayBehaviour: "standalone" | "associated";
|
|
9283
|
-
flourishId: string;
|
|
9284
|
-
heading?: {
|
|
9285
|
-
text: string;
|
|
9286
|
-
href?: string | undefined;
|
|
9287
|
-
} | undefined;
|
|
9288
|
-
flourishDescription?: string | undefined;
|
|
9289
|
-
};
|
|
9290
|
-
sliceId: string;
|
|
9291
|
-
hidden?: boolean | undefined;
|
|
8699
|
+
href?: string | undefined;
|
|
8700
|
+
} | undefined;
|
|
8701
|
+
} | undefined;
|
|
9292
8702
|
} | {
|
|
9293
|
-
type: "
|
|
8703
|
+
type: "Interactive";
|
|
9294
8704
|
properties: {
|
|
9295
|
-
|
|
9296
|
-
|
|
8705
|
+
flourishId: string;
|
|
8706
|
+
flourishAltText: string;
|
|
9297
8707
|
heading?: {
|
|
9298
8708
|
text: string;
|
|
9299
8709
|
href?: string | undefined;
|
|
9300
8710
|
} | undefined;
|
|
8711
|
+
flourishDescription?: string | undefined;
|
|
8712
|
+
storyUUID?: string | undefined;
|
|
8713
|
+
theme?: string | undefined;
|
|
9301
8714
|
};
|
|
9302
8715
|
sliceId: string;
|
|
9303
8716
|
hidden?: boolean | undefined;
|
|
@@ -9415,27 +8828,17 @@ declare const PageDraftSchema: z.ZodObject<{
|
|
|
9415
8828
|
} | undefined;
|
|
9416
8829
|
} | undefined;
|
|
9417
8830
|
} | {
|
|
9418
|
-
type: "
|
|
8831
|
+
type: "Interactive";
|
|
9419
8832
|
properties: {
|
|
9420
|
-
displayBehaviour: "standalone" | "associated";
|
|
9421
8833
|
flourishId: string;
|
|
8834
|
+
flourishAltText: string;
|
|
9422
8835
|
heading?: {
|
|
9423
8836
|
text: string;
|
|
9424
8837
|
href?: string | undefined;
|
|
9425
8838
|
} | undefined;
|
|
9426
8839
|
flourishDescription?: string | undefined;
|
|
9427
|
-
|
|
9428
|
-
|
|
9429
|
-
hidden?: boolean | undefined;
|
|
9430
|
-
} | {
|
|
9431
|
-
type: "CustomIframe";
|
|
9432
|
-
properties: {
|
|
9433
|
-
displayBehaviour: "standalone" | "associated";
|
|
9434
|
-
iframeSrc: string;
|
|
9435
|
-
heading?: {
|
|
9436
|
-
text: string;
|
|
9437
|
-
href?: string | undefined;
|
|
9438
|
-
} | undefined;
|
|
8840
|
+
storyUUID?: string | undefined;
|
|
8841
|
+
theme?: string | undefined;
|
|
9439
8842
|
};
|
|
9440
8843
|
sliceId: string;
|
|
9441
8844
|
hidden?: boolean | undefined;
|
|
@@ -9565,27 +8968,17 @@ declare const PageDraftSchema: z.ZodObject<{
|
|
|
9565
8968
|
} | undefined;
|
|
9566
8969
|
} | undefined;
|
|
9567
8970
|
} | {
|
|
9568
|
-
type: "
|
|
8971
|
+
type: "Interactive";
|
|
9569
8972
|
properties: {
|
|
9570
|
-
displayBehaviour: "standalone" | "associated";
|
|
9571
8973
|
flourishId: string;
|
|
8974
|
+
flourishAltText: string;
|
|
9572
8975
|
heading?: {
|
|
9573
8976
|
text: string;
|
|
9574
8977
|
href?: string | undefined;
|
|
9575
8978
|
} | undefined;
|
|
9576
8979
|
flourishDescription?: string | undefined;
|
|
9577
|
-
|
|
9578
|
-
|
|
9579
|
-
hidden?: boolean | undefined;
|
|
9580
|
-
} | {
|
|
9581
|
-
type: "CustomIframe";
|
|
9582
|
-
properties: {
|
|
9583
|
-
displayBehaviour: "standalone" | "associated";
|
|
9584
|
-
iframeSrc: string;
|
|
9585
|
-
heading?: {
|
|
9586
|
-
text: string;
|
|
9587
|
-
href?: string | undefined;
|
|
9588
|
-
} | undefined;
|
|
8980
|
+
storyUUID?: string | undefined;
|
|
8981
|
+
theme?: string | undefined;
|
|
9589
8982
|
};
|
|
9590
8983
|
sliceId: string;
|
|
9591
8984
|
hidden?: boolean | undefined;
|
|
@@ -9715,27 +9108,17 @@ declare const PageDraftSchema: z.ZodObject<{
|
|
|
9715
9108
|
} | undefined;
|
|
9716
9109
|
} | undefined;
|
|
9717
9110
|
} | {
|
|
9718
|
-
type: "
|
|
9111
|
+
type: "Interactive";
|
|
9719
9112
|
properties: {
|
|
9720
|
-
displayBehaviour: "standalone" | "associated";
|
|
9721
9113
|
flourishId: string;
|
|
9114
|
+
flourishAltText: string;
|
|
9722
9115
|
heading?: {
|
|
9723
9116
|
text: string;
|
|
9724
9117
|
href?: string | undefined;
|
|
9725
9118
|
} | undefined;
|
|
9726
9119
|
flourishDescription?: string | undefined;
|
|
9727
|
-
|
|
9728
|
-
|
|
9729
|
-
hidden?: boolean | undefined;
|
|
9730
|
-
} | {
|
|
9731
|
-
type: "CustomIframe";
|
|
9732
|
-
properties: {
|
|
9733
|
-
displayBehaviour: "standalone" | "associated";
|
|
9734
|
-
iframeSrc: string;
|
|
9735
|
-
heading?: {
|
|
9736
|
-
text: string;
|
|
9737
|
-
href?: string | undefined;
|
|
9738
|
-
} | undefined;
|
|
9120
|
+
storyUUID?: string | undefined;
|
|
9121
|
+
theme?: string | undefined;
|
|
9739
9122
|
};
|
|
9740
9123
|
sliceId: string;
|
|
9741
9124
|
hidden?: boolean | undefined;
|
|
@@ -9922,7 +9305,7 @@ declare const PageStructureInputSchema: z.ZodObject<{
|
|
|
9922
9305
|
} | undefined;
|
|
9923
9306
|
sliceId?: string | undefined;
|
|
9924
9307
|
}>, z.ZodObject<{
|
|
9925
|
-
type: z.ZodLiteral<"
|
|
9308
|
+
type: z.ZodLiteral<"Interactive">;
|
|
9926
9309
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
9927
9310
|
properties: z.ZodObject<{
|
|
9928
9311
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -9935,112 +9318,62 @@ declare const PageStructureInputSchema: z.ZodObject<{
|
|
|
9935
9318
|
text: string;
|
|
9936
9319
|
href?: string | undefined;
|
|
9937
9320
|
}>>;
|
|
9938
|
-
} & {
|
|
9939
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
9940
9321
|
} & {
|
|
9941
9322
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
9942
9323
|
flourishId: z.ZodString;
|
|
9324
|
+
flourishAltText: z.ZodString;
|
|
9325
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
9326
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
9943
9327
|
}, "strip", z.ZodTypeAny, {
|
|
9944
|
-
displayBehaviour: "standalone" | "associated";
|
|
9945
9328
|
flourishId: string;
|
|
9329
|
+
flourishAltText: string;
|
|
9946
9330
|
heading?: {
|
|
9947
9331
|
text: string;
|
|
9948
9332
|
href?: string | undefined;
|
|
9949
9333
|
} | undefined;
|
|
9950
9334
|
flourishDescription?: string | undefined;
|
|
9335
|
+
storyUUID?: string | undefined;
|
|
9336
|
+
theme?: string | undefined;
|
|
9951
9337
|
}, {
|
|
9952
|
-
displayBehaviour: "standalone" | "associated";
|
|
9953
9338
|
flourishId: string;
|
|
9339
|
+
flourishAltText: string;
|
|
9954
9340
|
heading?: {
|
|
9955
9341
|
text: string;
|
|
9956
9342
|
href?: string | undefined;
|
|
9957
9343
|
} | undefined;
|
|
9958
9344
|
flourishDescription?: string | undefined;
|
|
9345
|
+
storyUUID?: string | undefined;
|
|
9346
|
+
theme?: string | undefined;
|
|
9959
9347
|
}>;
|
|
9960
9348
|
} & {
|
|
9961
9349
|
sliceId: z.ZodOptional<z.ZodString>;
|
|
9962
9350
|
}, "strip", z.ZodTypeAny, {
|
|
9963
|
-
type: "
|
|
9351
|
+
type: "Interactive";
|
|
9964
9352
|
properties: {
|
|
9965
|
-
displayBehaviour: "standalone" | "associated";
|
|
9966
9353
|
flourishId: string;
|
|
9354
|
+
flourishAltText: string;
|
|
9967
9355
|
heading?: {
|
|
9968
9356
|
text: string;
|
|
9969
9357
|
href?: string | undefined;
|
|
9970
9358
|
} | undefined;
|
|
9971
9359
|
flourishDescription?: string | undefined;
|
|
9360
|
+
storyUUID?: string | undefined;
|
|
9361
|
+
theme?: string | undefined;
|
|
9972
9362
|
};
|
|
9973
9363
|
hidden?: boolean | undefined;
|
|
9974
9364
|
sliceId?: string | undefined;
|
|
9975
9365
|
}, {
|
|
9976
|
-
type: "
|
|
9366
|
+
type: "Interactive";
|
|
9977
9367
|
properties: {
|
|
9978
|
-
displayBehaviour: "standalone" | "associated";
|
|
9979
9368
|
flourishId: string;
|
|
9369
|
+
flourishAltText: string;
|
|
9980
9370
|
heading?: {
|
|
9981
9371
|
text: string;
|
|
9982
9372
|
href?: string | undefined;
|
|
9983
9373
|
} | undefined;
|
|
9984
9374
|
flourishDescription?: string | undefined;
|
|
9985
|
-
|
|
9986
|
-
|
|
9987
|
-
sliceId?: string | undefined;
|
|
9988
|
-
}>, z.ZodObject<{
|
|
9989
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
9990
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
9991
|
-
properties: z.ZodObject<{
|
|
9992
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
9993
|
-
text: z.ZodString;
|
|
9994
|
-
href: z.ZodOptional<z.ZodString>;
|
|
9995
|
-
}, "strip", z.ZodTypeAny, {
|
|
9996
|
-
text: string;
|
|
9997
|
-
href?: string | undefined;
|
|
9998
|
-
}, {
|
|
9999
|
-
text: string;
|
|
10000
|
-
href?: string | undefined;
|
|
10001
|
-
}>>;
|
|
10002
|
-
} & {
|
|
10003
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
10004
|
-
} & {
|
|
10005
|
-
iframeSrc: z.ZodString;
|
|
10006
|
-
}, "strip", z.ZodTypeAny, {
|
|
10007
|
-
displayBehaviour: "standalone" | "associated";
|
|
10008
|
-
iframeSrc: string;
|
|
10009
|
-
heading?: {
|
|
10010
|
-
text: string;
|
|
10011
|
-
href?: string | undefined;
|
|
10012
|
-
} | undefined;
|
|
10013
|
-
}, {
|
|
10014
|
-
displayBehaviour: "standalone" | "associated";
|
|
10015
|
-
iframeSrc: string;
|
|
10016
|
-
heading?: {
|
|
10017
|
-
text: string;
|
|
10018
|
-
href?: string | undefined;
|
|
10019
|
-
} | undefined;
|
|
10020
|
-
}>;
|
|
10021
|
-
} & {
|
|
10022
|
-
sliceId: z.ZodOptional<z.ZodString>;
|
|
10023
|
-
}, "strip", z.ZodTypeAny, {
|
|
10024
|
-
type: "CustomIframe";
|
|
10025
|
-
properties: {
|
|
10026
|
-
displayBehaviour: "standalone" | "associated";
|
|
10027
|
-
iframeSrc: string;
|
|
10028
|
-
heading?: {
|
|
10029
|
-
text: string;
|
|
10030
|
-
href?: string | undefined;
|
|
10031
|
-
} | undefined;
|
|
10032
|
-
};
|
|
10033
|
-
hidden?: boolean | undefined;
|
|
10034
|
-
sliceId?: string | undefined;
|
|
10035
|
-
}, {
|
|
10036
|
-
type: "CustomIframe";
|
|
10037
|
-
properties: {
|
|
10038
|
-
displayBehaviour: "standalone" | "associated";
|
|
10039
|
-
iframeSrc: string;
|
|
10040
|
-
heading?: {
|
|
10041
|
-
text: string;
|
|
10042
|
-
href?: string | undefined;
|
|
10043
|
-
} | undefined;
|
|
9375
|
+
storyUUID?: string | undefined;
|
|
9376
|
+
theme?: string | undefined;
|
|
10044
9377
|
};
|
|
10045
9378
|
hidden?: boolean | undefined;
|
|
10046
9379
|
sliceId?: string | undefined;
|
|
@@ -10752,27 +10085,17 @@ declare const PageStructureInputSchema: z.ZodObject<{
|
|
|
10752
10085
|
} | undefined;
|
|
10753
10086
|
sliceId?: string | undefined;
|
|
10754
10087
|
} | {
|
|
10755
|
-
type: "
|
|
10088
|
+
type: "Interactive";
|
|
10756
10089
|
properties: {
|
|
10757
|
-
displayBehaviour: "standalone" | "associated";
|
|
10758
10090
|
flourishId: string;
|
|
10091
|
+
flourishAltText: string;
|
|
10759
10092
|
heading?: {
|
|
10760
10093
|
text: string;
|
|
10761
10094
|
href?: string | undefined;
|
|
10762
10095
|
} | undefined;
|
|
10763
10096
|
flourishDescription?: string | undefined;
|
|
10764
|
-
|
|
10765
|
-
|
|
10766
|
-
sliceId?: string | undefined;
|
|
10767
|
-
} | {
|
|
10768
|
-
type: "CustomIframe";
|
|
10769
|
-
properties: {
|
|
10770
|
-
displayBehaviour: "standalone" | "associated";
|
|
10771
|
-
iframeSrc: string;
|
|
10772
|
-
heading?: {
|
|
10773
|
-
text: string;
|
|
10774
|
-
href?: string | undefined;
|
|
10775
|
-
} | undefined;
|
|
10097
|
+
storyUUID?: string | undefined;
|
|
10098
|
+
theme?: string | undefined;
|
|
10776
10099
|
};
|
|
10777
10100
|
hidden?: boolean | undefined;
|
|
10778
10101
|
sliceId?: string | undefined;
|
|
@@ -10888,27 +10211,17 @@ declare const PageStructureInputSchema: z.ZodObject<{
|
|
|
10888
10211
|
} | undefined;
|
|
10889
10212
|
sliceId?: string | undefined;
|
|
10890
10213
|
} | {
|
|
10891
|
-
type: "
|
|
10214
|
+
type: "Interactive";
|
|
10892
10215
|
properties: {
|
|
10893
|
-
displayBehaviour: "standalone" | "associated";
|
|
10894
10216
|
flourishId: string;
|
|
10217
|
+
flourishAltText: string;
|
|
10895
10218
|
heading?: {
|
|
10896
10219
|
text: string;
|
|
10897
10220
|
href?: string | undefined;
|
|
10898
10221
|
} | undefined;
|
|
10899
10222
|
flourishDescription?: string | undefined;
|
|
10900
|
-
|
|
10901
|
-
|
|
10902
|
-
sliceId?: string | undefined;
|
|
10903
|
-
} | {
|
|
10904
|
-
type: "CustomIframe";
|
|
10905
|
-
properties: {
|
|
10906
|
-
displayBehaviour: "standalone" | "associated";
|
|
10907
|
-
iframeSrc: string;
|
|
10908
|
-
heading?: {
|
|
10909
|
-
text: string;
|
|
10910
|
-
href?: string | undefined;
|
|
10911
|
-
} | undefined;
|
|
10223
|
+
storyUUID?: string | undefined;
|
|
10224
|
+
theme?: string | undefined;
|
|
10912
10225
|
};
|
|
10913
10226
|
hidden?: boolean | undefined;
|
|
10914
10227
|
sliceId?: string | undefined;
|
|
@@ -11093,7 +10406,7 @@ declare const PageStructureOutputSchema: z.ZodObject<{
|
|
|
11093
10406
|
} | undefined;
|
|
11094
10407
|
} | undefined;
|
|
11095
10408
|
}>, z.ZodObject<{
|
|
11096
|
-
type: z.ZodLiteral<"
|
|
10409
|
+
type: z.ZodLiteral<"Interactive">;
|
|
11097
10410
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
11098
10411
|
properties: z.ZodObject<{
|
|
11099
10412
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -11106,112 +10419,62 @@ declare const PageStructureOutputSchema: z.ZodObject<{
|
|
|
11106
10419
|
text: string;
|
|
11107
10420
|
href?: string | undefined;
|
|
11108
10421
|
}>>;
|
|
11109
|
-
} & {
|
|
11110
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
11111
10422
|
} & {
|
|
11112
10423
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
11113
10424
|
flourishId: z.ZodString;
|
|
10425
|
+
flourishAltText: z.ZodString;
|
|
10426
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
10427
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
11114
10428
|
}, "strip", z.ZodTypeAny, {
|
|
11115
|
-
displayBehaviour: "standalone" | "associated";
|
|
11116
10429
|
flourishId: string;
|
|
10430
|
+
flourishAltText: string;
|
|
11117
10431
|
heading?: {
|
|
11118
10432
|
text: string;
|
|
11119
10433
|
href?: string | undefined;
|
|
11120
10434
|
} | undefined;
|
|
11121
10435
|
flourishDescription?: string | undefined;
|
|
10436
|
+
storyUUID?: string | undefined;
|
|
10437
|
+
theme?: string | undefined;
|
|
11122
10438
|
}, {
|
|
11123
|
-
displayBehaviour: "standalone" | "associated";
|
|
11124
10439
|
flourishId: string;
|
|
10440
|
+
flourishAltText: string;
|
|
11125
10441
|
heading?: {
|
|
11126
10442
|
text: string;
|
|
11127
10443
|
href?: string | undefined;
|
|
11128
10444
|
} | undefined;
|
|
11129
10445
|
flourishDescription?: string | undefined;
|
|
10446
|
+
storyUUID?: string | undefined;
|
|
10447
|
+
theme?: string | undefined;
|
|
11130
10448
|
}>;
|
|
11131
10449
|
} & {
|
|
11132
10450
|
sliceId: z.ZodString;
|
|
11133
10451
|
}, "strip", z.ZodTypeAny, {
|
|
11134
|
-
type: "
|
|
10452
|
+
type: "Interactive";
|
|
11135
10453
|
properties: {
|
|
11136
|
-
displayBehaviour: "standalone" | "associated";
|
|
11137
10454
|
flourishId: string;
|
|
10455
|
+
flourishAltText: string;
|
|
11138
10456
|
heading?: {
|
|
11139
10457
|
text: string;
|
|
11140
10458
|
href?: string | undefined;
|
|
11141
10459
|
} | undefined;
|
|
11142
10460
|
flourishDescription?: string | undefined;
|
|
10461
|
+
storyUUID?: string | undefined;
|
|
10462
|
+
theme?: string | undefined;
|
|
11143
10463
|
};
|
|
11144
10464
|
sliceId: string;
|
|
11145
10465
|
hidden?: boolean | undefined;
|
|
11146
10466
|
}, {
|
|
11147
|
-
type: "
|
|
10467
|
+
type: "Interactive";
|
|
11148
10468
|
properties: {
|
|
11149
|
-
displayBehaviour: "standalone" | "associated";
|
|
11150
10469
|
flourishId: string;
|
|
10470
|
+
flourishAltText: string;
|
|
11151
10471
|
heading?: {
|
|
11152
10472
|
text: string;
|
|
11153
10473
|
href?: string | undefined;
|
|
11154
10474
|
} | undefined;
|
|
11155
10475
|
flourishDescription?: string | undefined;
|
|
11156
|
-
|
|
11157
|
-
|
|
11158
|
-
hidden?: boolean | undefined;
|
|
11159
|
-
}>, z.ZodObject<{
|
|
11160
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
11161
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
11162
|
-
properties: z.ZodObject<{
|
|
11163
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
11164
|
-
text: z.ZodString;
|
|
11165
|
-
href: z.ZodOptional<z.ZodString>;
|
|
11166
|
-
}, "strip", z.ZodTypeAny, {
|
|
11167
|
-
text: string;
|
|
11168
|
-
href?: string | undefined;
|
|
11169
|
-
}, {
|
|
11170
|
-
text: string;
|
|
11171
|
-
href?: string | undefined;
|
|
11172
|
-
}>>;
|
|
11173
|
-
} & {
|
|
11174
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
11175
|
-
} & {
|
|
11176
|
-
iframeSrc: z.ZodString;
|
|
11177
|
-
}, "strip", z.ZodTypeAny, {
|
|
11178
|
-
displayBehaviour: "standalone" | "associated";
|
|
11179
|
-
iframeSrc: string;
|
|
11180
|
-
heading?: {
|
|
11181
|
-
text: string;
|
|
11182
|
-
href?: string | undefined;
|
|
11183
|
-
} | undefined;
|
|
11184
|
-
}, {
|
|
11185
|
-
displayBehaviour: "standalone" | "associated";
|
|
11186
|
-
iframeSrc: string;
|
|
11187
|
-
heading?: {
|
|
11188
|
-
text: string;
|
|
11189
|
-
href?: string | undefined;
|
|
11190
|
-
} | undefined;
|
|
11191
|
-
}>;
|
|
11192
|
-
} & {
|
|
11193
|
-
sliceId: z.ZodString;
|
|
11194
|
-
}, "strip", z.ZodTypeAny, {
|
|
11195
|
-
type: "CustomIframe";
|
|
11196
|
-
properties: {
|
|
11197
|
-
displayBehaviour: "standalone" | "associated";
|
|
11198
|
-
iframeSrc: string;
|
|
11199
|
-
heading?: {
|
|
11200
|
-
text: string;
|
|
11201
|
-
href?: string | undefined;
|
|
11202
|
-
} | undefined;
|
|
11203
|
-
};
|
|
11204
|
-
sliceId: string;
|
|
11205
|
-
hidden?: boolean | undefined;
|
|
11206
|
-
}, {
|
|
11207
|
-
type: "CustomIframe";
|
|
11208
|
-
properties: {
|
|
11209
|
-
displayBehaviour: "standalone" | "associated";
|
|
11210
|
-
iframeSrc: string;
|
|
11211
|
-
heading?: {
|
|
11212
|
-
text: string;
|
|
11213
|
-
href?: string | undefined;
|
|
11214
|
-
} | undefined;
|
|
10476
|
+
storyUUID?: string | undefined;
|
|
10477
|
+
theme?: string | undefined;
|
|
11215
10478
|
};
|
|
11216
10479
|
sliceId: string;
|
|
11217
10480
|
hidden?: boolean | undefined;
|
|
@@ -11924,27 +11187,17 @@ declare const PageStructureOutputSchema: z.ZodObject<{
|
|
|
11924
11187
|
} | undefined;
|
|
11925
11188
|
} | undefined;
|
|
11926
11189
|
} | {
|
|
11927
|
-
type: "
|
|
11190
|
+
type: "Interactive";
|
|
11928
11191
|
properties: {
|
|
11929
|
-
displayBehaviour: "standalone" | "associated";
|
|
11930
11192
|
flourishId: string;
|
|
11193
|
+
flourishAltText: string;
|
|
11931
11194
|
heading?: {
|
|
11932
11195
|
text: string;
|
|
11933
11196
|
href?: string | undefined;
|
|
11934
11197
|
} | undefined;
|
|
11935
11198
|
flourishDescription?: string | undefined;
|
|
11936
|
-
|
|
11937
|
-
|
|
11938
|
-
hidden?: boolean | undefined;
|
|
11939
|
-
} | {
|
|
11940
|
-
type: "CustomIframe";
|
|
11941
|
-
properties: {
|
|
11942
|
-
displayBehaviour: "standalone" | "associated";
|
|
11943
|
-
iframeSrc: string;
|
|
11944
|
-
heading?: {
|
|
11945
|
-
text: string;
|
|
11946
|
-
href?: string | undefined;
|
|
11947
|
-
} | undefined;
|
|
11199
|
+
storyUUID?: string | undefined;
|
|
11200
|
+
theme?: string | undefined;
|
|
11948
11201
|
};
|
|
11949
11202
|
sliceId: string;
|
|
11950
11203
|
hidden?: boolean | undefined;
|
|
@@ -12062,27 +11315,17 @@ declare const PageStructureOutputSchema: z.ZodObject<{
|
|
|
12062
11315
|
} | undefined;
|
|
12063
11316
|
} | undefined;
|
|
12064
11317
|
} | {
|
|
12065
|
-
type: "
|
|
11318
|
+
type: "Interactive";
|
|
12066
11319
|
properties: {
|
|
12067
|
-
displayBehaviour: "standalone" | "associated";
|
|
12068
11320
|
flourishId: string;
|
|
11321
|
+
flourishAltText: string;
|
|
12069
11322
|
heading?: {
|
|
12070
11323
|
text: string;
|
|
12071
11324
|
href?: string | undefined;
|
|
12072
11325
|
} | undefined;
|
|
12073
11326
|
flourishDescription?: string | undefined;
|
|
12074
|
-
|
|
12075
|
-
|
|
12076
|
-
hidden?: boolean | undefined;
|
|
12077
|
-
} | {
|
|
12078
|
-
type: "CustomIframe";
|
|
12079
|
-
properties: {
|
|
12080
|
-
displayBehaviour: "standalone" | "associated";
|
|
12081
|
-
iframeSrc: string;
|
|
12082
|
-
heading?: {
|
|
12083
|
-
text: string;
|
|
12084
|
-
href?: string | undefined;
|
|
12085
|
-
} | undefined;
|
|
11327
|
+
storyUUID?: string | undefined;
|
|
11328
|
+
theme?: string | undefined;
|
|
12086
11329
|
};
|
|
12087
11330
|
sliceId: string;
|
|
12088
11331
|
hidden?: boolean | undefined;
|
|
@@ -12536,7 +11779,7 @@ declare const SliceApiInputSchema: z.ZodDiscriminatedUnion<"type", readonly [z.Z
|
|
|
12536
11779
|
} | undefined;
|
|
12537
11780
|
sliceId?: string | undefined;
|
|
12538
11781
|
}>, z.ZodObject<{
|
|
12539
|
-
type: z.ZodLiteral<"
|
|
11782
|
+
type: z.ZodLiteral<"Interactive">;
|
|
12540
11783
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
12541
11784
|
properties: z.ZodObject<{
|
|
12542
11785
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -12549,112 +11792,62 @@ declare const SliceApiInputSchema: z.ZodDiscriminatedUnion<"type", readonly [z.Z
|
|
|
12549
11792
|
text: string;
|
|
12550
11793
|
href?: string | undefined;
|
|
12551
11794
|
}>>;
|
|
12552
|
-
} & {
|
|
12553
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
12554
11795
|
} & {
|
|
12555
11796
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
12556
11797
|
flourishId: z.ZodString;
|
|
11798
|
+
flourishAltText: z.ZodString;
|
|
11799
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
11800
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
12557
11801
|
}, "strip", z.ZodTypeAny, {
|
|
12558
|
-
displayBehaviour: "standalone" | "associated";
|
|
12559
11802
|
flourishId: string;
|
|
11803
|
+
flourishAltText: string;
|
|
12560
11804
|
heading?: {
|
|
12561
11805
|
text: string;
|
|
12562
11806
|
href?: string | undefined;
|
|
12563
11807
|
} | undefined;
|
|
12564
11808
|
flourishDescription?: string | undefined;
|
|
11809
|
+
storyUUID?: string | undefined;
|
|
11810
|
+
theme?: string | undefined;
|
|
12565
11811
|
}, {
|
|
12566
|
-
displayBehaviour: "standalone" | "associated";
|
|
12567
11812
|
flourishId: string;
|
|
11813
|
+
flourishAltText: string;
|
|
12568
11814
|
heading?: {
|
|
12569
11815
|
text: string;
|
|
12570
11816
|
href?: string | undefined;
|
|
12571
11817
|
} | undefined;
|
|
12572
11818
|
flourishDescription?: string | undefined;
|
|
11819
|
+
storyUUID?: string | undefined;
|
|
11820
|
+
theme?: string | undefined;
|
|
12573
11821
|
}>;
|
|
12574
11822
|
} & {
|
|
12575
11823
|
sliceId: z.ZodOptional<z.ZodString>;
|
|
12576
11824
|
}, "strip", z.ZodTypeAny, {
|
|
12577
|
-
type: "
|
|
11825
|
+
type: "Interactive";
|
|
12578
11826
|
properties: {
|
|
12579
|
-
displayBehaviour: "standalone" | "associated";
|
|
12580
11827
|
flourishId: string;
|
|
11828
|
+
flourishAltText: string;
|
|
12581
11829
|
heading?: {
|
|
12582
11830
|
text: string;
|
|
12583
11831
|
href?: string | undefined;
|
|
12584
11832
|
} | undefined;
|
|
12585
11833
|
flourishDescription?: string | undefined;
|
|
11834
|
+
storyUUID?: string | undefined;
|
|
11835
|
+
theme?: string | undefined;
|
|
12586
11836
|
};
|
|
12587
11837
|
hidden?: boolean | undefined;
|
|
12588
11838
|
sliceId?: string | undefined;
|
|
12589
11839
|
}, {
|
|
12590
|
-
type: "
|
|
11840
|
+
type: "Interactive";
|
|
12591
11841
|
properties: {
|
|
12592
|
-
displayBehaviour: "standalone" | "associated";
|
|
12593
11842
|
flourishId: string;
|
|
11843
|
+
flourishAltText: string;
|
|
12594
11844
|
heading?: {
|
|
12595
11845
|
text: string;
|
|
12596
11846
|
href?: string | undefined;
|
|
12597
11847
|
} | undefined;
|
|
12598
11848
|
flourishDescription?: string | undefined;
|
|
12599
|
-
|
|
12600
|
-
|
|
12601
|
-
sliceId?: string | undefined;
|
|
12602
|
-
}>, z.ZodObject<{
|
|
12603
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
12604
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
12605
|
-
properties: z.ZodObject<{
|
|
12606
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
12607
|
-
text: z.ZodString;
|
|
12608
|
-
href: z.ZodOptional<z.ZodString>;
|
|
12609
|
-
}, "strip", z.ZodTypeAny, {
|
|
12610
|
-
text: string;
|
|
12611
|
-
href?: string | undefined;
|
|
12612
|
-
}, {
|
|
12613
|
-
text: string;
|
|
12614
|
-
href?: string | undefined;
|
|
12615
|
-
}>>;
|
|
12616
|
-
} & {
|
|
12617
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
12618
|
-
} & {
|
|
12619
|
-
iframeSrc: z.ZodString;
|
|
12620
|
-
}, "strip", z.ZodTypeAny, {
|
|
12621
|
-
displayBehaviour: "standalone" | "associated";
|
|
12622
|
-
iframeSrc: string;
|
|
12623
|
-
heading?: {
|
|
12624
|
-
text: string;
|
|
12625
|
-
href?: string | undefined;
|
|
12626
|
-
} | undefined;
|
|
12627
|
-
}, {
|
|
12628
|
-
displayBehaviour: "standalone" | "associated";
|
|
12629
|
-
iframeSrc: string;
|
|
12630
|
-
heading?: {
|
|
12631
|
-
text: string;
|
|
12632
|
-
href?: string | undefined;
|
|
12633
|
-
} | undefined;
|
|
12634
|
-
}>;
|
|
12635
|
-
} & {
|
|
12636
|
-
sliceId: z.ZodOptional<z.ZodString>;
|
|
12637
|
-
}, "strip", z.ZodTypeAny, {
|
|
12638
|
-
type: "CustomIframe";
|
|
12639
|
-
properties: {
|
|
12640
|
-
displayBehaviour: "standalone" | "associated";
|
|
12641
|
-
iframeSrc: string;
|
|
12642
|
-
heading?: {
|
|
12643
|
-
text: string;
|
|
12644
|
-
href?: string | undefined;
|
|
12645
|
-
} | undefined;
|
|
12646
|
-
};
|
|
12647
|
-
hidden?: boolean | undefined;
|
|
12648
|
-
sliceId?: string | undefined;
|
|
12649
|
-
}, {
|
|
12650
|
-
type: "CustomIframe";
|
|
12651
|
-
properties: {
|
|
12652
|
-
displayBehaviour: "standalone" | "associated";
|
|
12653
|
-
iframeSrc: string;
|
|
12654
|
-
heading?: {
|
|
12655
|
-
text: string;
|
|
12656
|
-
href?: string | undefined;
|
|
12657
|
-
} | undefined;
|
|
11849
|
+
storyUUID?: string | undefined;
|
|
11850
|
+
theme?: string | undefined;
|
|
12658
11851
|
};
|
|
12659
11852
|
hidden?: boolean | undefined;
|
|
12660
11853
|
sliceId?: string | undefined;
|
|
@@ -13399,7 +12592,7 @@ declare const SliceApiOutputSchema: z.ZodDiscriminatedUnion<"type", readonly [z.
|
|
|
13399
12592
|
} | undefined;
|
|
13400
12593
|
} | undefined;
|
|
13401
12594
|
}>, z.ZodObject<{
|
|
13402
|
-
type: z.ZodLiteral<"
|
|
12595
|
+
type: z.ZodLiteral<"Interactive">;
|
|
13403
12596
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
13404
12597
|
properties: z.ZodObject<{
|
|
13405
12598
|
heading: z.ZodOptional<z.ZodObject<{
|
|
@@ -13412,112 +12605,62 @@ declare const SliceApiOutputSchema: z.ZodDiscriminatedUnion<"type", readonly [z.
|
|
|
13412
12605
|
text: string;
|
|
13413
12606
|
href?: string | undefined;
|
|
13414
12607
|
}>>;
|
|
13415
|
-
} & {
|
|
13416
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
13417
12608
|
} & {
|
|
13418
12609
|
flourishDescription: z.ZodOptional<z.ZodString>;
|
|
13419
12610
|
flourishId: z.ZodString;
|
|
12611
|
+
flourishAltText: z.ZodString;
|
|
12612
|
+
storyUUID: z.ZodOptional<z.ZodString>;
|
|
12613
|
+
theme: z.ZodOptional<z.ZodString>;
|
|
13420
12614
|
}, "strip", z.ZodTypeAny, {
|
|
13421
|
-
displayBehaviour: "standalone" | "associated";
|
|
13422
12615
|
flourishId: string;
|
|
12616
|
+
flourishAltText: string;
|
|
13423
12617
|
heading?: {
|
|
13424
12618
|
text: string;
|
|
13425
12619
|
href?: string | undefined;
|
|
13426
12620
|
} | undefined;
|
|
13427
12621
|
flourishDescription?: string | undefined;
|
|
12622
|
+
storyUUID?: string | undefined;
|
|
12623
|
+
theme?: string | undefined;
|
|
13428
12624
|
}, {
|
|
13429
|
-
displayBehaviour: "standalone" | "associated";
|
|
13430
12625
|
flourishId: string;
|
|
12626
|
+
flourishAltText: string;
|
|
13431
12627
|
heading?: {
|
|
13432
12628
|
text: string;
|
|
13433
12629
|
href?: string | undefined;
|
|
13434
12630
|
} | undefined;
|
|
13435
12631
|
flourishDescription?: string | undefined;
|
|
12632
|
+
storyUUID?: string | undefined;
|
|
12633
|
+
theme?: string | undefined;
|
|
13436
12634
|
}>;
|
|
13437
12635
|
} & {
|
|
13438
12636
|
sliceId: z.ZodString;
|
|
13439
12637
|
}, "strip", z.ZodTypeAny, {
|
|
13440
|
-
type: "
|
|
12638
|
+
type: "Interactive";
|
|
13441
12639
|
properties: {
|
|
13442
|
-
displayBehaviour: "standalone" | "associated";
|
|
13443
12640
|
flourishId: string;
|
|
12641
|
+
flourishAltText: string;
|
|
13444
12642
|
heading?: {
|
|
13445
12643
|
text: string;
|
|
13446
12644
|
href?: string | undefined;
|
|
13447
12645
|
} | undefined;
|
|
13448
12646
|
flourishDescription?: string | undefined;
|
|
12647
|
+
storyUUID?: string | undefined;
|
|
12648
|
+
theme?: string | undefined;
|
|
13449
12649
|
};
|
|
13450
12650
|
sliceId: string;
|
|
13451
12651
|
hidden?: boolean | undefined;
|
|
13452
12652
|
}, {
|
|
13453
|
-
type: "
|
|
12653
|
+
type: "Interactive";
|
|
13454
12654
|
properties: {
|
|
13455
|
-
displayBehaviour: "standalone" | "associated";
|
|
13456
12655
|
flourishId: string;
|
|
12656
|
+
flourishAltText: string;
|
|
13457
12657
|
heading?: {
|
|
13458
12658
|
text: string;
|
|
13459
12659
|
href?: string | undefined;
|
|
13460
12660
|
} | undefined;
|
|
13461
12661
|
flourishDescription?: string | undefined;
|
|
13462
|
-
|
|
13463
|
-
|
|
13464
|
-
hidden?: boolean | undefined;
|
|
13465
|
-
}>, z.ZodObject<{
|
|
13466
|
-
type: z.ZodLiteral<"CustomIframe">;
|
|
13467
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
13468
|
-
properties: z.ZodObject<{
|
|
13469
|
-
heading: z.ZodOptional<z.ZodObject<{
|
|
13470
|
-
text: z.ZodString;
|
|
13471
|
-
href: z.ZodOptional<z.ZodString>;
|
|
13472
|
-
}, "strip", z.ZodTypeAny, {
|
|
13473
|
-
text: string;
|
|
13474
|
-
href?: string | undefined;
|
|
13475
|
-
}, {
|
|
13476
|
-
text: string;
|
|
13477
|
-
href?: string | undefined;
|
|
13478
|
-
}>>;
|
|
13479
|
-
} & {
|
|
13480
|
-
displayBehaviour: z.ZodEnum<["standalone", "associated"]>;
|
|
13481
|
-
} & {
|
|
13482
|
-
iframeSrc: z.ZodString;
|
|
13483
|
-
}, "strip", z.ZodTypeAny, {
|
|
13484
|
-
displayBehaviour: "standalone" | "associated";
|
|
13485
|
-
iframeSrc: string;
|
|
13486
|
-
heading?: {
|
|
13487
|
-
text: string;
|
|
13488
|
-
href?: string | undefined;
|
|
13489
|
-
} | undefined;
|
|
13490
|
-
}, {
|
|
13491
|
-
displayBehaviour: "standalone" | "associated";
|
|
13492
|
-
iframeSrc: string;
|
|
13493
|
-
heading?: {
|
|
13494
|
-
text: string;
|
|
13495
|
-
href?: string | undefined;
|
|
13496
|
-
} | undefined;
|
|
13497
|
-
}>;
|
|
13498
|
-
} & {
|
|
13499
|
-
sliceId: z.ZodString;
|
|
13500
|
-
}, "strip", z.ZodTypeAny, {
|
|
13501
|
-
type: "CustomIframe";
|
|
13502
|
-
properties: {
|
|
13503
|
-
displayBehaviour: "standalone" | "associated";
|
|
13504
|
-
iframeSrc: string;
|
|
13505
|
-
heading?: {
|
|
13506
|
-
text: string;
|
|
13507
|
-
href?: string | undefined;
|
|
13508
|
-
} | undefined;
|
|
13509
|
-
};
|
|
13510
|
-
sliceId: string;
|
|
13511
|
-
hidden?: boolean | undefined;
|
|
13512
|
-
}, {
|
|
13513
|
-
type: "CustomIframe";
|
|
13514
|
-
properties: {
|
|
13515
|
-
displayBehaviour: "standalone" | "associated";
|
|
13516
|
-
iframeSrc: string;
|
|
13517
|
-
heading?: {
|
|
13518
|
-
text: string;
|
|
13519
|
-
href?: string | undefined;
|
|
13520
|
-
} | undefined;
|
|
12662
|
+
storyUUID?: string | undefined;
|
|
12663
|
+
theme?: string | undefined;
|
|
13521
12664
|
};
|
|
13522
12665
|
sliceId: string;
|
|
13523
12666
|
hidden?: boolean | undefined;
|