@husar.ai/cli 0.2.3 → 0.2.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/cli.d.ts +2 -0
- package/dist/cli.js +82 -0
- package/dist/cli.js.map +1 -0
- package/dist/functions/parser.d.ts +7 -0
- package/dist/functions/parser.js +30 -0
- package/dist/functions/parser.js.map +1 -0
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1 -68
- package/dist/index.js.map +1 -1
- package/dist/zeus/const.js +438 -473
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +1967 -1871
- package/dist/zeus/index.js +11 -28
- package/dist/zeus/index.js.map +1 -1
- package/package.json +8 -4
- package/src/cli.ts +104 -0
- package/src/functions/parser.ts +35 -0
- package/src/index.ts +1 -82
- package/src/zeus/const.ts +440 -475
- package/src/zeus/index.ts +1997 -1833
package/src/zeus/const.ts
CHANGED
|
@@ -24,69 +24,15 @@ export const AllTypesProps: Record<string,any> = {
|
|
|
24
24
|
},
|
|
25
25
|
RootParamsAdminType: `scalar.RootParamsAdminType` as const,
|
|
26
26
|
FormFieldType: "enum" as const,
|
|
27
|
-
|
|
28
|
-
Query:{
|
|
29
|
-
listPaginateddocs:{
|
|
30
|
-
page:"PageInput",
|
|
31
|
-
rootParams:"RootParamsInput",
|
|
32
|
-
sort:"docsSortInput",
|
|
33
|
-
filter:"docsFilterInput"
|
|
34
|
-
},
|
|
35
|
-
onedocsBySlug:{
|
|
36
|
-
rootParams:"RootParamsInput"
|
|
37
|
-
},
|
|
38
|
-
oneAsScalardocsBySlug:{
|
|
39
|
-
rootParams:"RootParamsInput"
|
|
40
|
-
},
|
|
41
|
-
variantsdocsBySlug:{
|
|
27
|
+
GenerateHusarShapeImplementorInput:{
|
|
42
28
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
rootParams:"RootParamsInput"
|
|
46
|
-
},
|
|
47
|
-
oneAsScalarViewaccount:{
|
|
48
|
-
rootParams:"RootParamsInput"
|
|
49
|
-
},
|
|
50
|
-
oneViewfeatures:{
|
|
51
|
-
rootParams:"RootParamsInput"
|
|
52
|
-
},
|
|
53
|
-
oneAsScalarViewfeatures:{
|
|
54
|
-
rootParams:"RootParamsInput"
|
|
55
|
-
},
|
|
56
|
-
oneViewhomepage:{
|
|
57
|
-
rootParams:"RootParamsInput"
|
|
58
|
-
},
|
|
59
|
-
oneAsScalarViewhomepage:{
|
|
60
|
-
rootParams:"RootParamsInput"
|
|
61
|
-
},
|
|
62
|
-
oneViewhowitworks:{
|
|
63
|
-
rootParams:"RootParamsInput"
|
|
64
|
-
},
|
|
65
|
-
oneAsScalarViewhowitworks:{
|
|
66
|
-
rootParams:"RootParamsInput"
|
|
67
|
-
},
|
|
68
|
-
oneViewpricing:{
|
|
69
|
-
rootParams:"RootParamsInput"
|
|
70
|
-
},
|
|
71
|
-
oneAsScalarViewpricing:{
|
|
72
|
-
rootParams:"RootParamsInput"
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
|
-
ModelEnum: "enum" as const,
|
|
76
|
-
ViewEnum: "enum" as const,
|
|
29
|
+
},
|
|
30
|
+
CMSType: "enum" as const,
|
|
77
31
|
ShapeEnum: "enum" as const,
|
|
78
32
|
RootParamsInput:{
|
|
79
33
|
|
|
80
34
|
},
|
|
81
35
|
RootParamsEnum: "enum" as const,
|
|
82
|
-
docsSortInput:{
|
|
83
|
-
slug:"Sort",
|
|
84
|
-
createdAt:"Sort",
|
|
85
|
-
updatedAt:"Sort"
|
|
86
|
-
},
|
|
87
|
-
docsFilterInput:{
|
|
88
|
-
slug:"FilterInputString"
|
|
89
|
-
},
|
|
90
36
|
ID: `scalar.ID` as const
|
|
91
37
|
}
|
|
92
38
|
|
|
@@ -307,539 +253,558 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
307
253
|
listShapes:"Shape",
|
|
308
254
|
tailwind:"TailwindConfiguration",
|
|
309
255
|
listForms:"Form",
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
modelShapenewshape:"ModelNavigationCompiled",
|
|
355
|
-
previewFieldsShapenewshape:"ModelNavigationCompiled",
|
|
356
|
-
oneShapenewshape:"Shapenewshape",
|
|
357
|
-
fieldSetShapepricing_table:"String",
|
|
358
|
-
modelShapepricing_table:"ModelNavigationCompiled",
|
|
359
|
-
previewFieldsShapepricing_table:"ModelNavigationCompiled",
|
|
360
|
-
oneShapepricing_table:"Shapepricing_table",
|
|
361
|
-
fieldSetShapepricingv1:"String",
|
|
362
|
-
modelShapepricingv1:"ModelNavigationCompiled",
|
|
363
|
-
previewFieldsShapepricingv1:"ModelNavigationCompiled",
|
|
364
|
-
oneShapepricingv1:"Shapepricingv1",
|
|
365
|
-
fieldSetShapeprofile_info:"String",
|
|
366
|
-
modelShapeprofile_info:"ModelNavigationCompiled",
|
|
367
|
-
previewFieldsShapeprofile_info:"ModelNavigationCompiled",
|
|
368
|
-
oneShapeprofile_info:"Shapeprofile_info",
|
|
369
|
-
fieldSetShapesupport:"String",
|
|
370
|
-
modelShapesupport:"ModelNavigationCompiled",
|
|
371
|
-
previewFieldsShapesupport:"ModelNavigationCompiled",
|
|
372
|
-
oneShapesupport:"Shapesupport",
|
|
373
|
-
fieldSetShapeusage:"String",
|
|
374
|
-
modelShapeusage:"ModelNavigationCompiled",
|
|
375
|
-
previewFieldsShapeusage:"ModelNavigationCompiled",
|
|
376
|
-
oneShapeusage:"Shapeusage",
|
|
377
|
-
variantsViewaccount:"Viewaccount",
|
|
378
|
-
fieldSetViewaccount:"String",
|
|
379
|
-
modelViewaccount:"ModelNavigationCompiled",
|
|
380
|
-
previewFieldsViewaccount:"ModelNavigationCompiled",
|
|
381
|
-
oneViewaccount:"Viewaccount",
|
|
382
|
-
oneAsScalarViewaccount:"ViewAsScalar",
|
|
383
|
-
variantsViewfeatures:"Viewfeatures",
|
|
384
|
-
fieldSetViewfeatures:"String",
|
|
385
|
-
modelViewfeatures:"ModelNavigationCompiled",
|
|
386
|
-
previewFieldsViewfeatures:"ModelNavigationCompiled",
|
|
387
|
-
oneViewfeatures:"Viewfeatures",
|
|
388
|
-
oneAsScalarViewfeatures:"ViewAsScalar",
|
|
389
|
-
variantsViewhomepage:"Viewhomepage",
|
|
390
|
-
fieldSetViewhomepage:"String",
|
|
391
|
-
modelViewhomepage:"ModelNavigationCompiled",
|
|
392
|
-
previewFieldsViewhomepage:"ModelNavigationCompiled",
|
|
393
|
-
oneViewhomepage:"Viewhomepage",
|
|
394
|
-
oneAsScalarViewhomepage:"ViewAsScalar",
|
|
395
|
-
variantsViewhowitworks:"Viewhowitworks",
|
|
396
|
-
fieldSetViewhowitworks:"String",
|
|
397
|
-
modelViewhowitworks:"ModelNavigationCompiled",
|
|
398
|
-
previewFieldsViewhowitworks:"ModelNavigationCompiled",
|
|
399
|
-
oneViewhowitworks:"Viewhowitworks",
|
|
400
|
-
oneAsScalarViewhowitworks:"ViewAsScalar",
|
|
401
|
-
variantsViewpricing:"Viewpricing",
|
|
402
|
-
fieldSetViewpricing:"String",
|
|
403
|
-
modelViewpricing:"ModelNavigationCompiled",
|
|
404
|
-
previewFieldsViewpricing:"ModelNavigationCompiled",
|
|
405
|
-
oneViewpricing:"Viewpricing",
|
|
406
|
-
oneAsScalarViewpricing:"ViewAsScalar"
|
|
256
|
+
fieldSetShapeexamples_contactform:"String",
|
|
257
|
+
modelShapeexamples_contactform:"ModelNavigationCompiled",
|
|
258
|
+
previewFieldsShapeexamples_contactform:"ModelNavigationCompiled",
|
|
259
|
+
oneShapeexamples_contactform:"Shapeexamples_contactform",
|
|
260
|
+
fieldSetShapeexamples_featuregrid:"String",
|
|
261
|
+
modelShapeexamples_featuregrid:"ModelNavigationCompiled",
|
|
262
|
+
previewFieldsShapeexamples_featuregrid:"ModelNavigationCompiled",
|
|
263
|
+
oneShapeexamples_featuregrid:"Shapeexamples_featuregrid",
|
|
264
|
+
fieldSetShapeexamples_herosection:"String",
|
|
265
|
+
modelShapeexamples_herosection:"ModelNavigationCompiled",
|
|
266
|
+
previewFieldsShapeexamples_herosection:"ModelNavigationCompiled",
|
|
267
|
+
oneShapeexamples_herosection:"Shapeexamples_herosection",
|
|
268
|
+
fieldSetShapeexamples_newslettersignup:"String",
|
|
269
|
+
modelShapeexamples_newslettersignup:"ModelNavigationCompiled",
|
|
270
|
+
previewFieldsShapeexamples_newslettersignup:"ModelNavigationCompiled",
|
|
271
|
+
oneShapeexamples_newslettersignup:"Shapeexamples_newslettersignup",
|
|
272
|
+
fieldSetShapeexamples_pricingplans:"String",
|
|
273
|
+
modelShapeexamples_pricingplans:"ModelNavigationCompiled",
|
|
274
|
+
previewFieldsShapeexamples_pricingplans:"ModelNavigationCompiled",
|
|
275
|
+
oneShapeexamples_pricingplans:"Shapeexamples_pricingplans",
|
|
276
|
+
fieldSetShapeexamples_pricingplans_1:"String",
|
|
277
|
+
modelShapeexamples_pricingplans_1:"ModelNavigationCompiled",
|
|
278
|
+
previewFieldsShapeexamples_pricingplans_1:"ModelNavigationCompiled",
|
|
279
|
+
oneShapeexamples_pricingplans_1:"Shapeexamples_pricingplans_1",
|
|
280
|
+
fieldSetShapeexamples_productcard:"String",
|
|
281
|
+
modelShapeexamples_productcard:"ModelNavigationCompiled",
|
|
282
|
+
previewFieldsShapeexamples_productcard:"ModelNavigationCompiled",
|
|
283
|
+
oneShapeexamples_productcard:"Shapeexamples_productcard",
|
|
284
|
+
fieldSetShapeexamples_testimonialcard:"String",
|
|
285
|
+
modelShapeexamples_testimonialcard:"ModelNavigationCompiled",
|
|
286
|
+
previewFieldsShapeexamples_testimonialcard:"ModelNavigationCompiled",
|
|
287
|
+
oneShapeexamples_testimonialcard:"Shapeexamples_testimonialcard",
|
|
288
|
+
fieldSetShapeexamplescontactform:"String",
|
|
289
|
+
modelShapeexamplescontactform:"ModelNavigationCompiled",
|
|
290
|
+
previewFieldsShapeexamplescontactform:"ModelNavigationCompiled",
|
|
291
|
+
oneShapeexamplescontactform:"Shapeexamplescontactform",
|
|
292
|
+
fieldSetShapeproductcard:"String",
|
|
293
|
+
modelShapeproductcard:"ModelNavigationCompiled",
|
|
294
|
+
previewFieldsShapeproductcard:"ModelNavigationCompiled",
|
|
295
|
+
oneShapeproductcard:"Shapeproductcard",
|
|
296
|
+
fieldSetShapereactcomponent:"String",
|
|
297
|
+
modelShapereactcomponent:"ModelNavigationCompiled",
|
|
298
|
+
previewFieldsShapereactcomponent:"ModelNavigationCompiled",
|
|
299
|
+
oneShapereactcomponent:"Shapereactcomponent"
|
|
407
300
|
},
|
|
408
301
|
RootParamsType:{
|
|
409
|
-
_version:"String"
|
|
410
|
-
locale:"String"
|
|
302
|
+
_version:"String"
|
|
411
303
|
},
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
pageInfo:"PageInfo"
|
|
304
|
+
Shapeexamples_contactformSectionSectionHeading:{
|
|
305
|
+
subtitle:"String"
|
|
415
306
|
},
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
title:"String",
|
|
419
|
-
seotitle:"String",
|
|
420
|
-
metadesc:"String",
|
|
421
|
-
sortid:"Float",
|
|
422
|
-
main_category:"String",
|
|
423
|
-
content:"String",
|
|
424
|
-
video:"VideoField",
|
|
425
|
-
locale:"String",
|
|
426
|
-
slug:"String",
|
|
427
|
-
_id:"String",
|
|
428
|
-
createdAt:"Float",
|
|
429
|
-
updatedAt:"Float",
|
|
430
|
-
draft_version:"Boolean",
|
|
431
|
-
json_ld:"String"
|
|
432
|
-
},
|
|
433
|
-
ViewaccountMain:{
|
|
434
|
-
profile:"Shapeprofile_info",
|
|
435
|
-
projects:"Shapelista_projektow"
|
|
436
|
-
},
|
|
437
|
-
Viewaccount:{
|
|
438
|
-
_version:"VersionField",
|
|
439
|
-
main:"ViewaccountMain",
|
|
440
|
-
locale:"String",
|
|
441
|
-
slug:"String",
|
|
442
|
-
_id:"String",
|
|
443
|
-
createdAt:"Float",
|
|
444
|
-
updatedAt:"Float",
|
|
445
|
-
draft_version:"Boolean",
|
|
446
|
-
json_ld:"String"
|
|
447
|
-
},
|
|
448
|
-
ViewfeaturesMain:{
|
|
449
|
-
auto_translation:"Shapefeaturepresentation",
|
|
450
|
-
ai_component:"Shapefeaturepresentation"
|
|
451
|
-
},
|
|
452
|
-
Viewfeatures:{
|
|
453
|
-
_version:"VersionField",
|
|
454
|
-
main:"ViewfeaturesMain",
|
|
455
|
-
locale:"String",
|
|
456
|
-
slug:"String",
|
|
457
|
-
_id:"String",
|
|
458
|
-
createdAt:"Float",
|
|
459
|
-
updatedAt:"Float",
|
|
460
|
-
draft_version:"Boolean",
|
|
461
|
-
json_ld:"String"
|
|
462
|
-
},
|
|
463
|
-
Viewhomepage:{
|
|
464
|
-
_version:"VersionField",
|
|
465
|
-
nav:"Shapenav",
|
|
466
|
-
main:"Shapehero",
|
|
467
|
-
hero:"Shapeherox",
|
|
468
|
-
pricing:"Shapepricingv1",
|
|
469
|
-
footer:"Shapefoot",
|
|
470
|
-
locale:"String",
|
|
471
|
-
slug:"String",
|
|
472
|
-
_id:"String",
|
|
473
|
-
createdAt:"Float",
|
|
474
|
-
updatedAt:"Float",
|
|
475
|
-
draft_version:"Boolean",
|
|
476
|
-
json_ld:"String"
|
|
307
|
+
Shapeexamples_contactformSectionSectionDescription:{
|
|
308
|
+
description:"String"
|
|
477
309
|
},
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
310
|
+
Shapeexamples_contactformSectionSectionForm:{
|
|
311
|
+
name:"String",
|
|
312
|
+
email:"String",
|
|
313
|
+
message:"String"
|
|
482
314
|
},
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
315
|
+
Shapeexamples_contactformSectionSectionButton:{
|
|
316
|
+
button_text:"String"
|
|
317
|
+
},
|
|
318
|
+
Shapeexamples_contactformSectionSectionLink:{
|
|
319
|
+
cta:"String",
|
|
320
|
+
href:"String"
|
|
321
|
+
},
|
|
322
|
+
Shapeexamples_contactformSectionSection:{
|
|
323
|
+
heading:"Shapeexamples_contactformSectionSectionHeading",
|
|
324
|
+
description:"Shapeexamples_contactformSectionSectionDescription",
|
|
325
|
+
form:"Shapeexamples_contactformSectionSectionForm",
|
|
326
|
+
button:"Shapeexamples_contactformSectionSectionButton",
|
|
327
|
+
link:"Shapeexamples_contactformSectionSectionLink"
|
|
328
|
+
},
|
|
329
|
+
Shapeexamples_contactformSection:{
|
|
330
|
+
section:"Shapeexamples_contactformSectionSection"
|
|
331
|
+
},
|
|
332
|
+
Shapeexamples_contactform:{
|
|
333
|
+
section:"Shapeexamples_contactformSection",
|
|
502
334
|
_id:"String",
|
|
503
335
|
createdAt:"Float",
|
|
504
|
-
updatedAt:"Float"
|
|
505
|
-
draft_version:"Boolean",
|
|
506
|
-
json_ld:"String"
|
|
336
|
+
updatedAt:"Float"
|
|
507
337
|
},
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
link:"String"
|
|
338
|
+
Shapeexamples_featuregridSectionSectionHeaderFeatures_title:{
|
|
339
|
+
subtitle:"String"
|
|
511
340
|
},
|
|
512
|
-
|
|
513
|
-
|
|
341
|
+
Shapeexamples_featuregridSectionSectionHeaderFeatures_description:{
|
|
342
|
+
description:"String"
|
|
514
343
|
},
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
344
|
+
Shapeexamples_featuregridSectionSectionHeader:{
|
|
345
|
+
features_title:"Shapeexamples_featuregridSectionSectionHeaderFeatures_title",
|
|
346
|
+
features_description:"Shapeexamples_featuregridSectionSectionHeaderFeatures_description"
|
|
518
347
|
},
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
348
|
+
Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_title_1:{
|
|
349
|
+
h3:"String"
|
|
350
|
+
},
|
|
351
|
+
Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_description_1:{
|
|
352
|
+
description:"String"
|
|
353
|
+
},
|
|
354
|
+
Shapeexamples_featuregridSectionSectionMd_gridcols3Media:{
|
|
355
|
+
image:"ImageField",
|
|
356
|
+
feature_title_1:"Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_title_1",
|
|
357
|
+
feature_description_1:"Shapeexamples_featuregridSectionSectionMd_gridcols3MediaFeature_description_1"
|
|
358
|
+
},
|
|
359
|
+
Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_title_2:{
|
|
360
|
+
h3:"String"
|
|
361
|
+
},
|
|
362
|
+
Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_description_2:{
|
|
363
|
+
description:"String"
|
|
364
|
+
},
|
|
365
|
+
Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2:{
|
|
366
|
+
image:"ImageField",
|
|
367
|
+
feature_title_2:"Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_title_2",
|
|
368
|
+
feature_description_2:"Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2Feature_description_2"
|
|
369
|
+
},
|
|
370
|
+
Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_title_3:{
|
|
371
|
+
h3:"String"
|
|
372
|
+
},
|
|
373
|
+
Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_description_3:{
|
|
374
|
+
description:"String"
|
|
375
|
+
},
|
|
376
|
+
Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3:{
|
|
377
|
+
image:"ImageField",
|
|
378
|
+
feature_title_3:"Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_title_3",
|
|
379
|
+
feature_description_3:"Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3Feature_description_3"
|
|
522
380
|
},
|
|
523
|
-
|
|
524
|
-
|
|
381
|
+
Shapeexamples_featuregridSectionSectionMd_gridcols3:{
|
|
382
|
+
media:"Shapeexamples_featuregridSectionSectionMd_gridcols3Media",
|
|
383
|
+
media_2:"Shapeexamples_featuregridSectionSectionMd_gridcols3Media_2",
|
|
384
|
+
media_3:"Shapeexamples_featuregridSectionSectionMd_gridcols3Media_3"
|
|
525
385
|
},
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
386
|
+
Shapeexamples_featuregridSectionSection:{
|
|
387
|
+
header:"Shapeexamples_featuregridSectionSectionHeader",
|
|
388
|
+
md_gridcols3:"Shapeexamples_featuregridSectionSectionMd_gridcols3"
|
|
529
389
|
},
|
|
530
|
-
|
|
531
|
-
|
|
390
|
+
Shapeexamples_featuregridSection:{
|
|
391
|
+
section:"Shapeexamples_featuregridSectionSection"
|
|
392
|
+
},
|
|
393
|
+
Shapeexamples_featuregrid:{
|
|
394
|
+
section:"Shapeexamples_featuregridSection",
|
|
532
395
|
_id:"String",
|
|
533
396
|
createdAt:"Float",
|
|
534
397
|
updatedAt:"Float"
|
|
535
398
|
},
|
|
536
|
-
|
|
537
|
-
|
|
399
|
+
Shapeexamples_herosectionSectionSectionHeading:{
|
|
400
|
+
title:"String"
|
|
401
|
+
},
|
|
402
|
+
Shapeexamples_herosectionSectionSectionDescription:{
|
|
403
|
+
description:"String"
|
|
404
|
+
},
|
|
405
|
+
Shapeexamples_herosectionSectionSectionSectionLink:{
|
|
406
|
+
cta:"String",
|
|
407
|
+
href:"String"
|
|
538
408
|
},
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
409
|
+
Shapeexamples_herosectionSectionSectionSectionLink_2:{
|
|
410
|
+
cta:"String",
|
|
411
|
+
href:"String"
|
|
542
412
|
},
|
|
543
|
-
|
|
544
|
-
|
|
413
|
+
Shapeexamples_herosectionSectionSectionSection:{
|
|
414
|
+
link:"Shapeexamples_herosectionSectionSectionSectionLink",
|
|
415
|
+
link_2:"Shapeexamples_herosectionSectionSectionSectionLink_2"
|
|
545
416
|
},
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
scrollspy:"Shapedocs_contentDocumentation_pageContent_containerScrollspy"
|
|
417
|
+
Shapeexamples_herosectionSectionSectionMedia:{
|
|
418
|
+
image:"ImageField"
|
|
549
419
|
},
|
|
550
|
-
|
|
551
|
-
|
|
420
|
+
Shapeexamples_herosectionSectionSection:{
|
|
421
|
+
heading:"Shapeexamples_herosectionSectionSectionHeading",
|
|
422
|
+
description:"Shapeexamples_herosectionSectionSectionDescription",
|
|
423
|
+
section:"Shapeexamples_herosectionSectionSectionSection",
|
|
424
|
+
media:"Shapeexamples_herosectionSectionSectionMedia"
|
|
552
425
|
},
|
|
553
|
-
|
|
554
|
-
|
|
426
|
+
Shapeexamples_herosectionSection:{
|
|
427
|
+
section:"Shapeexamples_herosectionSectionSection"
|
|
428
|
+
},
|
|
429
|
+
Shapeexamples_herosection:{
|
|
430
|
+
section:"Shapeexamples_herosectionSection",
|
|
555
431
|
_id:"String",
|
|
556
432
|
createdAt:"Float",
|
|
557
433
|
updatedAt:"Float"
|
|
558
434
|
},
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
link:"String"
|
|
435
|
+
Shapeexamples_newslettersignupSectionSectionHeading:{
|
|
436
|
+
subtitle:"String"
|
|
562
437
|
},
|
|
563
|
-
|
|
564
|
-
|
|
438
|
+
Shapeexamples_newslettersignupSectionSectionDescription:{
|
|
439
|
+
description:"String"
|
|
565
440
|
},
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
441
|
+
Shapeexamples_newslettersignupSectionSectionFormButton:{
|
|
442
|
+
button_text:"String"
|
|
443
|
+
},
|
|
444
|
+
Shapeexamples_newslettersignupSectionSectionForm:{
|
|
445
|
+
email:"String",
|
|
446
|
+
button:"Shapeexamples_newslettersignupSectionSectionFormButton"
|
|
569
447
|
},
|
|
570
|
-
|
|
571
|
-
|
|
448
|
+
Shapeexamples_newslettersignupSectionSectionDescription_2Link:{
|
|
449
|
+
cta:"String",
|
|
450
|
+
href:"String"
|
|
451
|
+
},
|
|
452
|
+
Shapeexamples_newslettersignupSectionSectionDescription_2:{
|
|
453
|
+
description:"String",
|
|
454
|
+
link:"Shapeexamples_newslettersignupSectionSectionDescription_2Link"
|
|
572
455
|
},
|
|
573
|
-
|
|
574
|
-
|
|
456
|
+
Shapeexamples_newslettersignupSectionSection:{
|
|
457
|
+
heading:"Shapeexamples_newslettersignupSectionSectionHeading",
|
|
458
|
+
description:"Shapeexamples_newslettersignupSectionSectionDescription",
|
|
459
|
+
form:"Shapeexamples_newslettersignupSectionSectionForm",
|
|
460
|
+
description_2:"Shapeexamples_newslettersignupSectionSectionDescription_2"
|
|
461
|
+
},
|
|
462
|
+
Shapeexamples_newslettersignupSection:{
|
|
463
|
+
section:"Shapeexamples_newslettersignupSectionSection"
|
|
464
|
+
},
|
|
465
|
+
Shapeexamples_newslettersignup:{
|
|
466
|
+
section:"Shapeexamples_newslettersignupSection",
|
|
575
467
|
_id:"String",
|
|
576
468
|
createdAt:"Float",
|
|
577
469
|
updatedAt:"Float"
|
|
578
470
|
},
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
471
|
+
Shapeexamples_pricingplansSectionSectionHeaderPricing_title:{
|
|
472
|
+
subtitle:"String"
|
|
473
|
+
},
|
|
474
|
+
Shapeexamples_pricingplansSectionSectionHeaderPricing_description:{
|
|
475
|
+
description:"String"
|
|
476
|
+
},
|
|
477
|
+
Shapeexamples_pricingplansSectionSectionHeader:{
|
|
478
|
+
pricing_title:"Shapeexamples_pricingplansSectionSectionHeaderPricing_title",
|
|
479
|
+
pricing_description:"Shapeexamples_pricingplansSectionSectionHeaderPricing_description"
|
|
480
|
+
},
|
|
481
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_name_1:{
|
|
482
|
+
h3:"String"
|
|
483
|
+
},
|
|
484
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSectionPlan_price_1:{
|
|
582
485
|
content:"String"
|
|
583
486
|
},
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
_id:"String",
|
|
587
|
-
createdAt:"Float",
|
|
588
|
-
updatedAt:"Float"
|
|
487
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSection:{
|
|
488
|
+
plan_price_1:"Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSectionPlan_price_1"
|
|
589
489
|
},
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
terms_of_service:"String",
|
|
593
|
-
contact_us:"String"
|
|
490
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderList:{
|
|
491
|
+
items:"String"
|
|
594
492
|
},
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
footer_copy:"String"
|
|
493
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_cta_1:{
|
|
494
|
+
cta:"String",
|
|
495
|
+
href:"String"
|
|
599
496
|
},
|
|
600
|
-
|
|
601
|
-
|
|
497
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3Border:{
|
|
498
|
+
plan_name_1:"Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_name_1",
|
|
499
|
+
section:"Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderSection",
|
|
500
|
+
list:"Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderList",
|
|
501
|
+
plan_cta_1:"Shapeexamples_pricingplansSectionSectionMd_gridcols3BorderPlan_cta_1"
|
|
602
502
|
},
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
_id:"String",
|
|
606
|
-
createdAt:"Float",
|
|
607
|
-
updatedAt:"Float"
|
|
503
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_name_2:{
|
|
504
|
+
h3:"String"
|
|
608
505
|
},
|
|
609
|
-
|
|
610
|
-
|
|
506
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2SectionPlan_price_2:{
|
|
507
|
+
content:"String"
|
|
611
508
|
},
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
logo:"String",
|
|
615
|
-
slogan_parent:"ShapeheroHero_componentSlogan_parent",
|
|
616
|
-
subslogan:"String"
|
|
509
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Section:{
|
|
510
|
+
plan_price_2:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2SectionPlan_price_2"
|
|
617
511
|
},
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
_id:"String",
|
|
621
|
-
createdAt:"Float",
|
|
622
|
-
updatedAt:"Float"
|
|
512
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2List:{
|
|
513
|
+
items:"String"
|
|
623
514
|
},
|
|
624
|
-
|
|
625
|
-
|
|
515
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_cta_2:{
|
|
516
|
+
cta:"String",
|
|
517
|
+
href:"String"
|
|
626
518
|
},
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
519
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2:{
|
|
520
|
+
plan_name_2:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_name_2",
|
|
521
|
+
section:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Section",
|
|
522
|
+
list:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2List",
|
|
523
|
+
plan_cta_2:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2Plan_cta_2"
|
|
631
524
|
},
|
|
632
|
-
|
|
633
|
-
|
|
525
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_name_3:{
|
|
526
|
+
h3:"String"
|
|
634
527
|
},
|
|
635
|
-
|
|
636
|
-
|
|
528
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3SectionPlan_price_3:{
|
|
529
|
+
content:"String"
|
|
637
530
|
},
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
image_wrapper:"ShapeheroxHero_sectionHero_containerImage_wrapper",
|
|
641
|
-
presentation:"ShapeheroxHero_sectionHero_containerPresentation"
|
|
531
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Section:{
|
|
532
|
+
plan_price_3:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3SectionPlan_price_3"
|
|
642
533
|
},
|
|
643
|
-
|
|
644
|
-
|
|
534
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3List:{
|
|
535
|
+
items:"String"
|
|
536
|
+
},
|
|
537
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_cta_3:{
|
|
538
|
+
cta:"String",
|
|
539
|
+
href:"String"
|
|
645
540
|
},
|
|
646
|
-
|
|
647
|
-
|
|
541
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3:{
|
|
542
|
+
plan_name_3:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_name_3",
|
|
543
|
+
section:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Section",
|
|
544
|
+
list:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3List",
|
|
545
|
+
plan_cta_3:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3Plan_cta_3"
|
|
546
|
+
},
|
|
547
|
+
Shapeexamples_pricingplansSectionSectionMd_gridcols3:{
|
|
548
|
+
border:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border",
|
|
549
|
+
border_2:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_2",
|
|
550
|
+
border_3:"Shapeexamples_pricingplansSectionSectionMd_gridcols3Border_3"
|
|
551
|
+
},
|
|
552
|
+
Shapeexamples_pricingplansSectionSection:{
|
|
553
|
+
header:"Shapeexamples_pricingplansSectionSectionHeader",
|
|
554
|
+
md_gridcols3:"Shapeexamples_pricingplansSectionSectionMd_gridcols3"
|
|
555
|
+
},
|
|
556
|
+
Shapeexamples_pricingplansSection:{
|
|
557
|
+
section:"Shapeexamples_pricingplansSectionSection"
|
|
558
|
+
},
|
|
559
|
+
Shapeexamples_pricingplans:{
|
|
560
|
+
section:"Shapeexamples_pricingplansSection",
|
|
648
561
|
_id:"String",
|
|
649
562
|
createdAt:"Float",
|
|
650
563
|
updatedAt:"Float"
|
|
651
564
|
},
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
remove_button:"String"
|
|
565
|
+
Shapeexamples_pricingplans_1ContainerPricingHeader:{
|
|
566
|
+
subtitle:"String",
|
|
567
|
+
description:"String"
|
|
656
568
|
},
|
|
657
|
-
|
|
658
|
-
|
|
569
|
+
Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsPriceblock:{
|
|
570
|
+
price:"String"
|
|
659
571
|
},
|
|
660
|
-
|
|
572
|
+
Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsCta:{
|
|
661
573
|
title:"String",
|
|
662
|
-
|
|
663
|
-
projects:"Shapelista_projektowListProjects"
|
|
574
|
+
href:"String"
|
|
664
575
|
},
|
|
665
|
-
|
|
666
|
-
|
|
576
|
+
Shapeexamples_pricingplans_1ContainerPricingPlansPlan_items:{
|
|
577
|
+
name:"String",
|
|
578
|
+
priceblock:"Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsPriceblock",
|
|
579
|
+
features:"String",
|
|
580
|
+
cta:"Shapeexamples_pricingplans_1ContainerPricingPlansPlan_itemsCta"
|
|
581
|
+
},
|
|
582
|
+
Shapeexamples_pricingplans_1ContainerPricingPlans:{
|
|
583
|
+
plan_items:"Shapeexamples_pricingplans_1ContainerPricingPlansPlan_items"
|
|
584
|
+
},
|
|
585
|
+
Shapeexamples_pricingplans_1ContainerPricing:{
|
|
586
|
+
header:"Shapeexamples_pricingplans_1ContainerPricingHeader",
|
|
587
|
+
plans:"Shapeexamples_pricingplans_1ContainerPricingPlans"
|
|
588
|
+
},
|
|
589
|
+
Shapeexamples_pricingplans_1Container:{
|
|
590
|
+
pricing:"Shapeexamples_pricingplans_1ContainerPricing"
|
|
591
|
+
},
|
|
592
|
+
Shapeexamples_pricingplans_1:{
|
|
593
|
+
container:"Shapeexamples_pricingplans_1Container",
|
|
667
594
|
_id:"String",
|
|
668
595
|
createdAt:"Float",
|
|
669
596
|
updatedAt:"Float"
|
|
670
597
|
},
|
|
671
|
-
|
|
672
|
-
|
|
598
|
+
Shapeexamples_productcardSectionSectionMediaRounded:{
|
|
599
|
+
content:"String"
|
|
600
|
+
},
|
|
601
|
+
Shapeexamples_productcardSectionSectionMedia:{
|
|
602
|
+
image:"ImageField",
|
|
603
|
+
rounded:"Shapeexamples_productcardSectionSectionMediaRounded"
|
|
604
|
+
},
|
|
605
|
+
Shapeexamples_productcardSectionSectionSectionProduct_title:{
|
|
606
|
+
subtitle:"String"
|
|
607
|
+
},
|
|
608
|
+
Shapeexamples_productcardSectionSectionSectionProduct_description:{
|
|
609
|
+
description:"String"
|
|
610
|
+
},
|
|
611
|
+
Shapeexamples_productcardSectionSectionSectionSectionSectionInline:{
|
|
612
|
+
content:"String"
|
|
613
|
+
},
|
|
614
|
+
Shapeexamples_productcardSectionSectionSectionSectionSectionProduct_price:{
|
|
615
|
+
content:"String"
|
|
616
|
+
},
|
|
617
|
+
Shapeexamples_productcardSectionSectionSectionSectionSection:{
|
|
618
|
+
inline:"Shapeexamples_productcardSectionSectionSectionSectionSectionInline",
|
|
619
|
+
product_price:"Shapeexamples_productcardSectionSectionSectionSectionSectionProduct_price"
|
|
620
|
+
},
|
|
621
|
+
Shapeexamples_productcardSectionSectionSectionSectionProduct_cta_url:{
|
|
622
|
+
cta:"String",
|
|
673
623
|
href:"String"
|
|
674
624
|
},
|
|
675
|
-
|
|
676
|
-
|
|
625
|
+
Shapeexamples_productcardSectionSectionSectionSection:{
|
|
626
|
+
section:"Shapeexamples_productcardSectionSectionSectionSectionSection",
|
|
627
|
+
product_cta_url:"Shapeexamples_productcardSectionSectionSectionSectionProduct_cta_url"
|
|
677
628
|
},
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
629
|
+
Shapeexamples_productcardSectionSectionSectionFormLabel:{
|
|
630
|
+
html_for:"String",
|
|
631
|
+
content:"String"
|
|
681
632
|
},
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
633
|
+
Shapeexamples_productcardSectionSectionSectionFormLabel_2:{
|
|
634
|
+
html_for:"String",
|
|
635
|
+
content:"String"
|
|
636
|
+
},
|
|
637
|
+
Shapeexamples_productcardSectionSectionSectionForm:{
|
|
638
|
+
label:"Shapeexamples_productcardSectionSectionSectionFormLabel",
|
|
639
|
+
product_color:"String",
|
|
640
|
+
label_2:"Shapeexamples_productcardSectionSectionSectionFormLabel_2",
|
|
641
|
+
product_quantity:"String"
|
|
687
642
|
},
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
cta_href:"String"
|
|
643
|
+
Shapeexamples_productcardSectionSectionSection:{
|
|
644
|
+
product_title:"Shapeexamples_productcardSectionSectionSectionProduct_title",
|
|
645
|
+
product_description:"Shapeexamples_productcardSectionSectionSectionProduct_description",
|
|
646
|
+
section:"Shapeexamples_productcardSectionSectionSectionSection",
|
|
647
|
+
form:"Shapeexamples_productcardSectionSectionSectionForm"
|
|
694
648
|
},
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
hero_image:"ImageField"
|
|
649
|
+
Shapeexamples_productcardSectionSection:{
|
|
650
|
+
media:"Shapeexamples_productcardSectionSectionMedia",
|
|
651
|
+
section:"Shapeexamples_productcardSectionSectionSection"
|
|
699
652
|
},
|
|
700
|
-
|
|
701
|
-
|
|
653
|
+
Shapeexamples_productcardSection:{
|
|
654
|
+
section:"Shapeexamples_productcardSectionSection"
|
|
655
|
+
},
|
|
656
|
+
Shapeexamples_productcard:{
|
|
657
|
+
section:"Shapeexamples_productcardSection",
|
|
702
658
|
_id:"String",
|
|
703
659
|
createdAt:"Float",
|
|
704
660
|
updatedAt:"Float"
|
|
705
661
|
},
|
|
706
|
-
|
|
707
|
-
title:"String",
|
|
662
|
+
Shapeexamples_testimonialcardSectionFigureBlockquoteQuote:{
|
|
708
663
|
description:"String"
|
|
709
664
|
},
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
unit:"String",
|
|
713
|
-
price:"String"
|
|
665
|
+
Shapeexamples_testimonialcardSectionFigureBlockquote:{
|
|
666
|
+
quote:"Shapeexamples_testimonialcardSectionFigureBlockquoteQuote"
|
|
714
667
|
},
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
unit:"String",
|
|
718
|
-
price:"String"
|
|
668
|
+
Shapeexamples_testimonialcardSectionFigureFigcaptionSectionAuthor:{
|
|
669
|
+
content:"String"
|
|
719
670
|
},
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
rows:"Shapepricing_tablePricing_sectionPricing_tableRows"
|
|
671
|
+
Shapeexamples_testimonialcardSectionFigureFigcaptionSectionRole:{
|
|
672
|
+
content:"String"
|
|
723
673
|
},
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
674
|
+
Shapeexamples_testimonialcardSectionFigureFigcaptionSection:{
|
|
675
|
+
author:"Shapeexamples_testimonialcardSectionFigureFigcaptionSectionAuthor",
|
|
676
|
+
role:"Shapeexamples_testimonialcardSectionFigureFigcaptionSectionRole"
|
|
677
|
+
},
|
|
678
|
+
Shapeexamples_testimonialcardSectionFigureFigcaptionLink:{
|
|
679
|
+
cta:"String",
|
|
680
|
+
href:"String"
|
|
727
681
|
},
|
|
728
|
-
|
|
729
|
-
|
|
682
|
+
Shapeexamples_testimonialcardSectionFigureFigcaption:{
|
|
683
|
+
section:"Shapeexamples_testimonialcardSectionFigureFigcaptionSection",
|
|
684
|
+
link:"Shapeexamples_testimonialcardSectionFigureFigcaptionLink"
|
|
685
|
+
},
|
|
686
|
+
Shapeexamples_testimonialcardSectionFigure:{
|
|
687
|
+
image:"ImageField",
|
|
688
|
+
blockquote:"Shapeexamples_testimonialcardSectionFigureBlockquote",
|
|
689
|
+
figcaption:"Shapeexamples_testimonialcardSectionFigureFigcaption"
|
|
690
|
+
},
|
|
691
|
+
Shapeexamples_testimonialcardSection:{
|
|
692
|
+
figure:"Shapeexamples_testimonialcardSectionFigure"
|
|
693
|
+
},
|
|
694
|
+
Shapeexamples_testimonialcard:{
|
|
695
|
+
section:"Shapeexamples_testimonialcardSection",
|
|
730
696
|
_id:"String",
|
|
731
697
|
createdAt:"Float",
|
|
732
698
|
updatedAt:"Float"
|
|
733
699
|
},
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
description:"String"
|
|
700
|
+
ShapeexamplescontactformSectionSectionHeading:{
|
|
701
|
+
subtitle:"String"
|
|
737
702
|
},
|
|
738
|
-
|
|
739
|
-
|
|
703
|
+
ShapeexamplescontactformSectionSectionDescription:{
|
|
704
|
+
description:"String"
|
|
740
705
|
},
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
feature_list:"Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list",
|
|
746
|
-
cta:"String"
|
|
706
|
+
ShapeexamplescontactformSectionSectionForm:{
|
|
707
|
+
name:"String",
|
|
708
|
+
email:"String",
|
|
709
|
+
message:"String"
|
|
747
710
|
},
|
|
748
|
-
|
|
749
|
-
|
|
711
|
+
ShapeexamplescontactformSectionSectionButton:{
|
|
712
|
+
button_text:"String"
|
|
750
713
|
},
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
plan_description:"String",
|
|
755
|
-
feature_list:"Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list",
|
|
756
|
-
cta:"String"
|
|
714
|
+
ShapeexamplescontactformSectionSectionLink:{
|
|
715
|
+
cta:"String",
|
|
716
|
+
href:"String"
|
|
757
717
|
},
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
718
|
+
ShapeexamplescontactformSectionSection:{
|
|
719
|
+
heading:"ShapeexamplescontactformSectionSectionHeading",
|
|
720
|
+
description:"ShapeexamplescontactformSectionSectionDescription",
|
|
721
|
+
form:"ShapeexamplescontactformSectionSectionForm",
|
|
722
|
+
button:"ShapeexamplescontactformSectionSectionButton",
|
|
723
|
+
link:"ShapeexamplescontactformSectionSectionLink"
|
|
761
724
|
},
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
plans_grid:"Shapepricingv1Pricing_sectionPlans_grid"
|
|
725
|
+
ShapeexamplescontactformSection:{
|
|
726
|
+
section:"ShapeexamplescontactformSectionSection"
|
|
765
727
|
},
|
|
766
|
-
|
|
767
|
-
|
|
728
|
+
Shapeexamplescontactform:{
|
|
729
|
+
section:"ShapeexamplescontactformSection",
|
|
768
730
|
_id:"String",
|
|
769
731
|
createdAt:"Float",
|
|
770
732
|
updatedAt:"Float"
|
|
771
733
|
},
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
email:"String"
|
|
734
|
+
ShapeproductcardProductcardProductcard_innerMedia:{
|
|
735
|
+
product_image:"ImageField",
|
|
736
|
+
badge:"String"
|
|
776
737
|
},
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
738
|
+
ShapeproductcardProductcardProductcard_innerContentPriceblockPricepart:{
|
|
739
|
+
price_label:"String",
|
|
740
|
+
product_price:"String"
|
|
780
741
|
},
|
|
781
|
-
|
|
782
|
-
|
|
742
|
+
ShapeproductcardProductcardProductcard_innerContentPriceblockCta:{
|
|
743
|
+
cta:"String",
|
|
744
|
+
href:"String"
|
|
783
745
|
},
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
746
|
+
ShapeproductcardProductcardProductcard_innerContentPriceblock:{
|
|
747
|
+
pricepart:"ShapeproductcardProductcardProductcard_innerContentPriceblockPricepart",
|
|
748
|
+
cta:"ShapeproductcardProductcardProductcard_innerContentPriceblockCta"
|
|
787
749
|
},
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
750
|
+
ShapeproductcardProductcardProductcard_innerContentOptions:{
|
|
751
|
+
product_color_label:"String",
|
|
752
|
+
product_color:"String",
|
|
753
|
+
product_quantity_label:"String",
|
|
754
|
+
product_quantity:"String"
|
|
791
755
|
},
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
756
|
+
ShapeproductcardProductcardProductcard_innerContent:{
|
|
757
|
+
product_title:"String",
|
|
758
|
+
product_description:"String",
|
|
759
|
+
priceblock:"ShapeproductcardProductcardProductcard_innerContentPriceblock",
|
|
760
|
+
options:"ShapeproductcardProductcardProductcard_innerContentOptions"
|
|
795
761
|
},
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
monthly_api_requests:"Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"
|
|
762
|
+
ShapeproductcardProductcardProductcard_inner:{
|
|
763
|
+
media:"ShapeproductcardProductcardProductcard_innerMedia",
|
|
764
|
+
content:"ShapeproductcardProductcardProductcard_innerContent"
|
|
800
765
|
},
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
plan_status:"Shapeprofile_infoProfile_sectionPlan_status",
|
|
804
|
-
usage_section:"Shapeprofile_infoProfile_sectionUsage_section"
|
|
766
|
+
ShapeproductcardProductcard:{
|
|
767
|
+
productcard_inner:"ShapeproductcardProductcardProductcard_inner"
|
|
805
768
|
},
|
|
806
|
-
|
|
807
|
-
|
|
769
|
+
Shapeproductcard:{
|
|
770
|
+
productcard:"ShapeproductcardProductcard",
|
|
808
771
|
_id:"String",
|
|
809
772
|
createdAt:"Float",
|
|
810
773
|
updatedAt:"Float"
|
|
811
774
|
},
|
|
812
|
-
|
|
813
|
-
title:"String"
|
|
775
|
+
ShapereactcomponentSectionSectionHeading:{
|
|
776
|
+
title:"String"
|
|
777
|
+
},
|
|
778
|
+
ShapereactcomponentSectionSectionDescription:{
|
|
814
779
|
description:"String"
|
|
815
780
|
},
|
|
816
|
-
|
|
817
|
-
image:"ImageField"
|
|
818
|
-
title:"String",
|
|
819
|
-
text:"String",
|
|
820
|
-
cta:"String"
|
|
781
|
+
ShapereactcomponentSectionSectionMedia:{
|
|
782
|
+
image:"ImageField"
|
|
821
783
|
},
|
|
822
|
-
|
|
823
|
-
|
|
784
|
+
ShapereactcomponentSectionSectionLink:{
|
|
785
|
+
cta:"String",
|
|
786
|
+
href:"String"
|
|
824
787
|
},
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
788
|
+
ShapereactcomponentSectionSectionForm:{
|
|
789
|
+
name:"String",
|
|
790
|
+
description:"String"
|
|
828
791
|
},
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
_id:"String",
|
|
832
|
-
createdAt:"Float",
|
|
833
|
-
updatedAt:"Float"
|
|
792
|
+
ShapereactcomponentSectionSectionButton:{
|
|
793
|
+
button_text:"String"
|
|
834
794
|
},
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
795
|
+
ShapereactcomponentSectionSection:{
|
|
796
|
+
heading:"ShapereactcomponentSectionSectionHeading",
|
|
797
|
+
description:"ShapereactcomponentSectionSectionDescription",
|
|
798
|
+
media:"ShapereactcomponentSectionSectionMedia",
|
|
799
|
+
link:"ShapereactcomponentSectionSectionLink",
|
|
800
|
+
form:"ShapereactcomponentSectionSectionForm",
|
|
801
|
+
button:"ShapereactcomponentSectionSectionButton"
|
|
802
|
+
},
|
|
803
|
+
ShapereactcomponentSection:{
|
|
804
|
+
section:"ShapereactcomponentSectionSection"
|
|
840
805
|
},
|
|
841
|
-
|
|
842
|
-
|
|
806
|
+
Shapereactcomponent:{
|
|
807
|
+
section:"ShapereactcomponentSection",
|
|
843
808
|
_id:"String",
|
|
844
809
|
createdAt:"Float",
|
|
845
810
|
updatedAt:"Float"
|