@husar.ai/cli 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/zeus/const.js +97 -3
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +378 -13
- package/dist/zeus/index.js +10 -11
- package/dist/zeus/index.js.map +1 -1
- package/package.json +2 -2
- package/src/zeus/const.ts +97 -3
- package/src/zeus/index.ts +350 -19
package/dist/zeus/index.d.ts
CHANGED
|
@@ -250,6 +250,10 @@ export type ScalarCoders = {
|
|
|
250
250
|
Timestamp?: ScalarResolver;
|
|
251
251
|
ModelNavigationCompiled?: ScalarResolver;
|
|
252
252
|
BakedIpsumData?: ScalarResolver;
|
|
253
|
+
ShapeAsScalar?: ScalarResolver;
|
|
254
|
+
ModelAsScalar?: ScalarResolver;
|
|
255
|
+
ViewAsScalar?: ScalarResolver;
|
|
256
|
+
FormAsScalar?: ScalarResolver;
|
|
253
257
|
JSON?: ScalarResolver;
|
|
254
258
|
RootParamsAdminType?: ScalarResolver;
|
|
255
259
|
ID?: ScalarResolver;
|
|
@@ -261,6 +265,10 @@ export type ValueTypes = {
|
|
|
261
265
|
["Timestamp"]: unknown;
|
|
262
266
|
["ModelNavigationCompiled"]: unknown;
|
|
263
267
|
["BakedIpsumData"]: unknown;
|
|
268
|
+
["ShapeAsScalar"]: unknown;
|
|
269
|
+
["ModelAsScalar"]: unknown;
|
|
270
|
+
["ViewAsScalar"]: unknown;
|
|
271
|
+
["FormAsScalar"]: unknown;
|
|
264
272
|
["JSON"]: unknown;
|
|
265
273
|
["TailwindConfiguration"]: AliasType<{
|
|
266
274
|
content?: boolean | `@${string}`;
|
|
@@ -432,6 +440,8 @@ export type ValueTypes = {
|
|
|
432
440
|
["FormTextField"]: AliasType<{
|
|
433
441
|
label?: boolean | `@${string}`;
|
|
434
442
|
placeholder?: boolean | `@${string}`;
|
|
443
|
+
type?: boolean | `@${string}`;
|
|
444
|
+
defaultValue?: boolean | `@${string}`;
|
|
435
445
|
__typename?: boolean | `@${string}`;
|
|
436
446
|
}>;
|
|
437
447
|
["FormBooleanField"]: AliasType<{
|
|
@@ -441,6 +451,7 @@ export type ValueTypes = {
|
|
|
441
451
|
["FormContentField"]: AliasType<{
|
|
442
452
|
label?: boolean | `@${string}`;
|
|
443
453
|
placeholder?: boolean | `@${string}`;
|
|
454
|
+
content?: boolean | `@${string}`;
|
|
444
455
|
__typename?: boolean | `@${string}`;
|
|
445
456
|
}>;
|
|
446
457
|
["FormRadioField"]: AliasType<{
|
|
@@ -531,12 +542,20 @@ export type ValueTypes = {
|
|
|
531
542
|
slug: string | Variable<any, string>;
|
|
532
543
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
533
544
|
}, ValueTypes["docs"]];
|
|
545
|
+
oneAsScalardocsBySlug?: [{
|
|
546
|
+
slug: string | Variable<any, string>;
|
|
547
|
+
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
548
|
+
}, boolean | `@${string}`];
|
|
534
549
|
variantsdocsBySlug?: [{
|
|
535
550
|
slug: string | Variable<any, string>;
|
|
536
551
|
}, ValueTypes["docs"]];
|
|
537
552
|
fieldSetdocs?: boolean | `@${string}`;
|
|
538
553
|
modeldocs?: boolean | `@${string}`;
|
|
539
554
|
previewFieldsdocs?: boolean | `@${string}`;
|
|
555
|
+
fieldSetShapecloud_sidebar?: boolean | `@${string}`;
|
|
556
|
+
modelShapecloud_sidebar?: boolean | `@${string}`;
|
|
557
|
+
previewFieldsShapecloud_sidebar?: boolean | `@${string}`;
|
|
558
|
+
oneShapecloud_sidebar?: ValueTypes["Shapecloud_sidebar"];
|
|
540
559
|
fieldSetShapedocs_content?: boolean | `@${string}`;
|
|
541
560
|
modelShapedocs_content?: boolean | `@${string}`;
|
|
542
561
|
previewFieldsShapedocs_content?: boolean | `@${string}`;
|
|
@@ -585,6 +604,10 @@ export type ValueTypes = {
|
|
|
585
604
|
modelShapeprofile_info?: boolean | `@${string}`;
|
|
586
605
|
previewFieldsShapeprofile_info?: boolean | `@${string}`;
|
|
587
606
|
oneShapeprofile_info?: ValueTypes["Shapeprofile_info"];
|
|
607
|
+
fieldSetShapesupport?: boolean | `@${string}`;
|
|
608
|
+
modelShapesupport?: boolean | `@${string}`;
|
|
609
|
+
previewFieldsShapesupport?: boolean | `@${string}`;
|
|
610
|
+
oneShapesupport?: ValueTypes["Shapesupport"];
|
|
588
611
|
fieldSetShapeusage?: boolean | `@${string}`;
|
|
589
612
|
modelShapeusage?: boolean | `@${string}`;
|
|
590
613
|
previewFieldsShapeusage?: boolean | `@${string}`;
|
|
@@ -596,6 +619,9 @@ export type ValueTypes = {
|
|
|
596
619
|
oneViewaccount?: [{
|
|
597
620
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
598
621
|
}, ValueTypes["Viewaccount"]];
|
|
622
|
+
oneAsScalarViewaccount?: [{
|
|
623
|
+
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
624
|
+
}, boolean | `@${string}`];
|
|
599
625
|
variantsViewfeatures?: ValueTypes["Viewfeatures"];
|
|
600
626
|
fieldSetViewfeatures?: boolean | `@${string}`;
|
|
601
627
|
modelViewfeatures?: boolean | `@${string}`;
|
|
@@ -603,6 +629,9 @@ export type ValueTypes = {
|
|
|
603
629
|
oneViewfeatures?: [{
|
|
604
630
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
605
631
|
}, ValueTypes["Viewfeatures"]];
|
|
632
|
+
oneAsScalarViewfeatures?: [{
|
|
633
|
+
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
634
|
+
}, boolean | `@${string}`];
|
|
606
635
|
variantsViewhomepage?: ValueTypes["Viewhomepage"];
|
|
607
636
|
fieldSetViewhomepage?: boolean | `@${string}`;
|
|
608
637
|
modelViewhomepage?: boolean | `@${string}`;
|
|
@@ -610,6 +639,9 @@ export type ValueTypes = {
|
|
|
610
639
|
oneViewhomepage?: [{
|
|
611
640
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
612
641
|
}, ValueTypes["Viewhomepage"]];
|
|
642
|
+
oneAsScalarViewhomepage?: [{
|
|
643
|
+
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
644
|
+
}, boolean | `@${string}`];
|
|
613
645
|
variantsViewhowitworks?: ValueTypes["Viewhowitworks"];
|
|
614
646
|
fieldSetViewhowitworks?: boolean | `@${string}`;
|
|
615
647
|
modelViewhowitworks?: boolean | `@${string}`;
|
|
@@ -617,6 +649,9 @@ export type ValueTypes = {
|
|
|
617
649
|
oneViewhowitworks?: [{
|
|
618
650
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
619
651
|
}, ValueTypes["Viewhowitworks"]];
|
|
652
|
+
oneAsScalarViewhowitworks?: [{
|
|
653
|
+
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
654
|
+
}, boolean | `@${string}`];
|
|
620
655
|
variantsViewpricing?: ValueTypes["Viewpricing"];
|
|
621
656
|
fieldSetViewpricing?: boolean | `@${string}`;
|
|
622
657
|
modelViewpricing?: boolean | `@${string}`;
|
|
@@ -624,6 +659,9 @@ export type ValueTypes = {
|
|
|
624
659
|
oneViewpricing?: [{
|
|
625
660
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
626
661
|
}, ValueTypes["Viewpricing"]];
|
|
662
|
+
oneAsScalarViewpricing?: [{
|
|
663
|
+
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
664
|
+
}, boolean | `@${string}`];
|
|
627
665
|
__typename?: boolean | `@${string}`;
|
|
628
666
|
}>;
|
|
629
667
|
["RootParamsType"]: AliasType<{
|
|
@@ -740,6 +778,41 @@ export type ValueTypes = {
|
|
|
740
778
|
json_ld?: boolean | `@${string}`;
|
|
741
779
|
__typename?: boolean | `@${string}`;
|
|
742
780
|
}>;
|
|
781
|
+
["Shapecloud_sidebarSidebarMenuCategoryPage"]: AliasType<{
|
|
782
|
+
name?: boolean | `@${string}`;
|
|
783
|
+
link?: boolean | `@${string}`;
|
|
784
|
+
__typename?: boolean | `@${string}`;
|
|
785
|
+
}>;
|
|
786
|
+
["Shapecloud_sidebarSidebarMenuCategory"]: AliasType<{
|
|
787
|
+
page?: ValueTypes["Shapecloud_sidebarSidebarMenuCategoryPage"];
|
|
788
|
+
__typename?: boolean | `@${string}`;
|
|
789
|
+
}>;
|
|
790
|
+
["Shapecloud_sidebarSidebarMenu"]: AliasType<{
|
|
791
|
+
logo?: ValueTypes["ImageField"];
|
|
792
|
+
category?: ValueTypes["Shapecloud_sidebarSidebarMenuCategory"];
|
|
793
|
+
__typename?: boolean | `@${string}`;
|
|
794
|
+
}>;
|
|
795
|
+
["Shapecloud_sidebarSidebarBottom_menuLogout"]: AliasType<{
|
|
796
|
+
name?: boolean | `@${string}`;
|
|
797
|
+
link?: boolean | `@${string}`;
|
|
798
|
+
__typename?: boolean | `@${string}`;
|
|
799
|
+
}>;
|
|
800
|
+
["Shapecloud_sidebarSidebarBottom_menu"]: AliasType<{
|
|
801
|
+
logout?: ValueTypes["Shapecloud_sidebarSidebarBottom_menuLogout"];
|
|
802
|
+
__typename?: boolean | `@${string}`;
|
|
803
|
+
}>;
|
|
804
|
+
["Shapecloud_sidebarSidebar"]: AliasType<{
|
|
805
|
+
menu?: ValueTypes["Shapecloud_sidebarSidebarMenu"];
|
|
806
|
+
bottom_menu?: ValueTypes["Shapecloud_sidebarSidebarBottom_menu"];
|
|
807
|
+
__typename?: boolean | `@${string}`;
|
|
808
|
+
}>;
|
|
809
|
+
["Shapecloud_sidebar"]: AliasType<{
|
|
810
|
+
sidebar?: ValueTypes["Shapecloud_sidebarSidebar"];
|
|
811
|
+
_id?: boolean | `@${string}`;
|
|
812
|
+
createdAt?: boolean | `@${string}`;
|
|
813
|
+
updatedAt?: boolean | `@${string}`;
|
|
814
|
+
__typename?: boolean | `@${string}`;
|
|
815
|
+
}>;
|
|
743
816
|
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: AliasType<{
|
|
744
817
|
content?: boolean | `@${string}`;
|
|
745
818
|
__typename?: boolean | `@${string}`;
|
|
@@ -1077,6 +1150,34 @@ export type ValueTypes = {
|
|
|
1077
1150
|
updatedAt?: boolean | `@${string}`;
|
|
1078
1151
|
__typename?: boolean | `@${string}`;
|
|
1079
1152
|
}>;
|
|
1153
|
+
["ShapesupportSectionHeader_wrapper"]: AliasType<{
|
|
1154
|
+
title?: boolean | `@${string}`;
|
|
1155
|
+
description?: boolean | `@${string}`;
|
|
1156
|
+
__typename?: boolean | `@${string}`;
|
|
1157
|
+
}>;
|
|
1158
|
+
["ShapesupportSectionFeatures_gridFeature_item"]: AliasType<{
|
|
1159
|
+
image?: ValueTypes["ImageField"];
|
|
1160
|
+
title?: boolean | `@${string}`;
|
|
1161
|
+
text?: boolean | `@${string}`;
|
|
1162
|
+
cta?: boolean | `@${string}`;
|
|
1163
|
+
__typename?: boolean | `@${string}`;
|
|
1164
|
+
}>;
|
|
1165
|
+
["ShapesupportSectionFeatures_grid"]: AliasType<{
|
|
1166
|
+
feature_item?: ValueTypes["ShapesupportSectionFeatures_gridFeature_item"];
|
|
1167
|
+
__typename?: boolean | `@${string}`;
|
|
1168
|
+
}>;
|
|
1169
|
+
["ShapesupportSection"]: AliasType<{
|
|
1170
|
+
header_wrapper?: ValueTypes["ShapesupportSectionHeader_wrapper"];
|
|
1171
|
+
features_grid?: ValueTypes["ShapesupportSectionFeatures_grid"];
|
|
1172
|
+
__typename?: boolean | `@${string}`;
|
|
1173
|
+
}>;
|
|
1174
|
+
["Shapesupport"]: AliasType<{
|
|
1175
|
+
section?: ValueTypes["ShapesupportSection"];
|
|
1176
|
+
_id?: boolean | `@${string}`;
|
|
1177
|
+
createdAt?: boolean | `@${string}`;
|
|
1178
|
+
updatedAt?: boolean | `@${string}`;
|
|
1179
|
+
__typename?: boolean | `@${string}`;
|
|
1180
|
+
}>;
|
|
1080
1181
|
["ShapeusageMain"]: AliasType<{
|
|
1081
1182
|
title?: boolean | `@${string}`;
|
|
1082
1183
|
subtitle?: boolean | `@${string}`;
|
|
@@ -1112,6 +1213,10 @@ export type ResolverInputTypes = {
|
|
|
1112
1213
|
["Timestamp"]: unknown;
|
|
1113
1214
|
["ModelNavigationCompiled"]: unknown;
|
|
1114
1215
|
["BakedIpsumData"]: unknown;
|
|
1216
|
+
["ShapeAsScalar"]: unknown;
|
|
1217
|
+
["ModelAsScalar"]: unknown;
|
|
1218
|
+
["ViewAsScalar"]: unknown;
|
|
1219
|
+
["FormAsScalar"]: unknown;
|
|
1115
1220
|
["JSON"]: unknown;
|
|
1116
1221
|
["TailwindConfiguration"]: AliasType<{
|
|
1117
1222
|
content?: boolean | `@${string}`;
|
|
@@ -1283,6 +1388,8 @@ export type ResolverInputTypes = {
|
|
|
1283
1388
|
["FormTextField"]: AliasType<{
|
|
1284
1389
|
label?: boolean | `@${string}`;
|
|
1285
1390
|
placeholder?: boolean | `@${string}`;
|
|
1391
|
+
type?: boolean | `@${string}`;
|
|
1392
|
+
defaultValue?: boolean | `@${string}`;
|
|
1286
1393
|
__typename?: boolean | `@${string}`;
|
|
1287
1394
|
}>;
|
|
1288
1395
|
["FormBooleanField"]: AliasType<{
|
|
@@ -1292,6 +1399,7 @@ export type ResolverInputTypes = {
|
|
|
1292
1399
|
["FormContentField"]: AliasType<{
|
|
1293
1400
|
label?: boolean | `@${string}`;
|
|
1294
1401
|
placeholder?: boolean | `@${string}`;
|
|
1402
|
+
content?: boolean | `@${string}`;
|
|
1295
1403
|
__typename?: boolean | `@${string}`;
|
|
1296
1404
|
}>;
|
|
1297
1405
|
["FormRadioField"]: AliasType<{
|
|
@@ -1382,12 +1490,20 @@ export type ResolverInputTypes = {
|
|
|
1382
1490
|
slug: string;
|
|
1383
1491
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1384
1492
|
}, ResolverInputTypes["docs"]];
|
|
1493
|
+
oneAsScalardocsBySlug?: [{
|
|
1494
|
+
slug: string;
|
|
1495
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1496
|
+
}, boolean | `@${string}`];
|
|
1385
1497
|
variantsdocsBySlug?: [{
|
|
1386
1498
|
slug: string;
|
|
1387
1499
|
}, ResolverInputTypes["docs"]];
|
|
1388
1500
|
fieldSetdocs?: boolean | `@${string}`;
|
|
1389
1501
|
modeldocs?: boolean | `@${string}`;
|
|
1390
1502
|
previewFieldsdocs?: boolean | `@${string}`;
|
|
1503
|
+
fieldSetShapecloud_sidebar?: boolean | `@${string}`;
|
|
1504
|
+
modelShapecloud_sidebar?: boolean | `@${string}`;
|
|
1505
|
+
previewFieldsShapecloud_sidebar?: boolean | `@${string}`;
|
|
1506
|
+
oneShapecloud_sidebar?: ResolverInputTypes["Shapecloud_sidebar"];
|
|
1391
1507
|
fieldSetShapedocs_content?: boolean | `@${string}`;
|
|
1392
1508
|
modelShapedocs_content?: boolean | `@${string}`;
|
|
1393
1509
|
previewFieldsShapedocs_content?: boolean | `@${string}`;
|
|
@@ -1436,6 +1552,10 @@ export type ResolverInputTypes = {
|
|
|
1436
1552
|
modelShapeprofile_info?: boolean | `@${string}`;
|
|
1437
1553
|
previewFieldsShapeprofile_info?: boolean | `@${string}`;
|
|
1438
1554
|
oneShapeprofile_info?: ResolverInputTypes["Shapeprofile_info"];
|
|
1555
|
+
fieldSetShapesupport?: boolean | `@${string}`;
|
|
1556
|
+
modelShapesupport?: boolean | `@${string}`;
|
|
1557
|
+
previewFieldsShapesupport?: boolean | `@${string}`;
|
|
1558
|
+
oneShapesupport?: ResolverInputTypes["Shapesupport"];
|
|
1439
1559
|
fieldSetShapeusage?: boolean | `@${string}`;
|
|
1440
1560
|
modelShapeusage?: boolean | `@${string}`;
|
|
1441
1561
|
previewFieldsShapeusage?: boolean | `@${string}`;
|
|
@@ -1447,6 +1567,9 @@ export type ResolverInputTypes = {
|
|
|
1447
1567
|
oneViewaccount?: [{
|
|
1448
1568
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1449
1569
|
}, ResolverInputTypes["Viewaccount"]];
|
|
1570
|
+
oneAsScalarViewaccount?: [{
|
|
1571
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1572
|
+
}, boolean | `@${string}`];
|
|
1450
1573
|
variantsViewfeatures?: ResolverInputTypes["Viewfeatures"];
|
|
1451
1574
|
fieldSetViewfeatures?: boolean | `@${string}`;
|
|
1452
1575
|
modelViewfeatures?: boolean | `@${string}`;
|
|
@@ -1454,6 +1577,9 @@ export type ResolverInputTypes = {
|
|
|
1454
1577
|
oneViewfeatures?: [{
|
|
1455
1578
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1456
1579
|
}, ResolverInputTypes["Viewfeatures"]];
|
|
1580
|
+
oneAsScalarViewfeatures?: [{
|
|
1581
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1582
|
+
}, boolean | `@${string}`];
|
|
1457
1583
|
variantsViewhomepage?: ResolverInputTypes["Viewhomepage"];
|
|
1458
1584
|
fieldSetViewhomepage?: boolean | `@${string}`;
|
|
1459
1585
|
modelViewhomepage?: boolean | `@${string}`;
|
|
@@ -1461,6 +1587,9 @@ export type ResolverInputTypes = {
|
|
|
1461
1587
|
oneViewhomepage?: [{
|
|
1462
1588
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1463
1589
|
}, ResolverInputTypes["Viewhomepage"]];
|
|
1590
|
+
oneAsScalarViewhomepage?: [{
|
|
1591
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1592
|
+
}, boolean | `@${string}`];
|
|
1464
1593
|
variantsViewhowitworks?: ResolverInputTypes["Viewhowitworks"];
|
|
1465
1594
|
fieldSetViewhowitworks?: boolean | `@${string}`;
|
|
1466
1595
|
modelViewhowitworks?: boolean | `@${string}`;
|
|
@@ -1468,6 +1597,9 @@ export type ResolverInputTypes = {
|
|
|
1468
1597
|
oneViewhowitworks?: [{
|
|
1469
1598
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1470
1599
|
}, ResolverInputTypes["Viewhowitworks"]];
|
|
1600
|
+
oneAsScalarViewhowitworks?: [{
|
|
1601
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1602
|
+
}, boolean | `@${string}`];
|
|
1471
1603
|
variantsViewpricing?: ResolverInputTypes["Viewpricing"];
|
|
1472
1604
|
fieldSetViewpricing?: boolean | `@${string}`;
|
|
1473
1605
|
modelViewpricing?: boolean | `@${string}`;
|
|
@@ -1475,6 +1607,9 @@ export type ResolverInputTypes = {
|
|
|
1475
1607
|
oneViewpricing?: [{
|
|
1476
1608
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1477
1609
|
}, ResolverInputTypes["Viewpricing"]];
|
|
1610
|
+
oneAsScalarViewpricing?: [{
|
|
1611
|
+
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
1612
|
+
}, boolean | `@${string}`];
|
|
1478
1613
|
__typename?: boolean | `@${string}`;
|
|
1479
1614
|
}>;
|
|
1480
1615
|
["RootParamsType"]: AliasType<{
|
|
@@ -1591,6 +1726,41 @@ export type ResolverInputTypes = {
|
|
|
1591
1726
|
json_ld?: boolean | `@${string}`;
|
|
1592
1727
|
__typename?: boolean | `@${string}`;
|
|
1593
1728
|
}>;
|
|
1729
|
+
["Shapecloud_sidebarSidebarMenuCategoryPage"]: AliasType<{
|
|
1730
|
+
name?: boolean | `@${string}`;
|
|
1731
|
+
link?: boolean | `@${string}`;
|
|
1732
|
+
__typename?: boolean | `@${string}`;
|
|
1733
|
+
}>;
|
|
1734
|
+
["Shapecloud_sidebarSidebarMenuCategory"]: AliasType<{
|
|
1735
|
+
page?: ResolverInputTypes["Shapecloud_sidebarSidebarMenuCategoryPage"];
|
|
1736
|
+
__typename?: boolean | `@${string}`;
|
|
1737
|
+
}>;
|
|
1738
|
+
["Shapecloud_sidebarSidebarMenu"]: AliasType<{
|
|
1739
|
+
logo?: ResolverInputTypes["ImageField"];
|
|
1740
|
+
category?: ResolverInputTypes["Shapecloud_sidebarSidebarMenuCategory"];
|
|
1741
|
+
__typename?: boolean | `@${string}`;
|
|
1742
|
+
}>;
|
|
1743
|
+
["Shapecloud_sidebarSidebarBottom_menuLogout"]: AliasType<{
|
|
1744
|
+
name?: boolean | `@${string}`;
|
|
1745
|
+
link?: boolean | `@${string}`;
|
|
1746
|
+
__typename?: boolean | `@${string}`;
|
|
1747
|
+
}>;
|
|
1748
|
+
["Shapecloud_sidebarSidebarBottom_menu"]: AliasType<{
|
|
1749
|
+
logout?: ResolverInputTypes["Shapecloud_sidebarSidebarBottom_menuLogout"];
|
|
1750
|
+
__typename?: boolean | `@${string}`;
|
|
1751
|
+
}>;
|
|
1752
|
+
["Shapecloud_sidebarSidebar"]: AliasType<{
|
|
1753
|
+
menu?: ResolverInputTypes["Shapecloud_sidebarSidebarMenu"];
|
|
1754
|
+
bottom_menu?: ResolverInputTypes["Shapecloud_sidebarSidebarBottom_menu"];
|
|
1755
|
+
__typename?: boolean | `@${string}`;
|
|
1756
|
+
}>;
|
|
1757
|
+
["Shapecloud_sidebar"]: AliasType<{
|
|
1758
|
+
sidebar?: ResolverInputTypes["Shapecloud_sidebarSidebar"];
|
|
1759
|
+
_id?: boolean | `@${string}`;
|
|
1760
|
+
createdAt?: boolean | `@${string}`;
|
|
1761
|
+
updatedAt?: boolean | `@${string}`;
|
|
1762
|
+
__typename?: boolean | `@${string}`;
|
|
1763
|
+
}>;
|
|
1594
1764
|
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: AliasType<{
|
|
1595
1765
|
content?: boolean | `@${string}`;
|
|
1596
1766
|
__typename?: boolean | `@${string}`;
|
|
@@ -1928,6 +2098,34 @@ export type ResolverInputTypes = {
|
|
|
1928
2098
|
updatedAt?: boolean | `@${string}`;
|
|
1929
2099
|
__typename?: boolean | `@${string}`;
|
|
1930
2100
|
}>;
|
|
2101
|
+
["ShapesupportSectionHeader_wrapper"]: AliasType<{
|
|
2102
|
+
title?: boolean | `@${string}`;
|
|
2103
|
+
description?: boolean | `@${string}`;
|
|
2104
|
+
__typename?: boolean | `@${string}`;
|
|
2105
|
+
}>;
|
|
2106
|
+
["ShapesupportSectionFeatures_gridFeature_item"]: AliasType<{
|
|
2107
|
+
image?: ResolverInputTypes["ImageField"];
|
|
2108
|
+
title?: boolean | `@${string}`;
|
|
2109
|
+
text?: boolean | `@${string}`;
|
|
2110
|
+
cta?: boolean | `@${string}`;
|
|
2111
|
+
__typename?: boolean | `@${string}`;
|
|
2112
|
+
}>;
|
|
2113
|
+
["ShapesupportSectionFeatures_grid"]: AliasType<{
|
|
2114
|
+
feature_item?: ResolverInputTypes["ShapesupportSectionFeatures_gridFeature_item"];
|
|
2115
|
+
__typename?: boolean | `@${string}`;
|
|
2116
|
+
}>;
|
|
2117
|
+
["ShapesupportSection"]: AliasType<{
|
|
2118
|
+
header_wrapper?: ResolverInputTypes["ShapesupportSectionHeader_wrapper"];
|
|
2119
|
+
features_grid?: ResolverInputTypes["ShapesupportSectionFeatures_grid"];
|
|
2120
|
+
__typename?: boolean | `@${string}`;
|
|
2121
|
+
}>;
|
|
2122
|
+
["Shapesupport"]: AliasType<{
|
|
2123
|
+
section?: ResolverInputTypes["ShapesupportSection"];
|
|
2124
|
+
_id?: boolean | `@${string}`;
|
|
2125
|
+
createdAt?: boolean | `@${string}`;
|
|
2126
|
+
updatedAt?: boolean | `@${string}`;
|
|
2127
|
+
__typename?: boolean | `@${string}`;
|
|
2128
|
+
}>;
|
|
1931
2129
|
["ShapeusageMain"]: AliasType<{
|
|
1932
2130
|
title?: boolean | `@${string}`;
|
|
1933
2131
|
subtitle?: boolean | `@${string}`;
|
|
@@ -1968,6 +2166,10 @@ export type ModelTypes = {
|
|
|
1968
2166
|
["Timestamp"]: any;
|
|
1969
2167
|
["ModelNavigationCompiled"]: any;
|
|
1970
2168
|
["BakedIpsumData"]: any;
|
|
2169
|
+
["ShapeAsScalar"]: any;
|
|
2170
|
+
["ModelAsScalar"]: any;
|
|
2171
|
+
["ViewAsScalar"]: any;
|
|
2172
|
+
["FormAsScalar"]: any;
|
|
1971
2173
|
["JSON"]: any;
|
|
1972
2174
|
["TailwindConfiguration"]: {
|
|
1973
2175
|
content: string;
|
|
@@ -2118,6 +2320,8 @@ export type ModelTypes = {
|
|
|
2118
2320
|
["FormTextField"]: {
|
|
2119
2321
|
label?: string | undefined | null;
|
|
2120
2322
|
placeholder?: string | undefined | null;
|
|
2323
|
+
type?: string | undefined | null;
|
|
2324
|
+
defaultValue?: string | undefined | null;
|
|
2121
2325
|
};
|
|
2122
2326
|
["FormBooleanField"]: {
|
|
2123
2327
|
label?: string | undefined | null;
|
|
@@ -2125,6 +2329,7 @@ export type ModelTypes = {
|
|
|
2125
2329
|
["FormContentField"]: {
|
|
2126
2330
|
label?: string | undefined | null;
|
|
2127
2331
|
placeholder?: string | undefined | null;
|
|
2332
|
+
content?: string | undefined | null;
|
|
2128
2333
|
};
|
|
2129
2334
|
["FormRadioField"]: {
|
|
2130
2335
|
label?: string | undefined | null;
|
|
@@ -2190,10 +2395,15 @@ export type ModelTypes = {
|
|
|
2190
2395
|
listForms?: Array<ModelTypes["Form"]> | undefined | null;
|
|
2191
2396
|
listPaginateddocs?: ModelTypes["docs__Connection"] | undefined | null;
|
|
2192
2397
|
onedocsBySlug?: ModelTypes["docs"] | undefined | null;
|
|
2398
|
+
oneAsScalardocsBySlug?: ModelTypes["ModelAsScalar"] | undefined | null;
|
|
2193
2399
|
variantsdocsBySlug?: Array<ModelTypes["docs"]> | undefined | null;
|
|
2194
2400
|
fieldSetdocs: string;
|
|
2195
2401
|
modeldocs: ModelTypes["ModelNavigationCompiled"];
|
|
2196
2402
|
previewFieldsdocs: ModelTypes["ModelNavigationCompiled"];
|
|
2403
|
+
fieldSetShapecloud_sidebar: string;
|
|
2404
|
+
modelShapecloud_sidebar: ModelTypes["ModelNavigationCompiled"];
|
|
2405
|
+
previewFieldsShapecloud_sidebar: ModelTypes["ModelNavigationCompiled"];
|
|
2406
|
+
oneShapecloud_sidebar?: ModelTypes["Shapecloud_sidebar"] | undefined | null;
|
|
2197
2407
|
fieldSetShapedocs_content: string;
|
|
2198
2408
|
modelShapedocs_content: ModelTypes["ModelNavigationCompiled"];
|
|
2199
2409
|
previewFieldsShapedocs_content: ModelTypes["ModelNavigationCompiled"];
|
|
@@ -2242,6 +2452,10 @@ export type ModelTypes = {
|
|
|
2242
2452
|
modelShapeprofile_info: ModelTypes["ModelNavigationCompiled"];
|
|
2243
2453
|
previewFieldsShapeprofile_info: ModelTypes["ModelNavigationCompiled"];
|
|
2244
2454
|
oneShapeprofile_info?: ModelTypes["Shapeprofile_info"] | undefined | null;
|
|
2455
|
+
fieldSetShapesupport: string;
|
|
2456
|
+
modelShapesupport: ModelTypes["ModelNavigationCompiled"];
|
|
2457
|
+
previewFieldsShapesupport: ModelTypes["ModelNavigationCompiled"];
|
|
2458
|
+
oneShapesupport?: ModelTypes["Shapesupport"] | undefined | null;
|
|
2245
2459
|
fieldSetShapeusage: string;
|
|
2246
2460
|
modelShapeusage: ModelTypes["ModelNavigationCompiled"];
|
|
2247
2461
|
previewFieldsShapeusage: ModelTypes["ModelNavigationCompiled"];
|
|
@@ -2251,26 +2465,31 @@ export type ModelTypes = {
|
|
|
2251
2465
|
modelViewaccount: ModelTypes["ModelNavigationCompiled"];
|
|
2252
2466
|
previewFieldsViewaccount: ModelTypes["ModelNavigationCompiled"];
|
|
2253
2467
|
oneViewaccount?: ModelTypes["Viewaccount"] | undefined | null;
|
|
2468
|
+
oneAsScalarViewaccount?: ModelTypes["ViewAsScalar"] | undefined | null;
|
|
2254
2469
|
variantsViewfeatures?: Array<ModelTypes["Viewfeatures"]> | undefined | null;
|
|
2255
2470
|
fieldSetViewfeatures: string;
|
|
2256
2471
|
modelViewfeatures: ModelTypes["ModelNavigationCompiled"];
|
|
2257
2472
|
previewFieldsViewfeatures: ModelTypes["ModelNavigationCompiled"];
|
|
2258
2473
|
oneViewfeatures?: ModelTypes["Viewfeatures"] | undefined | null;
|
|
2474
|
+
oneAsScalarViewfeatures?: ModelTypes["ViewAsScalar"] | undefined | null;
|
|
2259
2475
|
variantsViewhomepage?: Array<ModelTypes["Viewhomepage"]> | undefined | null;
|
|
2260
2476
|
fieldSetViewhomepage: string;
|
|
2261
2477
|
modelViewhomepage: ModelTypes["ModelNavigationCompiled"];
|
|
2262
2478
|
previewFieldsViewhomepage: ModelTypes["ModelNavigationCompiled"];
|
|
2263
2479
|
oneViewhomepage?: ModelTypes["Viewhomepage"] | undefined | null;
|
|
2480
|
+
oneAsScalarViewhomepage?: ModelTypes["ViewAsScalar"] | undefined | null;
|
|
2264
2481
|
variantsViewhowitworks?: Array<ModelTypes["Viewhowitworks"]> | undefined | null;
|
|
2265
2482
|
fieldSetViewhowitworks: string;
|
|
2266
2483
|
modelViewhowitworks: ModelTypes["ModelNavigationCompiled"];
|
|
2267
2484
|
previewFieldsViewhowitworks: ModelTypes["ModelNavigationCompiled"];
|
|
2268
2485
|
oneViewhowitworks?: ModelTypes["Viewhowitworks"] | undefined | null;
|
|
2486
|
+
oneAsScalarViewhowitworks?: ModelTypes["ViewAsScalar"] | undefined | null;
|
|
2269
2487
|
variantsViewpricing?: Array<ModelTypes["Viewpricing"]> | undefined | null;
|
|
2270
2488
|
fieldSetViewpricing: string;
|
|
2271
2489
|
modelViewpricing: ModelTypes["ModelNavigationCompiled"];
|
|
2272
2490
|
previewFieldsViewpricing: ModelTypes["ModelNavigationCompiled"];
|
|
2273
2491
|
oneViewpricing?: ModelTypes["Viewpricing"] | undefined | null;
|
|
2492
|
+
oneAsScalarViewpricing?: ModelTypes["ViewAsScalar"] | undefined | null;
|
|
2274
2493
|
};
|
|
2275
2494
|
["RootParamsType"]: {
|
|
2276
2495
|
_version?: string | undefined | null;
|
|
@@ -2375,6 +2594,34 @@ export type ModelTypes = {
|
|
|
2375
2594
|
draft_version?: boolean | undefined | null;
|
|
2376
2595
|
json_ld?: string | undefined | null;
|
|
2377
2596
|
};
|
|
2597
|
+
["Shapecloud_sidebarSidebarMenuCategoryPage"]: {
|
|
2598
|
+
name?: string | undefined | null;
|
|
2599
|
+
link?: string | undefined | null;
|
|
2600
|
+
};
|
|
2601
|
+
["Shapecloud_sidebarSidebarMenuCategory"]: {
|
|
2602
|
+
page?: Array<ModelTypes["Shapecloud_sidebarSidebarMenuCategoryPage"] | undefined | null> | undefined | null;
|
|
2603
|
+
};
|
|
2604
|
+
["Shapecloud_sidebarSidebarMenu"]: {
|
|
2605
|
+
logo?: ModelTypes["ImageField"] | undefined | null;
|
|
2606
|
+
category?: Array<ModelTypes["Shapecloud_sidebarSidebarMenuCategory"] | undefined | null> | undefined | null;
|
|
2607
|
+
};
|
|
2608
|
+
["Shapecloud_sidebarSidebarBottom_menuLogout"]: {
|
|
2609
|
+
name?: string | undefined | null;
|
|
2610
|
+
link?: string | undefined | null;
|
|
2611
|
+
};
|
|
2612
|
+
["Shapecloud_sidebarSidebarBottom_menu"]: {
|
|
2613
|
+
logout?: ModelTypes["Shapecloud_sidebarSidebarBottom_menuLogout"] | undefined | null;
|
|
2614
|
+
};
|
|
2615
|
+
["Shapecloud_sidebarSidebar"]: {
|
|
2616
|
+
menu?: ModelTypes["Shapecloud_sidebarSidebarMenu"] | undefined | null;
|
|
2617
|
+
bottom_menu?: ModelTypes["Shapecloud_sidebarSidebarBottom_menu"] | undefined | null;
|
|
2618
|
+
};
|
|
2619
|
+
["Shapecloud_sidebar"]: {
|
|
2620
|
+
sidebar?: ModelTypes["Shapecloud_sidebarSidebar"] | undefined | null;
|
|
2621
|
+
_id: string;
|
|
2622
|
+
createdAt?: number | undefined | null;
|
|
2623
|
+
updatedAt?: number | undefined | null;
|
|
2624
|
+
};
|
|
2378
2625
|
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: {
|
|
2379
2626
|
content?: string | undefined | null;
|
|
2380
2627
|
};
|
|
@@ -2651,6 +2898,29 @@ export type ModelTypes = {
|
|
|
2651
2898
|
createdAt?: number | undefined | null;
|
|
2652
2899
|
updatedAt?: number | undefined | null;
|
|
2653
2900
|
};
|
|
2901
|
+
["ShapesupportSectionHeader_wrapper"]: {
|
|
2902
|
+
title?: string | undefined | null;
|
|
2903
|
+
description?: string | undefined | null;
|
|
2904
|
+
};
|
|
2905
|
+
["ShapesupportSectionFeatures_gridFeature_item"]: {
|
|
2906
|
+
image?: ModelTypes["ImageField"] | undefined | null;
|
|
2907
|
+
title?: string | undefined | null;
|
|
2908
|
+
text?: string | undefined | null;
|
|
2909
|
+
cta?: string | undefined | null;
|
|
2910
|
+
};
|
|
2911
|
+
["ShapesupportSectionFeatures_grid"]: {
|
|
2912
|
+
feature_item?: Array<ModelTypes["ShapesupportSectionFeatures_gridFeature_item"] | undefined | null> | undefined | null;
|
|
2913
|
+
};
|
|
2914
|
+
["ShapesupportSection"]: {
|
|
2915
|
+
header_wrapper?: ModelTypes["ShapesupportSectionHeader_wrapper"] | undefined | null;
|
|
2916
|
+
features_grid?: ModelTypes["ShapesupportSectionFeatures_grid"] | undefined | null;
|
|
2917
|
+
};
|
|
2918
|
+
["Shapesupport"]: {
|
|
2919
|
+
section?: ModelTypes["ShapesupportSection"] | undefined | null;
|
|
2920
|
+
_id: string;
|
|
2921
|
+
createdAt?: number | undefined | null;
|
|
2922
|
+
updatedAt?: number | undefined | null;
|
|
2923
|
+
};
|
|
2654
2924
|
["ShapeusageMain"]: {
|
|
2655
2925
|
title?: string | undefined | null;
|
|
2656
2926
|
subtitle?: string | undefined | null;
|
|
@@ -2698,6 +2968,18 @@ export type GraphQLTypes = {
|
|
|
2698
2968
|
["BakedIpsumData"]: "scalar" & {
|
|
2699
2969
|
name: "BakedIpsumData";
|
|
2700
2970
|
};
|
|
2971
|
+
["ShapeAsScalar"]: "scalar" & {
|
|
2972
|
+
name: "ShapeAsScalar";
|
|
2973
|
+
};
|
|
2974
|
+
["ModelAsScalar"]: "scalar" & {
|
|
2975
|
+
name: "ModelAsScalar";
|
|
2976
|
+
};
|
|
2977
|
+
["ViewAsScalar"]: "scalar" & {
|
|
2978
|
+
name: "ViewAsScalar";
|
|
2979
|
+
};
|
|
2980
|
+
["FormAsScalar"]: "scalar" & {
|
|
2981
|
+
name: "FormAsScalar";
|
|
2982
|
+
};
|
|
2701
2983
|
["JSON"]: "scalar" & {
|
|
2702
2984
|
name: "JSON";
|
|
2703
2985
|
};
|
|
@@ -2874,6 +3156,8 @@ export type GraphQLTypes = {
|
|
|
2874
3156
|
__typename: "FormTextField";
|
|
2875
3157
|
label?: string | undefined | null;
|
|
2876
3158
|
placeholder?: string | undefined | null;
|
|
3159
|
+
type?: string | undefined | null;
|
|
3160
|
+
defaultValue?: string | undefined | null;
|
|
2877
3161
|
};
|
|
2878
3162
|
["FormBooleanField"]: {
|
|
2879
3163
|
__typename: "FormBooleanField";
|
|
@@ -2883,6 +3167,7 @@ export type GraphQLTypes = {
|
|
|
2883
3167
|
__typename: "FormContentField";
|
|
2884
3168
|
label?: string | undefined | null;
|
|
2885
3169
|
placeholder?: string | undefined | null;
|
|
3170
|
+
content?: string | undefined | null;
|
|
2886
3171
|
};
|
|
2887
3172
|
["FormRadioField"]: {
|
|
2888
3173
|
__typename: "FormRadioField";
|
|
@@ -2964,10 +3249,15 @@ export type GraphQLTypes = {
|
|
|
2964
3249
|
listForms?: Array<GraphQLTypes["Form"]> | undefined | null;
|
|
2965
3250
|
listPaginateddocs?: GraphQLTypes["docs__Connection"] | undefined | null;
|
|
2966
3251
|
onedocsBySlug?: GraphQLTypes["docs"] | undefined | null;
|
|
3252
|
+
oneAsScalardocsBySlug?: GraphQLTypes["ModelAsScalar"] | undefined | null;
|
|
2967
3253
|
variantsdocsBySlug?: Array<GraphQLTypes["docs"]> | undefined | null;
|
|
2968
3254
|
fieldSetdocs: string;
|
|
2969
3255
|
modeldocs: GraphQLTypes["ModelNavigationCompiled"];
|
|
2970
3256
|
previewFieldsdocs: GraphQLTypes["ModelNavigationCompiled"];
|
|
3257
|
+
fieldSetShapecloud_sidebar: string;
|
|
3258
|
+
modelShapecloud_sidebar: GraphQLTypes["ModelNavigationCompiled"];
|
|
3259
|
+
previewFieldsShapecloud_sidebar: GraphQLTypes["ModelNavigationCompiled"];
|
|
3260
|
+
oneShapecloud_sidebar?: GraphQLTypes["Shapecloud_sidebar"] | undefined | null;
|
|
2971
3261
|
fieldSetShapedocs_content: string;
|
|
2972
3262
|
modelShapedocs_content: GraphQLTypes["ModelNavigationCompiled"];
|
|
2973
3263
|
previewFieldsShapedocs_content: GraphQLTypes["ModelNavigationCompiled"];
|
|
@@ -3016,6 +3306,10 @@ export type GraphQLTypes = {
|
|
|
3016
3306
|
modelShapeprofile_info: GraphQLTypes["ModelNavigationCompiled"];
|
|
3017
3307
|
previewFieldsShapeprofile_info: GraphQLTypes["ModelNavigationCompiled"];
|
|
3018
3308
|
oneShapeprofile_info?: GraphQLTypes["Shapeprofile_info"] | undefined | null;
|
|
3309
|
+
fieldSetShapesupport: string;
|
|
3310
|
+
modelShapesupport: GraphQLTypes["ModelNavigationCompiled"];
|
|
3311
|
+
previewFieldsShapesupport: GraphQLTypes["ModelNavigationCompiled"];
|
|
3312
|
+
oneShapesupport?: GraphQLTypes["Shapesupport"] | undefined | null;
|
|
3019
3313
|
fieldSetShapeusage: string;
|
|
3020
3314
|
modelShapeusage: GraphQLTypes["ModelNavigationCompiled"];
|
|
3021
3315
|
previewFieldsShapeusage: GraphQLTypes["ModelNavigationCompiled"];
|
|
@@ -3025,26 +3319,31 @@ export type GraphQLTypes = {
|
|
|
3025
3319
|
modelViewaccount: GraphQLTypes["ModelNavigationCompiled"];
|
|
3026
3320
|
previewFieldsViewaccount: GraphQLTypes["ModelNavigationCompiled"];
|
|
3027
3321
|
oneViewaccount?: GraphQLTypes["Viewaccount"] | undefined | null;
|
|
3322
|
+
oneAsScalarViewaccount?: GraphQLTypes["ViewAsScalar"] | undefined | null;
|
|
3028
3323
|
variantsViewfeatures?: Array<GraphQLTypes["Viewfeatures"]> | undefined | null;
|
|
3029
3324
|
fieldSetViewfeatures: string;
|
|
3030
3325
|
modelViewfeatures: GraphQLTypes["ModelNavigationCompiled"];
|
|
3031
3326
|
previewFieldsViewfeatures: GraphQLTypes["ModelNavigationCompiled"];
|
|
3032
3327
|
oneViewfeatures?: GraphQLTypes["Viewfeatures"] | undefined | null;
|
|
3328
|
+
oneAsScalarViewfeatures?: GraphQLTypes["ViewAsScalar"] | undefined | null;
|
|
3033
3329
|
variantsViewhomepage?: Array<GraphQLTypes["Viewhomepage"]> | undefined | null;
|
|
3034
3330
|
fieldSetViewhomepage: string;
|
|
3035
3331
|
modelViewhomepage: GraphQLTypes["ModelNavigationCompiled"];
|
|
3036
3332
|
previewFieldsViewhomepage: GraphQLTypes["ModelNavigationCompiled"];
|
|
3037
3333
|
oneViewhomepage?: GraphQLTypes["Viewhomepage"] | undefined | null;
|
|
3334
|
+
oneAsScalarViewhomepage?: GraphQLTypes["ViewAsScalar"] | undefined | null;
|
|
3038
3335
|
variantsViewhowitworks?: Array<GraphQLTypes["Viewhowitworks"]> | undefined | null;
|
|
3039
3336
|
fieldSetViewhowitworks: string;
|
|
3040
3337
|
modelViewhowitworks: GraphQLTypes["ModelNavigationCompiled"];
|
|
3041
3338
|
previewFieldsViewhowitworks: GraphQLTypes["ModelNavigationCompiled"];
|
|
3042
3339
|
oneViewhowitworks?: GraphQLTypes["Viewhowitworks"] | undefined | null;
|
|
3340
|
+
oneAsScalarViewhowitworks?: GraphQLTypes["ViewAsScalar"] | undefined | null;
|
|
3043
3341
|
variantsViewpricing?: Array<GraphQLTypes["Viewpricing"]> | undefined | null;
|
|
3044
3342
|
fieldSetViewpricing: string;
|
|
3045
3343
|
modelViewpricing: GraphQLTypes["ModelNavigationCompiled"];
|
|
3046
3344
|
previewFieldsViewpricing: GraphQLTypes["ModelNavigationCompiled"];
|
|
3047
3345
|
oneViewpricing?: GraphQLTypes["Viewpricing"] | undefined | null;
|
|
3346
|
+
oneAsScalarViewpricing?: GraphQLTypes["ViewAsScalar"] | undefined | null;
|
|
3048
3347
|
};
|
|
3049
3348
|
["RootParamsType"]: {
|
|
3050
3349
|
__typename: "RootParamsType";
|
|
@@ -3160,6 +3459,41 @@ export type GraphQLTypes = {
|
|
|
3160
3459
|
draft_version?: boolean | undefined | null;
|
|
3161
3460
|
json_ld?: string | undefined | null;
|
|
3162
3461
|
};
|
|
3462
|
+
["Shapecloud_sidebarSidebarMenuCategoryPage"]: {
|
|
3463
|
+
__typename: "Shapecloud_sidebarSidebarMenuCategoryPage";
|
|
3464
|
+
name?: string | undefined | null;
|
|
3465
|
+
link?: string | undefined | null;
|
|
3466
|
+
};
|
|
3467
|
+
["Shapecloud_sidebarSidebarMenuCategory"]: {
|
|
3468
|
+
__typename: "Shapecloud_sidebarSidebarMenuCategory";
|
|
3469
|
+
page?: Array<GraphQLTypes["Shapecloud_sidebarSidebarMenuCategoryPage"] | undefined | null> | undefined | null;
|
|
3470
|
+
};
|
|
3471
|
+
["Shapecloud_sidebarSidebarMenu"]: {
|
|
3472
|
+
__typename: "Shapecloud_sidebarSidebarMenu";
|
|
3473
|
+
logo?: GraphQLTypes["ImageField"] | undefined | null;
|
|
3474
|
+
category?: Array<GraphQLTypes["Shapecloud_sidebarSidebarMenuCategory"] | undefined | null> | undefined | null;
|
|
3475
|
+
};
|
|
3476
|
+
["Shapecloud_sidebarSidebarBottom_menuLogout"]: {
|
|
3477
|
+
__typename: "Shapecloud_sidebarSidebarBottom_menuLogout";
|
|
3478
|
+
name?: string | undefined | null;
|
|
3479
|
+
link?: string | undefined | null;
|
|
3480
|
+
};
|
|
3481
|
+
["Shapecloud_sidebarSidebarBottom_menu"]: {
|
|
3482
|
+
__typename: "Shapecloud_sidebarSidebarBottom_menu";
|
|
3483
|
+
logout?: GraphQLTypes["Shapecloud_sidebarSidebarBottom_menuLogout"] | undefined | null;
|
|
3484
|
+
};
|
|
3485
|
+
["Shapecloud_sidebarSidebar"]: {
|
|
3486
|
+
__typename: "Shapecloud_sidebarSidebar";
|
|
3487
|
+
menu?: GraphQLTypes["Shapecloud_sidebarSidebarMenu"] | undefined | null;
|
|
3488
|
+
bottom_menu?: GraphQLTypes["Shapecloud_sidebarSidebarBottom_menu"] | undefined | null;
|
|
3489
|
+
};
|
|
3490
|
+
["Shapecloud_sidebar"]: {
|
|
3491
|
+
__typename: "Shapecloud_sidebar";
|
|
3492
|
+
sidebar?: GraphQLTypes["Shapecloud_sidebarSidebar"] | undefined | null;
|
|
3493
|
+
_id: string;
|
|
3494
|
+
createdAt?: number | undefined | null;
|
|
3495
|
+
updatedAt?: number | undefined | null;
|
|
3496
|
+
};
|
|
3163
3497
|
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: {
|
|
3164
3498
|
__typename: "Shapedocs_contentDocumentation_pageContent_containerDoc_content";
|
|
3165
3499
|
content?: string | undefined | null;
|
|
@@ -3497,6 +3831,34 @@ export type GraphQLTypes = {
|
|
|
3497
3831
|
createdAt?: number | undefined | null;
|
|
3498
3832
|
updatedAt?: number | undefined | null;
|
|
3499
3833
|
};
|
|
3834
|
+
["ShapesupportSectionHeader_wrapper"]: {
|
|
3835
|
+
__typename: "ShapesupportSectionHeader_wrapper";
|
|
3836
|
+
title?: string | undefined | null;
|
|
3837
|
+
description?: string | undefined | null;
|
|
3838
|
+
};
|
|
3839
|
+
["ShapesupportSectionFeatures_gridFeature_item"]: {
|
|
3840
|
+
__typename: "ShapesupportSectionFeatures_gridFeature_item";
|
|
3841
|
+
image?: GraphQLTypes["ImageField"] | undefined | null;
|
|
3842
|
+
title?: string | undefined | null;
|
|
3843
|
+
text?: string | undefined | null;
|
|
3844
|
+
cta?: string | undefined | null;
|
|
3845
|
+
};
|
|
3846
|
+
["ShapesupportSectionFeatures_grid"]: {
|
|
3847
|
+
__typename: "ShapesupportSectionFeatures_grid";
|
|
3848
|
+
feature_item?: Array<GraphQLTypes["ShapesupportSectionFeatures_gridFeature_item"] | undefined | null> | undefined | null;
|
|
3849
|
+
};
|
|
3850
|
+
["ShapesupportSection"]: {
|
|
3851
|
+
__typename: "ShapesupportSection";
|
|
3852
|
+
header_wrapper?: GraphQLTypes["ShapesupportSectionHeader_wrapper"] | undefined | null;
|
|
3853
|
+
features_grid?: GraphQLTypes["ShapesupportSectionFeatures_grid"] | undefined | null;
|
|
3854
|
+
};
|
|
3855
|
+
["Shapesupport"]: {
|
|
3856
|
+
__typename: "Shapesupport";
|
|
3857
|
+
section?: GraphQLTypes["ShapesupportSection"] | undefined | null;
|
|
3858
|
+
_id: string;
|
|
3859
|
+
createdAt?: number | undefined | null;
|
|
3860
|
+
updatedAt?: number | undefined | null;
|
|
3861
|
+
};
|
|
3500
3862
|
["ShapeusageMain"]: {
|
|
3501
3863
|
__typename: "ShapeusageMain";
|
|
3502
3864
|
title?: string | undefined | null;
|
|
@@ -3544,7 +3906,9 @@ export declare enum ConditionOperator {
|
|
|
3544
3906
|
LESS = "LESS",
|
|
3545
3907
|
LESS_EQUAL = "LESS_EQUAL",
|
|
3546
3908
|
EXISTS = "EXISTS",
|
|
3547
|
-
NOT_EXISTS = "NOT_EXISTS"
|
|
3909
|
+
NOT_EXISTS = "NOT_EXISTS",
|
|
3910
|
+
REGEX = "REGEX",
|
|
3911
|
+
NOT_REGEX = "NOT_REGEX"
|
|
3548
3912
|
}
|
|
3549
3913
|
export declare enum ConditionType {
|
|
3550
3914
|
SET = "SET",
|
|
@@ -3552,28 +3916,23 @@ export declare enum ConditionType {
|
|
|
3552
3916
|
}
|
|
3553
3917
|
export declare enum ActionType {
|
|
3554
3918
|
SET_VALUE = "SET_VALUE",
|
|
3555
|
-
SET_CLASSNAME = "SET_CLASSNAME",
|
|
3556
3919
|
DISPLAY_VALUE = "DISPLAY_VALUE",
|
|
3557
3920
|
SET_DISABLED = "SET_DISABLED"
|
|
3558
3921
|
}
|
|
3559
3922
|
export declare enum FormFieldType {
|
|
3560
3923
|
STRING = "STRING",
|
|
3561
|
-
TEXT = "TEXT",
|
|
3562
|
-
CONTENT = "CONTENT",
|
|
3563
|
-
TEXTAREA = "TEXTAREA",
|
|
3564
|
-
RADIO = "RADIO",
|
|
3565
|
-
RADIO_TEXT = "RADIO_TEXT",
|
|
3566
|
-
BOOLEAN = "BOOLEAN",
|
|
3567
3924
|
STEP = "STEP",
|
|
3568
3925
|
GROUP = "GROUP",
|
|
3569
|
-
ARRAY_STEP = "ARRAY_STEP",
|
|
3570
3926
|
PORTAL = "PORTAL",
|
|
3571
|
-
|
|
3927
|
+
TEXT = "TEXT",
|
|
3928
|
+
INPUT = "INPUT",
|
|
3929
|
+
RADIO_TEXT = "RADIO_TEXT",
|
|
3930
|
+
BOOLEAN = "BOOLEAN",
|
|
3572
3931
|
BUTTON = "BUTTON",
|
|
3573
3932
|
SUBMIT = "SUBMIT",
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3933
|
+
CONTENT = "CONTENT",
|
|
3934
|
+
DISPLAY = "DISPLAY",
|
|
3935
|
+
VARIABLE = "VARIABLE"
|
|
3577
3936
|
}
|
|
3578
3937
|
export declare enum CMSType {
|
|
3579
3938
|
STRING = "STRING",
|
|
@@ -3604,6 +3963,7 @@ export declare enum ViewEnum {
|
|
|
3604
3963
|
pricing = "pricing"
|
|
3605
3964
|
}
|
|
3606
3965
|
export declare enum ShapeEnum {
|
|
3966
|
+
cloud_sidebar = "cloud_sidebar",
|
|
3607
3967
|
docs_content = "docs_content",
|
|
3608
3968
|
docs_nav = "docs_nav",
|
|
3609
3969
|
featurepresentation = "featurepresentation",
|
|
@@ -3616,6 +3976,7 @@ export declare enum ShapeEnum {
|
|
|
3616
3976
|
pricing_table = "pricing_table",
|
|
3617
3977
|
pricingv1 = "pricingv1",
|
|
3618
3978
|
profile_info = "profile_info",
|
|
3979
|
+
support = "support",
|
|
3619
3980
|
usage = "usage"
|
|
3620
3981
|
}
|
|
3621
3982
|
export declare enum RootParamsEnum {
|
|
@@ -3628,6 +3989,10 @@ type ZEUS_VARIABLES = {
|
|
|
3628
3989
|
["Timestamp"]: ValueTypes["Timestamp"];
|
|
3629
3990
|
["ModelNavigationCompiled"]: ValueTypes["ModelNavigationCompiled"];
|
|
3630
3991
|
["BakedIpsumData"]: ValueTypes["BakedIpsumData"];
|
|
3992
|
+
["ShapeAsScalar"]: ValueTypes["ShapeAsScalar"];
|
|
3993
|
+
["ModelAsScalar"]: ValueTypes["ModelAsScalar"];
|
|
3994
|
+
["ViewAsScalar"]: ValueTypes["ViewAsScalar"];
|
|
3995
|
+
["FormAsScalar"]: ValueTypes["FormAsScalar"];
|
|
3631
3996
|
["JSON"]: ValueTypes["JSON"];
|
|
3632
3997
|
["Sort"]: ValueTypes["Sort"];
|
|
3633
3998
|
["ConditionSetOperator"]: ValueTypes["ConditionSetOperator"];
|