-
Notifications
You must be signed in to change notification settings - Fork 0
/
prismicio-types.d.ts
1505 lines (1503 loc) · 38.7 KB
/
prismicio-types.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by Slice Machine. DO NOT EDIT.
import type * as prismicT from "@prismicio/types";
import type * as prismic from "@prismicio/client";
type Simplify<T> = {
[KeyType in keyof T]: T[KeyType];
};
/** Content for Qui sommes nous documents */
interface AboutDocumentData {
/**
* Slice Zone field in *Qui sommes nous*
*
* - **Field Type**: Slice Zone
* - **Placeholder**: *None*
* - **API ID Path**: about.slices[]
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/slices
*
*/
slices: prismicT.SliceZone<AboutDocumentDataSlicesSlice>;
}
/**
* Slice for *Qui sommes nous → Slice Zone*
*
*/
type AboutDocumentDataSlicesSlice = OverviewSlice | TeamSlice;
/**
* Qui sommes nous document from Prismic
*
* - **API ID**: `about`
* - **Repeatable**: `false`
* - **Documentation**: https://prismic.io/docs/core-concepts/custom-types
*
* @typeParam Lang - Language API ID of the document.
*/
export type AboutDocument<Lang extends string = string> =
prismicT.PrismicDocumentWithoutUID<
Simplify<AboutDocumentData>,
"about",
Lang
>;
/** Content for Accueil documents */
interface AccueilDocumentData {
/**
* Slice Zone field in *Accueil*
*
* - **Field Type**: Slice Zone
* - **Placeholder**: *None*
* - **API ID Path**: accueil.slices[]
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/slices
*
*/
slices: prismicT.SliceZone<AccueilDocumentDataSlicesSlice>;
}
/**
* Slice for *Accueil → Slice Zone*
*
*/
type AccueilDocumentDataSlicesSlice =
| TestimoniesSlice
| TeamCalloutSlice
| LatestNewsSlice
| ValuePropositionSlice
| ProjectsSlice;
/**
* Accueil document from Prismic
*
* - **API ID**: `accueil`
* - **Repeatable**: `false`
* - **Documentation**: https://prismic.io/docs/core-concepts/custom-types
*
* @typeParam Lang - Language API ID of the document.
*/
export type AccueilDocument<Lang extends string = string> =
prismicT.PrismicDocumentWithoutUID<
Simplify<AccueilDocumentData>,
"accueil",
Lang
>;
/** Content for Gestion documents */
interface GestionDocumentData {
/**
* Slice Zone field in *Gestion*
*
* - **Field Type**: Slice Zone
* - **Placeholder**: *None*
* - **API ID Path**: gestion.slices[]
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/slices
*
*/
slices: prismicT.SliceZone<GestionDocumentDataSlicesSlice>;
}
/**
* Slice for *Gestion → Slice Zone*
*
*/
type GestionDocumentDataSlicesSlice =
| OverviewSlice
| StrengthsSlice
| OffersSlice
| ContactBlockSlice
| OffersCompareSlice
| ProjectsSlice;
/**
* Gestion document from Prismic
*
* - **API ID**: `gestion`
* - **Repeatable**: `false`
* - **Documentation**: https://prismic.io/docs/core-concepts/custom-types
*
* @typeParam Lang - Language API ID of the document.
*/
export type GestionDocument<Lang extends string = string> =
prismicT.PrismicDocumentWithoutUID<
Simplify<GestionDocumentData>,
"gestion",
Lang
>;
/** Content for Location documents */
interface LocationDocumentData {
/**
* Slice Zone field in *Location*
*
* - **Field Type**: Slice Zone
* - **Placeholder**: *None*
* - **API ID Path**: location.slices[]
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/slices
*
*/
slices: prismicT.SliceZone<LocationDocumentDataSlicesSlice>;
}
/**
* Slice for *Location → Slice Zone*
*
*/
type LocationDocumentDataSlicesSlice =
| OverviewSlice
| StrengthsSlice
| ContactBlockSlice
| EstimateFormSlice
| ProjectsSlice;
/**
* Location document from Prismic
*
* - **API ID**: `location`
* - **Repeatable**: `false`
* - **Documentation**: https://prismic.io/docs/core-concepts/custom-types
*
* @typeParam Lang - Language API ID of the document.
*/
export type LocationDocument<Lang extends string = string> =
prismicT.PrismicDocumentWithoutUID<
Simplify<LocationDocumentData>,
"location",
Lang
>;
/** Content for Actualité documents */
interface NewsDocumentData {
/**
* illustration field in *Actualité*
*
* - **Field Type**: Image
* - **Placeholder**: *None*
* - **API ID Path**: news.illustration
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/image
*
*/
illustration: prismicT.ImageField<never>;
/**
* title field in *Actualité*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: news.title
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
title: prismicT.KeyTextField;
/**
* date field in *Actualité*
*
* - **Field Type**: Timestamp
* - **Placeholder**: *None*
* - **API ID Path**: news.date
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/timestamp
*
*/
date: prismicT.TimestampField;
/**
* text field in *Actualité*
*
* - **Field Type**: Rich Text
* - **Placeholder**: *None*
* - **API ID Path**: news.text
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/rich-text-title
*
*/
text: prismicT.RichTextField;
/**
* featured field in *Actualité*
*
* - **Field Type**: Boolean
* - **Placeholder**: *None*
* - **Default Value**: false
* - **API ID Path**: news.featured
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/boolean
*
*/
featured: prismicT.BooleanField;
}
/**
* Actualité document from Prismic
*
* - **API ID**: `news`
* - **Repeatable**: `true`
* - **Documentation**: https://prismic.io/docs/core-concepts/custom-types
*
* @typeParam Lang - Language API ID of the document.
*/
export type NewsDocument<Lang extends string = string> =
prismicT.PrismicDocumentWithoutUID<Simplify<NewsDocumentData>, "news", Lang>;
/** Content for Projet documents */
interface ProjectDocumentData {
/**
* title field in *Projet*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: project.title
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
title: prismicT.KeyTextField;
/**
* type field in *Projet*
*
* - **Field Type**: Select
* - **Placeholder**: *None*
* - **Default Value**: Gestion
* - **API ID Path**: project.type
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/select
*
*/
type: prismicT.SelectField<
"Gestion" | "Loué" | "En location" | "Achat" | "Vendu",
"filled"
>;
/**
* illustration field in *Projet*
*
* - **Field Type**: Image
* - **Placeholder**: *None*
* - **API ID Path**: project.illustration
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/image
*
*/
illustration: prismicT.ImageField<never>;
/**
* city field in *Projet*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: project.city
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
city: prismicT.KeyTextField;
/**
* date field in *Projet*
*
* - **Field Type**: Date
* - **Placeholder**: *None*
* - **API ID Path**: project.date
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/date
*
*/
date: prismicT.DateField;
/**
* description field in *Projet*
*
* - **Field Type**: Rich Text
* - **Placeholder**: *None*
* - **API ID Path**: project.description
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/rich-text-title
*
*/
description: prismicT.RichTextField;
/**
* Slice Zone field in *Projet*
*
* - **Field Type**: Slice Zone
* - **Placeholder**: *None*
* - **API ID Path**: project.slices[]
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/slices
*
*/
slices: prismicT.SliceZone<ProjectDocumentDataSlicesSlice>;
}
/**
* Slice for *Projet → Slice Zone*
*
*/
type ProjectDocumentDataSlicesSlice = never;
/**
* Projet document from Prismic
*
* - **API ID**: `project`
* - **Repeatable**: `true`
* - **Documentation**: https://prismic.io/docs/core-concepts/custom-types
*
* @typeParam Lang - Language API ID of the document.
*/
export type ProjectDocument<Lang extends string = string> =
prismicT.PrismicDocumentWithoutUID<
Simplify<ProjectDocumentData>,
"project",
Lang
>;
/** Content for Vente documents */
interface VenteDocumentData {
/**
* Slice Zone field in *Vente*
*
* - **Field Type**: Slice Zone
* - **Placeholder**: *None*
* - **API ID Path**: vente.slices[]
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/core-concepts/slices
*
*/
slices: prismicT.SliceZone<VenteDocumentDataSlicesSlice>;
}
/**
* Slice for *Vente → Slice Zone*
*
*/
type VenteDocumentDataSlicesSlice =
| OverviewSlice
| StrengthsSlice
| ContactBlockSlice
| EstimateFormSlice
| ProjectsSlice;
/**
* Vente document from Prismic
*
* - **API ID**: `vente`
* - **Repeatable**: `false`
* - **Documentation**: https://prismic.io/docs/core-concepts/custom-types
*
* @typeParam Lang - Language API ID of the document.
*/
export type VenteDocument<Lang extends string = string> =
prismicT.PrismicDocumentWithoutUID<
Simplify<VenteDocumentData>,
"vente",
Lang
>;
export type AllDocumentTypes =
| AboutDocument
| AccueilDocument
| GestionDocument
| LocationDocument
| NewsDocument
| ProjectDocument
| VenteDocument;
/**
* Primary content in ContactBlock → Primary
*
*/
interface ContactBlockSliceDefaultPrimary {
/**
* title field in *ContactBlock → Primary*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: contact_block.primary.title
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
title: prismicT.KeyTextField;
/**
* description field in *ContactBlock → Primary*
*
* - **Field Type**: Rich Text
* - **Placeholder**: *None*
* - **API ID Path**: contact_block.primary.description
* - **Documentation**: https://prismic.io/docs/core-concepts/rich-text-title
*
*/
description: prismicT.RichTextField;
/**
* action field in *ContactBlock → Primary*
*
* - **Field Type**: Rich Text
* - **Placeholder**: *None*
* - **API ID Path**: contact_block.primary.action
* - **Documentation**: https://prismic.io/docs/core-concepts/rich-text-title
*
*/
action: prismicT.RichTextField;
/**
* illustration field in *ContactBlock → Primary*
*
* - **Field Type**: Image
* - **Placeholder**: *None*
* - **API ID Path**: contact_block.primary.illustration
* - **Documentation**: https://prismic.io/docs/core-concepts/image
*
*/
illustration: prismicT.ImageField<never>;
}
/**
* Default variation for ContactBlock Slice
*
* - **API ID**: `default`
* - **Description**: `Default`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type ContactBlockSliceDefault = prismicT.SharedSliceVariation<
"default",
Simplify<ContactBlockSliceDefaultPrimary>,
never
>;
/**
* Slice variation for *ContactBlock*
*
*/
type ContactBlockSliceVariation = ContactBlockSliceDefault;
/**
* ContactBlock Shared Slice
*
* - **API ID**: `contact_block`
* - **Description**: `ContactBlock`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type ContactBlockSlice = prismicT.SharedSlice<
"contact_block",
ContactBlockSliceVariation
>;
/**
* Primary content in EstimateForm → Primary
*
*/
interface EstimateFormSliceDefaultPrimary {
/**
* illustration field in *EstimateForm → Primary*
*
* - **Field Type**: Image
* - **Placeholder**: *None*
* - **API ID Path**: estimate_form.primary.illustration
* - **Documentation**: https://prismic.io/docs/core-concepts/image
*
*/
illustration: prismicT.ImageField<never>;
/**
* title field in *EstimateForm → Primary*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: estimate_form.primary.title
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
title: prismicT.KeyTextField;
/**
* description field in *EstimateForm → Primary*
*
* - **Field Type**: Rich Text
* - **Placeholder**: *None*
* - **API ID Path**: estimate_form.primary.description
* - **Documentation**: https://prismic.io/docs/core-concepts/rich-text-title
*
*/
description: prismicT.RichTextField;
}
/**
* Default variation for EstimateForm Slice
*
* - **API ID**: `default`
* - **Description**: `Default`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type EstimateFormSliceDefault = prismicT.SharedSliceVariation<
"default",
Simplify<EstimateFormSliceDefaultPrimary>,
never
>;
/**
* Slice variation for *EstimateForm*
*
*/
type EstimateFormSliceVariation = EstimateFormSliceDefault;
/**
* EstimateForm Shared Slice
*
* - **API ID**: `estimate_form`
* - **Description**: `EstimateForm`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type EstimateFormSlice = prismicT.SharedSlice<
"estimate_form",
EstimateFormSliceVariation
>;
/**
* Primary content in LatestNews → Primary
*
*/
interface LatestNewsSliceDefaultPrimary {
/**
* title field in *LatestNews → Primary*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: latest_news.primary.title
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
title: prismicT.KeyTextField;
/**
* view_all_text_button field in *LatestNews → Primary*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: latest_news.primary.view_all_text_button
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
view_all_text_button: prismicT.KeyTextField;
}
/**
* Default variation for LatestNews Slice
*
* - **API ID**: `default`
* - **Description**: `Default`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type LatestNewsSliceDefault = prismicT.SharedSliceVariation<
"default",
Simplify<LatestNewsSliceDefaultPrimary>,
never
>;
/**
* Slice variation for *LatestNews*
*
*/
type LatestNewsSliceVariation = LatestNewsSliceDefault;
/**
* LatestNews Shared Slice
*
* - **API ID**: `latest_news`
* - **Description**: `LatestNews`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type LatestNewsSlice = prismicT.SharedSlice<
"latest_news",
LatestNewsSliceVariation
>;
/**
* Primary content in Offers → Primary
*
*/
interface OffersSliceDefaultPrimary {
/**
* title field in *Offers → Primary*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: offers.primary.title
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
title: prismicT.KeyTextField;
/**
* subtitle field in *Offers → Primary*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: offers.primary.subtitle
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
subtitle: prismicT.KeyTextField;
}
/**
* Item in Offers → Items
*
*/
export interface OffersSliceDefaultItem {
/**
* icon field in *Offers → Items*
*
* - **Field Type**: Image
* - **Placeholder**: *None*
* - **API ID Path**: offers.items[].icon
* - **Documentation**: https://prismic.io/docs/core-concepts/image
*
*/
icon: prismicT.ImageField<never>;
/**
* name field in *Offers → Items*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: offers.items[].name
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
name: prismicT.KeyTextField;
/**
* tagline field in *Offers → Items*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: offers.items[].tagline
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
tagline: prismicT.KeyTextField;
/**
* description field in *Offers → Items*
*
* - **Field Type**: Rich Text
* - **Placeholder**: *None*
* - **API ID Path**: offers.items[].description
* - **Documentation**: https://prismic.io/docs/core-concepts/rich-text-title
*
*/
description: prismicT.RichTextField;
/**
* button field in *Offers → Items*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: offers.items[].button
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
button: prismicT.KeyTextField;
/**
* recommended field in *Offers → Items*
*
* - **Field Type**: Boolean
* - **Placeholder**: *None*
* - **Default Value**: false
* - **API ID Path**: offers.items[].recommended
* - **Documentation**: https://prismic.io/docs/core-concepts/boolean
*
*/
recommended: prismicT.BooleanField;
/**
* premium field in *Offers → Items*
*
* - **Field Type**: Boolean
* - **Placeholder**: *None*
* - **Default Value**: false
* - **API ID Path**: offers.items[].premium
* - **Documentation**: https://prismic.io/docs/core-concepts/boolean
*
*/
premium: prismicT.BooleanField;
}
/**
* Default variation for Offers Slice
*
* - **API ID**: `default`
* - **Description**: `Default`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type OffersSliceDefault = prismicT.SharedSliceVariation<
"default",
Simplify<OffersSliceDefaultPrimary>,
Simplify<OffersSliceDefaultItem>
>;
/**
* Slice variation for *Offers*
*
*/
type OffersSliceVariation = OffersSliceDefault;
/**
* Offers Shared Slice
*
* - **API ID**: `offers`
* - **Description**: `Offers`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type OffersSlice = prismicT.SharedSlice<"offers", OffersSliceVariation>;
/**
* Primary content in OffersCompare → Primary
*
*/
interface OffersCompareSliceDefaultPrimary {
/**
* title field in *OffersCompare → Primary*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: offers_compare.primary.title
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
title: prismicT.KeyTextField;
/**
* short_title field in *OffersCompare → Primary*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: offers_compare.primary.short_title
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
short_title: prismicT.KeyTextField;
/**
* disclaimer field in *OffersCompare → Primary*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: offers_compare.primary.disclaimer
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
disclaimer: prismicT.KeyTextField;
}
/**
* Item in OffersCompare → Items
*
*/
export interface OffersCompareSliceDefaultItem {
/**
* feature field in *OffersCompare → Items*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: offers_compare.items[].feature
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
feature: prismicT.KeyTextField;
/**
* offer1_has_feature field in *OffersCompare → Items*
*
* - **Field Type**: Boolean
* - **Placeholder**: *None*
* - **Default Value**: false
* - **API ID Path**: offers_compare.items[].offer1_has_feature
* - **Documentation**: https://prismic.io/docs/core-concepts/boolean
*
*/
offer1_has_feature: prismicT.BooleanField;
/**
* offer2_has_feature field in *OffersCompare → Items*
*
* - **Field Type**: Boolean
* - **Placeholder**: *None*
* - **Default Value**: false
* - **API ID Path**: offers_compare.items[].offer2_has_feature
* - **Documentation**: https://prismic.io/docs/core-concepts/boolean
*
*/
offer2_has_feature: prismicT.BooleanField;
/**
* offer3_has_feature field in *OffersCompare → Items*
*
* - **Field Type**: Boolean
* - **Placeholder**: *None*
* - **Default Value**: false
* - **API ID Path**: offers_compare.items[].offer3_has_feature
* - **Documentation**: https://prismic.io/docs/core-concepts/boolean
*
*/
offer3_has_feature: prismicT.BooleanField;
}
/**
* Default variation for OffersCompare Slice
*
* - **API ID**: `default`
* - **Description**: `Default`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type OffersCompareSliceDefault = prismicT.SharedSliceVariation<
"default",
Simplify<OffersCompareSliceDefaultPrimary>,
Simplify<OffersCompareSliceDefaultItem>
>;
/**
* Slice variation for *OffersCompare*
*
*/
type OffersCompareSliceVariation = OffersCompareSliceDefault;
/**
* OffersCompare Shared Slice
*
* - **API ID**: `offers_compare`
* - **Description**: `OffersCompare`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type OffersCompareSlice = prismicT.SharedSlice<
"offers_compare",
OffersCompareSliceVariation
>;
/**
* Primary content in IllustratedContent → Primary
*
*/
interface OverviewSliceDefaultPrimary {
/**
* title field in *IllustratedContent → Primary*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: overview.primary.title
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
title: prismicT.KeyTextField;
/**
* text field in *IllustratedContent → Primary*
*
* - **Field Type**: Rich Text
* - **Placeholder**: *None*
* - **API ID Path**: overview.primary.text
* - **Documentation**: https://prismic.io/docs/core-concepts/rich-text-title
*
*/
text: prismicT.RichTextField;
/**
* illustration field in *IllustratedContent → Primary*
*
* - **Field Type**: Image
* - **Placeholder**: *None*
* - **API ID Path**: overview.primary.illustration
* - **Documentation**: https://prismic.io/docs/core-concepts/image
*
*/
illustration: prismicT.ImageField<never>;
}
/**
* Default variation for IllustratedContent Slice
*
* - **API ID**: `default`
* - **Description**: `Default`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type OverviewSliceDefault = prismicT.SharedSliceVariation<
"default",
Simplify<OverviewSliceDefaultPrimary>,
never
>;
/**
* Slice variation for *IllustratedContent*
*
*/
type OverviewSliceVariation = OverviewSliceDefault;
/**
* IllustratedContent Shared Slice
*
* - **API ID**: `overview`
* - **Description**: `Overview`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type OverviewSlice = prismicT.SharedSlice<
"overview",
OverviewSliceVariation
>;
/**
* Primary content in Projects → Primary
*
*/
interface ProjectsSliceDefaultPrimary {
/**
* title field in *Projects → Primary*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: projects.primary.title
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
title: prismicT.KeyTextField;
}
/**
* Item in Projects → Items
*
*/
export interface ProjectsSliceDefaultItem {
/**
* project field in *Projects → Items*
*
* - **Field Type**: Content Relationship
* - **Placeholder**: *None*
* - **API ID Path**: projects.items[].project
* - **Documentation**: https://prismic.io/docs/core-concepts/link-content-relationship
*
*/
project: prismicT.RelationField<"project">;
}
/**
* Default variation for Projects Slice
*
* - **API ID**: `default`
* - **Description**: `Default`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type ProjectsSliceDefault = prismicT.SharedSliceVariation<
"default",
Simplify<ProjectsSliceDefaultPrimary>,
Simplify<ProjectsSliceDefaultItem>
>;
/**
* Slice variation for *Projects*
*
*/
type ProjectsSliceVariation = ProjectsSliceDefault;
/**
* Projects Shared Slice
*
* - **API ID**: `projects`
* - **Description**: `Projects`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type ProjectsSlice = prismicT.SharedSlice<
"projects",
ProjectsSliceVariation
>;
/**
* Item in Strengths → Items
*
*/
export interface StrengthsSliceDefaultItem {
/**
* icon field in *Strengths → Items*
*
* - **Field Type**: Image
* - **Placeholder**: *None*
* - **API ID Path**: strengths.items[].icon
* - **Documentation**: https://prismic.io/docs/core-concepts/image
*
*/
icon: prismicT.ImageField<never>;
/**
* title field in *Strengths → Items*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: strengths.items[].title
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
title: prismicT.KeyTextField;
/**
* description field in *Strengths → Items*
*
* - **Field Type**: Text
* - **Placeholder**: *None*
* - **API ID Path**: strengths.items[].description
* - **Documentation**: https://prismic.io/docs/core-concepts/key-text
*
*/
description: prismicT.KeyTextField;
}
/**
* Default variation for Strengths Slice
*
* - **API ID**: `default`
* - **Description**: `Default`
* - **Documentation**: https://prismic.io/docs/core-concepts/reusing-slices
*
*/
export type StrengthsSliceDefault = prismicT.SharedSliceVariation<
"default",
Record<string, never>,