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