@husar.ai/cli 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +26 -20
- package/dist/index.js.map +1 -1
- package/dist/zeus/const.d.ts +1 -0
- package/dist/zeus/const.js +505 -52
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +2495 -444
- package/dist/zeus/index.js +34 -4
- package/dist/zeus/index.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +28 -20
- package/src/zeus/const.ts +504 -53
- package/src/zeus/index.ts +2482 -426
package/src/zeus/const.ts
CHANGED
|
@@ -11,60 +11,58 @@ export const AllTypesProps: Record<string,any> = {
|
|
|
11
11
|
ConditionSetOperator: "enum" as const,
|
|
12
12
|
ConditionOperator: "enum" as const,
|
|
13
13
|
ConditionType: "enum" as const,
|
|
14
|
+
ActionType: "enum" as const,
|
|
14
15
|
PageInput:{
|
|
15
16
|
|
|
16
17
|
},
|
|
17
18
|
FilterInputString:{
|
|
18
19
|
|
|
19
20
|
},
|
|
21
|
+
RootParamsAdminType: `scalar.RootParamsAdminType` as const,
|
|
20
22
|
FormFieldType: "enum" as const,
|
|
21
23
|
CMSType: "enum" as const,
|
|
22
24
|
Query:{
|
|
23
|
-
|
|
25
|
+
listPaginateddocs:{
|
|
24
26
|
page:"PageInput",
|
|
25
27
|
rootParams:"RootParamsInput",
|
|
26
|
-
sort:"
|
|
27
|
-
filter:"
|
|
28
|
+
sort:"docsSortInput",
|
|
29
|
+
filter:"docsFilterInput"
|
|
28
30
|
},
|
|
29
|
-
|
|
31
|
+
onedocsBySlug:{
|
|
30
32
|
rootParams:"RootParamsInput"
|
|
31
33
|
},
|
|
32
|
-
|
|
34
|
+
variantsdocsBySlug:{
|
|
33
35
|
|
|
34
36
|
},
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
rootParams:"RootParamsInput",
|
|
38
|
-
sort:"postSortInput",
|
|
39
|
-
filter:"postFilterInput"
|
|
37
|
+
oneViewaccount:{
|
|
38
|
+
rootParams:"RootParamsInput"
|
|
40
39
|
},
|
|
41
|
-
|
|
40
|
+
oneViewfeatures:{
|
|
42
41
|
rootParams:"RootParamsInput"
|
|
43
42
|
},
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
oneViewhomepage:{
|
|
44
|
+
rootParams:"RootParamsInput"
|
|
45
|
+
},
|
|
46
|
+
oneViewhowitworks:{
|
|
47
|
+
rootParams:"RootParamsInput"
|
|
48
|
+
},
|
|
49
|
+
oneViewpricing:{
|
|
50
|
+
rootParams:"RootParamsInput"
|
|
46
51
|
}
|
|
47
52
|
},
|
|
48
53
|
ModelEnum: "enum" as const,
|
|
54
|
+
ViewEnum: "enum" as const,
|
|
49
55
|
ShapeEnum: "enum" as const,
|
|
50
56
|
RootParamsInput:{
|
|
51
57
|
|
|
52
58
|
},
|
|
53
59
|
RootParamsEnum: "enum" as const,
|
|
54
|
-
|
|
55
|
-
slug:"Sort",
|
|
56
|
-
createdAt:"Sort",
|
|
57
|
-
updatedAt:"Sort"
|
|
58
|
-
},
|
|
59
|
-
postSortInput:{
|
|
60
|
+
docsSortInput:{
|
|
60
61
|
slug:"Sort",
|
|
61
62
|
createdAt:"Sort",
|
|
62
63
|
updatedAt:"Sort"
|
|
63
64
|
},
|
|
64
|
-
|
|
65
|
-
slug:"FilterInputString"
|
|
66
|
-
},
|
|
67
|
-
postFilterInput:{
|
|
65
|
+
docsFilterInput:{
|
|
68
66
|
slug:"FilterInputString"
|
|
69
67
|
},
|
|
70
68
|
ID: `scalar.ID` as const
|
|
@@ -142,6 +140,15 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
142
140
|
value:"String",
|
|
143
141
|
children:"Condition"
|
|
144
142
|
},
|
|
143
|
+
Action:{
|
|
144
|
+
path:"String",
|
|
145
|
+
type:"ActionType",
|
|
146
|
+
value:"String"
|
|
147
|
+
},
|
|
148
|
+
Rule:{
|
|
149
|
+
conditions:"Condition",
|
|
150
|
+
actions:"Action"
|
|
151
|
+
},
|
|
145
152
|
Visual:{
|
|
146
153
|
className:"String",
|
|
147
154
|
component:"String"
|
|
@@ -150,6 +157,10 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
150
157
|
total:"Int",
|
|
151
158
|
hasNext:"Boolean"
|
|
152
159
|
},
|
|
160
|
+
Mutation:{
|
|
161
|
+
heartbeat:"String"
|
|
162
|
+
},
|
|
163
|
+
RootParamsAdminType: `scalar.RootParamsAdminType` as const,
|
|
153
164
|
Shape:{
|
|
154
165
|
name:"String",
|
|
155
166
|
slug:"String",
|
|
@@ -172,14 +183,18 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
172
183
|
textContent:"String",
|
|
173
184
|
children:"AiComponent"
|
|
174
185
|
},
|
|
186
|
+
FormFieldVisual:{
|
|
187
|
+
className:"String",
|
|
188
|
+
component:"String",
|
|
189
|
+
rules:"Rule"
|
|
190
|
+
},
|
|
175
191
|
FormField:{
|
|
176
192
|
name:"String",
|
|
177
193
|
display:"String",
|
|
178
194
|
type:"FormFieldType",
|
|
179
195
|
list:"Boolean",
|
|
180
196
|
fields:"FormField",
|
|
181
|
-
visual:"
|
|
182
|
-
conditions:"Condition",
|
|
197
|
+
visual:"FormFieldVisual",
|
|
183
198
|
placeholder:"String",
|
|
184
199
|
root:"Boolean",
|
|
185
200
|
options:"String",
|
|
@@ -235,10 +250,25 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
235
250
|
label:"String",
|
|
236
251
|
options:"String"
|
|
237
252
|
},
|
|
253
|
+
FormCheckboxField:{
|
|
254
|
+
label:"String"
|
|
255
|
+
},
|
|
256
|
+
FormButtonField:{
|
|
257
|
+
label:"String"
|
|
258
|
+
},
|
|
238
259
|
FormProductField:{
|
|
239
260
|
label:"String",
|
|
240
261
|
name:"String"
|
|
241
262
|
},
|
|
263
|
+
FormVariableField:{
|
|
264
|
+
label:"String",
|
|
265
|
+
name:"String",
|
|
266
|
+
defaultValue:"String"
|
|
267
|
+
},
|
|
268
|
+
FormDisplayField:{
|
|
269
|
+
label:"String",
|
|
270
|
+
path:"String"
|
|
271
|
+
},
|
|
242
272
|
Query:{
|
|
243
273
|
navigation:"ModelNavigation",
|
|
244
274
|
rootParams:"RootCMSParam",
|
|
@@ -248,30 +278,108 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
248
278
|
listShapes:"Shape",
|
|
249
279
|
tailwind:"TailwindConfiguration",
|
|
250
280
|
listForms:"Form",
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
281
|
+
listPaginateddocs:"docs__Connection",
|
|
282
|
+
onedocsBySlug:"docs",
|
|
283
|
+
variantsdocsBySlug:"docs",
|
|
284
|
+
fieldSetdocs:"String",
|
|
285
|
+
modeldocs:"ModelNavigationCompiled",
|
|
286
|
+
previewFieldsdocs:"ModelNavigationCompiled",
|
|
287
|
+
fieldSetShapedocs_content:"String",
|
|
288
|
+
modelShapedocs_content:"ModelNavigationCompiled",
|
|
289
|
+
previewFieldsShapedocs_content:"ModelNavigationCompiled",
|
|
290
|
+
oneShapedocs_content:"Shapedocs_content",
|
|
291
|
+
fieldSetShapedocs_nav:"String",
|
|
292
|
+
modelShapedocs_nav:"ModelNavigationCompiled",
|
|
293
|
+
previewFieldsShapedocs_nav:"ModelNavigationCompiled",
|
|
294
|
+
oneShapedocs_nav:"Shapedocs_nav",
|
|
295
|
+
fieldSetShapefeaturepresentation:"String",
|
|
296
|
+
modelShapefeaturepresentation:"ModelNavigationCompiled",
|
|
297
|
+
previewFieldsShapefeaturepresentation:"ModelNavigationCompiled",
|
|
298
|
+
oneShapefeaturepresentation:"Shapefeaturepresentation",
|
|
299
|
+
fieldSetShapefoot:"String",
|
|
300
|
+
modelShapefoot:"ModelNavigationCompiled",
|
|
301
|
+
previewFieldsShapefoot:"ModelNavigationCompiled",
|
|
302
|
+
oneShapefoot:"Shapefoot",
|
|
303
|
+
fieldSetShapehero:"String",
|
|
304
|
+
modelShapehero:"ModelNavigationCompiled",
|
|
305
|
+
previewFieldsShapehero:"ModelNavigationCompiled",
|
|
306
|
+
oneShapehero:"Shapehero",
|
|
307
|
+
fieldSetShapeherox:"String",
|
|
308
|
+
modelShapeherox:"ModelNavigationCompiled",
|
|
309
|
+
previewFieldsShapeherox:"ModelNavigationCompiled",
|
|
310
|
+
oneShapeherox:"Shapeherox",
|
|
311
|
+
fieldSetShapelista_projektow:"String",
|
|
312
|
+
modelShapelista_projektow:"ModelNavigationCompiled",
|
|
313
|
+
previewFieldsShapelista_projektow:"ModelNavigationCompiled",
|
|
314
|
+
oneShapelista_projektow:"Shapelista_projektow",
|
|
315
|
+
fieldSetShapenav:"String",
|
|
316
|
+
modelShapenav:"ModelNavigationCompiled",
|
|
317
|
+
previewFieldsShapenav:"ModelNavigationCompiled",
|
|
318
|
+
oneShapenav:"Shapenav",
|
|
319
|
+
fieldSetShapenewshape:"String",
|
|
320
|
+
modelShapenewshape:"ModelNavigationCompiled",
|
|
321
|
+
previewFieldsShapenewshape:"ModelNavigationCompiled",
|
|
322
|
+
oneShapenewshape:"Shapenewshape",
|
|
323
|
+
fieldSetShapepricing_table:"String",
|
|
324
|
+
modelShapepricing_table:"ModelNavigationCompiled",
|
|
325
|
+
previewFieldsShapepricing_table:"ModelNavigationCompiled",
|
|
326
|
+
oneShapepricing_table:"Shapepricing_table",
|
|
327
|
+
fieldSetShapepricingv1:"String",
|
|
328
|
+
modelShapepricingv1:"ModelNavigationCompiled",
|
|
329
|
+
previewFieldsShapepricingv1:"ModelNavigationCompiled",
|
|
330
|
+
oneShapepricingv1:"Shapepricingv1",
|
|
331
|
+
fieldSetShapeprofile_info:"String",
|
|
332
|
+
modelShapeprofile_info:"ModelNavigationCompiled",
|
|
333
|
+
previewFieldsShapeprofile_info:"ModelNavigationCompiled",
|
|
334
|
+
oneShapeprofile_info:"Shapeprofile_info",
|
|
335
|
+
fieldSetShapeusage:"String",
|
|
336
|
+
modelShapeusage:"ModelNavigationCompiled",
|
|
337
|
+
previewFieldsShapeusage:"ModelNavigationCompiled",
|
|
338
|
+
oneShapeusage:"Shapeusage",
|
|
339
|
+
variantsViewaccount:"Viewaccount",
|
|
340
|
+
fieldSetViewaccount:"String",
|
|
341
|
+
modelViewaccount:"ModelNavigationCompiled",
|
|
342
|
+
previewFieldsViewaccount:"ModelNavigationCompiled",
|
|
343
|
+
oneViewaccount:"Viewaccount",
|
|
344
|
+
variantsViewfeatures:"Viewfeatures",
|
|
345
|
+
fieldSetViewfeatures:"String",
|
|
346
|
+
modelViewfeatures:"ModelNavigationCompiled",
|
|
347
|
+
previewFieldsViewfeatures:"ModelNavigationCompiled",
|
|
348
|
+
oneViewfeatures:"Viewfeatures",
|
|
349
|
+
variantsViewhomepage:"Viewhomepage",
|
|
350
|
+
fieldSetViewhomepage:"String",
|
|
351
|
+
modelViewhomepage:"ModelNavigationCompiled",
|
|
352
|
+
previewFieldsViewhomepage:"ModelNavigationCompiled",
|
|
353
|
+
oneViewhomepage:"Viewhomepage",
|
|
354
|
+
variantsViewhowitworks:"Viewhowitworks",
|
|
355
|
+
fieldSetViewhowitworks:"String",
|
|
356
|
+
modelViewhowitworks:"ModelNavigationCompiled",
|
|
357
|
+
previewFieldsViewhowitworks:"ModelNavigationCompiled",
|
|
358
|
+
oneViewhowitworks:"Viewhowitworks",
|
|
359
|
+
variantsViewpricing:"Viewpricing",
|
|
360
|
+
fieldSetViewpricing:"String",
|
|
361
|
+
modelViewpricing:"ModelNavigationCompiled",
|
|
362
|
+
previewFieldsViewpricing:"ModelNavigationCompiled",
|
|
363
|
+
oneViewpricing:"Viewpricing"
|
|
364
|
+
},
|
|
365
|
+
RootParamsType:{
|
|
366
|
+
_version:"String",
|
|
367
|
+
locale:"String"
|
|
368
|
+
},
|
|
369
|
+
docs__Connection:{
|
|
370
|
+
items:"docs",
|
|
270
371
|
pageInfo:"PageInfo"
|
|
271
372
|
},
|
|
272
|
-
|
|
373
|
+
docs:{
|
|
273
374
|
_version:"VersionField",
|
|
375
|
+
title:"String",
|
|
376
|
+
seotitle:"String",
|
|
377
|
+
metadesc:"String",
|
|
378
|
+
sortid:"Float",
|
|
379
|
+
main_category:"String",
|
|
274
380
|
content:"String",
|
|
381
|
+
video:"VideoField",
|
|
382
|
+
locale:"String",
|
|
275
383
|
slug:"String",
|
|
276
384
|
_id:"String",
|
|
277
385
|
createdAt:"Float",
|
|
@@ -279,15 +387,74 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
279
387
|
draft_version:"Boolean",
|
|
280
388
|
json_ld:"String"
|
|
281
389
|
},
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
390
|
+
ViewaccountMain:{
|
|
391
|
+
profile:"Shapeprofile_info",
|
|
392
|
+
projects:"Shapelista_projektow"
|
|
393
|
+
},
|
|
394
|
+
Viewaccount:{
|
|
395
|
+
_version:"VersionField",
|
|
396
|
+
main:"ViewaccountMain",
|
|
397
|
+
locale:"String",
|
|
398
|
+
slug:"String",
|
|
399
|
+
_id:"String",
|
|
400
|
+
createdAt:"Float",
|
|
401
|
+
updatedAt:"Float",
|
|
402
|
+
draft_version:"Boolean",
|
|
403
|
+
json_ld:"String"
|
|
404
|
+
},
|
|
405
|
+
ViewfeaturesMain:{
|
|
406
|
+
auto_translation:"Shapefeaturepresentation",
|
|
407
|
+
ai_component:"Shapefeaturepresentation"
|
|
285
408
|
},
|
|
286
|
-
|
|
409
|
+
Viewfeatures:{
|
|
287
410
|
_version:"VersionField",
|
|
411
|
+
main:"ViewfeaturesMain",
|
|
412
|
+
locale:"String",
|
|
413
|
+
slug:"String",
|
|
414
|
+
_id:"String",
|
|
415
|
+
createdAt:"Float",
|
|
416
|
+
updatedAt:"Float",
|
|
417
|
+
draft_version:"Boolean",
|
|
418
|
+
json_ld:"String"
|
|
419
|
+
},
|
|
420
|
+
Viewhomepage:{
|
|
421
|
+
_version:"VersionField",
|
|
422
|
+
nav:"Shapenav",
|
|
423
|
+
main:"Shapehero",
|
|
424
|
+
hero:"Shapeherox",
|
|
425
|
+
pricing:"Shapepricingv1",
|
|
426
|
+
footer:"Shapefoot",
|
|
427
|
+
locale:"String",
|
|
428
|
+
slug:"String",
|
|
429
|
+
_id:"String",
|
|
430
|
+
createdAt:"Float",
|
|
431
|
+
updatedAt:"Float",
|
|
432
|
+
draft_version:"Boolean",
|
|
433
|
+
json_ld:"String"
|
|
434
|
+
},
|
|
435
|
+
ViewhowitworksFeature_control:{
|
|
288
436
|
title:"String",
|
|
289
|
-
|
|
290
|
-
|
|
437
|
+
description:"String",
|
|
438
|
+
image:"ImageField"
|
|
439
|
+
},
|
|
440
|
+
Viewhowitworks:{
|
|
441
|
+
_version:"VersionField",
|
|
442
|
+
title:"String",
|
|
443
|
+
feature_control:"ViewhowitworksFeature_control",
|
|
444
|
+
locale:"String",
|
|
445
|
+
slug:"String",
|
|
446
|
+
_id:"String",
|
|
447
|
+
createdAt:"Float",
|
|
448
|
+
updatedAt:"Float",
|
|
449
|
+
draft_version:"Boolean",
|
|
450
|
+
json_ld:"String"
|
|
451
|
+
},
|
|
452
|
+
Viewpricing:{
|
|
453
|
+
_version:"VersionField",
|
|
454
|
+
pricing:"Shapepricingv1",
|
|
455
|
+
table:"Shapepricing_table",
|
|
456
|
+
cta:"Shapenewshape",
|
|
457
|
+
locale:"String",
|
|
291
458
|
slug:"String",
|
|
292
459
|
_id:"String",
|
|
293
460
|
createdAt:"Float",
|
|
@@ -295,7 +462,290 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
295
462
|
draft_version:"Boolean",
|
|
296
463
|
json_ld:"String"
|
|
297
464
|
},
|
|
298
|
-
|
|
465
|
+
Shapedocs_contentDocumentation_pageContent_containerDoc_content:{
|
|
466
|
+
content:"String"
|
|
467
|
+
},
|
|
468
|
+
Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container:{
|
|
469
|
+
scrollspy_title:"String",
|
|
470
|
+
scrollspy_list:"String"
|
|
471
|
+
},
|
|
472
|
+
Shapedocs_contentDocumentation_pageContent_containerScrollspy:{
|
|
473
|
+
scrollspy_container:"Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"
|
|
474
|
+
},
|
|
475
|
+
Shapedocs_contentDocumentation_pageContent_container:{
|
|
476
|
+
doc_content:"Shapedocs_contentDocumentation_pageContent_containerDoc_content",
|
|
477
|
+
scrollspy:"Shapedocs_contentDocumentation_pageContent_containerScrollspy"
|
|
478
|
+
},
|
|
479
|
+
Shapedocs_contentDocumentation_page:{
|
|
480
|
+
content_container:"Shapedocs_contentDocumentation_pageContent_container"
|
|
481
|
+
},
|
|
482
|
+
Shapedocs_content:{
|
|
483
|
+
documentation_page:"Shapedocs_contentDocumentation_page",
|
|
484
|
+
_id:"String",
|
|
485
|
+
createdAt:"Float",
|
|
486
|
+
updatedAt:"Float"
|
|
487
|
+
},
|
|
488
|
+
Shapedocs_navMainListChildrenCategory:{
|
|
489
|
+
name:"String",
|
|
490
|
+
link:"String"
|
|
491
|
+
},
|
|
492
|
+
Shapedocs_navMainListChildren:{
|
|
493
|
+
category:"Shapedocs_navMainListChildrenCategory"
|
|
494
|
+
},
|
|
495
|
+
Shapedocs_navMainList:{
|
|
496
|
+
title:"String",
|
|
497
|
+
children:"Shapedocs_navMainListChildren"
|
|
498
|
+
},
|
|
499
|
+
Shapedocs_navMain:{
|
|
500
|
+
list:"Shapedocs_navMainList"
|
|
501
|
+
},
|
|
502
|
+
Shapedocs_nav:{
|
|
503
|
+
main:"Shapedocs_navMain",
|
|
504
|
+
_id:"String",
|
|
505
|
+
createdAt:"Float",
|
|
506
|
+
updatedAt:"Float"
|
|
507
|
+
},
|
|
508
|
+
ShapefeaturepresentationMain:{
|
|
509
|
+
title:"String",
|
|
510
|
+
subtitle:"String",
|
|
511
|
+
content:"String"
|
|
512
|
+
},
|
|
513
|
+
Shapefeaturepresentation:{
|
|
514
|
+
main:"ShapefeaturepresentationMain",
|
|
515
|
+
_id:"String",
|
|
516
|
+
createdAt:"Float",
|
|
517
|
+
updatedAt:"Float"
|
|
518
|
+
},
|
|
519
|
+
ShapefootFooterFooter_containerFooter_links:{
|
|
520
|
+
privacy_policy:"String",
|
|
521
|
+
terms_of_service:"String",
|
|
522
|
+
contact_us:"String"
|
|
523
|
+
},
|
|
524
|
+
ShapefootFooterFooter_container:{
|
|
525
|
+
footer_logo:"String",
|
|
526
|
+
footer_links:"ShapefootFooterFooter_containerFooter_links",
|
|
527
|
+
footer_copy:"String"
|
|
528
|
+
},
|
|
529
|
+
ShapefootFooter:{
|
|
530
|
+
footer_container:"ShapefootFooterFooter_container"
|
|
531
|
+
},
|
|
532
|
+
Shapefoot:{
|
|
533
|
+
footer:"ShapefootFooter",
|
|
534
|
+
_id:"String",
|
|
535
|
+
createdAt:"Float",
|
|
536
|
+
updatedAt:"Float"
|
|
537
|
+
},
|
|
538
|
+
ShapeheroHero_componentSlogan_parent:{
|
|
539
|
+
slogan:"String"
|
|
540
|
+
},
|
|
541
|
+
ShapeheroHero_component:{
|
|
542
|
+
logoplace:"String",
|
|
543
|
+
logo:"String",
|
|
544
|
+
slogan_parent:"ShapeheroHero_componentSlogan_parent",
|
|
545
|
+
subslogan:"String"
|
|
546
|
+
},
|
|
547
|
+
Shapehero:{
|
|
548
|
+
hero_component:"ShapeheroHero_component",
|
|
549
|
+
_id:"String",
|
|
550
|
+
createdAt:"Float",
|
|
551
|
+
updatedAt:"Float"
|
|
552
|
+
},
|
|
553
|
+
ShapeheroxHero_sectionHero_containerText_wrapperFeatures:{
|
|
554
|
+
feature:"String"
|
|
555
|
+
},
|
|
556
|
+
ShapeheroxHero_sectionHero_containerText_wrapper:{
|
|
557
|
+
title:"String",
|
|
558
|
+
description:"String",
|
|
559
|
+
features:"ShapeheroxHero_sectionHero_containerText_wrapperFeatures"
|
|
560
|
+
},
|
|
561
|
+
ShapeheroxHero_sectionHero_containerImage_wrapper:{
|
|
562
|
+
hero_image:"ImageField"
|
|
563
|
+
},
|
|
564
|
+
ShapeheroxHero_sectionHero_containerPresentation:{
|
|
565
|
+
video:"VideoField"
|
|
566
|
+
},
|
|
567
|
+
ShapeheroxHero_sectionHero_container:{
|
|
568
|
+
text_wrapper:"ShapeheroxHero_sectionHero_containerText_wrapper",
|
|
569
|
+
image_wrapper:"ShapeheroxHero_sectionHero_containerImage_wrapper",
|
|
570
|
+
presentation:"ShapeheroxHero_sectionHero_containerPresentation"
|
|
571
|
+
},
|
|
572
|
+
ShapeheroxHero_section:{
|
|
573
|
+
hero_container:"ShapeheroxHero_sectionHero_container"
|
|
574
|
+
},
|
|
575
|
+
Shapeherox:{
|
|
576
|
+
hero_section:"ShapeheroxHero_section",
|
|
577
|
+
_id:"String",
|
|
578
|
+
createdAt:"Float",
|
|
579
|
+
updatedAt:"Float"
|
|
580
|
+
},
|
|
581
|
+
Shapelista_projektowListProjectsInstance:{
|
|
582
|
+
title:"String",
|
|
583
|
+
link:"String",
|
|
584
|
+
remove_button:"String"
|
|
585
|
+
},
|
|
586
|
+
Shapelista_projektowListProjects:{
|
|
587
|
+
instance:"Shapelista_projektowListProjectsInstance"
|
|
588
|
+
},
|
|
589
|
+
Shapelista_projektowList:{
|
|
590
|
+
title:"String",
|
|
591
|
+
subtitle:"String",
|
|
592
|
+
projects:"Shapelista_projektowListProjects"
|
|
593
|
+
},
|
|
594
|
+
Shapelista_projektow:{
|
|
595
|
+
list:"Shapelista_projektowList",
|
|
596
|
+
_id:"String",
|
|
597
|
+
createdAt:"Float",
|
|
598
|
+
updatedAt:"Float"
|
|
599
|
+
},
|
|
600
|
+
ShapenavNavigationNavigation_linksLink:{
|
|
601
|
+
display:"String",
|
|
602
|
+
href:"String"
|
|
603
|
+
},
|
|
604
|
+
ShapenavNavigationNavigation_links:{
|
|
605
|
+
link:"ShapenavNavigationNavigation_linksLink"
|
|
606
|
+
},
|
|
607
|
+
ShapenavNavigation:{
|
|
608
|
+
logo:"String",
|
|
609
|
+
navigation_links:"ShapenavNavigationNavigation_links"
|
|
610
|
+
},
|
|
611
|
+
Shapenav:{
|
|
612
|
+
navigation:"ShapenavNavigation",
|
|
613
|
+
_id:"String",
|
|
614
|
+
createdAt:"Float",
|
|
615
|
+
updatedAt:"Float"
|
|
616
|
+
},
|
|
617
|
+
ShapenewshapeBackgroundContent:{
|
|
618
|
+
badge:"String",
|
|
619
|
+
headline:"String",
|
|
620
|
+
subheadline:"String",
|
|
621
|
+
cta_label:"String",
|
|
622
|
+
cta_href:"String"
|
|
623
|
+
},
|
|
624
|
+
ShapenewshapeBackground:{
|
|
625
|
+
overlay_gradient:"Boolean",
|
|
626
|
+
content:"ShapenewshapeBackgroundContent",
|
|
627
|
+
hero_image:"ImageField"
|
|
628
|
+
},
|
|
629
|
+
Shapenewshape:{
|
|
630
|
+
background:"ShapenewshapeBackground",
|
|
631
|
+
_id:"String",
|
|
632
|
+
createdAt:"Float",
|
|
633
|
+
updatedAt:"Float"
|
|
634
|
+
},
|
|
635
|
+
Shapepricing_tablePricing_sectionHeader_wrapper:{
|
|
636
|
+
title:"String",
|
|
637
|
+
description:"String"
|
|
638
|
+
},
|
|
639
|
+
Shapepricing_tablePricing_sectionPricing_tableTable_head:{
|
|
640
|
+
feature:"String",
|
|
641
|
+
unit:"String",
|
|
642
|
+
price:"String"
|
|
643
|
+
},
|
|
644
|
+
Shapepricing_tablePricing_sectionPricing_tableRows:{
|
|
645
|
+
feature:"String",
|
|
646
|
+
unit:"String",
|
|
647
|
+
price:"String"
|
|
648
|
+
},
|
|
649
|
+
Shapepricing_tablePricing_sectionPricing_table:{
|
|
650
|
+
table_head:"Shapepricing_tablePricing_sectionPricing_tableTable_head",
|
|
651
|
+
rows:"Shapepricing_tablePricing_sectionPricing_tableRows"
|
|
652
|
+
},
|
|
653
|
+
Shapepricing_tablePricing_section:{
|
|
654
|
+
header_wrapper:"Shapepricing_tablePricing_sectionHeader_wrapper",
|
|
655
|
+
pricing_table:"Shapepricing_tablePricing_sectionPricing_table"
|
|
656
|
+
},
|
|
657
|
+
Shapepricing_table:{
|
|
658
|
+
pricing_section:"Shapepricing_tablePricing_section",
|
|
659
|
+
_id:"String",
|
|
660
|
+
createdAt:"Float",
|
|
661
|
+
updatedAt:"Float"
|
|
662
|
+
},
|
|
663
|
+
Shapepricingv1Pricing_sectionHeader_wrapper:{
|
|
664
|
+
title:"String",
|
|
665
|
+
description:"String"
|
|
666
|
+
},
|
|
667
|
+
Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list:{
|
|
668
|
+
feature:"String"
|
|
669
|
+
},
|
|
670
|
+
Shapepricingv1Pricing_sectionPlans_gridFree_plan:{
|
|
671
|
+
plan_name:"String",
|
|
672
|
+
price:"String",
|
|
673
|
+
plan_description:"String",
|
|
674
|
+
feature_list:"Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list",
|
|
675
|
+
cta:"String"
|
|
676
|
+
},
|
|
677
|
+
Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list:{
|
|
678
|
+
feature:"String"
|
|
679
|
+
},
|
|
680
|
+
Shapepricingv1Pricing_sectionPlans_gridPaid_plan:{
|
|
681
|
+
plan_name:"String",
|
|
682
|
+
price:"String",
|
|
683
|
+
plan_description:"String",
|
|
684
|
+
feature_list:"Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list",
|
|
685
|
+
cta:"String"
|
|
686
|
+
},
|
|
687
|
+
Shapepricingv1Pricing_sectionPlans_grid:{
|
|
688
|
+
free_plan:"Shapepricingv1Pricing_sectionPlans_gridFree_plan",
|
|
689
|
+
paid_plan:"Shapepricingv1Pricing_sectionPlans_gridPaid_plan"
|
|
690
|
+
},
|
|
691
|
+
Shapepricingv1Pricing_section:{
|
|
692
|
+
header_wrapper:"Shapepricingv1Pricing_sectionHeader_wrapper",
|
|
693
|
+
plans_grid:"Shapepricingv1Pricing_sectionPlans_grid"
|
|
694
|
+
},
|
|
695
|
+
Shapepricingv1:{
|
|
696
|
+
pricing_section:"Shapepricingv1Pricing_section",
|
|
697
|
+
_id:"String",
|
|
698
|
+
createdAt:"Float",
|
|
699
|
+
updatedAt:"Float"
|
|
700
|
+
},
|
|
701
|
+
Shapeprofile_infoProfile_sectionAccount_headerInfo:{
|
|
702
|
+
full_name:"String",
|
|
703
|
+
company:"String",
|
|
704
|
+
email:"String"
|
|
705
|
+
},
|
|
706
|
+
Shapeprofile_infoProfile_sectionAccount_header:{
|
|
707
|
+
avatar:"ImageField",
|
|
708
|
+
info:"Shapeprofile_infoProfile_sectionAccount_headerInfo"
|
|
709
|
+
},
|
|
710
|
+
Shapeprofile_infoProfile_sectionPlan_status:{
|
|
711
|
+
plan:"String"
|
|
712
|
+
},
|
|
713
|
+
Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens:{
|
|
714
|
+
label:"String",
|
|
715
|
+
value:"String"
|
|
716
|
+
},
|
|
717
|
+
Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens:{
|
|
718
|
+
label:"String",
|
|
719
|
+
value:"String"
|
|
720
|
+
},
|
|
721
|
+
Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests:{
|
|
722
|
+
label:"String",
|
|
723
|
+
value:"String"
|
|
724
|
+
},
|
|
725
|
+
Shapeprofile_infoProfile_sectionUsage_section:{
|
|
726
|
+
ai_tokens:"Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens",
|
|
727
|
+
translate_tokens:"Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens",
|
|
728
|
+
monthly_api_requests:"Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"
|
|
729
|
+
},
|
|
730
|
+
Shapeprofile_infoProfile_section:{
|
|
731
|
+
account_header:"Shapeprofile_infoProfile_sectionAccount_header",
|
|
732
|
+
plan_status:"Shapeprofile_infoProfile_sectionPlan_status",
|
|
733
|
+
usage_section:"Shapeprofile_infoProfile_sectionUsage_section"
|
|
734
|
+
},
|
|
735
|
+
Shapeprofile_info:{
|
|
736
|
+
profile_section:"Shapeprofile_infoProfile_section",
|
|
737
|
+
_id:"String",
|
|
738
|
+
createdAt:"Float",
|
|
739
|
+
updatedAt:"Float"
|
|
740
|
+
},
|
|
741
|
+
ShapeusageMain:{
|
|
742
|
+
title:"String",
|
|
743
|
+
subtitle:"String",
|
|
744
|
+
period:"String",
|
|
745
|
+
tokens_consumed:"Float"
|
|
746
|
+
},
|
|
747
|
+
Shapeusage:{
|
|
748
|
+
main:"ShapeusageMain",
|
|
299
749
|
_id:"String",
|
|
300
750
|
createdAt:"Float",
|
|
301
751
|
updatedAt:"Float"
|
|
@@ -304,5 +754,6 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
304
754
|
}
|
|
305
755
|
|
|
306
756
|
export const Ops = {
|
|
307
|
-
query: "Query" as const
|
|
757
|
+
query: "Query" as const,
|
|
758
|
+
mutation: "Mutation" as const
|
|
308
759
|
}
|