@husar.ai/cli 0.4.1 → 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/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 +635 -289
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +3079 -1601
- package/dist/zeus/index.js +150 -2
- 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 +641 -289
- package/src/zeus/index.ts +2996 -1465
package/dist/zeus/const.js
CHANGED
|
@@ -44,6 +44,45 @@ export const AllTypesProps = {
|
|
|
44
44
|
rootParams: "RootParamsInput"
|
|
45
45
|
},
|
|
46
46
|
variantsdocsBySlug: {},
|
|
47
|
+
listPaginatednewsletter_subscription_form: {
|
|
48
|
+
page: "PageInput",
|
|
49
|
+
rootParams: "RootParamsInput",
|
|
50
|
+
sort: "newsletter_subscription_formSortInput",
|
|
51
|
+
filter: "newsletter_subscription_formFilterInput"
|
|
52
|
+
},
|
|
53
|
+
onenewsletter_subscription_formBySlug: {
|
|
54
|
+
rootParams: "RootParamsInput"
|
|
55
|
+
},
|
|
56
|
+
oneAsScalarnewsletter_subscription_formBySlug: {
|
|
57
|
+
rootParams: "RootParamsInput"
|
|
58
|
+
},
|
|
59
|
+
variantsnewsletter_subscription_formBySlug: {},
|
|
60
|
+
listPaginatedtest_contact_form: {
|
|
61
|
+
page: "PageInput",
|
|
62
|
+
rootParams: "RootParamsInput",
|
|
63
|
+
sort: "test_contact_formSortInput",
|
|
64
|
+
filter: "test_contact_formFilterInput"
|
|
65
|
+
},
|
|
66
|
+
onetest_contact_formBySlug: {
|
|
67
|
+
rootParams: "RootParamsInput"
|
|
68
|
+
},
|
|
69
|
+
oneAsScalartest_contact_formBySlug: {
|
|
70
|
+
rootParams: "RootParamsInput"
|
|
71
|
+
},
|
|
72
|
+
variantstest_contact_formBySlug: {},
|
|
73
|
+
listPaginatedtest_form: {
|
|
74
|
+
page: "PageInput",
|
|
75
|
+
rootParams: "RootParamsInput",
|
|
76
|
+
sort: "test_formSortInput",
|
|
77
|
+
filter: "test_formFilterInput"
|
|
78
|
+
},
|
|
79
|
+
onetest_formBySlug: {
|
|
80
|
+
rootParams: "RootParamsInput"
|
|
81
|
+
},
|
|
82
|
+
oneAsScalartest_formBySlug: {
|
|
83
|
+
rootParams: "RootParamsInput"
|
|
84
|
+
},
|
|
85
|
+
variantstest_formBySlug: {},
|
|
47
86
|
oneViewaccount: {
|
|
48
87
|
rootParams: "RootParamsInput"
|
|
49
88
|
},
|
|
@@ -56,6 +95,12 @@ export const AllTypesProps = {
|
|
|
56
95
|
oneAsScalarViewfeatures: {
|
|
57
96
|
rootParams: "RootParamsInput"
|
|
58
97
|
},
|
|
98
|
+
oneViewhome: {
|
|
99
|
+
rootParams: "RootParamsInput"
|
|
100
|
+
},
|
|
101
|
+
oneAsScalarViewhome: {
|
|
102
|
+
rootParams: "RootParamsInput"
|
|
103
|
+
},
|
|
59
104
|
oneViewhomepage: {
|
|
60
105
|
rootParams: "RootParamsInput"
|
|
61
106
|
},
|
|
@@ -97,9 +142,33 @@ export const AllTypesProps = {
|
|
|
97
142
|
createdAt: "Sort",
|
|
98
143
|
updatedAt: "Sort"
|
|
99
144
|
},
|
|
145
|
+
newsletter_subscription_formSortInput: {
|
|
146
|
+
slug: "Sort",
|
|
147
|
+
createdAt: "Sort",
|
|
148
|
+
updatedAt: "Sort"
|
|
149
|
+
},
|
|
150
|
+
test_contact_formSortInput: {
|
|
151
|
+
slug: "Sort",
|
|
152
|
+
createdAt: "Sort",
|
|
153
|
+
updatedAt: "Sort"
|
|
154
|
+
},
|
|
155
|
+
test_formSortInput: {
|
|
156
|
+
slug: "Sort",
|
|
157
|
+
createdAt: "Sort",
|
|
158
|
+
updatedAt: "Sort"
|
|
159
|
+
},
|
|
100
160
|
docsFilterInput: {
|
|
101
161
|
slug: "FilterInputString"
|
|
102
162
|
},
|
|
163
|
+
newsletter_subscription_formFilterInput: {
|
|
164
|
+
slug: "FilterInputString"
|
|
165
|
+
},
|
|
166
|
+
test_contact_formFilterInput: {
|
|
167
|
+
slug: "FilterInputString"
|
|
168
|
+
},
|
|
169
|
+
test_formFilterInput: {
|
|
170
|
+
slug: "FilterInputString"
|
|
171
|
+
},
|
|
103
172
|
ID: `scalar.ID`
|
|
104
173
|
};
|
|
105
174
|
export const ReturnTypes = {
|
|
@@ -249,6 +318,7 @@ export const ReturnTypes = {
|
|
|
249
318
|
shouldRender: "Boolean"
|
|
250
319
|
},
|
|
251
320
|
ShapeLibrary: {
|
|
321
|
+
id: "String",
|
|
252
322
|
name: "String",
|
|
253
323
|
shapes: "Shape",
|
|
254
324
|
description: "String"
|
|
@@ -271,162 +341,219 @@ export const ReturnTypes = {
|
|
|
271
341
|
fieldSetdocs: "String",
|
|
272
342
|
modeldocs: "ModelNavigationCompiled",
|
|
273
343
|
previewFieldsdocs: "ModelNavigationCompiled",
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
modelShapedocs_content: "ModelNavigationCompiled",
|
|
300
|
-
previewFieldsShapedocs_content: "ModelNavigationCompiled",
|
|
301
|
-
oneShapedocs_content: "Shapedocs_content",
|
|
302
|
-
fieldSetShapedocs_nav: "String",
|
|
303
|
-
modelShapedocs_nav: "ModelNavigationCompiled",
|
|
304
|
-
previewFieldsShapedocs_nav: "ModelNavigationCompiled",
|
|
305
|
-
oneShapedocs_nav: "Shapedocs_nav",
|
|
306
|
-
fieldSetShapefeature_grid: "String",
|
|
307
|
-
modelShapefeature_grid: "ModelNavigationCompiled",
|
|
308
|
-
previewFieldsShapefeature_grid: "ModelNavigationCompiled",
|
|
309
|
-
oneShapefeature_grid: "Shapefeature_grid",
|
|
310
|
-
fieldSetShapefeaturepresentation: "String",
|
|
311
|
-
modelShapefeaturepresentation: "ModelNavigationCompiled",
|
|
312
|
-
previewFieldsShapefeaturepresentation: "ModelNavigationCompiled",
|
|
313
|
-
oneShapefeaturepresentation: "Shapefeaturepresentation",
|
|
314
|
-
fieldSetShapefeaturesv2: "String",
|
|
315
|
-
modelShapefeaturesv2: "ModelNavigationCompiled",
|
|
316
|
-
previewFieldsShapefeaturesv2: "ModelNavigationCompiled",
|
|
317
|
-
oneShapefeaturesv2: "Shapefeaturesv2",
|
|
318
|
-
fieldSetShapefoot: "String",
|
|
319
|
-
modelShapefoot: "ModelNavigationCompiled",
|
|
320
|
-
previewFieldsShapefoot: "ModelNavigationCompiled",
|
|
321
|
-
oneShapefoot: "Shapefoot",
|
|
322
|
-
fieldSetShapefooter: "String",
|
|
323
|
-
modelShapefooter: "ModelNavigationCompiled",
|
|
324
|
-
previewFieldsShapefooter: "ModelNavigationCompiled",
|
|
325
|
-
oneShapefooter: "Shapefooter",
|
|
326
|
-
fieldSetShapeheading: "String",
|
|
327
|
-
modelShapeheading: "ModelNavigationCompiled",
|
|
328
|
-
previewFieldsShapeheading: "ModelNavigationCompiled",
|
|
329
|
-
oneShapeheading: "Shapeheading",
|
|
344
|
+
listPaginatednewsletter_subscription_form: "newsletter_subscription_form__Connection",
|
|
345
|
+
onenewsletter_subscription_formBySlug: "newsletter_subscription_form",
|
|
346
|
+
oneAsScalarnewsletter_subscription_formBySlug: "ModelAsScalar",
|
|
347
|
+
variantsnewsletter_subscription_formBySlug: "newsletter_subscription_form",
|
|
348
|
+
fieldSetnewsletter_subscription_form: "String",
|
|
349
|
+
modelnewsletter_subscription_form: "ModelNavigationCompiled",
|
|
350
|
+
previewFieldsnewsletter_subscription_form: "ModelNavigationCompiled",
|
|
351
|
+
listPaginatedtest_contact_form: "test_contact_form__Connection",
|
|
352
|
+
onetest_contact_formBySlug: "test_contact_form",
|
|
353
|
+
oneAsScalartest_contact_formBySlug: "ModelAsScalar",
|
|
354
|
+
variantstest_contact_formBySlug: "test_contact_form",
|
|
355
|
+
fieldSettest_contact_form: "String",
|
|
356
|
+
modeltest_contact_form: "ModelNavigationCompiled",
|
|
357
|
+
previewFieldstest_contact_form: "ModelNavigationCompiled",
|
|
358
|
+
listPaginatedtest_form: "test_form__Connection",
|
|
359
|
+
onetest_formBySlug: "test_form",
|
|
360
|
+
oneAsScalartest_formBySlug: "ModelAsScalar",
|
|
361
|
+
variantstest_formBySlug: "test_form",
|
|
362
|
+
fieldSettest_form: "String",
|
|
363
|
+
modeltest_form: "ModelNavigationCompiled",
|
|
364
|
+
previewFieldstest_form: "ModelNavigationCompiled",
|
|
365
|
+
fieldSetShapenav: "String",
|
|
366
|
+
modelShapenav: "ModelNavigationCompiled",
|
|
367
|
+
previewFieldsShapenav: "ModelNavigationCompiled",
|
|
368
|
+
oneShapenav: "Shapenav",
|
|
330
369
|
fieldSetShapehero: "String",
|
|
331
370
|
modelShapehero: "ModelNavigationCompiled",
|
|
332
371
|
previewFieldsShapehero: "ModelNavigationCompiled",
|
|
333
372
|
oneShapehero: "Shapehero",
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
373
|
+
fieldSetShapedocs_nav: "String",
|
|
374
|
+
modelShapedocs_nav: "ModelNavigationCompiled",
|
|
375
|
+
previewFieldsShapedocs_nav: "ModelNavigationCompiled",
|
|
376
|
+
oneShapedocs_nav: "Shapedocs_nav",
|
|
377
|
+
fieldSetShapedocs_content: "String",
|
|
378
|
+
modelShapedocs_content: "ModelNavigationCompiled",
|
|
379
|
+
previewFieldsShapedocs_content: "ModelNavigationCompiled",
|
|
380
|
+
oneShapedocs_content: "Shapedocs_content",
|
|
338
381
|
fieldSetShapeherox: "String",
|
|
339
382
|
modelShapeherox: "ModelNavigationCompiled",
|
|
340
383
|
previewFieldsShapeherox: "ModelNavigationCompiled",
|
|
341
384
|
oneShapeherox: "Shapeherox",
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
fieldSetShapelanding_features: "String",
|
|
347
|
-
modelShapelanding_features: "ModelNavigationCompiled",
|
|
348
|
-
previewFieldsShapelanding_features: "ModelNavigationCompiled",
|
|
349
|
-
oneShapelanding_features: "Shapelanding_features",
|
|
350
|
-
fieldSetShapelanding_footer: "String",
|
|
351
|
-
modelShapelanding_footer: "ModelNavigationCompiled",
|
|
352
|
-
previewFieldsShapelanding_footer: "ModelNavigationCompiled",
|
|
353
|
-
oneShapelanding_footer: "Shapelanding_footer",
|
|
354
|
-
fieldSetShapelanding_hero: "String",
|
|
355
|
-
modelShapelanding_hero: "ModelNavigationCompiled",
|
|
356
|
-
previewFieldsShapelanding_hero: "ModelNavigationCompiled",
|
|
357
|
-
oneShapelanding_hero: "Shapelanding_hero",
|
|
358
|
-
fieldSetShapelanding_navbar: "String",
|
|
359
|
-
modelShapelanding_navbar: "ModelNavigationCompiled",
|
|
360
|
-
previewFieldsShapelanding_navbar: "ModelNavigationCompiled",
|
|
361
|
-
oneShapelanding_navbar: "Shapelanding_navbar",
|
|
362
|
-
fieldSetShapelanding_testimonials: "String",
|
|
363
|
-
modelShapelanding_testimonials: "ModelNavigationCompiled",
|
|
364
|
-
previewFieldsShapelanding_testimonials: "ModelNavigationCompiled",
|
|
365
|
-
oneShapelanding_testimonials: "Shapelanding_testimonials",
|
|
366
|
-
fieldSetShapelink: "String",
|
|
367
|
-
modelShapelink: "ModelNavigationCompiled",
|
|
368
|
-
previewFieldsShapelink: "ModelNavigationCompiled",
|
|
369
|
-
oneShapelink: "Shapelink",
|
|
370
|
-
fieldSetShapelista_projektow: "String",
|
|
371
|
-
modelShapelista_projektow: "ModelNavigationCompiled",
|
|
372
|
-
previewFieldsShapelista_projektow: "ModelNavigationCompiled",
|
|
373
|
-
oneShapelista_projektow: "Shapelista_projektow",
|
|
374
|
-
fieldSetShapenav: "String",
|
|
375
|
-
modelShapenav: "ModelNavigationCompiled",
|
|
376
|
-
previewFieldsShapenav: "ModelNavigationCompiled",
|
|
377
|
-
oneShapenav: "Shapenav",
|
|
378
|
-
fieldSetShapenavbar: "String",
|
|
379
|
-
modelShapenavbar: "ModelNavigationCompiled",
|
|
380
|
-
previewFieldsShapenavbar: "ModelNavigationCompiled",
|
|
381
|
-
oneShapenavbar: "Shapenavbar",
|
|
385
|
+
fieldSetShapefoot: "String",
|
|
386
|
+
modelShapefoot: "ModelNavigationCompiled",
|
|
387
|
+
previewFieldsShapefoot: "ModelNavigationCompiled",
|
|
388
|
+
oneShapefoot: "Shapefoot",
|
|
382
389
|
fieldSetShapenewshape: "String",
|
|
383
390
|
modelShapenewshape: "ModelNavigationCompiled",
|
|
384
391
|
previewFieldsShapenewshape: "ModelNavigationCompiled",
|
|
385
392
|
oneShapenewshape: "Shapenewshape",
|
|
386
|
-
fieldSetShapepricing: "String",
|
|
387
|
-
modelShapepricing: "ModelNavigationCompiled",
|
|
388
|
-
previewFieldsShapepricing: "ModelNavigationCompiled",
|
|
389
|
-
oneShapepricing: "Shapepricing",
|
|
390
393
|
fieldSetShapepricingv1: "String",
|
|
391
394
|
modelShapepricingv1: "ModelNavigationCompiled",
|
|
392
395
|
previewFieldsShapepricingv1: "ModelNavigationCompiled",
|
|
393
396
|
oneShapepricingv1: "Shapepricingv1",
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
397
|
+
fieldSetShapelista_projektow: "String",
|
|
398
|
+
modelShapelista_projektow: "ModelNavigationCompiled",
|
|
399
|
+
previewFieldsShapelista_projektow: "ModelNavigationCompiled",
|
|
400
|
+
oneShapelista_projektow: "Shapelista_projektow",
|
|
401
|
+
fieldSetShapeusage: "String",
|
|
402
|
+
modelShapeusage: "ModelNavigationCompiled",
|
|
403
|
+
previewFieldsShapeusage: "ModelNavigationCompiled",
|
|
404
|
+
oneShapeusage: "Shapeusage",
|
|
398
405
|
fieldSetShapeprofile_info: "String",
|
|
399
406
|
modelShapeprofile_info: "ModelNavigationCompiled",
|
|
400
407
|
previewFieldsShapeprofile_info: "ModelNavigationCompiled",
|
|
401
408
|
oneShapeprofile_info: "Shapeprofile_info",
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
409
|
+
fieldSetShapefeaturepresentation: "String",
|
|
410
|
+
modelShapefeaturepresentation: "ModelNavigationCompiled",
|
|
411
|
+
previewFieldsShapefeaturepresentation: "ModelNavigationCompiled",
|
|
412
|
+
oneShapefeaturepresentation: "Shapefeaturepresentation",
|
|
413
|
+
fieldSetShapesupport: "String",
|
|
414
|
+
modelShapesupport: "ModelNavigationCompiled",
|
|
415
|
+
previewFieldsShapesupport: "ModelNavigationCompiled",
|
|
416
|
+
oneShapesupport: "Shapesupport",
|
|
417
|
+
fieldSetShapecloud_sidebar: "String",
|
|
418
|
+
modelShapecloud_sidebar: "ModelNavigationCompiled",
|
|
419
|
+
previewFieldsShapecloud_sidebar: "ModelNavigationCompiled",
|
|
420
|
+
oneShapecloud_sidebar: "Shapecloud_sidebar",
|
|
421
|
+
fieldSetShapectabutton: "String",
|
|
422
|
+
modelShapectabutton: "ModelNavigationCompiled",
|
|
423
|
+
previewFieldsShapectabutton: "ModelNavigationCompiled",
|
|
424
|
+
oneShapectabutton: "Shapectabutton",
|
|
406
425
|
fieldSetShapesecondary_cta: "String",
|
|
407
426
|
modelShapesecondary_cta: "ModelNavigationCompiled",
|
|
408
427
|
previewFieldsShapesecondary_cta: "ModelNavigationCompiled",
|
|
409
428
|
oneShapesecondary_cta: "Shapesecondary_cta",
|
|
429
|
+
fieldSetShapetitle_desc: "String",
|
|
430
|
+
modelShapetitle_desc: "ModelNavigationCompiled",
|
|
431
|
+
previewFieldsShapetitle_desc: "ModelNavigationCompiled",
|
|
432
|
+
oneShapetitle_desc: "Shapetitle_desc",
|
|
433
|
+
fieldSetShapecta_boom: "String",
|
|
434
|
+
modelShapecta_boom: "ModelNavigationCompiled",
|
|
435
|
+
previewFieldsShapecta_boom: "ModelNavigationCompiled",
|
|
436
|
+
oneShapecta_boom: "Shapecta_boom",
|
|
437
|
+
fieldSetShapepricingv2: "String",
|
|
438
|
+
modelShapepricingv2: "ModelNavigationCompiled",
|
|
439
|
+
previewFieldsShapepricingv2: "ModelNavigationCompiled",
|
|
440
|
+
oneShapepricingv2: "Shapepricingv2",
|
|
441
|
+
fieldSetShapeheading: "String",
|
|
442
|
+
modelShapeheading: "ModelNavigationCompiled",
|
|
443
|
+
previewFieldsShapeheading: "ModelNavigationCompiled",
|
|
444
|
+
oneShapeheading: "Shapeheading",
|
|
410
445
|
fieldSetShapesubheading: "String",
|
|
411
446
|
modelShapesubheading: "ModelNavigationCompiled",
|
|
412
447
|
previewFieldsShapesubheading: "ModelNavigationCompiled",
|
|
413
448
|
oneShapesubheading: "Shapesubheading",
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
449
|
+
fieldSetShapefeaturesv2: "String",
|
|
450
|
+
modelShapefeaturesv2: "ModelNavigationCompiled",
|
|
451
|
+
previewFieldsShapefeaturesv2: "ModelNavigationCompiled",
|
|
452
|
+
oneShapefeaturesv2: "Shapefeaturesv2",
|
|
453
|
+
fieldSetShapebutton: "String",
|
|
454
|
+
modelShapebutton: "ModelNavigationCompiled",
|
|
455
|
+
previewFieldsShapebutton: "ModelNavigationCompiled",
|
|
456
|
+
oneShapebutton: "Shapebutton",
|
|
457
|
+
fieldSetShapelink: "String",
|
|
458
|
+
modelShapelink: "ModelNavigationCompiled",
|
|
459
|
+
previewFieldsShapelink: "ModelNavigationCompiled",
|
|
460
|
+
oneShapelink: "Shapelink",
|
|
461
|
+
fieldSetShapeimage_atom: "String",
|
|
462
|
+
modelShapeimage_atom: "ModelNavigationCompiled",
|
|
463
|
+
previewFieldsShapeimage_atom: "ModelNavigationCompiled",
|
|
464
|
+
oneShapeimage_atom: "Shapeimage_atom",
|
|
465
|
+
fieldSetShaperich_text: "String",
|
|
466
|
+
modelShaperich_text: "ModelNavigationCompiled",
|
|
467
|
+
previewFieldsShaperich_text: "ModelNavigationCompiled",
|
|
468
|
+
oneShaperich_text: "Shaperich_text",
|
|
469
|
+
fieldSetShapenavbar: "String",
|
|
470
|
+
modelShapenavbar: "ModelNavigationCompiled",
|
|
471
|
+
previewFieldsShapenavbar: "ModelNavigationCompiled",
|
|
472
|
+
oneShapenavbar: "Shapenavbar",
|
|
473
|
+
fieldSetShapehero_section: "String",
|
|
474
|
+
modelShapehero_section: "ModelNavigationCompiled",
|
|
475
|
+
previewFieldsShapehero_section: "ModelNavigationCompiled",
|
|
476
|
+
oneShapehero_section: "Shapehero_section",
|
|
477
|
+
fieldSetShapefeature_grid: "String",
|
|
478
|
+
modelShapefeature_grid: "ModelNavigationCompiled",
|
|
479
|
+
previewFieldsShapefeature_grid: "ModelNavigationCompiled",
|
|
480
|
+
oneShapefeature_grid: "Shapefeature_grid",
|
|
418
481
|
fieldSetShapetestimonial: "String",
|
|
419
482
|
modelShapetestimonial: "ModelNavigationCompiled",
|
|
420
483
|
previewFieldsShapetestimonial: "ModelNavigationCompiled",
|
|
421
484
|
oneShapetestimonial: "Shapetestimonial",
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
485
|
+
fieldSetShapepricing: "String",
|
|
486
|
+
modelShapepricing: "ModelNavigationCompiled",
|
|
487
|
+
previewFieldsShapepricing: "ModelNavigationCompiled",
|
|
488
|
+
oneShapepricing: "Shapepricing",
|
|
489
|
+
fieldSetShapefooter: "String",
|
|
490
|
+
modelShapefooter: "ModelNavigationCompiled",
|
|
491
|
+
previewFieldsShapefooter: "ModelNavigationCompiled",
|
|
492
|
+
oneShapefooter: "Shapefooter",
|
|
493
|
+
fieldSetShapelanding_navbar: "String",
|
|
494
|
+
modelShapelanding_navbar: "ModelNavigationCompiled",
|
|
495
|
+
previewFieldsShapelanding_navbar: "ModelNavigationCompiled",
|
|
496
|
+
oneShapelanding_navbar: "Shapelanding_navbar",
|
|
497
|
+
fieldSetShapelanding_hero: "String",
|
|
498
|
+
modelShapelanding_hero: "ModelNavigationCompiled",
|
|
499
|
+
previewFieldsShapelanding_hero: "ModelNavigationCompiled",
|
|
500
|
+
oneShapelanding_hero: "Shapelanding_hero",
|
|
501
|
+
fieldSetShapelanding_features: "String",
|
|
502
|
+
modelShapelanding_features: "ModelNavigationCompiled",
|
|
503
|
+
previewFieldsShapelanding_features: "ModelNavigationCompiled",
|
|
504
|
+
oneShapelanding_features: "Shapelanding_features",
|
|
505
|
+
fieldSetShapelanding_testimonials: "String",
|
|
506
|
+
modelShapelanding_testimonials: "ModelNavigationCompiled",
|
|
507
|
+
previewFieldsShapelanding_testimonials: "ModelNavigationCompiled",
|
|
508
|
+
oneShapelanding_testimonials: "Shapelanding_testimonials",
|
|
509
|
+
fieldSetShapelanding_footer: "String",
|
|
510
|
+
modelShapelanding_footer: "ModelNavigationCompiled",
|
|
511
|
+
previewFieldsShapelanding_footer: "ModelNavigationCompiled",
|
|
512
|
+
oneShapelanding_footer: "Shapelanding_footer",
|
|
513
|
+
fieldSetShapes26_hero: "String",
|
|
514
|
+
modelShapes26_hero: "ModelNavigationCompiled",
|
|
515
|
+
previewFieldsShapes26_hero: "ModelNavigationCompiled",
|
|
516
|
+
oneShapes26_hero: "Shapes26_hero",
|
|
517
|
+
fieldSetShapes26_bento_item: "String",
|
|
518
|
+
modelShapes26_bento_item: "ModelNavigationCompiled",
|
|
519
|
+
previewFieldsShapes26_bento_item: "ModelNavigationCompiled",
|
|
520
|
+
oneShapes26_bento_item: "Shapes26_bento_item",
|
|
521
|
+
fieldSetShapes26_bento_grid: "String",
|
|
522
|
+
modelShapes26_bento_grid: "ModelNavigationCompiled",
|
|
523
|
+
previewFieldsShapes26_bento_grid: "ModelNavigationCompiled",
|
|
524
|
+
oneShapes26_bento_grid: "Shapes26_bento_grid",
|
|
525
|
+
fieldSetShapes26_pricing_card: "String",
|
|
526
|
+
modelShapes26_pricing_card: "ModelNavigationCompiled",
|
|
527
|
+
previewFieldsShapes26_pricing_card: "ModelNavigationCompiled",
|
|
528
|
+
oneShapes26_pricing_card: "Shapes26_pricing_card",
|
|
529
|
+
fieldSetShapes26_footer: "String",
|
|
530
|
+
modelShapes26_footer: "ModelNavigationCompiled",
|
|
531
|
+
previewFieldsShapes26_footer: "ModelNavigationCompiled",
|
|
532
|
+
oneShapes26_footer: "Shapes26_footer",
|
|
533
|
+
fieldSetShapes26_nav: "String",
|
|
534
|
+
modelShapes26_nav: "ModelNavigationCompiled",
|
|
535
|
+
previewFieldsShapes26_nav: "ModelNavigationCompiled",
|
|
536
|
+
oneShapes26_nav: "Shapes26_nav",
|
|
537
|
+
fieldSetShapes26_pricing: "String",
|
|
538
|
+
modelShapes26_pricing: "ModelNavigationCompiled",
|
|
539
|
+
previewFieldsShapes26_pricing: "ModelNavigationCompiled",
|
|
540
|
+
oneShapes26_pricing: "Shapes26_pricing",
|
|
541
|
+
fieldSetShapes26_use_cases: "String",
|
|
542
|
+
modelShapes26_use_cases: "ModelNavigationCompiled",
|
|
543
|
+
previewFieldsShapes26_use_cases: "ModelNavigationCompiled",
|
|
544
|
+
oneShapes26_use_cases: "Shapes26_use_cases",
|
|
545
|
+
fieldSetShapes26_nav_link: "String",
|
|
546
|
+
modelShapes26_nav_link: "ModelNavigationCompiled",
|
|
547
|
+
previewFieldsShapes26_nav_link: "ModelNavigationCompiled",
|
|
548
|
+
oneShapes26_nav_link: "Shapes26_nav_link",
|
|
549
|
+
fieldSetShapetest_shape_agent: "String",
|
|
550
|
+
modelShapetest_shape_agent: "ModelNavigationCompiled",
|
|
551
|
+
previewFieldsShapetest_shape_agent: "ModelNavigationCompiled",
|
|
552
|
+
oneShapetest_shape_agent: "Shapetest_shape_agent",
|
|
553
|
+
fieldSetShapebleblebel: "String",
|
|
554
|
+
modelShapebleblebel: "ModelNavigationCompiled",
|
|
555
|
+
previewFieldsShapebleblebel: "ModelNavigationCompiled",
|
|
556
|
+
oneShapebleblebel: "Shapebleblebel",
|
|
430
557
|
variantsViewaccount: "Viewaccount",
|
|
431
558
|
fieldSetViewaccount: "String",
|
|
432
559
|
modelViewaccount: "ModelNavigationCompiled",
|
|
@@ -439,6 +566,12 @@ export const ReturnTypes = {
|
|
|
439
566
|
previewFieldsViewfeatures: "ModelNavigationCompiled",
|
|
440
567
|
oneViewfeatures: "Viewfeatures",
|
|
441
568
|
oneAsScalarViewfeatures: "ViewAsScalar",
|
|
569
|
+
variantsViewhome: "Viewhome",
|
|
570
|
+
fieldSetViewhome: "String",
|
|
571
|
+
modelViewhome: "ModelNavigationCompiled",
|
|
572
|
+
previewFieldsViewhome: "ModelNavigationCompiled",
|
|
573
|
+
oneViewhome: "Viewhome",
|
|
574
|
+
oneAsScalarViewhome: "ViewAsScalar",
|
|
442
575
|
variantsViewhomepage: "Viewhomepage",
|
|
443
576
|
fieldSetViewhomepage: "String",
|
|
444
577
|
modelViewhomepage: "ModelNavigationCompiled",
|
|
@@ -472,7 +605,8 @@ export const ReturnTypes = {
|
|
|
472
605
|
},
|
|
473
606
|
RootParamsType: {
|
|
474
607
|
_version: "String",
|
|
475
|
-
locale: "String"
|
|
608
|
+
locale: "String",
|
|
609
|
+
test_env: "String"
|
|
476
610
|
},
|
|
477
611
|
docs__Connection: {
|
|
478
612
|
items: "docs",
|
|
@@ -488,6 +622,67 @@ export const ReturnTypes = {
|
|
|
488
622
|
content: "String",
|
|
489
623
|
video: "VideoField",
|
|
490
624
|
locale: "String",
|
|
625
|
+
test_env: "String",
|
|
626
|
+
slug: "String",
|
|
627
|
+
_id: "String",
|
|
628
|
+
createdAt: "Float",
|
|
629
|
+
updatedAt: "Float",
|
|
630
|
+
draft_version: "Boolean",
|
|
631
|
+
json_ld: "String"
|
|
632
|
+
},
|
|
633
|
+
newsletter_subscription_form__Connection: {
|
|
634
|
+
items: "newsletter_subscription_form",
|
|
635
|
+
pageInfo: "PageInfo"
|
|
636
|
+
},
|
|
637
|
+
newsletter_subscription_form: {
|
|
638
|
+
_version: "VersionField",
|
|
639
|
+
email: "InputField",
|
|
640
|
+
first_name: "InputField",
|
|
641
|
+
frequency_preference: "String",
|
|
642
|
+
topics_of_interest: "CheckboxField",
|
|
643
|
+
marketing_consent: "CheckboxField",
|
|
644
|
+
privacy_policy_agreement: "CheckboxField",
|
|
645
|
+
subscribe_button: "ButtonField",
|
|
646
|
+
locale: "String",
|
|
647
|
+
test_env: "String",
|
|
648
|
+
slug: "String",
|
|
649
|
+
_id: "String",
|
|
650
|
+
createdAt: "Float",
|
|
651
|
+
updatedAt: "Float",
|
|
652
|
+
draft_version: "Boolean",
|
|
653
|
+
json_ld: "String"
|
|
654
|
+
},
|
|
655
|
+
test_contact_form__Connection: {
|
|
656
|
+
items: "test_contact_form",
|
|
657
|
+
pageInfo: "PageInfo"
|
|
658
|
+
},
|
|
659
|
+
test_contact_form: {
|
|
660
|
+
_version: "VersionField",
|
|
661
|
+
email: "InputField",
|
|
662
|
+
message: "String",
|
|
663
|
+
agree: "CheckboxField",
|
|
664
|
+
submit: "ButtonField",
|
|
665
|
+
locale: "String",
|
|
666
|
+
test_env: "String",
|
|
667
|
+
slug: "String",
|
|
668
|
+
_id: "String",
|
|
669
|
+
createdAt: "Float",
|
|
670
|
+
updatedAt: "Float",
|
|
671
|
+
draft_version: "Boolean",
|
|
672
|
+
json_ld: "String"
|
|
673
|
+
},
|
|
674
|
+
test_form__Connection: {
|
|
675
|
+
items: "test_form",
|
|
676
|
+
pageInfo: "PageInfo"
|
|
677
|
+
},
|
|
678
|
+
test_form: {
|
|
679
|
+
_version: "VersionField",
|
|
680
|
+
name: "InputField",
|
|
681
|
+
message: "InputField",
|
|
682
|
+
agreement: "CheckboxField",
|
|
683
|
+
submit_button: "ButtonField",
|
|
684
|
+
locale: "String",
|
|
685
|
+
test_env: "String",
|
|
491
686
|
slug: "String",
|
|
492
687
|
_id: "String",
|
|
493
688
|
createdAt: "Float",
|
|
@@ -503,6 +698,7 @@ export const ReturnTypes = {
|
|
|
503
698
|
_version: "VersionField",
|
|
504
699
|
main: "ViewaccountMain",
|
|
505
700
|
locale: "String",
|
|
701
|
+
test_env: "String",
|
|
506
702
|
slug: "String",
|
|
507
703
|
_id: "String",
|
|
508
704
|
createdAt: "Float",
|
|
@@ -518,6 +714,24 @@ export const ReturnTypes = {
|
|
|
518
714
|
_version: "VersionField",
|
|
519
715
|
main: "ViewfeaturesMain",
|
|
520
716
|
locale: "String",
|
|
717
|
+
test_env: "String",
|
|
718
|
+
slug: "String",
|
|
719
|
+
_id: "String",
|
|
720
|
+
createdAt: "Float",
|
|
721
|
+
updatedAt: "Float",
|
|
722
|
+
draft_version: "Boolean",
|
|
723
|
+
json_ld: "String"
|
|
724
|
+
},
|
|
725
|
+
Viewhome: {
|
|
726
|
+
_version: "VersionField",
|
|
727
|
+
navigation: "Shapes26_nav",
|
|
728
|
+
hero: "Shapes26_hero",
|
|
729
|
+
bento: "Shapes26_bento_grid",
|
|
730
|
+
use_cases: "Shapes26_use_cases",
|
|
731
|
+
pricing: "Shapes26_pricing",
|
|
732
|
+
footer: "Shapes26_footer",
|
|
733
|
+
locale: "String",
|
|
734
|
+
test_env: "String",
|
|
521
735
|
slug: "String",
|
|
522
736
|
_id: "String",
|
|
523
737
|
createdAt: "Float",
|
|
@@ -543,6 +757,7 @@ export const ReturnTypes = {
|
|
|
543
757
|
pricing: "Shapepricingv1",
|
|
544
758
|
footer: "Shapefoot",
|
|
545
759
|
locale: "String",
|
|
760
|
+
test_env: "String",
|
|
546
761
|
slug: "String",
|
|
547
762
|
_id: "String",
|
|
548
763
|
createdAt: "Float",
|
|
@@ -560,6 +775,7 @@ export const ReturnTypes = {
|
|
|
560
775
|
title: "String",
|
|
561
776
|
feature_control: "ViewhowitworksFeature_control",
|
|
562
777
|
locale: "String",
|
|
778
|
+
test_env: "String",
|
|
563
779
|
slug: "String",
|
|
564
780
|
_id: "String",
|
|
565
781
|
createdAt: "Float",
|
|
@@ -576,6 +792,7 @@ export const ReturnTypes = {
|
|
|
576
792
|
pricing: "Shapepricing",
|
|
577
793
|
footer: "Shapefooter",
|
|
578
794
|
locale: "String",
|
|
795
|
+
test_env: "String",
|
|
579
796
|
slug: "String",
|
|
580
797
|
_id: "String",
|
|
581
798
|
createdAt: "Float",
|
|
@@ -586,6 +803,7 @@ export const ReturnTypes = {
|
|
|
586
803
|
Viewpricing_component: {
|
|
587
804
|
_version: "VersionField",
|
|
588
805
|
locale: "String",
|
|
806
|
+
test_env: "String",
|
|
589
807
|
slug: "String",
|
|
590
808
|
_id: "String",
|
|
591
809
|
createdAt: "Float",
|
|
@@ -596,6 +814,7 @@ export const ReturnTypes = {
|
|
|
596
814
|
Viewttt: {
|
|
597
815
|
_version: "VersionField",
|
|
598
816
|
locale: "String",
|
|
817
|
+
test_env: "String",
|
|
599
818
|
slug: "String",
|
|
600
819
|
_id: "String",
|
|
601
820
|
createdAt: "Float",
|
|
@@ -603,170 +822,8 @@ export const ReturnTypes = {
|
|
|
603
822
|
draft_version: "Boolean",
|
|
604
823
|
json_ld: "String"
|
|
605
824
|
},
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
},
|
|
609
|
-
ShapeaimaAboutContainerMain_gridProfile_figureProfile_image_containerProfile_captionProfile_caption_rowProfile_caption_left: {
|
|
610
|
-
profile_name: "String",
|
|
611
|
-
profile_subtitle: "String"
|
|
612
|
-
},
|
|
613
|
-
ShapeaimaAboutContainerMain_gridProfile_figureProfile_image_containerProfile_captionProfile_caption_row: {
|
|
614
|
-
profile_caption_left: "ShapeaimaAboutContainerMain_gridProfile_figureProfile_image_containerProfile_captionProfile_caption_rowProfile_caption_left",
|
|
615
|
-
profile_caption_right: "String"
|
|
616
|
-
},
|
|
617
|
-
ShapeaimaAboutContainerMain_gridProfile_figureProfile_image_containerProfile_caption: {
|
|
618
|
-
profile_caption_row: "ShapeaimaAboutContainerMain_gridProfile_figureProfile_image_containerProfile_captionProfile_caption_row"
|
|
619
|
-
},
|
|
620
|
-
ShapeaimaAboutContainerMain_gridProfile_figureProfile_image_container: {
|
|
621
|
-
image: "ImageField",
|
|
622
|
-
image_overlay: "ShapeaimaAboutContainerMain_gridProfile_figureProfile_image_containerImage_overlay",
|
|
623
|
-
profile_caption: "ShapeaimaAboutContainerMain_gridProfile_figureProfile_image_containerProfile_caption"
|
|
624
|
-
},
|
|
625
|
-
ShapeaimaAboutContainerMain_gridProfile_figureStats_dlStats: {
|
|
626
|
-
stat_label: "String",
|
|
627
|
-
stat_value: "String"
|
|
628
|
-
},
|
|
629
|
-
ShapeaimaAboutContainerMain_gridProfile_figureStats_dl: {
|
|
630
|
-
stats: "ShapeaimaAboutContainerMain_gridProfile_figureStats_dlStats"
|
|
631
|
-
},
|
|
632
|
-
ShapeaimaAboutContainerMain_gridProfile_figure: {
|
|
633
|
-
profile_image_container: "ShapeaimaAboutContainerMain_gridProfile_figureProfile_image_container",
|
|
634
|
-
stats_dl: "ShapeaimaAboutContainerMain_gridProfile_figureStats_dl"
|
|
635
|
-
},
|
|
636
|
-
ShapeaimaAboutContainerMain_gridMain_contentHeader: {
|
|
637
|
-
subtitle: "String",
|
|
638
|
-
description: "String"
|
|
639
|
-
},
|
|
640
|
-
ShapeaimaAboutContainerMain_gridMain_contentCredentialsItems: {
|
|
641
|
-
credential_title: "String",
|
|
642
|
-
credential_detail: "String"
|
|
643
|
-
},
|
|
644
|
-
ShapeaimaAboutContainerMain_gridMain_contentCredentials: {
|
|
645
|
-
items: "ShapeaimaAboutContainerMain_gridMain_contentCredentialsItems"
|
|
646
|
-
},
|
|
647
|
-
ShapeaimaAboutContainerMain_gridMain_contentAdd_value_block: {
|
|
648
|
-
add_value_title: "String",
|
|
649
|
-
add_value_list: "String"
|
|
650
|
-
},
|
|
651
|
-
ShapeaimaAboutContainerMain_gridMain_contentContact_blockContact_rowContact_text: {
|
|
652
|
-
contact_main: "String",
|
|
653
|
-
contact_subtitle: "String"
|
|
654
|
-
},
|
|
655
|
-
ShapeaimaAboutContainerMain_gridMain_contentContact_blockContact_rowContact_ctasCta_email: {
|
|
656
|
-
cta: "String",
|
|
657
|
-
href: "String"
|
|
658
|
-
},
|
|
659
|
-
ShapeaimaAboutContainerMain_gridMain_contentContact_blockContact_rowContact_ctasCta_phone: {
|
|
660
|
-
cta: "String",
|
|
661
|
-
href: "String"
|
|
662
|
-
},
|
|
663
|
-
ShapeaimaAboutContainerMain_gridMain_contentContact_blockContact_rowContact_ctasCta_sample: {
|
|
664
|
-
cta: "String",
|
|
665
|
-
href: "String"
|
|
666
|
-
},
|
|
667
|
-
ShapeaimaAboutContainerMain_gridMain_contentContact_blockContact_rowContact_ctas: {
|
|
668
|
-
cta_email: "ShapeaimaAboutContainerMain_gridMain_contentContact_blockContact_rowContact_ctasCta_email",
|
|
669
|
-
cta_phone: "ShapeaimaAboutContainerMain_gridMain_contentContact_blockContact_rowContact_ctasCta_phone",
|
|
670
|
-
cta_sample: "ShapeaimaAboutContainerMain_gridMain_contentContact_blockContact_rowContact_ctasCta_sample"
|
|
671
|
-
},
|
|
672
|
-
ShapeaimaAboutContainerMain_gridMain_contentContact_blockContact_row: {
|
|
673
|
-
contact_text: "ShapeaimaAboutContainerMain_gridMain_contentContact_blockContact_rowContact_text",
|
|
674
|
-
contact_ctas: "ShapeaimaAboutContainerMain_gridMain_contentContact_blockContact_rowContact_ctas"
|
|
675
|
-
},
|
|
676
|
-
ShapeaimaAboutContainerMain_gridMain_contentContact_block: {
|
|
677
|
-
contact_row: "ShapeaimaAboutContainerMain_gridMain_contentContact_blockContact_row"
|
|
678
|
-
},
|
|
679
|
-
ShapeaimaAboutContainerMain_gridMain_contentService_areas_block: {
|
|
680
|
-
service_areas_title: "String",
|
|
681
|
-
service_areas_list: "String"
|
|
682
|
-
},
|
|
683
|
-
ShapeaimaAboutContainerMain_gridMain_contentTestimonial: {
|
|
684
|
-
testimonial_quote: "String",
|
|
685
|
-
testimonial_author: "String"
|
|
686
|
-
},
|
|
687
|
-
ShapeaimaAboutContainerMain_gridMain_content: {
|
|
688
|
-
header: "ShapeaimaAboutContainerMain_gridMain_contentHeader",
|
|
689
|
-
credentials: "ShapeaimaAboutContainerMain_gridMain_contentCredentials",
|
|
690
|
-
add_value_block: "ShapeaimaAboutContainerMain_gridMain_contentAdd_value_block",
|
|
691
|
-
contact_block: "ShapeaimaAboutContainerMain_gridMain_contentContact_block",
|
|
692
|
-
service_areas_block: "ShapeaimaAboutContainerMain_gridMain_contentService_areas_block",
|
|
693
|
-
testimonial: "ShapeaimaAboutContainerMain_gridMain_contentTestimonial"
|
|
694
|
-
},
|
|
695
|
-
ShapeaimaAboutContainerMain_grid: {
|
|
696
|
-
profile_figure: "ShapeaimaAboutContainerMain_gridProfile_figure",
|
|
697
|
-
main_content: "ShapeaimaAboutContainerMain_gridMain_content"
|
|
698
|
-
},
|
|
699
|
-
ShapeaimaAboutContainer: {
|
|
700
|
-
main_grid: "ShapeaimaAboutContainerMain_grid"
|
|
701
|
-
},
|
|
702
|
-
ShapeaimaAbout: {
|
|
703
|
-
container: "ShapeaimaAboutContainer"
|
|
704
|
-
},
|
|
705
|
-
ShapeaimaNotab: {
|
|
706
|
-
title: "String"
|
|
707
|
-
},
|
|
708
|
-
Shapeaima: {
|
|
709
|
-
about: "ShapeaimaAbout",
|
|
710
|
-
notab: "ShapeaimaNotab",
|
|
711
|
-
_id: "String",
|
|
712
|
-
createdAt: "Float",
|
|
713
|
-
updatedAt: "Float"
|
|
714
|
-
},
|
|
715
|
-
ShapeaimasterHeroContainerRowContentblockValuation_formField_grid: {
|
|
716
|
-
address: "String",
|
|
717
|
-
postcode: "String",
|
|
718
|
-
type: "String",
|
|
719
|
-
email: "String"
|
|
720
|
-
},
|
|
721
|
-
ShapeaimasterHeroContainerRowContentblockValuation_formForm_actionsCall_cta: {
|
|
722
|
-
cta: "String",
|
|
723
|
-
href: "String"
|
|
724
|
-
},
|
|
725
|
-
ShapeaimasterHeroContainerRowContentblockValuation_formForm_actions: {
|
|
726
|
-
cta: "String",
|
|
727
|
-
call_cta: "ShapeaimasterHeroContainerRowContentblockValuation_formForm_actionsCall_cta"
|
|
728
|
-
},
|
|
729
|
-
ShapeaimasterHeroContainerRowContentblockValuation_formPrivacy_notePolicy_link: {
|
|
730
|
-
cta: "String",
|
|
731
|
-
href: "String"
|
|
732
|
-
},
|
|
733
|
-
ShapeaimasterHeroContainerRowContentblockValuation_formPrivacy_note: {
|
|
734
|
-
note: "String",
|
|
735
|
-
policy_link: "ShapeaimasterHeroContainerRowContentblockValuation_formPrivacy_notePolicy_link"
|
|
736
|
-
},
|
|
737
|
-
ShapeaimasterHeroContainerRowContentblockValuation_form: {
|
|
738
|
-
field_grid: "ShapeaimasterHeroContainerRowContentblockValuation_formField_grid",
|
|
739
|
-
form_actions: "ShapeaimasterHeroContainerRowContentblockValuation_formForm_actions",
|
|
740
|
-
privacy_note: "ShapeaimasterHeroContainerRowContentblockValuation_formPrivacy_note"
|
|
741
|
-
},
|
|
742
|
-
ShapeaimasterHeroContainerRowContentblock: {
|
|
743
|
-
eyebrow: "String",
|
|
744
|
-
title: "String",
|
|
745
|
-
description: "String",
|
|
746
|
-
features: "String",
|
|
747
|
-
valuation_form: "ShapeaimasterHeroContainerRowContentblockValuation_form",
|
|
748
|
-
trust: "String"
|
|
749
|
-
},
|
|
750
|
-
ShapeaimasterHeroContainerRowFigureAttributionblock: {
|
|
751
|
-
indicator: "String",
|
|
752
|
-
review_note: "String"
|
|
753
|
-
},
|
|
754
|
-
ShapeaimasterHeroContainerRowFigure: {
|
|
755
|
-
image: "ImageField",
|
|
756
|
-
attributionblock: "ShapeaimasterHeroContainerRowFigureAttributionblock"
|
|
757
|
-
},
|
|
758
|
-
ShapeaimasterHeroContainerRow: {
|
|
759
|
-
contentblock: "ShapeaimasterHeroContainerRowContentblock",
|
|
760
|
-
figure: "ShapeaimasterHeroContainerRowFigure"
|
|
761
|
-
},
|
|
762
|
-
ShapeaimasterHeroContainer: {
|
|
763
|
-
row: "ShapeaimasterHeroContainerRow"
|
|
764
|
-
},
|
|
765
|
-
ShapeaimasterHero: {
|
|
766
|
-
container: "ShapeaimasterHeroContainer"
|
|
767
|
-
},
|
|
768
|
-
Shapeaimaster: {
|
|
769
|
-
hero: "ShapeaimasterHero",
|
|
825
|
+
Shapebleblebel: {
|
|
826
|
+
dupa: "docs",
|
|
770
827
|
_id: "String",
|
|
771
828
|
createdAt: "Float",
|
|
772
829
|
updatedAt: "Float"
|
|
@@ -1331,6 +1388,289 @@ export const ReturnTypes = {
|
|
|
1331
1388
|
createdAt: "Float",
|
|
1332
1389
|
updatedAt: "Float"
|
|
1333
1390
|
},
|
|
1391
|
+
Shapes26_bento_gridRootHeader: {
|
|
1392
|
+
eyebrow: "String",
|
|
1393
|
+
title: "String",
|
|
1394
|
+
description: "String"
|
|
1395
|
+
},
|
|
1396
|
+
Shapes26_bento_gridRootContainer: {
|
|
1397
|
+
items: "Shapes26_bento_item"
|
|
1398
|
+
},
|
|
1399
|
+
Shapes26_bento_gridRoot: {
|
|
1400
|
+
header: "Shapes26_bento_gridRootHeader",
|
|
1401
|
+
container: "Shapes26_bento_gridRootContainer"
|
|
1402
|
+
},
|
|
1403
|
+
Shapes26_bento_grid: {
|
|
1404
|
+
root: "Shapes26_bento_gridRoot",
|
|
1405
|
+
_id: "String",
|
|
1406
|
+
createdAt: "Float",
|
|
1407
|
+
updatedAt: "Float"
|
|
1408
|
+
},
|
|
1409
|
+
Shapes26_bento_item: {
|
|
1410
|
+
icon_emoji: "String",
|
|
1411
|
+
highlight: "String",
|
|
1412
|
+
title: "String",
|
|
1413
|
+
description: "String",
|
|
1414
|
+
visual: "ImageField",
|
|
1415
|
+
_id: "String",
|
|
1416
|
+
createdAt: "Float",
|
|
1417
|
+
updatedAt: "Float"
|
|
1418
|
+
},
|
|
1419
|
+
Shapes26_footerRootGridBrand: {
|
|
1420
|
+
logo: "String",
|
|
1421
|
+
tagline: "String"
|
|
1422
|
+
},
|
|
1423
|
+
Shapes26_footerRootGridColumn1Link1: {
|
|
1424
|
+
label: "String",
|
|
1425
|
+
href: "String"
|
|
1426
|
+
},
|
|
1427
|
+
Shapes26_footerRootGridColumn1Link2: {
|
|
1428
|
+
label: "String",
|
|
1429
|
+
href: "String"
|
|
1430
|
+
},
|
|
1431
|
+
Shapes26_footerRootGridColumn1Link3: {
|
|
1432
|
+
label: "String",
|
|
1433
|
+
href: "String"
|
|
1434
|
+
},
|
|
1435
|
+
Shapes26_footerRootGridColumn1: {
|
|
1436
|
+
title: "String",
|
|
1437
|
+
link1: "Shapes26_footerRootGridColumn1Link1",
|
|
1438
|
+
link2: "Shapes26_footerRootGridColumn1Link2",
|
|
1439
|
+
link3: "Shapes26_footerRootGridColumn1Link3"
|
|
1440
|
+
},
|
|
1441
|
+
Shapes26_footerRootGridColumn2Link1: {
|
|
1442
|
+
label: "String",
|
|
1443
|
+
href: "String"
|
|
1444
|
+
},
|
|
1445
|
+
Shapes26_footerRootGridColumn2Link2: {
|
|
1446
|
+
label: "String",
|
|
1447
|
+
href: "String"
|
|
1448
|
+
},
|
|
1449
|
+
Shapes26_footerRootGridColumn2Link3: {
|
|
1450
|
+
label: "String",
|
|
1451
|
+
href: "String"
|
|
1452
|
+
},
|
|
1453
|
+
Shapes26_footerRootGridColumn2: {
|
|
1454
|
+
title: "String",
|
|
1455
|
+
link1: "Shapes26_footerRootGridColumn2Link1",
|
|
1456
|
+
link2: "Shapes26_footerRootGridColumn2Link2",
|
|
1457
|
+
link3: "Shapes26_footerRootGridColumn2Link3"
|
|
1458
|
+
},
|
|
1459
|
+
Shapes26_footerRootGridColumn3Link1: {
|
|
1460
|
+
label: "String",
|
|
1461
|
+
href: "String"
|
|
1462
|
+
},
|
|
1463
|
+
Shapes26_footerRootGridColumn3Link2: {
|
|
1464
|
+
label: "String",
|
|
1465
|
+
href: "String"
|
|
1466
|
+
},
|
|
1467
|
+
Shapes26_footerRootGridColumn3Link3: {
|
|
1468
|
+
label: "String",
|
|
1469
|
+
href: "String"
|
|
1470
|
+
},
|
|
1471
|
+
Shapes26_footerRootGridColumn3: {
|
|
1472
|
+
title: "String",
|
|
1473
|
+
link1: "Shapes26_footerRootGridColumn3Link1",
|
|
1474
|
+
link2: "Shapes26_footerRootGridColumn3Link2",
|
|
1475
|
+
link3: "Shapes26_footerRootGridColumn3Link3"
|
|
1476
|
+
},
|
|
1477
|
+
Shapes26_footerRootGrid: {
|
|
1478
|
+
brand: "Shapes26_footerRootGridBrand",
|
|
1479
|
+
column1: "Shapes26_footerRootGridColumn1",
|
|
1480
|
+
column2: "Shapes26_footerRootGridColumn2",
|
|
1481
|
+
column3: "Shapes26_footerRootGridColumn3"
|
|
1482
|
+
},
|
|
1483
|
+
Shapes26_footerRootBottomSocials: {
|
|
1484
|
+
github: "String",
|
|
1485
|
+
twitter: "String",
|
|
1486
|
+
discord: "String"
|
|
1487
|
+
},
|
|
1488
|
+
Shapes26_footerRootBottom: {
|
|
1489
|
+
copyright: "String",
|
|
1490
|
+
socials: "Shapes26_footerRootBottomSocials"
|
|
1491
|
+
},
|
|
1492
|
+
Shapes26_footerRoot: {
|
|
1493
|
+
grid: "Shapes26_footerRootGrid",
|
|
1494
|
+
bottom: "Shapes26_footerRootBottom"
|
|
1495
|
+
},
|
|
1496
|
+
Shapes26_footer: {
|
|
1497
|
+
root: "Shapes26_footerRoot",
|
|
1498
|
+
_id: "String",
|
|
1499
|
+
createdAt: "Float",
|
|
1500
|
+
updatedAt: "Float"
|
|
1501
|
+
},
|
|
1502
|
+
Shapes26_heroContainerEyebrow: {
|
|
1503
|
+
badge: "String",
|
|
1504
|
+
announcement: "String"
|
|
1505
|
+
},
|
|
1506
|
+
Shapes26_heroContainerActions: {
|
|
1507
|
+
primary_cta: "String",
|
|
1508
|
+
secondary_cta: "String"
|
|
1509
|
+
},
|
|
1510
|
+
Shapes26_heroContainerHero_visual: {
|
|
1511
|
+
image: "ImageField",
|
|
1512
|
+
video: "VideoField"
|
|
1513
|
+
},
|
|
1514
|
+
Shapes26_heroContainerStatsStat1: {
|
|
1515
|
+
value: "String",
|
|
1516
|
+
label: "String"
|
|
1517
|
+
},
|
|
1518
|
+
Shapes26_heroContainerStatsStat2: {
|
|
1519
|
+
value: "String",
|
|
1520
|
+
label: "String"
|
|
1521
|
+
},
|
|
1522
|
+
Shapes26_heroContainerStatsStat3: {
|
|
1523
|
+
value: "String",
|
|
1524
|
+
label: "String"
|
|
1525
|
+
},
|
|
1526
|
+
Shapes26_heroContainerStatsStat4: {
|
|
1527
|
+
value: "String",
|
|
1528
|
+
label: "String"
|
|
1529
|
+
},
|
|
1530
|
+
Shapes26_heroContainerStats: {
|
|
1531
|
+
stat1: "Shapes26_heroContainerStatsStat1",
|
|
1532
|
+
stat2: "Shapes26_heroContainerStatsStat2",
|
|
1533
|
+
stat3: "Shapes26_heroContainerStatsStat3",
|
|
1534
|
+
stat4: "Shapes26_heroContainerStatsStat4"
|
|
1535
|
+
},
|
|
1536
|
+
Shapes26_heroContainer: {
|
|
1537
|
+
eyebrow: "Shapes26_heroContainerEyebrow",
|
|
1538
|
+
headline: "String",
|
|
1539
|
+
subheadline: "String",
|
|
1540
|
+
actions: "Shapes26_heroContainerActions",
|
|
1541
|
+
hero_visual: "Shapes26_heroContainerHero_visual",
|
|
1542
|
+
stats: "Shapes26_heroContainerStats"
|
|
1543
|
+
},
|
|
1544
|
+
Shapes26_hero: {
|
|
1545
|
+
container: "Shapes26_heroContainer",
|
|
1546
|
+
_id: "String",
|
|
1547
|
+
createdAt: "Float",
|
|
1548
|
+
updatedAt: "Float"
|
|
1549
|
+
},
|
|
1550
|
+
Shapes26_navNavbarLinks: {
|
|
1551
|
+
link1: "Shapes26_nav_link",
|
|
1552
|
+
link2: "Shapes26_nav_link",
|
|
1553
|
+
link3: "Shapes26_nav_link",
|
|
1554
|
+
link4: "Shapes26_nav_link"
|
|
1555
|
+
},
|
|
1556
|
+
Shapes26_navNavbarActions: {
|
|
1557
|
+
login: "String",
|
|
1558
|
+
cta: "String"
|
|
1559
|
+
},
|
|
1560
|
+
Shapes26_navNavbar: {
|
|
1561
|
+
logo: "String",
|
|
1562
|
+
links: "Shapes26_navNavbarLinks",
|
|
1563
|
+
actions: "Shapes26_navNavbarActions"
|
|
1564
|
+
},
|
|
1565
|
+
Shapes26_nav: {
|
|
1566
|
+
navbar: "Shapes26_navNavbar",
|
|
1567
|
+
_id: "String",
|
|
1568
|
+
createdAt: "Float",
|
|
1569
|
+
updatedAt: "Float"
|
|
1570
|
+
},
|
|
1571
|
+
Shapes26_nav_link: {
|
|
1572
|
+
label: "String",
|
|
1573
|
+
href: "String",
|
|
1574
|
+
_id: "String",
|
|
1575
|
+
createdAt: "Float",
|
|
1576
|
+
updatedAt: "Float"
|
|
1577
|
+
},
|
|
1578
|
+
Shapes26_pricingSectionHeader: {
|
|
1579
|
+
eyebrow: "String",
|
|
1580
|
+
title: "String",
|
|
1581
|
+
description: "String"
|
|
1582
|
+
},
|
|
1583
|
+
Shapes26_pricingSectionPlans_container: {
|
|
1584
|
+
plans: "Shapes26_pricing_card"
|
|
1585
|
+
},
|
|
1586
|
+
Shapes26_pricingSection: {
|
|
1587
|
+
header: "Shapes26_pricingSectionHeader",
|
|
1588
|
+
plans_container: "Shapes26_pricingSectionPlans_container"
|
|
1589
|
+
},
|
|
1590
|
+
Shapes26_pricing: {
|
|
1591
|
+
section: "Shapes26_pricingSection",
|
|
1592
|
+
_id: "String",
|
|
1593
|
+
createdAt: "Float",
|
|
1594
|
+
updatedAt: "Float"
|
|
1595
|
+
},
|
|
1596
|
+
Shapes26_pricing_cardFeatures: {
|
|
1597
|
+
feature1: "String",
|
|
1598
|
+
feature2: "String",
|
|
1599
|
+
feature3: "String",
|
|
1600
|
+
feature4: "String",
|
|
1601
|
+
feature5: "String"
|
|
1602
|
+
},
|
|
1603
|
+
Shapes26_pricing_card: {
|
|
1604
|
+
badge: "String",
|
|
1605
|
+
plan_name: "String",
|
|
1606
|
+
price: "String",
|
|
1607
|
+
price_period: "String",
|
|
1608
|
+
description: "String",
|
|
1609
|
+
features: "Shapes26_pricing_cardFeatures",
|
|
1610
|
+
cta: "String",
|
|
1611
|
+
_id: "String",
|
|
1612
|
+
createdAt: "Float",
|
|
1613
|
+
updatedAt: "Float"
|
|
1614
|
+
},
|
|
1615
|
+
Shapes26_use_casesSectionHeader: {
|
|
1616
|
+
eyebrow: "String",
|
|
1617
|
+
title: "String",
|
|
1618
|
+
description: "String"
|
|
1619
|
+
},
|
|
1620
|
+
Shapes26_use_casesSectionGridUse_husarHeader: {
|
|
1621
|
+
icon: "String",
|
|
1622
|
+
title: "String"
|
|
1623
|
+
},
|
|
1624
|
+
Shapes26_use_casesSectionGridUse_husarItems: {
|
|
1625
|
+
item1: "String",
|
|
1626
|
+
item2: "String",
|
|
1627
|
+
item3: "String",
|
|
1628
|
+
item4: "String",
|
|
1629
|
+
item5: "String"
|
|
1630
|
+
},
|
|
1631
|
+
Shapes26_use_casesSectionGridUse_husar: {
|
|
1632
|
+
header: "Shapes26_use_casesSectionGridUse_husarHeader",
|
|
1633
|
+
items: "Shapes26_use_casesSectionGridUse_husarItems"
|
|
1634
|
+
},
|
|
1635
|
+
Shapes26_use_casesSectionGridNot_for_youHeader: {
|
|
1636
|
+
icon: "String",
|
|
1637
|
+
title: "String"
|
|
1638
|
+
},
|
|
1639
|
+
Shapes26_use_casesSectionGridNot_for_youItemsItem1: {
|
|
1640
|
+
text: "String",
|
|
1641
|
+
alternative: "String"
|
|
1642
|
+
},
|
|
1643
|
+
Shapes26_use_casesSectionGridNot_for_youItemsItem2: {
|
|
1644
|
+
text: "String",
|
|
1645
|
+
alternative: "String"
|
|
1646
|
+
},
|
|
1647
|
+
Shapes26_use_casesSectionGridNot_for_youItemsItem3: {
|
|
1648
|
+
text: "String",
|
|
1649
|
+
alternative: "String"
|
|
1650
|
+
},
|
|
1651
|
+
Shapes26_use_casesSectionGridNot_for_youItems: {
|
|
1652
|
+
item1: "Shapes26_use_casesSectionGridNot_for_youItemsItem1",
|
|
1653
|
+
item2: "Shapes26_use_casesSectionGridNot_for_youItemsItem2",
|
|
1654
|
+
item3: "Shapes26_use_casesSectionGridNot_for_youItemsItem3"
|
|
1655
|
+
},
|
|
1656
|
+
Shapes26_use_casesSectionGridNot_for_you: {
|
|
1657
|
+
header: "Shapes26_use_casesSectionGridNot_for_youHeader",
|
|
1658
|
+
items: "Shapes26_use_casesSectionGridNot_for_youItems"
|
|
1659
|
+
},
|
|
1660
|
+
Shapes26_use_casesSectionGrid: {
|
|
1661
|
+
use_husar: "Shapes26_use_casesSectionGridUse_husar",
|
|
1662
|
+
not_for_you: "Shapes26_use_casesSectionGridNot_for_you"
|
|
1663
|
+
},
|
|
1664
|
+
Shapes26_use_casesSection: {
|
|
1665
|
+
header: "Shapes26_use_casesSectionHeader",
|
|
1666
|
+
grid: "Shapes26_use_casesSectionGrid"
|
|
1667
|
+
},
|
|
1668
|
+
Shapes26_use_cases: {
|
|
1669
|
+
section: "Shapes26_use_casesSection",
|
|
1670
|
+
_id: "String",
|
|
1671
|
+
createdAt: "Float",
|
|
1672
|
+
updatedAt: "Float"
|
|
1673
|
+
},
|
|
1334
1674
|
Shapesecondary_cta: {
|
|
1335
1675
|
cta: "String",
|
|
1336
1676
|
_id: "String",
|
|
@@ -1366,6 +1706,12 @@ export const ReturnTypes = {
|
|
|
1366
1706
|
createdAt: "Float",
|
|
1367
1707
|
updatedAt: "Float"
|
|
1368
1708
|
},
|
|
1709
|
+
Shapetest_shape_agent: {
|
|
1710
|
+
title: "String",
|
|
1711
|
+
_id: "String",
|
|
1712
|
+
createdAt: "Float",
|
|
1713
|
+
updatedAt: "Float"
|
|
1714
|
+
},
|
|
1369
1715
|
ShapetestimonialItems: {
|
|
1370
1716
|
quote: "String",
|
|
1371
1717
|
author_name: "String",
|