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