@husar.ai/cli 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/zeus/const.js +476 -57
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +2116 -221
- package/dist/zeus/index.js +22 -4
- package/dist/zeus/index.js.map +1 -1
- package/package.json +2 -2
- package/src/zeus/const.ts +475 -58
- package/src/zeus/index.ts +2101 -197
package/src/zeus/const.ts
CHANGED
|
@@ -17,54 +17,48 @@ export const AllTypesProps: Record<string,any> = {
|
|
|
17
17
|
FilterInputString:{
|
|
18
18
|
|
|
19
19
|
},
|
|
20
|
+
RootParamsAdminType: `scalar.RootParamsAdminType` as const,
|
|
20
21
|
FormFieldType: "enum" as const,
|
|
21
22
|
CMSType: "enum" as const,
|
|
22
23
|
Query:{
|
|
23
|
-
|
|
24
|
+
listPaginateddocs:{
|
|
24
25
|
page:"PageInput",
|
|
25
26
|
rootParams:"RootParamsInput",
|
|
26
|
-
sort:"
|
|
27
|
-
filter:"
|
|
27
|
+
sort:"docsSortInput",
|
|
28
|
+
filter:"docsFilterInput"
|
|
28
29
|
},
|
|
29
|
-
|
|
30
|
+
onedocsBySlug:{
|
|
30
31
|
rootParams:"RootParamsInput"
|
|
31
32
|
},
|
|
32
|
-
|
|
33
|
+
variantsdocsBySlug:{
|
|
33
34
|
|
|
34
35
|
},
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
rootParams:"RootParamsInput",
|
|
38
|
-
sort:"postSortInput",
|
|
39
|
-
filter:"postFilterInput"
|
|
36
|
+
oneViewhomepage:{
|
|
37
|
+
rootParams:"RootParamsInput"
|
|
40
38
|
},
|
|
41
|
-
|
|
39
|
+
oneViewhowitworks:{
|
|
42
40
|
rootParams:"RootParamsInput"
|
|
43
41
|
},
|
|
44
|
-
|
|
45
|
-
|
|
42
|
+
oneFormsteps:{
|
|
43
|
+
rootParams:"RootParamsInput"
|
|
44
|
+
},
|
|
45
|
+
oneFormtest:{
|
|
46
|
+
rootParams:"RootParamsInput"
|
|
46
47
|
}
|
|
47
48
|
},
|
|
48
49
|
ModelEnum: "enum" as const,
|
|
50
|
+
ViewEnum: "enum" as const,
|
|
49
51
|
ShapeEnum: "enum" as const,
|
|
50
52
|
RootParamsInput:{
|
|
51
53
|
|
|
52
54
|
},
|
|
53
55
|
RootParamsEnum: "enum" as const,
|
|
54
|
-
|
|
56
|
+
docsSortInput:{
|
|
55
57
|
slug:"Sort",
|
|
56
58
|
createdAt:"Sort",
|
|
57
59
|
updatedAt:"Sort"
|
|
58
60
|
},
|
|
59
|
-
|
|
60
|
-
slug:"Sort",
|
|
61
|
-
createdAt:"Sort",
|
|
62
|
-
updatedAt:"Sort"
|
|
63
|
-
},
|
|
64
|
-
demoFilterInput:{
|
|
65
|
-
slug:"FilterInputString"
|
|
66
|
-
},
|
|
67
|
-
postFilterInput:{
|
|
61
|
+
docsFilterInput:{
|
|
68
62
|
slug:"FilterInputString"
|
|
69
63
|
},
|
|
70
64
|
ID: `scalar.ID` as const
|
|
@@ -150,13 +144,13 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
150
144
|
total:"Int",
|
|
151
145
|
hasNext:"Boolean"
|
|
152
146
|
},
|
|
147
|
+
RootParamsAdminType: `scalar.RootParamsAdminType` as const,
|
|
153
148
|
Shape:{
|
|
154
149
|
name:"String",
|
|
155
150
|
slug:"String",
|
|
156
151
|
display:"String",
|
|
157
152
|
previewFields:"BakedIpsumData",
|
|
158
153
|
prompt:"String",
|
|
159
|
-
promptResponse:"AiComponent",
|
|
160
154
|
fields:"CMSField"
|
|
161
155
|
},
|
|
162
156
|
View:{
|
|
@@ -165,13 +159,6 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
165
159
|
slug:"String",
|
|
166
160
|
display:"String"
|
|
167
161
|
},
|
|
168
|
-
AiComponent:{
|
|
169
|
-
name:"String",
|
|
170
|
-
htmlComponent:"String",
|
|
171
|
-
className:"String",
|
|
172
|
-
textContent:"String",
|
|
173
|
-
children:"AiComponent"
|
|
174
|
-
},
|
|
175
162
|
FormField:{
|
|
176
163
|
name:"String",
|
|
177
164
|
display:"String",
|
|
@@ -248,30 +235,107 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
248
235
|
listShapes:"Shape",
|
|
249
236
|
tailwind:"TailwindConfiguration",
|
|
250
237
|
listForms:"Form",
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
238
|
+
listPaginateddocs:"docs__Connection",
|
|
239
|
+
onedocsBySlug:"docs",
|
|
240
|
+
variantsdocsBySlug:"docs",
|
|
241
|
+
fieldSetdocs:"String",
|
|
242
|
+
modeldocs:"ModelNavigationCompiled",
|
|
243
|
+
previewFieldsdocs:"ModelNavigationCompiled",
|
|
244
|
+
fieldSetShapecta:"String",
|
|
245
|
+
modelShapecta:"ModelNavigationCompiled",
|
|
246
|
+
previewFieldsShapecta:"ModelNavigationCompiled",
|
|
247
|
+
oneShapecta:"Shapecta",
|
|
248
|
+
fieldSetShapedocs_content:"String",
|
|
249
|
+
modelShapedocs_content:"ModelNavigationCompiled",
|
|
250
|
+
previewFieldsShapedocs_content:"ModelNavigationCompiled",
|
|
251
|
+
oneShapedocs_content:"Shapedocs_content",
|
|
252
|
+
fieldSetShapedocs_nav:"String",
|
|
253
|
+
modelShapedocs_nav:"ModelNavigationCompiled",
|
|
254
|
+
previewFieldsShapedocs_nav:"ModelNavigationCompiled",
|
|
255
|
+
oneShapedocs_nav:"Shapedocs_nav",
|
|
256
|
+
fieldSetShapefoot:"String",
|
|
257
|
+
modelShapefoot:"ModelNavigationCompiled",
|
|
258
|
+
previewFieldsShapefoot:"ModelNavigationCompiled",
|
|
259
|
+
oneShapefoot:"Shapefoot",
|
|
260
|
+
fieldSetShapehero:"String",
|
|
261
|
+
modelShapehero:"ModelNavigationCompiled",
|
|
262
|
+
previewFieldsShapehero:"ModelNavigationCompiled",
|
|
263
|
+
oneShapehero:"Shapehero",
|
|
264
|
+
fieldSetShapeherox:"String",
|
|
265
|
+
modelShapeherox:"ModelNavigationCompiled",
|
|
266
|
+
previewFieldsShapeherox:"ModelNavigationCompiled",
|
|
267
|
+
oneShapeherox:"Shapeherox",
|
|
268
|
+
fieldSetShapelearn:"String",
|
|
269
|
+
modelShapelearn:"ModelNavigationCompiled",
|
|
270
|
+
previewFieldsShapelearn:"ModelNavigationCompiled",
|
|
271
|
+
oneShapelearn:"Shapelearn",
|
|
272
|
+
fieldSetShapenav:"String",
|
|
273
|
+
modelShapenav:"ModelNavigationCompiled",
|
|
274
|
+
previewFieldsShapenav:"ModelNavigationCompiled",
|
|
275
|
+
oneShapenav:"Shapenav",
|
|
276
|
+
fieldSetShapenewshape:"String",
|
|
277
|
+
modelShapenewshape:"ModelNavigationCompiled",
|
|
278
|
+
previewFieldsShapenewshape:"ModelNavigationCompiled",
|
|
279
|
+
oneShapenewshape:"Shapenewshape",
|
|
280
|
+
fieldSetShapenewshapereprompt:"String",
|
|
281
|
+
modelShapenewshapereprompt:"ModelNavigationCompiled",
|
|
282
|
+
previewFieldsShapenewshapereprompt:"ModelNavigationCompiled",
|
|
283
|
+
oneShapenewshapereprompt:"Shapenewshapereprompt",
|
|
284
|
+
fieldSetShapenewsletter:"String",
|
|
285
|
+
modelShapenewsletter:"ModelNavigationCompiled",
|
|
286
|
+
previewFieldsShapenewsletter:"ModelNavigationCompiled",
|
|
287
|
+
oneShapenewsletter:"Shapenewsletter",
|
|
288
|
+
fieldSetShapepricing:"String",
|
|
289
|
+
modelShapepricing:"ModelNavigationCompiled",
|
|
290
|
+
previewFieldsShapepricing:"ModelNavigationCompiled",
|
|
291
|
+
oneShapepricing:"Shapepricing",
|
|
292
|
+
fieldSetShapepricingv1:"String",
|
|
293
|
+
modelShapepricingv1:"ModelNavigationCompiled",
|
|
294
|
+
previewFieldsShapepricingv1:"ModelNavigationCompiled",
|
|
295
|
+
oneShapepricingv1:"Shapepricingv1",
|
|
296
|
+
fieldSetShapetesta:"String",
|
|
297
|
+
modelShapetesta:"ModelNavigationCompiled",
|
|
298
|
+
previewFieldsShapetesta:"ModelNavigationCompiled",
|
|
299
|
+
oneShapetesta:"Shapetesta",
|
|
300
|
+
variantsViewhomepage:"Viewhomepage",
|
|
301
|
+
fieldSetViewhomepage:"String",
|
|
302
|
+
modelViewhomepage:"ModelNavigationCompiled",
|
|
303
|
+
previewFieldsViewhomepage:"ModelNavigationCompiled",
|
|
304
|
+
oneViewhomepage:"Viewhomepage",
|
|
305
|
+
variantsViewhowitworks:"Viewhowitworks",
|
|
306
|
+
fieldSetViewhowitworks:"String",
|
|
307
|
+
modelViewhowitworks:"ModelNavigationCompiled",
|
|
308
|
+
previewFieldsViewhowitworks:"ModelNavigationCompiled",
|
|
309
|
+
oneViewhowitworks:"Viewhowitworks",
|
|
310
|
+
variantsFormsteps:"Formsteps",
|
|
311
|
+
fieldSetFormsteps:"String",
|
|
312
|
+
modelFormsteps:"ModelNavigationCompiled",
|
|
313
|
+
previewFieldsFormsteps:"ModelNavigationCompiled",
|
|
314
|
+
oneFormsteps:"Formsteps",
|
|
315
|
+
variantsFormtest:"Formtest",
|
|
316
|
+
fieldSetFormtest:"String",
|
|
317
|
+
modelFormtest:"ModelNavigationCompiled",
|
|
318
|
+
previewFieldsFormtest:"ModelNavigationCompiled",
|
|
319
|
+
oneFormtest:"Formtest"
|
|
320
|
+
},
|
|
321
|
+
RootParamsType:{
|
|
322
|
+
_version:"String",
|
|
323
|
+
locale:"String"
|
|
324
|
+
},
|
|
325
|
+
docs__Connection:{
|
|
326
|
+
items:"docs",
|
|
270
327
|
pageInfo:"PageInfo"
|
|
271
328
|
},
|
|
272
|
-
|
|
329
|
+
docs:{
|
|
273
330
|
_version:"VersionField",
|
|
331
|
+
title:"String",
|
|
332
|
+
seotitle:"String",
|
|
333
|
+
metadesc:"String",
|
|
334
|
+
sortid:"Float",
|
|
335
|
+
main_category:"String",
|
|
274
336
|
content:"String",
|
|
337
|
+
video:"VideoField",
|
|
338
|
+
locale:"String",
|
|
275
339
|
slug:"String",
|
|
276
340
|
_id:"String",
|
|
277
341
|
createdAt:"Float",
|
|
@@ -279,15 +343,32 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
279
343
|
draft_version:"Boolean",
|
|
280
344
|
json_ld:"String"
|
|
281
345
|
},
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
346
|
+
Viewhomepage:{
|
|
347
|
+
_version:"VersionField",
|
|
348
|
+
nav:"Shapenav",
|
|
349
|
+
main:"Shapehero",
|
|
350
|
+
hero:"Shapeherox",
|
|
351
|
+
learn:"Shapelearn",
|
|
352
|
+
pricing:"Shapepricingv1",
|
|
353
|
+
footer:"Shapefoot",
|
|
354
|
+
locale:"String",
|
|
355
|
+
slug:"String",
|
|
356
|
+
_id:"String",
|
|
357
|
+
createdAt:"Float",
|
|
358
|
+
updatedAt:"Float",
|
|
359
|
+
draft_version:"Boolean",
|
|
360
|
+
json_ld:"String"
|
|
361
|
+
},
|
|
362
|
+
ViewhowitworksFeature_control:{
|
|
363
|
+
title:"String",
|
|
364
|
+
description:"String",
|
|
365
|
+
image:"ImageField"
|
|
285
366
|
},
|
|
286
|
-
|
|
367
|
+
Viewhowitworks:{
|
|
287
368
|
_version:"VersionField",
|
|
288
369
|
title:"String",
|
|
289
|
-
|
|
290
|
-
|
|
370
|
+
feature_control:"ViewhowitworksFeature_control",
|
|
371
|
+
locale:"String",
|
|
291
372
|
slug:"String",
|
|
292
373
|
_id:"String",
|
|
293
374
|
createdAt:"Float",
|
|
@@ -295,11 +376,347 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
295
376
|
draft_version:"Boolean",
|
|
296
377
|
json_ld:"String"
|
|
297
378
|
},
|
|
298
|
-
|
|
379
|
+
ShapectaCta_sectionCta_container:{
|
|
380
|
+
cta_heading:"String",
|
|
381
|
+
cta_subtitle:"String",
|
|
382
|
+
cta_button:"String"
|
|
383
|
+
},
|
|
384
|
+
ShapectaCta_section:{
|
|
385
|
+
cta_container:"ShapectaCta_sectionCta_container"
|
|
386
|
+
},
|
|
387
|
+
Shapecta:{
|
|
388
|
+
cta_section:"ShapectaCta_section",
|
|
389
|
+
_id:"String",
|
|
390
|
+
createdAt:"Float",
|
|
391
|
+
updatedAt:"Float"
|
|
392
|
+
},
|
|
393
|
+
Shapedocs_contentDocumentation_pageContent_containerDoc_content:{
|
|
394
|
+
content:"String"
|
|
395
|
+
},
|
|
396
|
+
Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container:{
|
|
397
|
+
scrollspy_title:"String",
|
|
398
|
+
scrollspy_list:"String"
|
|
399
|
+
},
|
|
400
|
+
Shapedocs_contentDocumentation_pageContent_containerScrollspy:{
|
|
401
|
+
scrollspy_container:"Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"
|
|
402
|
+
},
|
|
403
|
+
Shapedocs_contentDocumentation_pageContent_container:{
|
|
404
|
+
doc_content:"Shapedocs_contentDocumentation_pageContent_containerDoc_content",
|
|
405
|
+
scrollspy:"Shapedocs_contentDocumentation_pageContent_containerScrollspy"
|
|
406
|
+
},
|
|
407
|
+
Shapedocs_contentDocumentation_page:{
|
|
408
|
+
content_container:"Shapedocs_contentDocumentation_pageContent_container"
|
|
409
|
+
},
|
|
410
|
+
Shapedocs_content:{
|
|
411
|
+
documentation_page:"Shapedocs_contentDocumentation_page",
|
|
299
412
|
_id:"String",
|
|
300
413
|
createdAt:"Float",
|
|
301
414
|
updatedAt:"Float"
|
|
302
415
|
},
|
|
416
|
+
Shapedocs_navMainListChildrenCategory:{
|
|
417
|
+
name:"String",
|
|
418
|
+
link:"String"
|
|
419
|
+
},
|
|
420
|
+
Shapedocs_navMainListChildren:{
|
|
421
|
+
category:"Shapedocs_navMainListChildrenCategory"
|
|
422
|
+
},
|
|
423
|
+
Shapedocs_navMainList:{
|
|
424
|
+
title:"String",
|
|
425
|
+
children:"Shapedocs_navMainListChildren"
|
|
426
|
+
},
|
|
427
|
+
Shapedocs_navMain:{
|
|
428
|
+
list:"Shapedocs_navMainList"
|
|
429
|
+
},
|
|
430
|
+
Shapedocs_nav:{
|
|
431
|
+
main:"Shapedocs_navMain",
|
|
432
|
+
_id:"String",
|
|
433
|
+
createdAt:"Float",
|
|
434
|
+
updatedAt:"Float"
|
|
435
|
+
},
|
|
436
|
+
ShapefootFooterFooter_containerFooter_links:{
|
|
437
|
+
privacy_policy:"String",
|
|
438
|
+
terms_of_service:"String",
|
|
439
|
+
contact_us:"String"
|
|
440
|
+
},
|
|
441
|
+
ShapefootFooterFooter_container:{
|
|
442
|
+
footer_logo:"String",
|
|
443
|
+
footer_links:"ShapefootFooterFooter_containerFooter_links",
|
|
444
|
+
footer_copy:"String"
|
|
445
|
+
},
|
|
446
|
+
ShapefootFooter:{
|
|
447
|
+
footer_container:"ShapefootFooterFooter_container"
|
|
448
|
+
},
|
|
449
|
+
Shapefoot:{
|
|
450
|
+
footer:"ShapefootFooter",
|
|
451
|
+
_id:"String",
|
|
452
|
+
createdAt:"Float",
|
|
453
|
+
updatedAt:"Float"
|
|
454
|
+
},
|
|
455
|
+
ShapeheroHero_component:{
|
|
456
|
+
logoplace:"String",
|
|
457
|
+
logo:"String",
|
|
458
|
+
slogan:"String",
|
|
459
|
+
subslogan:"String"
|
|
460
|
+
},
|
|
461
|
+
Shapehero:{
|
|
462
|
+
hero_component:"ShapeheroHero_component",
|
|
463
|
+
_id:"String",
|
|
464
|
+
createdAt:"Float",
|
|
465
|
+
updatedAt:"Float"
|
|
466
|
+
},
|
|
467
|
+
ShapeheroxHero_sectionHero_containerText_wrapperFeatures:{
|
|
468
|
+
feature:"String"
|
|
469
|
+
},
|
|
470
|
+
ShapeheroxHero_sectionHero_containerText_wrapper:{
|
|
471
|
+
title:"String",
|
|
472
|
+
description:"String",
|
|
473
|
+
features:"ShapeheroxHero_sectionHero_containerText_wrapperFeatures",
|
|
474
|
+
call_to_action:"String"
|
|
475
|
+
},
|
|
476
|
+
ShapeheroxHero_sectionHero_containerImage_wrapper:{
|
|
477
|
+
hero_image:"ImageField"
|
|
478
|
+
},
|
|
479
|
+
ShapeheroxHero_sectionHero_container:{
|
|
480
|
+
text_wrapper:"ShapeheroxHero_sectionHero_containerText_wrapper",
|
|
481
|
+
image_wrapper:"ShapeheroxHero_sectionHero_containerImage_wrapper"
|
|
482
|
+
},
|
|
483
|
+
ShapeheroxHero_section:{
|
|
484
|
+
hero_container:"ShapeheroxHero_sectionHero_container"
|
|
485
|
+
},
|
|
486
|
+
Shapeherox:{
|
|
487
|
+
hero_section:"ShapeheroxHero_section",
|
|
488
|
+
_id:"String",
|
|
489
|
+
createdAt:"Float",
|
|
490
|
+
updatedAt:"Float"
|
|
491
|
+
},
|
|
492
|
+
ShapelearnLearning_sectionContainer:{
|
|
493
|
+
image:"ImageField",
|
|
494
|
+
heading:"String",
|
|
495
|
+
description:"String",
|
|
496
|
+
cta_button:"String"
|
|
497
|
+
},
|
|
498
|
+
ShapelearnLearning_section:{
|
|
499
|
+
container:"ShapelearnLearning_sectionContainer"
|
|
500
|
+
},
|
|
501
|
+
Shapelearn:{
|
|
502
|
+
learning_section:"ShapelearnLearning_section",
|
|
503
|
+
_id:"String",
|
|
504
|
+
createdAt:"Float",
|
|
505
|
+
updatedAt:"Float"
|
|
506
|
+
},
|
|
507
|
+
ShapenavNavigationNavigation_linksLink:{
|
|
508
|
+
display:"String",
|
|
509
|
+
href:"String"
|
|
510
|
+
},
|
|
511
|
+
ShapenavNavigationNavigation_links:{
|
|
512
|
+
link:"ShapenavNavigationNavigation_linksLink"
|
|
513
|
+
},
|
|
514
|
+
ShapenavNavigation:{
|
|
515
|
+
logo:"String",
|
|
516
|
+
navigation_links:"ShapenavNavigationNavigation_links"
|
|
517
|
+
},
|
|
518
|
+
Shapenav:{
|
|
519
|
+
navigation:"ShapenavNavigation",
|
|
520
|
+
_id:"String",
|
|
521
|
+
createdAt:"Float",
|
|
522
|
+
updatedAt:"Float"
|
|
523
|
+
},
|
|
524
|
+
ShapenewshapeBackgroundContent:{
|
|
525
|
+
badge:"String",
|
|
526
|
+
headline:"String",
|
|
527
|
+
subheadline:"String",
|
|
528
|
+
cta_label:"String",
|
|
529
|
+
cta_href:"String"
|
|
530
|
+
},
|
|
531
|
+
ShapenewshapeBackground:{
|
|
532
|
+
overlay_gradient:"Boolean",
|
|
533
|
+
content:"ShapenewshapeBackgroundContent",
|
|
534
|
+
hero_image:"ImageField"
|
|
535
|
+
},
|
|
536
|
+
Shapenewshape:{
|
|
537
|
+
background:"ShapenewshapeBackground",
|
|
538
|
+
_id:"String",
|
|
539
|
+
createdAt:"Float",
|
|
540
|
+
updatedAt:"Float"
|
|
541
|
+
},
|
|
542
|
+
Shapenewshapereprompt:{
|
|
543
|
+
_id:"String",
|
|
544
|
+
createdAt:"Float",
|
|
545
|
+
updatedAt:"Float"
|
|
546
|
+
},
|
|
547
|
+
ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form:{
|
|
548
|
+
email_input:"String",
|
|
549
|
+
subscribe_button:"String"
|
|
550
|
+
},
|
|
551
|
+
ShapenewsletterNewsletter_sectionNewsletter_container:{
|
|
552
|
+
newsletter_heading:"String",
|
|
553
|
+
newsletter_description:"String",
|
|
554
|
+
newsletter_form:"ShapenewsletterNewsletter_sectionNewsletter_containerNewsletter_form"
|
|
555
|
+
},
|
|
556
|
+
ShapenewsletterNewsletter_section:{
|
|
557
|
+
newsletter_container:"ShapenewsletterNewsletter_sectionNewsletter_container"
|
|
558
|
+
},
|
|
559
|
+
Shapenewsletter:{
|
|
560
|
+
newsletter_section:"ShapenewsletterNewsletter_section",
|
|
561
|
+
_id:"String",
|
|
562
|
+
createdAt:"Float",
|
|
563
|
+
updatedAt:"Float"
|
|
564
|
+
},
|
|
565
|
+
ShapepricingPricing_sectionPricing_header:{
|
|
566
|
+
title:"String",
|
|
567
|
+
sub_title:"String"
|
|
568
|
+
},
|
|
569
|
+
ShapepricingPricing_sectionPricing_gridStarter_planPlan_features:{
|
|
570
|
+
feat:"String"
|
|
571
|
+
},
|
|
572
|
+
ShapepricingPricing_sectionPricing_gridStarter_plan:{
|
|
573
|
+
plan_title:"String",
|
|
574
|
+
plan_price:"String",
|
|
575
|
+
plan_features:"ShapepricingPricing_sectionPricing_gridStarter_planPlan_features",
|
|
576
|
+
plan_cta:"String"
|
|
577
|
+
},
|
|
578
|
+
ShapepricingPricing_sectionPricing_grid:{
|
|
579
|
+
starter_plan:"ShapepricingPricing_sectionPricing_gridStarter_plan"
|
|
580
|
+
},
|
|
581
|
+
ShapepricingPricing_section:{
|
|
582
|
+
pricing_header:"ShapepricingPricing_sectionPricing_header",
|
|
583
|
+
pricing_grid:"ShapepricingPricing_sectionPricing_grid"
|
|
584
|
+
},
|
|
585
|
+
Shapepricing:{
|
|
586
|
+
pricing_section:"ShapepricingPricing_section",
|
|
587
|
+
_id:"String",
|
|
588
|
+
createdAt:"Float",
|
|
589
|
+
updatedAt:"Float"
|
|
590
|
+
},
|
|
591
|
+
Shapepricingv1Pricing_sectionHeader_wrapper:{
|
|
592
|
+
title:"String",
|
|
593
|
+
description:"String"
|
|
594
|
+
},
|
|
595
|
+
Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list:{
|
|
596
|
+
feature:"String"
|
|
597
|
+
},
|
|
598
|
+
Shapepricingv1Pricing_sectionPlans_gridFree_plan:{
|
|
599
|
+
plan_name:"String",
|
|
600
|
+
price:"String",
|
|
601
|
+
plan_description:"String",
|
|
602
|
+
feature_list:"Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list",
|
|
603
|
+
cta:"String"
|
|
604
|
+
},
|
|
605
|
+
Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list:{
|
|
606
|
+
feature:"String"
|
|
607
|
+
},
|
|
608
|
+
Shapepricingv1Pricing_sectionPlans_gridPaid_plan:{
|
|
609
|
+
plan_name:"String",
|
|
610
|
+
price:"String",
|
|
611
|
+
plan_description:"String",
|
|
612
|
+
feature_list:"Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list",
|
|
613
|
+
cta:"String"
|
|
614
|
+
},
|
|
615
|
+
Shapepricingv1Pricing_sectionPlans_grid:{
|
|
616
|
+
free_plan:"Shapepricingv1Pricing_sectionPlans_gridFree_plan",
|
|
617
|
+
paid_plan:"Shapepricingv1Pricing_sectionPlans_gridPaid_plan"
|
|
618
|
+
},
|
|
619
|
+
Shapepricingv1Pricing_section:{
|
|
620
|
+
header_wrapper:"Shapepricingv1Pricing_sectionHeader_wrapper",
|
|
621
|
+
plans_grid:"Shapepricingv1Pricing_sectionPlans_grid"
|
|
622
|
+
},
|
|
623
|
+
Shapepricingv1:{
|
|
624
|
+
pricing_section:"Shapepricingv1Pricing_section",
|
|
625
|
+
_id:"String",
|
|
626
|
+
createdAt:"Float",
|
|
627
|
+
updatedAt:"Float"
|
|
628
|
+
},
|
|
629
|
+
ShapetestaRootHeaderNav:{
|
|
630
|
+
logo:"String",
|
|
631
|
+
cta:"String"
|
|
632
|
+
},
|
|
633
|
+
ShapetestaRootHeader:{
|
|
634
|
+
nav:"ShapetestaRootHeaderNav"
|
|
635
|
+
},
|
|
636
|
+
ShapetestaRootMainHero_section:{
|
|
637
|
+
hero_title:"String",
|
|
638
|
+
hero_text:"String",
|
|
639
|
+
hero_button:"String"
|
|
640
|
+
},
|
|
641
|
+
ShapetestaRootMainFeatures_section:{
|
|
642
|
+
features_title:"String",
|
|
643
|
+
features_text:"String"
|
|
644
|
+
},
|
|
645
|
+
ShapetestaRootMain:{
|
|
646
|
+
hero_section:"ShapetestaRootMainHero_section",
|
|
647
|
+
features_section:"ShapetestaRootMainFeatures_section"
|
|
648
|
+
},
|
|
649
|
+
ShapetestaRoot:{
|
|
650
|
+
header:"ShapetestaRootHeader",
|
|
651
|
+
main:"ShapetestaRootMain"
|
|
652
|
+
},
|
|
653
|
+
Shapetesta:{
|
|
654
|
+
root:"ShapetestaRoot",
|
|
655
|
+
_id:"String",
|
|
656
|
+
createdAt:"Float",
|
|
657
|
+
updatedAt:"Float"
|
|
658
|
+
},
|
|
659
|
+
FormstepsStep1:{
|
|
660
|
+
_mocks:"String",
|
|
661
|
+
imie:"FormTextField",
|
|
662
|
+
source:"FormRadioTextField"
|
|
663
|
+
},
|
|
664
|
+
FormstepsStep2:{
|
|
665
|
+
_mocks:"String",
|
|
666
|
+
nazwisko:"FormTextField"
|
|
667
|
+
},
|
|
668
|
+
FormstepsStep3:{
|
|
669
|
+
_mocks:"String",
|
|
670
|
+
email:"FormTextField",
|
|
671
|
+
koniec:"FormSubmitField"
|
|
672
|
+
},
|
|
673
|
+
Formsteps:{
|
|
674
|
+
_mocks:"String",
|
|
675
|
+
_version:"VersionField",
|
|
676
|
+
step1:"FormstepsStep1",
|
|
677
|
+
step2:"FormstepsStep2",
|
|
678
|
+
step3:"FormstepsStep3",
|
|
679
|
+
locale:"String",
|
|
680
|
+
slug:"String",
|
|
681
|
+
_id:"String",
|
|
682
|
+
createdAt:"String",
|
|
683
|
+
updatedAt:"String",
|
|
684
|
+
draft_version:"String",
|
|
685
|
+
json_ld:"String"
|
|
686
|
+
},
|
|
687
|
+
FormtestWindowBasics:{
|
|
688
|
+
_mocks:"String",
|
|
689
|
+
type:"FormRadioTextField"
|
|
690
|
+
},
|
|
691
|
+
FormtestWindowTechincals:{
|
|
692
|
+
_mocks:"String",
|
|
693
|
+
width:"FormNumberField",
|
|
694
|
+
height:"FormNumberField",
|
|
695
|
+
confirm:"FormRouteField"
|
|
696
|
+
},
|
|
697
|
+
FormtestWindow:{
|
|
698
|
+
_mocks:"String",
|
|
699
|
+
basics:"FormtestWindowBasics",
|
|
700
|
+
techincals:"FormtestWindowTechincals"
|
|
701
|
+
},
|
|
702
|
+
FormtestHome:{
|
|
703
|
+
_mocks:"String",
|
|
704
|
+
window:"FormTextField",
|
|
705
|
+
add:"FormRouteField"
|
|
706
|
+
},
|
|
707
|
+
Formtest:{
|
|
708
|
+
_mocks:"String",
|
|
709
|
+
_version:"VersionField",
|
|
710
|
+
window:"FormtestWindow",
|
|
711
|
+
home:"FormtestHome",
|
|
712
|
+
locale:"String",
|
|
713
|
+
slug:"String",
|
|
714
|
+
_id:"String",
|
|
715
|
+
createdAt:"String",
|
|
716
|
+
updatedAt:"String",
|
|
717
|
+
draft_version:"String",
|
|
718
|
+
json_ld:"String"
|
|
719
|
+
},
|
|
303
720
|
ID: `scalar.ID` as const
|
|
304
721
|
}
|
|
305
722
|
|