@husar.ai/cli 0.1.4 → 0.1.5
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/zeus/const.js +476 -57
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +2116 -221
- package/dist/zeus/index.js +22 -4
- package/dist/zeus/index.js.map +1 -1
- package/package.json +2 -2
- package/src/zeus/const.ts +475 -58
- package/src/zeus/index.ts +2101 -197
package/dist/zeus/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Ops } from './const.js';
|
|
2
|
-
export declare const HOST = "
|
|
2
|
+
export declare const HOST = "Specify host";
|
|
3
3
|
export declare const HEADERS: {};
|
|
4
4
|
export declare const apiSubscription: (options: chainOptions) => (query: string) => {
|
|
5
5
|
ws: WebSocket;
|
|
@@ -155,7 +155,7 @@ type IsPayLoad<T> = T extends [any, infer PayLoad] ? PayLoad : T;
|
|
|
155
155
|
export type ScalarDefinition = Record<string, ScalarResolver>;
|
|
156
156
|
type IsScalar<S, SCLR extends ScalarDefinition> = S extends 'scalar' & {
|
|
157
157
|
name: infer T;
|
|
158
|
-
} ? T extends keyof SCLR ? SCLR[T]['decode'] extends (s: unknown) => unknown ? ReturnType<SCLR[T]['decode']> : unknown : unknown : S;
|
|
158
|
+
} ? T extends keyof SCLR ? SCLR[T]['decode'] extends (s: unknown) => unknown ? ReturnType<SCLR[T]['decode']> : unknown : unknown : S extends Array<infer R> ? Array<IsScalar<R, SCLR>> : S;
|
|
159
159
|
type IsArray<T, U, SCLR extends ScalarDefinition> = T extends Array<infer R> ? InputType<R, U, SCLR>[] : InputType<T, U, SCLR>;
|
|
160
160
|
type FlattenArray<T> = T extends Array<infer R> ? R : T;
|
|
161
161
|
type BaseZeusResolver = boolean | 1 | string | Variable<any, string>;
|
|
@@ -251,6 +251,7 @@ export type ScalarCoders = {
|
|
|
251
251
|
ModelNavigationCompiled?: ScalarResolver;
|
|
252
252
|
BakedIpsumData?: ScalarResolver;
|
|
253
253
|
JSON?: ScalarResolver;
|
|
254
|
+
RootParamsAdminType?: ScalarResolver;
|
|
254
255
|
ID?: ScalarResolver;
|
|
255
256
|
};
|
|
256
257
|
type ZEUS_UNIONS = never;
|
|
@@ -359,13 +360,13 @@ export type ValueTypes = {
|
|
|
359
360
|
ne?: string | undefined | null | Variable<any, string>;
|
|
360
361
|
contain?: string | undefined | null | Variable<any, string>;
|
|
361
362
|
};
|
|
363
|
+
["RootParamsAdminType"]: unknown;
|
|
362
364
|
["Shape"]: AliasType<{
|
|
363
365
|
name?: boolean | `@${string}`;
|
|
364
366
|
slug?: boolean | `@${string}`;
|
|
365
367
|
display?: boolean | `@${string}`;
|
|
366
368
|
previewFields?: boolean | `@${string}`;
|
|
367
369
|
prompt?: boolean | `@${string}`;
|
|
368
|
-
promptResponse?: ValueTypes["AiComponent"];
|
|
369
370
|
fields?: ValueTypes["CMSField"];
|
|
370
371
|
__typename?: boolean | `@${string}`;
|
|
371
372
|
}>;
|
|
@@ -376,14 +377,6 @@ export type ValueTypes = {
|
|
|
376
377
|
display?: boolean | `@${string}`;
|
|
377
378
|
__typename?: boolean | `@${string}`;
|
|
378
379
|
}>;
|
|
379
|
-
["AiComponent"]: AliasType<{
|
|
380
|
-
name?: boolean | `@${string}`;
|
|
381
|
-
htmlComponent?: boolean | `@${string}`;
|
|
382
|
-
className?: boolean | `@${string}`;
|
|
383
|
-
textContent?: boolean | `@${string}`;
|
|
384
|
-
children?: ValueTypes["AiComponent"];
|
|
385
|
-
__typename?: boolean | `@${string}`;
|
|
386
|
-
}>;
|
|
387
380
|
["FormField"]: AliasType<{
|
|
388
381
|
name?: boolean | `@${string}`;
|
|
389
382
|
display?: boolean | `@${string}`;
|
|
@@ -478,56 +471,132 @@ export type ValueTypes = {
|
|
|
478
471
|
listShapes?: ValueTypes["Shape"];
|
|
479
472
|
tailwind?: ValueTypes["TailwindConfiguration"];
|
|
480
473
|
listForms?: ValueTypes["Form"];
|
|
481
|
-
|
|
474
|
+
listPaginateddocs?: [{
|
|
482
475
|
page: ValueTypes["PageInput"] | Variable<any, string>;
|
|
483
476
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
484
477
|
search?: string | undefined | null | Variable<any, string>;
|
|
485
|
-
sort?: ValueTypes["
|
|
486
|
-
filter?: Array<ValueTypes["
|
|
487
|
-
}, ValueTypes["
|
|
488
|
-
|
|
478
|
+
sort?: ValueTypes["docsSortInput"] | undefined | null | Variable<any, string>;
|
|
479
|
+
filter?: Array<ValueTypes["docsFilterInput"] | undefined | null> | undefined | null | Variable<any, string>;
|
|
480
|
+
}, ValueTypes["docs__Connection"]];
|
|
481
|
+
onedocsBySlug?: [{
|
|
489
482
|
slug: string | Variable<any, string>;
|
|
490
483
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
491
|
-
}, ValueTypes["
|
|
492
|
-
|
|
484
|
+
}, ValueTypes["docs"]];
|
|
485
|
+
variantsdocsBySlug?: [{
|
|
493
486
|
slug: string | Variable<any, string>;
|
|
494
|
-
}, ValueTypes["
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
487
|
+
}, ValueTypes["docs"]];
|
|
488
|
+
fieldSetdocs?: boolean | `@${string}`;
|
|
489
|
+
modeldocs?: boolean | `@${string}`;
|
|
490
|
+
previewFieldsdocs?: boolean | `@${string}`;
|
|
491
|
+
fieldSetShapecta?: boolean | `@${string}`;
|
|
492
|
+
modelShapecta?: boolean | `@${string}`;
|
|
493
|
+
previewFieldsShapecta?: boolean | `@${string}`;
|
|
494
|
+
oneShapecta?: ValueTypes["Shapecta"];
|
|
495
|
+
fieldSetShapedocs_content?: boolean | `@${string}`;
|
|
496
|
+
modelShapedocs_content?: boolean | `@${string}`;
|
|
497
|
+
previewFieldsShapedocs_content?: boolean | `@${string}`;
|
|
498
|
+
oneShapedocs_content?: ValueTypes["Shapedocs_content"];
|
|
499
|
+
fieldSetShapedocs_nav?: boolean | `@${string}`;
|
|
500
|
+
modelShapedocs_nav?: boolean | `@${string}`;
|
|
501
|
+
previewFieldsShapedocs_nav?: boolean | `@${string}`;
|
|
502
|
+
oneShapedocs_nav?: ValueTypes["Shapedocs_nav"];
|
|
503
|
+
fieldSetShapefoot?: boolean | `@${string}`;
|
|
504
|
+
modelShapefoot?: boolean | `@${string}`;
|
|
505
|
+
previewFieldsShapefoot?: boolean | `@${string}`;
|
|
506
|
+
oneShapefoot?: ValueTypes["Shapefoot"];
|
|
507
|
+
fieldSetShapehero?: boolean | `@${string}`;
|
|
508
|
+
modelShapehero?: boolean | `@${string}`;
|
|
509
|
+
previewFieldsShapehero?: boolean | `@${string}`;
|
|
510
|
+
oneShapehero?: ValueTypes["Shapehero"];
|
|
511
|
+
fieldSetShapeherox?: boolean | `@${string}`;
|
|
512
|
+
modelShapeherox?: boolean | `@${string}`;
|
|
513
|
+
previewFieldsShapeherox?: boolean | `@${string}`;
|
|
514
|
+
oneShapeherox?: ValueTypes["Shapeherox"];
|
|
515
|
+
fieldSetShapelearn?: boolean | `@${string}`;
|
|
516
|
+
modelShapelearn?: boolean | `@${string}`;
|
|
517
|
+
previewFieldsShapelearn?: boolean | `@${string}`;
|
|
518
|
+
oneShapelearn?: ValueTypes["Shapelearn"];
|
|
519
|
+
fieldSetShapenav?: boolean | `@${string}`;
|
|
520
|
+
modelShapenav?: boolean | `@${string}`;
|
|
521
|
+
previewFieldsShapenav?: boolean | `@${string}`;
|
|
522
|
+
oneShapenav?: ValueTypes["Shapenav"];
|
|
523
|
+
fieldSetShapenewshape?: boolean | `@${string}`;
|
|
524
|
+
modelShapenewshape?: boolean | `@${string}`;
|
|
525
|
+
previewFieldsShapenewshape?: boolean | `@${string}`;
|
|
526
|
+
oneShapenewshape?: ValueTypes["Shapenewshape"];
|
|
527
|
+
fieldSetShapenewshapereprompt?: boolean | `@${string}`;
|
|
528
|
+
modelShapenewshapereprompt?: boolean | `@${string}`;
|
|
529
|
+
previewFieldsShapenewshapereprompt?: boolean | `@${string}`;
|
|
530
|
+
oneShapenewshapereprompt?: ValueTypes["Shapenewshapereprompt"];
|
|
531
|
+
fieldSetShapenewsletter?: boolean | `@${string}`;
|
|
532
|
+
modelShapenewsletter?: boolean | `@${string}`;
|
|
533
|
+
previewFieldsShapenewsletter?: boolean | `@${string}`;
|
|
534
|
+
oneShapenewsletter?: ValueTypes["Shapenewsletter"];
|
|
535
|
+
fieldSetShapepricing?: boolean | `@${string}`;
|
|
536
|
+
modelShapepricing?: boolean | `@${string}`;
|
|
537
|
+
previewFieldsShapepricing?: boolean | `@${string}`;
|
|
538
|
+
oneShapepricing?: ValueTypes["Shapepricing"];
|
|
539
|
+
fieldSetShapepricingv1?: boolean | `@${string}`;
|
|
540
|
+
modelShapepricingv1?: boolean | `@${string}`;
|
|
541
|
+
previewFieldsShapepricingv1?: boolean | `@${string}`;
|
|
542
|
+
oneShapepricingv1?: ValueTypes["Shapepricingv1"];
|
|
543
|
+
fieldSetShapetesta?: boolean | `@${string}`;
|
|
544
|
+
modelShapetesta?: boolean | `@${string}`;
|
|
545
|
+
previewFieldsShapetesta?: boolean | `@${string}`;
|
|
546
|
+
oneShapetesta?: ValueTypes["Shapetesta"];
|
|
547
|
+
variantsViewhomepage?: ValueTypes["Viewhomepage"];
|
|
548
|
+
fieldSetViewhomepage?: boolean | `@${string}`;
|
|
549
|
+
modelViewhomepage?: boolean | `@${string}`;
|
|
550
|
+
previewFieldsViewhomepage?: boolean | `@${string}`;
|
|
551
|
+
oneViewhomepage?: [{
|
|
500
552
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
}
|
|
505
|
-
|
|
506
|
-
|
|
553
|
+
}, ValueTypes["Viewhomepage"]];
|
|
554
|
+
variantsViewhowitworks?: ValueTypes["Viewhowitworks"];
|
|
555
|
+
fieldSetViewhowitworks?: boolean | `@${string}`;
|
|
556
|
+
modelViewhowitworks?: boolean | `@${string}`;
|
|
557
|
+
previewFieldsViewhowitworks?: boolean | `@${string}`;
|
|
558
|
+
oneViewhowitworks?: [{
|
|
507
559
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
508
|
-
}, ValueTypes["
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
560
|
+
}, ValueTypes["Viewhowitworks"]];
|
|
561
|
+
variantsFormsteps?: ValueTypes["Formsteps"];
|
|
562
|
+
fieldSetFormsteps?: boolean | `@${string}`;
|
|
563
|
+
modelFormsteps?: boolean | `@${string}`;
|
|
564
|
+
previewFieldsFormsteps?: boolean | `@${string}`;
|
|
565
|
+
oneFormsteps?: [{
|
|
566
|
+
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
567
|
+
}, ValueTypes["Formsteps"]];
|
|
568
|
+
variantsFormtest?: ValueTypes["Formtest"];
|
|
569
|
+
fieldSetFormtest?: boolean | `@${string}`;
|
|
570
|
+
modelFormtest?: boolean | `@${string}`;
|
|
571
|
+
previewFieldsFormtest?: boolean | `@${string}`;
|
|
572
|
+
oneFormtest?: [{
|
|
573
|
+
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
574
|
+
}, ValueTypes["Formtest"]];
|
|
575
|
+
__typename?: boolean | `@${string}`;
|
|
576
|
+
}>;
|
|
577
|
+
["RootParamsType"]: AliasType<{
|
|
578
|
+
_version?: boolean | `@${string}`;
|
|
579
|
+
locale?: boolean | `@${string}`;
|
|
519
580
|
__typename?: boolean | `@${string}`;
|
|
520
581
|
}>;
|
|
521
582
|
["ModelEnum"]: ModelEnum;
|
|
583
|
+
["ViewEnum"]: ViewEnum;
|
|
522
584
|
["ShapeEnum"]: ShapeEnum;
|
|
523
|
-
["
|
|
524
|
-
items?: ValueTypes["
|
|
585
|
+
["docs__Connection"]: AliasType<{
|
|
586
|
+
items?: ValueTypes["docs"];
|
|
525
587
|
pageInfo?: ValueTypes["PageInfo"];
|
|
526
588
|
__typename?: boolean | `@${string}`;
|
|
527
589
|
}>;
|
|
528
|
-
["
|
|
590
|
+
["docs"]: AliasType<{
|
|
529
591
|
_version?: ValueTypes["VersionField"];
|
|
592
|
+
title?: boolean | `@${string}`;
|
|
593
|
+
seotitle?: boolean | `@${string}`;
|
|
594
|
+
metadesc?: boolean | `@${string}`;
|
|
595
|
+
sortid?: boolean | `@${string}`;
|
|
596
|
+
main_category?: boolean | `@${string}`;
|
|
530
597
|
content?: boolean | `@${string}`;
|
|
598
|
+
video?: ValueTypes["VideoField"];
|
|
599
|
+
locale?: boolean | `@${string}`;
|
|
531
600
|
slug?: boolean | `@${string}`;
|
|
532
601
|
_id?: boolean | `@${string}`;
|
|
533
602
|
createdAt?: boolean | `@${string}`;
|
|
@@ -536,16 +605,408 @@ export type ValueTypes = {
|
|
|
536
605
|
json_ld?: boolean | `@${string}`;
|
|
537
606
|
__typename?: boolean | `@${string}`;
|
|
538
607
|
}>;
|
|
539
|
-
["
|
|
540
|
-
|
|
541
|
-
|
|
608
|
+
["Viewhomepage"]: AliasType<{
|
|
609
|
+
_version?: ValueTypes["VersionField"];
|
|
610
|
+
nav?: ValueTypes["Shapenav"];
|
|
611
|
+
main?: ValueTypes["Shapehero"];
|
|
612
|
+
hero?: ValueTypes["Shapeherox"];
|
|
613
|
+
learn?: ValueTypes["Shapelearn"];
|
|
614
|
+
pricing?: ValueTypes["Shapepricingv1"];
|
|
615
|
+
footer?: ValueTypes["Shapefoot"];
|
|
616
|
+
locale?: boolean | `@${string}`;
|
|
617
|
+
slug?: boolean | `@${string}`;
|
|
618
|
+
_id?: boolean | `@${string}`;
|
|
619
|
+
createdAt?: boolean | `@${string}`;
|
|
620
|
+
updatedAt?: boolean | `@${string}`;
|
|
621
|
+
draft_version?: boolean | `@${string}`;
|
|
622
|
+
json_ld?: boolean | `@${string}`;
|
|
542
623
|
__typename?: boolean | `@${string}`;
|
|
543
624
|
}>;
|
|
544
|
-
["
|
|
545
|
-
_version?: ValueTypes["VersionField"];
|
|
625
|
+
["ViewhowitworksFeature_control"]: AliasType<{
|
|
546
626
|
title?: boolean | `@${string}`;
|
|
627
|
+
description?: boolean | `@${string}`;
|
|
547
628
|
image?: ValueTypes["ImageField"];
|
|
629
|
+
__typename?: boolean | `@${string}`;
|
|
630
|
+
}>;
|
|
631
|
+
["Viewhowitworks"]: AliasType<{
|
|
632
|
+
_version?: ValueTypes["VersionField"];
|
|
633
|
+
title?: boolean | `@${string}`;
|
|
634
|
+
feature_control?: ValueTypes["ViewhowitworksFeature_control"];
|
|
635
|
+
locale?: boolean | `@${string}`;
|
|
636
|
+
slug?: boolean | `@${string}`;
|
|
637
|
+
_id?: boolean | `@${string}`;
|
|
638
|
+
createdAt?: boolean | `@${string}`;
|
|
639
|
+
updatedAt?: boolean | `@${string}`;
|
|
640
|
+
draft_version?: boolean | `@${string}`;
|
|
641
|
+
json_ld?: boolean | `@${string}`;
|
|
642
|
+
__typename?: boolean | `@${string}`;
|
|
643
|
+
}>;
|
|
644
|
+
["ShapectaCta_sectionCta_container"]: AliasType<{
|
|
645
|
+
cta_heading?: boolean | `@${string}`;
|
|
646
|
+
cta_subtitle?: boolean | `@${string}`;
|
|
647
|
+
cta_button?: boolean | `@${string}`;
|
|
648
|
+
__typename?: boolean | `@${string}`;
|
|
649
|
+
}>;
|
|
650
|
+
["ShapectaCta_section"]: AliasType<{
|
|
651
|
+
cta_container?: ValueTypes["ShapectaCta_sectionCta_container"];
|
|
652
|
+
__typename?: boolean | `@${string}`;
|
|
653
|
+
}>;
|
|
654
|
+
["Shapecta"]: AliasType<{
|
|
655
|
+
cta_section?: ValueTypes["ShapectaCta_section"];
|
|
656
|
+
_id?: boolean | `@${string}`;
|
|
657
|
+
createdAt?: boolean | `@${string}`;
|
|
658
|
+
updatedAt?: boolean | `@${string}`;
|
|
659
|
+
__typename?: boolean | `@${string}`;
|
|
660
|
+
}>;
|
|
661
|
+
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: AliasType<{
|
|
548
662
|
content?: boolean | `@${string}`;
|
|
663
|
+
__typename?: boolean | `@${string}`;
|
|
664
|
+
}>;
|
|
665
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"]: AliasType<{
|
|
666
|
+
scrollspy_title?: boolean | `@${string}`;
|
|
667
|
+
scrollspy_list?: boolean | `@${string}`;
|
|
668
|
+
__typename?: boolean | `@${string}`;
|
|
669
|
+
}>;
|
|
670
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspy"]: AliasType<{
|
|
671
|
+
scrollspy_container?: ValueTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"];
|
|
672
|
+
__typename?: boolean | `@${string}`;
|
|
673
|
+
}>;
|
|
674
|
+
["Shapedocs_contentDocumentation_pageContent_container"]: AliasType<{
|
|
675
|
+
doc_content?: ValueTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"];
|
|
676
|
+
scrollspy?: ValueTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"];
|
|
677
|
+
__typename?: boolean | `@${string}`;
|
|
678
|
+
}>;
|
|
679
|
+
["Shapedocs_contentDocumentation_page"]: AliasType<{
|
|
680
|
+
content_container?: ValueTypes["Shapedocs_contentDocumentation_pageContent_container"];
|
|
681
|
+
__typename?: boolean | `@${string}`;
|
|
682
|
+
}>;
|
|
683
|
+
["Shapedocs_content"]: AliasType<{
|
|
684
|
+
documentation_page?: ValueTypes["Shapedocs_contentDocumentation_page"];
|
|
685
|
+
_id?: boolean | `@${string}`;
|
|
686
|
+
createdAt?: boolean | `@${string}`;
|
|
687
|
+
updatedAt?: boolean | `@${string}`;
|
|
688
|
+
__typename?: boolean | `@${string}`;
|
|
689
|
+
}>;
|
|
690
|
+
["Shapedocs_navMainListChildrenCategory"]: AliasType<{
|
|
691
|
+
name?: boolean | `@${string}`;
|
|
692
|
+
link?: boolean | `@${string}`;
|
|
693
|
+
__typename?: boolean | `@${string}`;
|
|
694
|
+
}>;
|
|
695
|
+
["Shapedocs_navMainListChildren"]: AliasType<{
|
|
696
|
+
category?: ValueTypes["Shapedocs_navMainListChildrenCategory"];
|
|
697
|
+
__typename?: boolean | `@${string}`;
|
|
698
|
+
}>;
|
|
699
|
+
["Shapedocs_navMainList"]: AliasType<{
|
|
700
|
+
title?: boolean | `@${string}`;
|
|
701
|
+
children?: ValueTypes["Shapedocs_navMainListChildren"];
|
|
702
|
+
__typename?: boolean | `@${string}`;
|
|
703
|
+
}>;
|
|
704
|
+
["Shapedocs_navMain"]: AliasType<{
|
|
705
|
+
list?: ValueTypes["Shapedocs_navMainList"];
|
|
706
|
+
__typename?: boolean | `@${string}`;
|
|
707
|
+
}>;
|
|
708
|
+
["Shapedocs_nav"]: AliasType<{
|
|
709
|
+
main?: ValueTypes["Shapedocs_navMain"];
|
|
710
|
+
_id?: boolean | `@${string}`;
|
|
711
|
+
createdAt?: boolean | `@${string}`;
|
|
712
|
+
updatedAt?: boolean | `@${string}`;
|
|
713
|
+
__typename?: boolean | `@${string}`;
|
|
714
|
+
}>;
|
|
715
|
+
["ShapefootFooterFooter_containerFooter_links"]: AliasType<{
|
|
716
|
+
privacy_policy?: boolean | `@${string}`;
|
|
717
|
+
terms_of_service?: boolean | `@${string}`;
|
|
718
|
+
contact_us?: boolean | `@${string}`;
|
|
719
|
+
__typename?: boolean | `@${string}`;
|
|
720
|
+
}>;
|
|
721
|
+
["ShapefootFooterFooter_container"]: AliasType<{
|
|
722
|
+
footer_logo?: boolean | `@${string}`;
|
|
723
|
+
footer_links?: ValueTypes["ShapefootFooterFooter_containerFooter_links"];
|
|
724
|
+
footer_copy?: boolean | `@${string}`;
|
|
725
|
+
__typename?: boolean | `@${string}`;
|
|
726
|
+
}>;
|
|
727
|
+
["ShapefootFooter"]: AliasType<{
|
|
728
|
+
footer_container?: ValueTypes["ShapefootFooterFooter_container"];
|
|
729
|
+
__typename?: boolean | `@${string}`;
|
|
730
|
+
}>;
|
|
731
|
+
["Shapefoot"]: AliasType<{
|
|
732
|
+
footer?: ValueTypes["ShapefootFooter"];
|
|
733
|
+
_id?: boolean | `@${string}`;
|
|
734
|
+
createdAt?: boolean | `@${string}`;
|
|
735
|
+
updatedAt?: boolean | `@${string}`;
|
|
736
|
+
__typename?: boolean | `@${string}`;
|
|
737
|
+
}>;
|
|
738
|
+
["ShapeheroHero_component"]: AliasType<{
|
|
739
|
+
logoplace?: boolean | `@${string}`;
|
|
740
|
+
logo?: boolean | `@${string}`;
|
|
741
|
+
slogan?: boolean | `@${string}`;
|
|
742
|
+
subslogan?: boolean | `@${string}`;
|
|
743
|
+
__typename?: boolean | `@${string}`;
|
|
744
|
+
}>;
|
|
745
|
+
["Shapehero"]: AliasType<{
|
|
746
|
+
hero_component?: ValueTypes["ShapeheroHero_component"];
|
|
747
|
+
_id?: boolean | `@${string}`;
|
|
748
|
+
createdAt?: boolean | `@${string}`;
|
|
749
|
+
updatedAt?: boolean | `@${string}`;
|
|
750
|
+
__typename?: boolean | `@${string}`;
|
|
751
|
+
}>;
|
|
752
|
+
["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"]: AliasType<{
|
|
753
|
+
feature?: boolean | `@${string}`;
|
|
754
|
+
__typename?: boolean | `@${string}`;
|
|
755
|
+
}>;
|
|
756
|
+
["ShapeheroxHero_sectionHero_containerText_wrapper"]: AliasType<{
|
|
757
|
+
title?: boolean | `@${string}`;
|
|
758
|
+
description?: boolean | `@${string}`;
|
|
759
|
+
features?: ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"];
|
|
760
|
+
call_to_action?: boolean | `@${string}`;
|
|
761
|
+
__typename?: boolean | `@${string}`;
|
|
762
|
+
}>;
|
|
763
|
+
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: AliasType<{
|
|
764
|
+
hero_image?: ValueTypes["ImageField"];
|
|
765
|
+
__typename?: boolean | `@${string}`;
|
|
766
|
+
}>;
|
|
767
|
+
["ShapeheroxHero_sectionHero_container"]: AliasType<{
|
|
768
|
+
text_wrapper?: ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapper"];
|
|
769
|
+
image_wrapper?: ValueTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"];
|
|
770
|
+
__typename?: boolean | `@${string}`;
|
|
771
|
+
}>;
|
|
772
|
+
["ShapeheroxHero_section"]: AliasType<{
|
|
773
|
+
hero_container?: ValueTypes["ShapeheroxHero_sectionHero_container"];
|
|
774
|
+
__typename?: boolean | `@${string}`;
|
|
775
|
+
}>;
|
|
776
|
+
["Shapeherox"]: AliasType<{
|
|
777
|
+
hero_section?: ValueTypes["ShapeheroxHero_section"];
|
|
778
|
+
_id?: boolean | `@${string}`;
|
|
779
|
+
createdAt?: boolean | `@${string}`;
|
|
780
|
+
updatedAt?: boolean | `@${string}`;
|
|
781
|
+
__typename?: boolean | `@${string}`;
|
|
782
|
+
}>;
|
|
783
|
+
["ShapelearnLearning_sectionContainer"]: AliasType<{
|
|
784
|
+
image?: ValueTypes["ImageField"];
|
|
785
|
+
heading?: boolean | `@${string}`;
|
|
786
|
+
description?: boolean | `@${string}`;
|
|
787
|
+
cta_button?: boolean | `@${string}`;
|
|
788
|
+
__typename?: boolean | `@${string}`;
|
|
789
|
+
}>;
|
|
790
|
+
["ShapelearnLearning_section"]: AliasType<{
|
|
791
|
+
container?: ValueTypes["ShapelearnLearning_sectionContainer"];
|
|
792
|
+
__typename?: boolean | `@${string}`;
|
|
793
|
+
}>;
|
|
794
|
+
["Shapelearn"]: AliasType<{
|
|
795
|
+
learning_section?: ValueTypes["ShapelearnLearning_section"];
|
|
796
|
+
_id?: boolean | `@${string}`;
|
|
797
|
+
createdAt?: boolean | `@${string}`;
|
|
798
|
+
updatedAt?: boolean | `@${string}`;
|
|
799
|
+
__typename?: boolean | `@${string}`;
|
|
800
|
+
}>;
|
|
801
|
+
["ShapenavNavigationNavigation_linksLink"]: AliasType<{
|
|
802
|
+
display?: boolean | `@${string}`;
|
|
803
|
+
href?: boolean | `@${string}`;
|
|
804
|
+
__typename?: boolean | `@${string}`;
|
|
805
|
+
}>;
|
|
806
|
+
["ShapenavNavigationNavigation_links"]: AliasType<{
|
|
807
|
+
link?: ValueTypes["ShapenavNavigationNavigation_linksLink"];
|
|
808
|
+
__typename?: boolean | `@${string}`;
|
|
809
|
+
}>;
|
|
810
|
+
["ShapenavNavigation"]: AliasType<{
|
|
811
|
+
logo?: boolean | `@${string}`;
|
|
812
|
+
navigation_links?: ValueTypes["ShapenavNavigationNavigation_links"];
|
|
813
|
+
__typename?: boolean | `@${string}`;
|
|
814
|
+
}>;
|
|
815
|
+
["Shapenav"]: AliasType<{
|
|
816
|
+
navigation?: ValueTypes["ShapenavNavigation"];
|
|
817
|
+
_id?: boolean | `@${string}`;
|
|
818
|
+
createdAt?: boolean | `@${string}`;
|
|
819
|
+
updatedAt?: boolean | `@${string}`;
|
|
820
|
+
__typename?: boolean | `@${string}`;
|
|
821
|
+
}>;
|
|
822
|
+
["ShapenewshapeBackgroundContent"]: AliasType<{
|
|
823
|
+
badge?: boolean | `@${string}`;
|
|
824
|
+
headline?: boolean | `@${string}`;
|
|
825
|
+
subheadline?: boolean | `@${string}`;
|
|
826
|
+
cta_label?: boolean | `@${string}`;
|
|
827
|
+
cta_href?: boolean | `@${string}`;
|
|
828
|
+
__typename?: boolean | `@${string}`;
|
|
829
|
+
}>;
|
|
830
|
+
["ShapenewshapeBackground"]: AliasType<{
|
|
831
|
+
overlay_gradient?: boolean | `@${string}`;
|
|
832
|
+
content?: ValueTypes["ShapenewshapeBackgroundContent"];
|
|
833
|
+
hero_image?: ValueTypes["ImageField"];
|
|
834
|
+
__typename?: boolean | `@${string}`;
|
|
835
|
+
}>;
|
|
836
|
+
["Shapenewshape"]: AliasType<{
|
|
837
|
+
background?: ValueTypes["ShapenewshapeBackground"];
|
|
838
|
+
_id?: boolean | `@${string}`;
|
|
839
|
+
createdAt?: boolean | `@${string}`;
|
|
840
|
+
updatedAt?: boolean | `@${string}`;
|
|
841
|
+
__typename?: boolean | `@${string}`;
|
|
842
|
+
}>;
|
|
843
|
+
["Shapenewshapereprompt"]: AliasType<{
|
|
844
|
+
_id?: boolean | `@${string}`;
|
|
845
|
+
createdAt?: boolean | `@${string}`;
|
|
846
|
+
updatedAt?: boolean | `@${string}`;
|
|
847
|
+
__typename?: boolean | `@${string}`;
|
|
848
|
+
}>;
|
|
849
|
+
["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"]: AliasType<{
|
|
850
|
+
email_input?: boolean | `@${string}`;
|
|
851
|
+
subscribe_button?: boolean | `@${string}`;
|
|
852
|
+
__typename?: boolean | `@${string}`;
|
|
853
|
+
}>;
|
|
854
|
+
["ShapenewsletterNewsletter_sectionNewsletter_container"]: AliasType<{
|
|
855
|
+
newsletter_heading?: boolean | `@${string}`;
|
|
856
|
+
newsletter_description?: boolean | `@${string}`;
|
|
857
|
+
newsletter_form?: ValueTypes["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"];
|
|
858
|
+
__typename?: boolean | `@${string}`;
|
|
859
|
+
}>;
|
|
860
|
+
["ShapenewsletterNewsletter_section"]: AliasType<{
|
|
861
|
+
newsletter_container?: ValueTypes["ShapenewsletterNewsletter_sectionNewsletter_container"];
|
|
862
|
+
__typename?: boolean | `@${string}`;
|
|
863
|
+
}>;
|
|
864
|
+
["Shapenewsletter"]: AliasType<{
|
|
865
|
+
newsletter_section?: ValueTypes["ShapenewsletterNewsletter_section"];
|
|
866
|
+
_id?: boolean | `@${string}`;
|
|
867
|
+
createdAt?: boolean | `@${string}`;
|
|
868
|
+
updatedAt?: boolean | `@${string}`;
|
|
869
|
+
__typename?: boolean | `@${string}`;
|
|
870
|
+
}>;
|
|
871
|
+
["ShapepricingPricing_sectionPricing_header"]: AliasType<{
|
|
872
|
+
title?: boolean | `@${string}`;
|
|
873
|
+
sub_title?: boolean | `@${string}`;
|
|
874
|
+
__typename?: boolean | `@${string}`;
|
|
875
|
+
}>;
|
|
876
|
+
["ShapepricingPricing_sectionPricing_gridStarter_planPlan_features"]: AliasType<{
|
|
877
|
+
feat?: boolean | `@${string}`;
|
|
878
|
+
__typename?: boolean | `@${string}`;
|
|
879
|
+
}>;
|
|
880
|
+
["ShapepricingPricing_sectionPricing_gridStarter_plan"]: AliasType<{
|
|
881
|
+
plan_title?: boolean | `@${string}`;
|
|
882
|
+
plan_price?: boolean | `@${string}`;
|
|
883
|
+
plan_features?: ValueTypes["ShapepricingPricing_sectionPricing_gridStarter_planPlan_features"];
|
|
884
|
+
plan_cta?: boolean | `@${string}`;
|
|
885
|
+
__typename?: boolean | `@${string}`;
|
|
886
|
+
}>;
|
|
887
|
+
["ShapepricingPricing_sectionPricing_grid"]: AliasType<{
|
|
888
|
+
starter_plan?: ValueTypes["ShapepricingPricing_sectionPricing_gridStarter_plan"];
|
|
889
|
+
__typename?: boolean | `@${string}`;
|
|
890
|
+
}>;
|
|
891
|
+
["ShapepricingPricing_section"]: AliasType<{
|
|
892
|
+
pricing_header?: ValueTypes["ShapepricingPricing_sectionPricing_header"];
|
|
893
|
+
pricing_grid?: ValueTypes["ShapepricingPricing_sectionPricing_grid"];
|
|
894
|
+
__typename?: boolean | `@${string}`;
|
|
895
|
+
}>;
|
|
896
|
+
["Shapepricing"]: AliasType<{
|
|
897
|
+
pricing_section?: ValueTypes["ShapepricingPricing_section"];
|
|
898
|
+
_id?: boolean | `@${string}`;
|
|
899
|
+
createdAt?: boolean | `@${string}`;
|
|
900
|
+
updatedAt?: boolean | `@${string}`;
|
|
901
|
+
__typename?: boolean | `@${string}`;
|
|
902
|
+
}>;
|
|
903
|
+
["Shapepricingv1Pricing_sectionHeader_wrapper"]: AliasType<{
|
|
904
|
+
title?: boolean | `@${string}`;
|
|
905
|
+
description?: boolean | `@${string}`;
|
|
906
|
+
__typename?: boolean | `@${string}`;
|
|
907
|
+
}>;
|
|
908
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"]: AliasType<{
|
|
909
|
+
feature?: boolean | `@${string}`;
|
|
910
|
+
__typename?: boolean | `@${string}`;
|
|
911
|
+
}>;
|
|
912
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_plan"]: AliasType<{
|
|
913
|
+
plan_name?: boolean | `@${string}`;
|
|
914
|
+
price?: boolean | `@${string}`;
|
|
915
|
+
plan_description?: boolean | `@${string}`;
|
|
916
|
+
feature_list?: ValueTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"];
|
|
917
|
+
cta?: boolean | `@${string}`;
|
|
918
|
+
__typename?: boolean | `@${string}`;
|
|
919
|
+
}>;
|
|
920
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: AliasType<{
|
|
921
|
+
feature?: boolean | `@${string}`;
|
|
922
|
+
__typename?: boolean | `@${string}`;
|
|
923
|
+
}>;
|
|
924
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: AliasType<{
|
|
925
|
+
plan_name?: boolean | `@${string}`;
|
|
926
|
+
price?: boolean | `@${string}`;
|
|
927
|
+
plan_description?: boolean | `@${string}`;
|
|
928
|
+
feature_list?: ValueTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"];
|
|
929
|
+
cta?: boolean | `@${string}`;
|
|
930
|
+
__typename?: boolean | `@${string}`;
|
|
931
|
+
}>;
|
|
932
|
+
["Shapepricingv1Pricing_sectionPlans_grid"]: AliasType<{
|
|
933
|
+
free_plan?: ValueTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"];
|
|
934
|
+
paid_plan?: ValueTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"];
|
|
935
|
+
__typename?: boolean | `@${string}`;
|
|
936
|
+
}>;
|
|
937
|
+
["Shapepricingv1Pricing_section"]: AliasType<{
|
|
938
|
+
header_wrapper?: ValueTypes["Shapepricingv1Pricing_sectionHeader_wrapper"];
|
|
939
|
+
plans_grid?: ValueTypes["Shapepricingv1Pricing_sectionPlans_grid"];
|
|
940
|
+
__typename?: boolean | `@${string}`;
|
|
941
|
+
}>;
|
|
942
|
+
["Shapepricingv1"]: AliasType<{
|
|
943
|
+
pricing_section?: ValueTypes["Shapepricingv1Pricing_section"];
|
|
944
|
+
_id?: boolean | `@${string}`;
|
|
945
|
+
createdAt?: boolean | `@${string}`;
|
|
946
|
+
updatedAt?: boolean | `@${string}`;
|
|
947
|
+
__typename?: boolean | `@${string}`;
|
|
948
|
+
}>;
|
|
949
|
+
["ShapetestaRootHeaderNav"]: AliasType<{
|
|
950
|
+
logo?: boolean | `@${string}`;
|
|
951
|
+
cta?: boolean | `@${string}`;
|
|
952
|
+
__typename?: boolean | `@${string}`;
|
|
953
|
+
}>;
|
|
954
|
+
["ShapetestaRootHeader"]: AliasType<{
|
|
955
|
+
nav?: ValueTypes["ShapetestaRootHeaderNav"];
|
|
956
|
+
__typename?: boolean | `@${string}`;
|
|
957
|
+
}>;
|
|
958
|
+
["ShapetestaRootMainHero_section"]: AliasType<{
|
|
959
|
+
hero_title?: boolean | `@${string}`;
|
|
960
|
+
hero_text?: boolean | `@${string}`;
|
|
961
|
+
hero_button?: boolean | `@${string}`;
|
|
962
|
+
__typename?: boolean | `@${string}`;
|
|
963
|
+
}>;
|
|
964
|
+
["ShapetestaRootMainFeatures_section"]: AliasType<{
|
|
965
|
+
features_title?: boolean | `@${string}`;
|
|
966
|
+
features_text?: boolean | `@${string}`;
|
|
967
|
+
__typename?: boolean | `@${string}`;
|
|
968
|
+
}>;
|
|
969
|
+
["ShapetestaRootMain"]: AliasType<{
|
|
970
|
+
hero_section?: ValueTypes["ShapetestaRootMainHero_section"];
|
|
971
|
+
features_section?: ValueTypes["ShapetestaRootMainFeatures_section"];
|
|
972
|
+
__typename?: boolean | `@${string}`;
|
|
973
|
+
}>;
|
|
974
|
+
["ShapetestaRoot"]: AliasType<{
|
|
975
|
+
header?: ValueTypes["ShapetestaRootHeader"];
|
|
976
|
+
main?: ValueTypes["ShapetestaRootMain"];
|
|
977
|
+
__typename?: boolean | `@${string}`;
|
|
978
|
+
}>;
|
|
979
|
+
["Shapetesta"]: AliasType<{
|
|
980
|
+
root?: ValueTypes["ShapetestaRoot"];
|
|
981
|
+
_id?: boolean | `@${string}`;
|
|
982
|
+
createdAt?: boolean | `@${string}`;
|
|
983
|
+
updatedAt?: boolean | `@${string}`;
|
|
984
|
+
__typename?: boolean | `@${string}`;
|
|
985
|
+
}>;
|
|
986
|
+
["FormstepsStep1"]: AliasType<{
|
|
987
|
+
_mocks?: boolean | `@${string}`;
|
|
988
|
+
imie?: ValueTypes["FormTextField"];
|
|
989
|
+
source?: ValueTypes["FormRadioTextField"];
|
|
990
|
+
__typename?: boolean | `@${string}`;
|
|
991
|
+
}>;
|
|
992
|
+
["FormstepsStep2"]: AliasType<{
|
|
993
|
+
_mocks?: boolean | `@${string}`;
|
|
994
|
+
nazwisko?: ValueTypes["FormTextField"];
|
|
995
|
+
__typename?: boolean | `@${string}`;
|
|
996
|
+
}>;
|
|
997
|
+
["FormstepsStep3"]: AliasType<{
|
|
998
|
+
_mocks?: boolean | `@${string}`;
|
|
999
|
+
email?: ValueTypes["FormTextField"];
|
|
1000
|
+
koniec?: ValueTypes["FormSubmitField"];
|
|
1001
|
+
__typename?: boolean | `@${string}`;
|
|
1002
|
+
}>;
|
|
1003
|
+
["Formsteps"]: AliasType<{
|
|
1004
|
+
_mocks?: boolean | `@${string}`;
|
|
1005
|
+
_version?: ValueTypes["VersionField"];
|
|
1006
|
+
step1?: ValueTypes["FormstepsStep1"];
|
|
1007
|
+
step2?: ValueTypes["FormstepsStep2"];
|
|
1008
|
+
step3?: ValueTypes["FormstepsStep3"];
|
|
1009
|
+
locale?: boolean | `@${string}`;
|
|
549
1010
|
slug?: boolean | `@${string}`;
|
|
550
1011
|
_id?: boolean | `@${string}`;
|
|
551
1012
|
createdAt?: boolean | `@${string}`;
|
|
@@ -554,30 +1015,55 @@ export type ValueTypes = {
|
|
|
554
1015
|
json_ld?: boolean | `@${string}`;
|
|
555
1016
|
__typename?: boolean | `@${string}`;
|
|
556
1017
|
}>;
|
|
557
|
-
["
|
|
1018
|
+
["FormtestWindowBasics"]: AliasType<{
|
|
1019
|
+
_mocks?: boolean | `@${string}`;
|
|
1020
|
+
type?: ValueTypes["FormRadioTextField"];
|
|
1021
|
+
__typename?: boolean | `@${string}`;
|
|
1022
|
+
}>;
|
|
1023
|
+
["FormtestWindowTechincals"]: AliasType<{
|
|
1024
|
+
_mocks?: boolean | `@${string}`;
|
|
1025
|
+
width?: ValueTypes["FormNumberField"];
|
|
1026
|
+
height?: ValueTypes["FormNumberField"];
|
|
1027
|
+
confirm?: ValueTypes["FormRouteField"];
|
|
1028
|
+
__typename?: boolean | `@${string}`;
|
|
1029
|
+
}>;
|
|
1030
|
+
["FormtestWindow"]: AliasType<{
|
|
1031
|
+
_mocks?: boolean | `@${string}`;
|
|
1032
|
+
basics?: ValueTypes["FormtestWindowBasics"];
|
|
1033
|
+
techincals?: ValueTypes["FormtestWindowTechincals"];
|
|
1034
|
+
__typename?: boolean | `@${string}`;
|
|
1035
|
+
}>;
|
|
1036
|
+
["FormtestHome"]: AliasType<{
|
|
1037
|
+
_mocks?: boolean | `@${string}`;
|
|
1038
|
+
window?: ValueTypes["FormTextField"];
|
|
1039
|
+
add?: ValueTypes["FormRouteField"];
|
|
1040
|
+
__typename?: boolean | `@${string}`;
|
|
1041
|
+
}>;
|
|
1042
|
+
["Formtest"]: AliasType<{
|
|
1043
|
+
_mocks?: boolean | `@${string}`;
|
|
1044
|
+
_version?: ValueTypes["VersionField"];
|
|
1045
|
+
window?: ValueTypes["FormtestWindow"];
|
|
1046
|
+
home?: ValueTypes["FormtestHome"];
|
|
1047
|
+
locale?: boolean | `@${string}`;
|
|
1048
|
+
slug?: boolean | `@${string}`;
|
|
558
1049
|
_id?: boolean | `@${string}`;
|
|
559
1050
|
createdAt?: boolean | `@${string}`;
|
|
560
1051
|
updatedAt?: boolean | `@${string}`;
|
|
1052
|
+
draft_version?: boolean | `@${string}`;
|
|
1053
|
+
json_ld?: boolean | `@${string}`;
|
|
561
1054
|
__typename?: boolean | `@${string}`;
|
|
562
1055
|
}>;
|
|
563
1056
|
["RootParamsInput"]: {
|
|
564
1057
|
_version?: string | undefined | null | Variable<any, string>;
|
|
1058
|
+
locale?: string | undefined | null | Variable<any, string>;
|
|
565
1059
|
};
|
|
566
1060
|
["RootParamsEnum"]: RootParamsEnum;
|
|
567
|
-
["
|
|
568
|
-
slug?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
569
|
-
createdAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
570
|
-
updatedAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
571
|
-
};
|
|
572
|
-
["postSortInput"]: {
|
|
1061
|
+
["docsSortInput"]: {
|
|
573
1062
|
slug?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
574
1063
|
createdAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
575
1064
|
updatedAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
576
1065
|
};
|
|
577
|
-
["
|
|
578
|
-
slug?: ValueTypes["FilterInputString"] | undefined | null | Variable<any, string>;
|
|
579
|
-
};
|
|
580
|
-
["postFilterInput"]: {
|
|
1066
|
+
["docsFilterInput"]: {
|
|
581
1067
|
slug?: ValueTypes["FilterInputString"] | undefined | null | Variable<any, string>;
|
|
582
1068
|
};
|
|
583
1069
|
["ID"]: unknown;
|
|
@@ -687,13 +1173,13 @@ export type ResolverInputTypes = {
|
|
|
687
1173
|
ne?: string | undefined | null;
|
|
688
1174
|
contain?: string | undefined | null;
|
|
689
1175
|
};
|
|
1176
|
+
["RootParamsAdminType"]: unknown;
|
|
690
1177
|
["Shape"]: AliasType<{
|
|
691
1178
|
name?: boolean | `@${string}`;
|
|
692
1179
|
slug?: boolean | `@${string}`;
|
|
693
1180
|
display?: boolean | `@${string}`;
|
|
694
1181
|
previewFields?: boolean | `@${string}`;
|
|
695
1182
|
prompt?: boolean | `@${string}`;
|
|
696
|
-
promptResponse?: ResolverInputTypes["AiComponent"];
|
|
697
1183
|
fields?: ResolverInputTypes["CMSField"];
|
|
698
1184
|
__typename?: boolean | `@${string}`;
|
|
699
1185
|
}>;
|
|
@@ -704,14 +1190,6 @@ export type ResolverInputTypes = {
|
|
|
704
1190
|
display?: boolean | `@${string}`;
|
|
705
1191
|
__typename?: boolean | `@${string}`;
|
|
706
1192
|
}>;
|
|
707
|
-
["AiComponent"]: AliasType<{
|
|
708
|
-
name?: boolean | `@${string}`;
|
|
709
|
-
htmlComponent?: boolean | `@${string}`;
|
|
710
|
-
className?: boolean | `@${string}`;
|
|
711
|
-
textContent?: boolean | `@${string}`;
|
|
712
|
-
children?: ResolverInputTypes["AiComponent"];
|
|
713
|
-
__typename?: boolean | `@${string}`;
|
|
714
|
-
}>;
|
|
715
1193
|
["FormField"]: AliasType<{
|
|
716
1194
|
name?: boolean | `@${string}`;
|
|
717
1195
|
display?: boolean | `@${string}`;
|
|
@@ -806,56 +1284,132 @@ export type ResolverInputTypes = {
|
|
|
806
1284
|
listShapes?: ResolverInputTypes["Shape"];
|
|
807
1285
|
tailwind?: ResolverInputTypes["TailwindConfiguration"];
|
|
808
1286
|
listForms?: ResolverInputTypes["Form"];
|
|
809
|
-
|
|
1287
|
+
listPaginateddocs?: [{
|
|
810
1288
|
page: ResolverInputTypes["PageInput"];
|
|
811
1289
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
812
1290
|
search?: string | undefined | null;
|
|
813
|
-
sort?: ResolverInputTypes["
|
|
814
|
-
filter?: Array<ResolverInputTypes["
|
|
815
|
-
}, ResolverInputTypes["
|
|
816
|
-
|
|
1291
|
+
sort?: ResolverInputTypes["docsSortInput"] | undefined | null;
|
|
1292
|
+
filter?: Array<ResolverInputTypes["docsFilterInput"] | undefined | null> | undefined | null;
|
|
1293
|
+
}, ResolverInputTypes["docs__Connection"]];
|
|
1294
|
+
onedocsBySlug?: [{
|
|
817
1295
|
slug: string;
|
|
818
1296
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
819
|
-
}, ResolverInputTypes["
|
|
820
|
-
|
|
1297
|
+
}, ResolverInputTypes["docs"]];
|
|
1298
|
+
variantsdocsBySlug?: [{
|
|
821
1299
|
slug: string;
|
|
822
|
-
}, ResolverInputTypes["
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
1300
|
+
}, ResolverInputTypes["docs"]];
|
|
1301
|
+
fieldSetdocs?: boolean | `@${string}`;
|
|
1302
|
+
modeldocs?: boolean | `@${string}`;
|
|
1303
|
+
previewFieldsdocs?: boolean | `@${string}`;
|
|
1304
|
+
fieldSetShapecta?: boolean | `@${string}`;
|
|
1305
|
+
modelShapecta?: boolean | `@${string}`;
|
|
1306
|
+
previewFieldsShapecta?: boolean | `@${string}`;
|
|
1307
|
+
oneShapecta?: ResolverInputTypes["Shapecta"];
|
|
1308
|
+
fieldSetShapedocs_content?: boolean | `@${string}`;
|
|
1309
|
+
modelShapedocs_content?: boolean | `@${string}`;
|
|
1310
|
+
previewFieldsShapedocs_content?: boolean | `@${string}`;
|
|
1311
|
+
oneShapedocs_content?: ResolverInputTypes["Shapedocs_content"];
|
|
1312
|
+
fieldSetShapedocs_nav?: boolean | `@${string}`;
|
|
1313
|
+
modelShapedocs_nav?: boolean | `@${string}`;
|
|
1314
|
+
previewFieldsShapedocs_nav?: boolean | `@${string}`;
|
|
1315
|
+
oneShapedocs_nav?: ResolverInputTypes["Shapedocs_nav"];
|
|
1316
|
+
fieldSetShapefoot?: boolean | `@${string}`;
|
|
1317
|
+
modelShapefoot?: boolean | `@${string}`;
|
|
1318
|
+
previewFieldsShapefoot?: boolean | `@${string}`;
|
|
1319
|
+
oneShapefoot?: ResolverInputTypes["Shapefoot"];
|
|
1320
|
+
fieldSetShapehero?: boolean | `@${string}`;
|
|
1321
|
+
modelShapehero?: boolean | `@${string}`;
|
|
1322
|
+
previewFieldsShapehero?: boolean | `@${string}`;
|
|
1323
|
+
oneShapehero?: ResolverInputTypes["Shapehero"];
|
|
1324
|
+
fieldSetShapeherox?: boolean | `@${string}`;
|
|
1325
|
+
modelShapeherox?: boolean | `@${string}`;
|
|
1326
|
+
previewFieldsShapeherox?: boolean | `@${string}`;
|
|
1327
|
+
oneShapeherox?: ResolverInputTypes["Shapeherox"];
|
|
1328
|
+
fieldSetShapelearn?: boolean | `@${string}`;
|
|
1329
|
+
modelShapelearn?: boolean | `@${string}`;
|
|
1330
|
+
previewFieldsShapelearn?: boolean | `@${string}`;
|
|
1331
|
+
oneShapelearn?: ResolverInputTypes["Shapelearn"];
|
|
1332
|
+
fieldSetShapenav?: boolean | `@${string}`;
|
|
1333
|
+
modelShapenav?: boolean | `@${string}`;
|
|
1334
|
+
previewFieldsShapenav?: boolean | `@${string}`;
|
|
1335
|
+
oneShapenav?: ResolverInputTypes["Shapenav"];
|
|
1336
|
+
fieldSetShapenewshape?: boolean | `@${string}`;
|
|
1337
|
+
modelShapenewshape?: boolean | `@${string}`;
|
|
1338
|
+
previewFieldsShapenewshape?: boolean | `@${string}`;
|
|
1339
|
+
oneShapenewshape?: ResolverInputTypes["Shapenewshape"];
|
|
1340
|
+
fieldSetShapenewshapereprompt?: boolean | `@${string}`;
|
|
1341
|
+
modelShapenewshapereprompt?: boolean | `@${string}`;
|
|
1342
|
+
previewFieldsShapenewshapereprompt?: boolean | `@${string}`;
|
|
1343
|
+
oneShapenewshapereprompt?: ResolverInputTypes["Shapenewshapereprompt"];
|
|
1344
|
+
fieldSetShapenewsletter?: boolean | `@${string}`;
|
|
1345
|
+
modelShapenewsletter?: boolean | `@${string}`;
|
|
1346
|
+
previewFieldsShapenewsletter?: boolean | `@${string}`;
|
|
1347
|
+
oneShapenewsletter?: ResolverInputTypes["Shapenewsletter"];
|
|
1348
|
+
fieldSetShapepricing?: boolean | `@${string}`;
|
|
1349
|
+
modelShapepricing?: boolean | `@${string}`;
|
|
1350
|
+
previewFieldsShapepricing?: boolean | `@${string}`;
|
|
1351
|
+
oneShapepricing?: ResolverInputTypes["Shapepricing"];
|
|
1352
|
+
fieldSetShapepricingv1?: boolean | `@${string}`;
|
|
1353
|
+
modelShapepricingv1?: boolean | `@${string}`;
|
|
1354
|
+
previewFieldsShapepricingv1?: boolean | `@${string}`;
|
|
1355
|
+
oneShapepricingv1?: ResolverInputTypes["Shapepricingv1"];
|
|
1356
|
+
fieldSetShapetesta?: boolean | `@${string}`;
|
|
1357
|
+
modelShapetesta?: boolean | `@${string}`;
|
|
1358
|
+
previewFieldsShapetesta?: boolean | `@${string}`;
|
|
1359
|
+
oneShapetesta?: ResolverInputTypes["Shapetesta"];
|
|
1360
|
+
variantsViewhomepage?: ResolverInputTypes["Viewhomepage"];
|
|
1361
|
+
fieldSetViewhomepage?: boolean | `@${string}`;
|
|
1362
|
+
modelViewhomepage?: boolean | `@${string}`;
|
|
1363
|
+
previewFieldsViewhomepage?: boolean | `@${string}`;
|
|
1364
|
+
oneViewhomepage?: [{
|
|
828
1365
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
}
|
|
833
|
-
|
|
834
|
-
|
|
1366
|
+
}, ResolverInputTypes["Viewhomepage"]];
|
|
1367
|
+
variantsViewhowitworks?: ResolverInputTypes["Viewhowitworks"];
|
|
1368
|
+
fieldSetViewhowitworks?: boolean | `@${string}`;
|
|
1369
|
+
modelViewhowitworks?: boolean | `@${string}`;
|
|
1370
|
+
previewFieldsViewhowitworks?: boolean | `@${string}`;
|
|
1371
|
+
oneViewhowitworks?: [{
|
|
835
1372
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
836
|
-
}, ResolverInputTypes["
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
1373
|
+
}, ResolverInputTypes["Viewhowitworks"]];
|
|
1374
|
+
variantsFormsteps?: ResolverInputTypes["Formsteps"];
|
|
1375
|
+
fieldSetFormsteps?: boolean | `@${string}`;
|
|
1376
|
+
modelFormsteps?: boolean | `@${string}`;
|
|
1377
|
+
previewFieldsFormsteps?: boolean | `@${string}`;
|
|
1378
|
+
oneFormsteps?: [{
|
|
1379
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1380
|
+
}, ResolverInputTypes["Formsteps"]];
|
|
1381
|
+
variantsFormtest?: ResolverInputTypes["Formtest"];
|
|
1382
|
+
fieldSetFormtest?: boolean | `@${string}`;
|
|
1383
|
+
modelFormtest?: boolean | `@${string}`;
|
|
1384
|
+
previewFieldsFormtest?: boolean | `@${string}`;
|
|
1385
|
+
oneFormtest?: [{
|
|
1386
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1387
|
+
}, ResolverInputTypes["Formtest"]];
|
|
1388
|
+
__typename?: boolean | `@${string}`;
|
|
1389
|
+
}>;
|
|
1390
|
+
["RootParamsType"]: AliasType<{
|
|
1391
|
+
_version?: boolean | `@${string}`;
|
|
1392
|
+
locale?: boolean | `@${string}`;
|
|
847
1393
|
__typename?: boolean | `@${string}`;
|
|
848
1394
|
}>;
|
|
849
1395
|
["ModelEnum"]: ModelEnum;
|
|
1396
|
+
["ViewEnum"]: ViewEnum;
|
|
850
1397
|
["ShapeEnum"]: ShapeEnum;
|
|
851
|
-
["
|
|
852
|
-
items?: ResolverInputTypes["
|
|
1398
|
+
["docs__Connection"]: AliasType<{
|
|
1399
|
+
items?: ResolverInputTypes["docs"];
|
|
853
1400
|
pageInfo?: ResolverInputTypes["PageInfo"];
|
|
854
1401
|
__typename?: boolean | `@${string}`;
|
|
855
1402
|
}>;
|
|
856
|
-
["
|
|
1403
|
+
["docs"]: AliasType<{
|
|
857
1404
|
_version?: ResolverInputTypes["VersionField"];
|
|
1405
|
+
title?: boolean | `@${string}`;
|
|
1406
|
+
seotitle?: boolean | `@${string}`;
|
|
1407
|
+
metadesc?: boolean | `@${string}`;
|
|
1408
|
+
sortid?: boolean | `@${string}`;
|
|
1409
|
+
main_category?: boolean | `@${string}`;
|
|
858
1410
|
content?: boolean | `@${string}`;
|
|
1411
|
+
video?: ResolverInputTypes["VideoField"];
|
|
1412
|
+
locale?: boolean | `@${string}`;
|
|
859
1413
|
slug?: boolean | `@${string}`;
|
|
860
1414
|
_id?: boolean | `@${string}`;
|
|
861
1415
|
createdAt?: boolean | `@${string}`;
|
|
@@ -864,16 +1418,408 @@ export type ResolverInputTypes = {
|
|
|
864
1418
|
json_ld?: boolean | `@${string}`;
|
|
865
1419
|
__typename?: boolean | `@${string}`;
|
|
866
1420
|
}>;
|
|
867
|
-
["
|
|
868
|
-
|
|
869
|
-
|
|
1421
|
+
["Viewhomepage"]: AliasType<{
|
|
1422
|
+
_version?: ResolverInputTypes["VersionField"];
|
|
1423
|
+
nav?: ResolverInputTypes["Shapenav"];
|
|
1424
|
+
main?: ResolverInputTypes["Shapehero"];
|
|
1425
|
+
hero?: ResolverInputTypes["Shapeherox"];
|
|
1426
|
+
learn?: ResolverInputTypes["Shapelearn"];
|
|
1427
|
+
pricing?: ResolverInputTypes["Shapepricingv1"];
|
|
1428
|
+
footer?: ResolverInputTypes["Shapefoot"];
|
|
1429
|
+
locale?: boolean | `@${string}`;
|
|
1430
|
+
slug?: boolean | `@${string}`;
|
|
1431
|
+
_id?: boolean | `@${string}`;
|
|
1432
|
+
createdAt?: boolean | `@${string}`;
|
|
1433
|
+
updatedAt?: boolean | `@${string}`;
|
|
1434
|
+
draft_version?: boolean | `@${string}`;
|
|
1435
|
+
json_ld?: boolean | `@${string}`;
|
|
870
1436
|
__typename?: boolean | `@${string}`;
|
|
871
1437
|
}>;
|
|
872
|
-
["
|
|
873
|
-
_version?: ResolverInputTypes["VersionField"];
|
|
1438
|
+
["ViewhowitworksFeature_control"]: AliasType<{
|
|
874
1439
|
title?: boolean | `@${string}`;
|
|
1440
|
+
description?: boolean | `@${string}`;
|
|
875
1441
|
image?: ResolverInputTypes["ImageField"];
|
|
1442
|
+
__typename?: boolean | `@${string}`;
|
|
1443
|
+
}>;
|
|
1444
|
+
["Viewhowitworks"]: AliasType<{
|
|
1445
|
+
_version?: ResolverInputTypes["VersionField"];
|
|
1446
|
+
title?: boolean | `@${string}`;
|
|
1447
|
+
feature_control?: ResolverInputTypes["ViewhowitworksFeature_control"];
|
|
1448
|
+
locale?: boolean | `@${string}`;
|
|
1449
|
+
slug?: boolean | `@${string}`;
|
|
1450
|
+
_id?: boolean | `@${string}`;
|
|
1451
|
+
createdAt?: boolean | `@${string}`;
|
|
1452
|
+
updatedAt?: boolean | `@${string}`;
|
|
1453
|
+
draft_version?: boolean | `@${string}`;
|
|
1454
|
+
json_ld?: boolean | `@${string}`;
|
|
1455
|
+
__typename?: boolean | `@${string}`;
|
|
1456
|
+
}>;
|
|
1457
|
+
["ShapectaCta_sectionCta_container"]: AliasType<{
|
|
1458
|
+
cta_heading?: boolean | `@${string}`;
|
|
1459
|
+
cta_subtitle?: boolean | `@${string}`;
|
|
1460
|
+
cta_button?: boolean | `@${string}`;
|
|
1461
|
+
__typename?: boolean | `@${string}`;
|
|
1462
|
+
}>;
|
|
1463
|
+
["ShapectaCta_section"]: AliasType<{
|
|
1464
|
+
cta_container?: ResolverInputTypes["ShapectaCta_sectionCta_container"];
|
|
1465
|
+
__typename?: boolean | `@${string}`;
|
|
1466
|
+
}>;
|
|
1467
|
+
["Shapecta"]: AliasType<{
|
|
1468
|
+
cta_section?: ResolverInputTypes["ShapectaCta_section"];
|
|
1469
|
+
_id?: boolean | `@${string}`;
|
|
1470
|
+
createdAt?: boolean | `@${string}`;
|
|
1471
|
+
updatedAt?: boolean | `@${string}`;
|
|
1472
|
+
__typename?: boolean | `@${string}`;
|
|
1473
|
+
}>;
|
|
1474
|
+
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: AliasType<{
|
|
876
1475
|
content?: boolean | `@${string}`;
|
|
1476
|
+
__typename?: boolean | `@${string}`;
|
|
1477
|
+
}>;
|
|
1478
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"]: AliasType<{
|
|
1479
|
+
scrollspy_title?: boolean | `@${string}`;
|
|
1480
|
+
scrollspy_list?: boolean | `@${string}`;
|
|
1481
|
+
__typename?: boolean | `@${string}`;
|
|
1482
|
+
}>;
|
|
1483
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspy"]: AliasType<{
|
|
1484
|
+
scrollspy_container?: ResolverInputTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"];
|
|
1485
|
+
__typename?: boolean | `@${string}`;
|
|
1486
|
+
}>;
|
|
1487
|
+
["Shapedocs_contentDocumentation_pageContent_container"]: AliasType<{
|
|
1488
|
+
doc_content?: ResolverInputTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"];
|
|
1489
|
+
scrollspy?: ResolverInputTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"];
|
|
1490
|
+
__typename?: boolean | `@${string}`;
|
|
1491
|
+
}>;
|
|
1492
|
+
["Shapedocs_contentDocumentation_page"]: AliasType<{
|
|
1493
|
+
content_container?: ResolverInputTypes["Shapedocs_contentDocumentation_pageContent_container"];
|
|
1494
|
+
__typename?: boolean | `@${string}`;
|
|
1495
|
+
}>;
|
|
1496
|
+
["Shapedocs_content"]: AliasType<{
|
|
1497
|
+
documentation_page?: ResolverInputTypes["Shapedocs_contentDocumentation_page"];
|
|
1498
|
+
_id?: boolean | `@${string}`;
|
|
1499
|
+
createdAt?: boolean | `@${string}`;
|
|
1500
|
+
updatedAt?: boolean | `@${string}`;
|
|
1501
|
+
__typename?: boolean | `@${string}`;
|
|
1502
|
+
}>;
|
|
1503
|
+
["Shapedocs_navMainListChildrenCategory"]: AliasType<{
|
|
1504
|
+
name?: boolean | `@${string}`;
|
|
1505
|
+
link?: boolean | `@${string}`;
|
|
1506
|
+
__typename?: boolean | `@${string}`;
|
|
1507
|
+
}>;
|
|
1508
|
+
["Shapedocs_navMainListChildren"]: AliasType<{
|
|
1509
|
+
category?: ResolverInputTypes["Shapedocs_navMainListChildrenCategory"];
|
|
1510
|
+
__typename?: boolean | `@${string}`;
|
|
1511
|
+
}>;
|
|
1512
|
+
["Shapedocs_navMainList"]: AliasType<{
|
|
1513
|
+
title?: boolean | `@${string}`;
|
|
1514
|
+
children?: ResolverInputTypes["Shapedocs_navMainListChildren"];
|
|
1515
|
+
__typename?: boolean | `@${string}`;
|
|
1516
|
+
}>;
|
|
1517
|
+
["Shapedocs_navMain"]: AliasType<{
|
|
1518
|
+
list?: ResolverInputTypes["Shapedocs_navMainList"];
|
|
1519
|
+
__typename?: boolean | `@${string}`;
|
|
1520
|
+
}>;
|
|
1521
|
+
["Shapedocs_nav"]: AliasType<{
|
|
1522
|
+
main?: ResolverInputTypes["Shapedocs_navMain"];
|
|
1523
|
+
_id?: boolean | `@${string}`;
|
|
1524
|
+
createdAt?: boolean | `@${string}`;
|
|
1525
|
+
updatedAt?: boolean | `@${string}`;
|
|
1526
|
+
__typename?: boolean | `@${string}`;
|
|
1527
|
+
}>;
|
|
1528
|
+
["ShapefootFooterFooter_containerFooter_links"]: AliasType<{
|
|
1529
|
+
privacy_policy?: boolean | `@${string}`;
|
|
1530
|
+
terms_of_service?: boolean | `@${string}`;
|
|
1531
|
+
contact_us?: boolean | `@${string}`;
|
|
1532
|
+
__typename?: boolean | `@${string}`;
|
|
1533
|
+
}>;
|
|
1534
|
+
["ShapefootFooterFooter_container"]: AliasType<{
|
|
1535
|
+
footer_logo?: boolean | `@${string}`;
|
|
1536
|
+
footer_links?: ResolverInputTypes["ShapefootFooterFooter_containerFooter_links"];
|
|
1537
|
+
footer_copy?: boolean | `@${string}`;
|
|
1538
|
+
__typename?: boolean | `@${string}`;
|
|
1539
|
+
}>;
|
|
1540
|
+
["ShapefootFooter"]: AliasType<{
|
|
1541
|
+
footer_container?: ResolverInputTypes["ShapefootFooterFooter_container"];
|
|
1542
|
+
__typename?: boolean | `@${string}`;
|
|
1543
|
+
}>;
|
|
1544
|
+
["Shapefoot"]: AliasType<{
|
|
1545
|
+
footer?: ResolverInputTypes["ShapefootFooter"];
|
|
1546
|
+
_id?: boolean | `@${string}`;
|
|
1547
|
+
createdAt?: boolean | `@${string}`;
|
|
1548
|
+
updatedAt?: boolean | `@${string}`;
|
|
1549
|
+
__typename?: boolean | `@${string}`;
|
|
1550
|
+
}>;
|
|
1551
|
+
["ShapeheroHero_component"]: AliasType<{
|
|
1552
|
+
logoplace?: boolean | `@${string}`;
|
|
1553
|
+
logo?: boolean | `@${string}`;
|
|
1554
|
+
slogan?: boolean | `@${string}`;
|
|
1555
|
+
subslogan?: boolean | `@${string}`;
|
|
1556
|
+
__typename?: boolean | `@${string}`;
|
|
1557
|
+
}>;
|
|
1558
|
+
["Shapehero"]: AliasType<{
|
|
1559
|
+
hero_component?: ResolverInputTypes["ShapeheroHero_component"];
|
|
1560
|
+
_id?: boolean | `@${string}`;
|
|
1561
|
+
createdAt?: boolean | `@${string}`;
|
|
1562
|
+
updatedAt?: boolean | `@${string}`;
|
|
1563
|
+
__typename?: boolean | `@${string}`;
|
|
1564
|
+
}>;
|
|
1565
|
+
["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"]: AliasType<{
|
|
1566
|
+
feature?: boolean | `@${string}`;
|
|
1567
|
+
__typename?: boolean | `@${string}`;
|
|
1568
|
+
}>;
|
|
1569
|
+
["ShapeheroxHero_sectionHero_containerText_wrapper"]: AliasType<{
|
|
1570
|
+
title?: boolean | `@${string}`;
|
|
1571
|
+
description?: boolean | `@${string}`;
|
|
1572
|
+
features?: ResolverInputTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"];
|
|
1573
|
+
call_to_action?: boolean | `@${string}`;
|
|
1574
|
+
__typename?: boolean | `@${string}`;
|
|
1575
|
+
}>;
|
|
1576
|
+
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: AliasType<{
|
|
1577
|
+
hero_image?: ResolverInputTypes["ImageField"];
|
|
1578
|
+
__typename?: boolean | `@${string}`;
|
|
1579
|
+
}>;
|
|
1580
|
+
["ShapeheroxHero_sectionHero_container"]: AliasType<{
|
|
1581
|
+
text_wrapper?: ResolverInputTypes["ShapeheroxHero_sectionHero_containerText_wrapper"];
|
|
1582
|
+
image_wrapper?: ResolverInputTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"];
|
|
1583
|
+
__typename?: boolean | `@${string}`;
|
|
1584
|
+
}>;
|
|
1585
|
+
["ShapeheroxHero_section"]: AliasType<{
|
|
1586
|
+
hero_container?: ResolverInputTypes["ShapeheroxHero_sectionHero_container"];
|
|
1587
|
+
__typename?: boolean | `@${string}`;
|
|
1588
|
+
}>;
|
|
1589
|
+
["Shapeherox"]: AliasType<{
|
|
1590
|
+
hero_section?: ResolverInputTypes["ShapeheroxHero_section"];
|
|
1591
|
+
_id?: boolean | `@${string}`;
|
|
1592
|
+
createdAt?: boolean | `@${string}`;
|
|
1593
|
+
updatedAt?: boolean | `@${string}`;
|
|
1594
|
+
__typename?: boolean | `@${string}`;
|
|
1595
|
+
}>;
|
|
1596
|
+
["ShapelearnLearning_sectionContainer"]: AliasType<{
|
|
1597
|
+
image?: ResolverInputTypes["ImageField"];
|
|
1598
|
+
heading?: boolean | `@${string}`;
|
|
1599
|
+
description?: boolean | `@${string}`;
|
|
1600
|
+
cta_button?: boolean | `@${string}`;
|
|
1601
|
+
__typename?: boolean | `@${string}`;
|
|
1602
|
+
}>;
|
|
1603
|
+
["ShapelearnLearning_section"]: AliasType<{
|
|
1604
|
+
container?: ResolverInputTypes["ShapelearnLearning_sectionContainer"];
|
|
1605
|
+
__typename?: boolean | `@${string}`;
|
|
1606
|
+
}>;
|
|
1607
|
+
["Shapelearn"]: AliasType<{
|
|
1608
|
+
learning_section?: ResolverInputTypes["ShapelearnLearning_section"];
|
|
1609
|
+
_id?: boolean | `@${string}`;
|
|
1610
|
+
createdAt?: boolean | `@${string}`;
|
|
1611
|
+
updatedAt?: boolean | `@${string}`;
|
|
1612
|
+
__typename?: boolean | `@${string}`;
|
|
1613
|
+
}>;
|
|
1614
|
+
["ShapenavNavigationNavigation_linksLink"]: AliasType<{
|
|
1615
|
+
display?: boolean | `@${string}`;
|
|
1616
|
+
href?: boolean | `@${string}`;
|
|
1617
|
+
__typename?: boolean | `@${string}`;
|
|
1618
|
+
}>;
|
|
1619
|
+
["ShapenavNavigationNavigation_links"]: AliasType<{
|
|
1620
|
+
link?: ResolverInputTypes["ShapenavNavigationNavigation_linksLink"];
|
|
1621
|
+
__typename?: boolean | `@${string}`;
|
|
1622
|
+
}>;
|
|
1623
|
+
["ShapenavNavigation"]: AliasType<{
|
|
1624
|
+
logo?: boolean | `@${string}`;
|
|
1625
|
+
navigation_links?: ResolverInputTypes["ShapenavNavigationNavigation_links"];
|
|
1626
|
+
__typename?: boolean | `@${string}`;
|
|
1627
|
+
}>;
|
|
1628
|
+
["Shapenav"]: AliasType<{
|
|
1629
|
+
navigation?: ResolverInputTypes["ShapenavNavigation"];
|
|
1630
|
+
_id?: boolean | `@${string}`;
|
|
1631
|
+
createdAt?: boolean | `@${string}`;
|
|
1632
|
+
updatedAt?: boolean | `@${string}`;
|
|
1633
|
+
__typename?: boolean | `@${string}`;
|
|
1634
|
+
}>;
|
|
1635
|
+
["ShapenewshapeBackgroundContent"]: AliasType<{
|
|
1636
|
+
badge?: boolean | `@${string}`;
|
|
1637
|
+
headline?: boolean | `@${string}`;
|
|
1638
|
+
subheadline?: boolean | `@${string}`;
|
|
1639
|
+
cta_label?: boolean | `@${string}`;
|
|
1640
|
+
cta_href?: boolean | `@${string}`;
|
|
1641
|
+
__typename?: boolean | `@${string}`;
|
|
1642
|
+
}>;
|
|
1643
|
+
["ShapenewshapeBackground"]: AliasType<{
|
|
1644
|
+
overlay_gradient?: boolean | `@${string}`;
|
|
1645
|
+
content?: ResolverInputTypes["ShapenewshapeBackgroundContent"];
|
|
1646
|
+
hero_image?: ResolverInputTypes["ImageField"];
|
|
1647
|
+
__typename?: boolean | `@${string}`;
|
|
1648
|
+
}>;
|
|
1649
|
+
["Shapenewshape"]: AliasType<{
|
|
1650
|
+
background?: ResolverInputTypes["ShapenewshapeBackground"];
|
|
1651
|
+
_id?: boolean | `@${string}`;
|
|
1652
|
+
createdAt?: boolean | `@${string}`;
|
|
1653
|
+
updatedAt?: boolean | `@${string}`;
|
|
1654
|
+
__typename?: boolean | `@${string}`;
|
|
1655
|
+
}>;
|
|
1656
|
+
["Shapenewshapereprompt"]: AliasType<{
|
|
1657
|
+
_id?: boolean | `@${string}`;
|
|
1658
|
+
createdAt?: boolean | `@${string}`;
|
|
1659
|
+
updatedAt?: boolean | `@${string}`;
|
|
1660
|
+
__typename?: boolean | `@${string}`;
|
|
1661
|
+
}>;
|
|
1662
|
+
["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"]: AliasType<{
|
|
1663
|
+
email_input?: boolean | `@${string}`;
|
|
1664
|
+
subscribe_button?: boolean | `@${string}`;
|
|
1665
|
+
__typename?: boolean | `@${string}`;
|
|
1666
|
+
}>;
|
|
1667
|
+
["ShapenewsletterNewsletter_sectionNewsletter_container"]: AliasType<{
|
|
1668
|
+
newsletter_heading?: boolean | `@${string}`;
|
|
1669
|
+
newsletter_description?: boolean | `@${string}`;
|
|
1670
|
+
newsletter_form?: ResolverInputTypes["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"];
|
|
1671
|
+
__typename?: boolean | `@${string}`;
|
|
1672
|
+
}>;
|
|
1673
|
+
["ShapenewsletterNewsletter_section"]: AliasType<{
|
|
1674
|
+
newsletter_container?: ResolverInputTypes["ShapenewsletterNewsletter_sectionNewsletter_container"];
|
|
1675
|
+
__typename?: boolean | `@${string}`;
|
|
1676
|
+
}>;
|
|
1677
|
+
["Shapenewsletter"]: AliasType<{
|
|
1678
|
+
newsletter_section?: ResolverInputTypes["ShapenewsletterNewsletter_section"];
|
|
1679
|
+
_id?: boolean | `@${string}`;
|
|
1680
|
+
createdAt?: boolean | `@${string}`;
|
|
1681
|
+
updatedAt?: boolean | `@${string}`;
|
|
1682
|
+
__typename?: boolean | `@${string}`;
|
|
1683
|
+
}>;
|
|
1684
|
+
["ShapepricingPricing_sectionPricing_header"]: AliasType<{
|
|
1685
|
+
title?: boolean | `@${string}`;
|
|
1686
|
+
sub_title?: boolean | `@${string}`;
|
|
1687
|
+
__typename?: boolean | `@${string}`;
|
|
1688
|
+
}>;
|
|
1689
|
+
["ShapepricingPricing_sectionPricing_gridStarter_planPlan_features"]: AliasType<{
|
|
1690
|
+
feat?: boolean | `@${string}`;
|
|
1691
|
+
__typename?: boolean | `@${string}`;
|
|
1692
|
+
}>;
|
|
1693
|
+
["ShapepricingPricing_sectionPricing_gridStarter_plan"]: AliasType<{
|
|
1694
|
+
plan_title?: boolean | `@${string}`;
|
|
1695
|
+
plan_price?: boolean | `@${string}`;
|
|
1696
|
+
plan_features?: ResolverInputTypes["ShapepricingPricing_sectionPricing_gridStarter_planPlan_features"];
|
|
1697
|
+
plan_cta?: boolean | `@${string}`;
|
|
1698
|
+
__typename?: boolean | `@${string}`;
|
|
1699
|
+
}>;
|
|
1700
|
+
["ShapepricingPricing_sectionPricing_grid"]: AliasType<{
|
|
1701
|
+
starter_plan?: ResolverInputTypes["ShapepricingPricing_sectionPricing_gridStarter_plan"];
|
|
1702
|
+
__typename?: boolean | `@${string}`;
|
|
1703
|
+
}>;
|
|
1704
|
+
["ShapepricingPricing_section"]: AliasType<{
|
|
1705
|
+
pricing_header?: ResolverInputTypes["ShapepricingPricing_sectionPricing_header"];
|
|
1706
|
+
pricing_grid?: ResolverInputTypes["ShapepricingPricing_sectionPricing_grid"];
|
|
1707
|
+
__typename?: boolean | `@${string}`;
|
|
1708
|
+
}>;
|
|
1709
|
+
["Shapepricing"]: AliasType<{
|
|
1710
|
+
pricing_section?: ResolverInputTypes["ShapepricingPricing_section"];
|
|
1711
|
+
_id?: boolean | `@${string}`;
|
|
1712
|
+
createdAt?: boolean | `@${string}`;
|
|
1713
|
+
updatedAt?: boolean | `@${string}`;
|
|
1714
|
+
__typename?: boolean | `@${string}`;
|
|
1715
|
+
}>;
|
|
1716
|
+
["Shapepricingv1Pricing_sectionHeader_wrapper"]: AliasType<{
|
|
1717
|
+
title?: boolean | `@${string}`;
|
|
1718
|
+
description?: boolean | `@${string}`;
|
|
1719
|
+
__typename?: boolean | `@${string}`;
|
|
1720
|
+
}>;
|
|
1721
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"]: AliasType<{
|
|
1722
|
+
feature?: boolean | `@${string}`;
|
|
1723
|
+
__typename?: boolean | `@${string}`;
|
|
1724
|
+
}>;
|
|
1725
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_plan"]: AliasType<{
|
|
1726
|
+
plan_name?: boolean | `@${string}`;
|
|
1727
|
+
price?: boolean | `@${string}`;
|
|
1728
|
+
plan_description?: boolean | `@${string}`;
|
|
1729
|
+
feature_list?: ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"];
|
|
1730
|
+
cta?: boolean | `@${string}`;
|
|
1731
|
+
__typename?: boolean | `@${string}`;
|
|
1732
|
+
}>;
|
|
1733
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: AliasType<{
|
|
1734
|
+
feature?: boolean | `@${string}`;
|
|
1735
|
+
__typename?: boolean | `@${string}`;
|
|
1736
|
+
}>;
|
|
1737
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: AliasType<{
|
|
1738
|
+
plan_name?: boolean | `@${string}`;
|
|
1739
|
+
price?: boolean | `@${string}`;
|
|
1740
|
+
plan_description?: boolean | `@${string}`;
|
|
1741
|
+
feature_list?: ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"];
|
|
1742
|
+
cta?: boolean | `@${string}`;
|
|
1743
|
+
__typename?: boolean | `@${string}`;
|
|
1744
|
+
}>;
|
|
1745
|
+
["Shapepricingv1Pricing_sectionPlans_grid"]: AliasType<{
|
|
1746
|
+
free_plan?: ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"];
|
|
1747
|
+
paid_plan?: ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"];
|
|
1748
|
+
__typename?: boolean | `@${string}`;
|
|
1749
|
+
}>;
|
|
1750
|
+
["Shapepricingv1Pricing_section"]: AliasType<{
|
|
1751
|
+
header_wrapper?: ResolverInputTypes["Shapepricingv1Pricing_sectionHeader_wrapper"];
|
|
1752
|
+
plans_grid?: ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_grid"];
|
|
1753
|
+
__typename?: boolean | `@${string}`;
|
|
1754
|
+
}>;
|
|
1755
|
+
["Shapepricingv1"]: AliasType<{
|
|
1756
|
+
pricing_section?: ResolverInputTypes["Shapepricingv1Pricing_section"];
|
|
1757
|
+
_id?: boolean | `@${string}`;
|
|
1758
|
+
createdAt?: boolean | `@${string}`;
|
|
1759
|
+
updatedAt?: boolean | `@${string}`;
|
|
1760
|
+
__typename?: boolean | `@${string}`;
|
|
1761
|
+
}>;
|
|
1762
|
+
["ShapetestaRootHeaderNav"]: AliasType<{
|
|
1763
|
+
logo?: boolean | `@${string}`;
|
|
1764
|
+
cta?: boolean | `@${string}`;
|
|
1765
|
+
__typename?: boolean | `@${string}`;
|
|
1766
|
+
}>;
|
|
1767
|
+
["ShapetestaRootHeader"]: AliasType<{
|
|
1768
|
+
nav?: ResolverInputTypes["ShapetestaRootHeaderNav"];
|
|
1769
|
+
__typename?: boolean | `@${string}`;
|
|
1770
|
+
}>;
|
|
1771
|
+
["ShapetestaRootMainHero_section"]: AliasType<{
|
|
1772
|
+
hero_title?: boolean | `@${string}`;
|
|
1773
|
+
hero_text?: boolean | `@${string}`;
|
|
1774
|
+
hero_button?: boolean | `@${string}`;
|
|
1775
|
+
__typename?: boolean | `@${string}`;
|
|
1776
|
+
}>;
|
|
1777
|
+
["ShapetestaRootMainFeatures_section"]: AliasType<{
|
|
1778
|
+
features_title?: boolean | `@${string}`;
|
|
1779
|
+
features_text?: boolean | `@${string}`;
|
|
1780
|
+
__typename?: boolean | `@${string}`;
|
|
1781
|
+
}>;
|
|
1782
|
+
["ShapetestaRootMain"]: AliasType<{
|
|
1783
|
+
hero_section?: ResolverInputTypes["ShapetestaRootMainHero_section"];
|
|
1784
|
+
features_section?: ResolverInputTypes["ShapetestaRootMainFeatures_section"];
|
|
1785
|
+
__typename?: boolean | `@${string}`;
|
|
1786
|
+
}>;
|
|
1787
|
+
["ShapetestaRoot"]: AliasType<{
|
|
1788
|
+
header?: ResolverInputTypes["ShapetestaRootHeader"];
|
|
1789
|
+
main?: ResolverInputTypes["ShapetestaRootMain"];
|
|
1790
|
+
__typename?: boolean | `@${string}`;
|
|
1791
|
+
}>;
|
|
1792
|
+
["Shapetesta"]: AliasType<{
|
|
1793
|
+
root?: ResolverInputTypes["ShapetestaRoot"];
|
|
1794
|
+
_id?: boolean | `@${string}`;
|
|
1795
|
+
createdAt?: boolean | `@${string}`;
|
|
1796
|
+
updatedAt?: boolean | `@${string}`;
|
|
1797
|
+
__typename?: boolean | `@${string}`;
|
|
1798
|
+
}>;
|
|
1799
|
+
["FormstepsStep1"]: AliasType<{
|
|
1800
|
+
_mocks?: boolean | `@${string}`;
|
|
1801
|
+
imie?: ResolverInputTypes["FormTextField"];
|
|
1802
|
+
source?: ResolverInputTypes["FormRadioTextField"];
|
|
1803
|
+
__typename?: boolean | `@${string}`;
|
|
1804
|
+
}>;
|
|
1805
|
+
["FormstepsStep2"]: AliasType<{
|
|
1806
|
+
_mocks?: boolean | `@${string}`;
|
|
1807
|
+
nazwisko?: ResolverInputTypes["FormTextField"];
|
|
1808
|
+
__typename?: boolean | `@${string}`;
|
|
1809
|
+
}>;
|
|
1810
|
+
["FormstepsStep3"]: AliasType<{
|
|
1811
|
+
_mocks?: boolean | `@${string}`;
|
|
1812
|
+
email?: ResolverInputTypes["FormTextField"];
|
|
1813
|
+
koniec?: ResolverInputTypes["FormSubmitField"];
|
|
1814
|
+
__typename?: boolean | `@${string}`;
|
|
1815
|
+
}>;
|
|
1816
|
+
["Formsteps"]: AliasType<{
|
|
1817
|
+
_mocks?: boolean | `@${string}`;
|
|
1818
|
+
_version?: ResolverInputTypes["VersionField"];
|
|
1819
|
+
step1?: ResolverInputTypes["FormstepsStep1"];
|
|
1820
|
+
step2?: ResolverInputTypes["FormstepsStep2"];
|
|
1821
|
+
step3?: ResolverInputTypes["FormstepsStep3"];
|
|
1822
|
+
locale?: boolean | `@${string}`;
|
|
877
1823
|
slug?: boolean | `@${string}`;
|
|
878
1824
|
_id?: boolean | `@${string}`;
|
|
879
1825
|
createdAt?: boolean | `@${string}`;
|
|
@@ -882,30 +1828,55 @@ export type ResolverInputTypes = {
|
|
|
882
1828
|
json_ld?: boolean | `@${string}`;
|
|
883
1829
|
__typename?: boolean | `@${string}`;
|
|
884
1830
|
}>;
|
|
885
|
-
["
|
|
1831
|
+
["FormtestWindowBasics"]: AliasType<{
|
|
1832
|
+
_mocks?: boolean | `@${string}`;
|
|
1833
|
+
type?: ResolverInputTypes["FormRadioTextField"];
|
|
1834
|
+
__typename?: boolean | `@${string}`;
|
|
1835
|
+
}>;
|
|
1836
|
+
["FormtestWindowTechincals"]: AliasType<{
|
|
1837
|
+
_mocks?: boolean | `@${string}`;
|
|
1838
|
+
width?: ResolverInputTypes["FormNumberField"];
|
|
1839
|
+
height?: ResolverInputTypes["FormNumberField"];
|
|
1840
|
+
confirm?: ResolverInputTypes["FormRouteField"];
|
|
1841
|
+
__typename?: boolean | `@${string}`;
|
|
1842
|
+
}>;
|
|
1843
|
+
["FormtestWindow"]: AliasType<{
|
|
1844
|
+
_mocks?: boolean | `@${string}`;
|
|
1845
|
+
basics?: ResolverInputTypes["FormtestWindowBasics"];
|
|
1846
|
+
techincals?: ResolverInputTypes["FormtestWindowTechincals"];
|
|
1847
|
+
__typename?: boolean | `@${string}`;
|
|
1848
|
+
}>;
|
|
1849
|
+
["FormtestHome"]: AliasType<{
|
|
1850
|
+
_mocks?: boolean | `@${string}`;
|
|
1851
|
+
window?: ResolverInputTypes["FormTextField"];
|
|
1852
|
+
add?: ResolverInputTypes["FormRouteField"];
|
|
1853
|
+
__typename?: boolean | `@${string}`;
|
|
1854
|
+
}>;
|
|
1855
|
+
["Formtest"]: AliasType<{
|
|
1856
|
+
_mocks?: boolean | `@${string}`;
|
|
1857
|
+
_version?: ResolverInputTypes["VersionField"];
|
|
1858
|
+
window?: ResolverInputTypes["FormtestWindow"];
|
|
1859
|
+
home?: ResolverInputTypes["FormtestHome"];
|
|
1860
|
+
locale?: boolean | `@${string}`;
|
|
1861
|
+
slug?: boolean | `@${string}`;
|
|
886
1862
|
_id?: boolean | `@${string}`;
|
|
887
1863
|
createdAt?: boolean | `@${string}`;
|
|
888
1864
|
updatedAt?: boolean | `@${string}`;
|
|
1865
|
+
draft_version?: boolean | `@${string}`;
|
|
1866
|
+
json_ld?: boolean | `@${string}`;
|
|
889
1867
|
__typename?: boolean | `@${string}`;
|
|
890
1868
|
}>;
|
|
891
1869
|
["RootParamsInput"]: {
|
|
892
1870
|
_version?: string | undefined | null;
|
|
1871
|
+
locale?: string | undefined | null;
|
|
893
1872
|
};
|
|
894
1873
|
["RootParamsEnum"]: RootParamsEnum;
|
|
895
|
-
["
|
|
896
|
-
slug?: ResolverInputTypes["Sort"] | undefined | null;
|
|
897
|
-
createdAt?: ResolverInputTypes["Sort"] | undefined | null;
|
|
898
|
-
updatedAt?: ResolverInputTypes["Sort"] | undefined | null;
|
|
899
|
-
};
|
|
900
|
-
["postSortInput"]: {
|
|
1874
|
+
["docsSortInput"]: {
|
|
901
1875
|
slug?: ResolverInputTypes["Sort"] | undefined | null;
|
|
902
1876
|
createdAt?: ResolverInputTypes["Sort"] | undefined | null;
|
|
903
1877
|
updatedAt?: ResolverInputTypes["Sort"] | undefined | null;
|
|
904
1878
|
};
|
|
905
|
-
["
|
|
906
|
-
slug?: ResolverInputTypes["FilterInputString"] | undefined | null;
|
|
907
|
-
};
|
|
908
|
-
["postFilterInput"]: {
|
|
1879
|
+
["docsFilterInput"]: {
|
|
909
1880
|
slug?: ResolverInputTypes["FilterInputString"] | undefined | null;
|
|
910
1881
|
};
|
|
911
1882
|
["schema"]: AliasType<{
|
|
@@ -1007,27 +1978,20 @@ export type ModelTypes = {
|
|
|
1007
1978
|
ne?: string | undefined | null;
|
|
1008
1979
|
contain?: string | undefined | null;
|
|
1009
1980
|
};
|
|
1981
|
+
["RootParamsAdminType"]: any;
|
|
1010
1982
|
["Shape"]: {
|
|
1011
1983
|
name: string;
|
|
1012
1984
|
slug: string;
|
|
1013
1985
|
display: string;
|
|
1014
1986
|
previewFields?: ModelTypes["BakedIpsumData"] | undefined | null;
|
|
1015
1987
|
prompt?: string | undefined | null;
|
|
1016
|
-
promptResponse?: ModelTypes["AiComponent"] | undefined | null;
|
|
1017
1988
|
fields: Array<ModelTypes["CMSField"]>;
|
|
1018
1989
|
};
|
|
1019
1990
|
["View"]: {
|
|
1020
1991
|
name: string;
|
|
1021
1992
|
fields: Array<ModelTypes["CMSField"]>;
|
|
1022
1993
|
slug: string;
|
|
1023
|
-
display: string;
|
|
1024
|
-
};
|
|
1025
|
-
["AiComponent"]: {
|
|
1026
|
-
name: string;
|
|
1027
|
-
htmlComponent?: string | undefined | null;
|
|
1028
|
-
className: string;
|
|
1029
|
-
textContent?: string | undefined | null;
|
|
1030
|
-
children?: Array<ModelTypes["AiComponent"]> | undefined | null;
|
|
1994
|
+
display: string;
|
|
1031
1995
|
};
|
|
1032
1996
|
["FormField"]: {
|
|
1033
1997
|
name: string;
|
|
@@ -1107,32 +2071,110 @@ export type ModelTypes = {
|
|
|
1107
2071
|
listShapes?: Array<ModelTypes["Shape"]> | undefined | null;
|
|
1108
2072
|
tailwind?: ModelTypes["TailwindConfiguration"] | undefined | null;
|
|
1109
2073
|
listForms?: Array<ModelTypes["Form"]> | undefined | null;
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
2074
|
+
listPaginateddocs?: ModelTypes["docs__Connection"] | undefined | null;
|
|
2075
|
+
onedocsBySlug?: ModelTypes["docs"] | undefined | null;
|
|
2076
|
+
variantsdocsBySlug?: Array<ModelTypes["docs"]> | undefined | null;
|
|
2077
|
+
fieldSetdocs: string;
|
|
2078
|
+
modeldocs: ModelTypes["ModelNavigationCompiled"];
|
|
2079
|
+
previewFieldsdocs: ModelTypes["ModelNavigationCompiled"];
|
|
2080
|
+
fieldSetShapecta: string;
|
|
2081
|
+
modelShapecta: ModelTypes["ModelNavigationCompiled"];
|
|
2082
|
+
previewFieldsShapecta: ModelTypes["ModelNavigationCompiled"];
|
|
2083
|
+
oneShapecta?: ModelTypes["Shapecta"] | undefined | null;
|
|
2084
|
+
fieldSetShapedocs_content: string;
|
|
2085
|
+
modelShapedocs_content: ModelTypes["ModelNavigationCompiled"];
|
|
2086
|
+
previewFieldsShapedocs_content: ModelTypes["ModelNavigationCompiled"];
|
|
2087
|
+
oneShapedocs_content?: ModelTypes["Shapedocs_content"] | undefined | null;
|
|
2088
|
+
fieldSetShapedocs_nav: string;
|
|
2089
|
+
modelShapedocs_nav: ModelTypes["ModelNavigationCompiled"];
|
|
2090
|
+
previewFieldsShapedocs_nav: ModelTypes["ModelNavigationCompiled"];
|
|
2091
|
+
oneShapedocs_nav?: ModelTypes["Shapedocs_nav"] | undefined | null;
|
|
2092
|
+
fieldSetShapefoot: string;
|
|
2093
|
+
modelShapefoot: ModelTypes["ModelNavigationCompiled"];
|
|
2094
|
+
previewFieldsShapefoot: ModelTypes["ModelNavigationCompiled"];
|
|
2095
|
+
oneShapefoot?: ModelTypes["Shapefoot"] | undefined | null;
|
|
2096
|
+
fieldSetShapehero: string;
|
|
2097
|
+
modelShapehero: ModelTypes["ModelNavigationCompiled"];
|
|
2098
|
+
previewFieldsShapehero: ModelTypes["ModelNavigationCompiled"];
|
|
2099
|
+
oneShapehero?: ModelTypes["Shapehero"] | undefined | null;
|
|
2100
|
+
fieldSetShapeherox: string;
|
|
2101
|
+
modelShapeherox: ModelTypes["ModelNavigationCompiled"];
|
|
2102
|
+
previewFieldsShapeherox: ModelTypes["ModelNavigationCompiled"];
|
|
2103
|
+
oneShapeherox?: ModelTypes["Shapeherox"] | undefined | null;
|
|
2104
|
+
fieldSetShapelearn: string;
|
|
2105
|
+
modelShapelearn: ModelTypes["ModelNavigationCompiled"];
|
|
2106
|
+
previewFieldsShapelearn: ModelTypes["ModelNavigationCompiled"];
|
|
2107
|
+
oneShapelearn?: ModelTypes["Shapelearn"] | undefined | null;
|
|
2108
|
+
fieldSetShapenav: string;
|
|
2109
|
+
modelShapenav: ModelTypes["ModelNavigationCompiled"];
|
|
2110
|
+
previewFieldsShapenav: ModelTypes["ModelNavigationCompiled"];
|
|
2111
|
+
oneShapenav?: ModelTypes["Shapenav"] | undefined | null;
|
|
2112
|
+
fieldSetShapenewshape: string;
|
|
2113
|
+
modelShapenewshape: ModelTypes["ModelNavigationCompiled"];
|
|
2114
|
+
previewFieldsShapenewshape: ModelTypes["ModelNavigationCompiled"];
|
|
2115
|
+
oneShapenewshape?: ModelTypes["Shapenewshape"] | undefined | null;
|
|
2116
|
+
fieldSetShapenewshapereprompt: string;
|
|
2117
|
+
modelShapenewshapereprompt: ModelTypes["ModelNavigationCompiled"];
|
|
2118
|
+
previewFieldsShapenewshapereprompt: ModelTypes["ModelNavigationCompiled"];
|
|
2119
|
+
oneShapenewshapereprompt?: ModelTypes["Shapenewshapereprompt"] | undefined | null;
|
|
2120
|
+
fieldSetShapenewsletter: string;
|
|
2121
|
+
modelShapenewsletter: ModelTypes["ModelNavigationCompiled"];
|
|
2122
|
+
previewFieldsShapenewsletter: ModelTypes["ModelNavigationCompiled"];
|
|
2123
|
+
oneShapenewsletter?: ModelTypes["Shapenewsletter"] | undefined | null;
|
|
2124
|
+
fieldSetShapepricing: string;
|
|
2125
|
+
modelShapepricing: ModelTypes["ModelNavigationCompiled"];
|
|
2126
|
+
previewFieldsShapepricing: ModelTypes["ModelNavigationCompiled"];
|
|
2127
|
+
oneShapepricing?: ModelTypes["Shapepricing"] | undefined | null;
|
|
2128
|
+
fieldSetShapepricingv1: string;
|
|
2129
|
+
modelShapepricingv1: ModelTypes["ModelNavigationCompiled"];
|
|
2130
|
+
previewFieldsShapepricingv1: ModelTypes["ModelNavigationCompiled"];
|
|
2131
|
+
oneShapepricingv1?: ModelTypes["Shapepricingv1"] | undefined | null;
|
|
2132
|
+
fieldSetShapetesta: string;
|
|
2133
|
+
modelShapetesta: ModelTypes["ModelNavigationCompiled"];
|
|
2134
|
+
previewFieldsShapetesta: ModelTypes["ModelNavigationCompiled"];
|
|
2135
|
+
oneShapetesta?: ModelTypes["Shapetesta"] | undefined | null;
|
|
2136
|
+
variantsViewhomepage?: Array<ModelTypes["Viewhomepage"]> | undefined | null;
|
|
2137
|
+
fieldSetViewhomepage: string;
|
|
2138
|
+
modelViewhomepage: ModelTypes["ModelNavigationCompiled"];
|
|
2139
|
+
previewFieldsViewhomepage: ModelTypes["ModelNavigationCompiled"];
|
|
2140
|
+
oneViewhomepage?: ModelTypes["Viewhomepage"] | undefined | null;
|
|
2141
|
+
variantsViewhowitworks?: Array<ModelTypes["Viewhowitworks"]> | undefined | null;
|
|
2142
|
+
fieldSetViewhowitworks: string;
|
|
2143
|
+
modelViewhowitworks: ModelTypes["ModelNavigationCompiled"];
|
|
2144
|
+
previewFieldsViewhowitworks: ModelTypes["ModelNavigationCompiled"];
|
|
2145
|
+
oneViewhowitworks?: ModelTypes["Viewhowitworks"] | undefined | null;
|
|
2146
|
+
variantsFormsteps?: Array<ModelTypes["Formsteps"]> | undefined | null;
|
|
2147
|
+
fieldSetFormsteps: string;
|
|
2148
|
+
modelFormsteps: ModelTypes["ModelNavigationCompiled"];
|
|
2149
|
+
previewFieldsFormsteps: ModelTypes["ModelNavigationCompiled"];
|
|
2150
|
+
oneFormsteps?: ModelTypes["Formsteps"] | undefined | null;
|
|
2151
|
+
variantsFormtest?: Array<ModelTypes["Formtest"]> | undefined | null;
|
|
2152
|
+
fieldSetFormtest: string;
|
|
2153
|
+
modelFormtest: ModelTypes["ModelNavigationCompiled"];
|
|
2154
|
+
previewFieldsFormtest: ModelTypes["ModelNavigationCompiled"];
|
|
2155
|
+
oneFormtest?: ModelTypes["Formtest"] | undefined | null;
|
|
2156
|
+
};
|
|
2157
|
+
["RootParamsType"]: {
|
|
2158
|
+
_version?: string | undefined | null;
|
|
2159
|
+
locale?: string | undefined | null;
|
|
1126
2160
|
};
|
|
1127
2161
|
["ModelEnum"]: ModelEnum;
|
|
2162
|
+
["ViewEnum"]: ViewEnum;
|
|
1128
2163
|
["ShapeEnum"]: ShapeEnum;
|
|
1129
|
-
["
|
|
1130
|
-
items?: Array<ModelTypes["
|
|
2164
|
+
["docs__Connection"]: {
|
|
2165
|
+
items?: Array<ModelTypes["docs"]> | undefined | null;
|
|
1131
2166
|
pageInfo: ModelTypes["PageInfo"];
|
|
1132
2167
|
};
|
|
1133
|
-
["
|
|
2168
|
+
["docs"]: {
|
|
1134
2169
|
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
2170
|
+
title?: string | undefined | null;
|
|
2171
|
+
seotitle?: string | undefined | null;
|
|
2172
|
+
metadesc?: string | undefined | null;
|
|
2173
|
+
sortid?: number | undefined | null;
|
|
2174
|
+
main_category?: string | undefined | null;
|
|
1135
2175
|
content?: string | undefined | null;
|
|
2176
|
+
video?: ModelTypes["VideoField"] | undefined | null;
|
|
2177
|
+
locale?: string | undefined | null;
|
|
1136
2178
|
slug?: string | undefined | null;
|
|
1137
2179
|
_id: string;
|
|
1138
2180
|
createdAt?: number | undefined | null;
|
|
@@ -1140,15 +2182,32 @@ export type ModelTypes = {
|
|
|
1140
2182
|
draft_version?: boolean | undefined | null;
|
|
1141
2183
|
json_ld?: string | undefined | null;
|
|
1142
2184
|
};
|
|
1143
|
-
["
|
|
1144
|
-
items?: Array<ModelTypes["post"]> | undefined | null;
|
|
1145
|
-
pageInfo: ModelTypes["PageInfo"];
|
|
1146
|
-
};
|
|
1147
|
-
["post"]: {
|
|
2185
|
+
["Viewhomepage"]: {
|
|
1148
2186
|
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
2187
|
+
nav?: ModelTypes["Shapenav"] | undefined | null;
|
|
2188
|
+
main?: ModelTypes["Shapehero"] | undefined | null;
|
|
2189
|
+
hero?: ModelTypes["Shapeherox"] | undefined | null;
|
|
2190
|
+
learn?: ModelTypes["Shapelearn"] | undefined | null;
|
|
2191
|
+
pricing?: ModelTypes["Shapepricingv1"] | undefined | null;
|
|
2192
|
+
footer?: ModelTypes["Shapefoot"] | undefined | null;
|
|
2193
|
+
locale?: string | undefined | null;
|
|
2194
|
+
slug?: string | undefined | null;
|
|
2195
|
+
_id: string;
|
|
2196
|
+
createdAt?: number | undefined | null;
|
|
2197
|
+
updatedAt?: number | undefined | null;
|
|
2198
|
+
draft_version?: boolean | undefined | null;
|
|
2199
|
+
json_ld?: string | undefined | null;
|
|
2200
|
+
};
|
|
2201
|
+
["ViewhowitworksFeature_control"]: {
|
|
1149
2202
|
title?: string | undefined | null;
|
|
2203
|
+
description?: string | undefined | null;
|
|
1150
2204
|
image?: ModelTypes["ImageField"] | undefined | null;
|
|
1151
|
-
|
|
2205
|
+
};
|
|
2206
|
+
["Viewhowitworks"]: {
|
|
2207
|
+
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
2208
|
+
title?: string | undefined | null;
|
|
2209
|
+
feature_control?: ModelTypes["ViewhowitworksFeature_control"] | undefined | null;
|
|
2210
|
+
locale?: string | undefined | null;
|
|
1152
2211
|
slug?: string | undefined | null;
|
|
1153
2212
|
_id: string;
|
|
1154
2213
|
createdAt?: number | undefined | null;
|
|
@@ -1156,29 +2215,358 @@ export type ModelTypes = {
|
|
|
1156
2215
|
draft_version?: boolean | undefined | null;
|
|
1157
2216
|
json_ld?: string | undefined | null;
|
|
1158
2217
|
};
|
|
1159
|
-
["
|
|
2218
|
+
["ShapectaCta_sectionCta_container"]: {
|
|
2219
|
+
cta_heading?: string | undefined | null;
|
|
2220
|
+
cta_subtitle?: string | undefined | null;
|
|
2221
|
+
cta_button?: string | undefined | null;
|
|
2222
|
+
};
|
|
2223
|
+
["ShapectaCta_section"]: {
|
|
2224
|
+
cta_container?: ModelTypes["ShapectaCta_sectionCta_container"] | undefined | null;
|
|
2225
|
+
};
|
|
2226
|
+
["Shapecta"]: {
|
|
2227
|
+
cta_section?: ModelTypes["ShapectaCta_section"] | undefined | null;
|
|
2228
|
+
_id: string;
|
|
2229
|
+
createdAt?: number | undefined | null;
|
|
2230
|
+
updatedAt?: number | undefined | null;
|
|
2231
|
+
};
|
|
2232
|
+
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: {
|
|
2233
|
+
content?: string | undefined | null;
|
|
2234
|
+
};
|
|
2235
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"]: {
|
|
2236
|
+
scrollspy_title?: string | undefined | null;
|
|
2237
|
+
scrollspy_list?: string | undefined | null;
|
|
2238
|
+
};
|
|
2239
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspy"]: {
|
|
2240
|
+
scrollspy_container?: ModelTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"] | undefined | null;
|
|
2241
|
+
};
|
|
2242
|
+
["Shapedocs_contentDocumentation_pageContent_container"]: {
|
|
2243
|
+
doc_content?: ModelTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"] | undefined | null;
|
|
2244
|
+
scrollspy?: ModelTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"] | undefined | null;
|
|
2245
|
+
};
|
|
2246
|
+
["Shapedocs_contentDocumentation_page"]: {
|
|
2247
|
+
content_container?: ModelTypes["Shapedocs_contentDocumentation_pageContent_container"] | undefined | null;
|
|
2248
|
+
};
|
|
2249
|
+
["Shapedocs_content"]: {
|
|
2250
|
+
documentation_page?: ModelTypes["Shapedocs_contentDocumentation_page"] | undefined | null;
|
|
2251
|
+
_id: string;
|
|
2252
|
+
createdAt?: number | undefined | null;
|
|
2253
|
+
updatedAt?: number | undefined | null;
|
|
2254
|
+
};
|
|
2255
|
+
["Shapedocs_navMainListChildrenCategory"]: {
|
|
2256
|
+
name?: string | undefined | null;
|
|
2257
|
+
link?: string | undefined | null;
|
|
2258
|
+
};
|
|
2259
|
+
["Shapedocs_navMainListChildren"]: {
|
|
2260
|
+
category?: Array<ModelTypes["Shapedocs_navMainListChildrenCategory"] | undefined | null> | undefined | null;
|
|
2261
|
+
};
|
|
2262
|
+
["Shapedocs_navMainList"]: {
|
|
2263
|
+
title?: string | undefined | null;
|
|
2264
|
+
children?: ModelTypes["Shapedocs_navMainListChildren"] | undefined | null;
|
|
2265
|
+
};
|
|
2266
|
+
["Shapedocs_navMain"]: {
|
|
2267
|
+
list?: Array<ModelTypes["Shapedocs_navMainList"] | undefined | null> | undefined | null;
|
|
2268
|
+
};
|
|
2269
|
+
["Shapedocs_nav"]: {
|
|
2270
|
+
main?: ModelTypes["Shapedocs_navMain"] | undefined | null;
|
|
2271
|
+
_id: string;
|
|
2272
|
+
createdAt?: number | undefined | null;
|
|
2273
|
+
updatedAt?: number | undefined | null;
|
|
2274
|
+
};
|
|
2275
|
+
["ShapefootFooterFooter_containerFooter_links"]: {
|
|
2276
|
+
privacy_policy?: string | undefined | null;
|
|
2277
|
+
terms_of_service?: string | undefined | null;
|
|
2278
|
+
contact_us?: string | undefined | null;
|
|
2279
|
+
};
|
|
2280
|
+
["ShapefootFooterFooter_container"]: {
|
|
2281
|
+
footer_logo?: string | undefined | null;
|
|
2282
|
+
footer_links?: ModelTypes["ShapefootFooterFooter_containerFooter_links"] | undefined | null;
|
|
2283
|
+
footer_copy?: string | undefined | null;
|
|
2284
|
+
};
|
|
2285
|
+
["ShapefootFooter"]: {
|
|
2286
|
+
footer_container?: ModelTypes["ShapefootFooterFooter_container"] | undefined | null;
|
|
2287
|
+
};
|
|
2288
|
+
["Shapefoot"]: {
|
|
2289
|
+
footer?: ModelTypes["ShapefootFooter"] | undefined | null;
|
|
2290
|
+
_id: string;
|
|
2291
|
+
createdAt?: number | undefined | null;
|
|
2292
|
+
updatedAt?: number | undefined | null;
|
|
2293
|
+
};
|
|
2294
|
+
["ShapeheroHero_component"]: {
|
|
2295
|
+
logoplace?: string | undefined | null;
|
|
2296
|
+
logo?: string | undefined | null;
|
|
2297
|
+
slogan?: string | undefined | null;
|
|
2298
|
+
subslogan?: string | undefined | null;
|
|
2299
|
+
};
|
|
2300
|
+
["Shapehero"]: {
|
|
2301
|
+
hero_component?: ModelTypes["ShapeheroHero_component"] | undefined | null;
|
|
2302
|
+
_id: string;
|
|
2303
|
+
createdAt?: number | undefined | null;
|
|
2304
|
+
updatedAt?: number | undefined | null;
|
|
2305
|
+
};
|
|
2306
|
+
["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"]: {
|
|
2307
|
+
feature?: Array<string | undefined | null> | undefined | null;
|
|
2308
|
+
};
|
|
2309
|
+
["ShapeheroxHero_sectionHero_containerText_wrapper"]: {
|
|
2310
|
+
title?: string | undefined | null;
|
|
2311
|
+
description?: string | undefined | null;
|
|
2312
|
+
features?: ModelTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"] | undefined | null;
|
|
2313
|
+
call_to_action?: string | undefined | null;
|
|
2314
|
+
};
|
|
2315
|
+
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: {
|
|
2316
|
+
hero_image?: ModelTypes["ImageField"] | undefined | null;
|
|
2317
|
+
};
|
|
2318
|
+
["ShapeheroxHero_sectionHero_container"]: {
|
|
2319
|
+
text_wrapper?: ModelTypes["ShapeheroxHero_sectionHero_containerText_wrapper"] | undefined | null;
|
|
2320
|
+
image_wrapper?: ModelTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"] | undefined | null;
|
|
2321
|
+
};
|
|
2322
|
+
["ShapeheroxHero_section"]: {
|
|
2323
|
+
hero_container?: ModelTypes["ShapeheroxHero_sectionHero_container"] | undefined | null;
|
|
2324
|
+
};
|
|
2325
|
+
["Shapeherox"]: {
|
|
2326
|
+
hero_section?: ModelTypes["ShapeheroxHero_section"] | undefined | null;
|
|
2327
|
+
_id: string;
|
|
2328
|
+
createdAt?: number | undefined | null;
|
|
2329
|
+
updatedAt?: number | undefined | null;
|
|
2330
|
+
};
|
|
2331
|
+
["ShapelearnLearning_sectionContainer"]: {
|
|
2332
|
+
image?: ModelTypes["ImageField"] | undefined | null;
|
|
2333
|
+
heading?: string | undefined | null;
|
|
2334
|
+
description?: string | undefined | null;
|
|
2335
|
+
cta_button?: string | undefined | null;
|
|
2336
|
+
};
|
|
2337
|
+
["ShapelearnLearning_section"]: {
|
|
2338
|
+
container?: ModelTypes["ShapelearnLearning_sectionContainer"] | undefined | null;
|
|
2339
|
+
};
|
|
2340
|
+
["Shapelearn"]: {
|
|
2341
|
+
learning_section?: ModelTypes["ShapelearnLearning_section"] | undefined | null;
|
|
2342
|
+
_id: string;
|
|
2343
|
+
createdAt?: number | undefined | null;
|
|
2344
|
+
updatedAt?: number | undefined | null;
|
|
2345
|
+
};
|
|
2346
|
+
["ShapenavNavigationNavigation_linksLink"]: {
|
|
2347
|
+
display?: string | undefined | null;
|
|
2348
|
+
href?: string | undefined | null;
|
|
2349
|
+
};
|
|
2350
|
+
["ShapenavNavigationNavigation_links"]: {
|
|
2351
|
+
link?: Array<ModelTypes["ShapenavNavigationNavigation_linksLink"] | undefined | null> | undefined | null;
|
|
2352
|
+
};
|
|
2353
|
+
["ShapenavNavigation"]: {
|
|
2354
|
+
logo?: string | undefined | null;
|
|
2355
|
+
navigation_links?: ModelTypes["ShapenavNavigationNavigation_links"] | undefined | null;
|
|
2356
|
+
};
|
|
2357
|
+
["Shapenav"]: {
|
|
2358
|
+
navigation?: ModelTypes["ShapenavNavigation"] | undefined | null;
|
|
2359
|
+
_id: string;
|
|
2360
|
+
createdAt?: number | undefined | null;
|
|
2361
|
+
updatedAt?: number | undefined | null;
|
|
2362
|
+
};
|
|
2363
|
+
["ShapenewshapeBackgroundContent"]: {
|
|
2364
|
+
badge?: string | undefined | null;
|
|
2365
|
+
headline?: string | undefined | null;
|
|
2366
|
+
subheadline?: string | undefined | null;
|
|
2367
|
+
cta_label?: string | undefined | null;
|
|
2368
|
+
cta_href?: string | undefined | null;
|
|
2369
|
+
};
|
|
2370
|
+
["ShapenewshapeBackground"]: {
|
|
2371
|
+
overlay_gradient?: boolean | undefined | null;
|
|
2372
|
+
content?: ModelTypes["ShapenewshapeBackgroundContent"] | undefined | null;
|
|
2373
|
+
hero_image?: ModelTypes["ImageField"] | undefined | null;
|
|
2374
|
+
};
|
|
2375
|
+
["Shapenewshape"]: {
|
|
2376
|
+
background?: ModelTypes["ShapenewshapeBackground"] | undefined | null;
|
|
2377
|
+
_id: string;
|
|
2378
|
+
createdAt?: number | undefined | null;
|
|
2379
|
+
updatedAt?: number | undefined | null;
|
|
2380
|
+
};
|
|
2381
|
+
["Shapenewshapereprompt"]: {
|
|
2382
|
+
_id: string;
|
|
2383
|
+
createdAt?: number | undefined | null;
|
|
2384
|
+
updatedAt?: number | undefined | null;
|
|
2385
|
+
};
|
|
2386
|
+
["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"]: {
|
|
2387
|
+
email_input?: string | undefined | null;
|
|
2388
|
+
subscribe_button?: string | undefined | null;
|
|
2389
|
+
};
|
|
2390
|
+
["ShapenewsletterNewsletter_sectionNewsletter_container"]: {
|
|
2391
|
+
newsletter_heading?: string | undefined | null;
|
|
2392
|
+
newsletter_description?: string | undefined | null;
|
|
2393
|
+
newsletter_form?: ModelTypes["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"] | undefined | null;
|
|
2394
|
+
};
|
|
2395
|
+
["ShapenewsletterNewsletter_section"]: {
|
|
2396
|
+
newsletter_container?: ModelTypes["ShapenewsletterNewsletter_sectionNewsletter_container"] | undefined | null;
|
|
2397
|
+
};
|
|
2398
|
+
["Shapenewsletter"]: {
|
|
2399
|
+
newsletter_section?: ModelTypes["ShapenewsletterNewsletter_section"] | undefined | null;
|
|
2400
|
+
_id: string;
|
|
2401
|
+
createdAt?: number | undefined | null;
|
|
2402
|
+
updatedAt?: number | undefined | null;
|
|
2403
|
+
};
|
|
2404
|
+
["ShapepricingPricing_sectionPricing_header"]: {
|
|
2405
|
+
title?: string | undefined | null;
|
|
2406
|
+
sub_title?: string | undefined | null;
|
|
2407
|
+
};
|
|
2408
|
+
["ShapepricingPricing_sectionPricing_gridStarter_planPlan_features"]: {
|
|
2409
|
+
feat?: Array<string | undefined | null> | undefined | null;
|
|
2410
|
+
};
|
|
2411
|
+
["ShapepricingPricing_sectionPricing_gridStarter_plan"]: {
|
|
2412
|
+
plan_title?: string | undefined | null;
|
|
2413
|
+
plan_price?: string | undefined | null;
|
|
2414
|
+
plan_features?: ModelTypes["ShapepricingPricing_sectionPricing_gridStarter_planPlan_features"] | undefined | null;
|
|
2415
|
+
plan_cta?: string | undefined | null;
|
|
2416
|
+
};
|
|
2417
|
+
["ShapepricingPricing_sectionPricing_grid"]: {
|
|
2418
|
+
starter_plan?: Array<ModelTypes["ShapepricingPricing_sectionPricing_gridStarter_plan"] | undefined | null> | undefined | null;
|
|
2419
|
+
};
|
|
2420
|
+
["ShapepricingPricing_section"]: {
|
|
2421
|
+
pricing_header?: ModelTypes["ShapepricingPricing_sectionPricing_header"] | undefined | null;
|
|
2422
|
+
pricing_grid?: ModelTypes["ShapepricingPricing_sectionPricing_grid"] | undefined | null;
|
|
2423
|
+
};
|
|
2424
|
+
["Shapepricing"]: {
|
|
2425
|
+
pricing_section?: ModelTypes["ShapepricingPricing_section"] | undefined | null;
|
|
2426
|
+
_id: string;
|
|
2427
|
+
createdAt?: number | undefined | null;
|
|
2428
|
+
updatedAt?: number | undefined | null;
|
|
2429
|
+
};
|
|
2430
|
+
["Shapepricingv1Pricing_sectionHeader_wrapper"]: {
|
|
2431
|
+
title?: string | undefined | null;
|
|
2432
|
+
description?: string | undefined | null;
|
|
2433
|
+
};
|
|
2434
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"]: {
|
|
2435
|
+
feature?: Array<string | undefined | null> | undefined | null;
|
|
2436
|
+
};
|
|
2437
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_plan"]: {
|
|
2438
|
+
plan_name?: string | undefined | null;
|
|
2439
|
+
price?: string | undefined | null;
|
|
2440
|
+
plan_description?: string | undefined | null;
|
|
2441
|
+
feature_list?: ModelTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"] | undefined | null;
|
|
2442
|
+
cta?: string | undefined | null;
|
|
2443
|
+
};
|
|
2444
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: {
|
|
2445
|
+
feature?: Array<string | undefined | null> | undefined | null;
|
|
2446
|
+
};
|
|
2447
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: {
|
|
2448
|
+
plan_name?: string | undefined | null;
|
|
2449
|
+
price?: string | undefined | null;
|
|
2450
|
+
plan_description?: string | undefined | null;
|
|
2451
|
+
feature_list?: ModelTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"] | undefined | null;
|
|
2452
|
+
cta?: string | undefined | null;
|
|
2453
|
+
};
|
|
2454
|
+
["Shapepricingv1Pricing_sectionPlans_grid"]: {
|
|
2455
|
+
free_plan?: ModelTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"] | undefined | null;
|
|
2456
|
+
paid_plan?: ModelTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"] | undefined | null;
|
|
2457
|
+
};
|
|
2458
|
+
["Shapepricingv1Pricing_section"]: {
|
|
2459
|
+
header_wrapper?: ModelTypes["Shapepricingv1Pricing_sectionHeader_wrapper"] | undefined | null;
|
|
2460
|
+
plans_grid?: ModelTypes["Shapepricingv1Pricing_sectionPlans_grid"] | undefined | null;
|
|
2461
|
+
};
|
|
2462
|
+
["Shapepricingv1"]: {
|
|
2463
|
+
pricing_section?: ModelTypes["Shapepricingv1Pricing_section"] | undefined | null;
|
|
2464
|
+
_id: string;
|
|
2465
|
+
createdAt?: number | undefined | null;
|
|
2466
|
+
updatedAt?: number | undefined | null;
|
|
2467
|
+
};
|
|
2468
|
+
["ShapetestaRootHeaderNav"]: {
|
|
2469
|
+
logo?: string | undefined | null;
|
|
2470
|
+
cta?: string | undefined | null;
|
|
2471
|
+
};
|
|
2472
|
+
["ShapetestaRootHeader"]: {
|
|
2473
|
+
nav?: ModelTypes["ShapetestaRootHeaderNav"] | undefined | null;
|
|
2474
|
+
};
|
|
2475
|
+
["ShapetestaRootMainHero_section"]: {
|
|
2476
|
+
hero_title?: string | undefined | null;
|
|
2477
|
+
hero_text?: string | undefined | null;
|
|
2478
|
+
hero_button?: string | undefined | null;
|
|
2479
|
+
};
|
|
2480
|
+
["ShapetestaRootMainFeatures_section"]: {
|
|
2481
|
+
features_title?: string | undefined | null;
|
|
2482
|
+
features_text?: string | undefined | null;
|
|
2483
|
+
};
|
|
2484
|
+
["ShapetestaRootMain"]: {
|
|
2485
|
+
hero_section?: ModelTypes["ShapetestaRootMainHero_section"] | undefined | null;
|
|
2486
|
+
features_section?: ModelTypes["ShapetestaRootMainFeatures_section"] | undefined | null;
|
|
2487
|
+
};
|
|
2488
|
+
["ShapetestaRoot"]: {
|
|
2489
|
+
header?: ModelTypes["ShapetestaRootHeader"] | undefined | null;
|
|
2490
|
+
main?: ModelTypes["ShapetestaRootMain"] | undefined | null;
|
|
2491
|
+
};
|
|
2492
|
+
["Shapetesta"]: {
|
|
2493
|
+
root?: ModelTypes["ShapetestaRoot"] | undefined | null;
|
|
1160
2494
|
_id: string;
|
|
1161
2495
|
createdAt?: number | undefined | null;
|
|
1162
2496
|
updatedAt?: number | undefined | null;
|
|
1163
2497
|
};
|
|
2498
|
+
["FormstepsStep1"]: {
|
|
2499
|
+
_mocks?: string | undefined | null;
|
|
2500
|
+
imie?: ModelTypes["FormTextField"] | undefined | null;
|
|
2501
|
+
source?: ModelTypes["FormRadioTextField"] | undefined | null;
|
|
2502
|
+
};
|
|
2503
|
+
["FormstepsStep2"]: {
|
|
2504
|
+
_mocks?: string | undefined | null;
|
|
2505
|
+
nazwisko?: ModelTypes["FormTextField"] | undefined | null;
|
|
2506
|
+
};
|
|
2507
|
+
["FormstepsStep3"]: {
|
|
2508
|
+
_mocks?: string | undefined | null;
|
|
2509
|
+
email?: ModelTypes["FormTextField"] | undefined | null;
|
|
2510
|
+
koniec?: ModelTypes["FormSubmitField"] | undefined | null;
|
|
2511
|
+
};
|
|
2512
|
+
["Formsteps"]: {
|
|
2513
|
+
_mocks?: string | undefined | null;
|
|
2514
|
+
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
2515
|
+
step1?: ModelTypes["FormstepsStep1"] | undefined | null;
|
|
2516
|
+
step2?: ModelTypes["FormstepsStep2"] | undefined | null;
|
|
2517
|
+
step3?: ModelTypes["FormstepsStep3"] | undefined | null;
|
|
2518
|
+
locale?: string | undefined | null;
|
|
2519
|
+
slug?: string | undefined | null;
|
|
2520
|
+
_id: string;
|
|
2521
|
+
createdAt?: string | undefined | null;
|
|
2522
|
+
updatedAt?: string | undefined | null;
|
|
2523
|
+
draft_version?: string | undefined | null;
|
|
2524
|
+
json_ld?: string | undefined | null;
|
|
2525
|
+
};
|
|
2526
|
+
["FormtestWindowBasics"]: {
|
|
2527
|
+
_mocks?: string | undefined | null;
|
|
2528
|
+
type?: ModelTypes["FormRadioTextField"] | undefined | null;
|
|
2529
|
+
};
|
|
2530
|
+
["FormtestWindowTechincals"]: {
|
|
2531
|
+
_mocks?: string | undefined | null;
|
|
2532
|
+
width?: ModelTypes["FormNumberField"] | undefined | null;
|
|
2533
|
+
height?: ModelTypes["FormNumberField"] | undefined | null;
|
|
2534
|
+
confirm?: ModelTypes["FormRouteField"] | undefined | null;
|
|
2535
|
+
};
|
|
2536
|
+
["FormtestWindow"]: {
|
|
2537
|
+
_mocks?: string | undefined | null;
|
|
2538
|
+
basics?: ModelTypes["FormtestWindowBasics"] | undefined | null;
|
|
2539
|
+
techincals?: ModelTypes["FormtestWindowTechincals"] | undefined | null;
|
|
2540
|
+
};
|
|
2541
|
+
["FormtestHome"]: {
|
|
2542
|
+
_mocks?: string | undefined | null;
|
|
2543
|
+
window?: ModelTypes["FormTextField"] | undefined | null;
|
|
2544
|
+
add?: ModelTypes["FormRouteField"] | undefined | null;
|
|
2545
|
+
};
|
|
2546
|
+
["Formtest"]: {
|
|
2547
|
+
_mocks?: string | undefined | null;
|
|
2548
|
+
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
2549
|
+
window?: ModelTypes["FormtestWindow"] | undefined | null;
|
|
2550
|
+
home?: ModelTypes["FormtestHome"] | undefined | null;
|
|
2551
|
+
locale?: string | undefined | null;
|
|
2552
|
+
slug?: string | undefined | null;
|
|
2553
|
+
_id: string;
|
|
2554
|
+
createdAt?: string | undefined | null;
|
|
2555
|
+
updatedAt?: string | undefined | null;
|
|
2556
|
+
draft_version?: string | undefined | null;
|
|
2557
|
+
json_ld?: string | undefined | null;
|
|
2558
|
+
};
|
|
1164
2559
|
["RootParamsInput"]: {
|
|
1165
2560
|
_version?: string | undefined | null;
|
|
2561
|
+
locale?: string | undefined | null;
|
|
1166
2562
|
};
|
|
1167
2563
|
["RootParamsEnum"]: RootParamsEnum;
|
|
1168
|
-
["
|
|
1169
|
-
slug?: ModelTypes["Sort"] | undefined | null;
|
|
1170
|
-
createdAt?: ModelTypes["Sort"] | undefined | null;
|
|
1171
|
-
updatedAt?: ModelTypes["Sort"] | undefined | null;
|
|
1172
|
-
};
|
|
1173
|
-
["postSortInput"]: {
|
|
2564
|
+
["docsSortInput"]: {
|
|
1174
2565
|
slug?: ModelTypes["Sort"] | undefined | null;
|
|
1175
2566
|
createdAt?: ModelTypes["Sort"] | undefined | null;
|
|
1176
2567
|
updatedAt?: ModelTypes["Sort"] | undefined | null;
|
|
1177
2568
|
};
|
|
1178
|
-
["
|
|
1179
|
-
slug?: ModelTypes["FilterInputString"] | undefined | null;
|
|
1180
|
-
};
|
|
1181
|
-
["postFilterInput"]: {
|
|
2569
|
+
["docsFilterInput"]: {
|
|
1182
2570
|
slug?: ModelTypes["FilterInputString"] | undefined | null;
|
|
1183
2571
|
};
|
|
1184
2572
|
["schema"]: {
|
|
@@ -1303,6 +2691,9 @@ export type GraphQLTypes = {
|
|
|
1303
2691
|
ne?: string | undefined | null;
|
|
1304
2692
|
contain?: string | undefined | null;
|
|
1305
2693
|
};
|
|
2694
|
+
["RootParamsAdminType"]: "scalar" & {
|
|
2695
|
+
name: "RootParamsAdminType";
|
|
2696
|
+
};
|
|
1306
2697
|
["Shape"]: {
|
|
1307
2698
|
__typename: "Shape";
|
|
1308
2699
|
name: string;
|
|
@@ -1310,7 +2701,6 @@ export type GraphQLTypes = {
|
|
|
1310
2701
|
display: string;
|
|
1311
2702
|
previewFields?: GraphQLTypes["BakedIpsumData"] | undefined | null;
|
|
1312
2703
|
prompt?: string | undefined | null;
|
|
1313
|
-
promptResponse?: GraphQLTypes["AiComponent"] | undefined | null;
|
|
1314
2704
|
fields: Array<GraphQLTypes["CMSField"]>;
|
|
1315
2705
|
};
|
|
1316
2706
|
["View"]: {
|
|
@@ -1320,14 +2710,6 @@ export type GraphQLTypes = {
|
|
|
1320
2710
|
slug: string;
|
|
1321
2711
|
display: string;
|
|
1322
2712
|
};
|
|
1323
|
-
["AiComponent"]: {
|
|
1324
|
-
__typename: "AiComponent";
|
|
1325
|
-
name: string;
|
|
1326
|
-
htmlComponent?: string | undefined | null;
|
|
1327
|
-
className: string;
|
|
1328
|
-
textContent?: string | undefined | null;
|
|
1329
|
-
children?: Array<GraphQLTypes["AiComponent"]> | undefined | null;
|
|
1330
|
-
};
|
|
1331
2713
|
["FormField"]: {
|
|
1332
2714
|
__typename: "FormField";
|
|
1333
2715
|
name: string;
|
|
@@ -1423,34 +2805,113 @@ export type GraphQLTypes = {
|
|
|
1423
2805
|
listShapes?: Array<GraphQLTypes["Shape"]> | undefined | null;
|
|
1424
2806
|
tailwind?: GraphQLTypes["TailwindConfiguration"] | undefined | null;
|
|
1425
2807
|
listForms?: Array<GraphQLTypes["Form"]> | undefined | null;
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
2808
|
+
listPaginateddocs?: GraphQLTypes["docs__Connection"] | undefined | null;
|
|
2809
|
+
onedocsBySlug?: GraphQLTypes["docs"] | undefined | null;
|
|
2810
|
+
variantsdocsBySlug?: Array<GraphQLTypes["docs"]> | undefined | null;
|
|
2811
|
+
fieldSetdocs: string;
|
|
2812
|
+
modeldocs: GraphQLTypes["ModelNavigationCompiled"];
|
|
2813
|
+
previewFieldsdocs: GraphQLTypes["ModelNavigationCompiled"];
|
|
2814
|
+
fieldSetShapecta: string;
|
|
2815
|
+
modelShapecta: GraphQLTypes["ModelNavigationCompiled"];
|
|
2816
|
+
previewFieldsShapecta: GraphQLTypes["ModelNavigationCompiled"];
|
|
2817
|
+
oneShapecta?: GraphQLTypes["Shapecta"] | undefined | null;
|
|
2818
|
+
fieldSetShapedocs_content: string;
|
|
2819
|
+
modelShapedocs_content: GraphQLTypes["ModelNavigationCompiled"];
|
|
2820
|
+
previewFieldsShapedocs_content: GraphQLTypes["ModelNavigationCompiled"];
|
|
2821
|
+
oneShapedocs_content?: GraphQLTypes["Shapedocs_content"] | undefined | null;
|
|
2822
|
+
fieldSetShapedocs_nav: string;
|
|
2823
|
+
modelShapedocs_nav: GraphQLTypes["ModelNavigationCompiled"];
|
|
2824
|
+
previewFieldsShapedocs_nav: GraphQLTypes["ModelNavigationCompiled"];
|
|
2825
|
+
oneShapedocs_nav?: GraphQLTypes["Shapedocs_nav"] | undefined | null;
|
|
2826
|
+
fieldSetShapefoot: string;
|
|
2827
|
+
modelShapefoot: GraphQLTypes["ModelNavigationCompiled"];
|
|
2828
|
+
previewFieldsShapefoot: GraphQLTypes["ModelNavigationCompiled"];
|
|
2829
|
+
oneShapefoot?: GraphQLTypes["Shapefoot"] | undefined | null;
|
|
2830
|
+
fieldSetShapehero: string;
|
|
2831
|
+
modelShapehero: GraphQLTypes["ModelNavigationCompiled"];
|
|
2832
|
+
previewFieldsShapehero: GraphQLTypes["ModelNavigationCompiled"];
|
|
2833
|
+
oneShapehero?: GraphQLTypes["Shapehero"] | undefined | null;
|
|
2834
|
+
fieldSetShapeherox: string;
|
|
2835
|
+
modelShapeherox: GraphQLTypes["ModelNavigationCompiled"];
|
|
2836
|
+
previewFieldsShapeherox: GraphQLTypes["ModelNavigationCompiled"];
|
|
2837
|
+
oneShapeherox?: GraphQLTypes["Shapeherox"] | undefined | null;
|
|
2838
|
+
fieldSetShapelearn: string;
|
|
2839
|
+
modelShapelearn: GraphQLTypes["ModelNavigationCompiled"];
|
|
2840
|
+
previewFieldsShapelearn: GraphQLTypes["ModelNavigationCompiled"];
|
|
2841
|
+
oneShapelearn?: GraphQLTypes["Shapelearn"] | undefined | null;
|
|
2842
|
+
fieldSetShapenav: string;
|
|
2843
|
+
modelShapenav: GraphQLTypes["ModelNavigationCompiled"];
|
|
2844
|
+
previewFieldsShapenav: GraphQLTypes["ModelNavigationCompiled"];
|
|
2845
|
+
oneShapenav?: GraphQLTypes["Shapenav"] | undefined | null;
|
|
2846
|
+
fieldSetShapenewshape: string;
|
|
2847
|
+
modelShapenewshape: GraphQLTypes["ModelNavigationCompiled"];
|
|
2848
|
+
previewFieldsShapenewshape: GraphQLTypes["ModelNavigationCompiled"];
|
|
2849
|
+
oneShapenewshape?: GraphQLTypes["Shapenewshape"] | undefined | null;
|
|
2850
|
+
fieldSetShapenewshapereprompt: string;
|
|
2851
|
+
modelShapenewshapereprompt: GraphQLTypes["ModelNavigationCompiled"];
|
|
2852
|
+
previewFieldsShapenewshapereprompt: GraphQLTypes["ModelNavigationCompiled"];
|
|
2853
|
+
oneShapenewshapereprompt?: GraphQLTypes["Shapenewshapereprompt"] | undefined | null;
|
|
2854
|
+
fieldSetShapenewsletter: string;
|
|
2855
|
+
modelShapenewsletter: GraphQLTypes["ModelNavigationCompiled"];
|
|
2856
|
+
previewFieldsShapenewsletter: GraphQLTypes["ModelNavigationCompiled"];
|
|
2857
|
+
oneShapenewsletter?: GraphQLTypes["Shapenewsletter"] | undefined | null;
|
|
2858
|
+
fieldSetShapepricing: string;
|
|
2859
|
+
modelShapepricing: GraphQLTypes["ModelNavigationCompiled"];
|
|
2860
|
+
previewFieldsShapepricing: GraphQLTypes["ModelNavigationCompiled"];
|
|
2861
|
+
oneShapepricing?: GraphQLTypes["Shapepricing"] | undefined | null;
|
|
2862
|
+
fieldSetShapepricingv1: string;
|
|
2863
|
+
modelShapepricingv1: GraphQLTypes["ModelNavigationCompiled"];
|
|
2864
|
+
previewFieldsShapepricingv1: GraphQLTypes["ModelNavigationCompiled"];
|
|
2865
|
+
oneShapepricingv1?: GraphQLTypes["Shapepricingv1"] | undefined | null;
|
|
2866
|
+
fieldSetShapetesta: string;
|
|
2867
|
+
modelShapetesta: GraphQLTypes["ModelNavigationCompiled"];
|
|
2868
|
+
previewFieldsShapetesta: GraphQLTypes["ModelNavigationCompiled"];
|
|
2869
|
+
oneShapetesta?: GraphQLTypes["Shapetesta"] | undefined | null;
|
|
2870
|
+
variantsViewhomepage?: Array<GraphQLTypes["Viewhomepage"]> | undefined | null;
|
|
2871
|
+
fieldSetViewhomepage: string;
|
|
2872
|
+
modelViewhomepage: GraphQLTypes["ModelNavigationCompiled"];
|
|
2873
|
+
previewFieldsViewhomepage: GraphQLTypes["ModelNavigationCompiled"];
|
|
2874
|
+
oneViewhomepage?: GraphQLTypes["Viewhomepage"] | undefined | null;
|
|
2875
|
+
variantsViewhowitworks?: Array<GraphQLTypes["Viewhowitworks"]> | undefined | null;
|
|
2876
|
+
fieldSetViewhowitworks: string;
|
|
2877
|
+
modelViewhowitworks: GraphQLTypes["ModelNavigationCompiled"];
|
|
2878
|
+
previewFieldsViewhowitworks: GraphQLTypes["ModelNavigationCompiled"];
|
|
2879
|
+
oneViewhowitworks?: GraphQLTypes["Viewhowitworks"] | undefined | null;
|
|
2880
|
+
variantsFormsteps?: Array<GraphQLTypes["Formsteps"]> | undefined | null;
|
|
2881
|
+
fieldSetFormsteps: string;
|
|
2882
|
+
modelFormsteps: GraphQLTypes["ModelNavigationCompiled"];
|
|
2883
|
+
previewFieldsFormsteps: GraphQLTypes["ModelNavigationCompiled"];
|
|
2884
|
+
oneFormsteps?: GraphQLTypes["Formsteps"] | undefined | null;
|
|
2885
|
+
variantsFormtest?: Array<GraphQLTypes["Formtest"]> | undefined | null;
|
|
2886
|
+
fieldSetFormtest: string;
|
|
2887
|
+
modelFormtest: GraphQLTypes["ModelNavigationCompiled"];
|
|
2888
|
+
previewFieldsFormtest: GraphQLTypes["ModelNavigationCompiled"];
|
|
2889
|
+
oneFormtest?: GraphQLTypes["Formtest"] | undefined | null;
|
|
2890
|
+
};
|
|
2891
|
+
["RootParamsType"]: {
|
|
2892
|
+
__typename: "RootParamsType";
|
|
2893
|
+
_version?: string | undefined | null;
|
|
2894
|
+
locale?: string | undefined | null;
|
|
1442
2895
|
};
|
|
1443
2896
|
["ModelEnum"]: ModelEnum;
|
|
2897
|
+
["ViewEnum"]: ViewEnum;
|
|
1444
2898
|
["ShapeEnum"]: ShapeEnum;
|
|
1445
|
-
["
|
|
1446
|
-
__typename: "
|
|
1447
|
-
items?: Array<GraphQLTypes["
|
|
2899
|
+
["docs__Connection"]: {
|
|
2900
|
+
__typename: "docs__Connection";
|
|
2901
|
+
items?: Array<GraphQLTypes["docs"]> | undefined | null;
|
|
1448
2902
|
pageInfo: GraphQLTypes["PageInfo"];
|
|
1449
2903
|
};
|
|
1450
|
-
["
|
|
1451
|
-
__typename: "
|
|
2904
|
+
["docs"]: {
|
|
2905
|
+
__typename: "docs";
|
|
1452
2906
|
_version?: GraphQLTypes["VersionField"] | undefined | null;
|
|
2907
|
+
title?: string | undefined | null;
|
|
2908
|
+
seotitle?: string | undefined | null;
|
|
2909
|
+
metadesc?: string | undefined | null;
|
|
2910
|
+
sortid?: number | undefined | null;
|
|
2911
|
+
main_category?: string | undefined | null;
|
|
1453
2912
|
content?: string | undefined | null;
|
|
2913
|
+
video?: GraphQLTypes["VideoField"] | undefined | null;
|
|
2914
|
+
locale?: string | undefined | null;
|
|
1454
2915
|
slug?: string | undefined | null;
|
|
1455
2916
|
_id: string;
|
|
1456
2917
|
createdAt?: number | undefined | null;
|
|
@@ -1458,17 +2919,35 @@ export type GraphQLTypes = {
|
|
|
1458
2919
|
draft_version?: boolean | undefined | null;
|
|
1459
2920
|
json_ld?: string | undefined | null;
|
|
1460
2921
|
};
|
|
1461
|
-
["
|
|
1462
|
-
__typename: "
|
|
1463
|
-
items?: Array<GraphQLTypes["post"]> | undefined | null;
|
|
1464
|
-
pageInfo: GraphQLTypes["PageInfo"];
|
|
1465
|
-
};
|
|
1466
|
-
["post"]: {
|
|
1467
|
-
__typename: "post";
|
|
2922
|
+
["Viewhomepage"]: {
|
|
2923
|
+
__typename: "Viewhomepage";
|
|
1468
2924
|
_version?: GraphQLTypes["VersionField"] | undefined | null;
|
|
2925
|
+
nav?: GraphQLTypes["Shapenav"] | undefined | null;
|
|
2926
|
+
main?: GraphQLTypes["Shapehero"] | undefined | null;
|
|
2927
|
+
hero?: GraphQLTypes["Shapeherox"] | undefined | null;
|
|
2928
|
+
learn?: GraphQLTypes["Shapelearn"] | undefined | null;
|
|
2929
|
+
pricing?: GraphQLTypes["Shapepricingv1"] | undefined | null;
|
|
2930
|
+
footer?: GraphQLTypes["Shapefoot"] | undefined | null;
|
|
2931
|
+
locale?: string | undefined | null;
|
|
2932
|
+
slug?: string | undefined | null;
|
|
2933
|
+
_id: string;
|
|
2934
|
+
createdAt?: number | undefined | null;
|
|
2935
|
+
updatedAt?: number | undefined | null;
|
|
2936
|
+
draft_version?: boolean | undefined | null;
|
|
2937
|
+
json_ld?: string | undefined | null;
|
|
2938
|
+
};
|
|
2939
|
+
["ViewhowitworksFeature_control"]: {
|
|
2940
|
+
__typename: "ViewhowitworksFeature_control";
|
|
1469
2941
|
title?: string | undefined | null;
|
|
2942
|
+
description?: string | undefined | null;
|
|
1470
2943
|
image?: GraphQLTypes["ImageField"] | undefined | null;
|
|
1471
|
-
|
|
2944
|
+
};
|
|
2945
|
+
["Viewhowitworks"]: {
|
|
2946
|
+
__typename: "Viewhowitworks";
|
|
2947
|
+
_version?: GraphQLTypes["VersionField"] | undefined | null;
|
|
2948
|
+
title?: string | undefined | null;
|
|
2949
|
+
feature_control?: GraphQLTypes["ViewhowitworksFeature_control"] | undefined | null;
|
|
2950
|
+
locale?: string | undefined | null;
|
|
1472
2951
|
slug?: string | undefined | null;
|
|
1473
2952
|
_id: string;
|
|
1474
2953
|
createdAt?: number | undefined | null;
|
|
@@ -1476,30 +2955,429 @@ export type GraphQLTypes = {
|
|
|
1476
2955
|
draft_version?: boolean | undefined | null;
|
|
1477
2956
|
json_ld?: string | undefined | null;
|
|
1478
2957
|
};
|
|
1479
|
-
["
|
|
1480
|
-
__typename: "
|
|
2958
|
+
["ShapectaCta_sectionCta_container"]: {
|
|
2959
|
+
__typename: "ShapectaCta_sectionCta_container";
|
|
2960
|
+
cta_heading?: string | undefined | null;
|
|
2961
|
+
cta_subtitle?: string | undefined | null;
|
|
2962
|
+
cta_button?: string | undefined | null;
|
|
2963
|
+
};
|
|
2964
|
+
["ShapectaCta_section"]: {
|
|
2965
|
+
__typename: "ShapectaCta_section";
|
|
2966
|
+
cta_container?: GraphQLTypes["ShapectaCta_sectionCta_container"] | undefined | null;
|
|
2967
|
+
};
|
|
2968
|
+
["Shapecta"]: {
|
|
2969
|
+
__typename: "Shapecta";
|
|
2970
|
+
cta_section?: GraphQLTypes["ShapectaCta_section"] | undefined | null;
|
|
2971
|
+
_id: string;
|
|
2972
|
+
createdAt?: number | undefined | null;
|
|
2973
|
+
updatedAt?: number | undefined | null;
|
|
2974
|
+
};
|
|
2975
|
+
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: {
|
|
2976
|
+
__typename: "Shapedocs_contentDocumentation_pageContent_containerDoc_content";
|
|
2977
|
+
content?: string | undefined | null;
|
|
2978
|
+
};
|
|
2979
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"]: {
|
|
2980
|
+
__typename: "Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container";
|
|
2981
|
+
scrollspy_title?: string | undefined | null;
|
|
2982
|
+
scrollspy_list?: string | undefined | null;
|
|
2983
|
+
};
|
|
2984
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspy"]: {
|
|
2985
|
+
__typename: "Shapedocs_contentDocumentation_pageContent_containerScrollspy";
|
|
2986
|
+
scrollspy_container?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"] | undefined | null;
|
|
2987
|
+
};
|
|
2988
|
+
["Shapedocs_contentDocumentation_pageContent_container"]: {
|
|
2989
|
+
__typename: "Shapedocs_contentDocumentation_pageContent_container";
|
|
2990
|
+
doc_content?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"] | undefined | null;
|
|
2991
|
+
scrollspy?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"] | undefined | null;
|
|
2992
|
+
};
|
|
2993
|
+
["Shapedocs_contentDocumentation_page"]: {
|
|
2994
|
+
__typename: "Shapedocs_contentDocumentation_page";
|
|
2995
|
+
content_container?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_container"] | undefined | null;
|
|
2996
|
+
};
|
|
2997
|
+
["Shapedocs_content"]: {
|
|
2998
|
+
__typename: "Shapedocs_content";
|
|
2999
|
+
documentation_page?: GraphQLTypes["Shapedocs_contentDocumentation_page"] | undefined | null;
|
|
3000
|
+
_id: string;
|
|
3001
|
+
createdAt?: number | undefined | null;
|
|
3002
|
+
updatedAt?: number | undefined | null;
|
|
3003
|
+
};
|
|
3004
|
+
["Shapedocs_navMainListChildrenCategory"]: {
|
|
3005
|
+
__typename: "Shapedocs_navMainListChildrenCategory";
|
|
3006
|
+
name?: string | undefined | null;
|
|
3007
|
+
link?: string | undefined | null;
|
|
3008
|
+
};
|
|
3009
|
+
["Shapedocs_navMainListChildren"]: {
|
|
3010
|
+
__typename: "Shapedocs_navMainListChildren";
|
|
3011
|
+
category?: Array<GraphQLTypes["Shapedocs_navMainListChildrenCategory"] | undefined | null> | undefined | null;
|
|
3012
|
+
};
|
|
3013
|
+
["Shapedocs_navMainList"]: {
|
|
3014
|
+
__typename: "Shapedocs_navMainList";
|
|
3015
|
+
title?: string | undefined | null;
|
|
3016
|
+
children?: GraphQLTypes["Shapedocs_navMainListChildren"] | undefined | null;
|
|
3017
|
+
};
|
|
3018
|
+
["Shapedocs_navMain"]: {
|
|
3019
|
+
__typename: "Shapedocs_navMain";
|
|
3020
|
+
list?: Array<GraphQLTypes["Shapedocs_navMainList"] | undefined | null> | undefined | null;
|
|
3021
|
+
};
|
|
3022
|
+
["Shapedocs_nav"]: {
|
|
3023
|
+
__typename: "Shapedocs_nav";
|
|
3024
|
+
main?: GraphQLTypes["Shapedocs_navMain"] | undefined | null;
|
|
3025
|
+
_id: string;
|
|
3026
|
+
createdAt?: number | undefined | null;
|
|
3027
|
+
updatedAt?: number | undefined | null;
|
|
3028
|
+
};
|
|
3029
|
+
["ShapefootFooterFooter_containerFooter_links"]: {
|
|
3030
|
+
__typename: "ShapefootFooterFooter_containerFooter_links";
|
|
3031
|
+
privacy_policy?: string | undefined | null;
|
|
3032
|
+
terms_of_service?: string | undefined | null;
|
|
3033
|
+
contact_us?: string | undefined | null;
|
|
3034
|
+
};
|
|
3035
|
+
["ShapefootFooterFooter_container"]: {
|
|
3036
|
+
__typename: "ShapefootFooterFooter_container";
|
|
3037
|
+
footer_logo?: string | undefined | null;
|
|
3038
|
+
footer_links?: GraphQLTypes["ShapefootFooterFooter_containerFooter_links"] | undefined | null;
|
|
3039
|
+
footer_copy?: string | undefined | null;
|
|
3040
|
+
};
|
|
3041
|
+
["ShapefootFooter"]: {
|
|
3042
|
+
__typename: "ShapefootFooter";
|
|
3043
|
+
footer_container?: GraphQLTypes["ShapefootFooterFooter_container"] | undefined | null;
|
|
3044
|
+
};
|
|
3045
|
+
["Shapefoot"]: {
|
|
3046
|
+
__typename: "Shapefoot";
|
|
3047
|
+
footer?: GraphQLTypes["ShapefootFooter"] | undefined | null;
|
|
3048
|
+
_id: string;
|
|
3049
|
+
createdAt?: number | undefined | null;
|
|
3050
|
+
updatedAt?: number | undefined | null;
|
|
3051
|
+
};
|
|
3052
|
+
["ShapeheroHero_component"]: {
|
|
3053
|
+
__typename: "ShapeheroHero_component";
|
|
3054
|
+
logoplace?: string | undefined | null;
|
|
3055
|
+
logo?: string | undefined | null;
|
|
3056
|
+
slogan?: string | undefined | null;
|
|
3057
|
+
subslogan?: string | undefined | null;
|
|
3058
|
+
};
|
|
3059
|
+
["Shapehero"]: {
|
|
3060
|
+
__typename: "Shapehero";
|
|
3061
|
+
hero_component?: GraphQLTypes["ShapeheroHero_component"] | undefined | null;
|
|
3062
|
+
_id: string;
|
|
3063
|
+
createdAt?: number | undefined | null;
|
|
3064
|
+
updatedAt?: number | undefined | null;
|
|
3065
|
+
};
|
|
3066
|
+
["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"]: {
|
|
3067
|
+
__typename: "ShapeheroxHero_sectionHero_containerText_wrapperFeatures";
|
|
3068
|
+
feature?: Array<string | undefined | null> | undefined | null;
|
|
3069
|
+
};
|
|
3070
|
+
["ShapeheroxHero_sectionHero_containerText_wrapper"]: {
|
|
3071
|
+
__typename: "ShapeheroxHero_sectionHero_containerText_wrapper";
|
|
3072
|
+
title?: string | undefined | null;
|
|
3073
|
+
description?: string | undefined | null;
|
|
3074
|
+
features?: GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"] | undefined | null;
|
|
3075
|
+
call_to_action?: string | undefined | null;
|
|
3076
|
+
};
|
|
3077
|
+
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: {
|
|
3078
|
+
__typename: "ShapeheroxHero_sectionHero_containerImage_wrapper";
|
|
3079
|
+
hero_image?: GraphQLTypes["ImageField"] | undefined | null;
|
|
3080
|
+
};
|
|
3081
|
+
["ShapeheroxHero_sectionHero_container"]: {
|
|
3082
|
+
__typename: "ShapeheroxHero_sectionHero_container";
|
|
3083
|
+
text_wrapper?: GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapper"] | undefined | null;
|
|
3084
|
+
image_wrapper?: GraphQLTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"] | undefined | null;
|
|
3085
|
+
};
|
|
3086
|
+
["ShapeheroxHero_section"]: {
|
|
3087
|
+
__typename: "ShapeheroxHero_section";
|
|
3088
|
+
hero_container?: GraphQLTypes["ShapeheroxHero_sectionHero_container"] | undefined | null;
|
|
3089
|
+
};
|
|
3090
|
+
["Shapeherox"]: {
|
|
3091
|
+
__typename: "Shapeherox";
|
|
3092
|
+
hero_section?: GraphQLTypes["ShapeheroxHero_section"] | undefined | null;
|
|
3093
|
+
_id: string;
|
|
3094
|
+
createdAt?: number | undefined | null;
|
|
3095
|
+
updatedAt?: number | undefined | null;
|
|
3096
|
+
};
|
|
3097
|
+
["ShapelearnLearning_sectionContainer"]: {
|
|
3098
|
+
__typename: "ShapelearnLearning_sectionContainer";
|
|
3099
|
+
image?: GraphQLTypes["ImageField"] | undefined | null;
|
|
3100
|
+
heading?: string | undefined | null;
|
|
3101
|
+
description?: string | undefined | null;
|
|
3102
|
+
cta_button?: string | undefined | null;
|
|
3103
|
+
};
|
|
3104
|
+
["ShapelearnLearning_section"]: {
|
|
3105
|
+
__typename: "ShapelearnLearning_section";
|
|
3106
|
+
container?: GraphQLTypes["ShapelearnLearning_sectionContainer"] | undefined | null;
|
|
3107
|
+
};
|
|
3108
|
+
["Shapelearn"]: {
|
|
3109
|
+
__typename: "Shapelearn";
|
|
3110
|
+
learning_section?: GraphQLTypes["ShapelearnLearning_section"] | undefined | null;
|
|
3111
|
+
_id: string;
|
|
3112
|
+
createdAt?: number | undefined | null;
|
|
3113
|
+
updatedAt?: number | undefined | null;
|
|
3114
|
+
};
|
|
3115
|
+
["ShapenavNavigationNavigation_linksLink"]: {
|
|
3116
|
+
__typename: "ShapenavNavigationNavigation_linksLink";
|
|
3117
|
+
display?: string | undefined | null;
|
|
3118
|
+
href?: string | undefined | null;
|
|
3119
|
+
};
|
|
3120
|
+
["ShapenavNavigationNavigation_links"]: {
|
|
3121
|
+
__typename: "ShapenavNavigationNavigation_links";
|
|
3122
|
+
link?: Array<GraphQLTypes["ShapenavNavigationNavigation_linksLink"] | undefined | null> | undefined | null;
|
|
3123
|
+
};
|
|
3124
|
+
["ShapenavNavigation"]: {
|
|
3125
|
+
__typename: "ShapenavNavigation";
|
|
3126
|
+
logo?: string | undefined | null;
|
|
3127
|
+
navigation_links?: GraphQLTypes["ShapenavNavigationNavigation_links"] | undefined | null;
|
|
3128
|
+
};
|
|
3129
|
+
["Shapenav"]: {
|
|
3130
|
+
__typename: "Shapenav";
|
|
3131
|
+
navigation?: GraphQLTypes["ShapenavNavigation"] | undefined | null;
|
|
3132
|
+
_id: string;
|
|
3133
|
+
createdAt?: number | undefined | null;
|
|
3134
|
+
updatedAt?: number | undefined | null;
|
|
3135
|
+
};
|
|
3136
|
+
["ShapenewshapeBackgroundContent"]: {
|
|
3137
|
+
__typename: "ShapenewshapeBackgroundContent";
|
|
3138
|
+
badge?: string | undefined | null;
|
|
3139
|
+
headline?: string | undefined | null;
|
|
3140
|
+
subheadline?: string | undefined | null;
|
|
3141
|
+
cta_label?: string | undefined | null;
|
|
3142
|
+
cta_href?: string | undefined | null;
|
|
3143
|
+
};
|
|
3144
|
+
["ShapenewshapeBackground"]: {
|
|
3145
|
+
__typename: "ShapenewshapeBackground";
|
|
3146
|
+
overlay_gradient?: boolean | undefined | null;
|
|
3147
|
+
content?: GraphQLTypes["ShapenewshapeBackgroundContent"] | undefined | null;
|
|
3148
|
+
hero_image?: GraphQLTypes["ImageField"] | undefined | null;
|
|
3149
|
+
};
|
|
3150
|
+
["Shapenewshape"]: {
|
|
3151
|
+
__typename: "Shapenewshape";
|
|
3152
|
+
background?: GraphQLTypes["ShapenewshapeBackground"] | undefined | null;
|
|
3153
|
+
_id: string;
|
|
3154
|
+
createdAt?: number | undefined | null;
|
|
3155
|
+
updatedAt?: number | undefined | null;
|
|
3156
|
+
};
|
|
3157
|
+
["Shapenewshapereprompt"]: {
|
|
3158
|
+
__typename: "Shapenewshapereprompt";
|
|
3159
|
+
_id: string;
|
|
3160
|
+
createdAt?: number | undefined | null;
|
|
3161
|
+
updatedAt?: number | undefined | null;
|
|
3162
|
+
};
|
|
3163
|
+
["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"]: {
|
|
3164
|
+
__typename: "ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form";
|
|
3165
|
+
email_input?: string | undefined | null;
|
|
3166
|
+
subscribe_button?: string | undefined | null;
|
|
3167
|
+
};
|
|
3168
|
+
["ShapenewsletterNewsletter_sectionNewsletter_container"]: {
|
|
3169
|
+
__typename: "ShapenewsletterNewsletter_sectionNewsletter_container";
|
|
3170
|
+
newsletter_heading?: string | undefined | null;
|
|
3171
|
+
newsletter_description?: string | undefined | null;
|
|
3172
|
+
newsletter_form?: GraphQLTypes["ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"] | undefined | null;
|
|
3173
|
+
};
|
|
3174
|
+
["ShapenewsletterNewsletter_section"]: {
|
|
3175
|
+
__typename: "ShapenewsletterNewsletter_section";
|
|
3176
|
+
newsletter_container?: GraphQLTypes["ShapenewsletterNewsletter_sectionNewsletter_container"] | undefined | null;
|
|
3177
|
+
};
|
|
3178
|
+
["Shapenewsletter"]: {
|
|
3179
|
+
__typename: "Shapenewsletter";
|
|
3180
|
+
newsletter_section?: GraphQLTypes["ShapenewsletterNewsletter_section"] | undefined | null;
|
|
3181
|
+
_id: string;
|
|
3182
|
+
createdAt?: number | undefined | null;
|
|
3183
|
+
updatedAt?: number | undefined | null;
|
|
3184
|
+
};
|
|
3185
|
+
["ShapepricingPricing_sectionPricing_header"]: {
|
|
3186
|
+
__typename: "ShapepricingPricing_sectionPricing_header";
|
|
3187
|
+
title?: string | undefined | null;
|
|
3188
|
+
sub_title?: string | undefined | null;
|
|
3189
|
+
};
|
|
3190
|
+
["ShapepricingPricing_sectionPricing_gridStarter_planPlan_features"]: {
|
|
3191
|
+
__typename: "ShapepricingPricing_sectionPricing_gridStarter_planPlan_features";
|
|
3192
|
+
feat?: Array<string | undefined | null> | undefined | null;
|
|
3193
|
+
};
|
|
3194
|
+
["ShapepricingPricing_sectionPricing_gridStarter_plan"]: {
|
|
3195
|
+
__typename: "ShapepricingPricing_sectionPricing_gridStarter_plan";
|
|
3196
|
+
plan_title?: string | undefined | null;
|
|
3197
|
+
plan_price?: string | undefined | null;
|
|
3198
|
+
plan_features?: GraphQLTypes["ShapepricingPricing_sectionPricing_gridStarter_planPlan_features"] | undefined | null;
|
|
3199
|
+
plan_cta?: string | undefined | null;
|
|
3200
|
+
};
|
|
3201
|
+
["ShapepricingPricing_sectionPricing_grid"]: {
|
|
3202
|
+
__typename: "ShapepricingPricing_sectionPricing_grid";
|
|
3203
|
+
starter_plan?: Array<GraphQLTypes["ShapepricingPricing_sectionPricing_gridStarter_plan"] | undefined | null> | undefined | null;
|
|
3204
|
+
};
|
|
3205
|
+
["ShapepricingPricing_section"]: {
|
|
3206
|
+
__typename: "ShapepricingPricing_section";
|
|
3207
|
+
pricing_header?: GraphQLTypes["ShapepricingPricing_sectionPricing_header"] | undefined | null;
|
|
3208
|
+
pricing_grid?: GraphQLTypes["ShapepricingPricing_sectionPricing_grid"] | undefined | null;
|
|
3209
|
+
};
|
|
3210
|
+
["Shapepricing"]: {
|
|
3211
|
+
__typename: "Shapepricing";
|
|
3212
|
+
pricing_section?: GraphQLTypes["ShapepricingPricing_section"] | undefined | null;
|
|
3213
|
+
_id: string;
|
|
3214
|
+
createdAt?: number | undefined | null;
|
|
3215
|
+
updatedAt?: number | undefined | null;
|
|
3216
|
+
};
|
|
3217
|
+
["Shapepricingv1Pricing_sectionHeader_wrapper"]: {
|
|
3218
|
+
__typename: "Shapepricingv1Pricing_sectionHeader_wrapper";
|
|
3219
|
+
title?: string | undefined | null;
|
|
3220
|
+
description?: string | undefined | null;
|
|
3221
|
+
};
|
|
3222
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"]: {
|
|
3223
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list";
|
|
3224
|
+
feature?: Array<string | undefined | null> | undefined | null;
|
|
3225
|
+
};
|
|
3226
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_plan"]: {
|
|
3227
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_gridFree_plan";
|
|
3228
|
+
plan_name?: string | undefined | null;
|
|
3229
|
+
price?: string | undefined | null;
|
|
3230
|
+
plan_description?: string | undefined | null;
|
|
3231
|
+
feature_list?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"] | undefined | null;
|
|
3232
|
+
cta?: string | undefined | null;
|
|
3233
|
+
};
|
|
3234
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: {
|
|
3235
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list";
|
|
3236
|
+
feature?: Array<string | undefined | null> | undefined | null;
|
|
3237
|
+
};
|
|
3238
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: {
|
|
3239
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_gridPaid_plan";
|
|
3240
|
+
plan_name?: string | undefined | null;
|
|
3241
|
+
price?: string | undefined | null;
|
|
3242
|
+
plan_description?: string | undefined | null;
|
|
3243
|
+
feature_list?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"] | undefined | null;
|
|
3244
|
+
cta?: string | undefined | null;
|
|
3245
|
+
};
|
|
3246
|
+
["Shapepricingv1Pricing_sectionPlans_grid"]: {
|
|
3247
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_grid";
|
|
3248
|
+
free_plan?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"] | undefined | null;
|
|
3249
|
+
paid_plan?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"] | undefined | null;
|
|
3250
|
+
};
|
|
3251
|
+
["Shapepricingv1Pricing_section"]: {
|
|
3252
|
+
__typename: "Shapepricingv1Pricing_section";
|
|
3253
|
+
header_wrapper?: GraphQLTypes["Shapepricingv1Pricing_sectionHeader_wrapper"] | undefined | null;
|
|
3254
|
+
plans_grid?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_grid"] | undefined | null;
|
|
3255
|
+
};
|
|
3256
|
+
["Shapepricingv1"]: {
|
|
3257
|
+
__typename: "Shapepricingv1";
|
|
3258
|
+
pricing_section?: GraphQLTypes["Shapepricingv1Pricing_section"] | undefined | null;
|
|
3259
|
+
_id: string;
|
|
3260
|
+
createdAt?: number | undefined | null;
|
|
3261
|
+
updatedAt?: number | undefined | null;
|
|
3262
|
+
};
|
|
3263
|
+
["ShapetestaRootHeaderNav"]: {
|
|
3264
|
+
__typename: "ShapetestaRootHeaderNav";
|
|
3265
|
+
logo?: string | undefined | null;
|
|
3266
|
+
cta?: string | undefined | null;
|
|
3267
|
+
};
|
|
3268
|
+
["ShapetestaRootHeader"]: {
|
|
3269
|
+
__typename: "ShapetestaRootHeader";
|
|
3270
|
+
nav?: GraphQLTypes["ShapetestaRootHeaderNav"] | undefined | null;
|
|
3271
|
+
};
|
|
3272
|
+
["ShapetestaRootMainHero_section"]: {
|
|
3273
|
+
__typename: "ShapetestaRootMainHero_section";
|
|
3274
|
+
hero_title?: string | undefined | null;
|
|
3275
|
+
hero_text?: string | undefined | null;
|
|
3276
|
+
hero_button?: string | undefined | null;
|
|
3277
|
+
};
|
|
3278
|
+
["ShapetestaRootMainFeatures_section"]: {
|
|
3279
|
+
__typename: "ShapetestaRootMainFeatures_section";
|
|
3280
|
+
features_title?: string | undefined | null;
|
|
3281
|
+
features_text?: string | undefined | null;
|
|
3282
|
+
};
|
|
3283
|
+
["ShapetestaRootMain"]: {
|
|
3284
|
+
__typename: "ShapetestaRootMain";
|
|
3285
|
+
hero_section?: GraphQLTypes["ShapetestaRootMainHero_section"] | undefined | null;
|
|
3286
|
+
features_section?: GraphQLTypes["ShapetestaRootMainFeatures_section"] | undefined | null;
|
|
3287
|
+
};
|
|
3288
|
+
["ShapetestaRoot"]: {
|
|
3289
|
+
__typename: "ShapetestaRoot";
|
|
3290
|
+
header?: GraphQLTypes["ShapetestaRootHeader"] | undefined | null;
|
|
3291
|
+
main?: GraphQLTypes["ShapetestaRootMain"] | undefined | null;
|
|
3292
|
+
};
|
|
3293
|
+
["Shapetesta"]: {
|
|
3294
|
+
__typename: "Shapetesta";
|
|
3295
|
+
root?: GraphQLTypes["ShapetestaRoot"] | undefined | null;
|
|
1481
3296
|
_id: string;
|
|
1482
3297
|
createdAt?: number | undefined | null;
|
|
1483
3298
|
updatedAt?: number | undefined | null;
|
|
1484
3299
|
};
|
|
3300
|
+
["FormstepsStep1"]: {
|
|
3301
|
+
__typename: "FormstepsStep1";
|
|
3302
|
+
_mocks?: string | undefined | null;
|
|
3303
|
+
imie?: GraphQLTypes["FormTextField"] | undefined | null;
|
|
3304
|
+
source?: GraphQLTypes["FormRadioTextField"] | undefined | null;
|
|
3305
|
+
};
|
|
3306
|
+
["FormstepsStep2"]: {
|
|
3307
|
+
__typename: "FormstepsStep2";
|
|
3308
|
+
_mocks?: string | undefined | null;
|
|
3309
|
+
nazwisko?: GraphQLTypes["FormTextField"] | undefined | null;
|
|
3310
|
+
};
|
|
3311
|
+
["FormstepsStep3"]: {
|
|
3312
|
+
__typename: "FormstepsStep3";
|
|
3313
|
+
_mocks?: string | undefined | null;
|
|
3314
|
+
email?: GraphQLTypes["FormTextField"] | undefined | null;
|
|
3315
|
+
koniec?: GraphQLTypes["FormSubmitField"] | undefined | null;
|
|
3316
|
+
};
|
|
3317
|
+
["Formsteps"]: {
|
|
3318
|
+
__typename: "Formsteps";
|
|
3319
|
+
_mocks?: string | undefined | null;
|
|
3320
|
+
_version?: GraphQLTypes["VersionField"] | undefined | null;
|
|
3321
|
+
step1?: GraphQLTypes["FormstepsStep1"] | undefined | null;
|
|
3322
|
+
step2?: GraphQLTypes["FormstepsStep2"] | undefined | null;
|
|
3323
|
+
step3?: GraphQLTypes["FormstepsStep3"] | undefined | null;
|
|
3324
|
+
locale?: string | undefined | null;
|
|
3325
|
+
slug?: string | undefined | null;
|
|
3326
|
+
_id: string;
|
|
3327
|
+
createdAt?: string | undefined | null;
|
|
3328
|
+
updatedAt?: string | undefined | null;
|
|
3329
|
+
draft_version?: string | undefined | null;
|
|
3330
|
+
json_ld?: string | undefined | null;
|
|
3331
|
+
};
|
|
3332
|
+
["FormtestWindowBasics"]: {
|
|
3333
|
+
__typename: "FormtestWindowBasics";
|
|
3334
|
+
_mocks?: string | undefined | null;
|
|
3335
|
+
type?: GraphQLTypes["FormRadioTextField"] | undefined | null;
|
|
3336
|
+
};
|
|
3337
|
+
["FormtestWindowTechincals"]: {
|
|
3338
|
+
__typename: "FormtestWindowTechincals";
|
|
3339
|
+
_mocks?: string | undefined | null;
|
|
3340
|
+
width?: GraphQLTypes["FormNumberField"] | undefined | null;
|
|
3341
|
+
height?: GraphQLTypes["FormNumberField"] | undefined | null;
|
|
3342
|
+
confirm?: GraphQLTypes["FormRouteField"] | undefined | null;
|
|
3343
|
+
};
|
|
3344
|
+
["FormtestWindow"]: {
|
|
3345
|
+
__typename: "FormtestWindow";
|
|
3346
|
+
_mocks?: string | undefined | null;
|
|
3347
|
+
basics?: GraphQLTypes["FormtestWindowBasics"] | undefined | null;
|
|
3348
|
+
techincals?: GraphQLTypes["FormtestWindowTechincals"] | undefined | null;
|
|
3349
|
+
};
|
|
3350
|
+
["FormtestHome"]: {
|
|
3351
|
+
__typename: "FormtestHome";
|
|
3352
|
+
_mocks?: string | undefined | null;
|
|
3353
|
+
window?: GraphQLTypes["FormTextField"] | undefined | null;
|
|
3354
|
+
add?: GraphQLTypes["FormRouteField"] | undefined | null;
|
|
3355
|
+
};
|
|
3356
|
+
["Formtest"]: {
|
|
3357
|
+
__typename: "Formtest";
|
|
3358
|
+
_mocks?: string | undefined | null;
|
|
3359
|
+
_version?: GraphQLTypes["VersionField"] | undefined | null;
|
|
3360
|
+
window?: GraphQLTypes["FormtestWindow"] | undefined | null;
|
|
3361
|
+
home?: GraphQLTypes["FormtestHome"] | undefined | null;
|
|
3362
|
+
locale?: string | undefined | null;
|
|
3363
|
+
slug?: string | undefined | null;
|
|
3364
|
+
_id: string;
|
|
3365
|
+
createdAt?: string | undefined | null;
|
|
3366
|
+
updatedAt?: string | undefined | null;
|
|
3367
|
+
draft_version?: string | undefined | null;
|
|
3368
|
+
json_ld?: string | undefined | null;
|
|
3369
|
+
};
|
|
1485
3370
|
["RootParamsInput"]: {
|
|
1486
3371
|
_version?: string | undefined | null;
|
|
3372
|
+
locale?: string | undefined | null;
|
|
1487
3373
|
};
|
|
1488
3374
|
["RootParamsEnum"]: RootParamsEnum;
|
|
1489
|
-
["
|
|
1490
|
-
slug?: GraphQLTypes["Sort"] | undefined | null;
|
|
1491
|
-
createdAt?: GraphQLTypes["Sort"] | undefined | null;
|
|
1492
|
-
updatedAt?: GraphQLTypes["Sort"] | undefined | null;
|
|
1493
|
-
};
|
|
1494
|
-
["postSortInput"]: {
|
|
3375
|
+
["docsSortInput"]: {
|
|
1495
3376
|
slug?: GraphQLTypes["Sort"] | undefined | null;
|
|
1496
3377
|
createdAt?: GraphQLTypes["Sort"] | undefined | null;
|
|
1497
3378
|
updatedAt?: GraphQLTypes["Sort"] | undefined | null;
|
|
1498
3379
|
};
|
|
1499
|
-
["
|
|
1500
|
-
slug?: GraphQLTypes["FilterInputString"] | undefined | null;
|
|
1501
|
-
};
|
|
1502
|
-
["postFilterInput"]: {
|
|
3380
|
+
["docsFilterInput"]: {
|
|
1503
3381
|
slug?: GraphQLTypes["FilterInputString"] | undefined | null;
|
|
1504
3382
|
};
|
|
1505
3383
|
["ID"]: "scalar" & {
|
|
@@ -1563,14 +3441,31 @@ export declare enum CMSType {
|
|
|
1563
3441
|
OBJECT_TABS = "OBJECT_TABS"
|
|
1564
3442
|
}
|
|
1565
3443
|
export declare enum ModelEnum {
|
|
1566
|
-
|
|
1567
|
-
|
|
3444
|
+
docs = "docs"
|
|
3445
|
+
}
|
|
3446
|
+
export declare enum ViewEnum {
|
|
3447
|
+
homepage = "homepage",
|
|
3448
|
+
howitworks = "howitworks"
|
|
1568
3449
|
}
|
|
1569
3450
|
export declare enum ShapeEnum {
|
|
1570
|
-
|
|
3451
|
+
cta = "cta",
|
|
3452
|
+
docs_content = "docs_content",
|
|
3453
|
+
docs_nav = "docs_nav",
|
|
3454
|
+
foot = "foot",
|
|
3455
|
+
hero = "hero",
|
|
3456
|
+
herox = "herox",
|
|
3457
|
+
learn = "learn",
|
|
3458
|
+
nav = "nav",
|
|
3459
|
+
newshape = "newshape",
|
|
3460
|
+
newshapereprompt = "newshapereprompt",
|
|
3461
|
+
newsletter = "newsletter",
|
|
3462
|
+
pricing = "pricing",
|
|
3463
|
+
pricingv1 = "pricingv1",
|
|
3464
|
+
testa = "testa"
|
|
1571
3465
|
}
|
|
1572
3466
|
export declare enum RootParamsEnum {
|
|
1573
|
-
_version = "_version"
|
|
3467
|
+
_version = "_version",
|
|
3468
|
+
locale = "locale"
|
|
1574
3469
|
}
|
|
1575
3470
|
type ZEUS_VARIABLES = {
|
|
1576
3471
|
["ObjectId"]: ValueTypes["ObjectId"];
|
|
@@ -1585,16 +3480,16 @@ type ZEUS_VARIABLES = {
|
|
|
1585
3480
|
["ConditionType"]: ValueTypes["ConditionType"];
|
|
1586
3481
|
["PageInput"]: ValueTypes["PageInput"];
|
|
1587
3482
|
["FilterInputString"]: ValueTypes["FilterInputString"];
|
|
3483
|
+
["RootParamsAdminType"]: ValueTypes["RootParamsAdminType"];
|
|
1588
3484
|
["FormFieldType"]: ValueTypes["FormFieldType"];
|
|
1589
3485
|
["CMSType"]: ValueTypes["CMSType"];
|
|
1590
3486
|
["ModelEnum"]: ValueTypes["ModelEnum"];
|
|
3487
|
+
["ViewEnum"]: ValueTypes["ViewEnum"];
|
|
1591
3488
|
["ShapeEnum"]: ValueTypes["ShapeEnum"];
|
|
1592
3489
|
["RootParamsInput"]: ValueTypes["RootParamsInput"];
|
|
1593
3490
|
["RootParamsEnum"]: ValueTypes["RootParamsEnum"];
|
|
1594
|
-
["
|
|
1595
|
-
["
|
|
1596
|
-
["demoFilterInput"]: ValueTypes["demoFilterInput"];
|
|
1597
|
-
["postFilterInput"]: ValueTypes["postFilterInput"];
|
|
3491
|
+
["docsSortInput"]: ValueTypes["docsSortInput"];
|
|
3492
|
+
["docsFilterInput"]: ValueTypes["docsFilterInput"];
|
|
1598
3493
|
["ID"]: ValueTypes["ID"];
|
|
1599
3494
|
};
|
|
1600
3495
|
export {};
|