@husar.ai/cli 0.1.4 → 0.1.6
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 +26 -20
- package/dist/index.js.map +1 -1
- package/dist/zeus/const.d.ts +1 -0
- package/dist/zeus/const.js +505 -52
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +2495 -444
- package/dist/zeus/index.js +34 -4
- package/dist/zeus/index.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +28 -20
- package/src/zeus/const.ts +504 -53
- package/src/zeus/index.ts +2482 -426
package/dist/zeus/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Ops } from './const.js';
|
|
2
|
-
export declare const HOST = "
|
|
2
|
+
export declare const HOST = "Specify host";
|
|
3
3
|
export declare const HEADERS: {};
|
|
4
4
|
export declare const apiSubscription: (options: chainOptions) => (query: string) => {
|
|
5
5
|
ws: WebSocket;
|
|
@@ -155,7 +155,7 @@ type IsPayLoad<T> = T extends [any, infer PayLoad] ? PayLoad : T;
|
|
|
155
155
|
export type ScalarDefinition = Record<string, ScalarResolver>;
|
|
156
156
|
type IsScalar<S, SCLR extends ScalarDefinition> = S extends 'scalar' & {
|
|
157
157
|
name: infer T;
|
|
158
|
-
} ? T extends keyof SCLR ? SCLR[T]['decode'] extends (s: unknown) => unknown ? ReturnType<SCLR[T]['decode']> : unknown : unknown : S;
|
|
158
|
+
} ? T extends keyof SCLR ? SCLR[T]['decode'] extends (s: unknown) => unknown ? ReturnType<SCLR[T]['decode']> : unknown : unknown : S extends Array<infer R> ? Array<IsScalar<R, SCLR>> : S;
|
|
159
159
|
type IsArray<T, U, SCLR extends ScalarDefinition> = T extends Array<infer R> ? InputType<R, U, SCLR>[] : InputType<T, U, SCLR>;
|
|
160
160
|
type FlattenArray<T> = T extends Array<infer R> ? R : T;
|
|
161
161
|
type BaseZeusResolver = boolean | 1 | string | Variable<any, string>;
|
|
@@ -251,6 +251,7 @@ export type ScalarCoders = {
|
|
|
251
251
|
ModelNavigationCompiled?: ScalarResolver;
|
|
252
252
|
BakedIpsumData?: ScalarResolver;
|
|
253
253
|
JSON?: ScalarResolver;
|
|
254
|
+
RootParamsAdminType?: ScalarResolver;
|
|
254
255
|
ID?: ScalarResolver;
|
|
255
256
|
};
|
|
256
257
|
type ZEUS_UNIONS = never;
|
|
@@ -340,6 +341,18 @@ export type ValueTypes = {
|
|
|
340
341
|
children?: ValueTypes["Condition"];
|
|
341
342
|
__typename?: boolean | `@${string}`;
|
|
342
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
|
+
}>;
|
|
343
356
|
["Visual"]: AliasType<{
|
|
344
357
|
className?: boolean | `@${string}`;
|
|
345
358
|
component?: boolean | `@${string}`;
|
|
@@ -359,6 +372,11 @@ export type ValueTypes = {
|
|
|
359
372
|
ne?: string | undefined | null | Variable<any, string>;
|
|
360
373
|
contain?: string | undefined | null | Variable<any, string>;
|
|
361
374
|
};
|
|
375
|
+
["Mutation"]: AliasType<{
|
|
376
|
+
heartbeat?: boolean | `@${string}`;
|
|
377
|
+
__typename?: boolean | `@${string}`;
|
|
378
|
+
}>;
|
|
379
|
+
["RootParamsAdminType"]: unknown;
|
|
362
380
|
["Shape"]: AliasType<{
|
|
363
381
|
name?: boolean | `@${string}`;
|
|
364
382
|
slug?: boolean | `@${string}`;
|
|
@@ -384,14 +402,19 @@ export type ValueTypes = {
|
|
|
384
402
|
children?: ValueTypes["AiComponent"];
|
|
385
403
|
__typename?: boolean | `@${string}`;
|
|
386
404
|
}>;
|
|
405
|
+
["FormFieldVisual"]: AliasType<{
|
|
406
|
+
className?: boolean | `@${string}`;
|
|
407
|
+
component?: boolean | `@${string}`;
|
|
408
|
+
rules?: ValueTypes["Rule"];
|
|
409
|
+
__typename?: boolean | `@${string}`;
|
|
410
|
+
}>;
|
|
387
411
|
["FormField"]: AliasType<{
|
|
388
412
|
name?: boolean | `@${string}`;
|
|
389
413
|
display?: boolean | `@${string}`;
|
|
390
414
|
type?: boolean | `@${string}`;
|
|
391
415
|
list?: boolean | `@${string}`;
|
|
392
416
|
fields?: ValueTypes["FormField"];
|
|
393
|
-
visual?: ValueTypes["
|
|
394
|
-
conditions?: ValueTypes["Condition"];
|
|
417
|
+
visual?: ValueTypes["FormFieldVisual"];
|
|
395
418
|
placeholder?: boolean | `@${string}`;
|
|
396
419
|
root?: boolean | `@${string}`;
|
|
397
420
|
options?: boolean | `@${string}`;
|
|
@@ -463,11 +486,30 @@ export type ValueTypes = {
|
|
|
463
486
|
options?: boolean | `@${string}`;
|
|
464
487
|
__typename?: boolean | `@${string}`;
|
|
465
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
|
+
}>;
|
|
466
497
|
["FormProductField"]: AliasType<{
|
|
467
498
|
label?: boolean | `@${string}`;
|
|
468
499
|
name?: boolean | `@${string}`;
|
|
469
500
|
__typename?: boolean | `@${string}`;
|
|
470
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
|
+
}>;
|
|
471
513
|
["CMSType"]: CMSType;
|
|
472
514
|
["Query"]: AliasType<{
|
|
473
515
|
navigation?: ValueTypes["ModelNavigation"];
|
|
@@ -478,56 +520,135 @@ export type ValueTypes = {
|
|
|
478
520
|
listShapes?: ValueTypes["Shape"];
|
|
479
521
|
tailwind?: ValueTypes["TailwindConfiguration"];
|
|
480
522
|
listForms?: ValueTypes["Form"];
|
|
481
|
-
|
|
523
|
+
listPaginateddocs?: [{
|
|
482
524
|
page: ValueTypes["PageInput"] | Variable<any, string>;
|
|
483
525
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
484
526
|
search?: string | undefined | null | Variable<any, string>;
|
|
485
|
-
sort?: ValueTypes["
|
|
486
|
-
filter?: Array<ValueTypes["
|
|
487
|
-
}, ValueTypes["
|
|
488
|
-
|
|
527
|
+
sort?: ValueTypes["docsSortInput"] | undefined | null | Variable<any, string>;
|
|
528
|
+
filter?: Array<ValueTypes["docsFilterInput"] | undefined | null> | undefined | null | Variable<any, string>;
|
|
529
|
+
}, ValueTypes["docs__Connection"]];
|
|
530
|
+
onedocsBySlug?: [{
|
|
489
531
|
slug: string | Variable<any, string>;
|
|
490
532
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
491
|
-
}, ValueTypes["
|
|
492
|
-
|
|
533
|
+
}, ValueTypes["docs"]];
|
|
534
|
+
variantsdocsBySlug?: [{
|
|
493
535
|
slug: string | Variable<any, string>;
|
|
494
|
-
}, ValueTypes["
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
536
|
+
}, ValueTypes["docs"]];
|
|
537
|
+
fieldSetdocs?: boolean | `@${string}`;
|
|
538
|
+
modeldocs?: boolean | `@${string}`;
|
|
539
|
+
previewFieldsdocs?: boolean | `@${string}`;
|
|
540
|
+
fieldSetShapedocs_content?: boolean | `@${string}`;
|
|
541
|
+
modelShapedocs_content?: boolean | `@${string}`;
|
|
542
|
+
previewFieldsShapedocs_content?: boolean | `@${string}`;
|
|
543
|
+
oneShapedocs_content?: ValueTypes["Shapedocs_content"];
|
|
544
|
+
fieldSetShapedocs_nav?: boolean | `@${string}`;
|
|
545
|
+
modelShapedocs_nav?: boolean | `@${string}`;
|
|
546
|
+
previewFieldsShapedocs_nav?: boolean | `@${string}`;
|
|
547
|
+
oneShapedocs_nav?: ValueTypes["Shapedocs_nav"];
|
|
548
|
+
fieldSetShapefeaturepresentation?: boolean | `@${string}`;
|
|
549
|
+
modelShapefeaturepresentation?: boolean | `@${string}`;
|
|
550
|
+
previewFieldsShapefeaturepresentation?: boolean | `@${string}`;
|
|
551
|
+
oneShapefeaturepresentation?: ValueTypes["Shapefeaturepresentation"];
|
|
552
|
+
fieldSetShapefoot?: boolean | `@${string}`;
|
|
553
|
+
modelShapefoot?: boolean | `@${string}`;
|
|
554
|
+
previewFieldsShapefoot?: boolean | `@${string}`;
|
|
555
|
+
oneShapefoot?: ValueTypes["Shapefoot"];
|
|
556
|
+
fieldSetShapehero?: boolean | `@${string}`;
|
|
557
|
+
modelShapehero?: boolean | `@${string}`;
|
|
558
|
+
previewFieldsShapehero?: boolean | `@${string}`;
|
|
559
|
+
oneShapehero?: ValueTypes["Shapehero"];
|
|
560
|
+
fieldSetShapeherox?: boolean | `@${string}`;
|
|
561
|
+
modelShapeherox?: boolean | `@${string}`;
|
|
562
|
+
previewFieldsShapeherox?: boolean | `@${string}`;
|
|
563
|
+
oneShapeherox?: ValueTypes["Shapeherox"];
|
|
564
|
+
fieldSetShapelista_projektow?: boolean | `@${string}`;
|
|
565
|
+
modelShapelista_projektow?: boolean | `@${string}`;
|
|
566
|
+
previewFieldsShapelista_projektow?: boolean | `@${string}`;
|
|
567
|
+
oneShapelista_projektow?: ValueTypes["Shapelista_projektow"];
|
|
568
|
+
fieldSetShapenav?: boolean | `@${string}`;
|
|
569
|
+
modelShapenav?: boolean | `@${string}`;
|
|
570
|
+
previewFieldsShapenav?: boolean | `@${string}`;
|
|
571
|
+
oneShapenav?: ValueTypes["Shapenav"];
|
|
572
|
+
fieldSetShapenewshape?: boolean | `@${string}`;
|
|
573
|
+
modelShapenewshape?: boolean | `@${string}`;
|
|
574
|
+
previewFieldsShapenewshape?: boolean | `@${string}`;
|
|
575
|
+
oneShapenewshape?: ValueTypes["Shapenewshape"];
|
|
576
|
+
fieldSetShapepricing_table?: boolean | `@${string}`;
|
|
577
|
+
modelShapepricing_table?: boolean | `@${string}`;
|
|
578
|
+
previewFieldsShapepricing_table?: boolean | `@${string}`;
|
|
579
|
+
oneShapepricing_table?: ValueTypes["Shapepricing_table"];
|
|
580
|
+
fieldSetShapepricingv1?: boolean | `@${string}`;
|
|
581
|
+
modelShapepricingv1?: boolean | `@${string}`;
|
|
582
|
+
previewFieldsShapepricingv1?: boolean | `@${string}`;
|
|
583
|
+
oneShapepricingv1?: ValueTypes["Shapepricingv1"];
|
|
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?: [{
|
|
500
597
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
}
|
|
505
|
-
|
|
506
|
-
|
|
598
|
+
}, ValueTypes["Viewaccount"]];
|
|
599
|
+
variantsViewfeatures?: ValueTypes["Viewfeatures"];
|
|
600
|
+
fieldSetViewfeatures?: boolean | `@${string}`;
|
|
601
|
+
modelViewfeatures?: boolean | `@${string}`;
|
|
602
|
+
previewFieldsViewfeatures?: boolean | `@${string}`;
|
|
603
|
+
oneViewfeatures?: [{
|
|
507
604
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
508
|
-
}, ValueTypes["
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
605
|
+
}, ValueTypes["Viewfeatures"]];
|
|
606
|
+
variantsViewhomepage?: ValueTypes["Viewhomepage"];
|
|
607
|
+
fieldSetViewhomepage?: boolean | `@${string}`;
|
|
608
|
+
modelViewhomepage?: boolean | `@${string}`;
|
|
609
|
+
previewFieldsViewhomepage?: boolean | `@${string}`;
|
|
610
|
+
oneViewhomepage?: [{
|
|
611
|
+
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
612
|
+
}, ValueTypes["Viewhomepage"]];
|
|
613
|
+
variantsViewhowitworks?: ValueTypes["Viewhowitworks"];
|
|
614
|
+
fieldSetViewhowitworks?: boolean | `@${string}`;
|
|
615
|
+
modelViewhowitworks?: boolean | `@${string}`;
|
|
616
|
+
previewFieldsViewhowitworks?: boolean | `@${string}`;
|
|
617
|
+
oneViewhowitworks?: [{
|
|
618
|
+
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
619
|
+
}, ValueTypes["Viewhowitworks"]];
|
|
620
|
+
variantsViewpricing?: ValueTypes["Viewpricing"];
|
|
621
|
+
fieldSetViewpricing?: boolean | `@${string}`;
|
|
622
|
+
modelViewpricing?: boolean | `@${string}`;
|
|
623
|
+
previewFieldsViewpricing?: boolean | `@${string}`;
|
|
624
|
+
oneViewpricing?: [{
|
|
625
|
+
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
626
|
+
}, ValueTypes["Viewpricing"]];
|
|
627
|
+
__typename?: boolean | `@${string}`;
|
|
628
|
+
}>;
|
|
629
|
+
["RootParamsType"]: AliasType<{
|
|
630
|
+
_version?: boolean | `@${string}`;
|
|
631
|
+
locale?: boolean | `@${string}`;
|
|
519
632
|
__typename?: boolean | `@${string}`;
|
|
520
633
|
}>;
|
|
521
634
|
["ModelEnum"]: ModelEnum;
|
|
635
|
+
["ViewEnum"]: ViewEnum;
|
|
522
636
|
["ShapeEnum"]: ShapeEnum;
|
|
523
|
-
["
|
|
524
|
-
items?: ValueTypes["
|
|
637
|
+
["docs__Connection"]: AliasType<{
|
|
638
|
+
items?: ValueTypes["docs"];
|
|
525
639
|
pageInfo?: ValueTypes["PageInfo"];
|
|
526
640
|
__typename?: boolean | `@${string}`;
|
|
527
641
|
}>;
|
|
528
|
-
["
|
|
642
|
+
["docs"]: AliasType<{
|
|
529
643
|
_version?: ValueTypes["VersionField"];
|
|
644
|
+
title?: boolean | `@${string}`;
|
|
645
|
+
seotitle?: boolean | `@${string}`;
|
|
646
|
+
metadesc?: boolean | `@${string}`;
|
|
647
|
+
sortid?: boolean | `@${string}`;
|
|
648
|
+
main_category?: boolean | `@${string}`;
|
|
530
649
|
content?: boolean | `@${string}`;
|
|
650
|
+
video?: ValueTypes["VideoField"];
|
|
651
|
+
locale?: boolean | `@${string}`;
|
|
531
652
|
slug?: boolean | `@${string}`;
|
|
532
653
|
_id?: boolean | `@${string}`;
|
|
533
654
|
createdAt?: boolean | `@${string}`;
|
|
@@ -536,16 +657,67 @@ export type ValueTypes = {
|
|
|
536
657
|
json_ld?: boolean | `@${string}`;
|
|
537
658
|
__typename?: boolean | `@${string}`;
|
|
538
659
|
}>;
|
|
539
|
-
["
|
|
540
|
-
|
|
541
|
-
|
|
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}`;
|
|
542
692
|
__typename?: boolean | `@${string}`;
|
|
543
693
|
}>;
|
|
544
|
-
["
|
|
694
|
+
["Viewhomepage"]: AliasType<{
|
|
545
695
|
_version?: ValueTypes["VersionField"];
|
|
696
|
+
nav?: ValueTypes["Shapenav"];
|
|
697
|
+
main?: ValueTypes["Shapehero"];
|
|
698
|
+
hero?: ValueTypes["Shapeherox"];
|
|
699
|
+
pricing?: ValueTypes["Shapepricingv1"];
|
|
700
|
+
footer?: ValueTypes["Shapefoot"];
|
|
701
|
+
locale?: boolean | `@${string}`;
|
|
702
|
+
slug?: boolean | `@${string}`;
|
|
703
|
+
_id?: boolean | `@${string}`;
|
|
704
|
+
createdAt?: boolean | `@${string}`;
|
|
705
|
+
updatedAt?: boolean | `@${string}`;
|
|
706
|
+
draft_version?: boolean | `@${string}`;
|
|
707
|
+
json_ld?: boolean | `@${string}`;
|
|
708
|
+
__typename?: boolean | `@${string}`;
|
|
709
|
+
}>;
|
|
710
|
+
["ViewhowitworksFeature_control"]: AliasType<{
|
|
546
711
|
title?: boolean | `@${string}`;
|
|
712
|
+
description?: boolean | `@${string}`;
|
|
547
713
|
image?: ValueTypes["ImageField"];
|
|
548
|
-
|
|
714
|
+
__typename?: boolean | `@${string}`;
|
|
715
|
+
}>;
|
|
716
|
+
["Viewhowitworks"]: AliasType<{
|
|
717
|
+
_version?: ValueTypes["VersionField"];
|
|
718
|
+
title?: boolean | `@${string}`;
|
|
719
|
+
feature_control?: ValueTypes["ViewhowitworksFeature_control"];
|
|
720
|
+
locale?: boolean | `@${string}`;
|
|
549
721
|
slug?: boolean | `@${string}`;
|
|
550
722
|
_id?: boolean | `@${string}`;
|
|
551
723
|
createdAt?: boolean | `@${string}`;
|
|
@@ -554,335 +726,1217 @@ export type ValueTypes = {
|
|
|
554
726
|
json_ld?: boolean | `@${string}`;
|
|
555
727
|
__typename?: boolean | `@${string}`;
|
|
556
728
|
}>;
|
|
557
|
-
["
|
|
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}`;
|
|
558
736
|
_id?: boolean | `@${string}`;
|
|
559
737
|
createdAt?: boolean | `@${string}`;
|
|
560
738
|
updatedAt?: boolean | `@${string}`;
|
|
739
|
+
draft_version?: boolean | `@${string}`;
|
|
740
|
+
json_ld?: boolean | `@${string}`;
|
|
561
741
|
__typename?: boolean | `@${string}`;
|
|
562
742
|
}>;
|
|
563
|
-
["
|
|
564
|
-
_version?: string | undefined | null | Variable<any, string>;
|
|
565
|
-
};
|
|
566
|
-
["RootParamsEnum"]: RootParamsEnum;
|
|
567
|
-
["demoSortInput"]: {
|
|
568
|
-
slug?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
569
|
-
createdAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
570
|
-
updatedAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
571
|
-
};
|
|
572
|
-
["postSortInput"]: {
|
|
573
|
-
slug?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
574
|
-
createdAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
575
|
-
updatedAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
576
|
-
};
|
|
577
|
-
["demoFilterInput"]: {
|
|
578
|
-
slug?: ValueTypes["FilterInputString"] | undefined | null | Variable<any, string>;
|
|
579
|
-
};
|
|
580
|
-
["postFilterInput"]: {
|
|
581
|
-
slug?: ValueTypes["FilterInputString"] | undefined | null | Variable<any, string>;
|
|
582
|
-
};
|
|
583
|
-
["ID"]: unknown;
|
|
584
|
-
};
|
|
585
|
-
export type ResolverInputTypes = {
|
|
586
|
-
["ObjectId"]: unknown;
|
|
587
|
-
["S3Scalar"]: unknown;
|
|
588
|
-
["Timestamp"]: unknown;
|
|
589
|
-
["ModelNavigationCompiled"]: unknown;
|
|
590
|
-
["BakedIpsumData"]: unknown;
|
|
591
|
-
["JSON"]: unknown;
|
|
592
|
-
["TailwindConfiguration"]: AliasType<{
|
|
743
|
+
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: AliasType<{
|
|
593
744
|
content?: boolean | `@${string}`;
|
|
594
|
-
contentForClient?: boolean | `@${string}`;
|
|
595
|
-
compiledForIframe?: boolean | `@${string}`;
|
|
596
745
|
__typename?: boolean | `@${string}`;
|
|
597
746
|
}>;
|
|
598
|
-
["
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
to?: boolean | `@${string}`;
|
|
747
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"]: AliasType<{
|
|
748
|
+
scrollspy_title?: boolean | `@${string}`;
|
|
749
|
+
scrollspy_list?: boolean | `@${string}`;
|
|
602
750
|
__typename?: boolean | `@${string}`;
|
|
603
751
|
}>;
|
|
604
|
-
["
|
|
605
|
-
|
|
606
|
-
max?: boolean | `@${string}`;
|
|
752
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspy"]: AliasType<{
|
|
753
|
+
scrollspy_container?: ValueTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"];
|
|
607
754
|
__typename?: boolean | `@${string}`;
|
|
608
755
|
}>;
|
|
609
|
-
["
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
alt?: boolean | `@${string}`;
|
|
756
|
+
["Shapedocs_contentDocumentation_pageContent_container"]: AliasType<{
|
|
757
|
+
doc_content?: ValueTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"];
|
|
758
|
+
scrollspy?: ValueTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"];
|
|
613
759
|
__typename?: boolean | `@${string}`;
|
|
614
760
|
}>;
|
|
615
|
-
["
|
|
616
|
-
|
|
617
|
-
previewImage?: boolean | `@${string}`;
|
|
618
|
-
alt?: boolean | `@${string}`;
|
|
761
|
+
["Shapedocs_contentDocumentation_page"]: AliasType<{
|
|
762
|
+
content_container?: ValueTypes["Shapedocs_contentDocumentation_pageContent_container"];
|
|
619
763
|
__typename?: boolean | `@${string}`;
|
|
620
764
|
}>;
|
|
621
|
-
["
|
|
765
|
+
["Shapedocs_content"]: AliasType<{
|
|
766
|
+
documentation_page?: ValueTypes["Shapedocs_contentDocumentation_page"];
|
|
622
767
|
_id?: boolean | `@${string}`;
|
|
623
|
-
|
|
624
|
-
|
|
768
|
+
createdAt?: boolean | `@${string}`;
|
|
769
|
+
updatedAt?: boolean | `@${string}`;
|
|
625
770
|
__typename?: boolean | `@${string}`;
|
|
626
771
|
}>;
|
|
627
|
-
["
|
|
628
|
-
["RootCMSParam"]: AliasType<{
|
|
772
|
+
["Shapedocs_navMainListChildrenCategory"]: AliasType<{
|
|
629
773
|
name?: boolean | `@${string}`;
|
|
630
|
-
|
|
631
|
-
default?: boolean | `@${string}`;
|
|
774
|
+
link?: boolean | `@${string}`;
|
|
632
775
|
__typename?: boolean | `@${string}`;
|
|
633
776
|
}>;
|
|
634
|
-
["
|
|
635
|
-
|
|
636
|
-
display?: boolean | `@${string}`;
|
|
637
|
-
fields?: ResolverInputTypes["CMSField"];
|
|
638
|
-
fieldSet?: boolean | `@${string}`;
|
|
777
|
+
["Shapedocs_navMainListChildren"]: AliasType<{
|
|
778
|
+
category?: ValueTypes["Shapedocs_navMainListChildrenCategory"];
|
|
639
779
|
__typename?: boolean | `@${string}`;
|
|
640
780
|
}>;
|
|
641
|
-
["
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
type?: boolean | `@${string}`;
|
|
645
|
-
list?: boolean | `@${string}`;
|
|
646
|
-
searchable?: boolean | `@${string}`;
|
|
647
|
-
sortable?: boolean | `@${string}`;
|
|
648
|
-
filterable?: boolean | `@${string}`;
|
|
649
|
-
rangeValues?: boolean | `@${string}`;
|
|
650
|
-
options?: boolean | `@${string}`;
|
|
651
|
-
relation?: boolean | `@${string}`;
|
|
652
|
-
fields?: ResolverInputTypes["CMSField"];
|
|
653
|
-
builtIn?: boolean | `@${string}`;
|
|
654
|
-
visual?: ResolverInputTypes["Visual"];
|
|
655
|
-
conditions?: ResolverInputTypes["Condition"];
|
|
656
|
-
nonTranslatable?: boolean | `@${string}`;
|
|
781
|
+
["Shapedocs_navMainList"]: AliasType<{
|
|
782
|
+
title?: boolean | `@${string}`;
|
|
783
|
+
children?: ValueTypes["Shapedocs_navMainListChildren"];
|
|
657
784
|
__typename?: boolean | `@${string}`;
|
|
658
785
|
}>;
|
|
659
|
-
["
|
|
660
|
-
|
|
661
|
-
["ConditionType"]: ConditionType;
|
|
662
|
-
["Condition"]: AliasType<{
|
|
663
|
-
type?: boolean | `@${string}`;
|
|
664
|
-
path?: boolean | `@${string}`;
|
|
665
|
-
operator?: boolean | `@${string}`;
|
|
666
|
-
setOperator?: boolean | `@${string}`;
|
|
667
|
-
value?: boolean | `@${string}`;
|
|
668
|
-
children?: ResolverInputTypes["Condition"];
|
|
786
|
+
["Shapedocs_navMain"]: AliasType<{
|
|
787
|
+
list?: ValueTypes["Shapedocs_navMainList"];
|
|
669
788
|
__typename?: boolean | `@${string}`;
|
|
670
789
|
}>;
|
|
671
|
-
["
|
|
672
|
-
|
|
673
|
-
|
|
790
|
+
["Shapedocs_nav"]: AliasType<{
|
|
791
|
+
main?: ValueTypes["Shapedocs_navMain"];
|
|
792
|
+
_id?: boolean | `@${string}`;
|
|
793
|
+
createdAt?: boolean | `@${string}`;
|
|
794
|
+
updatedAt?: boolean | `@${string}`;
|
|
674
795
|
__typename?: boolean | `@${string}`;
|
|
675
796
|
}>;
|
|
676
|
-
["
|
|
677
|
-
|
|
678
|
-
|
|
797
|
+
["ShapefeaturepresentationMain"]: AliasType<{
|
|
798
|
+
title?: boolean | `@${string}`;
|
|
799
|
+
subtitle?: boolean | `@${string}`;
|
|
800
|
+
content?: boolean | `@${string}`;
|
|
679
801
|
__typename?: boolean | `@${string}`;
|
|
680
802
|
}>;
|
|
681
|
-
["
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
eq?: string | undefined | null;
|
|
687
|
-
ne?: string | undefined | null;
|
|
688
|
-
contain?: string | undefined | null;
|
|
689
|
-
};
|
|
690
|
-
["Shape"]: AliasType<{
|
|
691
|
-
name?: boolean | `@${string}`;
|
|
692
|
-
slug?: boolean | `@${string}`;
|
|
693
|
-
display?: boolean | `@${string}`;
|
|
694
|
-
previewFields?: boolean | `@${string}`;
|
|
695
|
-
prompt?: boolean | `@${string}`;
|
|
696
|
-
promptResponse?: ResolverInputTypes["AiComponent"];
|
|
697
|
-
fields?: ResolverInputTypes["CMSField"];
|
|
803
|
+
["Shapefeaturepresentation"]: AliasType<{
|
|
804
|
+
main?: ValueTypes["ShapefeaturepresentationMain"];
|
|
805
|
+
_id?: boolean | `@${string}`;
|
|
806
|
+
createdAt?: boolean | `@${string}`;
|
|
807
|
+
updatedAt?: boolean | `@${string}`;
|
|
698
808
|
__typename?: boolean | `@${string}`;
|
|
699
809
|
}>;
|
|
700
|
-
["
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
display?: boolean | `@${string}`;
|
|
810
|
+
["ShapefootFooterFooter_containerFooter_links"]: AliasType<{
|
|
811
|
+
privacy_policy?: boolean | `@${string}`;
|
|
812
|
+
terms_of_service?: boolean | `@${string}`;
|
|
813
|
+
contact_us?: boolean | `@${string}`;
|
|
705
814
|
__typename?: boolean | `@${string}`;
|
|
706
815
|
}>;
|
|
707
|
-
["
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
textContent?: boolean | `@${string}`;
|
|
712
|
-
children?: ResolverInputTypes["AiComponent"];
|
|
816
|
+
["ShapefootFooterFooter_container"]: AliasType<{
|
|
817
|
+
footer_logo?: boolean | `@${string}`;
|
|
818
|
+
footer_links?: ValueTypes["ShapefootFooterFooter_containerFooter_links"];
|
|
819
|
+
footer_copy?: boolean | `@${string}`;
|
|
713
820
|
__typename?: boolean | `@${string}`;
|
|
714
821
|
}>;
|
|
715
|
-
["
|
|
716
|
-
|
|
717
|
-
display?: boolean | `@${string}`;
|
|
718
|
-
type?: boolean | `@${string}`;
|
|
719
|
-
list?: boolean | `@${string}`;
|
|
720
|
-
fields?: ResolverInputTypes["FormField"];
|
|
721
|
-
visual?: ResolverInputTypes["Visual"];
|
|
722
|
-
conditions?: ResolverInputTypes["Condition"];
|
|
723
|
-
placeholder?: boolean | `@${string}`;
|
|
724
|
-
root?: boolean | `@${string}`;
|
|
725
|
-
options?: boolean | `@${string}`;
|
|
726
|
-
builtIn?: boolean | `@${string}`;
|
|
727
|
-
nonTranslatable?: boolean | `@${string}`;
|
|
822
|
+
["ShapefootFooter"]: AliasType<{
|
|
823
|
+
footer_container?: ValueTypes["ShapefootFooterFooter_container"];
|
|
728
824
|
__typename?: boolean | `@${string}`;
|
|
729
825
|
}>;
|
|
730
|
-
["
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
826
|
+
["Shapefoot"]: AliasType<{
|
|
827
|
+
footer?: ValueTypes["ShapefootFooter"];
|
|
828
|
+
_id?: boolean | `@${string}`;
|
|
829
|
+
createdAt?: boolean | `@${string}`;
|
|
830
|
+
updatedAt?: boolean | `@${string}`;
|
|
735
831
|
__typename?: boolean | `@${string}`;
|
|
736
832
|
}>;
|
|
737
|
-
["
|
|
738
|
-
|
|
739
|
-
placeholder?: boolean | `@${string}`;
|
|
833
|
+
["ShapeheroHero_componentSlogan_parent"]: AliasType<{
|
|
834
|
+
slogan?: boolean | `@${string}`;
|
|
740
835
|
__typename?: boolean | `@${string}`;
|
|
741
836
|
}>;
|
|
742
|
-
["
|
|
743
|
-
|
|
837
|
+
["ShapeheroHero_component"]: AliasType<{
|
|
838
|
+
logoplace?: boolean | `@${string}`;
|
|
839
|
+
logo?: boolean | `@${string}`;
|
|
840
|
+
slogan_parent?: ValueTypes["ShapeheroHero_componentSlogan_parent"];
|
|
841
|
+
subslogan?: boolean | `@${string}`;
|
|
744
842
|
__typename?: boolean | `@${string}`;
|
|
745
843
|
}>;
|
|
746
|
-
["
|
|
747
|
-
|
|
748
|
-
|
|
844
|
+
["Shapehero"]: AliasType<{
|
|
845
|
+
hero_component?: ValueTypes["ShapeheroHero_component"];
|
|
846
|
+
_id?: boolean | `@${string}`;
|
|
847
|
+
createdAt?: boolean | `@${string}`;
|
|
848
|
+
updatedAt?: boolean | `@${string}`;
|
|
749
849
|
__typename?: boolean | `@${string}`;
|
|
750
850
|
}>;
|
|
751
|
-
["
|
|
752
|
-
|
|
851
|
+
["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"]: AliasType<{
|
|
852
|
+
feature?: boolean | `@${string}`;
|
|
753
853
|
__typename?: boolean | `@${string}`;
|
|
754
854
|
}>;
|
|
755
|
-
["
|
|
756
|
-
|
|
855
|
+
["ShapeheroxHero_sectionHero_containerText_wrapper"]: AliasType<{
|
|
856
|
+
title?: boolean | `@${string}`;
|
|
857
|
+
description?: boolean | `@${string}`;
|
|
858
|
+
features?: ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"];
|
|
757
859
|
__typename?: boolean | `@${string}`;
|
|
758
860
|
}>;
|
|
759
|
-
["
|
|
760
|
-
|
|
761
|
-
placeholder?: boolean | `@${string}`;
|
|
861
|
+
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: AliasType<{
|
|
862
|
+
hero_image?: ValueTypes["ImageField"];
|
|
762
863
|
__typename?: boolean | `@${string}`;
|
|
763
864
|
}>;
|
|
764
|
-
["
|
|
765
|
-
|
|
865
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: AliasType<{
|
|
866
|
+
video?: ValueTypes["VideoField"];
|
|
766
867
|
__typename?: boolean | `@${string}`;
|
|
767
868
|
}>;
|
|
768
|
-
["
|
|
769
|
-
|
|
869
|
+
["ShapeheroxHero_sectionHero_container"]: AliasType<{
|
|
870
|
+
text_wrapper?: ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapper"];
|
|
871
|
+
image_wrapper?: ValueTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"];
|
|
872
|
+
presentation?: ValueTypes["ShapeheroxHero_sectionHero_containerPresentation"];
|
|
770
873
|
__typename?: boolean | `@${string}`;
|
|
771
874
|
}>;
|
|
772
|
-
["
|
|
773
|
-
|
|
774
|
-
portal?: boolean | `@${string}`;
|
|
875
|
+
["ShapeheroxHero_section"]: AliasType<{
|
|
876
|
+
hero_container?: ValueTypes["ShapeheroxHero_sectionHero_container"];
|
|
775
877
|
__typename?: boolean | `@${string}`;
|
|
776
878
|
}>;
|
|
777
|
-
["
|
|
778
|
-
|
|
879
|
+
["Shapeherox"]: AliasType<{
|
|
880
|
+
hero_section?: ValueTypes["ShapeheroxHero_section"];
|
|
881
|
+
_id?: boolean | `@${string}`;
|
|
882
|
+
createdAt?: boolean | `@${string}`;
|
|
883
|
+
updatedAt?: boolean | `@${string}`;
|
|
884
|
+
__typename?: boolean | `@${string}`;
|
|
885
|
+
}>;
|
|
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"];
|
|
894
|
+
__typename?: boolean | `@${string}`;
|
|
895
|
+
}>;
|
|
896
|
+
["Shapelista_projektowList"]: AliasType<{
|
|
897
|
+
title?: boolean | `@${string}`;
|
|
898
|
+
subtitle?: boolean | `@${string}`;
|
|
899
|
+
projects?: ValueTypes["Shapelista_projektowListProjects"];
|
|
900
|
+
__typename?: boolean | `@${string}`;
|
|
901
|
+
}>;
|
|
902
|
+
["Shapelista_projektow"]: AliasType<{
|
|
903
|
+
list?: ValueTypes["Shapelista_projektowList"];
|
|
904
|
+
_id?: boolean | `@${string}`;
|
|
905
|
+
createdAt?: boolean | `@${string}`;
|
|
906
|
+
updatedAt?: boolean | `@${string}`;
|
|
907
|
+
__typename?: boolean | `@${string}`;
|
|
908
|
+
}>;
|
|
909
|
+
["ShapenavNavigationNavigation_linksLink"]: AliasType<{
|
|
910
|
+
display?: boolean | `@${string}`;
|
|
911
|
+
href?: boolean | `@${string}`;
|
|
912
|
+
__typename?: boolean | `@${string}`;
|
|
913
|
+
}>;
|
|
914
|
+
["ShapenavNavigationNavigation_links"]: AliasType<{
|
|
915
|
+
link?: ValueTypes["ShapenavNavigationNavigation_linksLink"];
|
|
916
|
+
__typename?: boolean | `@${string}`;
|
|
917
|
+
}>;
|
|
918
|
+
["ShapenavNavigation"]: AliasType<{
|
|
919
|
+
logo?: boolean | `@${string}`;
|
|
920
|
+
navigation_links?: ValueTypes["ShapenavNavigationNavigation_links"];
|
|
921
|
+
__typename?: boolean | `@${string}`;
|
|
922
|
+
}>;
|
|
923
|
+
["Shapenav"]: AliasType<{
|
|
924
|
+
navigation?: ValueTypes["ShapenavNavigation"];
|
|
925
|
+
_id?: boolean | `@${string}`;
|
|
926
|
+
createdAt?: boolean | `@${string}`;
|
|
927
|
+
updatedAt?: boolean | `@${string}`;
|
|
928
|
+
__typename?: boolean | `@${string}`;
|
|
929
|
+
}>;
|
|
930
|
+
["ShapenewshapeBackgroundContent"]: AliasType<{
|
|
931
|
+
badge?: boolean | `@${string}`;
|
|
932
|
+
headline?: boolean | `@${string}`;
|
|
933
|
+
subheadline?: boolean | `@${string}`;
|
|
934
|
+
cta_label?: boolean | `@${string}`;
|
|
935
|
+
cta_href?: boolean | `@${string}`;
|
|
936
|
+
__typename?: boolean | `@${string}`;
|
|
937
|
+
}>;
|
|
938
|
+
["ShapenewshapeBackground"]: AliasType<{
|
|
939
|
+
overlay_gradient?: boolean | `@${string}`;
|
|
940
|
+
content?: ValueTypes["ShapenewshapeBackgroundContent"];
|
|
941
|
+
hero_image?: ValueTypes["ImageField"];
|
|
942
|
+
__typename?: boolean | `@${string}`;
|
|
943
|
+
}>;
|
|
944
|
+
["Shapenewshape"]: AliasType<{
|
|
945
|
+
background?: ValueTypes["ShapenewshapeBackground"];
|
|
946
|
+
_id?: boolean | `@${string}`;
|
|
947
|
+
createdAt?: boolean | `@${string}`;
|
|
948
|
+
updatedAt?: boolean | `@${string}`;
|
|
949
|
+
__typename?: boolean | `@${string}`;
|
|
950
|
+
}>;
|
|
951
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: AliasType<{
|
|
952
|
+
title?: boolean | `@${string}`;
|
|
953
|
+
description?: boolean | `@${string}`;
|
|
954
|
+
__typename?: boolean | `@${string}`;
|
|
955
|
+
}>;
|
|
956
|
+
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: AliasType<{
|
|
957
|
+
feature?: boolean | `@${string}`;
|
|
958
|
+
unit?: boolean | `@${string}`;
|
|
959
|
+
price?: boolean | `@${string}`;
|
|
960
|
+
__typename?: boolean | `@${string}`;
|
|
961
|
+
}>;
|
|
962
|
+
["Shapepricing_tablePricing_sectionPricing_tableRows"]: AliasType<{
|
|
963
|
+
feature?: boolean | `@${string}`;
|
|
964
|
+
unit?: boolean | `@${string}`;
|
|
965
|
+
price?: boolean | `@${string}`;
|
|
966
|
+
__typename?: boolean | `@${string}`;
|
|
967
|
+
}>;
|
|
968
|
+
["Shapepricing_tablePricing_sectionPricing_table"]: AliasType<{
|
|
969
|
+
table_head?: ValueTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"];
|
|
970
|
+
rows?: ValueTypes["Shapepricing_tablePricing_sectionPricing_tableRows"];
|
|
971
|
+
__typename?: boolean | `@${string}`;
|
|
972
|
+
}>;
|
|
973
|
+
["Shapepricing_tablePricing_section"]: AliasType<{
|
|
974
|
+
header_wrapper?: ValueTypes["Shapepricing_tablePricing_sectionHeader_wrapper"];
|
|
975
|
+
pricing_table?: ValueTypes["Shapepricing_tablePricing_sectionPricing_table"];
|
|
976
|
+
__typename?: boolean | `@${string}`;
|
|
977
|
+
}>;
|
|
978
|
+
["Shapepricing_table"]: AliasType<{
|
|
979
|
+
pricing_section?: ValueTypes["Shapepricing_tablePricing_section"];
|
|
980
|
+
_id?: boolean | `@${string}`;
|
|
981
|
+
createdAt?: boolean | `@${string}`;
|
|
982
|
+
updatedAt?: boolean | `@${string}`;
|
|
983
|
+
__typename?: boolean | `@${string}`;
|
|
984
|
+
}>;
|
|
985
|
+
["Shapepricingv1Pricing_sectionHeader_wrapper"]: AliasType<{
|
|
986
|
+
title?: boolean | `@${string}`;
|
|
987
|
+
description?: boolean | `@${string}`;
|
|
988
|
+
__typename?: boolean | `@${string}`;
|
|
989
|
+
}>;
|
|
990
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"]: AliasType<{
|
|
991
|
+
feature?: boolean | `@${string}`;
|
|
992
|
+
__typename?: boolean | `@${string}`;
|
|
993
|
+
}>;
|
|
994
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_plan"]: AliasType<{
|
|
995
|
+
plan_name?: boolean | `@${string}`;
|
|
996
|
+
price?: boolean | `@${string}`;
|
|
997
|
+
plan_description?: boolean | `@${string}`;
|
|
998
|
+
feature_list?: ValueTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"];
|
|
999
|
+
cta?: boolean | `@${string}`;
|
|
1000
|
+
__typename?: boolean | `@${string}`;
|
|
1001
|
+
}>;
|
|
1002
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: AliasType<{
|
|
1003
|
+
feature?: boolean | `@${string}`;
|
|
1004
|
+
__typename?: boolean | `@${string}`;
|
|
1005
|
+
}>;
|
|
1006
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: AliasType<{
|
|
1007
|
+
plan_name?: boolean | `@${string}`;
|
|
1008
|
+
price?: boolean | `@${string}`;
|
|
1009
|
+
plan_description?: boolean | `@${string}`;
|
|
1010
|
+
feature_list?: ValueTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"];
|
|
1011
|
+
cta?: boolean | `@${string}`;
|
|
1012
|
+
__typename?: boolean | `@${string}`;
|
|
1013
|
+
}>;
|
|
1014
|
+
["Shapepricingv1Pricing_sectionPlans_grid"]: AliasType<{
|
|
1015
|
+
free_plan?: ValueTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"];
|
|
1016
|
+
paid_plan?: ValueTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"];
|
|
1017
|
+
__typename?: boolean | `@${string}`;
|
|
1018
|
+
}>;
|
|
1019
|
+
["Shapepricingv1Pricing_section"]: AliasType<{
|
|
1020
|
+
header_wrapper?: ValueTypes["Shapepricingv1Pricing_sectionHeader_wrapper"];
|
|
1021
|
+
plans_grid?: ValueTypes["Shapepricingv1Pricing_sectionPlans_grid"];
|
|
1022
|
+
__typename?: boolean | `@${string}`;
|
|
1023
|
+
}>;
|
|
1024
|
+
["Shapepricingv1"]: AliasType<{
|
|
1025
|
+
pricing_section?: ValueTypes["Shapepricingv1Pricing_section"];
|
|
1026
|
+
_id?: boolean | `@${string}`;
|
|
1027
|
+
createdAt?: boolean | `@${string}`;
|
|
1028
|
+
updatedAt?: boolean | `@${string}`;
|
|
1029
|
+
__typename?: boolean | `@${string}`;
|
|
1030
|
+
}>;
|
|
1031
|
+
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: AliasType<{
|
|
1032
|
+
full_name?: boolean | `@${string}`;
|
|
1033
|
+
company?: boolean | `@${string}`;
|
|
1034
|
+
email?: boolean | `@${string}`;
|
|
1035
|
+
__typename?: boolean | `@${string}`;
|
|
1036
|
+
}>;
|
|
1037
|
+
["Shapeprofile_infoProfile_sectionAccount_header"]: AliasType<{
|
|
1038
|
+
avatar?: ValueTypes["ImageField"];
|
|
1039
|
+
info?: ValueTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"];
|
|
1040
|
+
__typename?: boolean | `@${string}`;
|
|
1041
|
+
}>;
|
|
1042
|
+
["Shapeprofile_infoProfile_sectionPlan_status"]: AliasType<{
|
|
1043
|
+
plan?: boolean | `@${string}`;
|
|
1044
|
+
__typename?: boolean | `@${string}`;
|
|
1045
|
+
}>;
|
|
1046
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: AliasType<{
|
|
1047
|
+
label?: boolean | `@${string}`;
|
|
1048
|
+
value?: boolean | `@${string}`;
|
|
1049
|
+
__typename?: boolean | `@${string}`;
|
|
1050
|
+
}>;
|
|
1051
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: AliasType<{
|
|
1052
|
+
label?: boolean | `@${string}`;
|
|
1053
|
+
value?: boolean | `@${string}`;
|
|
1054
|
+
__typename?: boolean | `@${string}`;
|
|
1055
|
+
}>;
|
|
1056
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: AliasType<{
|
|
1057
|
+
label?: boolean | `@${string}`;
|
|
1058
|
+
value?: boolean | `@${string}`;
|
|
1059
|
+
__typename?: boolean | `@${string}`;
|
|
1060
|
+
}>;
|
|
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"];
|
|
1065
|
+
__typename?: boolean | `@${string}`;
|
|
1066
|
+
}>;
|
|
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"];
|
|
1071
|
+
__typename?: boolean | `@${string}`;
|
|
1072
|
+
}>;
|
|
1073
|
+
["Shapeprofile_info"]: AliasType<{
|
|
1074
|
+
profile_section?: ValueTypes["Shapeprofile_infoProfile_section"];
|
|
1075
|
+
_id?: boolean | `@${string}`;
|
|
1076
|
+
createdAt?: boolean | `@${string}`;
|
|
1077
|
+
updatedAt?: boolean | `@${string}`;
|
|
1078
|
+
__typename?: boolean | `@${string}`;
|
|
1079
|
+
}>;
|
|
1080
|
+
["ShapeusageMain"]: AliasType<{
|
|
1081
|
+
title?: boolean | `@${string}`;
|
|
1082
|
+
subtitle?: boolean | `@${string}`;
|
|
1083
|
+
period?: boolean | `@${string}`;
|
|
1084
|
+
tokens_consumed?: boolean | `@${string}`;
|
|
1085
|
+
__typename?: boolean | `@${string}`;
|
|
1086
|
+
}>;
|
|
1087
|
+
["Shapeusage"]: AliasType<{
|
|
1088
|
+
main?: ValueTypes["ShapeusageMain"];
|
|
1089
|
+
_id?: boolean | `@${string}`;
|
|
1090
|
+
createdAt?: boolean | `@${string}`;
|
|
1091
|
+
updatedAt?: boolean | `@${string}`;
|
|
1092
|
+
__typename?: boolean | `@${string}`;
|
|
1093
|
+
}>;
|
|
1094
|
+
["RootParamsInput"]: {
|
|
1095
|
+
_version?: string | undefined | null | Variable<any, string>;
|
|
1096
|
+
locale?: string | undefined | null | Variable<any, string>;
|
|
1097
|
+
};
|
|
1098
|
+
["RootParamsEnum"]: RootParamsEnum;
|
|
1099
|
+
["docsSortInput"]: {
|
|
1100
|
+
slug?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
1101
|
+
createdAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
1102
|
+
updatedAt?: ValueTypes["Sort"] | undefined | null | Variable<any, string>;
|
|
1103
|
+
};
|
|
1104
|
+
["docsFilterInput"]: {
|
|
1105
|
+
slug?: ValueTypes["FilterInputString"] | undefined | null | Variable<any, string>;
|
|
1106
|
+
};
|
|
1107
|
+
["ID"]: unknown;
|
|
1108
|
+
};
|
|
1109
|
+
export type ResolverInputTypes = {
|
|
1110
|
+
["ObjectId"]: unknown;
|
|
1111
|
+
["S3Scalar"]: unknown;
|
|
1112
|
+
["Timestamp"]: unknown;
|
|
1113
|
+
["ModelNavigationCompiled"]: unknown;
|
|
1114
|
+
["BakedIpsumData"]: unknown;
|
|
1115
|
+
["JSON"]: unknown;
|
|
1116
|
+
["TailwindConfiguration"]: AliasType<{
|
|
1117
|
+
content?: boolean | `@${string}`;
|
|
1118
|
+
contentForClient?: boolean | `@${string}`;
|
|
1119
|
+
compiledForIframe?: boolean | `@${string}`;
|
|
1120
|
+
__typename?: boolean | `@${string}`;
|
|
1121
|
+
}>;
|
|
1122
|
+
["VersionField"]: AliasType<{
|
|
1123
|
+
name?: boolean | `@${string}`;
|
|
1124
|
+
from?: boolean | `@${string}`;
|
|
1125
|
+
to?: boolean | `@${string}`;
|
|
1126
|
+
__typename?: boolean | `@${string}`;
|
|
1127
|
+
}>;
|
|
1128
|
+
["RangeField"]: AliasType<{
|
|
1129
|
+
min?: boolean | `@${string}`;
|
|
1130
|
+
max?: boolean | `@${string}`;
|
|
1131
|
+
__typename?: boolean | `@${string}`;
|
|
1132
|
+
}>;
|
|
1133
|
+
["ImageField"]: AliasType<{
|
|
1134
|
+
url?: boolean | `@${string}`;
|
|
1135
|
+
thumbnail?: boolean | `@${string}`;
|
|
1136
|
+
alt?: boolean | `@${string}`;
|
|
1137
|
+
__typename?: boolean | `@${string}`;
|
|
1138
|
+
}>;
|
|
1139
|
+
["VideoField"]: AliasType<{
|
|
1140
|
+
url?: boolean | `@${string}`;
|
|
1141
|
+
previewImage?: boolean | `@${string}`;
|
|
1142
|
+
alt?: boolean | `@${string}`;
|
|
1143
|
+
__typename?: boolean | `@${string}`;
|
|
1144
|
+
}>;
|
|
1145
|
+
["InternalLink"]: AliasType<{
|
|
1146
|
+
_id?: boolean | `@${string}`;
|
|
1147
|
+
keys?: boolean | `@${string}`;
|
|
1148
|
+
href?: boolean | `@${string}`;
|
|
1149
|
+
__typename?: boolean | `@${string}`;
|
|
1150
|
+
}>;
|
|
1151
|
+
["Sort"]: Sort;
|
|
1152
|
+
["RootCMSParam"]: AliasType<{
|
|
1153
|
+
name?: boolean | `@${string}`;
|
|
1154
|
+
options?: boolean | `@${string}`;
|
|
1155
|
+
default?: boolean | `@${string}`;
|
|
1156
|
+
__typename?: boolean | `@${string}`;
|
|
1157
|
+
}>;
|
|
1158
|
+
["ModelNavigation"]: AliasType<{
|
|
1159
|
+
name?: boolean | `@${string}`;
|
|
1160
|
+
display?: boolean | `@${string}`;
|
|
1161
|
+
fields?: ResolverInputTypes["CMSField"];
|
|
1162
|
+
fieldSet?: boolean | `@${string}`;
|
|
1163
|
+
__typename?: boolean | `@${string}`;
|
|
1164
|
+
}>;
|
|
1165
|
+
["CMSField"]: AliasType<{
|
|
1166
|
+
name?: boolean | `@${string}`;
|
|
1167
|
+
display?: boolean | `@${string}`;
|
|
1168
|
+
type?: boolean | `@${string}`;
|
|
1169
|
+
list?: boolean | `@${string}`;
|
|
1170
|
+
searchable?: boolean | `@${string}`;
|
|
1171
|
+
sortable?: boolean | `@${string}`;
|
|
1172
|
+
filterable?: boolean | `@${string}`;
|
|
1173
|
+
rangeValues?: boolean | `@${string}`;
|
|
1174
|
+
options?: boolean | `@${string}`;
|
|
1175
|
+
relation?: boolean | `@${string}`;
|
|
1176
|
+
fields?: ResolverInputTypes["CMSField"];
|
|
1177
|
+
builtIn?: boolean | `@${string}`;
|
|
1178
|
+
visual?: ResolverInputTypes["Visual"];
|
|
1179
|
+
conditions?: ResolverInputTypes["Condition"];
|
|
1180
|
+
nonTranslatable?: boolean | `@${string}`;
|
|
1181
|
+
__typename?: boolean | `@${string}`;
|
|
1182
|
+
}>;
|
|
1183
|
+
["ConditionSetOperator"]: ConditionSetOperator;
|
|
1184
|
+
["ConditionOperator"]: ConditionOperator;
|
|
1185
|
+
["ConditionType"]: ConditionType;
|
|
1186
|
+
["Condition"]: AliasType<{
|
|
1187
|
+
type?: boolean | `@${string}`;
|
|
1188
|
+
path?: boolean | `@${string}`;
|
|
1189
|
+
operator?: boolean | `@${string}`;
|
|
1190
|
+
setOperator?: boolean | `@${string}`;
|
|
1191
|
+
value?: boolean | `@${string}`;
|
|
1192
|
+
children?: ResolverInputTypes["Condition"];
|
|
1193
|
+
__typename?: boolean | `@${string}`;
|
|
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
|
+
}>;
|
|
1207
|
+
["Visual"]: AliasType<{
|
|
1208
|
+
className?: boolean | `@${string}`;
|
|
1209
|
+
component?: boolean | `@${string}`;
|
|
1210
|
+
__typename?: boolean | `@${string}`;
|
|
1211
|
+
}>;
|
|
1212
|
+
["PageInfo"]: AliasType<{
|
|
1213
|
+
total?: boolean | `@${string}`;
|
|
1214
|
+
hasNext?: boolean | `@${string}`;
|
|
1215
|
+
__typename?: boolean | `@${string}`;
|
|
1216
|
+
}>;
|
|
1217
|
+
["PageInput"]: {
|
|
1218
|
+
limit: number;
|
|
1219
|
+
start?: number | undefined | null;
|
|
1220
|
+
};
|
|
1221
|
+
["FilterInputString"]: {
|
|
1222
|
+
eq?: string | undefined | null;
|
|
1223
|
+
ne?: string | undefined | null;
|
|
1224
|
+
contain?: string | undefined | null;
|
|
1225
|
+
};
|
|
1226
|
+
["Mutation"]: AliasType<{
|
|
1227
|
+
heartbeat?: boolean | `@${string}`;
|
|
1228
|
+
__typename?: boolean | `@${string}`;
|
|
1229
|
+
}>;
|
|
1230
|
+
["RootParamsAdminType"]: unknown;
|
|
1231
|
+
["Shape"]: AliasType<{
|
|
1232
|
+
name?: boolean | `@${string}`;
|
|
1233
|
+
slug?: boolean | `@${string}`;
|
|
1234
|
+
display?: boolean | `@${string}`;
|
|
1235
|
+
previewFields?: boolean | `@${string}`;
|
|
1236
|
+
prompt?: boolean | `@${string}`;
|
|
1237
|
+
promptResponse?: ResolverInputTypes["AiComponent"];
|
|
1238
|
+
fields?: ResolverInputTypes["CMSField"];
|
|
1239
|
+
__typename?: boolean | `@${string}`;
|
|
1240
|
+
}>;
|
|
1241
|
+
["View"]: AliasType<{
|
|
1242
|
+
name?: boolean | `@${string}`;
|
|
1243
|
+
fields?: ResolverInputTypes["CMSField"];
|
|
1244
|
+
slug?: boolean | `@${string}`;
|
|
1245
|
+
display?: boolean | `@${string}`;
|
|
1246
|
+
__typename?: boolean | `@${string}`;
|
|
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
|
+
}>;
|
|
1262
|
+
["FormField"]: AliasType<{
|
|
1263
|
+
name?: boolean | `@${string}`;
|
|
1264
|
+
display?: boolean | `@${string}`;
|
|
1265
|
+
type?: boolean | `@${string}`;
|
|
1266
|
+
list?: boolean | `@${string}`;
|
|
1267
|
+
fields?: ResolverInputTypes["FormField"];
|
|
1268
|
+
visual?: ResolverInputTypes["FormFieldVisual"];
|
|
1269
|
+
placeholder?: boolean | `@${string}`;
|
|
1270
|
+
root?: boolean | `@${string}`;
|
|
1271
|
+
options?: boolean | `@${string}`;
|
|
1272
|
+
builtIn?: boolean | `@${string}`;
|
|
1273
|
+
nonTranslatable?: boolean | `@${string}`;
|
|
1274
|
+
__typename?: boolean | `@${string}`;
|
|
1275
|
+
}>;
|
|
1276
|
+
["FormFieldType"]: FormFieldType;
|
|
1277
|
+
["Form"]: AliasType<{
|
|
1278
|
+
name?: boolean | `@${string}`;
|
|
1279
|
+
display?: boolean | `@${string}`;
|
|
1280
|
+
fields?: ResolverInputTypes["FormField"];
|
|
1281
|
+
__typename?: boolean | `@${string}`;
|
|
1282
|
+
}>;
|
|
1283
|
+
["FormTextField"]: AliasType<{
|
|
1284
|
+
label?: boolean | `@${string}`;
|
|
1285
|
+
placeholder?: boolean | `@${string}`;
|
|
1286
|
+
__typename?: boolean | `@${string}`;
|
|
1287
|
+
}>;
|
|
1288
|
+
["FormBooleanField"]: AliasType<{
|
|
1289
|
+
label?: boolean | `@${string}`;
|
|
1290
|
+
__typename?: boolean | `@${string}`;
|
|
1291
|
+
}>;
|
|
1292
|
+
["FormContentField"]: AliasType<{
|
|
1293
|
+
label?: boolean | `@${string}`;
|
|
1294
|
+
placeholder?: boolean | `@${string}`;
|
|
1295
|
+
__typename?: boolean | `@${string}`;
|
|
1296
|
+
}>;
|
|
1297
|
+
["FormRadioField"]: AliasType<{
|
|
1298
|
+
label?: boolean | `@${string}`;
|
|
1299
|
+
__typename?: boolean | `@${string}`;
|
|
1300
|
+
}>;
|
|
1301
|
+
["FormStepField"]: AliasType<{
|
|
1302
|
+
label?: boolean | `@${string}`;
|
|
1303
|
+
__typename?: boolean | `@${string}`;
|
|
1304
|
+
}>;
|
|
1305
|
+
["FormTextareaField"]: AliasType<{
|
|
1306
|
+
label?: boolean | `@${string}`;
|
|
1307
|
+
placeholder?: boolean | `@${string}`;
|
|
1308
|
+
__typename?: boolean | `@${string}`;
|
|
1309
|
+
}>;
|
|
1310
|
+
["FormGroupField"]: AliasType<{
|
|
1311
|
+
label?: boolean | `@${string}`;
|
|
1312
|
+
__typename?: boolean | `@${string}`;
|
|
1313
|
+
}>;
|
|
1314
|
+
["FormArrayStepField"]: AliasType<{
|
|
1315
|
+
label?: boolean | `@${string}`;
|
|
1316
|
+
__typename?: boolean | `@${string}`;
|
|
1317
|
+
}>;
|
|
1318
|
+
["FormRouteField"]: AliasType<{
|
|
1319
|
+
label?: boolean | `@${string}`;
|
|
1320
|
+
portal?: boolean | `@${string}`;
|
|
1321
|
+
__typename?: boolean | `@${string}`;
|
|
1322
|
+
}>;
|
|
1323
|
+
["FormPortalField"]: AliasType<{
|
|
1324
|
+
label?: boolean | `@${string}`;
|
|
779
1325
|
__typename?: boolean | `@${string}`;
|
|
780
1326
|
}>;
|
|
781
1327
|
["FormSubmitField"]: AliasType<{
|
|
782
1328
|
label?: boolean | `@${string}`;
|
|
783
1329
|
__typename?: boolean | `@${string}`;
|
|
784
1330
|
}>;
|
|
785
|
-
["FormNumberField"]: AliasType<{
|
|
1331
|
+
["FormNumberField"]: AliasType<{
|
|
1332
|
+
label?: boolean | `@${string}`;
|
|
1333
|
+
__typename?: boolean | `@${string}`;
|
|
1334
|
+
}>;
|
|
1335
|
+
["FormRadioTextField"]: AliasType<{
|
|
1336
|
+
label?: boolean | `@${string}`;
|
|
1337
|
+
options?: boolean | `@${string}`;
|
|
1338
|
+
__typename?: boolean | `@${string}`;
|
|
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
|
+
}>;
|
|
1348
|
+
["FormProductField"]: AliasType<{
|
|
1349
|
+
label?: boolean | `@${string}`;
|
|
1350
|
+
name?: boolean | `@${string}`;
|
|
1351
|
+
__typename?: boolean | `@${string}`;
|
|
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
|
+
}>;
|
|
1364
|
+
["CMSType"]: CMSType;
|
|
1365
|
+
["Query"]: AliasType<{
|
|
1366
|
+
navigation?: ResolverInputTypes["ModelNavigation"];
|
|
1367
|
+
rootParams?: ResolverInputTypes["RootCMSParam"];
|
|
1368
|
+
versions?: ResolverInputTypes["VersionField"];
|
|
1369
|
+
links?: ResolverInputTypes["InternalLink"];
|
|
1370
|
+
listViews?: ResolverInputTypes["View"];
|
|
1371
|
+
listShapes?: ResolverInputTypes["Shape"];
|
|
1372
|
+
tailwind?: ResolverInputTypes["TailwindConfiguration"];
|
|
1373
|
+
listForms?: ResolverInputTypes["Form"];
|
|
1374
|
+
listPaginateddocs?: [{
|
|
1375
|
+
page: ResolverInputTypes["PageInput"];
|
|
1376
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1377
|
+
search?: string | undefined | null;
|
|
1378
|
+
sort?: ResolverInputTypes["docsSortInput"] | undefined | null;
|
|
1379
|
+
filter?: Array<ResolverInputTypes["docsFilterInput"] | undefined | null> | undefined | null;
|
|
1380
|
+
}, ResolverInputTypes["docs__Connection"]];
|
|
1381
|
+
onedocsBySlug?: [{
|
|
1382
|
+
slug: string;
|
|
1383
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1384
|
+
}, ResolverInputTypes["docs"]];
|
|
1385
|
+
variantsdocsBySlug?: [{
|
|
1386
|
+
slug: string;
|
|
1387
|
+
}, ResolverInputTypes["docs"]];
|
|
1388
|
+
fieldSetdocs?: boolean | `@${string}`;
|
|
1389
|
+
modeldocs?: boolean | `@${string}`;
|
|
1390
|
+
previewFieldsdocs?: boolean | `@${string}`;
|
|
1391
|
+
fieldSetShapedocs_content?: boolean | `@${string}`;
|
|
1392
|
+
modelShapedocs_content?: boolean | `@${string}`;
|
|
1393
|
+
previewFieldsShapedocs_content?: boolean | `@${string}`;
|
|
1394
|
+
oneShapedocs_content?: ResolverInputTypes["Shapedocs_content"];
|
|
1395
|
+
fieldSetShapedocs_nav?: boolean | `@${string}`;
|
|
1396
|
+
modelShapedocs_nav?: boolean | `@${string}`;
|
|
1397
|
+
previewFieldsShapedocs_nav?: boolean | `@${string}`;
|
|
1398
|
+
oneShapedocs_nav?: ResolverInputTypes["Shapedocs_nav"];
|
|
1399
|
+
fieldSetShapefeaturepresentation?: boolean | `@${string}`;
|
|
1400
|
+
modelShapefeaturepresentation?: boolean | `@${string}`;
|
|
1401
|
+
previewFieldsShapefeaturepresentation?: boolean | `@${string}`;
|
|
1402
|
+
oneShapefeaturepresentation?: ResolverInputTypes["Shapefeaturepresentation"];
|
|
1403
|
+
fieldSetShapefoot?: boolean | `@${string}`;
|
|
1404
|
+
modelShapefoot?: boolean | `@${string}`;
|
|
1405
|
+
previewFieldsShapefoot?: boolean | `@${string}`;
|
|
1406
|
+
oneShapefoot?: ResolverInputTypes["Shapefoot"];
|
|
1407
|
+
fieldSetShapehero?: boolean | `@${string}`;
|
|
1408
|
+
modelShapehero?: boolean | `@${string}`;
|
|
1409
|
+
previewFieldsShapehero?: boolean | `@${string}`;
|
|
1410
|
+
oneShapehero?: ResolverInputTypes["Shapehero"];
|
|
1411
|
+
fieldSetShapeherox?: boolean | `@${string}`;
|
|
1412
|
+
modelShapeherox?: boolean | `@${string}`;
|
|
1413
|
+
previewFieldsShapeherox?: boolean | `@${string}`;
|
|
1414
|
+
oneShapeherox?: ResolverInputTypes["Shapeherox"];
|
|
1415
|
+
fieldSetShapelista_projektow?: boolean | `@${string}`;
|
|
1416
|
+
modelShapelista_projektow?: boolean | `@${string}`;
|
|
1417
|
+
previewFieldsShapelista_projektow?: boolean | `@${string}`;
|
|
1418
|
+
oneShapelista_projektow?: ResolverInputTypes["Shapelista_projektow"];
|
|
1419
|
+
fieldSetShapenav?: boolean | `@${string}`;
|
|
1420
|
+
modelShapenav?: boolean | `@${string}`;
|
|
1421
|
+
previewFieldsShapenav?: boolean | `@${string}`;
|
|
1422
|
+
oneShapenav?: ResolverInputTypes["Shapenav"];
|
|
1423
|
+
fieldSetShapenewshape?: boolean | `@${string}`;
|
|
1424
|
+
modelShapenewshape?: boolean | `@${string}`;
|
|
1425
|
+
previewFieldsShapenewshape?: boolean | `@${string}`;
|
|
1426
|
+
oneShapenewshape?: ResolverInputTypes["Shapenewshape"];
|
|
1427
|
+
fieldSetShapepricing_table?: boolean | `@${string}`;
|
|
1428
|
+
modelShapepricing_table?: boolean | `@${string}`;
|
|
1429
|
+
previewFieldsShapepricing_table?: boolean | `@${string}`;
|
|
1430
|
+
oneShapepricing_table?: ResolverInputTypes["Shapepricing_table"];
|
|
1431
|
+
fieldSetShapepricingv1?: boolean | `@${string}`;
|
|
1432
|
+
modelShapepricingv1?: boolean | `@${string}`;
|
|
1433
|
+
previewFieldsShapepricingv1?: boolean | `@${string}`;
|
|
1434
|
+
oneShapepricingv1?: ResolverInputTypes["Shapepricingv1"];
|
|
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"]];
|
|
1457
|
+
variantsViewhomepage?: ResolverInputTypes["Viewhomepage"];
|
|
1458
|
+
fieldSetViewhomepage?: boolean | `@${string}`;
|
|
1459
|
+
modelViewhomepage?: boolean | `@${string}`;
|
|
1460
|
+
previewFieldsViewhomepage?: boolean | `@${string}`;
|
|
1461
|
+
oneViewhomepage?: [{
|
|
1462
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1463
|
+
}, ResolverInputTypes["Viewhomepage"]];
|
|
1464
|
+
variantsViewhowitworks?: ResolverInputTypes["Viewhowitworks"];
|
|
1465
|
+
fieldSetViewhowitworks?: boolean | `@${string}`;
|
|
1466
|
+
modelViewhowitworks?: boolean | `@${string}`;
|
|
1467
|
+
previewFieldsViewhowitworks?: boolean | `@${string}`;
|
|
1468
|
+
oneViewhowitworks?: [{
|
|
1469
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1470
|
+
}, ResolverInputTypes["Viewhowitworks"]];
|
|
1471
|
+
variantsViewpricing?: ResolverInputTypes["Viewpricing"];
|
|
1472
|
+
fieldSetViewpricing?: boolean | `@${string}`;
|
|
1473
|
+
modelViewpricing?: boolean | `@${string}`;
|
|
1474
|
+
previewFieldsViewpricing?: boolean | `@${string}`;
|
|
1475
|
+
oneViewpricing?: [{
|
|
1476
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1477
|
+
}, ResolverInputTypes["Viewpricing"]];
|
|
1478
|
+
__typename?: boolean | `@${string}`;
|
|
1479
|
+
}>;
|
|
1480
|
+
["RootParamsType"]: AliasType<{
|
|
1481
|
+
_version?: boolean | `@${string}`;
|
|
1482
|
+
locale?: boolean | `@${string}`;
|
|
1483
|
+
__typename?: boolean | `@${string}`;
|
|
1484
|
+
}>;
|
|
1485
|
+
["ModelEnum"]: ModelEnum;
|
|
1486
|
+
["ViewEnum"]: ViewEnum;
|
|
1487
|
+
["ShapeEnum"]: ShapeEnum;
|
|
1488
|
+
["docs__Connection"]: AliasType<{
|
|
1489
|
+
items?: ResolverInputTypes["docs"];
|
|
1490
|
+
pageInfo?: ResolverInputTypes["PageInfo"];
|
|
1491
|
+
__typename?: boolean | `@${string}`;
|
|
1492
|
+
}>;
|
|
1493
|
+
["docs"]: AliasType<{
|
|
1494
|
+
_version?: ResolverInputTypes["VersionField"];
|
|
1495
|
+
title?: boolean | `@${string}`;
|
|
1496
|
+
seotitle?: boolean | `@${string}`;
|
|
1497
|
+
metadesc?: boolean | `@${string}`;
|
|
1498
|
+
sortid?: boolean | `@${string}`;
|
|
1499
|
+
main_category?: boolean | `@${string}`;
|
|
1500
|
+
content?: boolean | `@${string}`;
|
|
1501
|
+
video?: ResolverInputTypes["VideoField"];
|
|
1502
|
+
locale?: boolean | `@${string}`;
|
|
1503
|
+
slug?: boolean | `@${string}`;
|
|
1504
|
+
_id?: boolean | `@${string}`;
|
|
1505
|
+
createdAt?: boolean | `@${string}`;
|
|
1506
|
+
updatedAt?: boolean | `@${string}`;
|
|
1507
|
+
draft_version?: boolean | `@${string}`;
|
|
1508
|
+
json_ld?: boolean | `@${string}`;
|
|
1509
|
+
__typename?: boolean | `@${string}`;
|
|
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
|
+
}>;
|
|
1545
|
+
["Viewhomepage"]: AliasType<{
|
|
1546
|
+
_version?: ResolverInputTypes["VersionField"];
|
|
1547
|
+
nav?: ResolverInputTypes["Shapenav"];
|
|
1548
|
+
main?: ResolverInputTypes["Shapehero"];
|
|
1549
|
+
hero?: ResolverInputTypes["Shapeherox"];
|
|
1550
|
+
pricing?: ResolverInputTypes["Shapepricingv1"];
|
|
1551
|
+
footer?: ResolverInputTypes["Shapefoot"];
|
|
1552
|
+
locale?: boolean | `@${string}`;
|
|
1553
|
+
slug?: boolean | `@${string}`;
|
|
1554
|
+
_id?: boolean | `@${string}`;
|
|
1555
|
+
createdAt?: boolean | `@${string}`;
|
|
1556
|
+
updatedAt?: boolean | `@${string}`;
|
|
1557
|
+
draft_version?: boolean | `@${string}`;
|
|
1558
|
+
json_ld?: boolean | `@${string}`;
|
|
1559
|
+
__typename?: boolean | `@${string}`;
|
|
1560
|
+
}>;
|
|
1561
|
+
["ViewhowitworksFeature_control"]: AliasType<{
|
|
1562
|
+
title?: boolean | `@${string}`;
|
|
1563
|
+
description?: boolean | `@${string}`;
|
|
1564
|
+
image?: ResolverInputTypes["ImageField"];
|
|
1565
|
+
__typename?: boolean | `@${string}`;
|
|
1566
|
+
}>;
|
|
1567
|
+
["Viewhowitworks"]: AliasType<{
|
|
1568
|
+
_version?: ResolverInputTypes["VersionField"];
|
|
1569
|
+
title?: boolean | `@${string}`;
|
|
1570
|
+
feature_control?: ResolverInputTypes["ViewhowitworksFeature_control"];
|
|
1571
|
+
locale?: boolean | `@${string}`;
|
|
1572
|
+
slug?: boolean | `@${string}`;
|
|
1573
|
+
_id?: boolean | `@${string}`;
|
|
1574
|
+
createdAt?: boolean | `@${string}`;
|
|
1575
|
+
updatedAt?: boolean | `@${string}`;
|
|
1576
|
+
draft_version?: boolean | `@${string}`;
|
|
1577
|
+
json_ld?: boolean | `@${string}`;
|
|
1578
|
+
__typename?: boolean | `@${string}`;
|
|
1579
|
+
}>;
|
|
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}`;
|
|
1587
|
+
_id?: boolean | `@${string}`;
|
|
1588
|
+
createdAt?: boolean | `@${string}`;
|
|
1589
|
+
updatedAt?: boolean | `@${string}`;
|
|
1590
|
+
draft_version?: boolean | `@${string}`;
|
|
1591
|
+
json_ld?: boolean | `@${string}`;
|
|
1592
|
+
__typename?: boolean | `@${string}`;
|
|
1593
|
+
}>;
|
|
1594
|
+
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: AliasType<{
|
|
1595
|
+
content?: boolean | `@${string}`;
|
|
1596
|
+
__typename?: boolean | `@${string}`;
|
|
1597
|
+
}>;
|
|
1598
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"]: AliasType<{
|
|
1599
|
+
scrollspy_title?: boolean | `@${string}`;
|
|
1600
|
+
scrollspy_list?: boolean | `@${string}`;
|
|
1601
|
+
__typename?: boolean | `@${string}`;
|
|
1602
|
+
}>;
|
|
1603
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspy"]: AliasType<{
|
|
1604
|
+
scrollspy_container?: ResolverInputTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"];
|
|
1605
|
+
__typename?: boolean | `@${string}`;
|
|
1606
|
+
}>;
|
|
1607
|
+
["Shapedocs_contentDocumentation_pageContent_container"]: AliasType<{
|
|
1608
|
+
doc_content?: ResolverInputTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"];
|
|
1609
|
+
scrollspy?: ResolverInputTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"];
|
|
1610
|
+
__typename?: boolean | `@${string}`;
|
|
1611
|
+
}>;
|
|
1612
|
+
["Shapedocs_contentDocumentation_page"]: AliasType<{
|
|
1613
|
+
content_container?: ResolverInputTypes["Shapedocs_contentDocumentation_pageContent_container"];
|
|
1614
|
+
__typename?: boolean | `@${string}`;
|
|
1615
|
+
}>;
|
|
1616
|
+
["Shapedocs_content"]: AliasType<{
|
|
1617
|
+
documentation_page?: ResolverInputTypes["Shapedocs_contentDocumentation_page"];
|
|
1618
|
+
_id?: boolean | `@${string}`;
|
|
1619
|
+
createdAt?: boolean | `@${string}`;
|
|
1620
|
+
updatedAt?: boolean | `@${string}`;
|
|
1621
|
+
__typename?: boolean | `@${string}`;
|
|
1622
|
+
}>;
|
|
1623
|
+
["Shapedocs_navMainListChildrenCategory"]: AliasType<{
|
|
1624
|
+
name?: boolean | `@${string}`;
|
|
1625
|
+
link?: boolean | `@${string}`;
|
|
1626
|
+
__typename?: boolean | `@${string}`;
|
|
1627
|
+
}>;
|
|
1628
|
+
["Shapedocs_navMainListChildren"]: AliasType<{
|
|
1629
|
+
category?: ResolverInputTypes["Shapedocs_navMainListChildrenCategory"];
|
|
1630
|
+
__typename?: boolean | `@${string}`;
|
|
1631
|
+
}>;
|
|
1632
|
+
["Shapedocs_navMainList"]: AliasType<{
|
|
1633
|
+
title?: boolean | `@${string}`;
|
|
1634
|
+
children?: ResolverInputTypes["Shapedocs_navMainListChildren"];
|
|
1635
|
+
__typename?: boolean | `@${string}`;
|
|
1636
|
+
}>;
|
|
1637
|
+
["Shapedocs_navMain"]: AliasType<{
|
|
1638
|
+
list?: ResolverInputTypes["Shapedocs_navMainList"];
|
|
1639
|
+
__typename?: boolean | `@${string}`;
|
|
1640
|
+
}>;
|
|
1641
|
+
["Shapedocs_nav"]: AliasType<{
|
|
1642
|
+
main?: ResolverInputTypes["Shapedocs_navMain"];
|
|
1643
|
+
_id?: boolean | `@${string}`;
|
|
1644
|
+
createdAt?: boolean | `@${string}`;
|
|
1645
|
+
updatedAt?: boolean | `@${string}`;
|
|
1646
|
+
__typename?: boolean | `@${string}`;
|
|
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
|
+
}>;
|
|
1661
|
+
["ShapefootFooterFooter_containerFooter_links"]: AliasType<{
|
|
1662
|
+
privacy_policy?: boolean | `@${string}`;
|
|
1663
|
+
terms_of_service?: boolean | `@${string}`;
|
|
1664
|
+
contact_us?: boolean | `@${string}`;
|
|
1665
|
+
__typename?: boolean | `@${string}`;
|
|
1666
|
+
}>;
|
|
1667
|
+
["ShapefootFooterFooter_container"]: AliasType<{
|
|
1668
|
+
footer_logo?: boolean | `@${string}`;
|
|
1669
|
+
footer_links?: ResolverInputTypes["ShapefootFooterFooter_containerFooter_links"];
|
|
1670
|
+
footer_copy?: boolean | `@${string}`;
|
|
1671
|
+
__typename?: boolean | `@${string}`;
|
|
1672
|
+
}>;
|
|
1673
|
+
["ShapefootFooter"]: AliasType<{
|
|
1674
|
+
footer_container?: ResolverInputTypes["ShapefootFooterFooter_container"];
|
|
1675
|
+
__typename?: boolean | `@${string}`;
|
|
1676
|
+
}>;
|
|
1677
|
+
["Shapefoot"]: AliasType<{
|
|
1678
|
+
footer?: ResolverInputTypes["ShapefootFooter"];
|
|
1679
|
+
_id?: boolean | `@${string}`;
|
|
1680
|
+
createdAt?: boolean | `@${string}`;
|
|
1681
|
+
updatedAt?: boolean | `@${string}`;
|
|
1682
|
+
__typename?: boolean | `@${string}`;
|
|
1683
|
+
}>;
|
|
1684
|
+
["ShapeheroHero_componentSlogan_parent"]: AliasType<{
|
|
1685
|
+
slogan?: boolean | `@${string}`;
|
|
1686
|
+
__typename?: boolean | `@${string}`;
|
|
1687
|
+
}>;
|
|
1688
|
+
["ShapeheroHero_component"]: AliasType<{
|
|
1689
|
+
logoplace?: boolean | `@${string}`;
|
|
1690
|
+
logo?: boolean | `@${string}`;
|
|
1691
|
+
slogan_parent?: ResolverInputTypes["ShapeheroHero_componentSlogan_parent"];
|
|
1692
|
+
subslogan?: boolean | `@${string}`;
|
|
1693
|
+
__typename?: boolean | `@${string}`;
|
|
1694
|
+
}>;
|
|
1695
|
+
["Shapehero"]: AliasType<{
|
|
1696
|
+
hero_component?: ResolverInputTypes["ShapeheroHero_component"];
|
|
1697
|
+
_id?: boolean | `@${string}`;
|
|
1698
|
+
createdAt?: boolean | `@${string}`;
|
|
1699
|
+
updatedAt?: boolean | `@${string}`;
|
|
1700
|
+
__typename?: boolean | `@${string}`;
|
|
1701
|
+
}>;
|
|
1702
|
+
["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"]: AliasType<{
|
|
1703
|
+
feature?: boolean | `@${string}`;
|
|
1704
|
+
__typename?: boolean | `@${string}`;
|
|
1705
|
+
}>;
|
|
1706
|
+
["ShapeheroxHero_sectionHero_containerText_wrapper"]: AliasType<{
|
|
1707
|
+
title?: boolean | `@${string}`;
|
|
1708
|
+
description?: boolean | `@${string}`;
|
|
1709
|
+
features?: ResolverInputTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"];
|
|
1710
|
+
__typename?: boolean | `@${string}`;
|
|
1711
|
+
}>;
|
|
1712
|
+
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: AliasType<{
|
|
1713
|
+
hero_image?: ResolverInputTypes["ImageField"];
|
|
1714
|
+
__typename?: boolean | `@${string}`;
|
|
1715
|
+
}>;
|
|
1716
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: AliasType<{
|
|
1717
|
+
video?: ResolverInputTypes["VideoField"];
|
|
1718
|
+
__typename?: boolean | `@${string}`;
|
|
1719
|
+
}>;
|
|
1720
|
+
["ShapeheroxHero_sectionHero_container"]: AliasType<{
|
|
1721
|
+
text_wrapper?: ResolverInputTypes["ShapeheroxHero_sectionHero_containerText_wrapper"];
|
|
1722
|
+
image_wrapper?: ResolverInputTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"];
|
|
1723
|
+
presentation?: ResolverInputTypes["ShapeheroxHero_sectionHero_containerPresentation"];
|
|
1724
|
+
__typename?: boolean | `@${string}`;
|
|
1725
|
+
}>;
|
|
1726
|
+
["ShapeheroxHero_section"]: AliasType<{
|
|
1727
|
+
hero_container?: ResolverInputTypes["ShapeheroxHero_sectionHero_container"];
|
|
1728
|
+
__typename?: boolean | `@${string}`;
|
|
1729
|
+
}>;
|
|
1730
|
+
["Shapeherox"]: AliasType<{
|
|
1731
|
+
hero_section?: ResolverInputTypes["ShapeheroxHero_section"];
|
|
1732
|
+
_id?: boolean | `@${string}`;
|
|
1733
|
+
createdAt?: boolean | `@${string}`;
|
|
1734
|
+
updatedAt?: boolean | `@${string}`;
|
|
1735
|
+
__typename?: boolean | `@${string}`;
|
|
1736
|
+
}>;
|
|
1737
|
+
["Shapelista_projektowListProjectsInstance"]: AliasType<{
|
|
1738
|
+
title?: boolean | `@${string}`;
|
|
1739
|
+
link?: boolean | `@${string}`;
|
|
1740
|
+
remove_button?: boolean | `@${string}`;
|
|
1741
|
+
__typename?: boolean | `@${string}`;
|
|
1742
|
+
}>;
|
|
1743
|
+
["Shapelista_projektowListProjects"]: AliasType<{
|
|
1744
|
+
instance?: ResolverInputTypes["Shapelista_projektowListProjectsInstance"];
|
|
1745
|
+
__typename?: boolean | `@${string}`;
|
|
1746
|
+
}>;
|
|
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"];
|
|
1755
|
+
_id?: boolean | `@${string}`;
|
|
1756
|
+
createdAt?: boolean | `@${string}`;
|
|
1757
|
+
updatedAt?: boolean | `@${string}`;
|
|
1758
|
+
__typename?: boolean | `@${string}`;
|
|
1759
|
+
}>;
|
|
1760
|
+
["ShapenavNavigationNavigation_linksLink"]: AliasType<{
|
|
1761
|
+
display?: boolean | `@${string}`;
|
|
1762
|
+
href?: boolean | `@${string}`;
|
|
1763
|
+
__typename?: boolean | `@${string}`;
|
|
1764
|
+
}>;
|
|
1765
|
+
["ShapenavNavigationNavigation_links"]: AliasType<{
|
|
1766
|
+
link?: ResolverInputTypes["ShapenavNavigationNavigation_linksLink"];
|
|
1767
|
+
__typename?: boolean | `@${string}`;
|
|
1768
|
+
}>;
|
|
1769
|
+
["ShapenavNavigation"]: AliasType<{
|
|
1770
|
+
logo?: boolean | `@${string}`;
|
|
1771
|
+
navigation_links?: ResolverInputTypes["ShapenavNavigationNavigation_links"];
|
|
1772
|
+
__typename?: boolean | `@${string}`;
|
|
1773
|
+
}>;
|
|
1774
|
+
["Shapenav"]: AliasType<{
|
|
1775
|
+
navigation?: ResolverInputTypes["ShapenavNavigation"];
|
|
1776
|
+
_id?: boolean | `@${string}`;
|
|
1777
|
+
createdAt?: boolean | `@${string}`;
|
|
1778
|
+
updatedAt?: boolean | `@${string}`;
|
|
1779
|
+
__typename?: boolean | `@${string}`;
|
|
1780
|
+
}>;
|
|
1781
|
+
["ShapenewshapeBackgroundContent"]: AliasType<{
|
|
1782
|
+
badge?: boolean | `@${string}`;
|
|
1783
|
+
headline?: boolean | `@${string}`;
|
|
1784
|
+
subheadline?: boolean | `@${string}`;
|
|
1785
|
+
cta_label?: boolean | `@${string}`;
|
|
1786
|
+
cta_href?: boolean | `@${string}`;
|
|
1787
|
+
__typename?: boolean | `@${string}`;
|
|
1788
|
+
}>;
|
|
1789
|
+
["ShapenewshapeBackground"]: AliasType<{
|
|
1790
|
+
overlay_gradient?: boolean | `@${string}`;
|
|
1791
|
+
content?: ResolverInputTypes["ShapenewshapeBackgroundContent"];
|
|
1792
|
+
hero_image?: ResolverInputTypes["ImageField"];
|
|
1793
|
+
__typename?: boolean | `@${string}`;
|
|
1794
|
+
}>;
|
|
1795
|
+
["Shapenewshape"]: AliasType<{
|
|
1796
|
+
background?: ResolverInputTypes["ShapenewshapeBackground"];
|
|
1797
|
+
_id?: boolean | `@${string}`;
|
|
1798
|
+
createdAt?: boolean | `@${string}`;
|
|
1799
|
+
updatedAt?: boolean | `@${string}`;
|
|
1800
|
+
__typename?: boolean | `@${string}`;
|
|
1801
|
+
}>;
|
|
1802
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: AliasType<{
|
|
1803
|
+
title?: boolean | `@${string}`;
|
|
1804
|
+
description?: boolean | `@${string}`;
|
|
1805
|
+
__typename?: boolean | `@${string}`;
|
|
1806
|
+
}>;
|
|
1807
|
+
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: AliasType<{
|
|
1808
|
+
feature?: boolean | `@${string}`;
|
|
1809
|
+
unit?: boolean | `@${string}`;
|
|
1810
|
+
price?: boolean | `@${string}`;
|
|
1811
|
+
__typename?: boolean | `@${string}`;
|
|
1812
|
+
}>;
|
|
1813
|
+
["Shapepricing_tablePricing_sectionPricing_tableRows"]: AliasType<{
|
|
1814
|
+
feature?: boolean | `@${string}`;
|
|
1815
|
+
unit?: boolean | `@${string}`;
|
|
1816
|
+
price?: boolean | `@${string}`;
|
|
1817
|
+
__typename?: boolean | `@${string}`;
|
|
1818
|
+
}>;
|
|
1819
|
+
["Shapepricing_tablePricing_sectionPricing_table"]: AliasType<{
|
|
1820
|
+
table_head?: ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"];
|
|
1821
|
+
rows?: ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_tableRows"];
|
|
1822
|
+
__typename?: boolean | `@${string}`;
|
|
1823
|
+
}>;
|
|
1824
|
+
["Shapepricing_tablePricing_section"]: AliasType<{
|
|
1825
|
+
header_wrapper?: ResolverInputTypes["Shapepricing_tablePricing_sectionHeader_wrapper"];
|
|
1826
|
+
pricing_table?: ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_table"];
|
|
1827
|
+
__typename?: boolean | `@${string}`;
|
|
1828
|
+
}>;
|
|
1829
|
+
["Shapepricing_table"]: AliasType<{
|
|
1830
|
+
pricing_section?: ResolverInputTypes["Shapepricing_tablePricing_section"];
|
|
1831
|
+
_id?: boolean | `@${string}`;
|
|
1832
|
+
createdAt?: boolean | `@${string}`;
|
|
1833
|
+
updatedAt?: boolean | `@${string}`;
|
|
1834
|
+
__typename?: boolean | `@${string}`;
|
|
1835
|
+
}>;
|
|
1836
|
+
["Shapepricingv1Pricing_sectionHeader_wrapper"]: AliasType<{
|
|
1837
|
+
title?: boolean | `@${string}`;
|
|
1838
|
+
description?: boolean | `@${string}`;
|
|
1839
|
+
__typename?: boolean | `@${string}`;
|
|
1840
|
+
}>;
|
|
1841
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"]: AliasType<{
|
|
1842
|
+
feature?: boolean | `@${string}`;
|
|
1843
|
+
__typename?: boolean | `@${string}`;
|
|
1844
|
+
}>;
|
|
1845
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_plan"]: AliasType<{
|
|
1846
|
+
plan_name?: boolean | `@${string}`;
|
|
1847
|
+
price?: boolean | `@${string}`;
|
|
1848
|
+
plan_description?: boolean | `@${string}`;
|
|
1849
|
+
feature_list?: ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"];
|
|
1850
|
+
cta?: boolean | `@${string}`;
|
|
1851
|
+
__typename?: boolean | `@${string}`;
|
|
1852
|
+
}>;
|
|
1853
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: AliasType<{
|
|
1854
|
+
feature?: boolean | `@${string}`;
|
|
1855
|
+
__typename?: boolean | `@${string}`;
|
|
1856
|
+
}>;
|
|
1857
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: AliasType<{
|
|
1858
|
+
plan_name?: boolean | `@${string}`;
|
|
1859
|
+
price?: boolean | `@${string}`;
|
|
1860
|
+
plan_description?: boolean | `@${string}`;
|
|
1861
|
+
feature_list?: ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"];
|
|
1862
|
+
cta?: boolean | `@${string}`;
|
|
1863
|
+
__typename?: boolean | `@${string}`;
|
|
1864
|
+
}>;
|
|
1865
|
+
["Shapepricingv1Pricing_sectionPlans_grid"]: AliasType<{
|
|
1866
|
+
free_plan?: ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"];
|
|
1867
|
+
paid_plan?: ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"];
|
|
1868
|
+
__typename?: boolean | `@${string}`;
|
|
1869
|
+
}>;
|
|
1870
|
+
["Shapepricingv1Pricing_section"]: AliasType<{
|
|
1871
|
+
header_wrapper?: ResolverInputTypes["Shapepricingv1Pricing_sectionHeader_wrapper"];
|
|
1872
|
+
plans_grid?: ResolverInputTypes["Shapepricingv1Pricing_sectionPlans_grid"];
|
|
1873
|
+
__typename?: boolean | `@${string}`;
|
|
1874
|
+
}>;
|
|
1875
|
+
["Shapepricingv1"]: AliasType<{
|
|
1876
|
+
pricing_section?: ResolverInputTypes["Shapepricingv1Pricing_section"];
|
|
1877
|
+
_id?: boolean | `@${string}`;
|
|
1878
|
+
createdAt?: boolean | `@${string}`;
|
|
1879
|
+
updatedAt?: boolean | `@${string}`;
|
|
1880
|
+
__typename?: boolean | `@${string}`;
|
|
1881
|
+
}>;
|
|
1882
|
+
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: AliasType<{
|
|
1883
|
+
full_name?: boolean | `@${string}`;
|
|
1884
|
+
company?: boolean | `@${string}`;
|
|
1885
|
+
email?: boolean | `@${string}`;
|
|
1886
|
+
__typename?: boolean | `@${string}`;
|
|
1887
|
+
}>;
|
|
1888
|
+
["Shapeprofile_infoProfile_sectionAccount_header"]: AliasType<{
|
|
1889
|
+
avatar?: ResolverInputTypes["ImageField"];
|
|
1890
|
+
info?: ResolverInputTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"];
|
|
1891
|
+
__typename?: boolean | `@${string}`;
|
|
1892
|
+
}>;
|
|
1893
|
+
["Shapeprofile_infoProfile_sectionPlan_status"]: AliasType<{
|
|
1894
|
+
plan?: boolean | `@${string}`;
|
|
1895
|
+
__typename?: boolean | `@${string}`;
|
|
1896
|
+
}>;
|
|
1897
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: AliasType<{
|
|
786
1898
|
label?: boolean | `@${string}`;
|
|
1899
|
+
value?: boolean | `@${string}`;
|
|
787
1900
|
__typename?: boolean | `@${string}`;
|
|
788
1901
|
}>;
|
|
789
|
-
["
|
|
1902
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: AliasType<{
|
|
790
1903
|
label?: boolean | `@${string}`;
|
|
791
|
-
|
|
1904
|
+
value?: boolean | `@${string}`;
|
|
792
1905
|
__typename?: boolean | `@${string}`;
|
|
793
1906
|
}>;
|
|
794
|
-
["
|
|
1907
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: AliasType<{
|
|
795
1908
|
label?: boolean | `@${string}`;
|
|
796
|
-
|
|
1909
|
+
value?: boolean | `@${string}`;
|
|
797
1910
|
__typename?: boolean | `@${string}`;
|
|
798
1911
|
}>;
|
|
799
|
-
["
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
versions?: ResolverInputTypes["VersionField"];
|
|
804
|
-
links?: ResolverInputTypes["InternalLink"];
|
|
805
|
-
listViews?: ResolverInputTypes["View"];
|
|
806
|
-
listShapes?: ResolverInputTypes["Shape"];
|
|
807
|
-
tailwind?: ResolverInputTypes["TailwindConfiguration"];
|
|
808
|
-
listForms?: ResolverInputTypes["Form"];
|
|
809
|
-
listPaginateddemo?: [{
|
|
810
|
-
page: ResolverInputTypes["PageInput"];
|
|
811
|
-
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
812
|
-
search?: string | undefined | null;
|
|
813
|
-
sort?: ResolverInputTypes["demoSortInput"] | undefined | null;
|
|
814
|
-
filter?: Array<ResolverInputTypes["demoFilterInput"] | undefined | null> | undefined | null;
|
|
815
|
-
}, ResolverInputTypes["demo__Connection"]];
|
|
816
|
-
onedemoBySlug?: [{
|
|
817
|
-
slug: string;
|
|
818
|
-
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
819
|
-
}, ResolverInputTypes["demo"]];
|
|
820
|
-
variantsdemoBySlug?: [{
|
|
821
|
-
slug: string;
|
|
822
|
-
}, ResolverInputTypes["demo"]];
|
|
823
|
-
fieldSetdemo?: boolean | `@${string}`;
|
|
824
|
-
modeldemo?: boolean | `@${string}`;
|
|
825
|
-
previewFieldsdemo?: boolean | `@${string}`;
|
|
826
|
-
listPaginatedpost?: [{
|
|
827
|
-
page: ResolverInputTypes["PageInput"];
|
|
828
|
-
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
829
|
-
search?: string | undefined | null;
|
|
830
|
-
sort?: ResolverInputTypes["postSortInput"] | undefined | null;
|
|
831
|
-
filter?: Array<ResolverInputTypes["postFilterInput"] | undefined | null> | undefined | null;
|
|
832
|
-
}, ResolverInputTypes["post__Connection"]];
|
|
833
|
-
onepostBySlug?: [{
|
|
834
|
-
slug: string;
|
|
835
|
-
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
836
|
-
}, ResolverInputTypes["post"]];
|
|
837
|
-
variantspostBySlug?: [{
|
|
838
|
-
slug: string;
|
|
839
|
-
}, ResolverInputTypes["post"]];
|
|
840
|
-
fieldSetpost?: boolean | `@${string}`;
|
|
841
|
-
modelpost?: boolean | `@${string}`;
|
|
842
|
-
previewFieldspost?: boolean | `@${string}`;
|
|
843
|
-
fieldSetShapetests?: boolean | `@${string}`;
|
|
844
|
-
modelShapetests?: boolean | `@${string}`;
|
|
845
|
-
previewFieldsShapetests?: boolean | `@${string}`;
|
|
846
|
-
oneShapetests?: ResolverInputTypes["Shapetests"];
|
|
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"];
|
|
847
1916
|
__typename?: boolean | `@${string}`;
|
|
848
1917
|
}>;
|
|
849
|
-
["
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
pageInfo?: ResolverInputTypes["PageInfo"];
|
|
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"];
|
|
854
1922
|
__typename?: boolean | `@${string}`;
|
|
855
1923
|
}>;
|
|
856
|
-
["
|
|
857
|
-
|
|
858
|
-
content?: boolean | `@${string}`;
|
|
859
|
-
slug?: boolean | `@${string}`;
|
|
1924
|
+
["Shapeprofile_info"]: AliasType<{
|
|
1925
|
+
profile_section?: ResolverInputTypes["Shapeprofile_infoProfile_section"];
|
|
860
1926
|
_id?: boolean | `@${string}`;
|
|
861
1927
|
createdAt?: boolean | `@${string}`;
|
|
862
1928
|
updatedAt?: boolean | `@${string}`;
|
|
863
|
-
draft_version?: boolean | `@${string}`;
|
|
864
|
-
json_ld?: boolean | `@${string}`;
|
|
865
|
-
__typename?: boolean | `@${string}`;
|
|
866
|
-
}>;
|
|
867
|
-
["post__Connection"]: AliasType<{
|
|
868
|
-
items?: ResolverInputTypes["post"];
|
|
869
|
-
pageInfo?: ResolverInputTypes["PageInfo"];
|
|
870
1929
|
__typename?: boolean | `@${string}`;
|
|
871
1930
|
}>;
|
|
872
|
-
["
|
|
873
|
-
_version?: ResolverInputTypes["VersionField"];
|
|
1931
|
+
["ShapeusageMain"]: AliasType<{
|
|
874
1932
|
title?: boolean | `@${string}`;
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
_id?: boolean | `@${string}`;
|
|
879
|
-
createdAt?: boolean | `@${string}`;
|
|
880
|
-
updatedAt?: boolean | `@${string}`;
|
|
881
|
-
draft_version?: boolean | `@${string}`;
|
|
882
|
-
json_ld?: boolean | `@${string}`;
|
|
1933
|
+
subtitle?: boolean | `@${string}`;
|
|
1934
|
+
period?: boolean | `@${string}`;
|
|
1935
|
+
tokens_consumed?: boolean | `@${string}`;
|
|
883
1936
|
__typename?: boolean | `@${string}`;
|
|
884
1937
|
}>;
|
|
885
|
-
["
|
|
1938
|
+
["Shapeusage"]: AliasType<{
|
|
1939
|
+
main?: ResolverInputTypes["ShapeusageMain"];
|
|
886
1940
|
_id?: boolean | `@${string}`;
|
|
887
1941
|
createdAt?: boolean | `@${string}`;
|
|
888
1942
|
updatedAt?: boolean | `@${string}`;
|
|
@@ -890,26 +1944,20 @@ export type ResolverInputTypes = {
|
|
|
890
1944
|
}>;
|
|
891
1945
|
["RootParamsInput"]: {
|
|
892
1946
|
_version?: string | undefined | null;
|
|
1947
|
+
locale?: string | undefined | null;
|
|
893
1948
|
};
|
|
894
1949
|
["RootParamsEnum"]: RootParamsEnum;
|
|
895
|
-
["
|
|
896
|
-
slug?: ResolverInputTypes["Sort"] | undefined | null;
|
|
897
|
-
createdAt?: ResolverInputTypes["Sort"] | undefined | null;
|
|
898
|
-
updatedAt?: ResolverInputTypes["Sort"] | undefined | null;
|
|
899
|
-
};
|
|
900
|
-
["postSortInput"]: {
|
|
1950
|
+
["docsSortInput"]: {
|
|
901
1951
|
slug?: ResolverInputTypes["Sort"] | undefined | null;
|
|
902
1952
|
createdAt?: ResolverInputTypes["Sort"] | undefined | null;
|
|
903
1953
|
updatedAt?: ResolverInputTypes["Sort"] | undefined | null;
|
|
904
1954
|
};
|
|
905
|
-
["
|
|
906
|
-
slug?: ResolverInputTypes["FilterInputString"] | undefined | null;
|
|
907
|
-
};
|
|
908
|
-
["postFilterInput"]: {
|
|
1955
|
+
["docsFilterInput"]: {
|
|
909
1956
|
slug?: ResolverInputTypes["FilterInputString"] | undefined | null;
|
|
910
1957
|
};
|
|
911
1958
|
["schema"]: AliasType<{
|
|
912
1959
|
query?: ResolverInputTypes["Query"];
|
|
1960
|
+
mutation?: ResolverInputTypes["Mutation"];
|
|
913
1961
|
__typename?: boolean | `@${string}`;
|
|
914
1962
|
}>;
|
|
915
1963
|
["ID"]: unknown;
|
|
@@ -990,6 +2038,16 @@ export type ModelTypes = {
|
|
|
990
2038
|
value?: string | undefined | null;
|
|
991
2039
|
children?: Array<ModelTypes["Condition"]> | undefined | null;
|
|
992
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
|
+
};
|
|
993
2051
|
["Visual"]: {
|
|
994
2052
|
className?: string | undefined | null;
|
|
995
2053
|
component?: string | undefined | null;
|
|
@@ -1007,6 +2065,10 @@ export type ModelTypes = {
|
|
|
1007
2065
|
ne?: string | undefined | null;
|
|
1008
2066
|
contain?: string | undefined | null;
|
|
1009
2067
|
};
|
|
2068
|
+
["Mutation"]: {
|
|
2069
|
+
heartbeat?: string | undefined | null;
|
|
2070
|
+
};
|
|
2071
|
+
["RootParamsAdminType"]: any;
|
|
1010
2072
|
["Shape"]: {
|
|
1011
2073
|
name: string;
|
|
1012
2074
|
slug: string;
|
|
@@ -1029,160 +2091,594 @@ export type ModelTypes = {
|
|
|
1029
2091
|
textContent?: string | undefined | null;
|
|
1030
2092
|
children?: Array<ModelTypes["AiComponent"]> | undefined | null;
|
|
1031
2093
|
};
|
|
2094
|
+
["FormFieldVisual"]: {
|
|
2095
|
+
className?: string | undefined | null;
|
|
2096
|
+
component?: string | undefined | null;
|
|
2097
|
+
rules?: Array<ModelTypes["Rule"]> | undefined | null;
|
|
2098
|
+
};
|
|
1032
2099
|
["FormField"]: {
|
|
1033
2100
|
name: string;
|
|
1034
2101
|
display?: string | undefined | null;
|
|
1035
2102
|
type: ModelTypes["FormFieldType"];
|
|
1036
2103
|
list?: boolean | undefined | null;
|
|
1037
2104
|
fields?: Array<ModelTypes["FormField"]> | undefined | null;
|
|
1038
|
-
visual?: ModelTypes["
|
|
1039
|
-
conditions?: ModelTypes["Condition"] | undefined | null;
|
|
2105
|
+
visual?: ModelTypes["FormFieldVisual"] | undefined | null;
|
|
1040
2106
|
placeholder?: string | undefined | null;
|
|
1041
2107
|
root?: boolean | undefined | null;
|
|
1042
2108
|
options?: Array<string> | undefined | null;
|
|
1043
2109
|
builtIn?: boolean | undefined | null;
|
|
1044
2110
|
nonTranslatable?: boolean | undefined | null;
|
|
1045
2111
|
};
|
|
1046
|
-
["FormFieldType"]: FormFieldType;
|
|
1047
|
-
["Form"]: {
|
|
1048
|
-
name: string;
|
|
2112
|
+
["FormFieldType"]: FormFieldType;
|
|
2113
|
+
["Form"]: {
|
|
2114
|
+
name: string;
|
|
2115
|
+
display?: string | undefined | null;
|
|
2116
|
+
fields: Array<ModelTypes["FormField"]>;
|
|
2117
|
+
};
|
|
2118
|
+
["FormTextField"]: {
|
|
2119
|
+
label?: string | undefined | null;
|
|
2120
|
+
placeholder?: string | undefined | null;
|
|
2121
|
+
};
|
|
2122
|
+
["FormBooleanField"]: {
|
|
2123
|
+
label?: string | undefined | null;
|
|
2124
|
+
};
|
|
2125
|
+
["FormContentField"]: {
|
|
2126
|
+
label?: string | undefined | null;
|
|
2127
|
+
placeholder?: string | undefined | null;
|
|
2128
|
+
};
|
|
2129
|
+
["FormRadioField"]: {
|
|
2130
|
+
label?: string | undefined | null;
|
|
2131
|
+
};
|
|
2132
|
+
["FormStepField"]: {
|
|
2133
|
+
label?: string | undefined | null;
|
|
2134
|
+
};
|
|
2135
|
+
["FormTextareaField"]: {
|
|
2136
|
+
label?: string | undefined | null;
|
|
2137
|
+
placeholder?: string | undefined | null;
|
|
2138
|
+
};
|
|
2139
|
+
["FormGroupField"]: {
|
|
2140
|
+
label?: string | undefined | null;
|
|
2141
|
+
};
|
|
2142
|
+
["FormArrayStepField"]: {
|
|
2143
|
+
label?: string | undefined | null;
|
|
2144
|
+
};
|
|
2145
|
+
["FormRouteField"]: {
|
|
2146
|
+
label?: string | undefined | null;
|
|
2147
|
+
portal?: string | undefined | null;
|
|
2148
|
+
};
|
|
2149
|
+
["FormPortalField"]: {
|
|
2150
|
+
label?: string | undefined | null;
|
|
2151
|
+
};
|
|
2152
|
+
["FormSubmitField"]: {
|
|
2153
|
+
label?: string | undefined | null;
|
|
2154
|
+
};
|
|
2155
|
+
["FormNumberField"]: {
|
|
2156
|
+
label?: string | undefined | null;
|
|
2157
|
+
};
|
|
2158
|
+
["FormRadioTextField"]: {
|
|
2159
|
+
label?: string | undefined | null;
|
|
2160
|
+
options?: Array<string> | undefined | null;
|
|
2161
|
+
};
|
|
2162
|
+
["FormCheckboxField"]: {
|
|
2163
|
+
label?: string | undefined | null;
|
|
2164
|
+
};
|
|
2165
|
+
["FormButtonField"]: {
|
|
2166
|
+
label?: string | undefined | null;
|
|
2167
|
+
};
|
|
2168
|
+
["FormProductField"]: {
|
|
2169
|
+
label?: string | undefined | null;
|
|
2170
|
+
name?: string | undefined | null;
|
|
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
|
+
};
|
|
2181
|
+
["CMSType"]: CMSType;
|
|
2182
|
+
["Query"]: {
|
|
2183
|
+
navigation?: Array<ModelTypes["ModelNavigation"]> | undefined | null;
|
|
2184
|
+
rootParams?: Array<ModelTypes["RootCMSParam"]> | undefined | null;
|
|
2185
|
+
versions?: Array<ModelTypes["VersionField"]> | undefined | null;
|
|
2186
|
+
links?: Array<ModelTypes["InternalLink"]> | undefined | null;
|
|
2187
|
+
listViews?: Array<ModelTypes["View"]> | undefined | null;
|
|
2188
|
+
listShapes?: Array<ModelTypes["Shape"]> | undefined | null;
|
|
2189
|
+
tailwind?: ModelTypes["TailwindConfiguration"] | undefined | null;
|
|
2190
|
+
listForms?: Array<ModelTypes["Form"]> | undefined | null;
|
|
2191
|
+
listPaginateddocs?: ModelTypes["docs__Connection"] | undefined | null;
|
|
2192
|
+
onedocsBySlug?: ModelTypes["docs"] | undefined | null;
|
|
2193
|
+
variantsdocsBySlug?: Array<ModelTypes["docs"]> | undefined | null;
|
|
2194
|
+
fieldSetdocs: string;
|
|
2195
|
+
modeldocs: ModelTypes["ModelNavigationCompiled"];
|
|
2196
|
+
previewFieldsdocs: ModelTypes["ModelNavigationCompiled"];
|
|
2197
|
+
fieldSetShapedocs_content: string;
|
|
2198
|
+
modelShapedocs_content: ModelTypes["ModelNavigationCompiled"];
|
|
2199
|
+
previewFieldsShapedocs_content: ModelTypes["ModelNavigationCompiled"];
|
|
2200
|
+
oneShapedocs_content?: ModelTypes["Shapedocs_content"] | undefined | null;
|
|
2201
|
+
fieldSetShapedocs_nav: string;
|
|
2202
|
+
modelShapedocs_nav: ModelTypes["ModelNavigationCompiled"];
|
|
2203
|
+
previewFieldsShapedocs_nav: ModelTypes["ModelNavigationCompiled"];
|
|
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;
|
|
2209
|
+
fieldSetShapefoot: string;
|
|
2210
|
+
modelShapefoot: ModelTypes["ModelNavigationCompiled"];
|
|
2211
|
+
previewFieldsShapefoot: ModelTypes["ModelNavigationCompiled"];
|
|
2212
|
+
oneShapefoot?: ModelTypes["Shapefoot"] | undefined | null;
|
|
2213
|
+
fieldSetShapehero: string;
|
|
2214
|
+
modelShapehero: ModelTypes["ModelNavigationCompiled"];
|
|
2215
|
+
previewFieldsShapehero: ModelTypes["ModelNavigationCompiled"];
|
|
2216
|
+
oneShapehero?: ModelTypes["Shapehero"] | undefined | null;
|
|
2217
|
+
fieldSetShapeherox: string;
|
|
2218
|
+
modelShapeherox: ModelTypes["ModelNavigationCompiled"];
|
|
2219
|
+
previewFieldsShapeherox: ModelTypes["ModelNavigationCompiled"];
|
|
2220
|
+
oneShapeherox?: ModelTypes["Shapeherox"] | undefined | null;
|
|
2221
|
+
fieldSetShapelista_projektow: string;
|
|
2222
|
+
modelShapelista_projektow: ModelTypes["ModelNavigationCompiled"];
|
|
2223
|
+
previewFieldsShapelista_projektow: ModelTypes["ModelNavigationCompiled"];
|
|
2224
|
+
oneShapelista_projektow?: ModelTypes["Shapelista_projektow"] | undefined | null;
|
|
2225
|
+
fieldSetShapenav: string;
|
|
2226
|
+
modelShapenav: ModelTypes["ModelNavigationCompiled"];
|
|
2227
|
+
previewFieldsShapenav: ModelTypes["ModelNavigationCompiled"];
|
|
2228
|
+
oneShapenav?: ModelTypes["Shapenav"] | undefined | null;
|
|
2229
|
+
fieldSetShapenewshape: string;
|
|
2230
|
+
modelShapenewshape: ModelTypes["ModelNavigationCompiled"];
|
|
2231
|
+
previewFieldsShapenewshape: ModelTypes["ModelNavigationCompiled"];
|
|
2232
|
+
oneShapenewshape?: ModelTypes["Shapenewshape"] | undefined | null;
|
|
2233
|
+
fieldSetShapepricing_table: string;
|
|
2234
|
+
modelShapepricing_table: ModelTypes["ModelNavigationCompiled"];
|
|
2235
|
+
previewFieldsShapepricing_table: ModelTypes["ModelNavigationCompiled"];
|
|
2236
|
+
oneShapepricing_table?: ModelTypes["Shapepricing_table"] | undefined | null;
|
|
2237
|
+
fieldSetShapepricingv1: string;
|
|
2238
|
+
modelShapepricingv1: ModelTypes["ModelNavigationCompiled"];
|
|
2239
|
+
previewFieldsShapepricingv1: ModelTypes["ModelNavigationCompiled"];
|
|
2240
|
+
oneShapepricingv1?: ModelTypes["Shapepricingv1"] | undefined | null;
|
|
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;
|
|
2259
|
+
variantsViewhomepage?: Array<ModelTypes["Viewhomepage"]> | undefined | null;
|
|
2260
|
+
fieldSetViewhomepage: string;
|
|
2261
|
+
modelViewhomepage: ModelTypes["ModelNavigationCompiled"];
|
|
2262
|
+
previewFieldsViewhomepage: ModelTypes["ModelNavigationCompiled"];
|
|
2263
|
+
oneViewhomepage?: ModelTypes["Viewhomepage"] | undefined | null;
|
|
2264
|
+
variantsViewhowitworks?: Array<ModelTypes["Viewhowitworks"]> | undefined | null;
|
|
2265
|
+
fieldSetViewhowitworks: string;
|
|
2266
|
+
modelViewhowitworks: ModelTypes["ModelNavigationCompiled"];
|
|
2267
|
+
previewFieldsViewhowitworks: ModelTypes["ModelNavigationCompiled"];
|
|
2268
|
+
oneViewhowitworks?: ModelTypes["Viewhowitworks"] | 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;
|
|
2274
|
+
};
|
|
2275
|
+
["RootParamsType"]: {
|
|
2276
|
+
_version?: string | undefined | null;
|
|
2277
|
+
locale?: string | undefined | null;
|
|
2278
|
+
};
|
|
2279
|
+
["ModelEnum"]: ModelEnum;
|
|
2280
|
+
["ViewEnum"]: ViewEnum;
|
|
2281
|
+
["ShapeEnum"]: ShapeEnum;
|
|
2282
|
+
["docs__Connection"]: {
|
|
2283
|
+
items?: Array<ModelTypes["docs"]> | undefined | null;
|
|
2284
|
+
pageInfo: ModelTypes["PageInfo"];
|
|
2285
|
+
};
|
|
2286
|
+
["docs"]: {
|
|
2287
|
+
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
2288
|
+
title?: string | undefined | null;
|
|
2289
|
+
seotitle?: string | undefined | null;
|
|
2290
|
+
metadesc?: string | undefined | null;
|
|
2291
|
+
sortid?: number | undefined | null;
|
|
2292
|
+
main_category?: string | undefined | null;
|
|
2293
|
+
content?: string | undefined | null;
|
|
2294
|
+
video?: ModelTypes["VideoField"] | undefined | null;
|
|
2295
|
+
locale?: string | undefined | null;
|
|
2296
|
+
slug?: string | undefined | null;
|
|
2297
|
+
_id: string;
|
|
2298
|
+
createdAt?: number | undefined | null;
|
|
2299
|
+
updatedAt?: number | undefined | null;
|
|
2300
|
+
draft_version?: boolean | undefined | null;
|
|
2301
|
+
json_ld?: string | undefined | null;
|
|
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
|
+
};
|
|
2333
|
+
["Viewhomepage"]: {
|
|
2334
|
+
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
2335
|
+
nav?: ModelTypes["Shapenav"] | undefined | null;
|
|
2336
|
+
main?: ModelTypes["Shapehero"] | undefined | null;
|
|
2337
|
+
hero?: ModelTypes["Shapeherox"] | undefined | null;
|
|
2338
|
+
pricing?: ModelTypes["Shapepricingv1"] | undefined | null;
|
|
2339
|
+
footer?: ModelTypes["Shapefoot"] | undefined | null;
|
|
2340
|
+
locale?: string | undefined | null;
|
|
2341
|
+
slug?: string | undefined | null;
|
|
2342
|
+
_id: string;
|
|
2343
|
+
createdAt?: number | undefined | null;
|
|
2344
|
+
updatedAt?: number | undefined | null;
|
|
2345
|
+
draft_version?: boolean | undefined | null;
|
|
2346
|
+
json_ld?: string | undefined | null;
|
|
2347
|
+
};
|
|
2348
|
+
["ViewhowitworksFeature_control"]: {
|
|
2349
|
+
title?: string | undefined | null;
|
|
2350
|
+
description?: string | undefined | null;
|
|
2351
|
+
image?: ModelTypes["ImageField"] | undefined | null;
|
|
2352
|
+
};
|
|
2353
|
+
["Viewhowitworks"]: {
|
|
2354
|
+
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
2355
|
+
title?: string | undefined | null;
|
|
2356
|
+
feature_control?: ModelTypes["ViewhowitworksFeature_control"] | undefined | null;
|
|
2357
|
+
locale?: string | undefined | null;
|
|
2358
|
+
slug?: string | undefined | null;
|
|
2359
|
+
_id: string;
|
|
2360
|
+
createdAt?: number | undefined | null;
|
|
2361
|
+
updatedAt?: number | undefined | null;
|
|
2362
|
+
draft_version?: boolean | undefined | null;
|
|
2363
|
+
json_ld?: string | undefined | null;
|
|
2364
|
+
};
|
|
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;
|
|
2372
|
+
_id: string;
|
|
2373
|
+
createdAt?: number | undefined | null;
|
|
2374
|
+
updatedAt?: number | undefined | null;
|
|
2375
|
+
draft_version?: boolean | undefined | null;
|
|
2376
|
+
json_ld?: string | undefined | null;
|
|
2377
|
+
};
|
|
2378
|
+
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: {
|
|
2379
|
+
content?: string | undefined | null;
|
|
2380
|
+
};
|
|
2381
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"]: {
|
|
2382
|
+
scrollspy_title?: string | undefined | null;
|
|
2383
|
+
scrollspy_list?: string | undefined | null;
|
|
2384
|
+
};
|
|
2385
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspy"]: {
|
|
2386
|
+
scrollspy_container?: ModelTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"] | undefined | null;
|
|
2387
|
+
};
|
|
2388
|
+
["Shapedocs_contentDocumentation_pageContent_container"]: {
|
|
2389
|
+
doc_content?: ModelTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"] | undefined | null;
|
|
2390
|
+
scrollspy?: ModelTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"] | undefined | null;
|
|
2391
|
+
};
|
|
2392
|
+
["Shapedocs_contentDocumentation_page"]: {
|
|
2393
|
+
content_container?: ModelTypes["Shapedocs_contentDocumentation_pageContent_container"] | undefined | null;
|
|
2394
|
+
};
|
|
2395
|
+
["Shapedocs_content"]: {
|
|
2396
|
+
documentation_page?: ModelTypes["Shapedocs_contentDocumentation_page"] | undefined | null;
|
|
2397
|
+
_id: string;
|
|
2398
|
+
createdAt?: number | undefined | null;
|
|
2399
|
+
updatedAt?: number | undefined | null;
|
|
2400
|
+
};
|
|
2401
|
+
["Shapedocs_navMainListChildrenCategory"]: {
|
|
2402
|
+
name?: string | undefined | null;
|
|
2403
|
+
link?: string | undefined | null;
|
|
2404
|
+
};
|
|
2405
|
+
["Shapedocs_navMainListChildren"]: {
|
|
2406
|
+
category?: Array<ModelTypes["Shapedocs_navMainListChildrenCategory"] | undefined | null> | undefined | null;
|
|
2407
|
+
};
|
|
2408
|
+
["Shapedocs_navMainList"]: {
|
|
2409
|
+
title?: string | undefined | null;
|
|
2410
|
+
children?: ModelTypes["Shapedocs_navMainListChildren"] | undefined | null;
|
|
2411
|
+
};
|
|
2412
|
+
["Shapedocs_navMain"]: {
|
|
2413
|
+
list?: Array<ModelTypes["Shapedocs_navMainList"] | undefined | null> | undefined | null;
|
|
2414
|
+
};
|
|
2415
|
+
["Shapedocs_nav"]: {
|
|
2416
|
+
main?: ModelTypes["Shapedocs_navMain"] | undefined | null;
|
|
2417
|
+
_id: string;
|
|
2418
|
+
createdAt?: number | undefined | null;
|
|
2419
|
+
updatedAt?: number | undefined | null;
|
|
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
|
+
};
|
|
2432
|
+
["ShapefootFooterFooter_containerFooter_links"]: {
|
|
2433
|
+
privacy_policy?: string | undefined | null;
|
|
2434
|
+
terms_of_service?: string | undefined | null;
|
|
2435
|
+
contact_us?: string | undefined | null;
|
|
2436
|
+
};
|
|
2437
|
+
["ShapefootFooterFooter_container"]: {
|
|
2438
|
+
footer_logo?: string | undefined | null;
|
|
2439
|
+
footer_links?: ModelTypes["ShapefootFooterFooter_containerFooter_links"] | undefined | null;
|
|
2440
|
+
footer_copy?: string | undefined | null;
|
|
2441
|
+
};
|
|
2442
|
+
["ShapefootFooter"]: {
|
|
2443
|
+
footer_container?: ModelTypes["ShapefootFooterFooter_container"] | undefined | null;
|
|
2444
|
+
};
|
|
2445
|
+
["Shapefoot"]: {
|
|
2446
|
+
footer?: ModelTypes["ShapefootFooter"] | undefined | null;
|
|
2447
|
+
_id: string;
|
|
2448
|
+
createdAt?: number | undefined | null;
|
|
2449
|
+
updatedAt?: number | undefined | null;
|
|
2450
|
+
};
|
|
2451
|
+
["ShapeheroHero_componentSlogan_parent"]: {
|
|
2452
|
+
slogan?: string | undefined | null;
|
|
2453
|
+
};
|
|
2454
|
+
["ShapeheroHero_component"]: {
|
|
2455
|
+
logoplace?: string | undefined | null;
|
|
2456
|
+
logo?: string | undefined | null;
|
|
2457
|
+
slogan_parent?: ModelTypes["ShapeheroHero_componentSlogan_parent"] | undefined | null;
|
|
2458
|
+
subslogan?: string | undefined | null;
|
|
2459
|
+
};
|
|
2460
|
+
["Shapehero"]: {
|
|
2461
|
+
hero_component?: ModelTypes["ShapeheroHero_component"] | undefined | null;
|
|
2462
|
+
_id: string;
|
|
2463
|
+
createdAt?: number | undefined | null;
|
|
2464
|
+
updatedAt?: number | undefined | null;
|
|
2465
|
+
};
|
|
2466
|
+
["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"]: {
|
|
2467
|
+
feature?: Array<string | undefined | null> | undefined | null;
|
|
2468
|
+
};
|
|
2469
|
+
["ShapeheroxHero_sectionHero_containerText_wrapper"]: {
|
|
2470
|
+
title?: string | undefined | null;
|
|
2471
|
+
description?: string | undefined | null;
|
|
2472
|
+
features?: ModelTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"] | undefined | null;
|
|
2473
|
+
};
|
|
2474
|
+
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: {
|
|
2475
|
+
hero_image?: ModelTypes["ImageField"] | undefined | null;
|
|
2476
|
+
};
|
|
2477
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: {
|
|
2478
|
+
video?: ModelTypes["VideoField"] | undefined | null;
|
|
2479
|
+
};
|
|
2480
|
+
["ShapeheroxHero_sectionHero_container"]: {
|
|
2481
|
+
text_wrapper?: ModelTypes["ShapeheroxHero_sectionHero_containerText_wrapper"] | undefined | null;
|
|
2482
|
+
image_wrapper?: ModelTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"] | undefined | null;
|
|
2483
|
+
presentation?: ModelTypes["ShapeheroxHero_sectionHero_containerPresentation"] | undefined | null;
|
|
2484
|
+
};
|
|
2485
|
+
["ShapeheroxHero_section"]: {
|
|
2486
|
+
hero_container?: ModelTypes["ShapeheroxHero_sectionHero_container"] | undefined | null;
|
|
2487
|
+
};
|
|
2488
|
+
["Shapeherox"]: {
|
|
2489
|
+
hero_section?: ModelTypes["ShapeheroxHero_section"] | undefined | null;
|
|
2490
|
+
_id: string;
|
|
2491
|
+
createdAt?: number | undefined | null;
|
|
2492
|
+
updatedAt?: number | undefined | null;
|
|
2493
|
+
};
|
|
2494
|
+
["Shapelista_projektowListProjectsInstance"]: {
|
|
2495
|
+
title?: string | undefined | null;
|
|
2496
|
+
link?: string | undefined | null;
|
|
2497
|
+
remove_button?: string | undefined | null;
|
|
2498
|
+
};
|
|
2499
|
+
["Shapelista_projektowListProjects"]: {
|
|
2500
|
+
instance?: Array<ModelTypes["Shapelista_projektowListProjectsInstance"] | undefined | null> | undefined | null;
|
|
2501
|
+
};
|
|
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;
|
|
2509
|
+
_id: string;
|
|
2510
|
+
createdAt?: number | undefined | null;
|
|
2511
|
+
updatedAt?: number | undefined | null;
|
|
2512
|
+
};
|
|
2513
|
+
["ShapenavNavigationNavigation_linksLink"]: {
|
|
1049
2514
|
display?: string | undefined | null;
|
|
1050
|
-
|
|
2515
|
+
href?: string | undefined | null;
|
|
1051
2516
|
};
|
|
1052
|
-
["
|
|
1053
|
-
|
|
1054
|
-
placeholder?: string | undefined | null;
|
|
2517
|
+
["ShapenavNavigationNavigation_links"]: {
|
|
2518
|
+
link?: Array<ModelTypes["ShapenavNavigationNavigation_linksLink"] | undefined | null> | undefined | null;
|
|
1055
2519
|
};
|
|
1056
|
-
["
|
|
1057
|
-
|
|
2520
|
+
["ShapenavNavigation"]: {
|
|
2521
|
+
logo?: string | undefined | null;
|
|
2522
|
+
navigation_links?: ModelTypes["ShapenavNavigationNavigation_links"] | undefined | null;
|
|
1058
2523
|
};
|
|
1059
|
-
["
|
|
1060
|
-
|
|
1061
|
-
|
|
2524
|
+
["Shapenav"]: {
|
|
2525
|
+
navigation?: ModelTypes["ShapenavNavigation"] | undefined | null;
|
|
2526
|
+
_id: string;
|
|
2527
|
+
createdAt?: number | undefined | null;
|
|
2528
|
+
updatedAt?: number | undefined | null;
|
|
1062
2529
|
};
|
|
1063
|
-
["
|
|
1064
|
-
|
|
2530
|
+
["ShapenewshapeBackgroundContent"]: {
|
|
2531
|
+
badge?: string | undefined | null;
|
|
2532
|
+
headline?: string | undefined | null;
|
|
2533
|
+
subheadline?: string | undefined | null;
|
|
2534
|
+
cta_label?: string | undefined | null;
|
|
2535
|
+
cta_href?: string | undefined | null;
|
|
1065
2536
|
};
|
|
1066
|
-
["
|
|
1067
|
-
|
|
2537
|
+
["ShapenewshapeBackground"]: {
|
|
2538
|
+
overlay_gradient?: boolean | undefined | null;
|
|
2539
|
+
content?: ModelTypes["ShapenewshapeBackgroundContent"] | undefined | null;
|
|
2540
|
+
hero_image?: ModelTypes["ImageField"] | undefined | null;
|
|
1068
2541
|
};
|
|
1069
|
-
["
|
|
1070
|
-
|
|
1071
|
-
|
|
2542
|
+
["Shapenewshape"]: {
|
|
2543
|
+
background?: ModelTypes["ShapenewshapeBackground"] | undefined | null;
|
|
2544
|
+
_id: string;
|
|
2545
|
+
createdAt?: number | undefined | null;
|
|
2546
|
+
updatedAt?: number | undefined | null;
|
|
1072
2547
|
};
|
|
1073
|
-
["
|
|
1074
|
-
|
|
2548
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: {
|
|
2549
|
+
title?: string | undefined | null;
|
|
2550
|
+
description?: string | undefined | null;
|
|
1075
2551
|
};
|
|
1076
|
-
["
|
|
1077
|
-
|
|
2552
|
+
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: {
|
|
2553
|
+
feature?: string | undefined | null;
|
|
2554
|
+
unit?: string | undefined | null;
|
|
2555
|
+
price?: string | undefined | null;
|
|
1078
2556
|
};
|
|
1079
|
-
["
|
|
1080
|
-
|
|
1081
|
-
|
|
2557
|
+
["Shapepricing_tablePricing_sectionPricing_tableRows"]: {
|
|
2558
|
+
feature?: string | undefined | null;
|
|
2559
|
+
unit?: string | undefined | null;
|
|
2560
|
+
price?: string | undefined | null;
|
|
1082
2561
|
};
|
|
1083
|
-
["
|
|
1084
|
-
|
|
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;
|
|
1085
2565
|
};
|
|
1086
|
-
["
|
|
1087
|
-
|
|
2566
|
+
["Shapepricing_tablePricing_section"]: {
|
|
2567
|
+
header_wrapper?: ModelTypes["Shapepricing_tablePricing_sectionHeader_wrapper"] | undefined | null;
|
|
2568
|
+
pricing_table?: ModelTypes["Shapepricing_tablePricing_sectionPricing_table"] | undefined | null;
|
|
1088
2569
|
};
|
|
1089
|
-
["
|
|
2570
|
+
["Shapepricing_table"]: {
|
|
2571
|
+
pricing_section?: ModelTypes["Shapepricing_tablePricing_section"] | undefined | null;
|
|
2572
|
+
_id: string;
|
|
2573
|
+
createdAt?: number | undefined | null;
|
|
2574
|
+
updatedAt?: number | undefined | null;
|
|
2575
|
+
};
|
|
2576
|
+
["Shapepricingv1Pricing_sectionHeader_wrapper"]: {
|
|
2577
|
+
title?: string | undefined | null;
|
|
2578
|
+
description?: string | undefined | null;
|
|
2579
|
+
};
|
|
2580
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"]: {
|
|
2581
|
+
feature?: Array<string | undefined | null> | undefined | null;
|
|
2582
|
+
};
|
|
2583
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_plan"]: {
|
|
2584
|
+
plan_name?: string | undefined | null;
|
|
2585
|
+
price?: string | undefined | null;
|
|
2586
|
+
plan_description?: string | undefined | null;
|
|
2587
|
+
feature_list?: ModelTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"] | undefined | null;
|
|
2588
|
+
cta?: string | undefined | null;
|
|
2589
|
+
};
|
|
2590
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: {
|
|
2591
|
+
feature?: Array<string | undefined | null> | undefined | null;
|
|
2592
|
+
};
|
|
2593
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: {
|
|
2594
|
+
plan_name?: string | undefined | null;
|
|
2595
|
+
price?: string | undefined | null;
|
|
2596
|
+
plan_description?: string | undefined | null;
|
|
2597
|
+
feature_list?: ModelTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"] | undefined | null;
|
|
2598
|
+
cta?: string | undefined | null;
|
|
2599
|
+
};
|
|
2600
|
+
["Shapepricingv1Pricing_sectionPlans_grid"]: {
|
|
2601
|
+
free_plan?: ModelTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"] | undefined | null;
|
|
2602
|
+
paid_plan?: ModelTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"] | undefined | null;
|
|
2603
|
+
};
|
|
2604
|
+
["Shapepricingv1Pricing_section"]: {
|
|
2605
|
+
header_wrapper?: ModelTypes["Shapepricingv1Pricing_sectionHeader_wrapper"] | undefined | null;
|
|
2606
|
+
plans_grid?: ModelTypes["Shapepricingv1Pricing_sectionPlans_grid"] | undefined | null;
|
|
2607
|
+
};
|
|
2608
|
+
["Shapepricingv1"]: {
|
|
2609
|
+
pricing_section?: ModelTypes["Shapepricingv1Pricing_section"] | undefined | null;
|
|
2610
|
+
_id: string;
|
|
2611
|
+
createdAt?: number | undefined | null;
|
|
2612
|
+
updatedAt?: number | undefined | null;
|
|
2613
|
+
};
|
|
2614
|
+
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: {
|
|
2615
|
+
full_name?: string | undefined | null;
|
|
2616
|
+
company?: string | undefined | null;
|
|
2617
|
+
email?: string | undefined | null;
|
|
2618
|
+
};
|
|
2619
|
+
["Shapeprofile_infoProfile_sectionAccount_header"]: {
|
|
2620
|
+
avatar?: ModelTypes["ImageField"] | undefined | null;
|
|
2621
|
+
info?: ModelTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"] | undefined | null;
|
|
2622
|
+
};
|
|
2623
|
+
["Shapeprofile_infoProfile_sectionPlan_status"]: {
|
|
2624
|
+
plan?: string | undefined | null;
|
|
2625
|
+
};
|
|
2626
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: {
|
|
1090
2627
|
label?: string | undefined | null;
|
|
2628
|
+
value?: string | undefined | null;
|
|
1091
2629
|
};
|
|
1092
|
-
["
|
|
2630
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: {
|
|
1093
2631
|
label?: string | undefined | null;
|
|
1094
|
-
|
|
2632
|
+
value?: string | undefined | null;
|
|
1095
2633
|
};
|
|
1096
|
-
["
|
|
2634
|
+
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: {
|
|
1097
2635
|
label?: string | undefined | null;
|
|
1098
|
-
|
|
2636
|
+
value?: string | undefined | null;
|
|
1099
2637
|
};
|
|
1100
|
-
["
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
versions?: Array<ModelTypes["VersionField"]> | undefined | null;
|
|
1105
|
-
links?: Array<ModelTypes["InternalLink"]> | undefined | null;
|
|
1106
|
-
listViews?: Array<ModelTypes["View"]> | undefined | null;
|
|
1107
|
-
listShapes?: Array<ModelTypes["Shape"]> | undefined | null;
|
|
1108
|
-
tailwind?: ModelTypes["TailwindConfiguration"] | undefined | null;
|
|
1109
|
-
listForms?: Array<ModelTypes["Form"]> | undefined | null;
|
|
1110
|
-
listPaginateddemo?: ModelTypes["demo__Connection"] | undefined | null;
|
|
1111
|
-
onedemoBySlug?: ModelTypes["demo"] | undefined | null;
|
|
1112
|
-
variantsdemoBySlug?: Array<ModelTypes["demo"]> | undefined | null;
|
|
1113
|
-
fieldSetdemo: string;
|
|
1114
|
-
modeldemo: ModelTypes["ModelNavigationCompiled"];
|
|
1115
|
-
previewFieldsdemo: ModelTypes["ModelNavigationCompiled"];
|
|
1116
|
-
listPaginatedpost?: ModelTypes["post__Connection"] | undefined | null;
|
|
1117
|
-
onepostBySlug?: ModelTypes["post"] | undefined | null;
|
|
1118
|
-
variantspostBySlug?: Array<ModelTypes["post"]> | undefined | null;
|
|
1119
|
-
fieldSetpost: string;
|
|
1120
|
-
modelpost: ModelTypes["ModelNavigationCompiled"];
|
|
1121
|
-
previewFieldspost: ModelTypes["ModelNavigationCompiled"];
|
|
1122
|
-
fieldSetShapetests: string;
|
|
1123
|
-
modelShapetests: ModelTypes["ModelNavigationCompiled"];
|
|
1124
|
-
previewFieldsShapetests: ModelTypes["ModelNavigationCompiled"];
|
|
1125
|
-
oneShapetests?: ModelTypes["Shapetests"] | undefined | null;
|
|
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;
|
|
1126
2642
|
};
|
|
1127
|
-
["
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
pageInfo: ModelTypes["PageInfo"];
|
|
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;
|
|
1132
2647
|
};
|
|
1133
|
-
["
|
|
1134
|
-
|
|
1135
|
-
content?: string | undefined | null;
|
|
1136
|
-
slug?: string | undefined | null;
|
|
2648
|
+
["Shapeprofile_info"]: {
|
|
2649
|
+
profile_section?: ModelTypes["Shapeprofile_infoProfile_section"] | undefined | null;
|
|
1137
2650
|
_id: string;
|
|
1138
2651
|
createdAt?: number | undefined | null;
|
|
1139
2652
|
updatedAt?: number | undefined | null;
|
|
1140
|
-
draft_version?: boolean | undefined | null;
|
|
1141
|
-
json_ld?: string | undefined | null;
|
|
1142
2653
|
};
|
|
1143
|
-
["
|
|
1144
|
-
items?: Array<ModelTypes["post"]> | undefined | null;
|
|
1145
|
-
pageInfo: ModelTypes["PageInfo"];
|
|
1146
|
-
};
|
|
1147
|
-
["post"]: {
|
|
1148
|
-
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
2654
|
+
["ShapeusageMain"]: {
|
|
1149
2655
|
title?: string | undefined | null;
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
_id: string;
|
|
1154
|
-
createdAt?: number | undefined | null;
|
|
1155
|
-
updatedAt?: number | undefined | null;
|
|
1156
|
-
draft_version?: boolean | undefined | null;
|
|
1157
|
-
json_ld?: string | undefined | null;
|
|
2656
|
+
subtitle?: string | undefined | null;
|
|
2657
|
+
period?: string | undefined | null;
|
|
2658
|
+
tokens_consumed?: number | undefined | null;
|
|
1158
2659
|
};
|
|
1159
|
-
["
|
|
2660
|
+
["Shapeusage"]: {
|
|
2661
|
+
main?: ModelTypes["ShapeusageMain"] | undefined | null;
|
|
1160
2662
|
_id: string;
|
|
1161
2663
|
createdAt?: number | undefined | null;
|
|
1162
2664
|
updatedAt?: number | undefined | null;
|
|
1163
2665
|
};
|
|
1164
2666
|
["RootParamsInput"]: {
|
|
1165
2667
|
_version?: string | undefined | null;
|
|
2668
|
+
locale?: string | undefined | null;
|
|
1166
2669
|
};
|
|
1167
2670
|
["RootParamsEnum"]: RootParamsEnum;
|
|
1168
|
-
["
|
|
1169
|
-
slug?: ModelTypes["Sort"] | undefined | null;
|
|
1170
|
-
createdAt?: ModelTypes["Sort"] | undefined | null;
|
|
1171
|
-
updatedAt?: ModelTypes["Sort"] | undefined | null;
|
|
1172
|
-
};
|
|
1173
|
-
["postSortInput"]: {
|
|
2671
|
+
["docsSortInput"]: {
|
|
1174
2672
|
slug?: ModelTypes["Sort"] | undefined | null;
|
|
1175
2673
|
createdAt?: ModelTypes["Sort"] | undefined | null;
|
|
1176
2674
|
updatedAt?: ModelTypes["Sort"] | undefined | null;
|
|
1177
2675
|
};
|
|
1178
|
-
["
|
|
1179
|
-
slug?: ModelTypes["FilterInputString"] | undefined | null;
|
|
1180
|
-
};
|
|
1181
|
-
["postFilterInput"]: {
|
|
2676
|
+
["docsFilterInput"]: {
|
|
1182
2677
|
slug?: ModelTypes["FilterInputString"] | undefined | null;
|
|
1183
2678
|
};
|
|
1184
2679
|
["schema"]: {
|
|
1185
2680
|
query?: ModelTypes["Query"] | undefined | null;
|
|
2681
|
+
mutation?: ModelTypes["Mutation"] | undefined | null;
|
|
1186
2682
|
};
|
|
1187
2683
|
["ID"]: any;
|
|
1188
2684
|
};
|
|
@@ -1284,6 +2780,18 @@ export type GraphQLTypes = {
|
|
|
1284
2780
|
value?: string | undefined | null;
|
|
1285
2781
|
children?: Array<GraphQLTypes["Condition"]> | undefined | null;
|
|
1286
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
|
+
};
|
|
1287
2795
|
["Visual"]: {
|
|
1288
2796
|
__typename: "Visual";
|
|
1289
2797
|
className?: string | undefined | null;
|
|
@@ -1303,6 +2811,13 @@ export type GraphQLTypes = {
|
|
|
1303
2811
|
ne?: string | undefined | null;
|
|
1304
2812
|
contain?: string | undefined | null;
|
|
1305
2813
|
};
|
|
2814
|
+
["Mutation"]: {
|
|
2815
|
+
__typename: "Mutation";
|
|
2816
|
+
heartbeat?: string | undefined | null;
|
|
2817
|
+
};
|
|
2818
|
+
["RootParamsAdminType"]: "scalar" & {
|
|
2819
|
+
name: "RootParamsAdminType";
|
|
2820
|
+
};
|
|
1306
2821
|
["Shape"]: {
|
|
1307
2822
|
__typename: "Shape";
|
|
1308
2823
|
name: string;
|
|
@@ -1328,6 +2843,12 @@ export type GraphQLTypes = {
|
|
|
1328
2843
|
textContent?: string | undefined | null;
|
|
1329
2844
|
children?: Array<GraphQLTypes["AiComponent"]> | undefined | null;
|
|
1330
2845
|
};
|
|
2846
|
+
["FormFieldVisual"]: {
|
|
2847
|
+
__typename: "FormFieldVisual";
|
|
2848
|
+
className?: string | undefined | null;
|
|
2849
|
+
component?: string | undefined | null;
|
|
2850
|
+
rules?: Array<GraphQLTypes["Rule"]> | undefined | null;
|
|
2851
|
+
};
|
|
1331
2852
|
["FormField"]: {
|
|
1332
2853
|
__typename: "FormField";
|
|
1333
2854
|
name: string;
|
|
@@ -1335,8 +2856,7 @@ export type GraphQLTypes = {
|
|
|
1335
2856
|
type: GraphQLTypes["FormFieldType"];
|
|
1336
2857
|
list?: boolean | undefined | null;
|
|
1337
2858
|
fields?: Array<GraphQLTypes["FormField"]> | undefined | null;
|
|
1338
|
-
visual?: GraphQLTypes["
|
|
1339
|
-
conditions?: GraphQLTypes["Condition"] | undefined | null;
|
|
2859
|
+
visual?: GraphQLTypes["FormFieldVisual"] | undefined | null;
|
|
1340
2860
|
placeholder?: string | undefined | null;
|
|
1341
2861
|
root?: boolean | undefined | null;
|
|
1342
2862
|
options?: Array<string> | undefined | null;
|
|
@@ -1407,11 +2927,30 @@ export type GraphQLTypes = {
|
|
|
1407
2927
|
label?: string | undefined | null;
|
|
1408
2928
|
options?: Array<string> | undefined | null;
|
|
1409
2929
|
};
|
|
2930
|
+
["FormCheckboxField"]: {
|
|
2931
|
+
__typename: "FormCheckboxField";
|
|
2932
|
+
label?: string | undefined | null;
|
|
2933
|
+
};
|
|
2934
|
+
["FormButtonField"]: {
|
|
2935
|
+
__typename: "FormButtonField";
|
|
2936
|
+
label?: string | undefined | null;
|
|
2937
|
+
};
|
|
1410
2938
|
["FormProductField"]: {
|
|
1411
2939
|
__typename: "FormProductField";
|
|
1412
2940
|
label?: string | undefined | null;
|
|
1413
2941
|
name?: string | undefined | null;
|
|
1414
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
|
+
};
|
|
1415
2954
|
["CMSType"]: CMSType;
|
|
1416
2955
|
["Query"]: {
|
|
1417
2956
|
__typename: "Query";
|
|
@@ -1423,34 +2962,114 @@ export type GraphQLTypes = {
|
|
|
1423
2962
|
listShapes?: Array<GraphQLTypes["Shape"]> | undefined | null;
|
|
1424
2963
|
tailwind?: GraphQLTypes["TailwindConfiguration"] | undefined | null;
|
|
1425
2964
|
listForms?: Array<GraphQLTypes["Form"]> | undefined | null;
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
2965
|
+
listPaginateddocs?: GraphQLTypes["docs__Connection"] | undefined | null;
|
|
2966
|
+
onedocsBySlug?: GraphQLTypes["docs"] | undefined | null;
|
|
2967
|
+
variantsdocsBySlug?: Array<GraphQLTypes["docs"]> | undefined | null;
|
|
2968
|
+
fieldSetdocs: string;
|
|
2969
|
+
modeldocs: GraphQLTypes["ModelNavigationCompiled"];
|
|
2970
|
+
previewFieldsdocs: GraphQLTypes["ModelNavigationCompiled"];
|
|
2971
|
+
fieldSetShapedocs_content: string;
|
|
2972
|
+
modelShapedocs_content: GraphQLTypes["ModelNavigationCompiled"];
|
|
2973
|
+
previewFieldsShapedocs_content: GraphQLTypes["ModelNavigationCompiled"];
|
|
2974
|
+
oneShapedocs_content?: GraphQLTypes["Shapedocs_content"] | undefined | null;
|
|
2975
|
+
fieldSetShapedocs_nav: string;
|
|
2976
|
+
modelShapedocs_nav: GraphQLTypes["ModelNavigationCompiled"];
|
|
2977
|
+
previewFieldsShapedocs_nav: GraphQLTypes["ModelNavigationCompiled"];
|
|
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;
|
|
2983
|
+
fieldSetShapefoot: string;
|
|
2984
|
+
modelShapefoot: GraphQLTypes["ModelNavigationCompiled"];
|
|
2985
|
+
previewFieldsShapefoot: GraphQLTypes["ModelNavigationCompiled"];
|
|
2986
|
+
oneShapefoot?: GraphQLTypes["Shapefoot"] | undefined | null;
|
|
2987
|
+
fieldSetShapehero: string;
|
|
2988
|
+
modelShapehero: GraphQLTypes["ModelNavigationCompiled"];
|
|
2989
|
+
previewFieldsShapehero: GraphQLTypes["ModelNavigationCompiled"];
|
|
2990
|
+
oneShapehero?: GraphQLTypes["Shapehero"] | undefined | null;
|
|
2991
|
+
fieldSetShapeherox: string;
|
|
2992
|
+
modelShapeherox: GraphQLTypes["ModelNavigationCompiled"];
|
|
2993
|
+
previewFieldsShapeherox: GraphQLTypes["ModelNavigationCompiled"];
|
|
2994
|
+
oneShapeherox?: GraphQLTypes["Shapeherox"] | undefined | null;
|
|
2995
|
+
fieldSetShapelista_projektow: string;
|
|
2996
|
+
modelShapelista_projektow: GraphQLTypes["ModelNavigationCompiled"];
|
|
2997
|
+
previewFieldsShapelista_projektow: GraphQLTypes["ModelNavigationCompiled"];
|
|
2998
|
+
oneShapelista_projektow?: GraphQLTypes["Shapelista_projektow"] | undefined | null;
|
|
2999
|
+
fieldSetShapenav: string;
|
|
3000
|
+
modelShapenav: GraphQLTypes["ModelNavigationCompiled"];
|
|
3001
|
+
previewFieldsShapenav: GraphQLTypes["ModelNavigationCompiled"];
|
|
3002
|
+
oneShapenav?: GraphQLTypes["Shapenav"] | undefined | null;
|
|
3003
|
+
fieldSetShapenewshape: string;
|
|
3004
|
+
modelShapenewshape: GraphQLTypes["ModelNavigationCompiled"];
|
|
3005
|
+
previewFieldsShapenewshape: GraphQLTypes["ModelNavigationCompiled"];
|
|
3006
|
+
oneShapenewshape?: GraphQLTypes["Shapenewshape"] | undefined | null;
|
|
3007
|
+
fieldSetShapepricing_table: string;
|
|
3008
|
+
modelShapepricing_table: GraphQLTypes["ModelNavigationCompiled"];
|
|
3009
|
+
previewFieldsShapepricing_table: GraphQLTypes["ModelNavigationCompiled"];
|
|
3010
|
+
oneShapepricing_table?: GraphQLTypes["Shapepricing_table"] | undefined | null;
|
|
3011
|
+
fieldSetShapepricingv1: string;
|
|
3012
|
+
modelShapepricingv1: GraphQLTypes["ModelNavigationCompiled"];
|
|
3013
|
+
previewFieldsShapepricingv1: GraphQLTypes["ModelNavigationCompiled"];
|
|
3014
|
+
oneShapepricingv1?: GraphQLTypes["Shapepricingv1"] | undefined | null;
|
|
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;
|
|
3033
|
+
variantsViewhomepage?: Array<GraphQLTypes["Viewhomepage"]> | undefined | null;
|
|
3034
|
+
fieldSetViewhomepage: string;
|
|
3035
|
+
modelViewhomepage: GraphQLTypes["ModelNavigationCompiled"];
|
|
3036
|
+
previewFieldsViewhomepage: GraphQLTypes["ModelNavigationCompiled"];
|
|
3037
|
+
oneViewhomepage?: GraphQLTypes["Viewhomepage"] | undefined | null;
|
|
3038
|
+
variantsViewhowitworks?: Array<GraphQLTypes["Viewhowitworks"]> | undefined | null;
|
|
3039
|
+
fieldSetViewhowitworks: string;
|
|
3040
|
+
modelViewhowitworks: GraphQLTypes["ModelNavigationCompiled"];
|
|
3041
|
+
previewFieldsViewhowitworks: GraphQLTypes["ModelNavigationCompiled"];
|
|
3042
|
+
oneViewhowitworks?: GraphQLTypes["Viewhowitworks"] | 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;
|
|
3048
|
+
};
|
|
3049
|
+
["RootParamsType"]: {
|
|
3050
|
+
__typename: "RootParamsType";
|
|
3051
|
+
_version?: string | undefined | null;
|
|
3052
|
+
locale?: string | undefined | null;
|
|
1442
3053
|
};
|
|
1443
3054
|
["ModelEnum"]: ModelEnum;
|
|
3055
|
+
["ViewEnum"]: ViewEnum;
|
|
1444
3056
|
["ShapeEnum"]: ShapeEnum;
|
|
1445
|
-
["
|
|
1446
|
-
__typename: "
|
|
1447
|
-
items?: Array<GraphQLTypes["
|
|
3057
|
+
["docs__Connection"]: {
|
|
3058
|
+
__typename: "docs__Connection";
|
|
3059
|
+
items?: Array<GraphQLTypes["docs"]> | undefined | null;
|
|
1448
3060
|
pageInfo: GraphQLTypes["PageInfo"];
|
|
1449
3061
|
};
|
|
1450
|
-
["
|
|
1451
|
-
__typename: "
|
|
3062
|
+
["docs"]: {
|
|
3063
|
+
__typename: "docs";
|
|
1452
3064
|
_version?: GraphQLTypes["VersionField"] | undefined | null;
|
|
3065
|
+
title?: string | undefined | null;
|
|
3066
|
+
seotitle?: string | undefined | null;
|
|
3067
|
+
metadesc?: string | undefined | null;
|
|
3068
|
+
sortid?: number | undefined | null;
|
|
3069
|
+
main_category?: string | undefined | null;
|
|
1453
3070
|
content?: string | undefined | null;
|
|
3071
|
+
video?: GraphQLTypes["VideoField"] | undefined | null;
|
|
3072
|
+
locale?: string | undefined | null;
|
|
1454
3073
|
slug?: string | undefined | null;
|
|
1455
3074
|
_id: string;
|
|
1456
3075
|
createdAt?: number | undefined | null;
|
|
@@ -1458,17 +3077,82 @@ export type GraphQLTypes = {
|
|
|
1458
3077
|
draft_version?: boolean | undefined | null;
|
|
1459
3078
|
json_ld?: string | undefined | null;
|
|
1460
3079
|
};
|
|
1461
|
-
["
|
|
1462
|
-
__typename: "
|
|
1463
|
-
|
|
1464
|
-
|
|
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;
|
|
1465
3101
|
};
|
|
1466
|
-
["
|
|
1467
|
-
__typename: "
|
|
3102
|
+
["Viewfeatures"]: {
|
|
3103
|
+
__typename: "Viewfeatures";
|
|
1468
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
|
+
};
|
|
3114
|
+
["Viewhomepage"]: {
|
|
3115
|
+
__typename: "Viewhomepage";
|
|
3116
|
+
_version?: GraphQLTypes["VersionField"] | undefined | null;
|
|
3117
|
+
nav?: GraphQLTypes["Shapenav"] | undefined | null;
|
|
3118
|
+
main?: GraphQLTypes["Shapehero"] | undefined | null;
|
|
3119
|
+
hero?: GraphQLTypes["Shapeherox"] | undefined | null;
|
|
3120
|
+
pricing?: GraphQLTypes["Shapepricingv1"] | undefined | null;
|
|
3121
|
+
footer?: GraphQLTypes["Shapefoot"] | undefined | null;
|
|
3122
|
+
locale?: string | undefined | null;
|
|
3123
|
+
slug?: string | undefined | null;
|
|
3124
|
+
_id: string;
|
|
3125
|
+
createdAt?: number | undefined | null;
|
|
3126
|
+
updatedAt?: number | undefined | null;
|
|
3127
|
+
draft_version?: boolean | undefined | null;
|
|
3128
|
+
json_ld?: string | undefined | null;
|
|
3129
|
+
};
|
|
3130
|
+
["ViewhowitworksFeature_control"]: {
|
|
3131
|
+
__typename: "ViewhowitworksFeature_control";
|
|
1469
3132
|
title?: string | undefined | null;
|
|
3133
|
+
description?: string | undefined | null;
|
|
1470
3134
|
image?: GraphQLTypes["ImageField"] | undefined | null;
|
|
1471
|
-
|
|
3135
|
+
};
|
|
3136
|
+
["Viewhowitworks"]: {
|
|
3137
|
+
__typename: "Viewhowitworks";
|
|
3138
|
+
_version?: GraphQLTypes["VersionField"] | undefined | null;
|
|
3139
|
+
title?: string | undefined | null;
|
|
3140
|
+
feature_control?: GraphQLTypes["ViewhowitworksFeature_control"] | undefined | null;
|
|
3141
|
+
locale?: string | undefined | null;
|
|
3142
|
+
slug?: string | undefined | null;
|
|
3143
|
+
_id: string;
|
|
3144
|
+
createdAt?: number | undefined | null;
|
|
3145
|
+
updatedAt?: number | undefined | null;
|
|
3146
|
+
draft_version?: boolean | undefined | null;
|
|
3147
|
+
json_ld?: string | undefined | null;
|
|
3148
|
+
};
|
|
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;
|
|
1472
3156
|
slug?: string | undefined | null;
|
|
1473
3157
|
_id: string;
|
|
1474
3158
|
createdAt?: number | undefined | null;
|
|
@@ -1476,30 +3160,368 @@ export type GraphQLTypes = {
|
|
|
1476
3160
|
draft_version?: boolean | undefined | null;
|
|
1477
3161
|
json_ld?: string | undefined | null;
|
|
1478
3162
|
};
|
|
1479
|
-
["
|
|
1480
|
-
__typename: "
|
|
3163
|
+
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: {
|
|
3164
|
+
__typename: "Shapedocs_contentDocumentation_pageContent_containerDoc_content";
|
|
3165
|
+
content?: string | undefined | null;
|
|
3166
|
+
};
|
|
3167
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"]: {
|
|
3168
|
+
__typename: "Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container";
|
|
3169
|
+
scrollspy_title?: string | undefined | null;
|
|
3170
|
+
scrollspy_list?: string | undefined | null;
|
|
3171
|
+
};
|
|
3172
|
+
["Shapedocs_contentDocumentation_pageContent_containerScrollspy"]: {
|
|
3173
|
+
__typename: "Shapedocs_contentDocumentation_pageContent_containerScrollspy";
|
|
3174
|
+
scrollspy_container?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"] | undefined | null;
|
|
3175
|
+
};
|
|
3176
|
+
["Shapedocs_contentDocumentation_pageContent_container"]: {
|
|
3177
|
+
__typename: "Shapedocs_contentDocumentation_pageContent_container";
|
|
3178
|
+
doc_content?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"] | undefined | null;
|
|
3179
|
+
scrollspy?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"] | undefined | null;
|
|
3180
|
+
};
|
|
3181
|
+
["Shapedocs_contentDocumentation_page"]: {
|
|
3182
|
+
__typename: "Shapedocs_contentDocumentation_page";
|
|
3183
|
+
content_container?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_container"] | undefined | null;
|
|
3184
|
+
};
|
|
3185
|
+
["Shapedocs_content"]: {
|
|
3186
|
+
__typename: "Shapedocs_content";
|
|
3187
|
+
documentation_page?: GraphQLTypes["Shapedocs_contentDocumentation_page"] | undefined | null;
|
|
3188
|
+
_id: string;
|
|
3189
|
+
createdAt?: number | undefined | null;
|
|
3190
|
+
updatedAt?: number | undefined | null;
|
|
3191
|
+
};
|
|
3192
|
+
["Shapedocs_navMainListChildrenCategory"]: {
|
|
3193
|
+
__typename: "Shapedocs_navMainListChildrenCategory";
|
|
3194
|
+
name?: string | undefined | null;
|
|
3195
|
+
link?: string | undefined | null;
|
|
3196
|
+
};
|
|
3197
|
+
["Shapedocs_navMainListChildren"]: {
|
|
3198
|
+
__typename: "Shapedocs_navMainListChildren";
|
|
3199
|
+
category?: Array<GraphQLTypes["Shapedocs_navMainListChildrenCategory"] | undefined | null> | undefined | null;
|
|
3200
|
+
};
|
|
3201
|
+
["Shapedocs_navMainList"]: {
|
|
3202
|
+
__typename: "Shapedocs_navMainList";
|
|
3203
|
+
title?: string | undefined | null;
|
|
3204
|
+
children?: GraphQLTypes["Shapedocs_navMainListChildren"] | undefined | null;
|
|
3205
|
+
};
|
|
3206
|
+
["Shapedocs_navMain"]: {
|
|
3207
|
+
__typename: "Shapedocs_navMain";
|
|
3208
|
+
list?: Array<GraphQLTypes["Shapedocs_navMainList"] | undefined | null> | undefined | null;
|
|
3209
|
+
};
|
|
3210
|
+
["Shapedocs_nav"]: {
|
|
3211
|
+
__typename: "Shapedocs_nav";
|
|
3212
|
+
main?: GraphQLTypes["Shapedocs_navMain"] | undefined | null;
|
|
3213
|
+
_id: string;
|
|
3214
|
+
createdAt?: number | undefined | null;
|
|
3215
|
+
updatedAt?: number | undefined | null;
|
|
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
|
+
};
|
|
3230
|
+
["ShapefootFooterFooter_containerFooter_links"]: {
|
|
3231
|
+
__typename: "ShapefootFooterFooter_containerFooter_links";
|
|
3232
|
+
privacy_policy?: string | undefined | null;
|
|
3233
|
+
terms_of_service?: string | undefined | null;
|
|
3234
|
+
contact_us?: string | undefined | null;
|
|
3235
|
+
};
|
|
3236
|
+
["ShapefootFooterFooter_container"]: {
|
|
3237
|
+
__typename: "ShapefootFooterFooter_container";
|
|
3238
|
+
footer_logo?: string | undefined | null;
|
|
3239
|
+
footer_links?: GraphQLTypes["ShapefootFooterFooter_containerFooter_links"] | undefined | null;
|
|
3240
|
+
footer_copy?: string | undefined | null;
|
|
3241
|
+
};
|
|
3242
|
+
["ShapefootFooter"]: {
|
|
3243
|
+
__typename: "ShapefootFooter";
|
|
3244
|
+
footer_container?: GraphQLTypes["ShapefootFooterFooter_container"] | undefined | null;
|
|
3245
|
+
};
|
|
3246
|
+
["Shapefoot"]: {
|
|
3247
|
+
__typename: "Shapefoot";
|
|
3248
|
+
footer?: GraphQLTypes["ShapefootFooter"] | undefined | null;
|
|
3249
|
+
_id: string;
|
|
3250
|
+
createdAt?: number | undefined | null;
|
|
3251
|
+
updatedAt?: number | undefined | null;
|
|
3252
|
+
};
|
|
3253
|
+
["ShapeheroHero_componentSlogan_parent"]: {
|
|
3254
|
+
__typename: "ShapeheroHero_componentSlogan_parent";
|
|
3255
|
+
slogan?: string | undefined | null;
|
|
3256
|
+
};
|
|
3257
|
+
["ShapeheroHero_component"]: {
|
|
3258
|
+
__typename: "ShapeheroHero_component";
|
|
3259
|
+
logoplace?: string | undefined | null;
|
|
3260
|
+
logo?: string | undefined | null;
|
|
3261
|
+
slogan_parent?: GraphQLTypes["ShapeheroHero_componentSlogan_parent"] | undefined | null;
|
|
3262
|
+
subslogan?: string | undefined | null;
|
|
3263
|
+
};
|
|
3264
|
+
["Shapehero"]: {
|
|
3265
|
+
__typename: "Shapehero";
|
|
3266
|
+
hero_component?: GraphQLTypes["ShapeheroHero_component"] | undefined | null;
|
|
3267
|
+
_id: string;
|
|
3268
|
+
createdAt?: number | undefined | null;
|
|
3269
|
+
updatedAt?: number | undefined | null;
|
|
3270
|
+
};
|
|
3271
|
+
["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"]: {
|
|
3272
|
+
__typename: "ShapeheroxHero_sectionHero_containerText_wrapperFeatures";
|
|
3273
|
+
feature?: Array<string | undefined | null> | undefined | null;
|
|
3274
|
+
};
|
|
3275
|
+
["ShapeheroxHero_sectionHero_containerText_wrapper"]: {
|
|
3276
|
+
__typename: "ShapeheroxHero_sectionHero_containerText_wrapper";
|
|
3277
|
+
title?: string | undefined | null;
|
|
3278
|
+
description?: string | undefined | null;
|
|
3279
|
+
features?: GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"] | undefined | null;
|
|
3280
|
+
};
|
|
3281
|
+
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: {
|
|
3282
|
+
__typename: "ShapeheroxHero_sectionHero_containerImage_wrapper";
|
|
3283
|
+
hero_image?: GraphQLTypes["ImageField"] | undefined | null;
|
|
3284
|
+
};
|
|
3285
|
+
["ShapeheroxHero_sectionHero_containerPresentation"]: {
|
|
3286
|
+
__typename: "ShapeheroxHero_sectionHero_containerPresentation";
|
|
3287
|
+
video?: GraphQLTypes["VideoField"] | undefined | null;
|
|
3288
|
+
};
|
|
3289
|
+
["ShapeheroxHero_sectionHero_container"]: {
|
|
3290
|
+
__typename: "ShapeheroxHero_sectionHero_container";
|
|
3291
|
+
text_wrapper?: GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapper"] | undefined | null;
|
|
3292
|
+
image_wrapper?: GraphQLTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"] | undefined | null;
|
|
3293
|
+
presentation?: GraphQLTypes["ShapeheroxHero_sectionHero_containerPresentation"] | undefined | null;
|
|
3294
|
+
};
|
|
3295
|
+
["ShapeheroxHero_section"]: {
|
|
3296
|
+
__typename: "ShapeheroxHero_section";
|
|
3297
|
+
hero_container?: GraphQLTypes["ShapeheroxHero_sectionHero_container"] | undefined | null;
|
|
3298
|
+
};
|
|
3299
|
+
["Shapeherox"]: {
|
|
3300
|
+
__typename: "Shapeherox";
|
|
3301
|
+
hero_section?: GraphQLTypes["ShapeheroxHero_section"] | undefined | null;
|
|
3302
|
+
_id: string;
|
|
3303
|
+
createdAt?: number | undefined | null;
|
|
3304
|
+
updatedAt?: number | undefined | null;
|
|
3305
|
+
};
|
|
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;
|
|
3315
|
+
};
|
|
3316
|
+
["Shapelista_projektowList"]: {
|
|
3317
|
+
__typename: "Shapelista_projektowList";
|
|
3318
|
+
title?: string | undefined | null;
|
|
3319
|
+
subtitle?: string | undefined | null;
|
|
3320
|
+
projects?: GraphQLTypes["Shapelista_projektowListProjects"] | undefined | null;
|
|
3321
|
+
};
|
|
3322
|
+
["Shapelista_projektow"]: {
|
|
3323
|
+
__typename: "Shapelista_projektow";
|
|
3324
|
+
list?: GraphQLTypes["Shapelista_projektowList"] | undefined | null;
|
|
3325
|
+
_id: string;
|
|
3326
|
+
createdAt?: number | undefined | null;
|
|
3327
|
+
updatedAt?: number | undefined | null;
|
|
3328
|
+
};
|
|
3329
|
+
["ShapenavNavigationNavigation_linksLink"]: {
|
|
3330
|
+
__typename: "ShapenavNavigationNavigation_linksLink";
|
|
3331
|
+
display?: string | undefined | null;
|
|
3332
|
+
href?: string | undefined | null;
|
|
3333
|
+
};
|
|
3334
|
+
["ShapenavNavigationNavigation_links"]: {
|
|
3335
|
+
__typename: "ShapenavNavigationNavigation_links";
|
|
3336
|
+
link?: Array<GraphQLTypes["ShapenavNavigationNavigation_linksLink"] | undefined | null> | undefined | null;
|
|
3337
|
+
};
|
|
3338
|
+
["ShapenavNavigation"]: {
|
|
3339
|
+
__typename: "ShapenavNavigation";
|
|
3340
|
+
logo?: string | undefined | null;
|
|
3341
|
+
navigation_links?: GraphQLTypes["ShapenavNavigationNavigation_links"] | undefined | null;
|
|
3342
|
+
};
|
|
3343
|
+
["Shapenav"]: {
|
|
3344
|
+
__typename: "Shapenav";
|
|
3345
|
+
navigation?: GraphQLTypes["ShapenavNavigation"] | undefined | null;
|
|
3346
|
+
_id: string;
|
|
3347
|
+
createdAt?: number | undefined | null;
|
|
3348
|
+
updatedAt?: number | undefined | null;
|
|
3349
|
+
};
|
|
3350
|
+
["ShapenewshapeBackgroundContent"]: {
|
|
3351
|
+
__typename: "ShapenewshapeBackgroundContent";
|
|
3352
|
+
badge?: string | undefined | null;
|
|
3353
|
+
headline?: string | undefined | null;
|
|
3354
|
+
subheadline?: string | undefined | null;
|
|
3355
|
+
cta_label?: string | undefined | null;
|
|
3356
|
+
cta_href?: string | undefined | null;
|
|
3357
|
+
};
|
|
3358
|
+
["ShapenewshapeBackground"]: {
|
|
3359
|
+
__typename: "ShapenewshapeBackground";
|
|
3360
|
+
overlay_gradient?: boolean | undefined | null;
|
|
3361
|
+
content?: GraphQLTypes["ShapenewshapeBackgroundContent"] | undefined | null;
|
|
3362
|
+
hero_image?: GraphQLTypes["ImageField"] | undefined | null;
|
|
3363
|
+
};
|
|
3364
|
+
["Shapenewshape"]: {
|
|
3365
|
+
__typename: "Shapenewshape";
|
|
3366
|
+
background?: GraphQLTypes["ShapenewshapeBackground"] | undefined | null;
|
|
3367
|
+
_id: string;
|
|
3368
|
+
createdAt?: number | undefined | null;
|
|
3369
|
+
updatedAt?: number | undefined | null;
|
|
3370
|
+
};
|
|
3371
|
+
["Shapepricing_tablePricing_sectionHeader_wrapper"]: {
|
|
3372
|
+
__typename: "Shapepricing_tablePricing_sectionHeader_wrapper";
|
|
3373
|
+
title?: string | undefined | null;
|
|
3374
|
+
description?: string | undefined | null;
|
|
3375
|
+
};
|
|
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;
|
|
3381
|
+
};
|
|
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;
|
|
3387
|
+
};
|
|
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;
|
|
3392
|
+
};
|
|
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;
|
|
3397
|
+
};
|
|
3398
|
+
["Shapepricing_table"]: {
|
|
3399
|
+
__typename: "Shapepricing_table";
|
|
3400
|
+
pricing_section?: GraphQLTypes["Shapepricing_tablePricing_section"] | undefined | null;
|
|
3401
|
+
_id: string;
|
|
3402
|
+
createdAt?: number | undefined | null;
|
|
3403
|
+
updatedAt?: number | undefined | null;
|
|
3404
|
+
};
|
|
3405
|
+
["Shapepricingv1Pricing_sectionHeader_wrapper"]: {
|
|
3406
|
+
__typename: "Shapepricingv1Pricing_sectionHeader_wrapper";
|
|
3407
|
+
title?: string | undefined | null;
|
|
3408
|
+
description?: string | undefined | null;
|
|
3409
|
+
};
|
|
3410
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"]: {
|
|
3411
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list";
|
|
3412
|
+
feature?: Array<string | undefined | null> | undefined | null;
|
|
3413
|
+
};
|
|
3414
|
+
["Shapepricingv1Pricing_sectionPlans_gridFree_plan"]: {
|
|
3415
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_gridFree_plan";
|
|
3416
|
+
plan_name?: string | undefined | null;
|
|
3417
|
+
price?: string | undefined | null;
|
|
3418
|
+
plan_description?: string | undefined | null;
|
|
3419
|
+
feature_list?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"] | undefined | null;
|
|
3420
|
+
cta?: string | undefined | null;
|
|
3421
|
+
};
|
|
3422
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: {
|
|
3423
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list";
|
|
3424
|
+
feature?: Array<string | undefined | null> | undefined | null;
|
|
3425
|
+
};
|
|
3426
|
+
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: {
|
|
3427
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_gridPaid_plan";
|
|
3428
|
+
plan_name?: string | undefined | null;
|
|
3429
|
+
price?: string | undefined | null;
|
|
3430
|
+
plan_description?: string | undefined | null;
|
|
3431
|
+
feature_list?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"] | undefined | null;
|
|
3432
|
+
cta?: string | undefined | null;
|
|
3433
|
+
};
|
|
3434
|
+
["Shapepricingv1Pricing_sectionPlans_grid"]: {
|
|
3435
|
+
__typename: "Shapepricingv1Pricing_sectionPlans_grid";
|
|
3436
|
+
free_plan?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"] | undefined | null;
|
|
3437
|
+
paid_plan?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"] | undefined | null;
|
|
3438
|
+
};
|
|
3439
|
+
["Shapepricingv1Pricing_section"]: {
|
|
3440
|
+
__typename: "Shapepricingv1Pricing_section";
|
|
3441
|
+
header_wrapper?: GraphQLTypes["Shapepricingv1Pricing_sectionHeader_wrapper"] | undefined | null;
|
|
3442
|
+
plans_grid?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_grid"] | undefined | null;
|
|
3443
|
+
};
|
|
3444
|
+
["Shapepricingv1"]: {
|
|
3445
|
+
__typename: "Shapepricingv1";
|
|
3446
|
+
pricing_section?: GraphQLTypes["Shapepricingv1Pricing_section"] | undefined | null;
|
|
3447
|
+
_id: string;
|
|
3448
|
+
createdAt?: number | undefined | null;
|
|
3449
|
+
updatedAt?: number | undefined | null;
|
|
3450
|
+
};
|
|
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;
|
|
3465
|
+
};
|
|
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;
|
|
3496
|
+
_id: string;
|
|
3497
|
+
createdAt?: number | undefined | null;
|
|
3498
|
+
updatedAt?: number | undefined | null;
|
|
3499
|
+
};
|
|
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;
|
|
3506
|
+
};
|
|
3507
|
+
["Shapeusage"]: {
|
|
3508
|
+
__typename: "Shapeusage";
|
|
3509
|
+
main?: GraphQLTypes["ShapeusageMain"] | undefined | null;
|
|
1481
3510
|
_id: string;
|
|
1482
3511
|
createdAt?: number | undefined | null;
|
|
1483
3512
|
updatedAt?: number | undefined | null;
|
|
1484
3513
|
};
|
|
1485
3514
|
["RootParamsInput"]: {
|
|
1486
3515
|
_version?: string | undefined | null;
|
|
3516
|
+
locale?: string | undefined | null;
|
|
1487
3517
|
};
|
|
1488
3518
|
["RootParamsEnum"]: RootParamsEnum;
|
|
1489
|
-
["
|
|
1490
|
-
slug?: GraphQLTypes["Sort"] | undefined | null;
|
|
1491
|
-
createdAt?: GraphQLTypes["Sort"] | undefined | null;
|
|
1492
|
-
updatedAt?: GraphQLTypes["Sort"] | undefined | null;
|
|
1493
|
-
};
|
|
1494
|
-
["postSortInput"]: {
|
|
3519
|
+
["docsSortInput"]: {
|
|
1495
3520
|
slug?: GraphQLTypes["Sort"] | undefined | null;
|
|
1496
3521
|
createdAt?: GraphQLTypes["Sort"] | undefined | null;
|
|
1497
3522
|
updatedAt?: GraphQLTypes["Sort"] | undefined | null;
|
|
1498
3523
|
};
|
|
1499
|
-
["
|
|
1500
|
-
slug?: GraphQLTypes["FilterInputString"] | undefined | null;
|
|
1501
|
-
};
|
|
1502
|
-
["postFilterInput"]: {
|
|
3524
|
+
["docsFilterInput"]: {
|
|
1503
3525
|
slug?: GraphQLTypes["FilterInputString"] | undefined | null;
|
|
1504
3526
|
};
|
|
1505
3527
|
["ID"]: "scalar" & {
|
|
@@ -1528,6 +3550,12 @@ export declare enum ConditionType {
|
|
|
1528
3550
|
SET = "SET",
|
|
1529
3551
|
PATH = "PATH"
|
|
1530
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
|
+
}
|
|
1531
3559
|
export declare enum FormFieldType {
|
|
1532
3560
|
STRING = "STRING",
|
|
1533
3561
|
TEXT = "TEXT",
|
|
@@ -1541,8 +3569,11 @@ export declare enum FormFieldType {
|
|
|
1541
3569
|
ARRAY_STEP = "ARRAY_STEP",
|
|
1542
3570
|
PORTAL = "PORTAL",
|
|
1543
3571
|
ROUTE = "ROUTE",
|
|
3572
|
+
BUTTON = "BUTTON",
|
|
1544
3573
|
SUBMIT = "SUBMIT",
|
|
1545
|
-
NUMBER = "NUMBER"
|
|
3574
|
+
NUMBER = "NUMBER",
|
|
3575
|
+
VARIABLE = "VARIABLE",
|
|
3576
|
+
DISPLAY = "DISPLAY"
|
|
1546
3577
|
}
|
|
1547
3578
|
export declare enum CMSType {
|
|
1548
3579
|
STRING = "STRING",
|
|
@@ -1563,14 +3594,33 @@ export declare enum CMSType {
|
|
|
1563
3594
|
OBJECT_TABS = "OBJECT_TABS"
|
|
1564
3595
|
}
|
|
1565
3596
|
export declare enum ModelEnum {
|
|
1566
|
-
|
|
1567
|
-
|
|
3597
|
+
docs = "docs"
|
|
3598
|
+
}
|
|
3599
|
+
export declare enum ViewEnum {
|
|
3600
|
+
account = "account",
|
|
3601
|
+
features = "features",
|
|
3602
|
+
homepage = "homepage",
|
|
3603
|
+
howitworks = "howitworks",
|
|
3604
|
+
pricing = "pricing"
|
|
1568
3605
|
}
|
|
1569
3606
|
export declare enum ShapeEnum {
|
|
1570
|
-
|
|
3607
|
+
docs_content = "docs_content",
|
|
3608
|
+
docs_nav = "docs_nav",
|
|
3609
|
+
featurepresentation = "featurepresentation",
|
|
3610
|
+
foot = "foot",
|
|
3611
|
+
hero = "hero",
|
|
3612
|
+
herox = "herox",
|
|
3613
|
+
lista_projektow = "lista_projektow",
|
|
3614
|
+
nav = "nav",
|
|
3615
|
+
newshape = "newshape",
|
|
3616
|
+
pricing_table = "pricing_table",
|
|
3617
|
+
pricingv1 = "pricingv1",
|
|
3618
|
+
profile_info = "profile_info",
|
|
3619
|
+
usage = "usage"
|
|
1571
3620
|
}
|
|
1572
3621
|
export declare enum RootParamsEnum {
|
|
1573
|
-
_version = "_version"
|
|
3622
|
+
_version = "_version",
|
|
3623
|
+
locale = "locale"
|
|
1574
3624
|
}
|
|
1575
3625
|
type ZEUS_VARIABLES = {
|
|
1576
3626
|
["ObjectId"]: ValueTypes["ObjectId"];
|
|
@@ -1583,18 +3633,19 @@ type ZEUS_VARIABLES = {
|
|
|
1583
3633
|
["ConditionSetOperator"]: ValueTypes["ConditionSetOperator"];
|
|
1584
3634
|
["ConditionOperator"]: ValueTypes["ConditionOperator"];
|
|
1585
3635
|
["ConditionType"]: ValueTypes["ConditionType"];
|
|
3636
|
+
["ActionType"]: ValueTypes["ActionType"];
|
|
1586
3637
|
["PageInput"]: ValueTypes["PageInput"];
|
|
1587
3638
|
["FilterInputString"]: ValueTypes["FilterInputString"];
|
|
3639
|
+
["RootParamsAdminType"]: ValueTypes["RootParamsAdminType"];
|
|
1588
3640
|
["FormFieldType"]: ValueTypes["FormFieldType"];
|
|
1589
3641
|
["CMSType"]: ValueTypes["CMSType"];
|
|
1590
3642
|
["ModelEnum"]: ValueTypes["ModelEnum"];
|
|
3643
|
+
["ViewEnum"]: ValueTypes["ViewEnum"];
|
|
1591
3644
|
["ShapeEnum"]: ValueTypes["ShapeEnum"];
|
|
1592
3645
|
["RootParamsInput"]: ValueTypes["RootParamsInput"];
|
|
1593
3646
|
["RootParamsEnum"]: ValueTypes["RootParamsEnum"];
|
|
1594
|
-
["
|
|
1595
|
-
["
|
|
1596
|
-
["demoFilterInput"]: ValueTypes["demoFilterInput"];
|
|
1597
|
-
["postFilterInput"]: ValueTypes["postFilterInput"];
|
|
3647
|
+
["docsSortInput"]: ValueTypes["docsSortInput"];
|
|
3648
|
+
["docsFilterInput"]: ValueTypes["docsFilterInput"];
|
|
1598
3649
|
["ID"]: ValueTypes["ID"];
|
|
1599
3650
|
};
|
|
1600
3651
|
export {};
|