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