@husar.ai/cli 0.1.5 → 0.1.7
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/index.js +30 -21
- package/dist/index.js.map +1 -1
- package/dist/zeus/const.d.ts +1 -0
- package/dist/zeus/const.js +217 -183
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +925 -769
- package/dist/zeus/index.js +18 -6
- package/dist/zeus/index.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +32 -21
- package/src/zeus/const.ts +217 -183
- package/src/zeus/index.ts +926 -774
package/dist/zeus/index.d.ts
CHANGED
|
@@ -341,6 +341,18 @@ export type ValueTypes = {
|
|
|
341
341
|
children?: ValueTypes["Condition"];
|
|
342
342
|
__typename?: boolean | `@${string}`;
|
|
343
343
|
}>;
|
|
344
|
+
["ActionType"]: ActionType;
|
|
345
|
+
["Action"]: AliasType<{
|
|
346
|
+
path?: boolean | `@${string}`;
|
|
347
|
+
type?: boolean | `@${string}`;
|
|
348
|
+
value?: boolean | `@${string}`;
|
|
349
|
+
__typename?: boolean | `@${string}`;
|
|
350
|
+
}>;
|
|
351
|
+
["Rule"]: AliasType<{
|
|
352
|
+
conditions?: ValueTypes["Condition"];
|
|
353
|
+
actions?: ValueTypes["Action"];
|
|
354
|
+
__typename?: boolean | `@${string}`;
|
|
355
|
+
}>;
|
|
344
356
|
["Visual"]: AliasType<{
|
|
345
357
|
className?: boolean | `@${string}`;
|
|
346
358
|
component?: boolean | `@${string}`;
|
|
@@ -360,6 +372,10 @@ export type ValueTypes = {
|
|
|
360
372
|
ne?: string | undefined | null | Variable<any, string>;
|
|
361
373
|
contain?: string | undefined | null | Variable<any, string>;
|
|
362
374
|
};
|
|
375
|
+
["Mutation"]: AliasType<{
|
|
376
|
+
heartbeat?: boolean | `@${string}`;
|
|
377
|
+
__typename?: boolean | `@${string}`;
|
|
378
|
+
}>;
|
|
363
379
|
["RootParamsAdminType"]: unknown;
|
|
364
380
|
["Shape"]: AliasType<{
|
|
365
381
|
name?: boolean | `@${string}`;
|
|
@@ -367,6 +383,7 @@ export type ValueTypes = {
|
|
|
367
383
|
display?: boolean | `@${string}`;
|
|
368
384
|
previewFields?: boolean | `@${string}`;
|
|
369
385
|
prompt?: boolean | `@${string}`;
|
|
386
|
+
promptResponse?: ValueTypes["AiComponent"];
|
|
370
387
|
fields?: ValueTypes["CMSField"];
|
|
371
388
|
__typename?: boolean | `@${string}`;
|
|
372
389
|
}>;
|
|
@@ -377,14 +394,27 @@ export type ValueTypes = {
|
|
|
377
394
|
display?: boolean | `@${string}`;
|
|
378
395
|
__typename?: boolean | `@${string}`;
|
|
379
396
|
}>;
|
|
397
|
+
["AiComponent"]: AliasType<{
|
|
398
|
+
name?: boolean | `@${string}`;
|
|
399
|
+
htmlComponent?: boolean | `@${string}`;
|
|
400
|
+
className?: boolean | `@${string}`;
|
|
401
|
+
textContent?: boolean | `@${string}`;
|
|
402
|
+
children?: ValueTypes["AiComponent"];
|
|
403
|
+
__typename?: boolean | `@${string}`;
|
|
404
|
+
}>;
|
|
405
|
+
["FormFieldVisual"]: AliasType<{
|
|
406
|
+
className?: boolean | `@${string}`;
|
|
407
|
+
component?: boolean | `@${string}`;
|
|
408
|
+
rules?: ValueTypes["Rule"];
|
|
409
|
+
__typename?: boolean | `@${string}`;
|
|
410
|
+
}>;
|
|
380
411
|
["FormField"]: AliasType<{
|
|
381
412
|
name?: boolean | `@${string}`;
|
|
382
413
|
display?: boolean | `@${string}`;
|
|
383
414
|
type?: boolean | `@${string}`;
|
|
384
415
|
list?: boolean | `@${string}`;
|
|
385
416
|
fields?: ValueTypes["FormField"];
|
|
386
|
-
visual?: ValueTypes["
|
|
387
|
-
conditions?: ValueTypes["Condition"];
|
|
417
|
+
visual?: ValueTypes["FormFieldVisual"];
|
|
388
418
|
placeholder?: boolean | `@${string}`;
|
|
389
419
|
root?: boolean | `@${string}`;
|
|
390
420
|
options?: boolean | `@${string}`;
|
|
@@ -456,11 +486,30 @@ export type ValueTypes = {
|
|
|
456
486
|
options?: boolean | `@${string}`;
|
|
457
487
|
__typename?: boolean | `@${string}`;
|
|
458
488
|
}>;
|
|
489
|
+
["FormCheckboxField"]: AliasType<{
|
|
490
|
+
label?: boolean | `@${string}`;
|
|
491
|
+
__typename?: boolean | `@${string}`;
|
|
492
|
+
}>;
|
|
493
|
+
["FormButtonField"]: AliasType<{
|
|
494
|
+
label?: boolean | `@${string}`;
|
|
495
|
+
__typename?: boolean | `@${string}`;
|
|
496
|
+
}>;
|
|
459
497
|
["FormProductField"]: AliasType<{
|
|
460
498
|
label?: boolean | `@${string}`;
|
|
461
499
|
name?: boolean | `@${string}`;
|
|
462
500
|
__typename?: boolean | `@${string}`;
|
|
463
501
|
}>;
|
|
502
|
+
["FormVariableField"]: AliasType<{
|
|
503
|
+
label?: boolean | `@${string}`;
|
|
504
|
+
name?: boolean | `@${string}`;
|
|
505
|
+
defaultValue?: boolean | `@${string}`;
|
|
506
|
+
__typename?: boolean | `@${string}`;
|
|
507
|
+
}>;
|
|
508
|
+
["FormDisplayField"]: AliasType<{
|
|
509
|
+
label?: boolean | `@${string}`;
|
|
510
|
+
path?: boolean | `@${string}`;
|
|
511
|
+
__typename?: boolean | `@${string}`;
|
|
512
|
+
}>;
|
|
464
513
|
["CMSType"]: CMSType;
|
|
465
514
|
["Query"]: AliasType<{
|
|
466
515
|
navigation?: ValueTypes["ModelNavigation"];
|
|
@@ -488,10 +537,6 @@ export type ValueTypes = {
|
|
|
488
537
|
fieldSetdocs?: boolean | `@${string}`;
|
|
489
538
|
modeldocs?: boolean | `@${string}`;
|
|
490
539
|
previewFieldsdocs?: boolean | `@${string}`;
|
|
491
|
-
fieldSetShapecta?: boolean | `@${string}`;
|
|
492
|
-
modelShapecta?: boolean | `@${string}`;
|
|
493
|
-
previewFieldsShapecta?: boolean | `@${string}`;
|
|
494
|
-
oneShapecta?: ValueTypes["Shapecta"];
|
|
495
540
|
fieldSetShapedocs_content?: boolean | `@${string}`;
|
|
496
541
|
modelShapedocs_content?: boolean | `@${string}`;
|
|
497
542
|
previewFieldsShapedocs_content?: boolean | `@${string}`;
|
|
@@ -500,6 +545,10 @@ export type ValueTypes = {
|
|
|
500
545
|
modelShapedocs_nav?: boolean | `@${string}`;
|
|
501
546
|
previewFieldsShapedocs_nav?: boolean | `@${string}`;
|
|
502
547
|
oneShapedocs_nav?: ValueTypes["Shapedocs_nav"];
|
|
548
|
+
fieldSetShapefeaturepresentation?: boolean | `@${string}`;
|
|
549
|
+
modelShapefeaturepresentation?: boolean | `@${string}`;
|
|
550
|
+
previewFieldsShapefeaturepresentation?: boolean | `@${string}`;
|
|
551
|
+
oneShapefeaturepresentation?: ValueTypes["Shapefeaturepresentation"];
|
|
503
552
|
fieldSetShapefoot?: boolean | `@${string}`;
|
|
504
553
|
modelShapefoot?: boolean | `@${string}`;
|
|
505
554
|
previewFieldsShapefoot?: boolean | `@${string}`;
|
|
@@ -512,10 +561,10 @@ export type ValueTypes = {
|
|
|
512
561
|
modelShapeherox?: boolean | `@${string}`;
|
|
513
562
|
previewFieldsShapeherox?: boolean | `@${string}`;
|
|
514
563
|
oneShapeherox?: ValueTypes["Shapeherox"];
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
564
|
+
fieldSetShapelista_projektow?: boolean | `@${string}`;
|
|
565
|
+
modelShapelista_projektow?: boolean | `@${string}`;
|
|
566
|
+
previewFieldsShapelista_projektow?: boolean | `@${string}`;
|
|
567
|
+
oneShapelista_projektow?: ValueTypes["Shapelista_projektow"];
|
|
519
568
|
fieldSetShapenav?: boolean | `@${string}`;
|
|
520
569
|
modelShapenav?: boolean | `@${string}`;
|
|
521
570
|
previewFieldsShapenav?: boolean | `@${string}`;
|
|
@@ -524,26 +573,36 @@ export type ValueTypes = {
|
|
|
524
573
|
modelShapenewshape?: boolean | `@${string}`;
|
|
525
574
|
previewFieldsShapenewshape?: boolean | `@${string}`;
|
|
526
575
|
oneShapenewshape?: ValueTypes["Shapenewshape"];
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
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"];
|
|
576
|
+
fieldSetShapepricing_table?: boolean | `@${string}`;
|
|
577
|
+
modelShapepricing_table?: boolean | `@${string}`;
|
|
578
|
+
previewFieldsShapepricing_table?: boolean | `@${string}`;
|
|
579
|
+
oneShapepricing_table?: ValueTypes["Shapepricing_table"];
|
|
539
580
|
fieldSetShapepricingv1?: boolean | `@${string}`;
|
|
540
581
|
modelShapepricingv1?: boolean | `@${string}`;
|
|
541
582
|
previewFieldsShapepricingv1?: boolean | `@${string}`;
|
|
542
583
|
oneShapepricingv1?: ValueTypes["Shapepricingv1"];
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
584
|
+
fieldSetShapeprofile_info?: boolean | `@${string}`;
|
|
585
|
+
modelShapeprofile_info?: boolean | `@${string}`;
|
|
586
|
+
previewFieldsShapeprofile_info?: boolean | `@${string}`;
|
|
587
|
+
oneShapeprofile_info?: ValueTypes["Shapeprofile_info"];
|
|
588
|
+
fieldSetShapeusage?: boolean | `@${string}`;
|
|
589
|
+
modelShapeusage?: boolean | `@${string}`;
|
|
590
|
+
previewFieldsShapeusage?: boolean | `@${string}`;
|
|
591
|
+
oneShapeusage?: ValueTypes["Shapeusage"];
|
|
592
|
+
variantsViewaccount?: ValueTypes["Viewaccount"];
|
|
593
|
+
fieldSetViewaccount?: boolean | `@${string}`;
|
|
594
|
+
modelViewaccount?: boolean | `@${string}`;
|
|
595
|
+
previewFieldsViewaccount?: boolean | `@${string}`;
|
|
596
|
+
oneViewaccount?: [{
|
|
597
|
+
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
598
|
+
}, ValueTypes["Viewaccount"]];
|
|
599
|
+
variantsViewfeatures?: ValueTypes["Viewfeatures"];
|
|
600
|
+
fieldSetViewfeatures?: boolean | `@${string}`;
|
|
601
|
+
modelViewfeatures?: boolean | `@${string}`;
|
|
602
|
+
previewFieldsViewfeatures?: boolean | `@${string}`;
|
|
603
|
+
oneViewfeatures?: [{
|
|
604
|
+
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
605
|
+
}, ValueTypes["Viewfeatures"]];
|
|
547
606
|
variantsViewhomepage?: ValueTypes["Viewhomepage"];
|
|
548
607
|
fieldSetViewhomepage?: boolean | `@${string}`;
|
|
549
608
|
modelViewhomepage?: boolean | `@${string}`;
|
|
@@ -558,20 +617,13 @@ export type ValueTypes = {
|
|
|
558
617
|
oneViewhowitworks?: [{
|
|
559
618
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
560
619
|
}, ValueTypes["Viewhowitworks"]];
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
620
|
+
variantsViewpricing?: ValueTypes["Viewpricing"];
|
|
621
|
+
fieldSetViewpricing?: boolean | `@${string}`;
|
|
622
|
+
modelViewpricing?: boolean | `@${string}`;
|
|
623
|
+
previewFieldsViewpricing?: boolean | `@${string}`;
|
|
624
|
+
oneViewpricing?: [{
|
|
566
625
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
567
|
-
}, ValueTypes["
|
|
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"]];
|
|
626
|
+
}, ValueTypes["Viewpricing"]];
|
|
575
627
|
__typename?: boolean | `@${string}`;
|
|
576
628
|
}>;
|
|
577
629
|
["RootParamsType"]: AliasType<{
|
|
@@ -605,12 +657,45 @@ export type ValueTypes = {
|
|
|
605
657
|
json_ld?: boolean | `@${string}`;
|
|
606
658
|
__typename?: boolean | `@${string}`;
|
|
607
659
|
}>;
|
|
660
|
+
["ViewaccountMain"]: AliasType<{
|
|
661
|
+
profile?: ValueTypes["Shapeprofile_info"];
|
|
662
|
+
projects?: ValueTypes["Shapelista_projektow"];
|
|
663
|
+
__typename?: boolean | `@${string}`;
|
|
664
|
+
}>;
|
|
665
|
+
["Viewaccount"]: AliasType<{
|
|
666
|
+
_version?: ValueTypes["VersionField"];
|
|
667
|
+
main?: ValueTypes["ViewaccountMain"];
|
|
668
|
+
locale?: boolean | `@${string}`;
|
|
669
|
+
slug?: boolean | `@${string}`;
|
|
670
|
+
_id?: boolean | `@${string}`;
|
|
671
|
+
createdAt?: boolean | `@${string}`;
|
|
672
|
+
updatedAt?: boolean | `@${string}`;
|
|
673
|
+
draft_version?: boolean | `@${string}`;
|
|
674
|
+
json_ld?: boolean | `@${string}`;
|
|
675
|
+
__typename?: boolean | `@${string}`;
|
|
676
|
+
}>;
|
|
677
|
+
["ViewfeaturesMain"]: AliasType<{
|
|
678
|
+
auto_translation?: ValueTypes["Shapefeaturepresentation"];
|
|
679
|
+
ai_component?: ValueTypes["Shapefeaturepresentation"];
|
|
680
|
+
__typename?: boolean | `@${string}`;
|
|
681
|
+
}>;
|
|
682
|
+
["Viewfeatures"]: AliasType<{
|
|
683
|
+
_version?: ValueTypes["VersionField"];
|
|
684
|
+
main?: ValueTypes["ViewfeaturesMain"];
|
|
685
|
+
locale?: boolean | `@${string}`;
|
|
686
|
+
slug?: boolean | `@${string}`;
|
|
687
|
+
_id?: boolean | `@${string}`;
|
|
688
|
+
createdAt?: boolean | `@${string}`;
|
|
689
|
+
updatedAt?: boolean | `@${string}`;
|
|
690
|
+
draft_version?: boolean | `@${string}`;
|
|
691
|
+
json_ld?: boolean | `@${string}`;
|
|
692
|
+
__typename?: boolean | `@${string}`;
|
|
693
|
+
}>;
|
|
608
694
|
["Viewhomepage"]: AliasType<{
|
|
609
695
|
_version?: ValueTypes["VersionField"];
|
|
610
696
|
nav?: ValueTypes["Shapenav"];
|
|
611
697
|
main?: ValueTypes["Shapehero"];
|
|
612
698
|
hero?: ValueTypes["Shapeherox"];
|
|
613
|
-
learn?: ValueTypes["Shapelearn"];
|
|
614
699
|
pricing?: ValueTypes["Shapepricingv1"];
|
|
615
700
|
footer?: ValueTypes["Shapefoot"];
|
|
616
701
|
locale?: boolean | `@${string}`;
|
|
@@ -641,21 +726,18 @@ export type ValueTypes = {
|
|
|
641
726
|
json_ld?: boolean | `@${string}`;
|
|
642
727
|
__typename?: boolean | `@${string}`;
|
|
643
728
|
}>;
|
|
644
|
-
["
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
cta_container?: ValueTypes["ShapectaCta_sectionCta_container"];
|
|
652
|
-
__typename?: boolean | `@${string}`;
|
|
653
|
-
}>;
|
|
654
|
-
["Shapecta"]: AliasType<{
|
|
655
|
-
cta_section?: ValueTypes["ShapectaCta_section"];
|
|
729
|
+
["Viewpricing"]: AliasType<{
|
|
730
|
+
_version?: ValueTypes["VersionField"];
|
|
731
|
+
pricing?: ValueTypes["Shapepricingv1"];
|
|
732
|
+
table?: ValueTypes["Shapepricing_table"];
|
|
733
|
+
cta?: ValueTypes["Shapenewshape"];
|
|
734
|
+
locale?: boolean | `@${string}`;
|
|
735
|
+
slug?: boolean | `@${string}`;
|
|
656
736
|
_id?: boolean | `@${string}`;
|
|
657
737
|
createdAt?: boolean | `@${string}`;
|
|
658
738
|
updatedAt?: boolean | `@${string}`;
|
|
739
|
+
draft_version?: boolean | `@${string}`;
|
|
740
|
+
json_ld?: boolean | `@${string}`;
|
|
659
741
|
__typename?: boolean | `@${string}`;
|
|
660
742
|
}>;
|
|
661
743
|
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: AliasType<{
|
|
@@ -712,6 +794,19 @@ export type ValueTypes = {
|
|
|
712
794
|
updatedAt?: boolean | `@${string}`;
|
|
713
795
|
__typename?: boolean | `@${string}`;
|
|
714
796
|
}>;
|
|
797
|
+
["ShapefeaturepresentationMain"]: AliasType<{
|
|
798
|
+
title?: boolean | `@${string}`;
|
|
799
|
+
subtitle?: boolean | `@${string}`;
|
|
800
|
+
content?: boolean | `@${string}`;
|
|
801
|
+
__typename?: boolean | `@${string}`;
|
|
802
|
+
}>;
|
|
803
|
+
["Shapefeaturepresentation"]: AliasType<{
|
|
804
|
+
main?: ValueTypes["ShapefeaturepresentationMain"];
|
|
805
|
+
_id?: boolean | `@${string}`;
|
|
806
|
+
createdAt?: boolean | `@${string}`;
|
|
807
|
+
updatedAt?: boolean | `@${string}`;
|
|
808
|
+
__typename?: boolean | `@${string}`;
|
|
809
|
+
}>;
|
|
715
810
|
["ShapefootFooterFooter_containerFooter_links"]: AliasType<{
|
|
716
811
|
privacy_policy?: boolean | `@${string}`;
|
|
717
812
|
terms_of_service?: boolean | `@${string}`;
|
|
@@ -735,10 +830,14 @@ export type ValueTypes = {
|
|
|
735
830
|
updatedAt?: boolean | `@${string}`;
|
|
736
831
|
__typename?: boolean | `@${string}`;
|
|
737
832
|
}>;
|
|
833
|
+
["ShapeheroHero_componentSlogan_parent"]: AliasType<{
|
|
834
|
+
slogan?: boolean | `@${string}`;
|
|
835
|
+
__typename?: boolean | `@${string}`;
|
|
836
|
+
}>;
|
|
738
837
|
["ShapeheroHero_component"]: AliasType<{
|
|
739
838
|
logoplace?: boolean | `@${string}`;
|
|
740
839
|
logo?: boolean | `@${string}`;
|
|
741
|
-
|
|
840
|
+
slogan_parent?: ValueTypes["ShapeheroHero_componentSlogan_parent"];
|
|
742
841
|
subslogan?: boolean | `@${string}`;
|
|
743
842
|
__typename?: boolean | `@${string}`;
|
|
744
843
|
}>;
|
|
@@ -757,16 +856,20 @@ export type ValueTypes = {
|
|
|
757
856
|
title?: boolean | `@${string}`;
|
|
758
857
|
description?: boolean | `@${string}`;
|
|
759
858
|
features?: ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"];
|
|
760
|
-
call_to_action?: boolean | `@${string}`;
|
|
761
859
|
__typename?: boolean | `@${string}`;
|
|
762
860
|
}>;
|
|
763
861
|
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: AliasType<{
|
|
764
862
|
hero_image?: ValueTypes["ImageField"];
|
|
765
863
|
__typename?: boolean | `@${string}`;
|
|
766
864
|
}>;
|
|
865
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: AliasType<{
|
|
866
|
+
video?: ValueTypes["VideoField"];
|
|
867
|
+
__typename?: boolean | `@${string}`;
|
|
868
|
+
}>;
|
|
767
869
|
["ShapeheroxHero_sectionHero_container"]: AliasType<{
|
|
768
870
|
text_wrapper?: ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapper"];
|
|
769
871
|
image_wrapper?: ValueTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"];
|
|
872
|
+
presentation?: ValueTypes["ShapeheroxHero_sectionHero_containerPresentation"];
|
|
770
873
|
__typename?: boolean | `@${string}`;
|
|
771
874
|
}>;
|
|
772
875
|
["ShapeheroxHero_section"]: AliasType<{
|
|
@@ -780,19 +883,24 @@ export type ValueTypes = {
|
|
|
780
883
|
updatedAt?: boolean | `@${string}`;
|
|
781
884
|
__typename?: boolean | `@${string}`;
|
|
782
885
|
}>;
|
|
783
|
-
["
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
886
|
+
["Shapelista_projektowListProjectsInstance"]: AliasType<{
|
|
887
|
+
title?: boolean | `@${string}`;
|
|
888
|
+
link?: boolean | `@${string}`;
|
|
889
|
+
remove_button?: boolean | `@${string}`;
|
|
890
|
+
__typename?: boolean | `@${string}`;
|
|
891
|
+
}>;
|
|
892
|
+
["Shapelista_projektowListProjects"]: AliasType<{
|
|
893
|
+
instance?: ValueTypes["Shapelista_projektowListProjectsInstance"];
|
|
788
894
|
__typename?: boolean | `@${string}`;
|
|
789
895
|
}>;
|
|
790
|
-
["
|
|
791
|
-
|
|
896
|
+
["Shapelista_projektowList"]: AliasType<{
|
|
897
|
+
title?: boolean | `@${string}`;
|
|
898
|
+
subtitle?: boolean | `@${string}`;
|
|
899
|
+
projects?: ValueTypes["Shapelista_projektowListProjects"];
|
|
792
900
|
__typename?: boolean | `@${string}`;
|
|
793
901
|
}>;
|
|
794
|
-
["
|
|
795
|
-
|
|
902
|
+
["Shapelista_projektow"]: AliasType<{
|
|
903
|
+
list?: ValueTypes["Shapelista_projektowList"];
|
|
796
904
|
_id?: boolean | `@${string}`;
|
|
797
905
|
createdAt?: boolean | `@${string}`;
|
|
798
906
|
updatedAt?: boolean | `@${string}`;
|
|
@@ -840,61 +948,35 @@ export type ValueTypes = {
|
|
|
840
948
|
updatedAt?: boolean | `@${string}`;
|
|
841
949
|
__typename?: boolean | `@${string}`;
|
|
842
950
|
}>;
|
|
843
|
-
["
|
|
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<{
|
|
951
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: AliasType<{
|
|
872
952
|
title?: boolean | `@${string}`;
|
|
873
|
-
|
|
953
|
+
description?: boolean | `@${string}`;
|
|
874
954
|
__typename?: boolean | `@${string}`;
|
|
875
955
|
}>;
|
|
876
|
-
["
|
|
877
|
-
|
|
956
|
+
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: AliasType<{
|
|
957
|
+
feature?: boolean | `@${string}`;
|
|
958
|
+
unit?: boolean | `@${string}`;
|
|
959
|
+
price?: boolean | `@${string}`;
|
|
878
960
|
__typename?: boolean | `@${string}`;
|
|
879
961
|
}>;
|
|
880
|
-
["
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
plan_cta?: boolean | `@${string}`;
|
|
962
|
+
["Shapepricing_tablePricing_sectionPricing_tableRows"]: AliasType<{
|
|
963
|
+
feature?: boolean | `@${string}`;
|
|
964
|
+
unit?: boolean | `@${string}`;
|
|
965
|
+
price?: boolean | `@${string}`;
|
|
885
966
|
__typename?: boolean | `@${string}`;
|
|
886
967
|
}>;
|
|
887
|
-
["
|
|
888
|
-
|
|
968
|
+
["Shapepricing_tablePricing_sectionPricing_table"]: AliasType<{
|
|
969
|
+
table_head?: ValueTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"];
|
|
970
|
+
rows?: ValueTypes["Shapepricing_tablePricing_sectionPricing_tableRows"];
|
|
889
971
|
__typename?: boolean | `@${string}`;
|
|
890
972
|
}>;
|
|
891
|
-
["
|
|
892
|
-
|
|
893
|
-
|
|
973
|
+
["Shapepricing_tablePricing_section"]: AliasType<{
|
|
974
|
+
header_wrapper?: ValueTypes["Shapepricing_tablePricing_sectionHeader_wrapper"];
|
|
975
|
+
pricing_table?: ValueTypes["Shapepricing_tablePricing_sectionPricing_table"];
|
|
894
976
|
__typename?: boolean | `@${string}`;
|
|
895
977
|
}>;
|
|
896
|
-
["
|
|
897
|
-
pricing_section?: ValueTypes["
|
|
978
|
+
["Shapepricing_table"]: AliasType<{
|
|
979
|
+
pricing_section?: ValueTypes["Shapepricing_tablePricing_section"];
|
|
898
980
|
_id?: boolean | `@${string}`;
|
|
899
981
|
createdAt?: boolean | `@${string}`;
|
|
900
982
|
updatedAt?: boolean | `@${string}`;
|
|
@@ -946,111 +1028,67 @@ export type ValueTypes = {
|
|
|
946
1028
|
updatedAt?: boolean | `@${string}`;
|
|
947
1029
|
__typename?: boolean | `@${string}`;
|
|
948
1030
|
}>;
|
|
949
|
-
["
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
}>;
|
|
954
|
-
["ShapetestaRootHeader"]: AliasType<{
|
|
955
|
-
nav?: ValueTypes["ShapetestaRootHeaderNav"];
|
|
1031
|
+
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: AliasType<{
|
|
1032
|
+
full_name?: boolean | `@${string}`;
|
|
1033
|
+
company?: boolean | `@${string}`;
|
|
1034
|
+
email?: boolean | `@${string}`;
|
|
956
1035
|
__typename?: boolean | `@${string}`;
|
|
957
1036
|
}>;
|
|
958
|
-
["
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
hero_button?: boolean | `@${string}`;
|
|
1037
|
+
["Shapeprofile_infoProfile_sectionAccount_header"]: AliasType<{
|
|
1038
|
+
avatar?: ValueTypes["ImageField"];
|
|
1039
|
+
info?: ValueTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"];
|
|
962
1040
|
__typename?: boolean | `@${string}`;
|
|
963
1041
|
}>;
|
|
964
|
-
["
|
|
965
|
-
|
|
966
|
-
features_text?: boolean | `@${string}`;
|
|
1042
|
+
["Shapeprofile_infoProfile_sectionPlan_status"]: AliasType<{
|
|
1043
|
+
plan?: boolean | `@${string}`;
|
|
967
1044
|
__typename?: boolean | `@${string}`;
|
|
968
1045
|
}>;
|
|
969
|
-
["
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
__typename?: boolean | `@${string}`;
|
|
973
|
-
}>;
|
|
974
|
-
["ShapetestaRoot"]: AliasType<{
|
|
975
|
-
header?: ValueTypes["ShapetestaRootHeader"];
|
|
976
|
-
main?: ValueTypes["ShapetestaRootMain"];
|
|
1046
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: AliasType<{
|
|
1047
|
+
label?: boolean | `@${string}`;
|
|
1048
|
+
value?: boolean | `@${string}`;
|
|
977
1049
|
__typename?: boolean | `@${string}`;
|
|
978
1050
|
}>;
|
|
979
|
-
["
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
createdAt?: boolean | `@${string}`;
|
|
983
|
-
updatedAt?: boolean | `@${string}`;
|
|
1051
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: AliasType<{
|
|
1052
|
+
label?: boolean | `@${string}`;
|
|
1053
|
+
value?: boolean | `@${string}`;
|
|
984
1054
|
__typename?: boolean | `@${string}`;
|
|
985
1055
|
}>;
|
|
986
|
-
["
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
source?: ValueTypes["FormRadioTextField"];
|
|
1056
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: AliasType<{
|
|
1057
|
+
label?: boolean | `@${string}`;
|
|
1058
|
+
value?: boolean | `@${string}`;
|
|
990
1059
|
__typename?: boolean | `@${string}`;
|
|
991
1060
|
}>;
|
|
992
|
-
["
|
|
993
|
-
|
|
994
|
-
|
|
1061
|
+
["Shapeprofile_infoProfile_sectionUsage_section"]: AliasType<{
|
|
1062
|
+
ai_tokens?: ValueTypes["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"];
|
|
1063
|
+
translate_tokens?: ValueTypes["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"];
|
|
1064
|
+
monthly_api_requests?: ValueTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"];
|
|
995
1065
|
__typename?: boolean | `@${string}`;
|
|
996
1066
|
}>;
|
|
997
|
-
["
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1067
|
+
["Shapeprofile_infoProfile_section"]: AliasType<{
|
|
1068
|
+
account_header?: ValueTypes["Shapeprofile_infoProfile_sectionAccount_header"];
|
|
1069
|
+
plan_status?: ValueTypes["Shapeprofile_infoProfile_sectionPlan_status"];
|
|
1070
|
+
usage_section?: ValueTypes["Shapeprofile_infoProfile_sectionUsage_section"];
|
|
1001
1071
|
__typename?: boolean | `@${string}`;
|
|
1002
1072
|
}>;
|
|
1003
|
-
["
|
|
1004
|
-
|
|
1005
|
-
_version?: ValueTypes["VersionField"];
|
|
1006
|
-
step1?: ValueTypes["FormstepsStep1"];
|
|
1007
|
-
step2?: ValueTypes["FormstepsStep2"];
|
|
1008
|
-
step3?: ValueTypes["FormstepsStep3"];
|
|
1009
|
-
locale?: boolean | `@${string}`;
|
|
1010
|
-
slug?: boolean | `@${string}`;
|
|
1073
|
+
["Shapeprofile_info"]: AliasType<{
|
|
1074
|
+
profile_section?: ValueTypes["Shapeprofile_infoProfile_section"];
|
|
1011
1075
|
_id?: boolean | `@${string}`;
|
|
1012
1076
|
createdAt?: boolean | `@${string}`;
|
|
1013
1077
|
updatedAt?: boolean | `@${string}`;
|
|
1014
|
-
draft_version?: boolean | `@${string}`;
|
|
1015
|
-
json_ld?: boolean | `@${string}`;
|
|
1016
1078
|
__typename?: boolean | `@${string}`;
|
|
1017
1079
|
}>;
|
|
1018
|
-
["
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
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"];
|
|
1080
|
+
["ShapeusageMain"]: AliasType<{
|
|
1081
|
+
title?: boolean | `@${string}`;
|
|
1082
|
+
subtitle?: boolean | `@${string}`;
|
|
1083
|
+
period?: boolean | `@${string}`;
|
|
1084
|
+
tokens_consumed?: boolean | `@${string}`;
|
|
1040
1085
|
__typename?: boolean | `@${string}`;
|
|
1041
1086
|
}>;
|
|
1042
|
-
["
|
|
1043
|
-
|
|
1044
|
-
_version?: ValueTypes["VersionField"];
|
|
1045
|
-
window?: ValueTypes["FormtestWindow"];
|
|
1046
|
-
home?: ValueTypes["FormtestHome"];
|
|
1047
|
-
locale?: boolean | `@${string}`;
|
|
1048
|
-
slug?: boolean | `@${string}`;
|
|
1087
|
+
["Shapeusage"]: AliasType<{
|
|
1088
|
+
main?: ValueTypes["ShapeusageMain"];
|
|
1049
1089
|
_id?: boolean | `@${string}`;
|
|
1050
1090
|
createdAt?: boolean | `@${string}`;
|
|
1051
1091
|
updatedAt?: boolean | `@${string}`;
|
|
1052
|
-
draft_version?: boolean | `@${string}`;
|
|
1053
|
-
json_ld?: boolean | `@${string}`;
|
|
1054
1092
|
__typename?: boolean | `@${string}`;
|
|
1055
1093
|
}>;
|
|
1056
1094
|
["RootParamsInput"]: {
|
|
@@ -1154,6 +1192,18 @@ export type ResolverInputTypes = {
|
|
|
1154
1192
|
children?: ResolverInputTypes["Condition"];
|
|
1155
1193
|
__typename?: boolean | `@${string}`;
|
|
1156
1194
|
}>;
|
|
1195
|
+
["ActionType"]: ActionType;
|
|
1196
|
+
["Action"]: AliasType<{
|
|
1197
|
+
path?: boolean | `@${string}`;
|
|
1198
|
+
type?: boolean | `@${string}`;
|
|
1199
|
+
value?: boolean | `@${string}`;
|
|
1200
|
+
__typename?: boolean | `@${string}`;
|
|
1201
|
+
}>;
|
|
1202
|
+
["Rule"]: AliasType<{
|
|
1203
|
+
conditions?: ResolverInputTypes["Condition"];
|
|
1204
|
+
actions?: ResolverInputTypes["Action"];
|
|
1205
|
+
__typename?: boolean | `@${string}`;
|
|
1206
|
+
}>;
|
|
1157
1207
|
["Visual"]: AliasType<{
|
|
1158
1208
|
className?: boolean | `@${string}`;
|
|
1159
1209
|
component?: boolean | `@${string}`;
|
|
@@ -1173,6 +1223,10 @@ export type ResolverInputTypes = {
|
|
|
1173
1223
|
ne?: string | undefined | null;
|
|
1174
1224
|
contain?: string | undefined | null;
|
|
1175
1225
|
};
|
|
1226
|
+
["Mutation"]: AliasType<{
|
|
1227
|
+
heartbeat?: boolean | `@${string}`;
|
|
1228
|
+
__typename?: boolean | `@${string}`;
|
|
1229
|
+
}>;
|
|
1176
1230
|
["RootParamsAdminType"]: unknown;
|
|
1177
1231
|
["Shape"]: AliasType<{
|
|
1178
1232
|
name?: boolean | `@${string}`;
|
|
@@ -1180,6 +1234,7 @@ export type ResolverInputTypes = {
|
|
|
1180
1234
|
display?: boolean | `@${string}`;
|
|
1181
1235
|
previewFields?: boolean | `@${string}`;
|
|
1182
1236
|
prompt?: boolean | `@${string}`;
|
|
1237
|
+
promptResponse?: ResolverInputTypes["AiComponent"];
|
|
1183
1238
|
fields?: ResolverInputTypes["CMSField"];
|
|
1184
1239
|
__typename?: boolean | `@${string}`;
|
|
1185
1240
|
}>;
|
|
@@ -1190,14 +1245,27 @@ export type ResolverInputTypes = {
|
|
|
1190
1245
|
display?: boolean | `@${string}`;
|
|
1191
1246
|
__typename?: boolean | `@${string}`;
|
|
1192
1247
|
}>;
|
|
1248
|
+
["AiComponent"]: AliasType<{
|
|
1249
|
+
name?: boolean | `@${string}`;
|
|
1250
|
+
htmlComponent?: boolean | `@${string}`;
|
|
1251
|
+
className?: boolean | `@${string}`;
|
|
1252
|
+
textContent?: boolean | `@${string}`;
|
|
1253
|
+
children?: ResolverInputTypes["AiComponent"];
|
|
1254
|
+
__typename?: boolean | `@${string}`;
|
|
1255
|
+
}>;
|
|
1256
|
+
["FormFieldVisual"]: AliasType<{
|
|
1257
|
+
className?: boolean | `@${string}`;
|
|
1258
|
+
component?: boolean | `@${string}`;
|
|
1259
|
+
rules?: ResolverInputTypes["Rule"];
|
|
1260
|
+
__typename?: boolean | `@${string}`;
|
|
1261
|
+
}>;
|
|
1193
1262
|
["FormField"]: AliasType<{
|
|
1194
1263
|
name?: boolean | `@${string}`;
|
|
1195
1264
|
display?: boolean | `@${string}`;
|
|
1196
1265
|
type?: boolean | `@${string}`;
|
|
1197
1266
|
list?: boolean | `@${string}`;
|
|
1198
1267
|
fields?: ResolverInputTypes["FormField"];
|
|
1199
|
-
visual?: ResolverInputTypes["
|
|
1200
|
-
conditions?: ResolverInputTypes["Condition"];
|
|
1268
|
+
visual?: ResolverInputTypes["FormFieldVisual"];
|
|
1201
1269
|
placeholder?: boolean | `@${string}`;
|
|
1202
1270
|
root?: boolean | `@${string}`;
|
|
1203
1271
|
options?: boolean | `@${string}`;
|
|
@@ -1269,11 +1337,30 @@ export type ResolverInputTypes = {
|
|
|
1269
1337
|
options?: boolean | `@${string}`;
|
|
1270
1338
|
__typename?: boolean | `@${string}`;
|
|
1271
1339
|
}>;
|
|
1340
|
+
["FormCheckboxField"]: AliasType<{
|
|
1341
|
+
label?: boolean | `@${string}`;
|
|
1342
|
+
__typename?: boolean | `@${string}`;
|
|
1343
|
+
}>;
|
|
1344
|
+
["FormButtonField"]: AliasType<{
|
|
1345
|
+
label?: boolean | `@${string}`;
|
|
1346
|
+
__typename?: boolean | `@${string}`;
|
|
1347
|
+
}>;
|
|
1272
1348
|
["FormProductField"]: AliasType<{
|
|
1273
1349
|
label?: boolean | `@${string}`;
|
|
1274
1350
|
name?: boolean | `@${string}`;
|
|
1275
1351
|
__typename?: boolean | `@${string}`;
|
|
1276
1352
|
}>;
|
|
1353
|
+
["FormVariableField"]: AliasType<{
|
|
1354
|
+
label?: boolean | `@${string}`;
|
|
1355
|
+
name?: boolean | `@${string}`;
|
|
1356
|
+
defaultValue?: boolean | `@${string}`;
|
|
1357
|
+
__typename?: boolean | `@${string}`;
|
|
1358
|
+
}>;
|
|
1359
|
+
["FormDisplayField"]: AliasType<{
|
|
1360
|
+
label?: boolean | `@${string}`;
|
|
1361
|
+
path?: boolean | `@${string}`;
|
|
1362
|
+
__typename?: boolean | `@${string}`;
|
|
1363
|
+
}>;
|
|
1277
1364
|
["CMSType"]: CMSType;
|
|
1278
1365
|
["Query"]: AliasType<{
|
|
1279
1366
|
navigation?: ResolverInputTypes["ModelNavigation"];
|
|
@@ -1301,10 +1388,6 @@ export type ResolverInputTypes = {
|
|
|
1301
1388
|
fieldSetdocs?: boolean | `@${string}`;
|
|
1302
1389
|
modeldocs?: boolean | `@${string}`;
|
|
1303
1390
|
previewFieldsdocs?: boolean | `@${string}`;
|
|
1304
|
-
fieldSetShapecta?: boolean | `@${string}`;
|
|
1305
|
-
modelShapecta?: boolean | `@${string}`;
|
|
1306
|
-
previewFieldsShapecta?: boolean | `@${string}`;
|
|
1307
|
-
oneShapecta?: ResolverInputTypes["Shapecta"];
|
|
1308
1391
|
fieldSetShapedocs_content?: boolean | `@${string}`;
|
|
1309
1392
|
modelShapedocs_content?: boolean | `@${string}`;
|
|
1310
1393
|
previewFieldsShapedocs_content?: boolean | `@${string}`;
|
|
@@ -1313,6 +1396,10 @@ export type ResolverInputTypes = {
|
|
|
1313
1396
|
modelShapedocs_nav?: boolean | `@${string}`;
|
|
1314
1397
|
previewFieldsShapedocs_nav?: boolean | `@${string}`;
|
|
1315
1398
|
oneShapedocs_nav?: ResolverInputTypes["Shapedocs_nav"];
|
|
1399
|
+
fieldSetShapefeaturepresentation?: boolean | `@${string}`;
|
|
1400
|
+
modelShapefeaturepresentation?: boolean | `@${string}`;
|
|
1401
|
+
previewFieldsShapefeaturepresentation?: boolean | `@${string}`;
|
|
1402
|
+
oneShapefeaturepresentation?: ResolverInputTypes["Shapefeaturepresentation"];
|
|
1316
1403
|
fieldSetShapefoot?: boolean | `@${string}`;
|
|
1317
1404
|
modelShapefoot?: boolean | `@${string}`;
|
|
1318
1405
|
previewFieldsShapefoot?: boolean | `@${string}`;
|
|
@@ -1325,10 +1412,10 @@ export type ResolverInputTypes = {
|
|
|
1325
1412
|
modelShapeherox?: boolean | `@${string}`;
|
|
1326
1413
|
previewFieldsShapeherox?: boolean | `@${string}`;
|
|
1327
1414
|
oneShapeherox?: ResolverInputTypes["Shapeherox"];
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1415
|
+
fieldSetShapelista_projektow?: boolean | `@${string}`;
|
|
1416
|
+
modelShapelista_projektow?: boolean | `@${string}`;
|
|
1417
|
+
previewFieldsShapelista_projektow?: boolean | `@${string}`;
|
|
1418
|
+
oneShapelista_projektow?: ResolverInputTypes["Shapelista_projektow"];
|
|
1332
1419
|
fieldSetShapenav?: boolean | `@${string}`;
|
|
1333
1420
|
modelShapenav?: boolean | `@${string}`;
|
|
1334
1421
|
previewFieldsShapenav?: boolean | `@${string}`;
|
|
@@ -1337,26 +1424,36 @@ export type ResolverInputTypes = {
|
|
|
1337
1424
|
modelShapenewshape?: boolean | `@${string}`;
|
|
1338
1425
|
previewFieldsShapenewshape?: boolean | `@${string}`;
|
|
1339
1426
|
oneShapenewshape?: ResolverInputTypes["Shapenewshape"];
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
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"];
|
|
1427
|
+
fieldSetShapepricing_table?: boolean | `@${string}`;
|
|
1428
|
+
modelShapepricing_table?: boolean | `@${string}`;
|
|
1429
|
+
previewFieldsShapepricing_table?: boolean | `@${string}`;
|
|
1430
|
+
oneShapepricing_table?: ResolverInputTypes["Shapepricing_table"];
|
|
1352
1431
|
fieldSetShapepricingv1?: boolean | `@${string}`;
|
|
1353
1432
|
modelShapepricingv1?: boolean | `@${string}`;
|
|
1354
1433
|
previewFieldsShapepricingv1?: boolean | `@${string}`;
|
|
1355
1434
|
oneShapepricingv1?: ResolverInputTypes["Shapepricingv1"];
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1435
|
+
fieldSetShapeprofile_info?: boolean | `@${string}`;
|
|
1436
|
+
modelShapeprofile_info?: boolean | `@${string}`;
|
|
1437
|
+
previewFieldsShapeprofile_info?: boolean | `@${string}`;
|
|
1438
|
+
oneShapeprofile_info?: ResolverInputTypes["Shapeprofile_info"];
|
|
1439
|
+
fieldSetShapeusage?: boolean | `@${string}`;
|
|
1440
|
+
modelShapeusage?: boolean | `@${string}`;
|
|
1441
|
+
previewFieldsShapeusage?: boolean | `@${string}`;
|
|
1442
|
+
oneShapeusage?: ResolverInputTypes["Shapeusage"];
|
|
1443
|
+
variantsViewaccount?: ResolverInputTypes["Viewaccount"];
|
|
1444
|
+
fieldSetViewaccount?: boolean | `@${string}`;
|
|
1445
|
+
modelViewaccount?: boolean | `@${string}`;
|
|
1446
|
+
previewFieldsViewaccount?: boolean | `@${string}`;
|
|
1447
|
+
oneViewaccount?: [{
|
|
1448
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1449
|
+
}, ResolverInputTypes["Viewaccount"]];
|
|
1450
|
+
variantsViewfeatures?: ResolverInputTypes["Viewfeatures"];
|
|
1451
|
+
fieldSetViewfeatures?: boolean | `@${string}`;
|
|
1452
|
+
modelViewfeatures?: boolean | `@${string}`;
|
|
1453
|
+
previewFieldsViewfeatures?: boolean | `@${string}`;
|
|
1454
|
+
oneViewfeatures?: [{
|
|
1455
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1456
|
+
}, ResolverInputTypes["Viewfeatures"]];
|
|
1360
1457
|
variantsViewhomepage?: ResolverInputTypes["Viewhomepage"];
|
|
1361
1458
|
fieldSetViewhomepage?: boolean | `@${string}`;
|
|
1362
1459
|
modelViewhomepage?: boolean | `@${string}`;
|
|
@@ -1371,20 +1468,13 @@ export type ResolverInputTypes = {
|
|
|
1371
1468
|
oneViewhowitworks?: [{
|
|
1372
1469
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1373
1470
|
}, ResolverInputTypes["Viewhowitworks"]];
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1471
|
+
variantsViewpricing?: ResolverInputTypes["Viewpricing"];
|
|
1472
|
+
fieldSetViewpricing?: boolean | `@${string}`;
|
|
1473
|
+
modelViewpricing?: boolean | `@${string}`;
|
|
1474
|
+
previewFieldsViewpricing?: boolean | `@${string}`;
|
|
1475
|
+
oneViewpricing?: [{
|
|
1379
1476
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1380
|
-
}, ResolverInputTypes["
|
|
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"]];
|
|
1477
|
+
}, ResolverInputTypes["Viewpricing"]];
|
|
1388
1478
|
__typename?: boolean | `@${string}`;
|
|
1389
1479
|
}>;
|
|
1390
1480
|
["RootParamsType"]: AliasType<{
|
|
@@ -1418,12 +1508,45 @@ export type ResolverInputTypes = {
|
|
|
1418
1508
|
json_ld?: boolean | `@${string}`;
|
|
1419
1509
|
__typename?: boolean | `@${string}`;
|
|
1420
1510
|
}>;
|
|
1511
|
+
["ViewaccountMain"]: AliasType<{
|
|
1512
|
+
profile?: ResolverInputTypes["Shapeprofile_info"];
|
|
1513
|
+
projects?: ResolverInputTypes["Shapelista_projektow"];
|
|
1514
|
+
__typename?: boolean | `@${string}`;
|
|
1515
|
+
}>;
|
|
1516
|
+
["Viewaccount"]: AliasType<{
|
|
1517
|
+
_version?: ResolverInputTypes["VersionField"];
|
|
1518
|
+
main?: ResolverInputTypes["ViewaccountMain"];
|
|
1519
|
+
locale?: boolean | `@${string}`;
|
|
1520
|
+
slug?: boolean | `@${string}`;
|
|
1521
|
+
_id?: boolean | `@${string}`;
|
|
1522
|
+
createdAt?: boolean | `@${string}`;
|
|
1523
|
+
updatedAt?: boolean | `@${string}`;
|
|
1524
|
+
draft_version?: boolean | `@${string}`;
|
|
1525
|
+
json_ld?: boolean | `@${string}`;
|
|
1526
|
+
__typename?: boolean | `@${string}`;
|
|
1527
|
+
}>;
|
|
1528
|
+
["ViewfeaturesMain"]: AliasType<{
|
|
1529
|
+
auto_translation?: ResolverInputTypes["Shapefeaturepresentation"];
|
|
1530
|
+
ai_component?: ResolverInputTypes["Shapefeaturepresentation"];
|
|
1531
|
+
__typename?: boolean | `@${string}`;
|
|
1532
|
+
}>;
|
|
1533
|
+
["Viewfeatures"]: AliasType<{
|
|
1534
|
+
_version?: ResolverInputTypes["VersionField"];
|
|
1535
|
+
main?: ResolverInputTypes["ViewfeaturesMain"];
|
|
1536
|
+
locale?: boolean | `@${string}`;
|
|
1537
|
+
slug?: boolean | `@${string}`;
|
|
1538
|
+
_id?: boolean | `@${string}`;
|
|
1539
|
+
createdAt?: boolean | `@${string}`;
|
|
1540
|
+
updatedAt?: boolean | `@${string}`;
|
|
1541
|
+
draft_version?: boolean | `@${string}`;
|
|
1542
|
+
json_ld?: boolean | `@${string}`;
|
|
1543
|
+
__typename?: boolean | `@${string}`;
|
|
1544
|
+
}>;
|
|
1421
1545
|
["Viewhomepage"]: AliasType<{
|
|
1422
1546
|
_version?: ResolverInputTypes["VersionField"];
|
|
1423
1547
|
nav?: ResolverInputTypes["Shapenav"];
|
|
1424
1548
|
main?: ResolverInputTypes["Shapehero"];
|
|
1425
1549
|
hero?: ResolverInputTypes["Shapeherox"];
|
|
1426
|
-
learn?: ResolverInputTypes["Shapelearn"];
|
|
1427
1550
|
pricing?: ResolverInputTypes["Shapepricingv1"];
|
|
1428
1551
|
footer?: ResolverInputTypes["Shapefoot"];
|
|
1429
1552
|
locale?: boolean | `@${string}`;
|
|
@@ -1454,21 +1577,18 @@ export type ResolverInputTypes = {
|
|
|
1454
1577
|
json_ld?: boolean | `@${string}`;
|
|
1455
1578
|
__typename?: boolean | `@${string}`;
|
|
1456
1579
|
}>;
|
|
1457
|
-
["
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
cta_container?: ResolverInputTypes["ShapectaCta_sectionCta_container"];
|
|
1465
|
-
__typename?: boolean | `@${string}`;
|
|
1466
|
-
}>;
|
|
1467
|
-
["Shapecta"]: AliasType<{
|
|
1468
|
-
cta_section?: ResolverInputTypes["ShapectaCta_section"];
|
|
1580
|
+
["Viewpricing"]: AliasType<{
|
|
1581
|
+
_version?: ResolverInputTypes["VersionField"];
|
|
1582
|
+
pricing?: ResolverInputTypes["Shapepricingv1"];
|
|
1583
|
+
table?: ResolverInputTypes["Shapepricing_table"];
|
|
1584
|
+
cta?: ResolverInputTypes["Shapenewshape"];
|
|
1585
|
+
locale?: boolean | `@${string}`;
|
|
1586
|
+
slug?: boolean | `@${string}`;
|
|
1469
1587
|
_id?: boolean | `@${string}`;
|
|
1470
1588
|
createdAt?: boolean | `@${string}`;
|
|
1471
1589
|
updatedAt?: boolean | `@${string}`;
|
|
1590
|
+
draft_version?: boolean | `@${string}`;
|
|
1591
|
+
json_ld?: boolean | `@${string}`;
|
|
1472
1592
|
__typename?: boolean | `@${string}`;
|
|
1473
1593
|
}>;
|
|
1474
1594
|
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: AliasType<{
|
|
@@ -1525,6 +1645,19 @@ export type ResolverInputTypes = {
|
|
|
1525
1645
|
updatedAt?: boolean | `@${string}`;
|
|
1526
1646
|
__typename?: boolean | `@${string}`;
|
|
1527
1647
|
}>;
|
|
1648
|
+
["ShapefeaturepresentationMain"]: AliasType<{
|
|
1649
|
+
title?: boolean | `@${string}`;
|
|
1650
|
+
subtitle?: boolean | `@${string}`;
|
|
1651
|
+
content?: boolean | `@${string}`;
|
|
1652
|
+
__typename?: boolean | `@${string}`;
|
|
1653
|
+
}>;
|
|
1654
|
+
["Shapefeaturepresentation"]: AliasType<{
|
|
1655
|
+
main?: ResolverInputTypes["ShapefeaturepresentationMain"];
|
|
1656
|
+
_id?: boolean | `@${string}`;
|
|
1657
|
+
createdAt?: boolean | `@${string}`;
|
|
1658
|
+
updatedAt?: boolean | `@${string}`;
|
|
1659
|
+
__typename?: boolean | `@${string}`;
|
|
1660
|
+
}>;
|
|
1528
1661
|
["ShapefootFooterFooter_containerFooter_links"]: AliasType<{
|
|
1529
1662
|
privacy_policy?: boolean | `@${string}`;
|
|
1530
1663
|
terms_of_service?: boolean | `@${string}`;
|
|
@@ -1548,10 +1681,14 @@ export type ResolverInputTypes = {
|
|
|
1548
1681
|
updatedAt?: boolean | `@${string}`;
|
|
1549
1682
|
__typename?: boolean | `@${string}`;
|
|
1550
1683
|
}>;
|
|
1684
|
+
["ShapeheroHero_componentSlogan_parent"]: AliasType<{
|
|
1685
|
+
slogan?: boolean | `@${string}`;
|
|
1686
|
+
__typename?: boolean | `@${string}`;
|
|
1687
|
+
}>;
|
|
1551
1688
|
["ShapeheroHero_component"]: AliasType<{
|
|
1552
1689
|
logoplace?: boolean | `@${string}`;
|
|
1553
1690
|
logo?: boolean | `@${string}`;
|
|
1554
|
-
|
|
1691
|
+
slogan_parent?: ResolverInputTypes["ShapeheroHero_componentSlogan_parent"];
|
|
1555
1692
|
subslogan?: boolean | `@${string}`;
|
|
1556
1693
|
__typename?: boolean | `@${string}`;
|
|
1557
1694
|
}>;
|
|
@@ -1570,16 +1707,20 @@ export type ResolverInputTypes = {
|
|
|
1570
1707
|
title?: boolean | `@${string}`;
|
|
1571
1708
|
description?: boolean | `@${string}`;
|
|
1572
1709
|
features?: ResolverInputTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"];
|
|
1573
|
-
call_to_action?: boolean | `@${string}`;
|
|
1574
1710
|
__typename?: boolean | `@${string}`;
|
|
1575
1711
|
}>;
|
|
1576
1712
|
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: AliasType<{
|
|
1577
1713
|
hero_image?: ResolverInputTypes["ImageField"];
|
|
1578
1714
|
__typename?: boolean | `@${string}`;
|
|
1579
1715
|
}>;
|
|
1716
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: AliasType<{
|
|
1717
|
+
video?: ResolverInputTypes["VideoField"];
|
|
1718
|
+
__typename?: boolean | `@${string}`;
|
|
1719
|
+
}>;
|
|
1580
1720
|
["ShapeheroxHero_sectionHero_container"]: AliasType<{
|
|
1581
1721
|
text_wrapper?: ResolverInputTypes["ShapeheroxHero_sectionHero_containerText_wrapper"];
|
|
1582
1722
|
image_wrapper?: ResolverInputTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"];
|
|
1723
|
+
presentation?: ResolverInputTypes["ShapeheroxHero_sectionHero_containerPresentation"];
|
|
1583
1724
|
__typename?: boolean | `@${string}`;
|
|
1584
1725
|
}>;
|
|
1585
1726
|
["ShapeheroxHero_section"]: AliasType<{
|
|
@@ -1593,19 +1734,24 @@ export type ResolverInputTypes = {
|
|
|
1593
1734
|
updatedAt?: boolean | `@${string}`;
|
|
1594
1735
|
__typename?: boolean | `@${string}`;
|
|
1595
1736
|
}>;
|
|
1596
|
-
["
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
cta_button?: boolean | `@${string}`;
|
|
1737
|
+
["Shapelista_projektowListProjectsInstance"]: AliasType<{
|
|
1738
|
+
title?: boolean | `@${string}`;
|
|
1739
|
+
link?: boolean | `@${string}`;
|
|
1740
|
+
remove_button?: boolean | `@${string}`;
|
|
1601
1741
|
__typename?: boolean | `@${string}`;
|
|
1602
1742
|
}>;
|
|
1603
|
-
["
|
|
1604
|
-
|
|
1743
|
+
["Shapelista_projektowListProjects"]: AliasType<{
|
|
1744
|
+
instance?: ResolverInputTypes["Shapelista_projektowListProjectsInstance"];
|
|
1605
1745
|
__typename?: boolean | `@${string}`;
|
|
1606
1746
|
}>;
|
|
1607
|
-
["
|
|
1608
|
-
|
|
1747
|
+
["Shapelista_projektowList"]: AliasType<{
|
|
1748
|
+
title?: boolean | `@${string}`;
|
|
1749
|
+
subtitle?: boolean | `@${string}`;
|
|
1750
|
+
projects?: ResolverInputTypes["Shapelista_projektowListProjects"];
|
|
1751
|
+
__typename?: boolean | `@${string}`;
|
|
1752
|
+
}>;
|
|
1753
|
+
["Shapelista_projektow"]: AliasType<{
|
|
1754
|
+
list?: ResolverInputTypes["Shapelista_projektowList"];
|
|
1609
1755
|
_id?: boolean | `@${string}`;
|
|
1610
1756
|
createdAt?: boolean | `@${string}`;
|
|
1611
1757
|
updatedAt?: boolean | `@${string}`;
|
|
@@ -1653,61 +1799,35 @@ export type ResolverInputTypes = {
|
|
|
1653
1799
|
updatedAt?: boolean | `@${string}`;
|
|
1654
1800
|
__typename?: boolean | `@${string}`;
|
|
1655
1801
|
}>;
|
|
1656
|
-
["
|
|
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<{
|
|
1802
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: AliasType<{
|
|
1685
1803
|
title?: boolean | `@${string}`;
|
|
1686
|
-
|
|
1804
|
+
description?: boolean | `@${string}`;
|
|
1687
1805
|
__typename?: boolean | `@${string}`;
|
|
1688
1806
|
}>;
|
|
1689
|
-
["
|
|
1690
|
-
|
|
1807
|
+
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: AliasType<{
|
|
1808
|
+
feature?: boolean | `@${string}`;
|
|
1809
|
+
unit?: boolean | `@${string}`;
|
|
1810
|
+
price?: boolean | `@${string}`;
|
|
1691
1811
|
__typename?: boolean | `@${string}`;
|
|
1692
1812
|
}>;
|
|
1693
|
-
["
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
plan_cta?: boolean | `@${string}`;
|
|
1813
|
+
["Shapepricing_tablePricing_sectionPricing_tableRows"]: AliasType<{
|
|
1814
|
+
feature?: boolean | `@${string}`;
|
|
1815
|
+
unit?: boolean | `@${string}`;
|
|
1816
|
+
price?: boolean | `@${string}`;
|
|
1698
1817
|
__typename?: boolean | `@${string}`;
|
|
1699
1818
|
}>;
|
|
1700
|
-
["
|
|
1701
|
-
|
|
1819
|
+
["Shapepricing_tablePricing_sectionPricing_table"]: AliasType<{
|
|
1820
|
+
table_head?: ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"];
|
|
1821
|
+
rows?: ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_tableRows"];
|
|
1702
1822
|
__typename?: boolean | `@${string}`;
|
|
1703
1823
|
}>;
|
|
1704
|
-
["
|
|
1705
|
-
|
|
1706
|
-
|
|
1824
|
+
["Shapepricing_tablePricing_section"]: AliasType<{
|
|
1825
|
+
header_wrapper?: ResolverInputTypes["Shapepricing_tablePricing_sectionHeader_wrapper"];
|
|
1826
|
+
pricing_table?: ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_table"];
|
|
1707
1827
|
__typename?: boolean | `@${string}`;
|
|
1708
1828
|
}>;
|
|
1709
|
-
["
|
|
1710
|
-
pricing_section?: ResolverInputTypes["
|
|
1829
|
+
["Shapepricing_table"]: AliasType<{
|
|
1830
|
+
pricing_section?: ResolverInputTypes["Shapepricing_tablePricing_section"];
|
|
1711
1831
|
_id?: boolean | `@${string}`;
|
|
1712
1832
|
createdAt?: boolean | `@${string}`;
|
|
1713
1833
|
updatedAt?: boolean | `@${string}`;
|
|
@@ -1759,111 +1879,67 @@ export type ResolverInputTypes = {
|
|
|
1759
1879
|
updatedAt?: boolean | `@${string}`;
|
|
1760
1880
|
__typename?: boolean | `@${string}`;
|
|
1761
1881
|
}>;
|
|
1762
|
-
["
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
}>;
|
|
1767
|
-
["ShapetestaRootHeader"]: AliasType<{
|
|
1768
|
-
nav?: ResolverInputTypes["ShapetestaRootHeaderNav"];
|
|
1882
|
+
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: AliasType<{
|
|
1883
|
+
full_name?: boolean | `@${string}`;
|
|
1884
|
+
company?: boolean | `@${string}`;
|
|
1885
|
+
email?: boolean | `@${string}`;
|
|
1769
1886
|
__typename?: boolean | `@${string}`;
|
|
1770
1887
|
}>;
|
|
1771
|
-
["
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
hero_button?: boolean | `@${string}`;
|
|
1888
|
+
["Shapeprofile_infoProfile_sectionAccount_header"]: AliasType<{
|
|
1889
|
+
avatar?: ResolverInputTypes["ImageField"];
|
|
1890
|
+
info?: ResolverInputTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"];
|
|
1775
1891
|
__typename?: boolean | `@${string}`;
|
|
1776
1892
|
}>;
|
|
1777
|
-
["
|
|
1778
|
-
|
|
1779
|
-
features_text?: boolean | `@${string}`;
|
|
1893
|
+
["Shapeprofile_infoProfile_sectionPlan_status"]: AliasType<{
|
|
1894
|
+
plan?: boolean | `@${string}`;
|
|
1780
1895
|
__typename?: boolean | `@${string}`;
|
|
1781
1896
|
}>;
|
|
1782
|
-
["
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
__typename?: boolean | `@${string}`;
|
|
1786
|
-
}>;
|
|
1787
|
-
["ShapetestaRoot"]: AliasType<{
|
|
1788
|
-
header?: ResolverInputTypes["ShapetestaRootHeader"];
|
|
1789
|
-
main?: ResolverInputTypes["ShapetestaRootMain"];
|
|
1897
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: AliasType<{
|
|
1898
|
+
label?: boolean | `@${string}`;
|
|
1899
|
+
value?: boolean | `@${string}`;
|
|
1790
1900
|
__typename?: boolean | `@${string}`;
|
|
1791
1901
|
}>;
|
|
1792
|
-
["
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
createdAt?: boolean | `@${string}`;
|
|
1796
|
-
updatedAt?: boolean | `@${string}`;
|
|
1902
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: AliasType<{
|
|
1903
|
+
label?: boolean | `@${string}`;
|
|
1904
|
+
value?: boolean | `@${string}`;
|
|
1797
1905
|
__typename?: boolean | `@${string}`;
|
|
1798
1906
|
}>;
|
|
1799
|
-
["
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
source?: ResolverInputTypes["FormRadioTextField"];
|
|
1907
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: AliasType<{
|
|
1908
|
+
label?: boolean | `@${string}`;
|
|
1909
|
+
value?: boolean | `@${string}`;
|
|
1803
1910
|
__typename?: boolean | `@${string}`;
|
|
1804
1911
|
}>;
|
|
1805
|
-
["
|
|
1806
|
-
|
|
1807
|
-
|
|
1912
|
+
["Shapeprofile_infoProfile_sectionUsage_section"]: AliasType<{
|
|
1913
|
+
ai_tokens?: ResolverInputTypes["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"];
|
|
1914
|
+
translate_tokens?: ResolverInputTypes["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"];
|
|
1915
|
+
monthly_api_requests?: ResolverInputTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"];
|
|
1808
1916
|
__typename?: boolean | `@${string}`;
|
|
1809
1917
|
}>;
|
|
1810
|
-
["
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1918
|
+
["Shapeprofile_infoProfile_section"]: AliasType<{
|
|
1919
|
+
account_header?: ResolverInputTypes["Shapeprofile_infoProfile_sectionAccount_header"];
|
|
1920
|
+
plan_status?: ResolverInputTypes["Shapeprofile_infoProfile_sectionPlan_status"];
|
|
1921
|
+
usage_section?: ResolverInputTypes["Shapeprofile_infoProfile_sectionUsage_section"];
|
|
1814
1922
|
__typename?: boolean | `@${string}`;
|
|
1815
1923
|
}>;
|
|
1816
|
-
["
|
|
1817
|
-
|
|
1818
|
-
_version?: ResolverInputTypes["VersionField"];
|
|
1819
|
-
step1?: ResolverInputTypes["FormstepsStep1"];
|
|
1820
|
-
step2?: ResolverInputTypes["FormstepsStep2"];
|
|
1821
|
-
step3?: ResolverInputTypes["FormstepsStep3"];
|
|
1822
|
-
locale?: boolean | `@${string}`;
|
|
1823
|
-
slug?: boolean | `@${string}`;
|
|
1924
|
+
["Shapeprofile_info"]: AliasType<{
|
|
1925
|
+
profile_section?: ResolverInputTypes["Shapeprofile_infoProfile_section"];
|
|
1824
1926
|
_id?: boolean | `@${string}`;
|
|
1825
1927
|
createdAt?: boolean | `@${string}`;
|
|
1826
1928
|
updatedAt?: boolean | `@${string}`;
|
|
1827
|
-
draft_version?: boolean | `@${string}`;
|
|
1828
|
-
json_ld?: boolean | `@${string}`;
|
|
1829
|
-
__typename?: boolean | `@${string}`;
|
|
1830
|
-
}>;
|
|
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
1929
|
__typename?: boolean | `@${string}`;
|
|
1842
1930
|
}>;
|
|
1843
|
-
["
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
}>;
|
|
1849
|
-
["FormtestHome"]: AliasType<{
|
|
1850
|
-
_mocks?: boolean | `@${string}`;
|
|
1851
|
-
window?: ResolverInputTypes["FormTextField"];
|
|
1852
|
-
add?: ResolverInputTypes["FormRouteField"];
|
|
1931
|
+
["ShapeusageMain"]: AliasType<{
|
|
1932
|
+
title?: boolean | `@${string}`;
|
|
1933
|
+
subtitle?: boolean | `@${string}`;
|
|
1934
|
+
period?: boolean | `@${string}`;
|
|
1935
|
+
tokens_consumed?: boolean | `@${string}`;
|
|
1853
1936
|
__typename?: boolean | `@${string}`;
|
|
1854
1937
|
}>;
|
|
1855
|
-
["
|
|
1856
|
-
|
|
1857
|
-
_version?: ResolverInputTypes["VersionField"];
|
|
1858
|
-
window?: ResolverInputTypes["FormtestWindow"];
|
|
1859
|
-
home?: ResolverInputTypes["FormtestHome"];
|
|
1860
|
-
locale?: boolean | `@${string}`;
|
|
1861
|
-
slug?: boolean | `@${string}`;
|
|
1938
|
+
["Shapeusage"]: AliasType<{
|
|
1939
|
+
main?: ResolverInputTypes["ShapeusageMain"];
|
|
1862
1940
|
_id?: boolean | `@${string}`;
|
|
1863
1941
|
createdAt?: boolean | `@${string}`;
|
|
1864
1942
|
updatedAt?: boolean | `@${string}`;
|
|
1865
|
-
draft_version?: boolean | `@${string}`;
|
|
1866
|
-
json_ld?: boolean | `@${string}`;
|
|
1867
1943
|
__typename?: boolean | `@${string}`;
|
|
1868
1944
|
}>;
|
|
1869
1945
|
["RootParamsInput"]: {
|
|
@@ -1881,6 +1957,7 @@ export type ResolverInputTypes = {
|
|
|
1881
1957
|
};
|
|
1882
1958
|
["schema"]: AliasType<{
|
|
1883
1959
|
query?: ResolverInputTypes["Query"];
|
|
1960
|
+
mutation?: ResolverInputTypes["Mutation"];
|
|
1884
1961
|
__typename?: boolean | `@${string}`;
|
|
1885
1962
|
}>;
|
|
1886
1963
|
["ID"]: unknown;
|
|
@@ -1961,6 +2038,16 @@ export type ModelTypes = {
|
|
|
1961
2038
|
value?: string | undefined | null;
|
|
1962
2039
|
children?: Array<ModelTypes["Condition"]> | undefined | null;
|
|
1963
2040
|
};
|
|
2041
|
+
["ActionType"]: ActionType;
|
|
2042
|
+
["Action"]: {
|
|
2043
|
+
path: string;
|
|
2044
|
+
type: ModelTypes["ActionType"];
|
|
2045
|
+
value: string;
|
|
2046
|
+
};
|
|
2047
|
+
["Rule"]: {
|
|
2048
|
+
conditions: Array<ModelTypes["Condition"]>;
|
|
2049
|
+
actions: Array<ModelTypes["Action"]>;
|
|
2050
|
+
};
|
|
1964
2051
|
["Visual"]: {
|
|
1965
2052
|
className?: string | undefined | null;
|
|
1966
2053
|
component?: string | undefined | null;
|
|
@@ -1978,6 +2065,9 @@ export type ModelTypes = {
|
|
|
1978
2065
|
ne?: string | undefined | null;
|
|
1979
2066
|
contain?: string | undefined | null;
|
|
1980
2067
|
};
|
|
2068
|
+
["Mutation"]: {
|
|
2069
|
+
heartbeat?: string | undefined | null;
|
|
2070
|
+
};
|
|
1981
2071
|
["RootParamsAdminType"]: any;
|
|
1982
2072
|
["Shape"]: {
|
|
1983
2073
|
name: string;
|
|
@@ -1985,6 +2075,7 @@ export type ModelTypes = {
|
|
|
1985
2075
|
display: string;
|
|
1986
2076
|
previewFields?: ModelTypes["BakedIpsumData"] | undefined | null;
|
|
1987
2077
|
prompt?: string | undefined | null;
|
|
2078
|
+
promptResponse?: ModelTypes["AiComponent"] | undefined | null;
|
|
1988
2079
|
fields: Array<ModelTypes["CMSField"]>;
|
|
1989
2080
|
};
|
|
1990
2081
|
["View"]: {
|
|
@@ -1993,14 +2084,25 @@ export type ModelTypes = {
|
|
|
1993
2084
|
slug: string;
|
|
1994
2085
|
display: string;
|
|
1995
2086
|
};
|
|
2087
|
+
["AiComponent"]: {
|
|
2088
|
+
name: string;
|
|
2089
|
+
htmlComponent?: string | undefined | null;
|
|
2090
|
+
className: string;
|
|
2091
|
+
textContent?: string | undefined | null;
|
|
2092
|
+
children?: Array<ModelTypes["AiComponent"]> | undefined | null;
|
|
2093
|
+
};
|
|
2094
|
+
["FormFieldVisual"]: {
|
|
2095
|
+
className?: string | undefined | null;
|
|
2096
|
+
component?: string | undefined | null;
|
|
2097
|
+
rules?: Array<ModelTypes["Rule"]> | undefined | null;
|
|
2098
|
+
};
|
|
1996
2099
|
["FormField"]: {
|
|
1997
2100
|
name: string;
|
|
1998
2101
|
display?: string | undefined | null;
|
|
1999
2102
|
type: ModelTypes["FormFieldType"];
|
|
2000
2103
|
list?: boolean | undefined | null;
|
|
2001
2104
|
fields?: Array<ModelTypes["FormField"]> | undefined | null;
|
|
2002
|
-
visual?: ModelTypes["
|
|
2003
|
-
conditions?: ModelTypes["Condition"] | undefined | null;
|
|
2105
|
+
visual?: ModelTypes["FormFieldVisual"] | undefined | null;
|
|
2004
2106
|
placeholder?: string | undefined | null;
|
|
2005
2107
|
root?: boolean | undefined | null;
|
|
2006
2108
|
options?: Array<string> | undefined | null;
|
|
@@ -2057,10 +2159,25 @@ export type ModelTypes = {
|
|
|
2057
2159
|
label?: string | undefined | null;
|
|
2058
2160
|
options?: Array<string> | undefined | null;
|
|
2059
2161
|
};
|
|
2162
|
+
["FormCheckboxField"]: {
|
|
2163
|
+
label?: string | undefined | null;
|
|
2164
|
+
};
|
|
2165
|
+
["FormButtonField"]: {
|
|
2166
|
+
label?: string | undefined | null;
|
|
2167
|
+
};
|
|
2060
2168
|
["FormProductField"]: {
|
|
2061
2169
|
label?: string | undefined | null;
|
|
2062
2170
|
name?: string | undefined | null;
|
|
2063
2171
|
};
|
|
2172
|
+
["FormVariableField"]: {
|
|
2173
|
+
label?: string | undefined | null;
|
|
2174
|
+
name?: string | undefined | null;
|
|
2175
|
+
defaultValue?: string | undefined | null;
|
|
2176
|
+
};
|
|
2177
|
+
["FormDisplayField"]: {
|
|
2178
|
+
label?: string | undefined | null;
|
|
2179
|
+
path?: string | undefined | null;
|
|
2180
|
+
};
|
|
2064
2181
|
["CMSType"]: CMSType;
|
|
2065
2182
|
["Query"]: {
|
|
2066
2183
|
navigation?: Array<ModelTypes["ModelNavigation"]> | undefined | null;
|
|
@@ -2077,10 +2194,6 @@ export type ModelTypes = {
|
|
|
2077
2194
|
fieldSetdocs: string;
|
|
2078
2195
|
modeldocs: ModelTypes["ModelNavigationCompiled"];
|
|
2079
2196
|
previewFieldsdocs: ModelTypes["ModelNavigationCompiled"];
|
|
2080
|
-
fieldSetShapecta: string;
|
|
2081
|
-
modelShapecta: ModelTypes["ModelNavigationCompiled"];
|
|
2082
|
-
previewFieldsShapecta: ModelTypes["ModelNavigationCompiled"];
|
|
2083
|
-
oneShapecta?: ModelTypes["Shapecta"] | undefined | null;
|
|
2084
2197
|
fieldSetShapedocs_content: string;
|
|
2085
2198
|
modelShapedocs_content: ModelTypes["ModelNavigationCompiled"];
|
|
2086
2199
|
previewFieldsShapedocs_content: ModelTypes["ModelNavigationCompiled"];
|
|
@@ -2089,6 +2202,10 @@ export type ModelTypes = {
|
|
|
2089
2202
|
modelShapedocs_nav: ModelTypes["ModelNavigationCompiled"];
|
|
2090
2203
|
previewFieldsShapedocs_nav: ModelTypes["ModelNavigationCompiled"];
|
|
2091
2204
|
oneShapedocs_nav?: ModelTypes["Shapedocs_nav"] | undefined | null;
|
|
2205
|
+
fieldSetShapefeaturepresentation: string;
|
|
2206
|
+
modelShapefeaturepresentation: ModelTypes["ModelNavigationCompiled"];
|
|
2207
|
+
previewFieldsShapefeaturepresentation: ModelTypes["ModelNavigationCompiled"];
|
|
2208
|
+
oneShapefeaturepresentation?: ModelTypes["Shapefeaturepresentation"] | undefined | null;
|
|
2092
2209
|
fieldSetShapefoot: string;
|
|
2093
2210
|
modelShapefoot: ModelTypes["ModelNavigationCompiled"];
|
|
2094
2211
|
previewFieldsShapefoot: ModelTypes["ModelNavigationCompiled"];
|
|
@@ -2101,10 +2218,10 @@ export type ModelTypes = {
|
|
|
2101
2218
|
modelShapeherox: ModelTypes["ModelNavigationCompiled"];
|
|
2102
2219
|
previewFieldsShapeherox: ModelTypes["ModelNavigationCompiled"];
|
|
2103
2220
|
oneShapeherox?: ModelTypes["Shapeherox"] | undefined | null;
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2221
|
+
fieldSetShapelista_projektow: string;
|
|
2222
|
+
modelShapelista_projektow: ModelTypes["ModelNavigationCompiled"];
|
|
2223
|
+
previewFieldsShapelista_projektow: ModelTypes["ModelNavigationCompiled"];
|
|
2224
|
+
oneShapelista_projektow?: ModelTypes["Shapelista_projektow"] | undefined | null;
|
|
2108
2225
|
fieldSetShapenav: string;
|
|
2109
2226
|
modelShapenav: ModelTypes["ModelNavigationCompiled"];
|
|
2110
2227
|
previewFieldsShapenav: ModelTypes["ModelNavigationCompiled"];
|
|
@@ -2113,26 +2230,32 @@ export type ModelTypes = {
|
|
|
2113
2230
|
modelShapenewshape: ModelTypes["ModelNavigationCompiled"];
|
|
2114
2231
|
previewFieldsShapenewshape: ModelTypes["ModelNavigationCompiled"];
|
|
2115
2232
|
oneShapenewshape?: ModelTypes["Shapenewshape"] | undefined | null;
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
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;
|
|
2233
|
+
fieldSetShapepricing_table: string;
|
|
2234
|
+
modelShapepricing_table: ModelTypes["ModelNavigationCompiled"];
|
|
2235
|
+
previewFieldsShapepricing_table: ModelTypes["ModelNavigationCompiled"];
|
|
2236
|
+
oneShapepricing_table?: ModelTypes["Shapepricing_table"] | undefined | null;
|
|
2128
2237
|
fieldSetShapepricingv1: string;
|
|
2129
2238
|
modelShapepricingv1: ModelTypes["ModelNavigationCompiled"];
|
|
2130
2239
|
previewFieldsShapepricingv1: ModelTypes["ModelNavigationCompiled"];
|
|
2131
2240
|
oneShapepricingv1?: ModelTypes["Shapepricingv1"] | undefined | null;
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2241
|
+
fieldSetShapeprofile_info: string;
|
|
2242
|
+
modelShapeprofile_info: ModelTypes["ModelNavigationCompiled"];
|
|
2243
|
+
previewFieldsShapeprofile_info: ModelTypes["ModelNavigationCompiled"];
|
|
2244
|
+
oneShapeprofile_info?: ModelTypes["Shapeprofile_info"] | undefined | null;
|
|
2245
|
+
fieldSetShapeusage: string;
|
|
2246
|
+
modelShapeusage: ModelTypes["ModelNavigationCompiled"];
|
|
2247
|
+
previewFieldsShapeusage: ModelTypes["ModelNavigationCompiled"];
|
|
2248
|
+
oneShapeusage?: ModelTypes["Shapeusage"] | undefined | null;
|
|
2249
|
+
variantsViewaccount?: Array<ModelTypes["Viewaccount"]> | undefined | null;
|
|
2250
|
+
fieldSetViewaccount: string;
|
|
2251
|
+
modelViewaccount: ModelTypes["ModelNavigationCompiled"];
|
|
2252
|
+
previewFieldsViewaccount: ModelTypes["ModelNavigationCompiled"];
|
|
2253
|
+
oneViewaccount?: ModelTypes["Viewaccount"] | undefined | null;
|
|
2254
|
+
variantsViewfeatures?: Array<ModelTypes["Viewfeatures"]> | undefined | null;
|
|
2255
|
+
fieldSetViewfeatures: string;
|
|
2256
|
+
modelViewfeatures: ModelTypes["ModelNavigationCompiled"];
|
|
2257
|
+
previewFieldsViewfeatures: ModelTypes["ModelNavigationCompiled"];
|
|
2258
|
+
oneViewfeatures?: ModelTypes["Viewfeatures"] | undefined | null;
|
|
2136
2259
|
variantsViewhomepage?: Array<ModelTypes["Viewhomepage"]> | undefined | null;
|
|
2137
2260
|
fieldSetViewhomepage: string;
|
|
2138
2261
|
modelViewhomepage: ModelTypes["ModelNavigationCompiled"];
|
|
@@ -2143,16 +2266,11 @@ export type ModelTypes = {
|
|
|
2143
2266
|
modelViewhowitworks: ModelTypes["ModelNavigationCompiled"];
|
|
2144
2267
|
previewFieldsViewhowitworks: ModelTypes["ModelNavigationCompiled"];
|
|
2145
2268
|
oneViewhowitworks?: ModelTypes["Viewhowitworks"] | undefined | null;
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
variantsFormtest?: Array<ModelTypes["Formtest"]> | undefined | null;
|
|
2152
|
-
fieldSetFormtest: string;
|
|
2153
|
-
modelFormtest: ModelTypes["ModelNavigationCompiled"];
|
|
2154
|
-
previewFieldsFormtest: ModelTypes["ModelNavigationCompiled"];
|
|
2155
|
-
oneFormtest?: ModelTypes["Formtest"] | undefined | null;
|
|
2269
|
+
variantsViewpricing?: Array<ModelTypes["Viewpricing"]> | undefined | null;
|
|
2270
|
+
fieldSetViewpricing: string;
|
|
2271
|
+
modelViewpricing: ModelTypes["ModelNavigationCompiled"];
|
|
2272
|
+
previewFieldsViewpricing: ModelTypes["ModelNavigationCompiled"];
|
|
2273
|
+
oneViewpricing?: ModelTypes["Viewpricing"] | undefined | null;
|
|
2156
2274
|
};
|
|
2157
2275
|
["RootParamsType"]: {
|
|
2158
2276
|
_version?: string | undefined | null;
|
|
@@ -2182,12 +2300,41 @@ export type ModelTypes = {
|
|
|
2182
2300
|
draft_version?: boolean | undefined | null;
|
|
2183
2301
|
json_ld?: string | undefined | null;
|
|
2184
2302
|
};
|
|
2303
|
+
["ViewaccountMain"]: {
|
|
2304
|
+
profile?: ModelTypes["Shapeprofile_info"] | undefined | null;
|
|
2305
|
+
projects?: ModelTypes["Shapelista_projektow"] | undefined | null;
|
|
2306
|
+
};
|
|
2307
|
+
["Viewaccount"]: {
|
|
2308
|
+
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
2309
|
+
main?: ModelTypes["ViewaccountMain"] | undefined | null;
|
|
2310
|
+
locale?: string | undefined | null;
|
|
2311
|
+
slug?: string | undefined | null;
|
|
2312
|
+
_id: string;
|
|
2313
|
+
createdAt?: number | undefined | null;
|
|
2314
|
+
updatedAt?: number | undefined | null;
|
|
2315
|
+
draft_version?: boolean | undefined | null;
|
|
2316
|
+
json_ld?: string | undefined | null;
|
|
2317
|
+
};
|
|
2318
|
+
["ViewfeaturesMain"]: {
|
|
2319
|
+
auto_translation?: ModelTypes["Shapefeaturepresentation"] | undefined | null;
|
|
2320
|
+
ai_component?: ModelTypes["Shapefeaturepresentation"] | undefined | null;
|
|
2321
|
+
};
|
|
2322
|
+
["Viewfeatures"]: {
|
|
2323
|
+
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
2324
|
+
main?: ModelTypes["ViewfeaturesMain"] | undefined | null;
|
|
2325
|
+
locale?: string | undefined | null;
|
|
2326
|
+
slug?: string | undefined | null;
|
|
2327
|
+
_id: string;
|
|
2328
|
+
createdAt?: number | undefined | null;
|
|
2329
|
+
updatedAt?: number | undefined | null;
|
|
2330
|
+
draft_version?: boolean | undefined | null;
|
|
2331
|
+
json_ld?: string | undefined | null;
|
|
2332
|
+
};
|
|
2185
2333
|
["Viewhomepage"]: {
|
|
2186
2334
|
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
2187
2335
|
nav?: ModelTypes["Shapenav"] | undefined | null;
|
|
2188
2336
|
main?: ModelTypes["Shapehero"] | undefined | null;
|
|
2189
2337
|
hero?: ModelTypes["Shapeherox"] | undefined | null;
|
|
2190
|
-
learn?: ModelTypes["Shapelearn"] | undefined | null;
|
|
2191
2338
|
pricing?: ModelTypes["Shapepricingv1"] | undefined | null;
|
|
2192
2339
|
footer?: ModelTypes["Shapefoot"] | undefined | null;
|
|
2193
2340
|
locale?: string | undefined | null;
|
|
@@ -2215,19 +2362,18 @@ export type ModelTypes = {
|
|
|
2215
2362
|
draft_version?: boolean | undefined | null;
|
|
2216
2363
|
json_ld?: string | undefined | null;
|
|
2217
2364
|
};
|
|
2218
|
-
["
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
};
|
|
2226
|
-
["Shapecta"]: {
|
|
2227
|
-
cta_section?: ModelTypes["ShapectaCta_section"] | undefined | null;
|
|
2365
|
+
["Viewpricing"]: {
|
|
2366
|
+
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
2367
|
+
pricing?: ModelTypes["Shapepricingv1"] | undefined | null;
|
|
2368
|
+
table?: ModelTypes["Shapepricing_table"] | undefined | null;
|
|
2369
|
+
cta?: ModelTypes["Shapenewshape"] | undefined | null;
|
|
2370
|
+
locale?: string | undefined | null;
|
|
2371
|
+
slug?: string | undefined | null;
|
|
2228
2372
|
_id: string;
|
|
2229
2373
|
createdAt?: number | undefined | null;
|
|
2230
2374
|
updatedAt?: number | undefined | null;
|
|
2375
|
+
draft_version?: boolean | undefined | null;
|
|
2376
|
+
json_ld?: string | undefined | null;
|
|
2231
2377
|
};
|
|
2232
2378
|
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: {
|
|
2233
2379
|
content?: string | undefined | null;
|
|
@@ -2272,6 +2418,17 @@ export type ModelTypes = {
|
|
|
2272
2418
|
createdAt?: number | undefined | null;
|
|
2273
2419
|
updatedAt?: number | undefined | null;
|
|
2274
2420
|
};
|
|
2421
|
+
["ShapefeaturepresentationMain"]: {
|
|
2422
|
+
title?: string | undefined | null;
|
|
2423
|
+
subtitle?: string | undefined | null;
|
|
2424
|
+
content?: string | undefined | null;
|
|
2425
|
+
};
|
|
2426
|
+
["Shapefeaturepresentation"]: {
|
|
2427
|
+
main?: ModelTypes["ShapefeaturepresentationMain"] | undefined | null;
|
|
2428
|
+
_id: string;
|
|
2429
|
+
createdAt?: number | undefined | null;
|
|
2430
|
+
updatedAt?: number | undefined | null;
|
|
2431
|
+
};
|
|
2275
2432
|
["ShapefootFooterFooter_containerFooter_links"]: {
|
|
2276
2433
|
privacy_policy?: string | undefined | null;
|
|
2277
2434
|
terms_of_service?: string | undefined | null;
|
|
@@ -2291,10 +2448,13 @@ export type ModelTypes = {
|
|
|
2291
2448
|
createdAt?: number | undefined | null;
|
|
2292
2449
|
updatedAt?: number | undefined | null;
|
|
2293
2450
|
};
|
|
2451
|
+
["ShapeheroHero_componentSlogan_parent"]: {
|
|
2452
|
+
slogan?: string | undefined | null;
|
|
2453
|
+
};
|
|
2294
2454
|
["ShapeheroHero_component"]: {
|
|
2295
2455
|
logoplace?: string | undefined | null;
|
|
2296
2456
|
logo?: string | undefined | null;
|
|
2297
|
-
|
|
2457
|
+
slogan_parent?: ModelTypes["ShapeheroHero_componentSlogan_parent"] | undefined | null;
|
|
2298
2458
|
subslogan?: string | undefined | null;
|
|
2299
2459
|
};
|
|
2300
2460
|
["Shapehero"]: {
|
|
@@ -2310,14 +2470,17 @@ export type ModelTypes = {
|
|
|
2310
2470
|
title?: string | undefined | null;
|
|
2311
2471
|
description?: string | undefined | null;
|
|
2312
2472
|
features?: ModelTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"] | undefined | null;
|
|
2313
|
-
call_to_action?: string | undefined | null;
|
|
2314
2473
|
};
|
|
2315
2474
|
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: {
|
|
2316
2475
|
hero_image?: ModelTypes["ImageField"] | undefined | null;
|
|
2317
2476
|
};
|
|
2477
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: {
|
|
2478
|
+
video?: ModelTypes["VideoField"] | undefined | null;
|
|
2479
|
+
};
|
|
2318
2480
|
["ShapeheroxHero_sectionHero_container"]: {
|
|
2319
2481
|
text_wrapper?: ModelTypes["ShapeheroxHero_sectionHero_containerText_wrapper"] | undefined | null;
|
|
2320
2482
|
image_wrapper?: ModelTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"] | undefined | null;
|
|
2483
|
+
presentation?: ModelTypes["ShapeheroxHero_sectionHero_containerPresentation"] | undefined | null;
|
|
2321
2484
|
};
|
|
2322
2485
|
["ShapeheroxHero_section"]: {
|
|
2323
2486
|
hero_container?: ModelTypes["ShapeheroxHero_sectionHero_container"] | undefined | null;
|
|
@@ -2328,17 +2491,21 @@ export type ModelTypes = {
|
|
|
2328
2491
|
createdAt?: number | undefined | null;
|
|
2329
2492
|
updatedAt?: number | undefined | null;
|
|
2330
2493
|
};
|
|
2331
|
-
["
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
cta_button?: string | undefined | null;
|
|
2494
|
+
["Shapelista_projektowListProjectsInstance"]: {
|
|
2495
|
+
title?: string | undefined | null;
|
|
2496
|
+
link?: string | undefined | null;
|
|
2497
|
+
remove_button?: string | undefined | null;
|
|
2336
2498
|
};
|
|
2337
|
-
["
|
|
2338
|
-
|
|
2499
|
+
["Shapelista_projektowListProjects"]: {
|
|
2500
|
+
instance?: Array<ModelTypes["Shapelista_projektowListProjectsInstance"] | undefined | null> | undefined | null;
|
|
2339
2501
|
};
|
|
2340
|
-
["
|
|
2341
|
-
|
|
2502
|
+
["Shapelista_projektowList"]: {
|
|
2503
|
+
title?: string | undefined | null;
|
|
2504
|
+
subtitle?: string | undefined | null;
|
|
2505
|
+
projects?: ModelTypes["Shapelista_projektowListProjects"] | undefined | null;
|
|
2506
|
+
};
|
|
2507
|
+
["Shapelista_projektow"]: {
|
|
2508
|
+
list?: ModelTypes["Shapelista_projektowList"] | undefined | null;
|
|
2342
2509
|
_id: string;
|
|
2343
2510
|
createdAt?: number | undefined | null;
|
|
2344
2511
|
updatedAt?: number | undefined | null;
|
|
@@ -2378,51 +2545,30 @@ export type ModelTypes = {
|
|
|
2378
2545
|
createdAt?: number | undefined | null;
|
|
2379
2546
|
updatedAt?: number | undefined | null;
|
|
2380
2547
|
};
|
|
2381
|
-
["
|
|
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"]: {
|
|
2548
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: {
|
|
2405
2549
|
title?: string | undefined | null;
|
|
2406
|
-
|
|
2550
|
+
description?: string | undefined | null;
|
|
2407
2551
|
};
|
|
2408
|
-
["
|
|
2409
|
-
|
|
2552
|
+
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: {
|
|
2553
|
+
feature?: string | undefined | null;
|
|
2554
|
+
unit?: string | undefined | null;
|
|
2555
|
+
price?: string | undefined | null;
|
|
2410
2556
|
};
|
|
2411
|
-
["
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
plan_cta?: string | undefined | null;
|
|
2557
|
+
["Shapepricing_tablePricing_sectionPricing_tableRows"]: {
|
|
2558
|
+
feature?: string | undefined | null;
|
|
2559
|
+
unit?: string | undefined | null;
|
|
2560
|
+
price?: string | undefined | null;
|
|
2416
2561
|
};
|
|
2417
|
-
["
|
|
2418
|
-
|
|
2562
|
+
["Shapepricing_tablePricing_sectionPricing_table"]: {
|
|
2563
|
+
table_head?: ModelTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"] | undefined | null;
|
|
2564
|
+
rows?: Array<ModelTypes["Shapepricing_tablePricing_sectionPricing_tableRows"] | undefined | null> | undefined | null;
|
|
2419
2565
|
};
|
|
2420
|
-
["
|
|
2421
|
-
|
|
2422
|
-
|
|
2566
|
+
["Shapepricing_tablePricing_section"]: {
|
|
2567
|
+
header_wrapper?: ModelTypes["Shapepricing_tablePricing_sectionHeader_wrapper"] | undefined | null;
|
|
2568
|
+
pricing_table?: ModelTypes["Shapepricing_tablePricing_sectionPricing_table"] | undefined | null;
|
|
2423
2569
|
};
|
|
2424
|
-
["
|
|
2425
|
-
pricing_section?: ModelTypes["
|
|
2570
|
+
["Shapepricing_table"]: {
|
|
2571
|
+
pricing_section?: ModelTypes["Shapepricing_tablePricing_section"] | undefined | null;
|
|
2426
2572
|
_id: string;
|
|
2427
2573
|
createdAt?: number | undefined | null;
|
|
2428
2574
|
updatedAt?: number | undefined | null;
|
|
@@ -2465,96 +2611,57 @@ export type ModelTypes = {
|
|
|
2465
2611
|
createdAt?: number | undefined | null;
|
|
2466
2612
|
updatedAt?: number | undefined | null;
|
|
2467
2613
|
};
|
|
2468
|
-
["
|
|
2469
|
-
|
|
2470
|
-
|
|
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;
|
|
2614
|
+
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: {
|
|
2615
|
+
full_name?: string | undefined | null;
|
|
2616
|
+
company?: string | undefined | null;
|
|
2617
|
+
email?: string | undefined | null;
|
|
2479
2618
|
};
|
|
2480
|
-
["
|
|
2481
|
-
|
|
2482
|
-
|
|
2619
|
+
["Shapeprofile_infoProfile_sectionAccount_header"]: {
|
|
2620
|
+
avatar?: ModelTypes["ImageField"] | undefined | null;
|
|
2621
|
+
info?: ModelTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"] | undefined | null;
|
|
2483
2622
|
};
|
|
2484
|
-
["
|
|
2485
|
-
|
|
2486
|
-
features_section?: ModelTypes["ShapetestaRootMainFeatures_section"] | undefined | null;
|
|
2623
|
+
["Shapeprofile_infoProfile_sectionPlan_status"]: {
|
|
2624
|
+
plan?: string | undefined | null;
|
|
2487
2625
|
};
|
|
2488
|
-
["
|
|
2489
|
-
|
|
2490
|
-
|
|
2626
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: {
|
|
2627
|
+
label?: string | undefined | null;
|
|
2628
|
+
value?: string | undefined | null;
|
|
2491
2629
|
};
|
|
2492
|
-
["
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
createdAt?: number | undefined | null;
|
|
2496
|
-
updatedAt?: number | undefined | null;
|
|
2630
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: {
|
|
2631
|
+
label?: string | undefined | null;
|
|
2632
|
+
value?: string | undefined | null;
|
|
2497
2633
|
};
|
|
2498
|
-
["
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
source?: ModelTypes["FormRadioTextField"] | undefined | null;
|
|
2634
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: {
|
|
2635
|
+
label?: string | undefined | null;
|
|
2636
|
+
value?: string | undefined | null;
|
|
2502
2637
|
};
|
|
2503
|
-
["
|
|
2504
|
-
|
|
2505
|
-
|
|
2638
|
+
["Shapeprofile_infoProfile_sectionUsage_section"]: {
|
|
2639
|
+
ai_tokens?: ModelTypes["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"] | undefined | null;
|
|
2640
|
+
translate_tokens?: ModelTypes["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"] | undefined | null;
|
|
2641
|
+
monthly_api_requests?: ModelTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"] | undefined | null;
|
|
2506
2642
|
};
|
|
2507
|
-
["
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2643
|
+
["Shapeprofile_infoProfile_section"]: {
|
|
2644
|
+
account_header?: ModelTypes["Shapeprofile_infoProfile_sectionAccount_header"] | undefined | null;
|
|
2645
|
+
plan_status?: ModelTypes["Shapeprofile_infoProfile_sectionPlan_status"] | undefined | null;
|
|
2646
|
+
usage_section?: ModelTypes["Shapeprofile_infoProfile_sectionUsage_section"] | undefined | null;
|
|
2511
2647
|
};
|
|
2512
|
-
["
|
|
2513
|
-
|
|
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;
|
|
2648
|
+
["Shapeprofile_info"]: {
|
|
2649
|
+
profile_section?: ModelTypes["Shapeprofile_infoProfile_section"] | undefined | null;
|
|
2520
2650
|
_id: string;
|
|
2521
|
-
createdAt?:
|
|
2522
|
-
updatedAt?:
|
|
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;
|
|
2651
|
+
createdAt?: number | undefined | null;
|
|
2652
|
+
updatedAt?: number | undefined | null;
|
|
2540
2653
|
};
|
|
2541
|
-
["
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2654
|
+
["ShapeusageMain"]: {
|
|
2655
|
+
title?: string | undefined | null;
|
|
2656
|
+
subtitle?: string | undefined | null;
|
|
2657
|
+
period?: string | undefined | null;
|
|
2658
|
+
tokens_consumed?: number | undefined | null;
|
|
2545
2659
|
};
|
|
2546
|
-
["
|
|
2547
|
-
|
|
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;
|
|
2660
|
+
["Shapeusage"]: {
|
|
2661
|
+
main?: ModelTypes["ShapeusageMain"] | undefined | null;
|
|
2553
2662
|
_id: string;
|
|
2554
|
-
createdAt?:
|
|
2555
|
-
updatedAt?:
|
|
2556
|
-
draft_version?: string | undefined | null;
|
|
2557
|
-
json_ld?: string | undefined | null;
|
|
2663
|
+
createdAt?: number | undefined | null;
|
|
2664
|
+
updatedAt?: number | undefined | null;
|
|
2558
2665
|
};
|
|
2559
2666
|
["RootParamsInput"]: {
|
|
2560
2667
|
_version?: string | undefined | null;
|
|
@@ -2571,6 +2678,7 @@ export type ModelTypes = {
|
|
|
2571
2678
|
};
|
|
2572
2679
|
["schema"]: {
|
|
2573
2680
|
query?: ModelTypes["Query"] | undefined | null;
|
|
2681
|
+
mutation?: ModelTypes["Mutation"] | undefined | null;
|
|
2574
2682
|
};
|
|
2575
2683
|
["ID"]: any;
|
|
2576
2684
|
};
|
|
@@ -2672,6 +2780,18 @@ export type GraphQLTypes = {
|
|
|
2672
2780
|
value?: string | undefined | null;
|
|
2673
2781
|
children?: Array<GraphQLTypes["Condition"]> | undefined | null;
|
|
2674
2782
|
};
|
|
2783
|
+
["ActionType"]: ActionType;
|
|
2784
|
+
["Action"]: {
|
|
2785
|
+
__typename: "Action";
|
|
2786
|
+
path: string;
|
|
2787
|
+
type: GraphQLTypes["ActionType"];
|
|
2788
|
+
value: string;
|
|
2789
|
+
};
|
|
2790
|
+
["Rule"]: {
|
|
2791
|
+
__typename: "Rule";
|
|
2792
|
+
conditions: Array<GraphQLTypes["Condition"]>;
|
|
2793
|
+
actions: Array<GraphQLTypes["Action"]>;
|
|
2794
|
+
};
|
|
2675
2795
|
["Visual"]: {
|
|
2676
2796
|
__typename: "Visual";
|
|
2677
2797
|
className?: string | undefined | null;
|
|
@@ -2691,6 +2811,10 @@ export type GraphQLTypes = {
|
|
|
2691
2811
|
ne?: string | undefined | null;
|
|
2692
2812
|
contain?: string | undefined | null;
|
|
2693
2813
|
};
|
|
2814
|
+
["Mutation"]: {
|
|
2815
|
+
__typename: "Mutation";
|
|
2816
|
+
heartbeat?: string | undefined | null;
|
|
2817
|
+
};
|
|
2694
2818
|
["RootParamsAdminType"]: "scalar" & {
|
|
2695
2819
|
name: "RootParamsAdminType";
|
|
2696
2820
|
};
|
|
@@ -2701,6 +2825,7 @@ export type GraphQLTypes = {
|
|
|
2701
2825
|
display: string;
|
|
2702
2826
|
previewFields?: GraphQLTypes["BakedIpsumData"] | undefined | null;
|
|
2703
2827
|
prompt?: string | undefined | null;
|
|
2828
|
+
promptResponse?: GraphQLTypes["AiComponent"] | undefined | null;
|
|
2704
2829
|
fields: Array<GraphQLTypes["CMSField"]>;
|
|
2705
2830
|
};
|
|
2706
2831
|
["View"]: {
|
|
@@ -2710,6 +2835,20 @@ export type GraphQLTypes = {
|
|
|
2710
2835
|
slug: string;
|
|
2711
2836
|
display: string;
|
|
2712
2837
|
};
|
|
2838
|
+
["AiComponent"]: {
|
|
2839
|
+
__typename: "AiComponent";
|
|
2840
|
+
name: string;
|
|
2841
|
+
htmlComponent?: string | undefined | null;
|
|
2842
|
+
className: string;
|
|
2843
|
+
textContent?: string | undefined | null;
|
|
2844
|
+
children?: Array<GraphQLTypes["AiComponent"]> | undefined | null;
|
|
2845
|
+
};
|
|
2846
|
+
["FormFieldVisual"]: {
|
|
2847
|
+
__typename: "FormFieldVisual";
|
|
2848
|
+
className?: string | undefined | null;
|
|
2849
|
+
component?: string | undefined | null;
|
|
2850
|
+
rules?: Array<GraphQLTypes["Rule"]> | undefined | null;
|
|
2851
|
+
};
|
|
2713
2852
|
["FormField"]: {
|
|
2714
2853
|
__typename: "FormField";
|
|
2715
2854
|
name: string;
|
|
@@ -2717,8 +2856,7 @@ export type GraphQLTypes = {
|
|
|
2717
2856
|
type: GraphQLTypes["FormFieldType"];
|
|
2718
2857
|
list?: boolean | undefined | null;
|
|
2719
2858
|
fields?: Array<GraphQLTypes["FormField"]> | undefined | null;
|
|
2720
|
-
visual?: GraphQLTypes["
|
|
2721
|
-
conditions?: GraphQLTypes["Condition"] | undefined | null;
|
|
2859
|
+
visual?: GraphQLTypes["FormFieldVisual"] | undefined | null;
|
|
2722
2860
|
placeholder?: string | undefined | null;
|
|
2723
2861
|
root?: boolean | undefined | null;
|
|
2724
2862
|
options?: Array<string> | undefined | null;
|
|
@@ -2789,11 +2927,30 @@ export type GraphQLTypes = {
|
|
|
2789
2927
|
label?: string | undefined | null;
|
|
2790
2928
|
options?: Array<string> | undefined | null;
|
|
2791
2929
|
};
|
|
2930
|
+
["FormCheckboxField"]: {
|
|
2931
|
+
__typename: "FormCheckboxField";
|
|
2932
|
+
label?: string | undefined | null;
|
|
2933
|
+
};
|
|
2934
|
+
["FormButtonField"]: {
|
|
2935
|
+
__typename: "FormButtonField";
|
|
2936
|
+
label?: string | undefined | null;
|
|
2937
|
+
};
|
|
2792
2938
|
["FormProductField"]: {
|
|
2793
2939
|
__typename: "FormProductField";
|
|
2794
2940
|
label?: string | undefined | null;
|
|
2795
2941
|
name?: string | undefined | null;
|
|
2796
2942
|
};
|
|
2943
|
+
["FormVariableField"]: {
|
|
2944
|
+
__typename: "FormVariableField";
|
|
2945
|
+
label?: string | undefined | null;
|
|
2946
|
+
name?: string | undefined | null;
|
|
2947
|
+
defaultValue?: string | undefined | null;
|
|
2948
|
+
};
|
|
2949
|
+
["FormDisplayField"]: {
|
|
2950
|
+
__typename: "FormDisplayField";
|
|
2951
|
+
label?: string | undefined | null;
|
|
2952
|
+
path?: string | undefined | null;
|
|
2953
|
+
};
|
|
2797
2954
|
["CMSType"]: CMSType;
|
|
2798
2955
|
["Query"]: {
|
|
2799
2956
|
__typename: "Query";
|
|
@@ -2811,10 +2968,6 @@ export type GraphQLTypes = {
|
|
|
2811
2968
|
fieldSetdocs: string;
|
|
2812
2969
|
modeldocs: GraphQLTypes["ModelNavigationCompiled"];
|
|
2813
2970
|
previewFieldsdocs: GraphQLTypes["ModelNavigationCompiled"];
|
|
2814
|
-
fieldSetShapecta: string;
|
|
2815
|
-
modelShapecta: GraphQLTypes["ModelNavigationCompiled"];
|
|
2816
|
-
previewFieldsShapecta: GraphQLTypes["ModelNavigationCompiled"];
|
|
2817
|
-
oneShapecta?: GraphQLTypes["Shapecta"] | undefined | null;
|
|
2818
2971
|
fieldSetShapedocs_content: string;
|
|
2819
2972
|
modelShapedocs_content: GraphQLTypes["ModelNavigationCompiled"];
|
|
2820
2973
|
previewFieldsShapedocs_content: GraphQLTypes["ModelNavigationCompiled"];
|
|
@@ -2823,6 +2976,10 @@ export type GraphQLTypes = {
|
|
|
2823
2976
|
modelShapedocs_nav: GraphQLTypes["ModelNavigationCompiled"];
|
|
2824
2977
|
previewFieldsShapedocs_nav: GraphQLTypes["ModelNavigationCompiled"];
|
|
2825
2978
|
oneShapedocs_nav?: GraphQLTypes["Shapedocs_nav"] | undefined | null;
|
|
2979
|
+
fieldSetShapefeaturepresentation: string;
|
|
2980
|
+
modelShapefeaturepresentation: GraphQLTypes["ModelNavigationCompiled"];
|
|
2981
|
+
previewFieldsShapefeaturepresentation: GraphQLTypes["ModelNavigationCompiled"];
|
|
2982
|
+
oneShapefeaturepresentation?: GraphQLTypes["Shapefeaturepresentation"] | undefined | null;
|
|
2826
2983
|
fieldSetShapefoot: string;
|
|
2827
2984
|
modelShapefoot: GraphQLTypes["ModelNavigationCompiled"];
|
|
2828
2985
|
previewFieldsShapefoot: GraphQLTypes["ModelNavigationCompiled"];
|
|
@@ -2835,10 +2992,10 @@ export type GraphQLTypes = {
|
|
|
2835
2992
|
modelShapeherox: GraphQLTypes["ModelNavigationCompiled"];
|
|
2836
2993
|
previewFieldsShapeherox: GraphQLTypes["ModelNavigationCompiled"];
|
|
2837
2994
|
oneShapeherox?: GraphQLTypes["Shapeherox"] | undefined | null;
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2995
|
+
fieldSetShapelista_projektow: string;
|
|
2996
|
+
modelShapelista_projektow: GraphQLTypes["ModelNavigationCompiled"];
|
|
2997
|
+
previewFieldsShapelista_projektow: GraphQLTypes["ModelNavigationCompiled"];
|
|
2998
|
+
oneShapelista_projektow?: GraphQLTypes["Shapelista_projektow"] | undefined | null;
|
|
2842
2999
|
fieldSetShapenav: string;
|
|
2843
3000
|
modelShapenav: GraphQLTypes["ModelNavigationCompiled"];
|
|
2844
3001
|
previewFieldsShapenav: GraphQLTypes["ModelNavigationCompiled"];
|
|
@@ -2847,26 +3004,32 @@ export type GraphQLTypes = {
|
|
|
2847
3004
|
modelShapenewshape: GraphQLTypes["ModelNavigationCompiled"];
|
|
2848
3005
|
previewFieldsShapenewshape: GraphQLTypes["ModelNavigationCompiled"];
|
|
2849
3006
|
oneShapenewshape?: GraphQLTypes["Shapenewshape"] | undefined | null;
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
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;
|
|
3007
|
+
fieldSetShapepricing_table: string;
|
|
3008
|
+
modelShapepricing_table: GraphQLTypes["ModelNavigationCompiled"];
|
|
3009
|
+
previewFieldsShapepricing_table: GraphQLTypes["ModelNavigationCompiled"];
|
|
3010
|
+
oneShapepricing_table?: GraphQLTypes["Shapepricing_table"] | undefined | null;
|
|
2862
3011
|
fieldSetShapepricingv1: string;
|
|
2863
3012
|
modelShapepricingv1: GraphQLTypes["ModelNavigationCompiled"];
|
|
2864
3013
|
previewFieldsShapepricingv1: GraphQLTypes["ModelNavigationCompiled"];
|
|
2865
3014
|
oneShapepricingv1?: GraphQLTypes["Shapepricingv1"] | undefined | null;
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
3015
|
+
fieldSetShapeprofile_info: string;
|
|
3016
|
+
modelShapeprofile_info: GraphQLTypes["ModelNavigationCompiled"];
|
|
3017
|
+
previewFieldsShapeprofile_info: GraphQLTypes["ModelNavigationCompiled"];
|
|
3018
|
+
oneShapeprofile_info?: GraphQLTypes["Shapeprofile_info"] | undefined | null;
|
|
3019
|
+
fieldSetShapeusage: string;
|
|
3020
|
+
modelShapeusage: GraphQLTypes["ModelNavigationCompiled"];
|
|
3021
|
+
previewFieldsShapeusage: GraphQLTypes["ModelNavigationCompiled"];
|
|
3022
|
+
oneShapeusage?: GraphQLTypes["Shapeusage"] | undefined | null;
|
|
3023
|
+
variantsViewaccount?: Array<GraphQLTypes["Viewaccount"]> | undefined | null;
|
|
3024
|
+
fieldSetViewaccount: string;
|
|
3025
|
+
modelViewaccount: GraphQLTypes["ModelNavigationCompiled"];
|
|
3026
|
+
previewFieldsViewaccount: GraphQLTypes["ModelNavigationCompiled"];
|
|
3027
|
+
oneViewaccount?: GraphQLTypes["Viewaccount"] | undefined | null;
|
|
3028
|
+
variantsViewfeatures?: Array<GraphQLTypes["Viewfeatures"]> | undefined | null;
|
|
3029
|
+
fieldSetViewfeatures: string;
|
|
3030
|
+
modelViewfeatures: GraphQLTypes["ModelNavigationCompiled"];
|
|
3031
|
+
previewFieldsViewfeatures: GraphQLTypes["ModelNavigationCompiled"];
|
|
3032
|
+
oneViewfeatures?: GraphQLTypes["Viewfeatures"] | undefined | null;
|
|
2870
3033
|
variantsViewhomepage?: Array<GraphQLTypes["Viewhomepage"]> | undefined | null;
|
|
2871
3034
|
fieldSetViewhomepage: string;
|
|
2872
3035
|
modelViewhomepage: GraphQLTypes["ModelNavigationCompiled"];
|
|
@@ -2877,16 +3040,11 @@ export type GraphQLTypes = {
|
|
|
2877
3040
|
modelViewhowitworks: GraphQLTypes["ModelNavigationCompiled"];
|
|
2878
3041
|
previewFieldsViewhowitworks: GraphQLTypes["ModelNavigationCompiled"];
|
|
2879
3042
|
oneViewhowitworks?: GraphQLTypes["Viewhowitworks"] | undefined | null;
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
variantsFormtest?: Array<GraphQLTypes["Formtest"]> | undefined | null;
|
|
2886
|
-
fieldSetFormtest: string;
|
|
2887
|
-
modelFormtest: GraphQLTypes["ModelNavigationCompiled"];
|
|
2888
|
-
previewFieldsFormtest: GraphQLTypes["ModelNavigationCompiled"];
|
|
2889
|
-
oneFormtest?: GraphQLTypes["Formtest"] | undefined | null;
|
|
3043
|
+
variantsViewpricing?: Array<GraphQLTypes["Viewpricing"]> | undefined | null;
|
|
3044
|
+
fieldSetViewpricing: string;
|
|
3045
|
+
modelViewpricing: GraphQLTypes["ModelNavigationCompiled"];
|
|
3046
|
+
previewFieldsViewpricing: GraphQLTypes["ModelNavigationCompiled"];
|
|
3047
|
+
oneViewpricing?: GraphQLTypes["Viewpricing"] | undefined | null;
|
|
2890
3048
|
};
|
|
2891
3049
|
["RootParamsType"]: {
|
|
2892
3050
|
__typename: "RootParamsType";
|
|
@@ -2919,13 +3077,46 @@ export type GraphQLTypes = {
|
|
|
2919
3077
|
draft_version?: boolean | undefined | null;
|
|
2920
3078
|
json_ld?: string | undefined | null;
|
|
2921
3079
|
};
|
|
3080
|
+
["ViewaccountMain"]: {
|
|
3081
|
+
__typename: "ViewaccountMain";
|
|
3082
|
+
profile?: GraphQLTypes["Shapeprofile_info"] | undefined | null;
|
|
3083
|
+
projects?: GraphQLTypes["Shapelista_projektow"] | undefined | null;
|
|
3084
|
+
};
|
|
3085
|
+
["Viewaccount"]: {
|
|
3086
|
+
__typename: "Viewaccount";
|
|
3087
|
+
_version?: GraphQLTypes["VersionField"] | undefined | null;
|
|
3088
|
+
main?: GraphQLTypes["ViewaccountMain"] | undefined | null;
|
|
3089
|
+
locale?: string | undefined | null;
|
|
3090
|
+
slug?: string | undefined | null;
|
|
3091
|
+
_id: string;
|
|
3092
|
+
createdAt?: number | undefined | null;
|
|
3093
|
+
updatedAt?: number | undefined | null;
|
|
3094
|
+
draft_version?: boolean | undefined | null;
|
|
3095
|
+
json_ld?: string | undefined | null;
|
|
3096
|
+
};
|
|
3097
|
+
["ViewfeaturesMain"]: {
|
|
3098
|
+
__typename: "ViewfeaturesMain";
|
|
3099
|
+
auto_translation?: GraphQLTypes["Shapefeaturepresentation"] | undefined | null;
|
|
3100
|
+
ai_component?: GraphQLTypes["Shapefeaturepresentation"] | undefined | null;
|
|
3101
|
+
};
|
|
3102
|
+
["Viewfeatures"]: {
|
|
3103
|
+
__typename: "Viewfeatures";
|
|
3104
|
+
_version?: GraphQLTypes["VersionField"] | undefined | null;
|
|
3105
|
+
main?: GraphQLTypes["ViewfeaturesMain"] | undefined | null;
|
|
3106
|
+
locale?: string | undefined | null;
|
|
3107
|
+
slug?: string | undefined | null;
|
|
3108
|
+
_id: string;
|
|
3109
|
+
createdAt?: number | undefined | null;
|
|
3110
|
+
updatedAt?: number | undefined | null;
|
|
3111
|
+
draft_version?: boolean | undefined | null;
|
|
3112
|
+
json_ld?: string | undefined | null;
|
|
3113
|
+
};
|
|
2922
3114
|
["Viewhomepage"]: {
|
|
2923
3115
|
__typename: "Viewhomepage";
|
|
2924
3116
|
_version?: GraphQLTypes["VersionField"] | undefined | null;
|
|
2925
3117
|
nav?: GraphQLTypes["Shapenav"] | undefined | null;
|
|
2926
3118
|
main?: GraphQLTypes["Shapehero"] | undefined | null;
|
|
2927
3119
|
hero?: GraphQLTypes["Shapeherox"] | undefined | null;
|
|
2928
|
-
learn?: GraphQLTypes["Shapelearn"] | undefined | null;
|
|
2929
3120
|
pricing?: GraphQLTypes["Shapepricingv1"] | undefined | null;
|
|
2930
3121
|
footer?: GraphQLTypes["Shapefoot"] | undefined | null;
|
|
2931
3122
|
locale?: string | undefined | null;
|
|
@@ -2955,22 +3146,19 @@ export type GraphQLTypes = {
|
|
|
2955
3146
|
draft_version?: boolean | undefined | null;
|
|
2956
3147
|
json_ld?: string | undefined | null;
|
|
2957
3148
|
};
|
|
2958
|
-
["
|
|
2959
|
-
__typename: "
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
cta_container?: GraphQLTypes["ShapectaCta_sectionCta_container"] | undefined | null;
|
|
2967
|
-
};
|
|
2968
|
-
["Shapecta"]: {
|
|
2969
|
-
__typename: "Shapecta";
|
|
2970
|
-
cta_section?: GraphQLTypes["ShapectaCta_section"] | undefined | null;
|
|
3149
|
+
["Viewpricing"]: {
|
|
3150
|
+
__typename: "Viewpricing";
|
|
3151
|
+
_version?: GraphQLTypes["VersionField"] | undefined | null;
|
|
3152
|
+
pricing?: GraphQLTypes["Shapepricingv1"] | undefined | null;
|
|
3153
|
+
table?: GraphQLTypes["Shapepricing_table"] | undefined | null;
|
|
3154
|
+
cta?: GraphQLTypes["Shapenewshape"] | undefined | null;
|
|
3155
|
+
locale?: string | undefined | null;
|
|
3156
|
+
slug?: string | undefined | null;
|
|
2971
3157
|
_id: string;
|
|
2972
3158
|
createdAt?: number | undefined | null;
|
|
2973
3159
|
updatedAt?: number | undefined | null;
|
|
3160
|
+
draft_version?: boolean | undefined | null;
|
|
3161
|
+
json_ld?: string | undefined | null;
|
|
2974
3162
|
};
|
|
2975
3163
|
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: {
|
|
2976
3164
|
__typename: "Shapedocs_contentDocumentation_pageContent_containerDoc_content";
|
|
@@ -3026,6 +3214,19 @@ export type GraphQLTypes = {
|
|
|
3026
3214
|
createdAt?: number | undefined | null;
|
|
3027
3215
|
updatedAt?: number | undefined | null;
|
|
3028
3216
|
};
|
|
3217
|
+
["ShapefeaturepresentationMain"]: {
|
|
3218
|
+
__typename: "ShapefeaturepresentationMain";
|
|
3219
|
+
title?: string | undefined | null;
|
|
3220
|
+
subtitle?: string | undefined | null;
|
|
3221
|
+
content?: string | undefined | null;
|
|
3222
|
+
};
|
|
3223
|
+
["Shapefeaturepresentation"]: {
|
|
3224
|
+
__typename: "Shapefeaturepresentation";
|
|
3225
|
+
main?: GraphQLTypes["ShapefeaturepresentationMain"] | undefined | null;
|
|
3226
|
+
_id: string;
|
|
3227
|
+
createdAt?: number | undefined | null;
|
|
3228
|
+
updatedAt?: number | undefined | null;
|
|
3229
|
+
};
|
|
3029
3230
|
["ShapefootFooterFooter_containerFooter_links"]: {
|
|
3030
3231
|
__typename: "ShapefootFooterFooter_containerFooter_links";
|
|
3031
3232
|
privacy_policy?: string | undefined | null;
|
|
@@ -3049,11 +3250,15 @@ export type GraphQLTypes = {
|
|
|
3049
3250
|
createdAt?: number | undefined | null;
|
|
3050
3251
|
updatedAt?: number | undefined | null;
|
|
3051
3252
|
};
|
|
3253
|
+
["ShapeheroHero_componentSlogan_parent"]: {
|
|
3254
|
+
__typename: "ShapeheroHero_componentSlogan_parent";
|
|
3255
|
+
slogan?: string | undefined | null;
|
|
3256
|
+
};
|
|
3052
3257
|
["ShapeheroHero_component"]: {
|
|
3053
3258
|
__typename: "ShapeheroHero_component";
|
|
3054
3259
|
logoplace?: string | undefined | null;
|
|
3055
3260
|
logo?: string | undefined | null;
|
|
3056
|
-
|
|
3261
|
+
slogan_parent?: GraphQLTypes["ShapeheroHero_componentSlogan_parent"] | undefined | null;
|
|
3057
3262
|
subslogan?: string | undefined | null;
|
|
3058
3263
|
};
|
|
3059
3264
|
["Shapehero"]: {
|
|
@@ -3072,16 +3277,20 @@ export type GraphQLTypes = {
|
|
|
3072
3277
|
title?: string | undefined | null;
|
|
3073
3278
|
description?: string | undefined | null;
|
|
3074
3279
|
features?: GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"] | undefined | null;
|
|
3075
|
-
call_to_action?: string | undefined | null;
|
|
3076
3280
|
};
|
|
3077
3281
|
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: {
|
|
3078
3282
|
__typename: "ShapeheroxHero_sectionHero_containerImage_wrapper";
|
|
3079
3283
|
hero_image?: GraphQLTypes["ImageField"] | undefined | null;
|
|
3080
3284
|
};
|
|
3285
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: {
|
|
3286
|
+
__typename: "ShapeheroxHero_sectionHero_containerPresentation";
|
|
3287
|
+
video?: GraphQLTypes["VideoField"] | undefined | null;
|
|
3288
|
+
};
|
|
3081
3289
|
["ShapeheroxHero_sectionHero_container"]: {
|
|
3082
3290
|
__typename: "ShapeheroxHero_sectionHero_container";
|
|
3083
3291
|
text_wrapper?: GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapper"] | undefined | null;
|
|
3084
3292
|
image_wrapper?: GraphQLTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"] | undefined | null;
|
|
3293
|
+
presentation?: GraphQLTypes["ShapeheroxHero_sectionHero_containerPresentation"] | undefined | null;
|
|
3085
3294
|
};
|
|
3086
3295
|
["ShapeheroxHero_section"]: {
|
|
3087
3296
|
__typename: "ShapeheroxHero_section";
|
|
@@ -3094,20 +3303,25 @@ export type GraphQLTypes = {
|
|
|
3094
3303
|
createdAt?: number | undefined | null;
|
|
3095
3304
|
updatedAt?: number | undefined | null;
|
|
3096
3305
|
};
|
|
3097
|
-
["
|
|
3098
|
-
__typename: "
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
|
|
3306
|
+
["Shapelista_projektowListProjectsInstance"]: {
|
|
3307
|
+
__typename: "Shapelista_projektowListProjectsInstance";
|
|
3308
|
+
title?: string | undefined | null;
|
|
3309
|
+
link?: string | undefined | null;
|
|
3310
|
+
remove_button?: string | undefined | null;
|
|
3311
|
+
};
|
|
3312
|
+
["Shapelista_projektowListProjects"]: {
|
|
3313
|
+
__typename: "Shapelista_projektowListProjects";
|
|
3314
|
+
instance?: Array<GraphQLTypes["Shapelista_projektowListProjectsInstance"] | undefined | null> | undefined | null;
|
|
3103
3315
|
};
|
|
3104
|
-
["
|
|
3105
|
-
__typename: "
|
|
3106
|
-
|
|
3316
|
+
["Shapelista_projektowList"]: {
|
|
3317
|
+
__typename: "Shapelista_projektowList";
|
|
3318
|
+
title?: string | undefined | null;
|
|
3319
|
+
subtitle?: string | undefined | null;
|
|
3320
|
+
projects?: GraphQLTypes["Shapelista_projektowListProjects"] | undefined | null;
|
|
3107
3321
|
};
|
|
3108
|
-
["
|
|
3109
|
-
__typename: "
|
|
3110
|
-
|
|
3322
|
+
["Shapelista_projektow"]: {
|
|
3323
|
+
__typename: "Shapelista_projektow";
|
|
3324
|
+
list?: GraphQLTypes["Shapelista_projektowList"] | undefined | null;
|
|
3111
3325
|
_id: string;
|
|
3112
3326
|
createdAt?: number | undefined | null;
|
|
3113
3327
|
updatedAt?: number | undefined | null;
|
|
@@ -3154,62 +3368,36 @@ export type GraphQLTypes = {
|
|
|
3154
3368
|
createdAt?: number | undefined | null;
|
|
3155
3369
|
updatedAt?: number | undefined | null;
|
|
3156
3370
|
};
|
|
3157
|
-
["
|
|
3158
|
-
__typename: "
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
updatedAt?: number | undefined | null;
|
|
3371
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: {
|
|
3372
|
+
__typename: "Shapepricing_tablePricing_sectionHeader_wrapper";
|
|
3373
|
+
title?: string | undefined | null;
|
|
3374
|
+
description?: string | undefined | null;
|
|
3162
3375
|
};
|
|
3163
|
-
["
|
|
3164
|
-
__typename: "
|
|
3165
|
-
|
|
3166
|
-
|
|
3376
|
+
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: {
|
|
3377
|
+
__typename: "Shapepricing_tablePricing_sectionPricing_tableTable_head";
|
|
3378
|
+
feature?: string | undefined | null;
|
|
3379
|
+
unit?: string | undefined | null;
|
|
3380
|
+
price?: string | undefined | null;
|
|
3167
3381
|
};
|
|
3168
|
-
["
|
|
3169
|
-
__typename: "
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3382
|
+
["Shapepricing_tablePricing_sectionPricing_tableRows"]: {
|
|
3383
|
+
__typename: "Shapepricing_tablePricing_sectionPricing_tableRows";
|
|
3384
|
+
feature?: string | undefined | null;
|
|
3385
|
+
unit?: string | undefined | null;
|
|
3386
|
+
price?: string | undefined | null;
|
|
3173
3387
|
};
|
|
3174
|
-
["
|
|
3175
|
-
__typename: "
|
|
3176
|
-
|
|
3388
|
+
["Shapepricing_tablePricing_sectionPricing_table"]: {
|
|
3389
|
+
__typename: "Shapepricing_tablePricing_sectionPricing_table";
|
|
3390
|
+
table_head?: GraphQLTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"] | undefined | null;
|
|
3391
|
+
rows?: Array<GraphQLTypes["Shapepricing_tablePricing_sectionPricing_tableRows"] | undefined | null> | undefined | null;
|
|
3177
3392
|
};
|
|
3178
|
-
["
|
|
3179
|
-
__typename: "
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
createdAt?: number | undefined | null;
|
|
3183
|
-
updatedAt?: number | undefined | null;
|
|
3393
|
+
["Shapepricing_tablePricing_section"]: {
|
|
3394
|
+
__typename: "Shapepricing_tablePricing_section";
|
|
3395
|
+
header_wrapper?: GraphQLTypes["Shapepricing_tablePricing_sectionHeader_wrapper"] | undefined | null;
|
|
3396
|
+
pricing_table?: GraphQLTypes["Shapepricing_tablePricing_sectionPricing_table"] | undefined | null;
|
|
3184
3397
|
};
|
|
3185
|
-
["
|
|
3186
|
-
__typename: "
|
|
3187
|
-
|
|
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;
|
|
3398
|
+
["Shapepricing_table"]: {
|
|
3399
|
+
__typename: "Shapepricing_table";
|
|
3400
|
+
pricing_section?: GraphQLTypes["Shapepricing_tablePricing_section"] | undefined | null;
|
|
3213
3401
|
_id: string;
|
|
3214
3402
|
createdAt?: number | undefined | null;
|
|
3215
3403
|
updatedAt?: number | undefined | null;
|
|
@@ -3260,112 +3448,68 @@ export type GraphQLTypes = {
|
|
|
3260
3448
|
createdAt?: number | undefined | null;
|
|
3261
3449
|
updatedAt?: number | undefined | null;
|
|
3262
3450
|
};
|
|
3263
|
-
["
|
|
3264
|
-
__typename: "
|
|
3265
|
-
|
|
3266
|
-
|
|
3451
|
+
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: {
|
|
3452
|
+
__typename: "Shapeprofile_infoProfile_sectionAccount_headerInfo";
|
|
3453
|
+
full_name?: string | undefined | null;
|
|
3454
|
+
company?: string | undefined | null;
|
|
3455
|
+
email?: string | undefined | null;
|
|
3456
|
+
};
|
|
3457
|
+
["Shapeprofile_infoProfile_sectionAccount_header"]: {
|
|
3458
|
+
__typename: "Shapeprofile_infoProfile_sectionAccount_header";
|
|
3459
|
+
avatar?: GraphQLTypes["ImageField"] | undefined | null;
|
|
3460
|
+
info?: GraphQLTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"] | undefined | null;
|
|
3461
|
+
};
|
|
3462
|
+
["Shapeprofile_infoProfile_sectionPlan_status"]: {
|
|
3463
|
+
__typename: "Shapeprofile_infoProfile_sectionPlan_status";
|
|
3464
|
+
plan?: string | undefined | null;
|
|
3267
3465
|
};
|
|
3268
|
-
["
|
|
3269
|
-
__typename: "
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
};
|
|
3278
|
-
["
|
|
3279
|
-
__typename: "
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
};
|
|
3283
|
-
["
|
|
3284
|
-
__typename: "
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3466
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: {
|
|
3467
|
+
__typename: "Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens";
|
|
3468
|
+
label?: string | undefined | null;
|
|
3469
|
+
value?: string | undefined | null;
|
|
3470
|
+
};
|
|
3471
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: {
|
|
3472
|
+
__typename: "Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens";
|
|
3473
|
+
label?: string | undefined | null;
|
|
3474
|
+
value?: string | undefined | null;
|
|
3475
|
+
};
|
|
3476
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: {
|
|
3477
|
+
__typename: "Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests";
|
|
3478
|
+
label?: string | undefined | null;
|
|
3479
|
+
value?: string | undefined | null;
|
|
3480
|
+
};
|
|
3481
|
+
["Shapeprofile_infoProfile_sectionUsage_section"]: {
|
|
3482
|
+
__typename: "Shapeprofile_infoProfile_sectionUsage_section";
|
|
3483
|
+
ai_tokens?: GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"] | undefined | null;
|
|
3484
|
+
translate_tokens?: GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"] | undefined | null;
|
|
3485
|
+
monthly_api_requests?: GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"] | undefined | null;
|
|
3486
|
+
};
|
|
3487
|
+
["Shapeprofile_infoProfile_section"]: {
|
|
3488
|
+
__typename: "Shapeprofile_infoProfile_section";
|
|
3489
|
+
account_header?: GraphQLTypes["Shapeprofile_infoProfile_sectionAccount_header"] | undefined | null;
|
|
3490
|
+
plan_status?: GraphQLTypes["Shapeprofile_infoProfile_sectionPlan_status"] | undefined | null;
|
|
3491
|
+
usage_section?: GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_section"] | undefined | null;
|
|
3492
|
+
};
|
|
3493
|
+
["Shapeprofile_info"]: {
|
|
3494
|
+
__typename: "Shapeprofile_info";
|
|
3495
|
+
profile_section?: GraphQLTypes["Shapeprofile_infoProfile_section"] | undefined | null;
|
|
3296
3496
|
_id: string;
|
|
3297
3497
|
createdAt?: number | undefined | null;
|
|
3298
3498
|
updatedAt?: number | undefined | null;
|
|
3299
3499
|
};
|
|
3300
|
-
["
|
|
3301
|
-
__typename: "
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
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;
|
|
3500
|
+
["ShapeusageMain"]: {
|
|
3501
|
+
__typename: "ShapeusageMain";
|
|
3502
|
+
title?: string | undefined | null;
|
|
3503
|
+
subtitle?: string | undefined | null;
|
|
3504
|
+
period?: string | undefined | null;
|
|
3505
|
+
tokens_consumed?: number | undefined | null;
|
|
3331
3506
|
};
|
|
3332
|
-
["
|
|
3333
|
-
__typename: "
|
|
3334
|
-
|
|
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;
|
|
3507
|
+
["Shapeusage"]: {
|
|
3508
|
+
__typename: "Shapeusage";
|
|
3509
|
+
main?: GraphQLTypes["ShapeusageMain"] | undefined | null;
|
|
3364
3510
|
_id: string;
|
|
3365
|
-
createdAt?:
|
|
3366
|
-
updatedAt?:
|
|
3367
|
-
draft_version?: string | undefined | null;
|
|
3368
|
-
json_ld?: string | undefined | null;
|
|
3511
|
+
createdAt?: number | undefined | null;
|
|
3512
|
+
updatedAt?: number | undefined | null;
|
|
3369
3513
|
};
|
|
3370
3514
|
["RootParamsInput"]: {
|
|
3371
3515
|
_version?: string | undefined | null;
|
|
@@ -3406,6 +3550,12 @@ export declare enum ConditionType {
|
|
|
3406
3550
|
SET = "SET",
|
|
3407
3551
|
PATH = "PATH"
|
|
3408
3552
|
}
|
|
3553
|
+
export declare enum ActionType {
|
|
3554
|
+
SET_VALUE = "SET_VALUE",
|
|
3555
|
+
SET_CLASSNAME = "SET_CLASSNAME",
|
|
3556
|
+
DISPLAY_VALUE = "DISPLAY_VALUE",
|
|
3557
|
+
SET_DISABLED = "SET_DISABLED"
|
|
3558
|
+
}
|
|
3409
3559
|
export declare enum FormFieldType {
|
|
3410
3560
|
STRING = "STRING",
|
|
3411
3561
|
TEXT = "TEXT",
|
|
@@ -3419,8 +3569,11 @@ export declare enum FormFieldType {
|
|
|
3419
3569
|
ARRAY_STEP = "ARRAY_STEP",
|
|
3420
3570
|
PORTAL = "PORTAL",
|
|
3421
3571
|
ROUTE = "ROUTE",
|
|
3572
|
+
BUTTON = "BUTTON",
|
|
3422
3573
|
SUBMIT = "SUBMIT",
|
|
3423
|
-
NUMBER = "NUMBER"
|
|
3574
|
+
NUMBER = "NUMBER",
|
|
3575
|
+
VARIABLE = "VARIABLE",
|
|
3576
|
+
DISPLAY = "DISPLAY"
|
|
3424
3577
|
}
|
|
3425
3578
|
export declare enum CMSType {
|
|
3426
3579
|
STRING = "STRING",
|
|
@@ -3444,24 +3597,26 @@ export declare enum ModelEnum {
|
|
|
3444
3597
|
docs = "docs"
|
|
3445
3598
|
}
|
|
3446
3599
|
export declare enum ViewEnum {
|
|
3600
|
+
account = "account",
|
|
3601
|
+
features = "features",
|
|
3447
3602
|
homepage = "homepage",
|
|
3448
|
-
howitworks = "howitworks"
|
|
3603
|
+
howitworks = "howitworks",
|
|
3604
|
+
pricing = "pricing"
|
|
3449
3605
|
}
|
|
3450
3606
|
export declare enum ShapeEnum {
|
|
3451
|
-
cta = "cta",
|
|
3452
3607
|
docs_content = "docs_content",
|
|
3453
3608
|
docs_nav = "docs_nav",
|
|
3609
|
+
featurepresentation = "featurepresentation",
|
|
3454
3610
|
foot = "foot",
|
|
3455
3611
|
hero = "hero",
|
|
3456
3612
|
herox = "herox",
|
|
3457
|
-
|
|
3613
|
+
lista_projektow = "lista_projektow",
|
|
3458
3614
|
nav = "nav",
|
|
3459
3615
|
newshape = "newshape",
|
|
3460
|
-
|
|
3461
|
-
newsletter = "newsletter",
|
|
3462
|
-
pricing = "pricing",
|
|
3616
|
+
pricing_table = "pricing_table",
|
|
3463
3617
|
pricingv1 = "pricingv1",
|
|
3464
|
-
|
|
3618
|
+
profile_info = "profile_info",
|
|
3619
|
+
usage = "usage"
|
|
3465
3620
|
}
|
|
3466
3621
|
export declare enum RootParamsEnum {
|
|
3467
3622
|
_version = "_version",
|
|
@@ -3478,6 +3633,7 @@ type ZEUS_VARIABLES = {
|
|
|
3478
3633
|
["ConditionSetOperator"]: ValueTypes["ConditionSetOperator"];
|
|
3479
3634
|
["ConditionOperator"]: ValueTypes["ConditionOperator"];
|
|
3480
3635
|
["ConditionType"]: ValueTypes["ConditionType"];
|
|
3636
|
+
["ActionType"]: ValueTypes["ActionType"];
|
|
3481
3637
|
["PageInput"]: ValueTypes["PageInput"];
|
|
3482
3638
|
["FilterInputString"]: ValueTypes["FilterInputString"];
|
|
3483
3639
|
["RootParamsAdminType"]: ValueTypes["RootParamsAdminType"];
|