@husar.ai/cli 0.2.3 → 0.2.4
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 +526 -8
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +2622 -52
- package/dist/zeus/index.js +15 -0
- package/dist/zeus/index.js.map +1 -1
- package/package.json +2 -2
- package/src/zeus/const.ts +555 -7
- package/src/zeus/index.ts +2560 -62
package/src/zeus/const.ts
CHANGED
|
@@ -24,6 +24,9 @@ export const AllTypesProps: Record<string,any> = {
|
|
|
24
24
|
},
|
|
25
25
|
RootParamsAdminType: `scalar.RootParamsAdminType` as const,
|
|
26
26
|
FormFieldType: "enum" as const,
|
|
27
|
+
GenerateHusarShapeImplementorInput:{
|
|
28
|
+
|
|
29
|
+
},
|
|
27
30
|
CMSType: "enum" as const,
|
|
28
31
|
Query:{
|
|
29
32
|
listPaginateddocs:{
|
|
@@ -70,11 +73,111 @@ export const AllTypesProps: Record<string,any> = {
|
|
|
70
73
|
},
|
|
71
74
|
oneAsScalarViewpricing:{
|
|
72
75
|
rootParams:"RootParamsInput"
|
|
76
|
+
},
|
|
77
|
+
oneViewttt:{
|
|
78
|
+
rootParams:"RootParamsInput"
|
|
79
|
+
},
|
|
80
|
+
oneAsScalarViewttt:{
|
|
81
|
+
rootParams:"RootParamsInput"
|
|
82
|
+
},
|
|
83
|
+
oneFormregister:{
|
|
84
|
+
rootParams:"RootParamsInput"
|
|
85
|
+
},
|
|
86
|
+
oneAsScalarFormregister:{
|
|
87
|
+
rootParams:"RootParamsInput"
|
|
88
|
+
},
|
|
89
|
+
oneFormtest:{
|
|
90
|
+
rootParams:"RootParamsInput"
|
|
91
|
+
},
|
|
92
|
+
oneAsScalarFormtest:{
|
|
93
|
+
rootParams:"RootParamsInput"
|
|
94
|
+
},
|
|
95
|
+
responsesFormregister:{
|
|
96
|
+
filter:"ResponsesFormregisterFilter"
|
|
97
|
+
},
|
|
98
|
+
responseFormregister:{
|
|
99
|
+
|
|
100
|
+
},
|
|
101
|
+
responseFieldSetFormregister:{
|
|
102
|
+
|
|
103
|
+
},
|
|
104
|
+
responsesFormtest:{
|
|
105
|
+
filter:"ResponsesFormtestFilter"
|
|
106
|
+
},
|
|
107
|
+
responseFormtest:{
|
|
108
|
+
|
|
109
|
+
},
|
|
110
|
+
responseFieldSetFormtest:{
|
|
111
|
+
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
Mutation:{
|
|
115
|
+
submitResponseFormregister:{
|
|
116
|
+
input:"SubmitFormregister"
|
|
117
|
+
},
|
|
118
|
+
removeResponseFormregister:{
|
|
119
|
+
|
|
120
|
+
},
|
|
121
|
+
submitResponseFormtest:{
|
|
122
|
+
input:"SubmitFormtest"
|
|
123
|
+
},
|
|
124
|
+
removeResponseFormtest:{
|
|
125
|
+
|
|
73
126
|
}
|
|
74
127
|
},
|
|
75
128
|
ModelEnum: "enum" as const,
|
|
76
129
|
ViewEnum: "enum" as const,
|
|
77
130
|
ShapeEnum: "enum" as const,
|
|
131
|
+
FormEnum: "enum" as const,
|
|
132
|
+
SubmitFormregisterUser_details:{
|
|
133
|
+
|
|
134
|
+
},
|
|
135
|
+
SubmitFormregisterRegistration_step:{
|
|
136
|
+
user_details:"SubmitFormregisterUser_details"
|
|
137
|
+
},
|
|
138
|
+
SubmitFormregister:{
|
|
139
|
+
registration_step:"SubmitFormregisterRegistration_step"
|
|
140
|
+
},
|
|
141
|
+
SubmitFormtestBasic_info_group:{
|
|
142
|
+
|
|
143
|
+
},
|
|
144
|
+
SubmitFormtestStep_basic_info:{
|
|
145
|
+
basic_info_group:"SubmitFormtestBasic_info_group"
|
|
146
|
+
},
|
|
147
|
+
SubmitFormtestDimensions_group:{
|
|
148
|
+
|
|
149
|
+
},
|
|
150
|
+
SubmitFormtestStep_dimensions:{
|
|
151
|
+
dimensions_group:"SubmitFormtestDimensions_group"
|
|
152
|
+
},
|
|
153
|
+
SubmitFormtestFeatures_group:{
|
|
154
|
+
|
|
155
|
+
},
|
|
156
|
+
SubmitFormtestStep_features:{
|
|
157
|
+
features_group:"SubmitFormtestFeatures_group"
|
|
158
|
+
},
|
|
159
|
+
SubmitFormtestAccessories_group:{
|
|
160
|
+
|
|
161
|
+
},
|
|
162
|
+
SubmitFormtestStep_accessories:{
|
|
163
|
+
accessories_group:"SubmitFormtestAccessories_group"
|
|
164
|
+
},
|
|
165
|
+
SubmitFormtestStep_summary:{
|
|
166
|
+
|
|
167
|
+
},
|
|
168
|
+
SubmitFormtest:{
|
|
169
|
+
step_basic_info:"SubmitFormtestStep_basic_info",
|
|
170
|
+
step_dimensions:"SubmitFormtestStep_dimensions",
|
|
171
|
+
step_features:"SubmitFormtestStep_features",
|
|
172
|
+
step_accessories:"SubmitFormtestStep_accessories",
|
|
173
|
+
step_summary:"SubmitFormtestStep_summary"
|
|
174
|
+
},
|
|
175
|
+
ResponsesFormregisterFilter:{
|
|
176
|
+
|
|
177
|
+
},
|
|
178
|
+
ResponsesFormtestFilter:{
|
|
179
|
+
|
|
180
|
+
},
|
|
78
181
|
RootParamsInput:{
|
|
79
182
|
|
|
80
183
|
},
|
|
@@ -183,9 +286,6 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
183
286
|
total:"Int",
|
|
184
287
|
hasNext:"Boolean"
|
|
185
288
|
},
|
|
186
|
-
Mutation:{
|
|
187
|
-
heartbeat:"String"
|
|
188
|
-
},
|
|
189
289
|
RootParamsAdminType: `scalar.RootParamsAdminType` as const,
|
|
190
290
|
Shape:{
|
|
191
291
|
name:"String",
|
|
@@ -314,10 +414,30 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
314
414
|
fieldSetdocs:"String",
|
|
315
415
|
modeldocs:"ModelNavigationCompiled",
|
|
316
416
|
previewFieldsdocs:"ModelNavigationCompiled",
|
|
417
|
+
fieldSetShapeaplikacja_g:"String",
|
|
418
|
+
modelShapeaplikacja_g:"ModelNavigationCompiled",
|
|
419
|
+
previewFieldsShapeaplikacja_g:"ModelNavigationCompiled",
|
|
420
|
+
oneShapeaplikacja_g:"Shapeaplikacja_g",
|
|
421
|
+
fieldSetShapebgallery:"String",
|
|
422
|
+
modelShapebgallery:"ModelNavigationCompiled",
|
|
423
|
+
previewFieldsShapebgallery:"ModelNavigationCompiled",
|
|
424
|
+
oneShapebgallery:"Shapebgallery",
|
|
425
|
+
fieldSetShapebookina:"String",
|
|
426
|
+
modelShapebookina:"ModelNavigationCompiled",
|
|
427
|
+
previewFieldsShapebookina:"ModelNavigationCompiled",
|
|
428
|
+
oneShapebookina:"Shapebookina",
|
|
429
|
+
fieldSetShapebpage:"String",
|
|
430
|
+
modelShapebpage:"ModelNavigationCompiled",
|
|
431
|
+
previewFieldsShapebpage:"ModelNavigationCompiled",
|
|
432
|
+
oneShapebpage:"Shapebpage",
|
|
317
433
|
fieldSetShapecloud_sidebar:"String",
|
|
318
434
|
modelShapecloud_sidebar:"ModelNavigationCompiled",
|
|
319
435
|
previewFieldsShapecloud_sidebar:"ModelNavigationCompiled",
|
|
320
436
|
oneShapecloud_sidebar:"Shapecloud_sidebar",
|
|
437
|
+
fieldSetShapectabutton:"String",
|
|
438
|
+
modelShapectabutton:"ModelNavigationCompiled",
|
|
439
|
+
previewFieldsShapectabutton:"ModelNavigationCompiled",
|
|
440
|
+
oneShapectabutton:"Shapectabutton",
|
|
321
441
|
fieldSetShapedocs_content:"String",
|
|
322
442
|
modelShapedocs_content:"ModelNavigationCompiled",
|
|
323
443
|
previewFieldsShapedocs_content:"ModelNavigationCompiled",
|
|
@@ -366,10 +486,26 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
366
486
|
modelShapeprofile_info:"ModelNavigationCompiled",
|
|
367
487
|
previewFieldsShapeprofile_info:"ModelNavigationCompiled",
|
|
368
488
|
oneShapeprofile_info:"Shapeprofile_info",
|
|
489
|
+
fieldSetShapesecondary_cta:"String",
|
|
490
|
+
modelShapesecondary_cta:"ModelNavigationCompiled",
|
|
491
|
+
previewFieldsShapesecondary_cta:"ModelNavigationCompiled",
|
|
492
|
+
oneShapesecondary_cta:"Shapesecondary_cta",
|
|
369
493
|
fieldSetShapesupport:"String",
|
|
370
494
|
modelShapesupport:"ModelNavigationCompiled",
|
|
371
495
|
previewFieldsShapesupport:"ModelNavigationCompiled",
|
|
372
496
|
oneShapesupport:"Shapesupport",
|
|
497
|
+
fieldSetShapeteee:"String",
|
|
498
|
+
modelShapeteee:"ModelNavigationCompiled",
|
|
499
|
+
previewFieldsShapeteee:"ModelNavigationCompiled",
|
|
500
|
+
oneShapeteee:"Shapeteee",
|
|
501
|
+
fieldSetShapetest:"String",
|
|
502
|
+
modelShapetest:"ModelNavigationCompiled",
|
|
503
|
+
previewFieldsShapetest:"ModelNavigationCompiled",
|
|
504
|
+
oneShapetest:"Shapetest",
|
|
505
|
+
fieldSetShapetitle_desc:"String",
|
|
506
|
+
modelShapetitle_desc:"ModelNavigationCompiled",
|
|
507
|
+
previewFieldsShapetitle_desc:"ModelNavigationCompiled",
|
|
508
|
+
oneShapetitle_desc:"Shapetitle_desc",
|
|
373
509
|
fieldSetShapeusage:"String",
|
|
374
510
|
modelShapeusage:"ModelNavigationCompiled",
|
|
375
511
|
previewFieldsShapeusage:"ModelNavigationCompiled",
|
|
@@ -403,7 +539,38 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
403
539
|
modelViewpricing:"ModelNavigationCompiled",
|
|
404
540
|
previewFieldsViewpricing:"ModelNavigationCompiled",
|
|
405
541
|
oneViewpricing:"Viewpricing",
|
|
406
|
-
oneAsScalarViewpricing:"ViewAsScalar"
|
|
542
|
+
oneAsScalarViewpricing:"ViewAsScalar",
|
|
543
|
+
variantsViewttt:"Viewttt",
|
|
544
|
+
fieldSetViewttt:"String",
|
|
545
|
+
modelViewttt:"ModelNavigationCompiled",
|
|
546
|
+
previewFieldsViewttt:"ModelNavigationCompiled",
|
|
547
|
+
oneViewttt:"Viewttt",
|
|
548
|
+
oneAsScalarViewttt:"ViewAsScalar",
|
|
549
|
+
variantsFormregister:"Formregister",
|
|
550
|
+
fieldSetFormregister:"String",
|
|
551
|
+
modelFormregister:"ModelNavigationCompiled",
|
|
552
|
+
previewFieldsFormregister:"ModelNavigationCompiled",
|
|
553
|
+
oneFormregister:"Formregister",
|
|
554
|
+
oneAsScalarFormregister:"FormAsScalar",
|
|
555
|
+
variantsFormtest:"Formtest",
|
|
556
|
+
fieldSetFormtest:"String",
|
|
557
|
+
modelFormtest:"ModelNavigationCompiled",
|
|
558
|
+
previewFieldsFormtest:"ModelNavigationCompiled",
|
|
559
|
+
oneFormtest:"Formtest",
|
|
560
|
+
oneAsScalarFormtest:"FormAsScalar",
|
|
561
|
+
responsesFormregister:"SearchResponsesFormregister",
|
|
562
|
+
responseFormregister:"ResponseFormregister",
|
|
563
|
+
responseFieldSetFormregister:"String",
|
|
564
|
+
responsesFormtest:"SearchResponsesFormtest",
|
|
565
|
+
responseFormtest:"ResponseFormtest",
|
|
566
|
+
responseFieldSetFormtest:"String"
|
|
567
|
+
},
|
|
568
|
+
Mutation:{
|
|
569
|
+
heartbeat:"String",
|
|
570
|
+
submitResponseFormregister:"Boolean",
|
|
571
|
+
removeResponseFormregister:"Boolean",
|
|
572
|
+
submitResponseFormtest:"Boolean",
|
|
573
|
+
removeResponseFormtest:"Boolean"
|
|
407
574
|
},
|
|
408
575
|
RootParamsType:{
|
|
409
576
|
_version:"String",
|
|
@@ -417,8 +584,8 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
417
584
|
_version:"VersionField",
|
|
418
585
|
title:"String",
|
|
419
586
|
seotitle:"String",
|
|
420
|
-
metadesc:"String",
|
|
421
587
|
sortid:"Float",
|
|
588
|
+
metadesc:"String",
|
|
422
589
|
main_category:"String",
|
|
423
590
|
content:"String",
|
|
424
591
|
video:"VideoField",
|
|
@@ -460,11 +627,22 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
460
627
|
draft_version:"Boolean",
|
|
461
628
|
json_ld:"String"
|
|
462
629
|
},
|
|
630
|
+
ViewhomepageCotContain:{
|
|
631
|
+
header:"Shapetitle_desc"
|
|
632
|
+
},
|
|
633
|
+
ViewhomepageCotFeatures:{
|
|
634
|
+
feat:"Shapefeaturepresentation"
|
|
635
|
+
},
|
|
636
|
+
ViewhomepageCot:{
|
|
637
|
+
contain:"ViewhomepageCotContain",
|
|
638
|
+
features:"ViewhomepageCotFeatures"
|
|
639
|
+
},
|
|
463
640
|
Viewhomepage:{
|
|
464
641
|
_version:"VersionField",
|
|
465
642
|
nav:"Shapenav",
|
|
466
643
|
main:"Shapehero",
|
|
467
644
|
hero:"Shapeherox",
|
|
645
|
+
cot:"ViewhomepageCot",
|
|
468
646
|
pricing:"Shapepricingv1",
|
|
469
647
|
footer:"Shapefoot",
|
|
470
648
|
locale:"String",
|
|
@@ -505,6 +683,144 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
505
683
|
draft_version:"Boolean",
|
|
506
684
|
json_ld:"String"
|
|
507
685
|
},
|
|
686
|
+
Viewttt:{
|
|
687
|
+
_version:"VersionField",
|
|
688
|
+
locale:"String",
|
|
689
|
+
slug:"String",
|
|
690
|
+
_id:"String",
|
|
691
|
+
createdAt:"Float",
|
|
692
|
+
updatedAt:"Float",
|
|
693
|
+
draft_version:"Boolean",
|
|
694
|
+
json_ld:"String"
|
|
695
|
+
},
|
|
696
|
+
Shapeaplikacja_gNavbarMenu:{
|
|
697
|
+
name:"String",
|
|
698
|
+
href:"String"
|
|
699
|
+
},
|
|
700
|
+
Shapeaplikacja_gNavbar:{
|
|
701
|
+
logo:"String",
|
|
702
|
+
menu:"Shapeaplikacja_gNavbarMenu"
|
|
703
|
+
},
|
|
704
|
+
Shapeaplikacja_gHero:{
|
|
705
|
+
heading:"String",
|
|
706
|
+
subheading:"String"
|
|
707
|
+
},
|
|
708
|
+
Shapeaplikacja_gExplainer_video:{
|
|
709
|
+
title:"String",
|
|
710
|
+
description:"String",
|
|
711
|
+
video:"VideoField"
|
|
712
|
+
},
|
|
713
|
+
Shapeaplikacja_gVideo_list:{
|
|
714
|
+
title:"String",
|
|
715
|
+
description:"String",
|
|
716
|
+
video:"VideoField"
|
|
717
|
+
},
|
|
718
|
+
Shapeaplikacja_gStatsItems:{
|
|
719
|
+
label:"String",
|
|
720
|
+
value:"Float"
|
|
721
|
+
},
|
|
722
|
+
Shapeaplikacja_gStats:{
|
|
723
|
+
items:"Shapeaplikacja_gStatsItems"
|
|
724
|
+
},
|
|
725
|
+
Shapeaplikacja_gTestimonials:{
|
|
726
|
+
name:"String",
|
|
727
|
+
text:"String"
|
|
728
|
+
},
|
|
729
|
+
Shapeaplikacja_gCall_to_action:{
|
|
730
|
+
heading:"String",
|
|
731
|
+
description:"String",
|
|
732
|
+
button_text:"String"
|
|
733
|
+
},
|
|
734
|
+
Shapeaplikacja_gFooterLinks:{
|
|
735
|
+
label:"String",
|
|
736
|
+
href:"String"
|
|
737
|
+
},
|
|
738
|
+
Shapeaplikacja_gFooter:{
|
|
739
|
+
copyright:"String",
|
|
740
|
+
links:"Shapeaplikacja_gFooterLinks"
|
|
741
|
+
},
|
|
742
|
+
Shapeaplikacja_g:{
|
|
743
|
+
navbar:"Shapeaplikacja_gNavbar",
|
|
744
|
+
hero:"Shapeaplikacja_gHero",
|
|
745
|
+
explainer_video:"Shapeaplikacja_gExplainer_video",
|
|
746
|
+
video_list:"Shapeaplikacja_gVideo_list",
|
|
747
|
+
stats:"Shapeaplikacja_gStats",
|
|
748
|
+
testimonials:"Shapeaplikacja_gTestimonials",
|
|
749
|
+
call_to_action:"Shapeaplikacja_gCall_to_action",
|
|
750
|
+
footer:"Shapeaplikacja_gFooter",
|
|
751
|
+
_id:"String",
|
|
752
|
+
createdAt:"Float",
|
|
753
|
+
updatedAt:"Float"
|
|
754
|
+
},
|
|
755
|
+
ShapebgalleryGallery_grid:{
|
|
756
|
+
main_photo:"ImageField",
|
|
757
|
+
gallery_photos:"ImageField"
|
|
758
|
+
},
|
|
759
|
+
Shapebgallery:{
|
|
760
|
+
gallery_grid:"ShapebgalleryGallery_grid",
|
|
761
|
+
rrrr:"String",
|
|
762
|
+
_id:"String",
|
|
763
|
+
createdAt:"Float",
|
|
764
|
+
updatedAt:"Float"
|
|
765
|
+
},
|
|
766
|
+
ShapebookinaOverlaySearch_barSearch_button:{
|
|
767
|
+
label:"String"
|
|
768
|
+
},
|
|
769
|
+
ShapebookinaOverlaySearch_bar:{
|
|
770
|
+
location:"String",
|
|
771
|
+
search_button:"ShapebookinaOverlaySearch_barSearch_button"
|
|
772
|
+
},
|
|
773
|
+
ShapebookinaOverlay:{
|
|
774
|
+
title:"String",
|
|
775
|
+
subtitle:"String",
|
|
776
|
+
search_bar:"ShapebookinaOverlaySearch_bar"
|
|
777
|
+
},
|
|
778
|
+
Shapebookina:{
|
|
779
|
+
background_image:"ImageField",
|
|
780
|
+
overlay:"ShapebookinaOverlay",
|
|
781
|
+
_id:"String",
|
|
782
|
+
createdAt:"Float",
|
|
783
|
+
updatedAt:"Float"
|
|
784
|
+
},
|
|
785
|
+
ShapebpageBooking_sectionContainerGallery_wrapper:{
|
|
786
|
+
gallery_grid:"Shapebgallery",
|
|
787
|
+
see_more_button:"String"
|
|
788
|
+
},
|
|
789
|
+
ShapebpageBooking_sectionContainerTitle_location_wrapper:{
|
|
790
|
+
title:"String",
|
|
791
|
+
location:"String"
|
|
792
|
+
},
|
|
793
|
+
ShapebpageBooking_sectionContainerExtras_addons_wrapperExtras:{
|
|
794
|
+
name:"String",
|
|
795
|
+
icon:"ImageField"
|
|
796
|
+
},
|
|
797
|
+
ShapebpageBooking_sectionContainerExtras_addons_wrapper:{
|
|
798
|
+
extras_heading:"String",
|
|
799
|
+
extras:"ShapebpageBooking_sectionContainerExtras_addons_wrapperExtras"
|
|
800
|
+
},
|
|
801
|
+
ShapebpageBooking_sectionContainerDescription_wrapper:{
|
|
802
|
+
description:"String"
|
|
803
|
+
},
|
|
804
|
+
ShapebpageBooking_sectionContainerLocation_info_wrapper:{
|
|
805
|
+
location_info_heading:"String",
|
|
806
|
+
location_info:"String"
|
|
807
|
+
},
|
|
808
|
+
ShapebpageBooking_sectionContainer:{
|
|
809
|
+
gallery_wrapper:"ShapebpageBooking_sectionContainerGallery_wrapper",
|
|
810
|
+
title_location_wrapper:"ShapebpageBooking_sectionContainerTitle_location_wrapper",
|
|
811
|
+
extras_addons_wrapper:"ShapebpageBooking_sectionContainerExtras_addons_wrapper",
|
|
812
|
+
description_wrapper:"ShapebpageBooking_sectionContainerDescription_wrapper",
|
|
813
|
+
location_info_wrapper:"ShapebpageBooking_sectionContainerLocation_info_wrapper"
|
|
814
|
+
},
|
|
815
|
+
ShapebpageBooking_section:{
|
|
816
|
+
container:"ShapebpageBooking_sectionContainer"
|
|
817
|
+
},
|
|
818
|
+
Shapebpage:{
|
|
819
|
+
booking_section:"ShapebpageBooking_section",
|
|
820
|
+
_id:"String",
|
|
821
|
+
createdAt:"Float",
|
|
822
|
+
updatedAt:"Float"
|
|
823
|
+
},
|
|
508
824
|
Shapecloud_sidebarSidebarMenuCategoryPage:{
|
|
509
825
|
name:"String",
|
|
510
826
|
link:"String"
|
|
@@ -533,6 +849,12 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
533
849
|
createdAt:"Float",
|
|
534
850
|
updatedAt:"Float"
|
|
535
851
|
},
|
|
852
|
+
Shapectabutton:{
|
|
853
|
+
cta:"String",
|
|
854
|
+
_id:"String",
|
|
855
|
+
createdAt:"Float",
|
|
856
|
+
updatedAt:"Float"
|
|
857
|
+
},
|
|
536
858
|
Shapedocs_contentDocumentation_pageContent_containerDoc_content:{
|
|
537
859
|
content:"String"
|
|
538
860
|
},
|
|
@@ -743,7 +1065,7 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
743
1065
|
price:"String",
|
|
744
1066
|
plan_description:"String",
|
|
745
1067
|
feature_list:"Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list",
|
|
746
|
-
cta:"
|
|
1068
|
+
cta:"Shapesecondary_cta"
|
|
747
1069
|
},
|
|
748
1070
|
Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list:{
|
|
749
1071
|
feature:"String"
|
|
@@ -753,7 +1075,7 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
753
1075
|
price:"String",
|
|
754
1076
|
plan_description:"String",
|
|
755
1077
|
feature_list:"Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list",
|
|
756
|
-
cta:"
|
|
1078
|
+
cta:"Shapectabutton"
|
|
757
1079
|
},
|
|
758
1080
|
Shapepricingv1Pricing_sectionPlans_grid:{
|
|
759
1081
|
free_plan:"Shapepricingv1Pricing_sectionPlans_gridFree_plan",
|
|
@@ -809,6 +1131,12 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
809
1131
|
createdAt:"Float",
|
|
810
1132
|
updatedAt:"Float"
|
|
811
1133
|
},
|
|
1134
|
+
Shapesecondary_cta:{
|
|
1135
|
+
cta:"String",
|
|
1136
|
+
_id:"String",
|
|
1137
|
+
createdAt:"Float",
|
|
1138
|
+
updatedAt:"Float"
|
|
1139
|
+
},
|
|
812
1140
|
ShapesupportSectionHeader_wrapper:{
|
|
813
1141
|
title:"String",
|
|
814
1142
|
description:"String"
|
|
@@ -832,6 +1160,27 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
832
1160
|
createdAt:"Float",
|
|
833
1161
|
updatedAt:"Float"
|
|
834
1162
|
},
|
|
1163
|
+
Shapeteee:{
|
|
1164
|
+
_id:"String",
|
|
1165
|
+
createdAt:"Float",
|
|
1166
|
+
updatedAt:"Float"
|
|
1167
|
+
},
|
|
1168
|
+
Shapetest:{
|
|
1169
|
+
rrr:"Shapebgallery",
|
|
1170
|
+
_id:"String",
|
|
1171
|
+
createdAt:"Float",
|
|
1172
|
+
updatedAt:"Float"
|
|
1173
|
+
},
|
|
1174
|
+
Shapetitle_descTitledesc:{
|
|
1175
|
+
title:"String",
|
|
1176
|
+
description:"String"
|
|
1177
|
+
},
|
|
1178
|
+
Shapetitle_desc:{
|
|
1179
|
+
titledesc:"Shapetitle_descTitledesc",
|
|
1180
|
+
_id:"String",
|
|
1181
|
+
createdAt:"Float",
|
|
1182
|
+
updatedAt:"Float"
|
|
1183
|
+
},
|
|
835
1184
|
ShapeusageMain:{
|
|
836
1185
|
title:"String",
|
|
837
1186
|
subtitle:"String",
|
|
@@ -844,6 +1193,205 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
844
1193
|
createdAt:"Float",
|
|
845
1194
|
updatedAt:"Float"
|
|
846
1195
|
},
|
|
1196
|
+
FormregisterRegistration_stepUser_details:{
|
|
1197
|
+
_mocks:"String",
|
|
1198
|
+
username:"FormTextField",
|
|
1199
|
+
password:"FormTextField",
|
|
1200
|
+
full_name:"FormTextField",
|
|
1201
|
+
phone:"FormTextField"
|
|
1202
|
+
},
|
|
1203
|
+
FormregisterRegistration_step:{
|
|
1204
|
+
_mocks:"String",
|
|
1205
|
+
user_details:"FormregisterRegistration_stepUser_details",
|
|
1206
|
+
submit:"FormSubmitField"
|
|
1207
|
+
},
|
|
1208
|
+
Formregister:{
|
|
1209
|
+
_mocks:"String",
|
|
1210
|
+
_version:"VersionField",
|
|
1211
|
+
state_step:"FormVariableField",
|
|
1212
|
+
registration_step:"FormregisterRegistration_step",
|
|
1213
|
+
current_step:"FormVariableField",
|
|
1214
|
+
locale:"String",
|
|
1215
|
+
slug:"String",
|
|
1216
|
+
_id:"String",
|
|
1217
|
+
createdAt:"String",
|
|
1218
|
+
updatedAt:"String",
|
|
1219
|
+
draft_version:"String",
|
|
1220
|
+
json_ld:"String"
|
|
1221
|
+
},
|
|
1222
|
+
FormtestStep_basic_infoBasic_info_group:{
|
|
1223
|
+
_mocks:"String",
|
|
1224
|
+
window_type:"FormRadioTextField",
|
|
1225
|
+
quantity:"FormTextField",
|
|
1226
|
+
location:"FormRadioTextField"
|
|
1227
|
+
},
|
|
1228
|
+
FormtestStep_basic_info:{
|
|
1229
|
+
_mocks:"String",
|
|
1230
|
+
basic_info_group:"FormtestStep_basic_infoBasic_info_group",
|
|
1231
|
+
basic_next:"FormButtonField"
|
|
1232
|
+
},
|
|
1233
|
+
FormtestStep_dimensionsDimensions_group:{
|
|
1234
|
+
_mocks:"String",
|
|
1235
|
+
width_mm:"FormTextField",
|
|
1236
|
+
height_mm:"FormTextField",
|
|
1237
|
+
depth_mm:"FormTextField",
|
|
1238
|
+
opening_direction:"FormRadioTextField",
|
|
1239
|
+
sash_count:"FormTextField"
|
|
1240
|
+
},
|
|
1241
|
+
FormtestStep_dimensions:{
|
|
1242
|
+
_mocks:"String",
|
|
1243
|
+
dimensions_group:"FormtestStep_dimensionsDimensions_group",
|
|
1244
|
+
dimensions_back:"FormButtonField",
|
|
1245
|
+
dimensions_next:"FormButtonField"
|
|
1246
|
+
},
|
|
1247
|
+
FormtestStep_featuresFeatures_group:{
|
|
1248
|
+
_mocks:"String",
|
|
1249
|
+
material:"FormRadioTextField",
|
|
1250
|
+
color:"FormTextField",
|
|
1251
|
+
glazing_type:"FormRadioTextField",
|
|
1252
|
+
thermal_break:"FormBooleanField",
|
|
1253
|
+
soundproofing:"FormBooleanField"
|
|
1254
|
+
},
|
|
1255
|
+
FormtestStep_features:{
|
|
1256
|
+
_mocks:"String",
|
|
1257
|
+
features_group:"FormtestStep_featuresFeatures_group",
|
|
1258
|
+
features_back:"FormButtonField",
|
|
1259
|
+
features_next:"FormButtonField"
|
|
1260
|
+
},
|
|
1261
|
+
FormtestStep_accessoriesAccessories_group:{
|
|
1262
|
+
_mocks:"String",
|
|
1263
|
+
handle_type:"FormRadioTextField",
|
|
1264
|
+
lock_type:"FormRadioTextField",
|
|
1265
|
+
mosquito_net:"FormBooleanField",
|
|
1266
|
+
ventilator:"FormBooleanField",
|
|
1267
|
+
accessories_other:"FormTextField"
|
|
1268
|
+
},
|
|
1269
|
+
FormtestStep_accessories:{
|
|
1270
|
+
_mocks:"String",
|
|
1271
|
+
accessories_group:"FormtestStep_accessoriesAccessories_group",
|
|
1272
|
+
accessories_back:"FormButtonField",
|
|
1273
|
+
accessories_next:"FormButtonField"
|
|
1274
|
+
},
|
|
1275
|
+
FormtestStep_summary:{
|
|
1276
|
+
_mocks:"String",
|
|
1277
|
+
summary_display:"FormDisplayField",
|
|
1278
|
+
summary_back:"FormButtonField",
|
|
1279
|
+
submit:"FormSubmitField"
|
|
1280
|
+
},
|
|
1281
|
+
Formtest:{
|
|
1282
|
+
_mocks:"String",
|
|
1283
|
+
_version:"VersionField",
|
|
1284
|
+
form_step_variable:"FormVariableField",
|
|
1285
|
+
step_basic_info:"FormtestStep_basic_info",
|
|
1286
|
+
step_dimensions:"FormtestStep_dimensions",
|
|
1287
|
+
step_features:"FormtestStep_features",
|
|
1288
|
+
step_accessories:"FormtestStep_accessories",
|
|
1289
|
+
step_summary:"FormtestStep_summary",
|
|
1290
|
+
current_step:"FormVariableField",
|
|
1291
|
+
locale:"String",
|
|
1292
|
+
slug:"String",
|
|
1293
|
+
_id:"String",
|
|
1294
|
+
createdAt:"String",
|
|
1295
|
+
updatedAt:"String",
|
|
1296
|
+
draft_version:"String",
|
|
1297
|
+
json_ld:"String"
|
|
1298
|
+
},
|
|
1299
|
+
ResponseFormregisterUser_details:{
|
|
1300
|
+
username:"String",
|
|
1301
|
+
password:"String",
|
|
1302
|
+
full_name:"String",
|
|
1303
|
+
phone:"String"
|
|
1304
|
+
},
|
|
1305
|
+
ResponseFormregisterRegistration_step:{
|
|
1306
|
+
user_details:"ResponseFormregisterUser_details",
|
|
1307
|
+
submit:"String"
|
|
1308
|
+
},
|
|
1309
|
+
ResponseFormregister:{
|
|
1310
|
+
state_step:"String",
|
|
1311
|
+
registration_step:"ResponseFormregisterRegistration_step",
|
|
1312
|
+
current_step:"String",
|
|
1313
|
+
locale:"String",
|
|
1314
|
+
slug:"String",
|
|
1315
|
+
_id:"String",
|
|
1316
|
+
createdAt:"String",
|
|
1317
|
+
updatedAt:"String",
|
|
1318
|
+
draft_version:"String",
|
|
1319
|
+
json_ld:"String"
|
|
1320
|
+
},
|
|
1321
|
+
ResponseFormtestBasic_info_group:{
|
|
1322
|
+
window_type:"String",
|
|
1323
|
+
quantity:"String",
|
|
1324
|
+
location:"String"
|
|
1325
|
+
},
|
|
1326
|
+
ResponseFormtestStep_basic_info:{
|
|
1327
|
+
basic_info_group:"ResponseFormtestBasic_info_group",
|
|
1328
|
+
basic_next:"String"
|
|
1329
|
+
},
|
|
1330
|
+
ResponseFormtestDimensions_group:{
|
|
1331
|
+
width_mm:"String",
|
|
1332
|
+
height_mm:"String",
|
|
1333
|
+
depth_mm:"String",
|
|
1334
|
+
opening_direction:"String",
|
|
1335
|
+
sash_count:"String"
|
|
1336
|
+
},
|
|
1337
|
+
ResponseFormtestStep_dimensions:{
|
|
1338
|
+
dimensions_group:"ResponseFormtestDimensions_group",
|
|
1339
|
+
dimensions_back:"String",
|
|
1340
|
+
dimensions_next:"String"
|
|
1341
|
+
},
|
|
1342
|
+
ResponseFormtestFeatures_group:{
|
|
1343
|
+
material:"String",
|
|
1344
|
+
color:"String",
|
|
1345
|
+
glazing_type:"String",
|
|
1346
|
+
thermal_break:"Boolean",
|
|
1347
|
+
soundproofing:"Boolean"
|
|
1348
|
+
},
|
|
1349
|
+
ResponseFormtestStep_features:{
|
|
1350
|
+
features_group:"ResponseFormtestFeatures_group",
|
|
1351
|
+
features_back:"String",
|
|
1352
|
+
features_next:"String"
|
|
1353
|
+
},
|
|
1354
|
+
ResponseFormtestAccessories_group:{
|
|
1355
|
+
handle_type:"String",
|
|
1356
|
+
lock_type:"String",
|
|
1357
|
+
mosquito_net:"Boolean",
|
|
1358
|
+
ventilator:"Boolean",
|
|
1359
|
+
accessories_other:"String"
|
|
1360
|
+
},
|
|
1361
|
+
ResponseFormtestStep_accessories:{
|
|
1362
|
+
accessories_group:"ResponseFormtestAccessories_group",
|
|
1363
|
+
accessories_back:"String",
|
|
1364
|
+
accessories_next:"String"
|
|
1365
|
+
},
|
|
1366
|
+
ResponseFormtestStep_summary:{
|
|
1367
|
+
summary_display:"String",
|
|
1368
|
+
summary_back:"String",
|
|
1369
|
+
submit:"String"
|
|
1370
|
+
},
|
|
1371
|
+
ResponseFormtest:{
|
|
1372
|
+
form_step_variable:"String",
|
|
1373
|
+
step_basic_info:"ResponseFormtestStep_basic_info",
|
|
1374
|
+
step_dimensions:"ResponseFormtestStep_dimensions",
|
|
1375
|
+
step_features:"ResponseFormtestStep_features",
|
|
1376
|
+
step_accessories:"ResponseFormtestStep_accessories",
|
|
1377
|
+
step_summary:"ResponseFormtestStep_summary",
|
|
1378
|
+
current_step:"String",
|
|
1379
|
+
locale:"String",
|
|
1380
|
+
slug:"String",
|
|
1381
|
+
_id:"String",
|
|
1382
|
+
createdAt:"String",
|
|
1383
|
+
updatedAt:"String",
|
|
1384
|
+
draft_version:"String",
|
|
1385
|
+
json_ld:"String"
|
|
1386
|
+
},
|
|
1387
|
+
SearchResponsesFormregister:{
|
|
1388
|
+
items:"ResponseFormregister",
|
|
1389
|
+
totalCount:"Int"
|
|
1390
|
+
},
|
|
1391
|
+
SearchResponsesFormtest:{
|
|
1392
|
+
items:"ResponseFormtest",
|
|
1393
|
+
totalCount:"Int"
|
|
1394
|
+
},
|
|
847
1395
|
ID: `scalar.ID` as const
|
|
848
1396
|
}
|
|
849
1397
|
|