@husar.ai/cli 0.4.0 → 0.4.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/AGENTS.md +835 -0
- package/MCP_SERVER.md +92 -0
- package/dist/auth/api.d.ts +15 -0
- package/dist/auth/api.js +86 -0
- package/dist/auth/api.js.map +1 -0
- package/dist/auth/config.d.ts +32 -0
- package/dist/auth/config.js +95 -0
- package/dist/auth/config.js.map +1 -0
- package/dist/auth/login.d.ts +30 -0
- package/dist/auth/login.js +450 -0
- package/dist/auth/login.js.map +1 -0
- package/dist/cli.js +83 -3
- package/dist/cli.js.map +1 -1
- package/dist/functions/create.d.ts +6 -0
- package/dist/functions/create.js +311 -0
- package/dist/functions/create.js.map +1 -0
- package/dist/mcp.js +20 -14
- package/dist/mcp.js.map +1 -1
- package/dist/types/config.d.ts +3 -1
- package/dist/types/config.js +12 -1
- package/dist/types/config.js.map +1 -1
- package/dist/zeus/const.js +1410 -218
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +6889 -1508
- package/dist/zeus/index.js +197 -11
- package/dist/zeus/index.js.map +1 -1
- package/package.json +3 -3
- package/src/auth/api.ts +133 -0
- package/src/auth/config.ts +198 -0
- package/src/auth/login.ts +631 -0
- package/src/cli.ts +96 -4
- package/src/functions/create.ts +489 -0
- package/src/mcp.ts +47 -27
- package/src/types/config.ts +32 -1
- package/src/zeus/const.ts +1418 -218
- package/src/zeus/index.ts +6969 -1611
package/src/zeus/const.ts
CHANGED
|
@@ -41,19 +41,154 @@ export const AllTypesProps: Record<string,any> = {
|
|
|
41
41
|
response:{
|
|
42
42
|
|
|
43
43
|
},
|
|
44
|
-
|
|
44
|
+
listPaginateddocs:{
|
|
45
|
+
page:"PageInput",
|
|
46
|
+
rootParams:"RootParamsInput",
|
|
47
|
+
sort:"docsSortInput",
|
|
48
|
+
filter:"docsFilterInput"
|
|
49
|
+
},
|
|
50
|
+
onedocsBySlug:{
|
|
51
|
+
rootParams:"RootParamsInput"
|
|
52
|
+
},
|
|
53
|
+
oneAsScalardocsBySlug:{
|
|
54
|
+
rootParams:"RootParamsInput"
|
|
55
|
+
},
|
|
56
|
+
variantsdocsBySlug:{
|
|
57
|
+
|
|
58
|
+
},
|
|
59
|
+
listPaginatednewsletter_subscription_form:{
|
|
60
|
+
page:"PageInput",
|
|
61
|
+
rootParams:"RootParamsInput",
|
|
62
|
+
sort:"newsletter_subscription_formSortInput",
|
|
63
|
+
filter:"newsletter_subscription_formFilterInput"
|
|
64
|
+
},
|
|
65
|
+
onenewsletter_subscription_formBySlug:{
|
|
66
|
+
rootParams:"RootParamsInput"
|
|
67
|
+
},
|
|
68
|
+
oneAsScalarnewsletter_subscription_formBySlug:{
|
|
69
|
+
rootParams:"RootParamsInput"
|
|
70
|
+
},
|
|
71
|
+
variantsnewsletter_subscription_formBySlug:{
|
|
72
|
+
|
|
73
|
+
},
|
|
74
|
+
listPaginatedtest_contact_form:{
|
|
75
|
+
page:"PageInput",
|
|
76
|
+
rootParams:"RootParamsInput",
|
|
77
|
+
sort:"test_contact_formSortInput",
|
|
78
|
+
filter:"test_contact_formFilterInput"
|
|
79
|
+
},
|
|
80
|
+
onetest_contact_formBySlug:{
|
|
81
|
+
rootParams:"RootParamsInput"
|
|
82
|
+
},
|
|
83
|
+
oneAsScalartest_contact_formBySlug:{
|
|
84
|
+
rootParams:"RootParamsInput"
|
|
85
|
+
},
|
|
86
|
+
variantstest_contact_formBySlug:{
|
|
87
|
+
|
|
88
|
+
},
|
|
89
|
+
listPaginatedtest_form:{
|
|
90
|
+
page:"PageInput",
|
|
91
|
+
rootParams:"RootParamsInput",
|
|
92
|
+
sort:"test_formSortInput",
|
|
93
|
+
filter:"test_formFilterInput"
|
|
94
|
+
},
|
|
95
|
+
onetest_formBySlug:{
|
|
96
|
+
rootParams:"RootParamsInput"
|
|
97
|
+
},
|
|
98
|
+
oneAsScalartest_formBySlug:{
|
|
99
|
+
rootParams:"RootParamsInput"
|
|
100
|
+
},
|
|
101
|
+
variantstest_formBySlug:{
|
|
102
|
+
|
|
103
|
+
},
|
|
104
|
+
oneViewaccount:{
|
|
105
|
+
rootParams:"RootParamsInput"
|
|
106
|
+
},
|
|
107
|
+
oneAsScalarViewaccount:{
|
|
108
|
+
rootParams:"RootParamsInput"
|
|
109
|
+
},
|
|
110
|
+
oneViewfeatures:{
|
|
45
111
|
rootParams:"RootParamsInput"
|
|
46
112
|
},
|
|
47
|
-
|
|
113
|
+
oneAsScalarViewfeatures:{
|
|
114
|
+
rootParams:"RootParamsInput"
|
|
115
|
+
},
|
|
116
|
+
oneViewhome:{
|
|
117
|
+
rootParams:"RootParamsInput"
|
|
118
|
+
},
|
|
119
|
+
oneAsScalarViewhome:{
|
|
120
|
+
rootParams:"RootParamsInput"
|
|
121
|
+
},
|
|
122
|
+
oneViewhomepage:{
|
|
123
|
+
rootParams:"RootParamsInput"
|
|
124
|
+
},
|
|
125
|
+
oneAsScalarViewhomepage:{
|
|
126
|
+
rootParams:"RootParamsInput"
|
|
127
|
+
},
|
|
128
|
+
oneViewhowitworks:{
|
|
129
|
+
rootParams:"RootParamsInput"
|
|
130
|
+
},
|
|
131
|
+
oneAsScalarViewhowitworks:{
|
|
132
|
+
rootParams:"RootParamsInput"
|
|
133
|
+
},
|
|
134
|
+
oneViewlanding_page:{
|
|
135
|
+
rootParams:"RootParamsInput"
|
|
136
|
+
},
|
|
137
|
+
oneAsScalarViewlanding_page:{
|
|
138
|
+
rootParams:"RootParamsInput"
|
|
139
|
+
},
|
|
140
|
+
oneViewpricing_component:{
|
|
141
|
+
rootParams:"RootParamsInput"
|
|
142
|
+
},
|
|
143
|
+
oneAsScalarViewpricing_component:{
|
|
144
|
+
rootParams:"RootParamsInput"
|
|
145
|
+
},
|
|
146
|
+
oneViewttt:{
|
|
147
|
+
rootParams:"RootParamsInput"
|
|
148
|
+
},
|
|
149
|
+
oneAsScalarViewttt:{
|
|
48
150
|
rootParams:"RootParamsInput"
|
|
49
151
|
}
|
|
50
152
|
},
|
|
153
|
+
ModelEnum: "enum" as const,
|
|
51
154
|
ViewEnum: "enum" as const,
|
|
52
155
|
ShapeEnum: "enum" as const,
|
|
53
156
|
RootParamsInput:{
|
|
54
157
|
|
|
55
158
|
},
|
|
56
159
|
RootParamsEnum: "enum" as const,
|
|
160
|
+
docsSortInput:{
|
|
161
|
+
slug:"Sort",
|
|
162
|
+
createdAt:"Sort",
|
|
163
|
+
updatedAt:"Sort"
|
|
164
|
+
},
|
|
165
|
+
newsletter_subscription_formSortInput:{
|
|
166
|
+
slug:"Sort",
|
|
167
|
+
createdAt:"Sort",
|
|
168
|
+
updatedAt:"Sort"
|
|
169
|
+
},
|
|
170
|
+
test_contact_formSortInput:{
|
|
171
|
+
slug:"Sort",
|
|
172
|
+
createdAt:"Sort",
|
|
173
|
+
updatedAt:"Sort"
|
|
174
|
+
},
|
|
175
|
+
test_formSortInput:{
|
|
176
|
+
slug:"Sort",
|
|
177
|
+
createdAt:"Sort",
|
|
178
|
+
updatedAt:"Sort"
|
|
179
|
+
},
|
|
180
|
+
docsFilterInput:{
|
|
181
|
+
slug:"FilterInputString"
|
|
182
|
+
},
|
|
183
|
+
newsletter_subscription_formFilterInput:{
|
|
184
|
+
slug:"FilterInputString"
|
|
185
|
+
},
|
|
186
|
+
test_contact_formFilterInput:{
|
|
187
|
+
slug:"FilterInputString"
|
|
188
|
+
},
|
|
189
|
+
test_formFilterInput:{
|
|
190
|
+
slug:"FilterInputString"
|
|
191
|
+
},
|
|
57
192
|
ID: `scalar.ID` as const
|
|
58
193
|
}
|
|
59
194
|
|
|
@@ -204,6 +339,7 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
204
339
|
shouldRender:"Boolean"
|
|
205
340
|
},
|
|
206
341
|
ShapeLibrary:{
|
|
342
|
+
id:"String",
|
|
207
343
|
name:"String",
|
|
208
344
|
shapes:"Shape",
|
|
209
345
|
description:"String"
|
|
@@ -219,73 +355,295 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
219
355
|
shapeLibraries:"ShapeLibrary",
|
|
220
356
|
responses:"JSON",
|
|
221
357
|
response:"JSON",
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
fieldSetShapelanding_pricing_note:"String",
|
|
251
|
-
modelShapelanding_pricing_note:"ModelNavigationCompiled",
|
|
252
|
-
previewFieldsShapelanding_pricing_note:"ModelNavigationCompiled",
|
|
253
|
-
oneShapelanding_pricing_note:"Shapelanding_pricing_note",
|
|
254
|
-
fieldSetShapelanding_purposes:"String",
|
|
255
|
-
modelShapelanding_purposes:"ModelNavigationCompiled",
|
|
256
|
-
previewFieldsShapelanding_purposes:"ModelNavigationCompiled",
|
|
257
|
-
oneShapelanding_purposes:"Shapelanding_purposes",
|
|
258
|
-
fieldSetShapelogo:"String",
|
|
259
|
-
modelShapelogo:"ModelNavigationCompiled",
|
|
260
|
-
previewFieldsShapelogo:"ModelNavigationCompiled",
|
|
261
|
-
oneShapelogo:"Shapelogo",
|
|
358
|
+
listPaginateddocs:"docs__Connection",
|
|
359
|
+
onedocsBySlug:"docs",
|
|
360
|
+
oneAsScalardocsBySlug:"ModelAsScalar",
|
|
361
|
+
variantsdocsBySlug:"docs",
|
|
362
|
+
fieldSetdocs:"String",
|
|
363
|
+
modeldocs:"ModelNavigationCompiled",
|
|
364
|
+
previewFieldsdocs:"ModelNavigationCompiled",
|
|
365
|
+
listPaginatednewsletter_subscription_form:"newsletter_subscription_form__Connection",
|
|
366
|
+
onenewsletter_subscription_formBySlug:"newsletter_subscription_form",
|
|
367
|
+
oneAsScalarnewsletter_subscription_formBySlug:"ModelAsScalar",
|
|
368
|
+
variantsnewsletter_subscription_formBySlug:"newsletter_subscription_form",
|
|
369
|
+
fieldSetnewsletter_subscription_form:"String",
|
|
370
|
+
modelnewsletter_subscription_form:"ModelNavigationCompiled",
|
|
371
|
+
previewFieldsnewsletter_subscription_form:"ModelNavigationCompiled",
|
|
372
|
+
listPaginatedtest_contact_form:"test_contact_form__Connection",
|
|
373
|
+
onetest_contact_formBySlug:"test_contact_form",
|
|
374
|
+
oneAsScalartest_contact_formBySlug:"ModelAsScalar",
|
|
375
|
+
variantstest_contact_formBySlug:"test_contact_form",
|
|
376
|
+
fieldSettest_contact_form:"String",
|
|
377
|
+
modeltest_contact_form:"ModelNavigationCompiled",
|
|
378
|
+
previewFieldstest_contact_form:"ModelNavigationCompiled",
|
|
379
|
+
listPaginatedtest_form:"test_form__Connection",
|
|
380
|
+
onetest_formBySlug:"test_form",
|
|
381
|
+
oneAsScalartest_formBySlug:"ModelAsScalar",
|
|
382
|
+
variantstest_formBySlug:"test_form",
|
|
383
|
+
fieldSettest_form:"String",
|
|
384
|
+
modeltest_form:"ModelNavigationCompiled",
|
|
385
|
+
previewFieldstest_form:"ModelNavigationCompiled",
|
|
262
386
|
fieldSetShapenav:"String",
|
|
263
387
|
modelShapenav:"ModelNavigationCompiled",
|
|
264
388
|
previewFieldsShapenav:"ModelNavigationCompiled",
|
|
265
389
|
oneShapenav:"Shapenav",
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
390
|
+
fieldSetShapehero:"String",
|
|
391
|
+
modelShapehero:"ModelNavigationCompiled",
|
|
392
|
+
previewFieldsShapehero:"ModelNavigationCompiled",
|
|
393
|
+
oneShapehero:"Shapehero",
|
|
394
|
+
fieldSetShapedocs_nav:"String",
|
|
395
|
+
modelShapedocs_nav:"ModelNavigationCompiled",
|
|
396
|
+
previewFieldsShapedocs_nav:"ModelNavigationCompiled",
|
|
397
|
+
oneShapedocs_nav:"Shapedocs_nav",
|
|
398
|
+
fieldSetShapedocs_content:"String",
|
|
399
|
+
modelShapedocs_content:"ModelNavigationCompiled",
|
|
400
|
+
previewFieldsShapedocs_content:"ModelNavigationCompiled",
|
|
401
|
+
oneShapedocs_content:"Shapedocs_content",
|
|
402
|
+
fieldSetShapeherox:"String",
|
|
403
|
+
modelShapeherox:"ModelNavigationCompiled",
|
|
404
|
+
previewFieldsShapeherox:"ModelNavigationCompiled",
|
|
405
|
+
oneShapeherox:"Shapeherox",
|
|
406
|
+
fieldSetShapefoot:"String",
|
|
407
|
+
modelShapefoot:"ModelNavigationCompiled",
|
|
408
|
+
previewFieldsShapefoot:"ModelNavigationCompiled",
|
|
409
|
+
oneShapefoot:"Shapefoot",
|
|
410
|
+
fieldSetShapenewshape:"String",
|
|
411
|
+
modelShapenewshape:"ModelNavigationCompiled",
|
|
412
|
+
previewFieldsShapenewshape:"ModelNavigationCompiled",
|
|
413
|
+
oneShapenewshape:"Shapenewshape",
|
|
414
|
+
fieldSetShapepricingv1:"String",
|
|
415
|
+
modelShapepricingv1:"ModelNavigationCompiled",
|
|
416
|
+
previewFieldsShapepricingv1:"ModelNavigationCompiled",
|
|
417
|
+
oneShapepricingv1:"Shapepricingv1",
|
|
418
|
+
fieldSetShapelista_projektow:"String",
|
|
419
|
+
modelShapelista_projektow:"ModelNavigationCompiled",
|
|
420
|
+
previewFieldsShapelista_projektow:"ModelNavigationCompiled",
|
|
421
|
+
oneShapelista_projektow:"Shapelista_projektow",
|
|
422
|
+
fieldSetShapeusage:"String",
|
|
423
|
+
modelShapeusage:"ModelNavigationCompiled",
|
|
424
|
+
previewFieldsShapeusage:"ModelNavigationCompiled",
|
|
425
|
+
oneShapeusage:"Shapeusage",
|
|
426
|
+
fieldSetShapeprofile_info:"String",
|
|
427
|
+
modelShapeprofile_info:"ModelNavigationCompiled",
|
|
428
|
+
previewFieldsShapeprofile_info:"ModelNavigationCompiled",
|
|
429
|
+
oneShapeprofile_info:"Shapeprofile_info",
|
|
430
|
+
fieldSetShapefeaturepresentation:"String",
|
|
431
|
+
modelShapefeaturepresentation:"ModelNavigationCompiled",
|
|
432
|
+
previewFieldsShapefeaturepresentation:"ModelNavigationCompiled",
|
|
433
|
+
oneShapefeaturepresentation:"Shapefeaturepresentation",
|
|
434
|
+
fieldSetShapesupport:"String",
|
|
435
|
+
modelShapesupport:"ModelNavigationCompiled",
|
|
436
|
+
previewFieldsShapesupport:"ModelNavigationCompiled",
|
|
437
|
+
oneShapesupport:"Shapesupport",
|
|
438
|
+
fieldSetShapecloud_sidebar:"String",
|
|
439
|
+
modelShapecloud_sidebar:"ModelNavigationCompiled",
|
|
440
|
+
previewFieldsShapecloud_sidebar:"ModelNavigationCompiled",
|
|
441
|
+
oneShapecloud_sidebar:"Shapecloud_sidebar",
|
|
442
|
+
fieldSetShapectabutton:"String",
|
|
443
|
+
modelShapectabutton:"ModelNavigationCompiled",
|
|
444
|
+
previewFieldsShapectabutton:"ModelNavigationCompiled",
|
|
445
|
+
oneShapectabutton:"Shapectabutton",
|
|
446
|
+
fieldSetShapesecondary_cta:"String",
|
|
447
|
+
modelShapesecondary_cta:"ModelNavigationCompiled",
|
|
448
|
+
previewFieldsShapesecondary_cta:"ModelNavigationCompiled",
|
|
449
|
+
oneShapesecondary_cta:"Shapesecondary_cta",
|
|
450
|
+
fieldSetShapetitle_desc:"String",
|
|
451
|
+
modelShapetitle_desc:"ModelNavigationCompiled",
|
|
452
|
+
previewFieldsShapetitle_desc:"ModelNavigationCompiled",
|
|
453
|
+
oneShapetitle_desc:"Shapetitle_desc",
|
|
454
|
+
fieldSetShapecta_boom:"String",
|
|
455
|
+
modelShapecta_boom:"ModelNavigationCompiled",
|
|
456
|
+
previewFieldsShapecta_boom:"ModelNavigationCompiled",
|
|
457
|
+
oneShapecta_boom:"Shapecta_boom",
|
|
458
|
+
fieldSetShapepricingv2:"String",
|
|
459
|
+
modelShapepricingv2:"ModelNavigationCompiled",
|
|
460
|
+
previewFieldsShapepricingv2:"ModelNavigationCompiled",
|
|
461
|
+
oneShapepricingv2:"Shapepricingv2",
|
|
462
|
+
fieldSetShapeheading:"String",
|
|
463
|
+
modelShapeheading:"ModelNavigationCompiled",
|
|
464
|
+
previewFieldsShapeheading:"ModelNavigationCompiled",
|
|
465
|
+
oneShapeheading:"Shapeheading",
|
|
466
|
+
fieldSetShapesubheading:"String",
|
|
467
|
+
modelShapesubheading:"ModelNavigationCompiled",
|
|
468
|
+
previewFieldsShapesubheading:"ModelNavigationCompiled",
|
|
469
|
+
oneShapesubheading:"Shapesubheading",
|
|
470
|
+
fieldSetShapefeaturesv2:"String",
|
|
471
|
+
modelShapefeaturesv2:"ModelNavigationCompiled",
|
|
472
|
+
previewFieldsShapefeaturesv2:"ModelNavigationCompiled",
|
|
473
|
+
oneShapefeaturesv2:"Shapefeaturesv2",
|
|
474
|
+
fieldSetShapebutton:"String",
|
|
475
|
+
modelShapebutton:"ModelNavigationCompiled",
|
|
476
|
+
previewFieldsShapebutton:"ModelNavigationCompiled",
|
|
477
|
+
oneShapebutton:"Shapebutton",
|
|
478
|
+
fieldSetShapelink:"String",
|
|
479
|
+
modelShapelink:"ModelNavigationCompiled",
|
|
480
|
+
previewFieldsShapelink:"ModelNavigationCompiled",
|
|
481
|
+
oneShapelink:"Shapelink",
|
|
482
|
+
fieldSetShapeimage_atom:"String",
|
|
483
|
+
modelShapeimage_atom:"ModelNavigationCompiled",
|
|
484
|
+
previewFieldsShapeimage_atom:"ModelNavigationCompiled",
|
|
485
|
+
oneShapeimage_atom:"Shapeimage_atom",
|
|
486
|
+
fieldSetShaperich_text:"String",
|
|
487
|
+
modelShaperich_text:"ModelNavigationCompiled",
|
|
488
|
+
previewFieldsShaperich_text:"ModelNavigationCompiled",
|
|
489
|
+
oneShaperich_text:"Shaperich_text",
|
|
490
|
+
fieldSetShapenavbar:"String",
|
|
491
|
+
modelShapenavbar:"ModelNavigationCompiled",
|
|
492
|
+
previewFieldsShapenavbar:"ModelNavigationCompiled",
|
|
493
|
+
oneShapenavbar:"Shapenavbar",
|
|
494
|
+
fieldSetShapehero_section:"String",
|
|
495
|
+
modelShapehero_section:"ModelNavigationCompiled",
|
|
496
|
+
previewFieldsShapehero_section:"ModelNavigationCompiled",
|
|
497
|
+
oneShapehero_section:"Shapehero_section",
|
|
498
|
+
fieldSetShapefeature_grid:"String",
|
|
499
|
+
modelShapefeature_grid:"ModelNavigationCompiled",
|
|
500
|
+
previewFieldsShapefeature_grid:"ModelNavigationCompiled",
|
|
501
|
+
oneShapefeature_grid:"Shapefeature_grid",
|
|
502
|
+
fieldSetShapetestimonial:"String",
|
|
503
|
+
modelShapetestimonial:"ModelNavigationCompiled",
|
|
504
|
+
previewFieldsShapetestimonial:"ModelNavigationCompiled",
|
|
505
|
+
oneShapetestimonial:"Shapetestimonial",
|
|
506
|
+
fieldSetShapepricing:"String",
|
|
507
|
+
modelShapepricing:"ModelNavigationCompiled",
|
|
508
|
+
previewFieldsShapepricing:"ModelNavigationCompiled",
|
|
509
|
+
oneShapepricing:"Shapepricing",
|
|
510
|
+
fieldSetShapefooter:"String",
|
|
511
|
+
modelShapefooter:"ModelNavigationCompiled",
|
|
512
|
+
previewFieldsShapefooter:"ModelNavigationCompiled",
|
|
513
|
+
oneShapefooter:"Shapefooter",
|
|
514
|
+
fieldSetShapelanding_navbar:"String",
|
|
515
|
+
modelShapelanding_navbar:"ModelNavigationCompiled",
|
|
516
|
+
previewFieldsShapelanding_navbar:"ModelNavigationCompiled",
|
|
517
|
+
oneShapelanding_navbar:"Shapelanding_navbar",
|
|
518
|
+
fieldSetShapelanding_hero:"String",
|
|
519
|
+
modelShapelanding_hero:"ModelNavigationCompiled",
|
|
520
|
+
previewFieldsShapelanding_hero:"ModelNavigationCompiled",
|
|
521
|
+
oneShapelanding_hero:"Shapelanding_hero",
|
|
522
|
+
fieldSetShapelanding_features:"String",
|
|
523
|
+
modelShapelanding_features:"ModelNavigationCompiled",
|
|
524
|
+
previewFieldsShapelanding_features:"ModelNavigationCompiled",
|
|
525
|
+
oneShapelanding_features:"Shapelanding_features",
|
|
526
|
+
fieldSetShapelanding_testimonials:"String",
|
|
527
|
+
modelShapelanding_testimonials:"ModelNavigationCompiled",
|
|
528
|
+
previewFieldsShapelanding_testimonials:"ModelNavigationCompiled",
|
|
529
|
+
oneShapelanding_testimonials:"Shapelanding_testimonials",
|
|
530
|
+
fieldSetShapelanding_footer:"String",
|
|
531
|
+
modelShapelanding_footer:"ModelNavigationCompiled",
|
|
532
|
+
previewFieldsShapelanding_footer:"ModelNavigationCompiled",
|
|
533
|
+
oneShapelanding_footer:"Shapelanding_footer",
|
|
534
|
+
fieldSetShapes26_hero:"String",
|
|
535
|
+
modelShapes26_hero:"ModelNavigationCompiled",
|
|
536
|
+
previewFieldsShapes26_hero:"ModelNavigationCompiled",
|
|
537
|
+
oneShapes26_hero:"Shapes26_hero",
|
|
538
|
+
fieldSetShapes26_bento_item:"String",
|
|
539
|
+
modelShapes26_bento_item:"ModelNavigationCompiled",
|
|
540
|
+
previewFieldsShapes26_bento_item:"ModelNavigationCompiled",
|
|
541
|
+
oneShapes26_bento_item:"Shapes26_bento_item",
|
|
542
|
+
fieldSetShapes26_bento_grid:"String",
|
|
543
|
+
modelShapes26_bento_grid:"ModelNavigationCompiled",
|
|
544
|
+
previewFieldsShapes26_bento_grid:"ModelNavigationCompiled",
|
|
545
|
+
oneShapes26_bento_grid:"Shapes26_bento_grid",
|
|
546
|
+
fieldSetShapes26_pricing_card:"String",
|
|
547
|
+
modelShapes26_pricing_card:"ModelNavigationCompiled",
|
|
548
|
+
previewFieldsShapes26_pricing_card:"ModelNavigationCompiled",
|
|
549
|
+
oneShapes26_pricing_card:"Shapes26_pricing_card",
|
|
550
|
+
fieldSetShapes26_footer:"String",
|
|
551
|
+
modelShapes26_footer:"ModelNavigationCompiled",
|
|
552
|
+
previewFieldsShapes26_footer:"ModelNavigationCompiled",
|
|
553
|
+
oneShapes26_footer:"Shapes26_footer",
|
|
554
|
+
fieldSetShapes26_nav:"String",
|
|
555
|
+
modelShapes26_nav:"ModelNavigationCompiled",
|
|
556
|
+
previewFieldsShapes26_nav:"ModelNavigationCompiled",
|
|
557
|
+
oneShapes26_nav:"Shapes26_nav",
|
|
558
|
+
fieldSetShapes26_pricing:"String",
|
|
559
|
+
modelShapes26_pricing:"ModelNavigationCompiled",
|
|
560
|
+
previewFieldsShapes26_pricing:"ModelNavigationCompiled",
|
|
561
|
+
oneShapes26_pricing:"Shapes26_pricing",
|
|
562
|
+
fieldSetShapes26_use_cases:"String",
|
|
563
|
+
modelShapes26_use_cases:"ModelNavigationCompiled",
|
|
564
|
+
previewFieldsShapes26_use_cases:"ModelNavigationCompiled",
|
|
565
|
+
oneShapes26_use_cases:"Shapes26_use_cases",
|
|
566
|
+
fieldSetShapes26_nav_link:"String",
|
|
567
|
+
modelShapes26_nav_link:"ModelNavigationCompiled",
|
|
568
|
+
previewFieldsShapes26_nav_link:"ModelNavigationCompiled",
|
|
569
|
+
oneShapes26_nav_link:"Shapes26_nav_link",
|
|
570
|
+
fieldSetShapetest_shape_agent:"String",
|
|
571
|
+
modelShapetest_shape_agent:"ModelNavigationCompiled",
|
|
572
|
+
previewFieldsShapetest_shape_agent:"ModelNavigationCompiled",
|
|
573
|
+
oneShapetest_shape_agent:"Shapetest_shape_agent",
|
|
574
|
+
fieldSetShapebleblebel:"String",
|
|
575
|
+
modelShapebleblebel:"ModelNavigationCompiled",
|
|
576
|
+
previewFieldsShapebleblebel:"ModelNavigationCompiled",
|
|
577
|
+
oneShapebleblebel:"Shapebleblebel",
|
|
578
|
+
variantsViewaccount:"Viewaccount",
|
|
579
|
+
fieldSetViewaccount:"String",
|
|
580
|
+
modelViewaccount:"ModelNavigationCompiled",
|
|
581
|
+
previewFieldsViewaccount:"ModelNavigationCompiled",
|
|
582
|
+
oneViewaccount:"Viewaccount",
|
|
583
|
+
oneAsScalarViewaccount:"ViewAsScalar",
|
|
584
|
+
variantsViewfeatures:"Viewfeatures",
|
|
585
|
+
fieldSetViewfeatures:"String",
|
|
586
|
+
modelViewfeatures:"ModelNavigationCompiled",
|
|
587
|
+
previewFieldsViewfeatures:"ModelNavigationCompiled",
|
|
588
|
+
oneViewfeatures:"Viewfeatures",
|
|
589
|
+
oneAsScalarViewfeatures:"ViewAsScalar",
|
|
590
|
+
variantsViewhome:"Viewhome",
|
|
591
|
+
fieldSetViewhome:"String",
|
|
592
|
+
modelViewhome:"ModelNavigationCompiled",
|
|
593
|
+
previewFieldsViewhome:"ModelNavigationCompiled",
|
|
594
|
+
oneViewhome:"Viewhome",
|
|
595
|
+
oneAsScalarViewhome:"ViewAsScalar",
|
|
596
|
+
variantsViewhomepage:"Viewhomepage",
|
|
597
|
+
fieldSetViewhomepage:"String",
|
|
598
|
+
modelViewhomepage:"ModelNavigationCompiled",
|
|
599
|
+
previewFieldsViewhomepage:"ModelNavigationCompiled",
|
|
600
|
+
oneViewhomepage:"Viewhomepage",
|
|
601
|
+
oneAsScalarViewhomepage:"ViewAsScalar",
|
|
602
|
+
variantsViewhowitworks:"Viewhowitworks",
|
|
603
|
+
fieldSetViewhowitworks:"String",
|
|
604
|
+
modelViewhowitworks:"ModelNavigationCompiled",
|
|
605
|
+
previewFieldsViewhowitworks:"ModelNavigationCompiled",
|
|
606
|
+
oneViewhowitworks:"Viewhowitworks",
|
|
607
|
+
oneAsScalarViewhowitworks:"ViewAsScalar",
|
|
608
|
+
variantsViewlanding_page:"Viewlanding_page",
|
|
609
|
+
fieldSetViewlanding_page:"String",
|
|
610
|
+
modelViewlanding_page:"ModelNavigationCompiled",
|
|
611
|
+
previewFieldsViewlanding_page:"ModelNavigationCompiled",
|
|
612
|
+
oneViewlanding_page:"Viewlanding_page",
|
|
613
|
+
oneAsScalarViewlanding_page:"ViewAsScalar",
|
|
614
|
+
variantsViewpricing_component:"Viewpricing_component",
|
|
615
|
+
fieldSetViewpricing_component:"String",
|
|
616
|
+
modelViewpricing_component:"ModelNavigationCompiled",
|
|
617
|
+
previewFieldsViewpricing_component:"ModelNavigationCompiled",
|
|
618
|
+
oneViewpricing_component:"Viewpricing_component",
|
|
619
|
+
oneAsScalarViewpricing_component:"ViewAsScalar",
|
|
620
|
+
variantsViewttt:"Viewttt",
|
|
621
|
+
fieldSetViewttt:"String",
|
|
622
|
+
modelViewttt:"ModelNavigationCompiled",
|
|
623
|
+
previewFieldsViewttt:"ModelNavigationCompiled",
|
|
624
|
+
oneViewttt:"Viewttt",
|
|
625
|
+
oneAsScalarViewttt:"ViewAsScalar"
|
|
276
626
|
},
|
|
277
627
|
RootParamsType:{
|
|
278
|
-
_version:"String"
|
|
628
|
+
_version:"String",
|
|
629
|
+
locale:"String",
|
|
630
|
+
test_env:"String"
|
|
279
631
|
},
|
|
280
|
-
|
|
632
|
+
docs__Connection:{
|
|
633
|
+
items:"docs",
|
|
634
|
+
pageInfo:"PageInfo"
|
|
635
|
+
},
|
|
636
|
+
docs:{
|
|
281
637
|
_version:"VersionField",
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
638
|
+
title:"String",
|
|
639
|
+
seotitle:"String",
|
|
640
|
+
sortid:"Float",
|
|
641
|
+
metadesc:"String",
|
|
642
|
+
main_category:"String",
|
|
643
|
+
content:"String",
|
|
644
|
+
video:"VideoField",
|
|
645
|
+
locale:"String",
|
|
646
|
+
test_env:"String",
|
|
289
647
|
slug:"String",
|
|
290
648
|
_id:"String",
|
|
291
649
|
createdAt:"Float",
|
|
@@ -293,278 +651,1120 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
293
651
|
draft_version:"Boolean",
|
|
294
652
|
json_ld:"String"
|
|
295
653
|
},
|
|
296
|
-
|
|
297
|
-
|
|
654
|
+
newsletter_subscription_form__Connection:{
|
|
655
|
+
items:"newsletter_subscription_form",
|
|
656
|
+
pageInfo:"PageInfo"
|
|
657
|
+
},
|
|
658
|
+
newsletter_subscription_form:{
|
|
659
|
+
_version:"VersionField",
|
|
660
|
+
email:"InputField",
|
|
661
|
+
first_name:"InputField",
|
|
662
|
+
frequency_preference:"String",
|
|
663
|
+
topics_of_interest:"CheckboxField",
|
|
664
|
+
marketing_consent:"CheckboxField",
|
|
665
|
+
privacy_policy_agreement:"CheckboxField",
|
|
666
|
+
subscribe_button:"ButtonField",
|
|
667
|
+
locale:"String",
|
|
668
|
+
test_env:"String",
|
|
669
|
+
slug:"String",
|
|
670
|
+
_id:"String",
|
|
671
|
+
createdAt:"Float",
|
|
672
|
+
updatedAt:"Float",
|
|
673
|
+
draft_version:"Boolean",
|
|
674
|
+
json_ld:"String"
|
|
298
675
|
},
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
email:"InputField"
|
|
676
|
+
test_contact_form__Connection:{
|
|
677
|
+
items:"test_contact_form",
|
|
678
|
+
pageInfo:"PageInfo"
|
|
303
679
|
},
|
|
304
|
-
|
|
305
|
-
|
|
680
|
+
test_contact_form:{
|
|
681
|
+
_version:"VersionField",
|
|
682
|
+
email:"InputField",
|
|
683
|
+
message:"String",
|
|
684
|
+
agree:"CheckboxField",
|
|
685
|
+
submit:"ButtonField",
|
|
686
|
+
locale:"String",
|
|
687
|
+
test_env:"String",
|
|
688
|
+
slug:"String",
|
|
689
|
+
_id:"String",
|
|
690
|
+
createdAt:"Float",
|
|
691
|
+
updatedAt:"Float",
|
|
692
|
+
draft_version:"Boolean",
|
|
693
|
+
json_ld:"String"
|
|
306
694
|
},
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
695
|
+
test_form__Connection:{
|
|
696
|
+
items:"test_form",
|
|
697
|
+
pageInfo:"PageInfo"
|
|
310
698
|
},
|
|
311
|
-
|
|
312
|
-
|
|
699
|
+
test_form:{
|
|
700
|
+
_version:"VersionField",
|
|
701
|
+
name:"InputField",
|
|
702
|
+
message:"InputField",
|
|
703
|
+
agreement:"CheckboxField",
|
|
704
|
+
submit_button:"ButtonField",
|
|
705
|
+
locale:"String",
|
|
706
|
+
test_env:"String",
|
|
707
|
+
slug:"String",
|
|
708
|
+
_id:"String",
|
|
709
|
+
createdAt:"Float",
|
|
710
|
+
updatedAt:"Float",
|
|
711
|
+
draft_version:"Boolean",
|
|
712
|
+
json_ld:"String"
|
|
713
|
+
},
|
|
714
|
+
ViewaccountMain:{
|
|
715
|
+
profile:"Shapeprofile_info",
|
|
716
|
+
projects:"Shapelista_projektow"
|
|
717
|
+
},
|
|
718
|
+
Viewaccount:{
|
|
719
|
+
_version:"VersionField",
|
|
720
|
+
main:"ViewaccountMain",
|
|
721
|
+
locale:"String",
|
|
722
|
+
test_env:"String",
|
|
723
|
+
slug:"String",
|
|
724
|
+
_id:"String",
|
|
725
|
+
createdAt:"Float",
|
|
726
|
+
updatedAt:"Float",
|
|
727
|
+
draft_version:"Boolean",
|
|
728
|
+
json_ld:"String"
|
|
729
|
+
},
|
|
730
|
+
ViewfeaturesMain:{
|
|
731
|
+
auto_translation:"Shapefeaturepresentation",
|
|
732
|
+
ai_component:"Shapefeaturepresentation"
|
|
733
|
+
},
|
|
734
|
+
Viewfeatures:{
|
|
735
|
+
_version:"VersionField",
|
|
736
|
+
main:"ViewfeaturesMain",
|
|
737
|
+
locale:"String",
|
|
738
|
+
test_env:"String",
|
|
739
|
+
slug:"String",
|
|
740
|
+
_id:"String",
|
|
741
|
+
createdAt:"Float",
|
|
742
|
+
updatedAt:"Float",
|
|
743
|
+
draft_version:"Boolean",
|
|
744
|
+
json_ld:"String"
|
|
745
|
+
},
|
|
746
|
+
Viewhome:{
|
|
747
|
+
_version:"VersionField",
|
|
748
|
+
navigation:"Shapes26_nav",
|
|
749
|
+
hero:"Shapes26_hero",
|
|
750
|
+
bento:"Shapes26_bento_grid",
|
|
751
|
+
use_cases:"Shapes26_use_cases",
|
|
752
|
+
pricing:"Shapes26_pricing",
|
|
753
|
+
footer:"Shapes26_footer",
|
|
754
|
+
locale:"String",
|
|
755
|
+
test_env:"String",
|
|
756
|
+
slug:"String",
|
|
757
|
+
_id:"String",
|
|
758
|
+
createdAt:"Float",
|
|
759
|
+
updatedAt:"Float",
|
|
760
|
+
draft_version:"Boolean",
|
|
761
|
+
json_ld:"String"
|
|
762
|
+
},
|
|
763
|
+
ViewhomepageCotContain:{
|
|
764
|
+
header:"Shapetitle_desc"
|
|
765
|
+
},
|
|
766
|
+
ViewhomepageCotFeatures:{
|
|
767
|
+
feat:"Shapefeaturepresentation"
|
|
768
|
+
},
|
|
769
|
+
ViewhomepageCot:{
|
|
770
|
+
contain:"ViewhomepageCotContain",
|
|
771
|
+
features:"ViewhomepageCotFeatures"
|
|
772
|
+
},
|
|
773
|
+
Viewhomepage:{
|
|
774
|
+
_version:"VersionField",
|
|
775
|
+
nav:"Shapenav",
|
|
776
|
+
hero:"Shapeherox",
|
|
777
|
+
cot:"ViewhomepageCot",
|
|
778
|
+
pricing:"Shapepricingv1",
|
|
779
|
+
footer:"Shapefoot",
|
|
780
|
+
locale:"String",
|
|
781
|
+
test_env:"String",
|
|
782
|
+
slug:"String",
|
|
783
|
+
_id:"String",
|
|
784
|
+
createdAt:"Float",
|
|
785
|
+
updatedAt:"Float",
|
|
786
|
+
draft_version:"Boolean",
|
|
787
|
+
json_ld:"String"
|
|
788
|
+
},
|
|
789
|
+
ViewhowitworksFeature_control:{
|
|
313
790
|
title:"String",
|
|
314
791
|
description:"String",
|
|
315
|
-
|
|
316
|
-
valuation_form:"Shapehero_propertyHeroContainerRowContentblockValuation_form"
|
|
792
|
+
image:"ImageField"
|
|
317
793
|
},
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
794
|
+
Viewhowitworks:{
|
|
795
|
+
_version:"VersionField",
|
|
796
|
+
title:"String",
|
|
797
|
+
feature_control:"ViewhowitworksFeature_control",
|
|
798
|
+
locale:"String",
|
|
799
|
+
test_env:"String",
|
|
800
|
+
slug:"String",
|
|
801
|
+
_id:"String",
|
|
802
|
+
createdAt:"Float",
|
|
803
|
+
updatedAt:"Float",
|
|
804
|
+
draft_version:"Boolean",
|
|
805
|
+
json_ld:"String"
|
|
321
806
|
},
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
807
|
+
Viewlanding_page:{
|
|
808
|
+
_version:"VersionField",
|
|
809
|
+
navbar:"Shapenavbar",
|
|
810
|
+
hero:"Shapehero_section",
|
|
811
|
+
features:"Shapefeature_grid",
|
|
812
|
+
testimonials:"Shapetestimonial",
|
|
813
|
+
pricing:"Shapepricing",
|
|
814
|
+
footer:"Shapefooter",
|
|
815
|
+
locale:"String",
|
|
816
|
+
test_env:"String",
|
|
817
|
+
slug:"String",
|
|
818
|
+
_id:"String",
|
|
819
|
+
createdAt:"Float",
|
|
820
|
+
updatedAt:"Float",
|
|
821
|
+
draft_version:"Boolean",
|
|
822
|
+
json_ld:"String"
|
|
325
823
|
},
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
824
|
+
Viewpricing_component:{
|
|
825
|
+
_version:"VersionField",
|
|
826
|
+
locale:"String",
|
|
827
|
+
test_env:"String",
|
|
828
|
+
slug:"String",
|
|
829
|
+
_id:"String",
|
|
830
|
+
createdAt:"Float",
|
|
831
|
+
updatedAt:"Float",
|
|
832
|
+
draft_version:"Boolean",
|
|
833
|
+
json_ld:"String"
|
|
329
834
|
},
|
|
330
|
-
|
|
331
|
-
|
|
835
|
+
Viewttt:{
|
|
836
|
+
_version:"VersionField",
|
|
837
|
+
locale:"String",
|
|
838
|
+
test_env:"String",
|
|
839
|
+
slug:"String",
|
|
840
|
+
_id:"String",
|
|
841
|
+
createdAt:"Float",
|
|
842
|
+
updatedAt:"Float",
|
|
843
|
+
draft_version:"Boolean",
|
|
844
|
+
json_ld:"String"
|
|
332
845
|
},
|
|
333
|
-
|
|
334
|
-
|
|
846
|
+
Shapebleblebel:{
|
|
847
|
+
dupa:"docs",
|
|
848
|
+
_id:"String",
|
|
849
|
+
createdAt:"Float",
|
|
850
|
+
updatedAt:"Float"
|
|
335
851
|
},
|
|
336
|
-
|
|
337
|
-
|
|
852
|
+
Shapebutton:{
|
|
853
|
+
title:"String",
|
|
854
|
+
href:"String",
|
|
855
|
+
variant:"String",
|
|
856
|
+
size:"String",
|
|
338
857
|
_id:"String",
|
|
339
858
|
createdAt:"Float",
|
|
340
859
|
updatedAt:"Float"
|
|
341
860
|
},
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
description_2:"String"
|
|
861
|
+
Shapecloud_sidebarSidebarMenuCategoryPage:{
|
|
862
|
+
name:"String",
|
|
863
|
+
link:"String"
|
|
346
864
|
},
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
details:"Shapelanding_aboutSectionContainerGridDetails"
|
|
865
|
+
Shapecloud_sidebarSidebarMenuCategory:{
|
|
866
|
+
page:"Shapecloud_sidebarSidebarMenuCategoryPage"
|
|
350
867
|
},
|
|
351
|
-
|
|
352
|
-
|
|
868
|
+
Shapecloud_sidebarSidebarMenu:{
|
|
869
|
+
logo:"ImageField",
|
|
870
|
+
category:"Shapecloud_sidebarSidebarMenuCategory"
|
|
353
871
|
},
|
|
354
|
-
|
|
355
|
-
|
|
872
|
+
Shapecloud_sidebarSidebarBottom_menuLogout:{
|
|
873
|
+
name:"String",
|
|
874
|
+
link:"String"
|
|
875
|
+
},
|
|
876
|
+
Shapecloud_sidebarSidebarBottom_menu:{
|
|
877
|
+
logout:"Shapecloud_sidebarSidebarBottom_menuLogout"
|
|
356
878
|
},
|
|
357
|
-
|
|
358
|
-
|
|
879
|
+
Shapecloud_sidebarSidebar:{
|
|
880
|
+
menu:"Shapecloud_sidebarSidebarMenu",
|
|
881
|
+
bottom_menu:"Shapecloud_sidebarSidebarBottom_menu"
|
|
882
|
+
},
|
|
883
|
+
Shapecloud_sidebar:{
|
|
884
|
+
sidebar:"Shapecloud_sidebarSidebar",
|
|
359
885
|
_id:"String",
|
|
360
886
|
createdAt:"Float",
|
|
361
887
|
updatedAt:"Float"
|
|
362
888
|
},
|
|
363
|
-
|
|
889
|
+
Shapecta_boomSectionContentCentered_contentBadge:{
|
|
890
|
+
dot:"String",
|
|
891
|
+
badge_text:"String"
|
|
892
|
+
},
|
|
893
|
+
Shapecta_boomSectionContentCentered_contentCta_blockCta_primary:{
|
|
364
894
|
cta:"String",
|
|
365
895
|
href:"String"
|
|
366
896
|
},
|
|
367
|
-
|
|
897
|
+
Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary:{
|
|
368
898
|
cta:"String",
|
|
369
899
|
href:"String"
|
|
370
900
|
},
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
901
|
+
Shapecta_boomSectionContentCentered_contentCta_block:{
|
|
902
|
+
cta_primary:"Shapecta_boomSectionContentCentered_contentCta_blockCta_primary",
|
|
903
|
+
cta_secondary:"Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary"
|
|
374
904
|
},
|
|
375
|
-
|
|
905
|
+
Shapecta_boomSectionContentCentered_content:{
|
|
906
|
+
badge:"Shapecta_boomSectionContentCentered_contentBadge",
|
|
907
|
+
title:"String",
|
|
908
|
+
gradient_subtitle:"String",
|
|
376
909
|
description:"String",
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
company_info:"String"
|
|
910
|
+
cta_block:"Shapecta_boomSectionContentCentered_contentCta_block",
|
|
911
|
+
footer_note:"String"
|
|
380
912
|
},
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
contentblock:"Shapelanding_contactSectionContainerGridContentblock"
|
|
913
|
+
Shapecta_boomSectionContent:{
|
|
914
|
+
centered_content:"Shapecta_boomSectionContentCentered_content"
|
|
384
915
|
},
|
|
385
|
-
|
|
386
|
-
|
|
916
|
+
Shapecta_boomSection:{
|
|
917
|
+
content:"Shapecta_boomSectionContent"
|
|
387
918
|
},
|
|
388
|
-
|
|
389
|
-
|
|
919
|
+
Shapecta_boom:{
|
|
920
|
+
section:"Shapecta_boomSection",
|
|
921
|
+
_id:"String",
|
|
922
|
+
createdAt:"Float",
|
|
923
|
+
updatedAt:"Float"
|
|
390
924
|
},
|
|
391
|
-
|
|
392
|
-
|
|
925
|
+
Shapectabutton:{
|
|
926
|
+
cta:"String",
|
|
393
927
|
_id:"String",
|
|
394
928
|
createdAt:"Float",
|
|
395
929
|
updatedAt:"Float"
|
|
396
930
|
},
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
931
|
+
Shapedocs_contentDocumentation_pageContent_containerDoc_content:{
|
|
932
|
+
content:"String"
|
|
933
|
+
},
|
|
934
|
+
Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container:{
|
|
935
|
+
scrollspy_title:"String",
|
|
936
|
+
scrollspy_list:"String"
|
|
937
|
+
},
|
|
938
|
+
Shapedocs_contentDocumentation_pageContent_containerScrollspy:{
|
|
939
|
+
scrollspy_container:"Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"
|
|
940
|
+
},
|
|
941
|
+
Shapedocs_contentDocumentation_pageContent_container:{
|
|
942
|
+
doc_content:"Shapedocs_contentDocumentation_pageContent_containerDoc_content",
|
|
943
|
+
scrollspy:"Shapedocs_contentDocumentation_pageContent_containerScrollspy"
|
|
944
|
+
},
|
|
945
|
+
Shapedocs_contentDocumentation_page:{
|
|
946
|
+
content_container:"Shapedocs_contentDocumentation_pageContent_container"
|
|
400
947
|
},
|
|
401
|
-
|
|
948
|
+
Shapedocs_content:{
|
|
949
|
+
documentation_page:"Shapedocs_contentDocumentation_page",
|
|
950
|
+
_id:"String",
|
|
951
|
+
createdAt:"Float",
|
|
952
|
+
updatedAt:"Float"
|
|
953
|
+
},
|
|
954
|
+
Shapedocs_navMainListChildrenCategory:{
|
|
955
|
+
name:"String",
|
|
956
|
+
link:"String"
|
|
957
|
+
},
|
|
958
|
+
Shapedocs_navMainListChildren:{
|
|
959
|
+
category:"Shapedocs_navMainListChildrenCategory"
|
|
960
|
+
},
|
|
961
|
+
Shapedocs_navMainList:{
|
|
962
|
+
title:"String",
|
|
963
|
+
children:"Shapedocs_navMainListChildren"
|
|
964
|
+
},
|
|
965
|
+
Shapedocs_navMain:{
|
|
966
|
+
list:"Shapedocs_navMainList"
|
|
967
|
+
},
|
|
968
|
+
Shapedocs_nav:{
|
|
969
|
+
main:"Shapedocs_navMain",
|
|
970
|
+
_id:"String",
|
|
971
|
+
createdAt:"Float",
|
|
972
|
+
updatedAt:"Float"
|
|
973
|
+
},
|
|
974
|
+
Shapefeature_gridItems:{
|
|
975
|
+
icon:"String",
|
|
976
|
+
title:"String",
|
|
977
|
+
description:"String"
|
|
978
|
+
},
|
|
979
|
+
Shapefeature_grid:{
|
|
980
|
+
items:"Shapefeature_gridItems",
|
|
981
|
+
_id:"String",
|
|
982
|
+
createdAt:"Float",
|
|
983
|
+
updatedAt:"Float"
|
|
984
|
+
},
|
|
985
|
+
ShapefeaturepresentationMain:{
|
|
986
|
+
title:"String",
|
|
402
987
|
subtitle:"String",
|
|
403
|
-
|
|
988
|
+
content:"String"
|
|
989
|
+
},
|
|
990
|
+
Shapefeaturepresentation:{
|
|
991
|
+
main:"ShapefeaturepresentationMain",
|
|
992
|
+
_id:"String",
|
|
993
|
+
createdAt:"Float",
|
|
994
|
+
updatedAt:"Float"
|
|
995
|
+
},
|
|
996
|
+
Shapefeaturesv2:{
|
|
997
|
+
_id:"String",
|
|
998
|
+
createdAt:"Float",
|
|
999
|
+
updatedAt:"Float"
|
|
404
1000
|
},
|
|
405
|
-
|
|
406
|
-
|
|
1001
|
+
ShapefootFooterFooter_containerFooter_links:{
|
|
1002
|
+
privacy_policy:"String",
|
|
1003
|
+
terms_of_service:"String",
|
|
1004
|
+
contact_us:"String"
|
|
407
1005
|
},
|
|
408
|
-
|
|
409
|
-
|
|
1006
|
+
ShapefootFooterFooter_container:{
|
|
1007
|
+
footer_logo:"String",
|
|
1008
|
+
footer_links:"ShapefootFooterFooter_containerFooter_links",
|
|
1009
|
+
footer_copy:"String"
|
|
410
1010
|
},
|
|
411
|
-
|
|
412
|
-
|
|
1011
|
+
ShapefootFooter:{
|
|
1012
|
+
footer_container:"ShapefootFooterFooter_container"
|
|
1013
|
+
},
|
|
1014
|
+
Shapefoot:{
|
|
1015
|
+
footer:"ShapefootFooter",
|
|
413
1016
|
_id:"String",
|
|
414
1017
|
createdAt:"Float",
|
|
415
1018
|
updatedAt:"Float"
|
|
416
1019
|
},
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
1020
|
+
ShapefooterColumns:{
|
|
1021
|
+
title:"String",
|
|
1022
|
+
links:"Shapelink"
|
|
420
1023
|
},
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
1024
|
+
Shapefooter:{
|
|
1025
|
+
columns:"ShapefooterColumns",
|
|
1026
|
+
_id:"String",
|
|
1027
|
+
createdAt:"Float",
|
|
1028
|
+
updatedAt:"Float"
|
|
1029
|
+
},
|
|
1030
|
+
Shapeheading:{
|
|
1031
|
+
text:"String",
|
|
1032
|
+
_id:"String",
|
|
1033
|
+
createdAt:"Float",
|
|
1034
|
+
updatedAt:"Float"
|
|
1035
|
+
},
|
|
1036
|
+
ShapeheroHero_componentSlogan_parent:{
|
|
1037
|
+
slogan:"String"
|
|
424
1038
|
},
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
1039
|
+
ShapeheroHero_component:{
|
|
1040
|
+
logoplace:"String",
|
|
1041
|
+
logo:"String",
|
|
1042
|
+
slogan_parent:"ShapeheroHero_componentSlogan_parent",
|
|
1043
|
+
subslogan:"String"
|
|
1044
|
+
},
|
|
1045
|
+
Shapehero:{
|
|
1046
|
+
hero_component:"ShapeheroHero_component",
|
|
1047
|
+
_id:"String",
|
|
1048
|
+
createdAt:"Float",
|
|
1049
|
+
updatedAt:"Float"
|
|
428
1050
|
},
|
|
429
|
-
|
|
1051
|
+
Shapehero_section:{
|
|
1052
|
+
heading:"Shapeheading",
|
|
1053
|
+
subheading:"Shapesubheading",
|
|
1054
|
+
media:"Shapeimage_atom",
|
|
1055
|
+
primary_cta:"Shapebutton",
|
|
1056
|
+
secondary_cta:"Shapebutton",
|
|
1057
|
+
_id:"String",
|
|
1058
|
+
createdAt:"Float",
|
|
1059
|
+
updatedAt:"Float"
|
|
1060
|
+
},
|
|
1061
|
+
ShapeheroxHero_sectionHero_containerText_wrapperFeatures:{
|
|
1062
|
+
feature:"String"
|
|
1063
|
+
},
|
|
1064
|
+
ShapeheroxHero_sectionHero_containerText_wrapper:{
|
|
430
1065
|
title:"String",
|
|
431
1066
|
description:"String",
|
|
432
|
-
|
|
1067
|
+
features:"ShapeheroxHero_sectionHero_containerText_wrapperFeatures"
|
|
1068
|
+
},
|
|
1069
|
+
ShapeheroxHero_sectionHero_containerImage_wrapper:{
|
|
1070
|
+
hero_image:"ImageField"
|
|
1071
|
+
},
|
|
1072
|
+
ShapeheroxHero_sectionHero_containerPresentation:{
|
|
1073
|
+
video:"VideoField"
|
|
433
1074
|
},
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
1075
|
+
ShapeheroxHero_sectionHero_container:{
|
|
1076
|
+
text_wrapper:"ShapeheroxHero_sectionHero_containerText_wrapper",
|
|
1077
|
+
image_wrapper:"ShapeheroxHero_sectionHero_containerImage_wrapper",
|
|
1078
|
+
presentation:"ShapeheroxHero_sectionHero_containerPresentation"
|
|
437
1079
|
},
|
|
438
|
-
|
|
439
|
-
|
|
1080
|
+
ShapeheroxHero_section:{
|
|
1081
|
+
hero_container:"ShapeheroxHero_sectionHero_container"
|
|
1082
|
+
},
|
|
1083
|
+
Shapeherox:{
|
|
1084
|
+
hero_section:"ShapeheroxHero_section",
|
|
1085
|
+
_id:"String",
|
|
1086
|
+
createdAt:"Float",
|
|
1087
|
+
updatedAt:"Float"
|
|
1088
|
+
},
|
|
1089
|
+
Shapeimage_atom:{
|
|
1090
|
+
image:"ImageField",
|
|
1091
|
+
alt:"String",
|
|
1092
|
+
_id:"String",
|
|
1093
|
+
createdAt:"Float",
|
|
1094
|
+
updatedAt:"Float"
|
|
1095
|
+
},
|
|
1096
|
+
Shapelanding_featuresSectionHeader:{
|
|
1097
|
+
headline:"String",
|
|
1098
|
+
subheadline:"String"
|
|
1099
|
+
},
|
|
1100
|
+
Shapelanding_featuresSectionFeatures_gridItem:{
|
|
1101
|
+
icon_svg:"String",
|
|
1102
|
+
title:"String",
|
|
1103
|
+
description:"String"
|
|
1104
|
+
},
|
|
1105
|
+
Shapelanding_featuresSectionFeatures_grid:{
|
|
1106
|
+
item:"Shapelanding_featuresSectionFeatures_gridItem"
|
|
1107
|
+
},
|
|
1108
|
+
Shapelanding_featuresSection:{
|
|
1109
|
+
header:"Shapelanding_featuresSectionHeader",
|
|
1110
|
+
features_grid:"Shapelanding_featuresSectionFeatures_grid"
|
|
1111
|
+
},
|
|
1112
|
+
Shapelanding_features:{
|
|
1113
|
+
section:"Shapelanding_featuresSection",
|
|
1114
|
+
_id:"String",
|
|
1115
|
+
createdAt:"Float",
|
|
1116
|
+
updatedAt:"Float"
|
|
1117
|
+
},
|
|
1118
|
+
Shapelanding_footerFooter_containerFooter_links:{
|
|
1119
|
+
privacy_policy:"String",
|
|
1120
|
+
terms_of_service:"String",
|
|
1121
|
+
contact_us:"String"
|
|
1122
|
+
},
|
|
1123
|
+
Shapelanding_footerFooter_container:{
|
|
1124
|
+
footer_logo:"String",
|
|
1125
|
+
footer_links:"Shapelanding_footerFooter_containerFooter_links",
|
|
1126
|
+
footer_copy:"String"
|
|
1127
|
+
},
|
|
1128
|
+
Shapelanding_footer:{
|
|
1129
|
+
footer_container:"Shapelanding_footerFooter_container",
|
|
1130
|
+
_id:"String",
|
|
1131
|
+
createdAt:"Float",
|
|
1132
|
+
updatedAt:"Float"
|
|
1133
|
+
},
|
|
1134
|
+
Shapelanding_heroMain_contentHighlights:{
|
|
1135
|
+
feature:"String"
|
|
1136
|
+
},
|
|
1137
|
+
Shapelanding_heroMain_contentCta_buttonsPrimary:{
|
|
1138
|
+
label:"String",
|
|
1139
|
+
href:"String"
|
|
1140
|
+
},
|
|
1141
|
+
Shapelanding_heroMain_contentCta_buttonsSecondary:{
|
|
1142
|
+
label:"String",
|
|
1143
|
+
href:"String"
|
|
1144
|
+
},
|
|
1145
|
+
Shapelanding_heroMain_contentCta_buttons:{
|
|
1146
|
+
primary:"Shapelanding_heroMain_contentCta_buttonsPrimary",
|
|
1147
|
+
secondary:"Shapelanding_heroMain_contentCta_buttonsSecondary"
|
|
1148
|
+
},
|
|
1149
|
+
Shapelanding_heroMain_content:{
|
|
1150
|
+
headline:"String",
|
|
1151
|
+
subheadline:"String",
|
|
1152
|
+
highlights:"Shapelanding_heroMain_contentHighlights",
|
|
1153
|
+
cta_buttons:"Shapelanding_heroMain_contentCta_buttons",
|
|
1154
|
+
preview_image:"ImageField"
|
|
440
1155
|
},
|
|
441
1156
|
Shapelanding_hero:{
|
|
442
|
-
|
|
1157
|
+
main_content:"Shapelanding_heroMain_content",
|
|
443
1158
|
_id:"String",
|
|
444
1159
|
createdAt:"Float",
|
|
445
1160
|
updatedAt:"Float"
|
|
446
1161
|
},
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
1162
|
+
Shapelanding_navbarNavigationLinks:{
|
|
1163
|
+
label:"String",
|
|
1164
|
+
href:"String"
|
|
450
1165
|
},
|
|
451
|
-
|
|
1166
|
+
Shapelanding_navbarNavigationCta:{
|
|
1167
|
+
label:"String",
|
|
1168
|
+
href:"String",
|
|
1169
|
+
variant:"String"
|
|
1170
|
+
},
|
|
1171
|
+
Shapelanding_navbarNavigation:{
|
|
1172
|
+
logo_text:"String",
|
|
1173
|
+
links:"Shapelanding_navbarNavigationLinks",
|
|
1174
|
+
cta:"Shapelanding_navbarNavigationCta"
|
|
1175
|
+
},
|
|
1176
|
+
Shapelanding_navbar:{
|
|
1177
|
+
navigation:"Shapelanding_navbarNavigation",
|
|
1178
|
+
_id:"String",
|
|
1179
|
+
createdAt:"Float",
|
|
1180
|
+
updatedAt:"Float"
|
|
1181
|
+
},
|
|
1182
|
+
Shapelanding_testimonialsSectionQuotesItem:{
|
|
1183
|
+
quote:"String",
|
|
1184
|
+
author:"String",
|
|
1185
|
+
role:"String",
|
|
1186
|
+
avatar:"ImageField"
|
|
1187
|
+
},
|
|
1188
|
+
Shapelanding_testimonialsSectionQuotes:{
|
|
1189
|
+
item:"Shapelanding_testimonialsSectionQuotesItem"
|
|
1190
|
+
},
|
|
1191
|
+
Shapelanding_testimonialsSection:{
|
|
1192
|
+
headline:"String",
|
|
1193
|
+
quotes:"Shapelanding_testimonialsSectionQuotes"
|
|
1194
|
+
},
|
|
1195
|
+
Shapelanding_testimonials:{
|
|
1196
|
+
section:"Shapelanding_testimonialsSection",
|
|
1197
|
+
_id:"String",
|
|
1198
|
+
createdAt:"Float",
|
|
1199
|
+
updatedAt:"Float"
|
|
1200
|
+
},
|
|
1201
|
+
Shapelink:{
|
|
1202
|
+
label:"String",
|
|
1203
|
+
href:"String",
|
|
1204
|
+
_id:"String",
|
|
1205
|
+
createdAt:"Float",
|
|
1206
|
+
updatedAt:"Float"
|
|
1207
|
+
},
|
|
1208
|
+
Shapelista_projektowListProjectsInstance:{
|
|
1209
|
+
title:"String",
|
|
1210
|
+
link:"String",
|
|
1211
|
+
remove_button:"String"
|
|
1212
|
+
},
|
|
1213
|
+
Shapelista_projektowListProjects:{
|
|
1214
|
+
instance:"Shapelista_projektowListProjectsInstance"
|
|
1215
|
+
},
|
|
1216
|
+
Shapelista_projektowList:{
|
|
1217
|
+
title:"String",
|
|
452
1218
|
subtitle:"String",
|
|
453
|
-
|
|
1219
|
+
projects:"Shapelista_projektowListProjects"
|
|
1220
|
+
},
|
|
1221
|
+
Shapelista_projektow:{
|
|
1222
|
+
list:"Shapelista_projektowList",
|
|
1223
|
+
_id:"String",
|
|
1224
|
+
createdAt:"Float",
|
|
1225
|
+
updatedAt:"Float"
|
|
1226
|
+
},
|
|
1227
|
+
ShapenavNavigationNavigation_linksLink:{
|
|
1228
|
+
display:"String",
|
|
1229
|
+
href:"String"
|
|
454
1230
|
},
|
|
455
|
-
|
|
456
|
-
|
|
1231
|
+
ShapenavNavigationNavigation_links:{
|
|
1232
|
+
link:"ShapenavNavigationNavigation_linksLink"
|
|
457
1233
|
},
|
|
458
|
-
|
|
459
|
-
|
|
1234
|
+
ShapenavNavigation:{
|
|
1235
|
+
logo:"String",
|
|
1236
|
+
navigation_links:"ShapenavNavigationNavigation_links"
|
|
460
1237
|
},
|
|
461
|
-
|
|
462
|
-
|
|
1238
|
+
Shapenav:{
|
|
1239
|
+
navigation:"ShapenavNavigation",
|
|
1240
|
+
_id:"String",
|
|
1241
|
+
createdAt:"Float",
|
|
1242
|
+
updatedAt:"Float"
|
|
1243
|
+
},
|
|
1244
|
+
Shapenavbar:{
|
|
1245
|
+
brand:"String",
|
|
1246
|
+
links:"Shapelink",
|
|
1247
|
+
cta:"Shapebutton",
|
|
463
1248
|
_id:"String",
|
|
464
1249
|
createdAt:"Float",
|
|
465
1250
|
updatedAt:"Float"
|
|
466
1251
|
},
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
1252
|
+
ShapenewshapeBackgroundContent:{
|
|
1253
|
+
badge:"String",
|
|
1254
|
+
headline:"String",
|
|
1255
|
+
subheadline:"String",
|
|
1256
|
+
cta_label:"String",
|
|
1257
|
+
cta_href:"String"
|
|
1258
|
+
},
|
|
1259
|
+
ShapenewshapeBackground:{
|
|
1260
|
+
overlay_gradient:"Boolean",
|
|
1261
|
+
content:"ShapenewshapeBackgroundContent",
|
|
1262
|
+
hero_image:"ImageField"
|
|
475
1263
|
},
|
|
476
|
-
|
|
477
|
-
|
|
1264
|
+
Shapenewshape:{
|
|
1265
|
+
background:"ShapenewshapeBackground",
|
|
478
1266
|
_id:"String",
|
|
479
1267
|
createdAt:"Float",
|
|
480
1268
|
updatedAt:"Float"
|
|
481
1269
|
},
|
|
482
|
-
|
|
483
|
-
|
|
1270
|
+
ShapepricingPlansFeatures:{
|
|
1271
|
+
name:"String",
|
|
1272
|
+
included:"Boolean"
|
|
1273
|
+
},
|
|
1274
|
+
ShapepricingPlans:{
|
|
1275
|
+
name:"String",
|
|
1276
|
+
price:"String",
|
|
1277
|
+
period:"String",
|
|
1278
|
+
description:"String",
|
|
1279
|
+
features:"ShapepricingPlansFeatures",
|
|
1280
|
+
most_popular:"Boolean",
|
|
1281
|
+
cta:"Shapebutton"
|
|
1282
|
+
},
|
|
1283
|
+
Shapepricing:{
|
|
1284
|
+
heading:"Shapeheading",
|
|
1285
|
+
subheading:"Shapesubheading",
|
|
1286
|
+
plans:"ShapepricingPlans",
|
|
1287
|
+
_id:"String",
|
|
1288
|
+
createdAt:"Float",
|
|
1289
|
+
updatedAt:"Float"
|
|
1290
|
+
},
|
|
1291
|
+
Shapepricingv1Pricing_sectionHeader_wrapper:{
|
|
1292
|
+
title:"String",
|
|
484
1293
|
description:"String"
|
|
485
1294
|
},
|
|
486
|
-
|
|
487
|
-
|
|
1295
|
+
Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list:{
|
|
1296
|
+
feature:"String"
|
|
1297
|
+
},
|
|
1298
|
+
Shapepricingv1Pricing_sectionPlans_gridFree_plan:{
|
|
1299
|
+
plan_name:"String",
|
|
1300
|
+
price:"String",
|
|
1301
|
+
plan_description:"String",
|
|
1302
|
+
feature_list:"Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list",
|
|
1303
|
+
cta:"Shapesecondary_cta"
|
|
1304
|
+
},
|
|
1305
|
+
Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list:{
|
|
1306
|
+
feature:"String"
|
|
488
1307
|
},
|
|
489
|
-
|
|
490
|
-
|
|
1308
|
+
Shapepricingv1Pricing_sectionPlans_gridPaid_plan:{
|
|
1309
|
+
plan_name:"String",
|
|
1310
|
+
price:"String",
|
|
1311
|
+
plan_description:"String",
|
|
1312
|
+
feature_list:"Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list",
|
|
1313
|
+
cta:"Shapectabutton"
|
|
491
1314
|
},
|
|
492
|
-
|
|
493
|
-
|
|
1315
|
+
Shapepricingv1Pricing_sectionPlans_grid:{
|
|
1316
|
+
free_plan:"Shapepricingv1Pricing_sectionPlans_gridFree_plan",
|
|
1317
|
+
paid_plan:"Shapepricingv1Pricing_sectionPlans_gridPaid_plan"
|
|
1318
|
+
},
|
|
1319
|
+
Shapepricingv1Pricing_section:{
|
|
1320
|
+
header_wrapper:"Shapepricingv1Pricing_sectionHeader_wrapper",
|
|
1321
|
+
plans_grid:"Shapepricingv1Pricing_sectionPlans_grid"
|
|
1322
|
+
},
|
|
1323
|
+
Shapepricingv1:{
|
|
1324
|
+
pricing_section:"Shapepricingv1Pricing_section",
|
|
494
1325
|
_id:"String",
|
|
495
1326
|
createdAt:"Float",
|
|
496
1327
|
updatedAt:"Float"
|
|
497
1328
|
},
|
|
498
|
-
|
|
1329
|
+
Shapepricingv2MainPlans_gridFree_planPlan_footer:{
|
|
1330
|
+
price:"String",
|
|
1331
|
+
cta:"String"
|
|
1332
|
+
},
|
|
1333
|
+
Shapepricingv2MainPlans_gridFree_plan:{
|
|
1334
|
+
subtitle:"String",
|
|
499
1335
|
description:"String",
|
|
500
|
-
|
|
1336
|
+
features:"String",
|
|
1337
|
+
plan_footer:"Shapepricingv2MainPlans_gridFree_planPlan_footer"
|
|
501
1338
|
},
|
|
502
|
-
|
|
1339
|
+
Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock:{
|
|
1340
|
+
price:"String",
|
|
1341
|
+
price_period:"String"
|
|
1342
|
+
},
|
|
1343
|
+
Shapepricingv2MainPlans_gridPro_planPlan_footer:{
|
|
1344
|
+
priceblock:"Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock",
|
|
1345
|
+
cta:"String"
|
|
1346
|
+
},
|
|
1347
|
+
Shapepricingv2MainPlans_gridPro_plan:{
|
|
503
1348
|
subtitle:"String",
|
|
504
|
-
|
|
1349
|
+
description:"String",
|
|
1350
|
+
features:"String",
|
|
1351
|
+
plan_footer:"Shapepricingv2MainPlans_gridPro_planPlan_footer"
|
|
505
1352
|
},
|
|
506
|
-
|
|
507
|
-
|
|
1353
|
+
Shapepricingv2MainPlans_grid:{
|
|
1354
|
+
free_plan:"Shapepricingv2MainPlans_gridFree_plan",
|
|
1355
|
+
pro_plan:"Shapepricingv2MainPlans_gridPro_plan"
|
|
508
1356
|
},
|
|
509
|
-
|
|
510
|
-
|
|
1357
|
+
Shapepricingv2Main:{
|
|
1358
|
+
plans_grid:"Shapepricingv2MainPlans_grid"
|
|
511
1359
|
},
|
|
512
|
-
|
|
513
|
-
|
|
1360
|
+
Shapepricingv2:{
|
|
1361
|
+
main:"Shapepricingv2Main",
|
|
514
1362
|
_id:"String",
|
|
515
1363
|
createdAt:"Float",
|
|
516
1364
|
updatedAt:"Float"
|
|
517
1365
|
},
|
|
518
|
-
|
|
519
|
-
|
|
1366
|
+
Shapeprofile_infoProfile_sectionAccount_headerInfo:{
|
|
1367
|
+
full_name:"String",
|
|
1368
|
+
company:"String",
|
|
1369
|
+
email:"String"
|
|
1370
|
+
},
|
|
1371
|
+
Shapeprofile_infoProfile_sectionAccount_header:{
|
|
1372
|
+
avatar:"ImageField",
|
|
1373
|
+
info:"Shapeprofile_infoProfile_sectionAccount_headerInfo"
|
|
1374
|
+
},
|
|
1375
|
+
Shapeprofile_infoProfile_sectionPlan_status:{
|
|
1376
|
+
plan:"String"
|
|
1377
|
+
},
|
|
1378
|
+
Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens:{
|
|
1379
|
+
label:"String",
|
|
1380
|
+
value:"String"
|
|
1381
|
+
},
|
|
1382
|
+
Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens:{
|
|
1383
|
+
label:"String",
|
|
1384
|
+
value:"String"
|
|
1385
|
+
},
|
|
1386
|
+
Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests:{
|
|
1387
|
+
label:"String",
|
|
1388
|
+
value:"String"
|
|
1389
|
+
},
|
|
1390
|
+
Shapeprofile_infoProfile_sectionUsage_section:{
|
|
1391
|
+
ai_tokens:"Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens",
|
|
1392
|
+
translate_tokens:"Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens",
|
|
1393
|
+
monthly_api_requests:"Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"
|
|
1394
|
+
},
|
|
1395
|
+
Shapeprofile_infoProfile_section:{
|
|
1396
|
+
account_header:"Shapeprofile_infoProfile_sectionAccount_header",
|
|
1397
|
+
plan_status:"Shapeprofile_infoProfile_sectionPlan_status",
|
|
1398
|
+
usage_section:"Shapeprofile_infoProfile_sectionUsage_section"
|
|
1399
|
+
},
|
|
1400
|
+
Shapeprofile_info:{
|
|
1401
|
+
profile_section:"Shapeprofile_infoProfile_section",
|
|
520
1402
|
_id:"String",
|
|
521
1403
|
createdAt:"Float",
|
|
522
1404
|
updatedAt:"Float"
|
|
523
1405
|
},
|
|
524
|
-
|
|
1406
|
+
Shaperich_text:{
|
|
1407
|
+
content:"String",
|
|
525
1408
|
_id:"String",
|
|
526
1409
|
createdAt:"Float",
|
|
527
1410
|
updatedAt:"Float"
|
|
528
1411
|
},
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
1412
|
+
Shapes26_bento_gridRootHeader:{
|
|
1413
|
+
eyebrow:"String",
|
|
1414
|
+
title:"String",
|
|
1415
|
+
description:"String"
|
|
532
1416
|
},
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
1417
|
+
Shapes26_bento_gridRootContainer:{
|
|
1418
|
+
items:"Shapes26_bento_item"
|
|
1419
|
+
},
|
|
1420
|
+
Shapes26_bento_gridRoot:{
|
|
1421
|
+
header:"Shapes26_bento_gridRootHeader",
|
|
1422
|
+
container:"Shapes26_bento_gridRootContainer"
|
|
1423
|
+
},
|
|
1424
|
+
Shapes26_bento_grid:{
|
|
1425
|
+
root:"Shapes26_bento_gridRoot",
|
|
1426
|
+
_id:"String",
|
|
1427
|
+
createdAt:"Float",
|
|
1428
|
+
updatedAt:"Float"
|
|
1429
|
+
},
|
|
1430
|
+
Shapes26_bento_item:{
|
|
1431
|
+
icon_emoji:"String",
|
|
1432
|
+
highlight:"String",
|
|
1433
|
+
title:"String",
|
|
1434
|
+
description:"String",
|
|
1435
|
+
visual:"ImageField",
|
|
1436
|
+
_id:"String",
|
|
1437
|
+
createdAt:"Float",
|
|
1438
|
+
updatedAt:"Float"
|
|
1439
|
+
},
|
|
1440
|
+
Shapes26_footerRootGridBrand:{
|
|
1441
|
+
logo:"String",
|
|
1442
|
+
tagline:"String"
|
|
1443
|
+
},
|
|
1444
|
+
Shapes26_footerRootGridColumn1Link1:{
|
|
1445
|
+
label:"String",
|
|
1446
|
+
href:"String"
|
|
537
1447
|
},
|
|
538
|
-
|
|
1448
|
+
Shapes26_footerRootGridColumn1Link2:{
|
|
1449
|
+
label:"String",
|
|
1450
|
+
href:"String"
|
|
1451
|
+
},
|
|
1452
|
+
Shapes26_footerRootGridColumn1Link3:{
|
|
1453
|
+
label:"String",
|
|
1454
|
+
href:"String"
|
|
1455
|
+
},
|
|
1456
|
+
Shapes26_footerRootGridColumn1:{
|
|
539
1457
|
title:"String",
|
|
1458
|
+
link1:"Shapes26_footerRootGridColumn1Link1",
|
|
1459
|
+
link2:"Shapes26_footerRootGridColumn1Link2",
|
|
1460
|
+
link3:"Shapes26_footerRootGridColumn1Link3"
|
|
1461
|
+
},
|
|
1462
|
+
Shapes26_footerRootGridColumn2Link1:{
|
|
1463
|
+
label:"String",
|
|
540
1464
|
href:"String"
|
|
541
1465
|
},
|
|
542
|
-
|
|
1466
|
+
Shapes26_footerRootGridColumn2Link2:{
|
|
1467
|
+
label:"String",
|
|
1468
|
+
href:"String"
|
|
1469
|
+
},
|
|
1470
|
+
Shapes26_footerRootGridColumn2Link3:{
|
|
1471
|
+
label:"String",
|
|
1472
|
+
href:"String"
|
|
1473
|
+
},
|
|
1474
|
+
Shapes26_footerRootGridColumn2:{
|
|
543
1475
|
title:"String",
|
|
1476
|
+
link1:"Shapes26_footerRootGridColumn2Link1",
|
|
1477
|
+
link2:"Shapes26_footerRootGridColumn2Link2",
|
|
1478
|
+
link3:"Shapes26_footerRootGridColumn2Link3"
|
|
1479
|
+
},
|
|
1480
|
+
Shapes26_footerRootGridColumn3Link1:{
|
|
1481
|
+
label:"String",
|
|
544
1482
|
href:"String"
|
|
545
1483
|
},
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
1484
|
+
Shapes26_footerRootGridColumn3Link2:{
|
|
1485
|
+
label:"String",
|
|
1486
|
+
href:"String"
|
|
1487
|
+
},
|
|
1488
|
+
Shapes26_footerRootGridColumn3Link3:{
|
|
1489
|
+
label:"String",
|
|
1490
|
+
href:"String"
|
|
1491
|
+
},
|
|
1492
|
+
Shapes26_footerRootGridColumn3:{
|
|
1493
|
+
title:"String",
|
|
1494
|
+
link1:"Shapes26_footerRootGridColumn3Link1",
|
|
1495
|
+
link2:"Shapes26_footerRootGridColumn3Link2",
|
|
1496
|
+
link3:"Shapes26_footerRootGridColumn3Link3"
|
|
1497
|
+
},
|
|
1498
|
+
Shapes26_footerRootGrid:{
|
|
1499
|
+
brand:"Shapes26_footerRootGridBrand",
|
|
1500
|
+
column1:"Shapes26_footerRootGridColumn1",
|
|
1501
|
+
column2:"Shapes26_footerRootGridColumn2",
|
|
1502
|
+
column3:"Shapes26_footerRootGridColumn3"
|
|
1503
|
+
},
|
|
1504
|
+
Shapes26_footerRootBottomSocials:{
|
|
1505
|
+
github:"String",
|
|
1506
|
+
twitter:"String",
|
|
1507
|
+
discord:"String"
|
|
1508
|
+
},
|
|
1509
|
+
Shapes26_footerRootBottom:{
|
|
1510
|
+
copyright:"String",
|
|
1511
|
+
socials:"Shapes26_footerRootBottomSocials"
|
|
1512
|
+
},
|
|
1513
|
+
Shapes26_footerRoot:{
|
|
1514
|
+
grid:"Shapes26_footerRootGrid",
|
|
1515
|
+
bottom:"Shapes26_footerRootBottom"
|
|
1516
|
+
},
|
|
1517
|
+
Shapes26_footer:{
|
|
1518
|
+
root:"Shapes26_footerRoot",
|
|
1519
|
+
_id:"String",
|
|
1520
|
+
createdAt:"Float",
|
|
1521
|
+
updatedAt:"Float"
|
|
1522
|
+
},
|
|
1523
|
+
Shapes26_heroContainerEyebrow:{
|
|
1524
|
+
badge:"String",
|
|
1525
|
+
announcement:"String"
|
|
1526
|
+
},
|
|
1527
|
+
Shapes26_heroContainerActions:{
|
|
1528
|
+
primary_cta:"String",
|
|
1529
|
+
secondary_cta:"String"
|
|
1530
|
+
},
|
|
1531
|
+
Shapes26_heroContainerHero_visual:{
|
|
1532
|
+
image:"ImageField",
|
|
1533
|
+
video:"VideoField"
|
|
1534
|
+
},
|
|
1535
|
+
Shapes26_heroContainerStatsStat1:{
|
|
1536
|
+
value:"String",
|
|
1537
|
+
label:"String"
|
|
1538
|
+
},
|
|
1539
|
+
Shapes26_heroContainerStatsStat2:{
|
|
1540
|
+
value:"String",
|
|
1541
|
+
label:"String"
|
|
1542
|
+
},
|
|
1543
|
+
Shapes26_heroContainerStatsStat3:{
|
|
1544
|
+
value:"String",
|
|
1545
|
+
label:"String"
|
|
1546
|
+
},
|
|
1547
|
+
Shapes26_heroContainerStatsStat4:{
|
|
1548
|
+
value:"String",
|
|
1549
|
+
label:"String"
|
|
1550
|
+
},
|
|
1551
|
+
Shapes26_heroContainerStats:{
|
|
1552
|
+
stat1:"Shapes26_heroContainerStatsStat1",
|
|
1553
|
+
stat2:"Shapes26_heroContainerStatsStat2",
|
|
1554
|
+
stat3:"Shapes26_heroContainerStatsStat3",
|
|
1555
|
+
stat4:"Shapes26_heroContainerStatsStat4"
|
|
1556
|
+
},
|
|
1557
|
+
Shapes26_heroContainer:{
|
|
1558
|
+
eyebrow:"Shapes26_heroContainerEyebrow",
|
|
1559
|
+
headline:"String",
|
|
1560
|
+
subheadline:"String",
|
|
1561
|
+
actions:"Shapes26_heroContainerActions",
|
|
1562
|
+
hero_visual:"Shapes26_heroContainerHero_visual",
|
|
1563
|
+
stats:"Shapes26_heroContainerStats"
|
|
1564
|
+
},
|
|
1565
|
+
Shapes26_hero:{
|
|
1566
|
+
container:"Shapes26_heroContainer",
|
|
1567
|
+
_id:"String",
|
|
1568
|
+
createdAt:"Float",
|
|
1569
|
+
updatedAt:"Float"
|
|
1570
|
+
},
|
|
1571
|
+
Shapes26_navNavbarLinks:{
|
|
1572
|
+
link1:"Shapes26_nav_link",
|
|
1573
|
+
link2:"Shapes26_nav_link",
|
|
1574
|
+
link3:"Shapes26_nav_link",
|
|
1575
|
+
link4:"Shapes26_nav_link"
|
|
1576
|
+
},
|
|
1577
|
+
Shapes26_navNavbarActions:{
|
|
1578
|
+
login:"String",
|
|
1579
|
+
cta:"String"
|
|
1580
|
+
},
|
|
1581
|
+
Shapes26_navNavbar:{
|
|
1582
|
+
logo:"String",
|
|
1583
|
+
links:"Shapes26_navNavbarLinks",
|
|
1584
|
+
actions:"Shapes26_navNavbarActions"
|
|
1585
|
+
},
|
|
1586
|
+
Shapes26_nav:{
|
|
1587
|
+
navbar:"Shapes26_navNavbar",
|
|
1588
|
+
_id:"String",
|
|
1589
|
+
createdAt:"Float",
|
|
1590
|
+
updatedAt:"Float"
|
|
1591
|
+
},
|
|
1592
|
+
Shapes26_nav_link:{
|
|
1593
|
+
label:"String",
|
|
1594
|
+
href:"String",
|
|
1595
|
+
_id:"String",
|
|
1596
|
+
createdAt:"Float",
|
|
1597
|
+
updatedAt:"Float"
|
|
1598
|
+
},
|
|
1599
|
+
Shapes26_pricingSectionHeader:{
|
|
1600
|
+
eyebrow:"String",
|
|
1601
|
+
title:"String",
|
|
1602
|
+
description:"String"
|
|
1603
|
+
},
|
|
1604
|
+
Shapes26_pricingSectionPlans_container:{
|
|
1605
|
+
plans:"Shapes26_pricing_card"
|
|
1606
|
+
},
|
|
1607
|
+
Shapes26_pricingSection:{
|
|
1608
|
+
header:"Shapes26_pricingSectionHeader",
|
|
1609
|
+
plans_container:"Shapes26_pricingSectionPlans_container"
|
|
1610
|
+
},
|
|
1611
|
+
Shapes26_pricing:{
|
|
1612
|
+
section:"Shapes26_pricingSection",
|
|
1613
|
+
_id:"String",
|
|
1614
|
+
createdAt:"Float",
|
|
1615
|
+
updatedAt:"Float"
|
|
1616
|
+
},
|
|
1617
|
+
Shapes26_pricing_cardFeatures:{
|
|
1618
|
+
feature1:"String",
|
|
1619
|
+
feature2:"String",
|
|
1620
|
+
feature3:"String",
|
|
1621
|
+
feature4:"String",
|
|
1622
|
+
feature5:"String"
|
|
1623
|
+
},
|
|
1624
|
+
Shapes26_pricing_card:{
|
|
1625
|
+
badge:"String",
|
|
1626
|
+
plan_name:"String",
|
|
1627
|
+
price:"String",
|
|
1628
|
+
price_period:"String",
|
|
1629
|
+
description:"String",
|
|
1630
|
+
features:"Shapes26_pricing_cardFeatures",
|
|
1631
|
+
cta:"String",
|
|
1632
|
+
_id:"String",
|
|
1633
|
+
createdAt:"Float",
|
|
1634
|
+
updatedAt:"Float"
|
|
1635
|
+
},
|
|
1636
|
+
Shapes26_use_casesSectionHeader:{
|
|
1637
|
+
eyebrow:"String",
|
|
1638
|
+
title:"String",
|
|
1639
|
+
description:"String"
|
|
1640
|
+
},
|
|
1641
|
+
Shapes26_use_casesSectionGridUse_husarHeader:{
|
|
1642
|
+
icon:"String",
|
|
1643
|
+
title:"String"
|
|
1644
|
+
},
|
|
1645
|
+
Shapes26_use_casesSectionGridUse_husarItems:{
|
|
1646
|
+
item1:"String",
|
|
1647
|
+
item2:"String",
|
|
1648
|
+
item3:"String",
|
|
1649
|
+
item4:"String",
|
|
1650
|
+
item5:"String"
|
|
1651
|
+
},
|
|
1652
|
+
Shapes26_use_casesSectionGridUse_husar:{
|
|
1653
|
+
header:"Shapes26_use_casesSectionGridUse_husarHeader",
|
|
1654
|
+
items:"Shapes26_use_casesSectionGridUse_husarItems"
|
|
1655
|
+
},
|
|
1656
|
+
Shapes26_use_casesSectionGridNot_for_youHeader:{
|
|
1657
|
+
icon:"String",
|
|
1658
|
+
title:"String"
|
|
1659
|
+
},
|
|
1660
|
+
Shapes26_use_casesSectionGridNot_for_youItemsItem1:{
|
|
1661
|
+
text:"String",
|
|
1662
|
+
alternative:"String"
|
|
549
1663
|
},
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
conclusion:"String",
|
|
554
|
-
cta_buttons:"ShapeomnieContainerCardGridContent_blockCta_buttons"
|
|
1664
|
+
Shapes26_use_casesSectionGridNot_for_youItemsItem2:{
|
|
1665
|
+
text:"String",
|
|
1666
|
+
alternative:"String"
|
|
555
1667
|
},
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
1668
|
+
Shapes26_use_casesSectionGridNot_for_youItemsItem3:{
|
|
1669
|
+
text:"String",
|
|
1670
|
+
alternative:"String"
|
|
559
1671
|
},
|
|
560
|
-
|
|
561
|
-
|
|
1672
|
+
Shapes26_use_casesSectionGridNot_for_youItems:{
|
|
1673
|
+
item1:"Shapes26_use_casesSectionGridNot_for_youItemsItem1",
|
|
1674
|
+
item2:"Shapes26_use_casesSectionGridNot_for_youItemsItem2",
|
|
1675
|
+
item3:"Shapes26_use_casesSectionGridNot_for_youItemsItem3"
|
|
1676
|
+
},
|
|
1677
|
+
Shapes26_use_casesSectionGridNot_for_you:{
|
|
1678
|
+
header:"Shapes26_use_casesSectionGridNot_for_youHeader",
|
|
1679
|
+
items:"Shapes26_use_casesSectionGridNot_for_youItems"
|
|
1680
|
+
},
|
|
1681
|
+
Shapes26_use_casesSectionGrid:{
|
|
1682
|
+
use_husar:"Shapes26_use_casesSectionGridUse_husar",
|
|
1683
|
+
not_for_you:"Shapes26_use_casesSectionGridNot_for_you"
|
|
1684
|
+
},
|
|
1685
|
+
Shapes26_use_casesSection:{
|
|
1686
|
+
header:"Shapes26_use_casesSectionHeader",
|
|
1687
|
+
grid:"Shapes26_use_casesSectionGrid"
|
|
1688
|
+
},
|
|
1689
|
+
Shapes26_use_cases:{
|
|
1690
|
+
section:"Shapes26_use_casesSection",
|
|
1691
|
+
_id:"String",
|
|
1692
|
+
createdAt:"Float",
|
|
1693
|
+
updatedAt:"Float"
|
|
1694
|
+
},
|
|
1695
|
+
Shapesecondary_cta:{
|
|
1696
|
+
cta:"String",
|
|
1697
|
+
_id:"String",
|
|
1698
|
+
createdAt:"Float",
|
|
1699
|
+
updatedAt:"Float"
|
|
1700
|
+
},
|
|
1701
|
+
Shapesubheading:{
|
|
1702
|
+
text:"String",
|
|
1703
|
+
_id:"String",
|
|
1704
|
+
createdAt:"Float",
|
|
1705
|
+
updatedAt:"Float"
|
|
562
1706
|
},
|
|
563
|
-
|
|
564
|
-
|
|
1707
|
+
ShapesupportSectionHeader_wrapper:{
|
|
1708
|
+
title:"String",
|
|
1709
|
+
description:"String"
|
|
1710
|
+
},
|
|
1711
|
+
ShapesupportSectionFeatures_gridFeature_item:{
|
|
1712
|
+
image:"ImageField",
|
|
1713
|
+
title:"String",
|
|
1714
|
+
text:"String",
|
|
1715
|
+
cta:"String"
|
|
1716
|
+
},
|
|
1717
|
+
ShapesupportSectionFeatures_grid:{
|
|
1718
|
+
feature_item:"ShapesupportSectionFeatures_gridFeature_item"
|
|
1719
|
+
},
|
|
1720
|
+
ShapesupportSection:{
|
|
1721
|
+
header_wrapper:"ShapesupportSectionHeader_wrapper",
|
|
1722
|
+
features_grid:"ShapesupportSectionFeatures_grid"
|
|
1723
|
+
},
|
|
1724
|
+
Shapesupport:{
|
|
1725
|
+
section:"ShapesupportSection",
|
|
1726
|
+
_id:"String",
|
|
1727
|
+
createdAt:"Float",
|
|
1728
|
+
updatedAt:"Float"
|
|
1729
|
+
},
|
|
1730
|
+
Shapetest_shape_agent:{
|
|
1731
|
+
title:"String",
|
|
1732
|
+
_id:"String",
|
|
1733
|
+
createdAt:"Float",
|
|
1734
|
+
updatedAt:"Float"
|
|
1735
|
+
},
|
|
1736
|
+
ShapetestimonialItems:{
|
|
1737
|
+
quote:"String",
|
|
1738
|
+
author_name:"String",
|
|
1739
|
+
author_role:"String",
|
|
1740
|
+
author_avatar:"ImageField",
|
|
1741
|
+
company:"String"
|
|
1742
|
+
},
|
|
1743
|
+
Shapetestimonial:{
|
|
1744
|
+
heading:"Shapeheading",
|
|
1745
|
+
items:"ShapetestimonialItems",
|
|
1746
|
+
_id:"String",
|
|
1747
|
+
createdAt:"Float",
|
|
1748
|
+
updatedAt:"Float"
|
|
1749
|
+
},
|
|
1750
|
+
Shapetitle_descTitledesc:{
|
|
1751
|
+
title:"String",
|
|
1752
|
+
description:"String"
|
|
1753
|
+
},
|
|
1754
|
+
Shapetitle_desc:{
|
|
1755
|
+
titledesc:"Shapetitle_descTitledesc",
|
|
1756
|
+
_id:"String",
|
|
1757
|
+
createdAt:"Float",
|
|
1758
|
+
updatedAt:"Float"
|
|
1759
|
+
},
|
|
1760
|
+
ShapeusageMain:{
|
|
1761
|
+
title:"String",
|
|
1762
|
+
subtitle:"String",
|
|
1763
|
+
period:"String",
|
|
1764
|
+
tokens_consumed:"Float"
|
|
565
1765
|
},
|
|
566
|
-
|
|
567
|
-
|
|
1766
|
+
Shapeusage:{
|
|
1767
|
+
main:"ShapeusageMain",
|
|
568
1768
|
_id:"String",
|
|
569
1769
|
createdAt:"Float",
|
|
570
1770
|
updatedAt:"Float"
|