@husar.ai/cli 0.2.14 → 0.3.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/MCP_SERVER.md +11 -20
- package/dist/cli.js +5 -1
- package/dist/cli.js.map +1 -1
- package/dist/functions/parser.d.ts +11 -6
- package/dist/functions/parser.js +14 -22
- package/dist/functions/parser.js.map +1 -1
- package/dist/mcp.d.ts +1 -0
- package/dist/mcp.js +509 -91
- package/dist/mcp.js.map +1 -1
- package/dist/types/config.d.ts +7 -0
- package/dist/types/config.js +2 -0
- package/dist/types/config.js.map +1 -0
- package/dist/zeus/const.js +906 -413
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +3973 -1770
- package/dist/zeus/index.js +39 -11
- package/dist/zeus/index.js.map +1 -1
- package/package.json +3 -2
- package/src/cli.ts +6 -11
- package/src/functions/generate.ts +0 -1
- package/src/functions/parser.ts +28 -25
- package/src/mcp.ts +579 -99
- package/src/types/config.ts +7 -0
- package/src/zeus/const.ts +936 -413
- package/src/zeus/index.ts +3854 -1791
- package/dist/scripts/mcp-generate-test.d.ts +0 -1
- package/dist/scripts/mcp-generate-test.js +0 -28
- package/dist/scripts/mcp-generate-test.js.map +0 -1
- package/src/scripts/mcp-generate-test.ts +0 -34
package/src/zeus/const.ts
CHANGED
|
@@ -28,11 +28,168 @@ export const AllTypesProps: Record<string,any> = {
|
|
|
28
28
|
|
|
29
29
|
},
|
|
30
30
|
CMSType: "enum" as const,
|
|
31
|
+
Query:{
|
|
32
|
+
listPaginateddocs:{
|
|
33
|
+
page:"PageInput",
|
|
34
|
+
rootParams:"RootParamsInput",
|
|
35
|
+
sort:"docsSortInput",
|
|
36
|
+
filter:"docsFilterInput"
|
|
37
|
+
},
|
|
38
|
+
onedocsBySlug:{
|
|
39
|
+
rootParams:"RootParamsInput"
|
|
40
|
+
},
|
|
41
|
+
oneAsScalardocsBySlug:{
|
|
42
|
+
rootParams:"RootParamsInput"
|
|
43
|
+
},
|
|
44
|
+
variantsdocsBySlug:{
|
|
45
|
+
|
|
46
|
+
},
|
|
47
|
+
oneViewaccount:{
|
|
48
|
+
rootParams:"RootParamsInput"
|
|
49
|
+
},
|
|
50
|
+
oneAsScalarViewaccount:{
|
|
51
|
+
rootParams:"RootParamsInput"
|
|
52
|
+
},
|
|
53
|
+
oneViewfeatures:{
|
|
54
|
+
rootParams:"RootParamsInput"
|
|
55
|
+
},
|
|
56
|
+
oneAsScalarViewfeatures:{
|
|
57
|
+
rootParams:"RootParamsInput"
|
|
58
|
+
},
|
|
59
|
+
oneViewhomepage:{
|
|
60
|
+
rootParams:"RootParamsInput"
|
|
61
|
+
},
|
|
62
|
+
oneAsScalarViewhomepage:{
|
|
63
|
+
rootParams:"RootParamsInput"
|
|
64
|
+
},
|
|
65
|
+
oneViewhowitworks:{
|
|
66
|
+
rootParams:"RootParamsInput"
|
|
67
|
+
},
|
|
68
|
+
oneAsScalarViewhowitworks:{
|
|
69
|
+
rootParams:"RootParamsInput"
|
|
70
|
+
},
|
|
71
|
+
oneViewpricing:{
|
|
72
|
+
rootParams:"RootParamsInput"
|
|
73
|
+
},
|
|
74
|
+
oneAsScalarViewpricing:{
|
|
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
|
+
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
ModelEnum: "enum" as const,
|
|
129
|
+
ViewEnum: "enum" as const,
|
|
31
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
|
+
},
|
|
32
181
|
RootParamsInput:{
|
|
33
182
|
|
|
34
183
|
},
|
|
35
184
|
RootParamsEnum: "enum" as const,
|
|
185
|
+
docsSortInput:{
|
|
186
|
+
slug:"Sort",
|
|
187
|
+
createdAt:"Sort",
|
|
188
|
+
updatedAt:"Sort"
|
|
189
|
+
},
|
|
190
|
+
docsFilterInput:{
|
|
191
|
+
slug:"FilterInputString"
|
|
192
|
+
},
|
|
36
193
|
ID: `scalar.ID` as const
|
|
37
194
|
}
|
|
38
195
|
|
|
@@ -129,9 +286,6 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
129
286
|
total:"Int",
|
|
130
287
|
hasNext:"Boolean"
|
|
131
288
|
},
|
|
132
|
-
Mutation:{
|
|
133
|
-
heartbeat:"String"
|
|
134
|
-
},
|
|
135
289
|
RootParamsAdminType: `scalar.RootParamsAdminType` as const,
|
|
136
290
|
Shape:{
|
|
137
291
|
name:"String",
|
|
@@ -253,562 +407,931 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
253
407
|
listShapes:"Shape",
|
|
254
408
|
tailwind:"TailwindConfiguration",
|
|
255
409
|
listForms:"Form",
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
410
|
+
listPaginateddocs:"docs__Connection",
|
|
411
|
+
onedocsBySlug:"docs",
|
|
412
|
+
oneAsScalardocsBySlug:"ModelAsScalar",
|
|
413
|
+
variantsdocsBySlug:"docs",
|
|
414
|
+
fieldSetdocs:"String",
|
|
415
|
+
modeldocs:"ModelNavigationCompiled",
|
|
416
|
+
previewFieldsdocs:"ModelNavigationCompiled",
|
|
417
|
+
fieldSetShapeaplikacja_g:"String",
|
|
418
|
+
modelShapeaplikacja_g:"ModelNavigationCompiled",
|
|
419
|
+
previewFieldsShapeaplikacja_g:"ModelNavigationCompiled",
|
|
420
|
+
oneShapeaplikacja_g:"Shapeaplikacja_g",
|
|
421
|
+
fieldSetShapecloud_sidebar:"String",
|
|
422
|
+
modelShapecloud_sidebar:"ModelNavigationCompiled",
|
|
423
|
+
previewFieldsShapecloud_sidebar:"ModelNavigationCompiled",
|
|
424
|
+
oneShapecloud_sidebar:"Shapecloud_sidebar",
|
|
425
|
+
fieldSetShapecta_boom:"String",
|
|
426
|
+
modelShapecta_boom:"ModelNavigationCompiled",
|
|
427
|
+
previewFieldsShapecta_boom:"ModelNavigationCompiled",
|
|
428
|
+
oneShapecta_boom:"Shapecta_boom",
|
|
429
|
+
fieldSetShapectabutton:"String",
|
|
430
|
+
modelShapectabutton:"ModelNavigationCompiled",
|
|
431
|
+
previewFieldsShapectabutton:"ModelNavigationCompiled",
|
|
432
|
+
oneShapectabutton:"Shapectabutton",
|
|
433
|
+
fieldSetShapedocs_content:"String",
|
|
434
|
+
modelShapedocs_content:"ModelNavigationCompiled",
|
|
435
|
+
previewFieldsShapedocs_content:"ModelNavigationCompiled",
|
|
436
|
+
oneShapedocs_content:"Shapedocs_content",
|
|
437
|
+
fieldSetShapedocs_nav:"String",
|
|
438
|
+
modelShapedocs_nav:"ModelNavigationCompiled",
|
|
439
|
+
previewFieldsShapedocs_nav:"ModelNavigationCompiled",
|
|
440
|
+
oneShapedocs_nav:"Shapedocs_nav",
|
|
441
|
+
fieldSetShapefeaturepresentation:"String",
|
|
442
|
+
modelShapefeaturepresentation:"ModelNavigationCompiled",
|
|
443
|
+
previewFieldsShapefeaturepresentation:"ModelNavigationCompiled",
|
|
444
|
+
oneShapefeaturepresentation:"Shapefeaturepresentation",
|
|
445
|
+
fieldSetShapefoot:"String",
|
|
446
|
+
modelShapefoot:"ModelNavigationCompiled",
|
|
447
|
+
previewFieldsShapefoot:"ModelNavigationCompiled",
|
|
448
|
+
oneShapefoot:"Shapefoot",
|
|
449
|
+
fieldSetShapehero:"String",
|
|
450
|
+
modelShapehero:"ModelNavigationCompiled",
|
|
451
|
+
previewFieldsShapehero:"ModelNavigationCompiled",
|
|
452
|
+
oneShapehero:"Shapehero",
|
|
453
|
+
fieldSetShapeherox:"String",
|
|
454
|
+
modelShapeherox:"ModelNavigationCompiled",
|
|
455
|
+
previewFieldsShapeherox:"ModelNavigationCompiled",
|
|
456
|
+
oneShapeherox:"Shapeherox",
|
|
457
|
+
fieldSetShapelista_projektow:"String",
|
|
458
|
+
modelShapelista_projektow:"ModelNavigationCompiled",
|
|
459
|
+
previewFieldsShapelista_projektow:"ModelNavigationCompiled",
|
|
460
|
+
oneShapelista_projektow:"Shapelista_projektow",
|
|
461
|
+
fieldSetShapenav:"String",
|
|
462
|
+
modelShapenav:"ModelNavigationCompiled",
|
|
463
|
+
previewFieldsShapenav:"ModelNavigationCompiled",
|
|
464
|
+
oneShapenav:"Shapenav",
|
|
465
|
+
fieldSetShapenewshape:"String",
|
|
466
|
+
modelShapenewshape:"ModelNavigationCompiled",
|
|
467
|
+
previewFieldsShapenewshape:"ModelNavigationCompiled",
|
|
468
|
+
oneShapenewshape:"Shapenewshape",
|
|
469
|
+
fieldSetShapepricing_table:"String",
|
|
470
|
+
modelShapepricing_table:"ModelNavigationCompiled",
|
|
471
|
+
previewFieldsShapepricing_table:"ModelNavigationCompiled",
|
|
472
|
+
oneShapepricing_table:"Shapepricing_table",
|
|
473
|
+
fieldSetShapepricingv1:"String",
|
|
474
|
+
modelShapepricingv1:"ModelNavigationCompiled",
|
|
475
|
+
previewFieldsShapepricingv1:"ModelNavigationCompiled",
|
|
476
|
+
oneShapepricingv1:"Shapepricingv1",
|
|
477
|
+
fieldSetShapeprofile_info:"String",
|
|
478
|
+
modelShapeprofile_info:"ModelNavigationCompiled",
|
|
479
|
+
previewFieldsShapeprofile_info:"ModelNavigationCompiled",
|
|
480
|
+
oneShapeprofile_info:"Shapeprofile_info",
|
|
481
|
+
fieldSetShapesecondary_cta:"String",
|
|
482
|
+
modelShapesecondary_cta:"ModelNavigationCompiled",
|
|
483
|
+
previewFieldsShapesecondary_cta:"ModelNavigationCompiled",
|
|
484
|
+
oneShapesecondary_cta:"Shapesecondary_cta",
|
|
485
|
+
fieldSetShapesupport:"String",
|
|
486
|
+
modelShapesupport:"ModelNavigationCompiled",
|
|
487
|
+
previewFieldsShapesupport:"ModelNavigationCompiled",
|
|
488
|
+
oneShapesupport:"Shapesupport",
|
|
489
|
+
fieldSetShapetitle_desc:"String",
|
|
490
|
+
modelShapetitle_desc:"ModelNavigationCompiled",
|
|
491
|
+
previewFieldsShapetitle_desc:"ModelNavigationCompiled",
|
|
492
|
+
oneShapetitle_desc:"Shapetitle_desc",
|
|
493
|
+
fieldSetShapeusage:"String",
|
|
494
|
+
modelShapeusage:"ModelNavigationCompiled",
|
|
495
|
+
previewFieldsShapeusage:"ModelNavigationCompiled",
|
|
496
|
+
oneShapeusage:"Shapeusage",
|
|
497
|
+
variantsViewaccount:"Viewaccount",
|
|
498
|
+
fieldSetViewaccount:"String",
|
|
499
|
+
modelViewaccount:"ModelNavigationCompiled",
|
|
500
|
+
previewFieldsViewaccount:"ModelNavigationCompiled",
|
|
501
|
+
oneViewaccount:"Viewaccount",
|
|
502
|
+
oneAsScalarViewaccount:"ViewAsScalar",
|
|
503
|
+
variantsViewfeatures:"Viewfeatures",
|
|
504
|
+
fieldSetViewfeatures:"String",
|
|
505
|
+
modelViewfeatures:"ModelNavigationCompiled",
|
|
506
|
+
previewFieldsViewfeatures:"ModelNavigationCompiled",
|
|
507
|
+
oneViewfeatures:"Viewfeatures",
|
|
508
|
+
oneAsScalarViewfeatures:"ViewAsScalar",
|
|
509
|
+
variantsViewhomepage:"Viewhomepage",
|
|
510
|
+
fieldSetViewhomepage:"String",
|
|
511
|
+
modelViewhomepage:"ModelNavigationCompiled",
|
|
512
|
+
previewFieldsViewhomepage:"ModelNavigationCompiled",
|
|
513
|
+
oneViewhomepage:"Viewhomepage",
|
|
514
|
+
oneAsScalarViewhomepage:"ViewAsScalar",
|
|
515
|
+
variantsViewhowitworks:"Viewhowitworks",
|
|
516
|
+
fieldSetViewhowitworks:"String",
|
|
517
|
+
modelViewhowitworks:"ModelNavigationCompiled",
|
|
518
|
+
previewFieldsViewhowitworks:"ModelNavigationCompiled",
|
|
519
|
+
oneViewhowitworks:"Viewhowitworks",
|
|
520
|
+
oneAsScalarViewhowitworks:"ViewAsScalar",
|
|
521
|
+
variantsViewpricing:"Viewpricing",
|
|
522
|
+
fieldSetViewpricing:"String",
|
|
523
|
+
modelViewpricing:"ModelNavigationCompiled",
|
|
524
|
+
previewFieldsViewpricing:"ModelNavigationCompiled",
|
|
525
|
+
oneViewpricing:"Viewpricing",
|
|
526
|
+
oneAsScalarViewpricing:"ViewAsScalar",
|
|
527
|
+
variantsViewttt:"Viewttt",
|
|
528
|
+
fieldSetViewttt:"String",
|
|
529
|
+
modelViewttt:"ModelNavigationCompiled",
|
|
530
|
+
previewFieldsViewttt:"ModelNavigationCompiled",
|
|
531
|
+
oneViewttt:"Viewttt",
|
|
532
|
+
oneAsScalarViewttt:"ViewAsScalar",
|
|
533
|
+
variantsFormregister:"Formregister",
|
|
534
|
+
fieldSetFormregister:"String",
|
|
535
|
+
modelFormregister:"ModelNavigationCompiled",
|
|
536
|
+
previewFieldsFormregister:"ModelNavigationCompiled",
|
|
537
|
+
oneFormregister:"Formregister",
|
|
538
|
+
oneAsScalarFormregister:"FormAsScalar",
|
|
539
|
+
variantsFormtest:"Formtest",
|
|
540
|
+
fieldSetFormtest:"String",
|
|
541
|
+
modelFormtest:"ModelNavigationCompiled",
|
|
542
|
+
previewFieldsFormtest:"ModelNavigationCompiled",
|
|
543
|
+
oneFormtest:"Formtest",
|
|
544
|
+
oneAsScalarFormtest:"FormAsScalar",
|
|
545
|
+
responsesFormregister:"SearchResponsesFormregister",
|
|
546
|
+
responseFormregister:"ResponseFormregister",
|
|
547
|
+
responseFieldSetFormregister:"String",
|
|
548
|
+
responsesFormtest:"SearchResponsesFormtest",
|
|
549
|
+
responseFormtest:"ResponseFormtest",
|
|
550
|
+
responseFieldSetFormtest:"String"
|
|
300
551
|
},
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
552
|
+
Mutation:{
|
|
553
|
+
heartbeat:"String",
|
|
554
|
+
submitResponseFormregister:"Boolean",
|
|
555
|
+
removeResponseFormregister:"Boolean",
|
|
556
|
+
submitResponseFormtest:"Boolean",
|
|
557
|
+
removeResponseFormtest:"Boolean"
|
|
306
558
|
},
|
|
307
|
-
|
|
308
|
-
|
|
559
|
+
RootParamsType:{
|
|
560
|
+
_version:"String",
|
|
561
|
+
locale:"String"
|
|
309
562
|
},
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
message:"String"
|
|
563
|
+
docs__Connection:{
|
|
564
|
+
items:"docs",
|
|
565
|
+
pageInfo:"PageInfo"
|
|
314
566
|
},
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
567
|
+
docs:{
|
|
568
|
+
_version:"VersionField",
|
|
569
|
+
title:"String",
|
|
570
|
+
seotitle:"String",
|
|
571
|
+
sortid:"Float",
|
|
572
|
+
metadesc:"String",
|
|
573
|
+
main_category:"String",
|
|
574
|
+
content:"String",
|
|
575
|
+
video:"VideoField",
|
|
576
|
+
locale:"String",
|
|
577
|
+
slug:"String",
|
|
578
|
+
_id:"String",
|
|
579
|
+
createdAt:"Float",
|
|
580
|
+
updatedAt:"Float",
|
|
581
|
+
draft_version:"Boolean",
|
|
582
|
+
json_ld:"String"
|
|
583
|
+
},
|
|
584
|
+
ViewaccountMain:{
|
|
585
|
+
profile:"Shapeprofile_info",
|
|
586
|
+
projects:"Shapelista_projektow"
|
|
587
|
+
},
|
|
588
|
+
Viewaccount:{
|
|
589
|
+
_version:"VersionField",
|
|
590
|
+
main:"ViewaccountMain",
|
|
591
|
+
locale:"String",
|
|
592
|
+
slug:"String",
|
|
593
|
+
_id:"String",
|
|
594
|
+
createdAt:"Float",
|
|
595
|
+
updatedAt:"Float",
|
|
596
|
+
draft_version:"Boolean",
|
|
597
|
+
json_ld:"String"
|
|
598
|
+
},
|
|
599
|
+
ViewfeaturesMain:{
|
|
600
|
+
auto_translation:"Shapefeaturepresentation",
|
|
601
|
+
ai_component:"Shapefeaturepresentation"
|
|
602
|
+
},
|
|
603
|
+
Viewfeatures:{
|
|
604
|
+
_version:"VersionField",
|
|
605
|
+
main:"ViewfeaturesMain",
|
|
606
|
+
locale:"String",
|
|
607
|
+
slug:"String",
|
|
608
|
+
_id:"String",
|
|
609
|
+
createdAt:"Float",
|
|
610
|
+
updatedAt:"Float",
|
|
611
|
+
draft_version:"Boolean",
|
|
612
|
+
json_ld:"String"
|
|
613
|
+
},
|
|
614
|
+
ViewhomepageCotContain:{
|
|
615
|
+
header:"Shapetitle_desc"
|
|
616
|
+
},
|
|
617
|
+
ViewhomepageCotFeatures:{
|
|
618
|
+
feat:"Shapefeaturepresentation"
|
|
619
|
+
},
|
|
620
|
+
ViewhomepageCot:{
|
|
621
|
+
contain:"ViewhomepageCotContain",
|
|
622
|
+
features:"ViewhomepageCotFeatures"
|
|
623
|
+
},
|
|
624
|
+
Viewhomepage:{
|
|
625
|
+
_version:"VersionField",
|
|
626
|
+
nav:"Shapenav",
|
|
627
|
+
main:"Shapehero",
|
|
628
|
+
hero:"Shapeherox",
|
|
629
|
+
cot:"ViewhomepageCot",
|
|
630
|
+
pricing:"Shapepricingv1",
|
|
631
|
+
footer:"Shapefoot",
|
|
632
|
+
locale:"String",
|
|
633
|
+
slug:"String",
|
|
634
|
+
_id:"String",
|
|
635
|
+
createdAt:"Float",
|
|
636
|
+
updatedAt:"Float",
|
|
637
|
+
draft_version:"Boolean",
|
|
638
|
+
json_ld:"String"
|
|
321
639
|
},
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
description:"
|
|
325
|
-
|
|
326
|
-
button:"Shapeexamples_contactformSectionSectionButton",
|
|
327
|
-
link:"Shapeexamples_contactformSectionSectionLink"
|
|
640
|
+
ViewhowitworksFeature_control:{
|
|
641
|
+
title:"String",
|
|
642
|
+
description:"String",
|
|
643
|
+
image:"ImageField"
|
|
328
644
|
},
|
|
329
|
-
|
|
330
|
-
|
|
645
|
+
Viewhowitworks:{
|
|
646
|
+
_version:"VersionField",
|
|
647
|
+
title:"String",
|
|
648
|
+
feature_control:"ViewhowitworksFeature_control",
|
|
649
|
+
locale:"String",
|
|
650
|
+
slug:"String",
|
|
651
|
+
_id:"String",
|
|
652
|
+
createdAt:"Float",
|
|
653
|
+
updatedAt:"Float",
|
|
654
|
+
draft_version:"Boolean",
|
|
655
|
+
json_ld:"String"
|
|
656
|
+
},
|
|
657
|
+
Viewpricing:{
|
|
658
|
+
_version:"VersionField",
|
|
659
|
+
pricing:"Shapepricingv1",
|
|
660
|
+
table:"Shapepricing_table",
|
|
661
|
+
cta:"Shapenewshape",
|
|
662
|
+
locale:"String",
|
|
663
|
+
slug:"String",
|
|
664
|
+
_id:"String",
|
|
665
|
+
createdAt:"Float",
|
|
666
|
+
updatedAt:"Float",
|
|
667
|
+
draft_version:"Boolean",
|
|
668
|
+
json_ld:"String"
|
|
331
669
|
},
|
|
332
|
-
|
|
333
|
-
|
|
670
|
+
Viewttt:{
|
|
671
|
+
_version:"VersionField",
|
|
672
|
+
locale:"String",
|
|
673
|
+
slug:"String",
|
|
334
674
|
_id:"String",
|
|
335
675
|
createdAt:"Float",
|
|
336
|
-
updatedAt:"Float"
|
|
676
|
+
updatedAt:"Float",
|
|
677
|
+
draft_version:"Boolean",
|
|
678
|
+
json_ld:"String"
|
|
337
679
|
},
|
|
338
|
-
|
|
339
|
-
|
|
680
|
+
Shapeaplikacja_gNavbarMenu:{
|
|
681
|
+
name:"String",
|
|
682
|
+
href:"String"
|
|
340
683
|
},
|
|
341
|
-
|
|
342
|
-
|
|
684
|
+
Shapeaplikacja_gNavbar:{
|
|
685
|
+
logo:"String",
|
|
686
|
+
menu:"Shapeaplikacja_gNavbarMenu"
|
|
343
687
|
},
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
688
|
+
Shapeaplikacja_gHero:{
|
|
689
|
+
heading:"String",
|
|
690
|
+
subheading:"String"
|
|
347
691
|
},
|
|
348
|
-
|
|
349
|
-
|
|
692
|
+
Shapeaplikacja_gExplainer_video:{
|
|
693
|
+
title:"String",
|
|
694
|
+
description:"String",
|
|
695
|
+
video:"VideoField"
|
|
350
696
|
},
|
|
351
|
-
|
|
352
|
-
|
|
697
|
+
Shapeaplikacja_gVideo_list:{
|
|
698
|
+
title:"String",
|
|
699
|
+
description:"String",
|
|
700
|
+
video:"VideoField"
|
|
353
701
|
},
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
feature_description_1:"Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_description_1"
|
|
702
|
+
Shapeaplikacja_gStatsItems:{
|
|
703
|
+
label:"String",
|
|
704
|
+
value:"Float"
|
|
358
705
|
},
|
|
359
|
-
|
|
360
|
-
|
|
706
|
+
Shapeaplikacja_gStats:{
|
|
707
|
+
items:"Shapeaplikacja_gStatsItems"
|
|
361
708
|
},
|
|
362
|
-
|
|
363
|
-
|
|
709
|
+
Shapeaplikacja_gTestimonials:{
|
|
710
|
+
name:"String",
|
|
711
|
+
text:"String"
|
|
364
712
|
},
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
713
|
+
Shapeaplikacja_gCall_to_action:{
|
|
714
|
+
heading:"String",
|
|
715
|
+
description:"String",
|
|
716
|
+
button_text:"String"
|
|
369
717
|
},
|
|
370
|
-
|
|
371
|
-
|
|
718
|
+
Shapeaplikacja_gFooterLinks:{
|
|
719
|
+
label:"String",
|
|
720
|
+
href:"String"
|
|
372
721
|
},
|
|
373
|
-
|
|
374
|
-
|
|
722
|
+
Shapeaplikacja_gFooter:{
|
|
723
|
+
copyright:"String",
|
|
724
|
+
links:"Shapeaplikacja_gFooterLinks"
|
|
725
|
+
},
|
|
726
|
+
Shapeaplikacja_g:{
|
|
727
|
+
navbar:"Shapeaplikacja_gNavbar",
|
|
728
|
+
hero:"Shapeaplikacja_gHero",
|
|
729
|
+
explainer_video:"Shapeaplikacja_gExplainer_video",
|
|
730
|
+
video_list:"Shapeaplikacja_gVideo_list",
|
|
731
|
+
stats:"Shapeaplikacja_gStats",
|
|
732
|
+
testimonials:"Shapeaplikacja_gTestimonials",
|
|
733
|
+
call_to_action:"Shapeaplikacja_gCall_to_action",
|
|
734
|
+
footer:"Shapeaplikacja_gFooter",
|
|
735
|
+
_id:"String",
|
|
736
|
+
createdAt:"Float",
|
|
737
|
+
updatedAt:"Float"
|
|
375
738
|
},
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
feature_description_3:"Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_description_3"
|
|
739
|
+
Shapecloud_sidebarSidebarMenuCategoryPage:{
|
|
740
|
+
name:"String",
|
|
741
|
+
link:"String"
|
|
380
742
|
},
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
media_2:"Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2",
|
|
384
|
-
media_3:"Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3"
|
|
743
|
+
Shapecloud_sidebarSidebarMenuCategory:{
|
|
744
|
+
page:"Shapecloud_sidebarSidebarMenuCategoryPage"
|
|
385
745
|
},
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
746
|
+
Shapecloud_sidebarSidebarMenu:{
|
|
747
|
+
logo:"ImageField",
|
|
748
|
+
category:"Shapecloud_sidebarSidebarMenuCategory"
|
|
389
749
|
},
|
|
390
|
-
|
|
391
|
-
|
|
750
|
+
Shapecloud_sidebarSidebarBottom_menuLogout:{
|
|
751
|
+
name:"String",
|
|
752
|
+
link:"String"
|
|
753
|
+
},
|
|
754
|
+
Shapecloud_sidebarSidebarBottom_menu:{
|
|
755
|
+
logout:"Shapecloud_sidebarSidebarBottom_menuLogout"
|
|
392
756
|
},
|
|
393
|
-
|
|
394
|
-
|
|
757
|
+
Shapecloud_sidebarSidebar:{
|
|
758
|
+
menu:"Shapecloud_sidebarSidebarMenu",
|
|
759
|
+
bottom_menu:"Shapecloud_sidebarSidebarBottom_menu"
|
|
760
|
+
},
|
|
761
|
+
Shapecloud_sidebar:{
|
|
762
|
+
sidebar:"Shapecloud_sidebarSidebar",
|
|
395
763
|
_id:"String",
|
|
396
764
|
createdAt:"Float",
|
|
397
765
|
updatedAt:"Float"
|
|
398
766
|
},
|
|
399
|
-
|
|
400
|
-
|
|
767
|
+
Shapecta_boomSectionContentCentered_contentBadge:{
|
|
768
|
+
dot:"String",
|
|
769
|
+
badge_text:"String"
|
|
401
770
|
},
|
|
402
|
-
|
|
403
|
-
description:"String"
|
|
404
|
-
},
|
|
405
|
-
Shapeexamples_herosectionSectionSectionSectionLink:{
|
|
771
|
+
Shapecta_boomSectionContentCentered_contentCta_blockCta_primary:{
|
|
406
772
|
cta:"String",
|
|
407
773
|
href:"String"
|
|
408
774
|
},
|
|
409
|
-
|
|
775
|
+
Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary:{
|
|
410
776
|
cta:"String",
|
|
411
777
|
href:"String"
|
|
412
778
|
},
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
779
|
+
Shapecta_boomSectionContentCentered_contentCta_block:{
|
|
780
|
+
cta_primary:"Shapecta_boomSectionContentCentered_contentCta_blockCta_primary",
|
|
781
|
+
cta_secondary:"Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary"
|
|
416
782
|
},
|
|
417
|
-
|
|
418
|
-
|
|
783
|
+
Shapecta_boomSectionContentCentered_content:{
|
|
784
|
+
badge:"Shapecta_boomSectionContentCentered_contentBadge",
|
|
785
|
+
title:"String",
|
|
786
|
+
gradient_subtitle:"String",
|
|
787
|
+
description:"String",
|
|
788
|
+
cta_block:"Shapecta_boomSectionContentCentered_contentCta_block",
|
|
789
|
+
footer_note:"String"
|
|
419
790
|
},
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
description:"Shapeexamples_herosectionSectionSectionDescription",
|
|
423
|
-
section:"Shapeexamples_herosectionSectionSectionSection",
|
|
424
|
-
media:"Shapeexamples_herosectionSectionSectionMedia"
|
|
791
|
+
Shapecta_boomSectionContent:{
|
|
792
|
+
centered_content:"Shapecta_boomSectionContentCentered_content"
|
|
425
793
|
},
|
|
426
|
-
|
|
427
|
-
|
|
794
|
+
Shapecta_boomSection:{
|
|
795
|
+
content:"Shapecta_boomSectionContent"
|
|
428
796
|
},
|
|
429
|
-
|
|
430
|
-
section:"
|
|
797
|
+
Shapecta_boom:{
|
|
798
|
+
section:"Shapecta_boomSection",
|
|
431
799
|
_id:"String",
|
|
432
800
|
createdAt:"Float",
|
|
433
801
|
updatedAt:"Float"
|
|
434
802
|
},
|
|
435
|
-
|
|
436
|
-
subtitle:"String"
|
|
437
|
-
},
|
|
438
|
-
Shapeexamples_newslettersignupSectionSectionDescription:{
|
|
439
|
-
description:"String"
|
|
440
|
-
},
|
|
441
|
-
Shapeexamples_newslettersignupSectionSectionFormButton:{
|
|
442
|
-
button_text:"String"
|
|
443
|
-
},
|
|
444
|
-
Shapeexamples_newslettersignupSectionSectionForm:{
|
|
445
|
-
email:"String",
|
|
446
|
-
button:"Shapeexamples_newslettersignupSectionSectionFormButton"
|
|
447
|
-
},
|
|
448
|
-
Shapeexamples_newslettersignupSectionSectionDescription_2Link:{
|
|
803
|
+
Shapectabutton:{
|
|
449
804
|
cta:"String",
|
|
450
|
-
href:"String"
|
|
451
|
-
},
|
|
452
|
-
Shapeexamples_newslettersignupSectionSectionDescription_2:{
|
|
453
|
-
description:"String",
|
|
454
|
-
link:"Shapeexamples_newslettersignupSectionSectionDescription_2Link"
|
|
455
|
-
},
|
|
456
|
-
Shapeexamples_newslettersignupSectionSection:{
|
|
457
|
-
heading:"Shapeexamples_newslettersignupSectionSectionHeading",
|
|
458
|
-
description:"Shapeexamples_newslettersignupSectionSectionDescription",
|
|
459
|
-
form:"Shapeexamples_newslettersignupSectionSectionForm",
|
|
460
|
-
description_2:"Shapeexamples_newslettersignupSectionSectionDescription_2"
|
|
461
|
-
},
|
|
462
|
-
Shapeexamples_newslettersignupSection:{
|
|
463
|
-
section:"Shapeexamples_newslettersignupSectionSection"
|
|
464
|
-
},
|
|
465
|
-
Shapeexamples_newslettersignup:{
|
|
466
|
-
section:"Shapeexamples_newslettersignupSection",
|
|
467
805
|
_id:"String",
|
|
468
806
|
createdAt:"Float",
|
|
469
807
|
updatedAt:"Float"
|
|
470
808
|
},
|
|
471
|
-
|
|
472
|
-
subtitle:"String"
|
|
473
|
-
},
|
|
474
|
-
Shapeexamples_pricingplansSectionSectionHeaderPricing_description:{
|
|
475
|
-
description:"String"
|
|
476
|
-
},
|
|
477
|
-
Shapeexamples_pricingplansSectionSectionHeader:{
|
|
478
|
-
pricing_title:"Shapeexamples_pricingplansSectionSectionHeaderPricing_title",
|
|
479
|
-
pricing_description:"Shapeexamples_pricingplansSectionSectionHeaderPricing_description"
|
|
480
|
-
},
|
|
481
|
-
Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_name_1:{
|
|
482
|
-
h3:"String"
|
|
483
|
-
},
|
|
484
|
-
Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSectionPlan_price_1:{
|
|
809
|
+
Shapedocs_contentDocumentation_pageContent_containerDoc_content:{
|
|
485
810
|
content:"String"
|
|
486
811
|
},
|
|
487
|
-
|
|
488
|
-
|
|
812
|
+
Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container:{
|
|
813
|
+
scrollspy_title:"String",
|
|
814
|
+
scrollspy_list:"String"
|
|
489
815
|
},
|
|
490
|
-
|
|
491
|
-
|
|
816
|
+
Shapedocs_contentDocumentation_pageContent_containerScrollspy:{
|
|
817
|
+
scrollspy_container:"Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"
|
|
492
818
|
},
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
819
|
+
Shapedocs_contentDocumentation_pageContent_container:{
|
|
820
|
+
doc_content:"Shapedocs_contentDocumentation_pageContent_containerDoc_content",
|
|
821
|
+
scrollspy:"Shapedocs_contentDocumentation_pageContent_containerScrollspy"
|
|
496
822
|
},
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
section:"Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSection",
|
|
500
|
-
list:"Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderList",
|
|
501
|
-
plan_cta_1:"Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_cta_1"
|
|
823
|
+
Shapedocs_contentDocumentation_page:{
|
|
824
|
+
content_container:"Shapedocs_contentDocumentation_pageContent_container"
|
|
502
825
|
},
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
826
|
+
Shapedocs_content:{
|
|
827
|
+
documentation_page:"Shapedocs_contentDocumentation_page",
|
|
828
|
+
_id:"String",
|
|
829
|
+
createdAt:"Float",
|
|
830
|
+
updatedAt:"Float"
|
|
508
831
|
},
|
|
509
|
-
|
|
510
|
-
|
|
832
|
+
Shapedocs_navMainListChildrenCategory:{
|
|
833
|
+
name:"String",
|
|
834
|
+
link:"String"
|
|
511
835
|
},
|
|
512
|
-
|
|
513
|
-
|
|
836
|
+
Shapedocs_navMainListChildren:{
|
|
837
|
+
category:"Shapedocs_navMainListChildrenCategory"
|
|
514
838
|
},
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
839
|
+
Shapedocs_navMainList:{
|
|
840
|
+
title:"String",
|
|
841
|
+
children:"Shapedocs_navMainListChildren"
|
|
518
842
|
},
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
section:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Section",
|
|
522
|
-
list:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2List",
|
|
523
|
-
plan_cta_2:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_cta_2"
|
|
843
|
+
Shapedocs_navMain:{
|
|
844
|
+
list:"Shapedocs_navMainList"
|
|
524
845
|
},
|
|
525
|
-
|
|
526
|
-
|
|
846
|
+
Shapedocs_nav:{
|
|
847
|
+
main:"Shapedocs_navMain",
|
|
848
|
+
_id:"String",
|
|
849
|
+
createdAt:"Float",
|
|
850
|
+
updatedAt:"Float"
|
|
527
851
|
},
|
|
528
|
-
|
|
852
|
+
ShapefeaturepresentationMain:{
|
|
853
|
+
title:"String",
|
|
854
|
+
subtitle:"String",
|
|
529
855
|
content:"String"
|
|
530
856
|
},
|
|
531
|
-
|
|
532
|
-
|
|
857
|
+
Shapefeaturepresentation:{
|
|
858
|
+
main:"ShapefeaturepresentationMain",
|
|
859
|
+
_id:"String",
|
|
860
|
+
createdAt:"Float",
|
|
861
|
+
updatedAt:"Float"
|
|
533
862
|
},
|
|
534
|
-
|
|
535
|
-
|
|
863
|
+
ShapefootFooterFooter_containerFooter_links:{
|
|
864
|
+
privacy_policy:"String",
|
|
865
|
+
terms_of_service:"String",
|
|
866
|
+
contact_us:"String"
|
|
536
867
|
},
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
868
|
+
ShapefootFooterFooter_container:{
|
|
869
|
+
footer_logo:"String",
|
|
870
|
+
footer_links:"ShapefootFooterFooter_containerFooter_links",
|
|
871
|
+
footer_copy:"String"
|
|
540
872
|
},
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
section:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Section",
|
|
544
|
-
list:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3List",
|
|
545
|
-
plan_cta_3:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_cta_3"
|
|
873
|
+
ShapefootFooter:{
|
|
874
|
+
footer_container:"ShapefootFooterFooter_container"
|
|
546
875
|
},
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
876
|
+
Shapefoot:{
|
|
877
|
+
footer:"ShapefootFooter",
|
|
878
|
+
_id:"String",
|
|
879
|
+
createdAt:"Float",
|
|
880
|
+
updatedAt:"Float"
|
|
551
881
|
},
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
md_gridcols3:"Shapeexamples_pricingplansSectionSectionMd_gridcols3"
|
|
882
|
+
ShapeheroHero_componentSlogan_parent:{
|
|
883
|
+
slogan:"String"
|
|
555
884
|
},
|
|
556
|
-
|
|
557
|
-
|
|
885
|
+
ShapeheroHero_component:{
|
|
886
|
+
logoplace:"String",
|
|
887
|
+
logo:"String",
|
|
888
|
+
slogan_parent:"ShapeheroHero_componentSlogan_parent",
|
|
889
|
+
subslogan:"String"
|
|
558
890
|
},
|
|
559
|
-
|
|
560
|
-
|
|
891
|
+
Shapehero:{
|
|
892
|
+
hero_component:"ShapeheroHero_component",
|
|
561
893
|
_id:"String",
|
|
562
894
|
createdAt:"Float",
|
|
563
895
|
updatedAt:"Float"
|
|
564
896
|
},
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
description:"String"
|
|
897
|
+
ShapeheroxHero_sectionHero_containerText_wrapperFeatures:{
|
|
898
|
+
feature:"String"
|
|
568
899
|
},
|
|
569
|
-
|
|
570
|
-
price:"String"
|
|
571
|
-
},
|
|
572
|
-
Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsCta:{
|
|
900
|
+
ShapeheroxHero_sectionHero_containerText_wrapper:{
|
|
573
901
|
title:"String",
|
|
574
|
-
|
|
902
|
+
description:"String",
|
|
903
|
+
features:"ShapeheroxHero_sectionHero_containerText_wrapperFeatures"
|
|
575
904
|
},
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
priceblock:"Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsPriceblock",
|
|
579
|
-
features:"String",
|
|
580
|
-
cta:"Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsCta"
|
|
905
|
+
ShapeheroxHero_sectionHero_containerImage_wrapper:{
|
|
906
|
+
hero_image:"ImageField"
|
|
581
907
|
},
|
|
582
|
-
|
|
583
|
-
|
|
908
|
+
ShapeheroxHero_sectionHero_containerPresentation:{
|
|
909
|
+
video:"VideoField"
|
|
584
910
|
},
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
911
|
+
ShapeheroxHero_sectionHero_container:{
|
|
912
|
+
text_wrapper:"ShapeheroxHero_sectionHero_containerText_wrapper",
|
|
913
|
+
image_wrapper:"ShapeheroxHero_sectionHero_containerImage_wrapper",
|
|
914
|
+
presentation:"ShapeheroxHero_sectionHero_containerPresentation"
|
|
588
915
|
},
|
|
589
|
-
|
|
590
|
-
|
|
916
|
+
ShapeheroxHero_section:{
|
|
917
|
+
hero_container:"ShapeheroxHero_sectionHero_container"
|
|
591
918
|
},
|
|
592
|
-
|
|
593
|
-
|
|
919
|
+
Shapeherox:{
|
|
920
|
+
hero_section:"ShapeheroxHero_section",
|
|
594
921
|
_id:"String",
|
|
595
922
|
createdAt:"Float",
|
|
596
923
|
updatedAt:"Float"
|
|
597
924
|
},
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
image:"ImageField",
|
|
603
|
-
rounded:"Shapeexamples_productcardSectionSectionMediaRounded"
|
|
604
|
-
},
|
|
605
|
-
Shapeexamples_productcardSectionSectionSectionProduct_title:{
|
|
606
|
-
subtitle:"String"
|
|
925
|
+
Shapelista_projektowListProjectsInstance:{
|
|
926
|
+
title:"String",
|
|
927
|
+
link:"String",
|
|
928
|
+
remove_button:"String"
|
|
607
929
|
},
|
|
608
|
-
|
|
609
|
-
|
|
930
|
+
Shapelista_projektowListProjects:{
|
|
931
|
+
instance:"Shapelista_projektowListProjectsInstance"
|
|
610
932
|
},
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
content:"String"
|
|
933
|
+
Shapelista_projektowList:{
|
|
934
|
+
title:"String",
|
|
935
|
+
subtitle:"String",
|
|
936
|
+
projects:"Shapelista_projektowListProjects"
|
|
616
937
|
},
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
938
|
+
Shapelista_projektow:{
|
|
939
|
+
list:"Shapelista_projektowList",
|
|
940
|
+
_id:"String",
|
|
941
|
+
createdAt:"Float",
|
|
942
|
+
updatedAt:"Float"
|
|
620
943
|
},
|
|
621
|
-
|
|
622
|
-
|
|
944
|
+
ShapenavNavigationNavigation_linksLink:{
|
|
945
|
+
display:"String",
|
|
623
946
|
href:"String"
|
|
624
947
|
},
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
product_cta_url:"Shapeexamples_productcardSectionSectionSectionSectionProduct_cta_url"
|
|
628
|
-
},
|
|
629
|
-
Shapeexamples_productcardSectionSectionSectionFormLabel:{
|
|
630
|
-
html_for:"String",
|
|
631
|
-
content:"String"
|
|
632
|
-
},
|
|
633
|
-
Shapeexamples_productcardSectionSectionSectionFormLabel_2:{
|
|
634
|
-
html_for:"String",
|
|
635
|
-
content:"String"
|
|
948
|
+
ShapenavNavigationNavigation_links:{
|
|
949
|
+
link:"ShapenavNavigationNavigation_linksLink"
|
|
636
950
|
},
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
label_2:"Shapeexamples_productcardSectionSectionSectionFormLabel_2",
|
|
641
|
-
product_quantity:"String"
|
|
951
|
+
ShapenavNavigation:{
|
|
952
|
+
logo:"String",
|
|
953
|
+
navigation_links:"ShapenavNavigationNavigation_links"
|
|
642
954
|
},
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
955
|
+
Shapenav:{
|
|
956
|
+
navigation:"ShapenavNavigation",
|
|
957
|
+
_id:"String",
|
|
958
|
+
createdAt:"Float",
|
|
959
|
+
updatedAt:"Float"
|
|
648
960
|
},
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
961
|
+
ShapenewshapeBackgroundContent:{
|
|
962
|
+
badge:"String",
|
|
963
|
+
headline:"String",
|
|
964
|
+
subheadline:"String",
|
|
965
|
+
cta_label:"String",
|
|
966
|
+
cta_href:"String"
|
|
652
967
|
},
|
|
653
|
-
|
|
654
|
-
|
|
968
|
+
ShapenewshapeBackground:{
|
|
969
|
+
overlay_gradient:"Boolean",
|
|
970
|
+
content:"ShapenewshapeBackgroundContent",
|
|
971
|
+
hero_image:"ImageField"
|
|
655
972
|
},
|
|
656
|
-
|
|
657
|
-
|
|
973
|
+
Shapenewshape:{
|
|
974
|
+
background:"ShapenewshapeBackground",
|
|
658
975
|
_id:"String",
|
|
659
976
|
createdAt:"Float",
|
|
660
977
|
updatedAt:"Float"
|
|
661
978
|
},
|
|
662
|
-
|
|
979
|
+
Shapepricing_tablePricing_sectionHeader_wrapper:{
|
|
980
|
+
title:"String",
|
|
663
981
|
description:"String"
|
|
664
982
|
},
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
content:"String"
|
|
670
|
-
},
|
|
671
|
-
Shapeexamples_testimonialcardSectionFigureFigcaptionSectionRole:{
|
|
672
|
-
content:"String"
|
|
673
|
-
},
|
|
674
|
-
Shapeexamples_testimonialcardSectionFigureFigcaptionSection:{
|
|
675
|
-
author:"Shapeexamples_testimonialcardSectionFigureFigcaptionSectionAuthor",
|
|
676
|
-
role:"Shapeexamples_testimonialcardSectionFigureFigcaptionSectionRole"
|
|
677
|
-
},
|
|
678
|
-
Shapeexamples_testimonialcardSectionFigureFigcaptionLink:{
|
|
679
|
-
cta:"String",
|
|
680
|
-
href:"String"
|
|
983
|
+
Shapepricing_tablePricing_sectionPricing_tableTable_head:{
|
|
984
|
+
feature:"String",
|
|
985
|
+
unit:"String",
|
|
986
|
+
price:"String"
|
|
681
987
|
},
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
988
|
+
Shapepricing_tablePricing_sectionPricing_tableRows:{
|
|
989
|
+
feature:"String",
|
|
990
|
+
unit:"String",
|
|
991
|
+
price:"String"
|
|
685
992
|
},
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
figcaption:"Shapeexamples_testimonialcardSectionFigureFigcaption"
|
|
993
|
+
Shapepricing_tablePricing_sectionPricing_table:{
|
|
994
|
+
table_head:"Shapepricing_tablePricing_sectionPricing_tableTable_head",
|
|
995
|
+
rows:"Shapepricing_tablePricing_sectionPricing_tableRows"
|
|
690
996
|
},
|
|
691
|
-
|
|
692
|
-
|
|
997
|
+
Shapepricing_tablePricing_section:{
|
|
998
|
+
header_wrapper:"Shapepricing_tablePricing_sectionHeader_wrapper",
|
|
999
|
+
pricing_table:"Shapepricing_tablePricing_sectionPricing_table"
|
|
693
1000
|
},
|
|
694
|
-
|
|
695
|
-
|
|
1001
|
+
Shapepricing_table:{
|
|
1002
|
+
pricing_section:"Shapepricing_tablePricing_section",
|
|
696
1003
|
_id:"String",
|
|
697
1004
|
createdAt:"Float",
|
|
698
1005
|
updatedAt:"Float"
|
|
699
1006
|
},
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
},
|
|
703
|
-
ShapeexamplescontactformSectionSectionDescription:{
|
|
1007
|
+
Shapepricingv1Pricing_sectionHeader_wrapper:{
|
|
1008
|
+
title:"String",
|
|
704
1009
|
description:"String"
|
|
705
1010
|
},
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
email:"String",
|
|
709
|
-
message:"String"
|
|
1011
|
+
Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list:{
|
|
1012
|
+
feature:"String"
|
|
710
1013
|
},
|
|
711
|
-
|
|
712
|
-
|
|
1014
|
+
Shapepricingv1Pricing_sectionPlans_gridFree_plan:{
|
|
1015
|
+
plan_name:"String",
|
|
1016
|
+
price:"String",
|
|
1017
|
+
plan_description:"String",
|
|
1018
|
+
feature_list:"Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list",
|
|
1019
|
+
cta:"Shapesecondary_cta"
|
|
713
1020
|
},
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
href:"String"
|
|
1021
|
+
Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list:{
|
|
1022
|
+
feature:"String"
|
|
717
1023
|
},
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
1024
|
+
Shapepricingv1Pricing_sectionPlans_gridPaid_plan:{
|
|
1025
|
+
plan_name:"String",
|
|
1026
|
+
price:"String",
|
|
1027
|
+
plan_description:"String",
|
|
1028
|
+
feature_list:"Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list",
|
|
1029
|
+
cta:"Shapectabutton"
|
|
724
1030
|
},
|
|
725
|
-
|
|
726
|
-
|
|
1031
|
+
Shapepricingv1Pricing_sectionPlans_grid:{
|
|
1032
|
+
free_plan:"Shapepricingv1Pricing_sectionPlans_gridFree_plan",
|
|
1033
|
+
paid_plan:"Shapepricingv1Pricing_sectionPlans_gridPaid_plan"
|
|
727
1034
|
},
|
|
728
|
-
|
|
729
|
-
|
|
1035
|
+
Shapepricingv1Pricing_section:{
|
|
1036
|
+
header_wrapper:"Shapepricingv1Pricing_sectionHeader_wrapper",
|
|
1037
|
+
plans_grid:"Shapepricingv1Pricing_sectionPlans_grid"
|
|
1038
|
+
},
|
|
1039
|
+
Shapepricingv1:{
|
|
1040
|
+
pricing_section:"Shapepricingv1Pricing_section",
|
|
730
1041
|
_id:"String",
|
|
731
1042
|
createdAt:"Float",
|
|
732
1043
|
updatedAt:"Float"
|
|
733
1044
|
},
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
1045
|
+
Shapeprofile_infoProfile_sectionAccount_headerInfo:{
|
|
1046
|
+
full_name:"String",
|
|
1047
|
+
company:"String",
|
|
1048
|
+
email:"String"
|
|
737
1049
|
},
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
1050
|
+
Shapeprofile_infoProfile_sectionAccount_header:{
|
|
1051
|
+
avatar:"ImageField",
|
|
1052
|
+
info:"Shapeprofile_infoProfile_sectionAccount_headerInfo"
|
|
741
1053
|
},
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
href:"String"
|
|
1054
|
+
Shapeprofile_infoProfile_sectionPlan_status:{
|
|
1055
|
+
plan:"String"
|
|
745
1056
|
},
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
1057
|
+
Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens:{
|
|
1058
|
+
label:"String",
|
|
1059
|
+
value:"String"
|
|
749
1060
|
},
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
product_quantity_label:"String",
|
|
754
|
-
product_quantity:"String"
|
|
1061
|
+
Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens:{
|
|
1062
|
+
label:"String",
|
|
1063
|
+
value:"String"
|
|
755
1064
|
},
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
priceblock:"ShapeproductcardProductcardProductcard_innerContentPriceblock",
|
|
760
|
-
options:"ShapeproductcardProductcardProductcard_innerContentOptions"
|
|
1065
|
+
Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests:{
|
|
1066
|
+
label:"String",
|
|
1067
|
+
value:"String"
|
|
761
1068
|
},
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
1069
|
+
Shapeprofile_infoProfile_sectionUsage_section:{
|
|
1070
|
+
ai_tokens:"Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens",
|
|
1071
|
+
translate_tokens:"Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens",
|
|
1072
|
+
monthly_api_requests:"Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"
|
|
765
1073
|
},
|
|
766
|
-
|
|
767
|
-
|
|
1074
|
+
Shapeprofile_infoProfile_section:{
|
|
1075
|
+
account_header:"Shapeprofile_infoProfile_sectionAccount_header",
|
|
1076
|
+
plan_status:"Shapeprofile_infoProfile_sectionPlan_status",
|
|
1077
|
+
usage_section:"Shapeprofile_infoProfile_sectionUsage_section"
|
|
768
1078
|
},
|
|
769
|
-
|
|
770
|
-
|
|
1079
|
+
Shapeprofile_info:{
|
|
1080
|
+
profile_section:"Shapeprofile_infoProfile_section",
|
|
771
1081
|
_id:"String",
|
|
772
1082
|
createdAt:"Float",
|
|
773
1083
|
updatedAt:"Float"
|
|
774
1084
|
},
|
|
775
|
-
|
|
776
|
-
|
|
1085
|
+
Shapesecondary_cta:{
|
|
1086
|
+
cta:"String",
|
|
1087
|
+
_id:"String",
|
|
1088
|
+
createdAt:"Float",
|
|
1089
|
+
updatedAt:"Float"
|
|
777
1090
|
},
|
|
778
|
-
|
|
1091
|
+
ShapesupportSectionHeader_wrapper:{
|
|
1092
|
+
title:"String",
|
|
779
1093
|
description:"String"
|
|
780
1094
|
},
|
|
781
|
-
|
|
782
|
-
image:"ImageField"
|
|
1095
|
+
ShapesupportSectionFeatures_gridFeature_item:{
|
|
1096
|
+
image:"ImageField",
|
|
1097
|
+
title:"String",
|
|
1098
|
+
text:"String",
|
|
1099
|
+
cta:"String"
|
|
783
1100
|
},
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
href:"String"
|
|
1101
|
+
ShapesupportSectionFeatures_grid:{
|
|
1102
|
+
feature_item:"ShapesupportSectionFeatures_gridFeature_item"
|
|
787
1103
|
},
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
1104
|
+
ShapesupportSection:{
|
|
1105
|
+
header_wrapper:"ShapesupportSectionHeader_wrapper",
|
|
1106
|
+
features_grid:"ShapesupportSectionFeatures_grid"
|
|
791
1107
|
},
|
|
792
|
-
|
|
793
|
-
|
|
1108
|
+
Shapesupport:{
|
|
1109
|
+
section:"ShapesupportSection",
|
|
1110
|
+
_id:"String",
|
|
1111
|
+
createdAt:"Float",
|
|
1112
|
+
updatedAt:"Float"
|
|
794
1113
|
},
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
description:"
|
|
798
|
-
media:"ShapereactcomponentSectionSectionMedia",
|
|
799
|
-
link:"ShapereactcomponentSectionSectionLink",
|
|
800
|
-
form:"ShapereactcomponentSectionSectionForm",
|
|
801
|
-
button:"ShapereactcomponentSectionSectionButton"
|
|
1114
|
+
Shapetitle_descTitledesc:{
|
|
1115
|
+
title:"String",
|
|
1116
|
+
description:"String"
|
|
802
1117
|
},
|
|
803
|
-
|
|
804
|
-
|
|
1118
|
+
Shapetitle_desc:{
|
|
1119
|
+
titledesc:"Shapetitle_descTitledesc",
|
|
1120
|
+
_id:"String",
|
|
1121
|
+
createdAt:"Float",
|
|
1122
|
+
updatedAt:"Float"
|
|
805
1123
|
},
|
|
806
|
-
|
|
807
|
-
|
|
1124
|
+
ShapeusageMain:{
|
|
1125
|
+
title:"String",
|
|
1126
|
+
subtitle:"String",
|
|
1127
|
+
period:"String",
|
|
1128
|
+
tokens_consumed:"Float"
|
|
1129
|
+
},
|
|
1130
|
+
Shapeusage:{
|
|
1131
|
+
main:"ShapeusageMain",
|
|
808
1132
|
_id:"String",
|
|
809
1133
|
createdAt:"Float",
|
|
810
1134
|
updatedAt:"Float"
|
|
811
1135
|
},
|
|
1136
|
+
FormregisterRegistration_stepUser_details:{
|
|
1137
|
+
_mocks:"String",
|
|
1138
|
+
username:"FormTextField",
|
|
1139
|
+
password:"FormTextField",
|
|
1140
|
+
full_name:"FormTextField",
|
|
1141
|
+
phone:"FormTextField"
|
|
1142
|
+
},
|
|
1143
|
+
FormregisterRegistration_step:{
|
|
1144
|
+
_mocks:"String",
|
|
1145
|
+
user_details:"FormregisterRegistration_stepUser_details",
|
|
1146
|
+
submit:"FormSubmitField"
|
|
1147
|
+
},
|
|
1148
|
+
Formregister:{
|
|
1149
|
+
_mocks:"String",
|
|
1150
|
+
_version:"VersionField",
|
|
1151
|
+
state_step:"FormVariableField",
|
|
1152
|
+
registration_step:"FormregisterRegistration_step",
|
|
1153
|
+
current_step:"FormVariableField",
|
|
1154
|
+
locale:"String",
|
|
1155
|
+
slug:"String",
|
|
1156
|
+
_id:"String",
|
|
1157
|
+
createdAt:"String",
|
|
1158
|
+
updatedAt:"String",
|
|
1159
|
+
draft_version:"String",
|
|
1160
|
+
json_ld:"String"
|
|
1161
|
+
},
|
|
1162
|
+
FormtestStep_basic_infoBasic_info_group:{
|
|
1163
|
+
_mocks:"String",
|
|
1164
|
+
window_type:"FormRadioTextField",
|
|
1165
|
+
quantity:"FormTextField",
|
|
1166
|
+
location:"FormRadioTextField"
|
|
1167
|
+
},
|
|
1168
|
+
FormtestStep_basic_info:{
|
|
1169
|
+
_mocks:"String",
|
|
1170
|
+
basic_info_group:"FormtestStep_basic_infoBasic_info_group",
|
|
1171
|
+
basic_next:"FormButtonField"
|
|
1172
|
+
},
|
|
1173
|
+
FormtestStep_dimensionsDimensions_group:{
|
|
1174
|
+
_mocks:"String",
|
|
1175
|
+
width_mm:"FormTextField",
|
|
1176
|
+
height_mm:"FormTextField",
|
|
1177
|
+
depth_mm:"FormTextField",
|
|
1178
|
+
opening_direction:"FormRadioTextField",
|
|
1179
|
+
sash_count:"FormTextField"
|
|
1180
|
+
},
|
|
1181
|
+
FormtestStep_dimensions:{
|
|
1182
|
+
_mocks:"String",
|
|
1183
|
+
dimensions_group:"FormtestStep_dimensionsDimensions_group",
|
|
1184
|
+
dimensions_back:"FormButtonField",
|
|
1185
|
+
dimensions_next:"FormButtonField"
|
|
1186
|
+
},
|
|
1187
|
+
FormtestStep_featuresFeatures_group:{
|
|
1188
|
+
_mocks:"String",
|
|
1189
|
+
material:"FormRadioTextField",
|
|
1190
|
+
color:"FormTextField",
|
|
1191
|
+
glazing_type:"FormRadioTextField",
|
|
1192
|
+
thermal_break:"FormBooleanField",
|
|
1193
|
+
soundproofing:"FormBooleanField"
|
|
1194
|
+
},
|
|
1195
|
+
FormtestStep_features:{
|
|
1196
|
+
_mocks:"String",
|
|
1197
|
+
features_group:"FormtestStep_featuresFeatures_group",
|
|
1198
|
+
features_back:"FormButtonField",
|
|
1199
|
+
features_next:"FormButtonField"
|
|
1200
|
+
},
|
|
1201
|
+
FormtestStep_accessoriesAccessories_group:{
|
|
1202
|
+
_mocks:"String",
|
|
1203
|
+
handle_type:"FormRadioTextField",
|
|
1204
|
+
lock_type:"FormRadioTextField",
|
|
1205
|
+
mosquito_net:"FormBooleanField",
|
|
1206
|
+
ventilator:"FormBooleanField",
|
|
1207
|
+
accessories_other:"FormTextField"
|
|
1208
|
+
},
|
|
1209
|
+
FormtestStep_accessories:{
|
|
1210
|
+
_mocks:"String",
|
|
1211
|
+
accessories_group:"FormtestStep_accessoriesAccessories_group",
|
|
1212
|
+
accessories_back:"FormButtonField",
|
|
1213
|
+
accessories_next:"FormButtonField"
|
|
1214
|
+
},
|
|
1215
|
+
FormtestStep_summary:{
|
|
1216
|
+
_mocks:"String",
|
|
1217
|
+
summary_display:"FormDisplayField",
|
|
1218
|
+
summary_back:"FormButtonField",
|
|
1219
|
+
submit:"FormSubmitField"
|
|
1220
|
+
},
|
|
1221
|
+
Formtest:{
|
|
1222
|
+
_mocks:"String",
|
|
1223
|
+
_version:"VersionField",
|
|
1224
|
+
form_step_variable:"FormVariableField",
|
|
1225
|
+
step_basic_info:"FormtestStep_basic_info",
|
|
1226
|
+
step_dimensions:"FormtestStep_dimensions",
|
|
1227
|
+
step_features:"FormtestStep_features",
|
|
1228
|
+
step_accessories:"FormtestStep_accessories",
|
|
1229
|
+
step_summary:"FormtestStep_summary",
|
|
1230
|
+
current_step:"FormVariableField",
|
|
1231
|
+
locale:"String",
|
|
1232
|
+
slug:"String",
|
|
1233
|
+
_id:"String",
|
|
1234
|
+
createdAt:"String",
|
|
1235
|
+
updatedAt:"String",
|
|
1236
|
+
draft_version:"String",
|
|
1237
|
+
json_ld:"String"
|
|
1238
|
+
},
|
|
1239
|
+
ResponseFormregisterUser_details:{
|
|
1240
|
+
username:"String",
|
|
1241
|
+
password:"String",
|
|
1242
|
+
full_name:"String",
|
|
1243
|
+
phone:"String"
|
|
1244
|
+
},
|
|
1245
|
+
ResponseFormregisterRegistration_step:{
|
|
1246
|
+
user_details:"ResponseFormregisterUser_details",
|
|
1247
|
+
submit:"String"
|
|
1248
|
+
},
|
|
1249
|
+
ResponseFormregister:{
|
|
1250
|
+
state_step:"String",
|
|
1251
|
+
registration_step:"ResponseFormregisterRegistration_step",
|
|
1252
|
+
current_step:"String",
|
|
1253
|
+
locale:"String",
|
|
1254
|
+
slug:"String",
|
|
1255
|
+
_id:"String",
|
|
1256
|
+
createdAt:"String",
|
|
1257
|
+
updatedAt:"String",
|
|
1258
|
+
draft_version:"String",
|
|
1259
|
+
json_ld:"String"
|
|
1260
|
+
},
|
|
1261
|
+
ResponseFormtestBasic_info_group:{
|
|
1262
|
+
window_type:"String",
|
|
1263
|
+
quantity:"String",
|
|
1264
|
+
location:"String"
|
|
1265
|
+
},
|
|
1266
|
+
ResponseFormtestStep_basic_info:{
|
|
1267
|
+
basic_info_group:"ResponseFormtestBasic_info_group",
|
|
1268
|
+
basic_next:"String"
|
|
1269
|
+
},
|
|
1270
|
+
ResponseFormtestDimensions_group:{
|
|
1271
|
+
width_mm:"String",
|
|
1272
|
+
height_mm:"String",
|
|
1273
|
+
depth_mm:"String",
|
|
1274
|
+
opening_direction:"String",
|
|
1275
|
+
sash_count:"String"
|
|
1276
|
+
},
|
|
1277
|
+
ResponseFormtestStep_dimensions:{
|
|
1278
|
+
dimensions_group:"ResponseFormtestDimensions_group",
|
|
1279
|
+
dimensions_back:"String",
|
|
1280
|
+
dimensions_next:"String"
|
|
1281
|
+
},
|
|
1282
|
+
ResponseFormtestFeatures_group:{
|
|
1283
|
+
material:"String",
|
|
1284
|
+
color:"String",
|
|
1285
|
+
glazing_type:"String",
|
|
1286
|
+
thermal_break:"Boolean",
|
|
1287
|
+
soundproofing:"Boolean"
|
|
1288
|
+
},
|
|
1289
|
+
ResponseFormtestStep_features:{
|
|
1290
|
+
features_group:"ResponseFormtestFeatures_group",
|
|
1291
|
+
features_back:"String",
|
|
1292
|
+
features_next:"String"
|
|
1293
|
+
},
|
|
1294
|
+
ResponseFormtestAccessories_group:{
|
|
1295
|
+
handle_type:"String",
|
|
1296
|
+
lock_type:"String",
|
|
1297
|
+
mosquito_net:"Boolean",
|
|
1298
|
+
ventilator:"Boolean",
|
|
1299
|
+
accessories_other:"String"
|
|
1300
|
+
},
|
|
1301
|
+
ResponseFormtestStep_accessories:{
|
|
1302
|
+
accessories_group:"ResponseFormtestAccessories_group",
|
|
1303
|
+
accessories_back:"String",
|
|
1304
|
+
accessories_next:"String"
|
|
1305
|
+
},
|
|
1306
|
+
ResponseFormtestStep_summary:{
|
|
1307
|
+
summary_display:"String",
|
|
1308
|
+
summary_back:"String",
|
|
1309
|
+
submit:"String"
|
|
1310
|
+
},
|
|
1311
|
+
ResponseFormtest:{
|
|
1312
|
+
form_step_variable:"String",
|
|
1313
|
+
step_basic_info:"ResponseFormtestStep_basic_info",
|
|
1314
|
+
step_dimensions:"ResponseFormtestStep_dimensions",
|
|
1315
|
+
step_features:"ResponseFormtestStep_features",
|
|
1316
|
+
step_accessories:"ResponseFormtestStep_accessories",
|
|
1317
|
+
step_summary:"ResponseFormtestStep_summary",
|
|
1318
|
+
current_step:"String",
|
|
1319
|
+
locale:"String",
|
|
1320
|
+
slug:"String",
|
|
1321
|
+
_id:"String",
|
|
1322
|
+
createdAt:"String",
|
|
1323
|
+
updatedAt:"String",
|
|
1324
|
+
draft_version:"String",
|
|
1325
|
+
json_ld:"String"
|
|
1326
|
+
},
|
|
1327
|
+
SearchResponsesFormregister:{
|
|
1328
|
+
items:"ResponseFormregister",
|
|
1329
|
+
totalCount:"Int"
|
|
1330
|
+
},
|
|
1331
|
+
SearchResponsesFormtest:{
|
|
1332
|
+
items:"ResponseFormtest",
|
|
1333
|
+
totalCount:"Int"
|
|
1334
|
+
},
|
|
812
1335
|
ID: `scalar.ID` as const
|
|
813
1336
|
}
|
|
814
1337
|
|