@husar.ai/cli 0.1.3 → 0.1.4
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/zeus/const.js +28 -1191
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +555 -5124
- package/dist/zeus/index.js +5 -24
- package/dist/zeus/index.js.map +1 -1
- package/package.json +2 -2
- package/src/zeus/const.ts +184 -1391
- package/src/zeus/index.ts +548 -4633
package/src/zeus/const.ts
CHANGED
|
@@ -20,220 +20,16 @@ export const AllTypesProps: Record<string,any> = {
|
|
|
20
20
|
FormFieldType: "enum" as const,
|
|
21
21
|
CMSType: "enum" as const,
|
|
22
22
|
Query:{
|
|
23
|
-
|
|
23
|
+
listPaginateddemo:{
|
|
24
24
|
page:"PageInput",
|
|
25
25
|
rootParams:"RootParamsInput",
|
|
26
|
-
sort:"
|
|
27
|
-
filter:"
|
|
26
|
+
sort:"demoSortInput",
|
|
27
|
+
filter:"demoFilterInput"
|
|
28
28
|
},
|
|
29
|
-
|
|
29
|
+
onedemoBySlug:{
|
|
30
30
|
rootParams:"RootParamsInput"
|
|
31
31
|
},
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
},
|
|
35
|
-
listPaginatedauth_page:{
|
|
36
|
-
page:"PageInput",
|
|
37
|
-
rootParams:"RootParamsInput",
|
|
38
|
-
sort:"auth_pageSortInput",
|
|
39
|
-
filter:"auth_pageFilterInput"
|
|
40
|
-
},
|
|
41
|
-
oneauth_pageBySlug:{
|
|
42
|
-
rootParams:"RootParamsInput"
|
|
43
|
-
},
|
|
44
|
-
variantsauth_pageBySlug:{
|
|
45
|
-
|
|
46
|
-
},
|
|
47
|
-
listPaginatedauthor:{
|
|
48
|
-
page:"PageInput",
|
|
49
|
-
rootParams:"RootParamsInput",
|
|
50
|
-
sort:"authorSortInput",
|
|
51
|
-
filter:"authorFilterInput"
|
|
52
|
-
},
|
|
53
|
-
oneauthorBySlug:{
|
|
54
|
-
rootParams:"RootParamsInput"
|
|
55
|
-
},
|
|
56
|
-
variantsauthorBySlug:{
|
|
57
|
-
|
|
58
|
-
},
|
|
59
|
-
listPaginatedblog_page:{
|
|
60
|
-
page:"PageInput",
|
|
61
|
-
rootParams:"RootParamsInput",
|
|
62
|
-
sort:"blog_pageSortInput",
|
|
63
|
-
filter:"blog_pageFilterInput"
|
|
64
|
-
},
|
|
65
|
-
oneblog_pageBySlug:{
|
|
66
|
-
rootParams:"RootParamsInput"
|
|
67
|
-
},
|
|
68
|
-
variantsblog_pageBySlug:{
|
|
69
|
-
|
|
70
|
-
},
|
|
71
|
-
listPaginatedcards_section:{
|
|
72
|
-
page:"PageInput",
|
|
73
|
-
rootParams:"RootParamsInput",
|
|
74
|
-
sort:"cards_sectionSortInput",
|
|
75
|
-
filter:"cards_sectionFilterInput"
|
|
76
|
-
},
|
|
77
|
-
onecards_sectionBySlug:{
|
|
78
|
-
rootParams:"RootParamsInput"
|
|
79
|
-
},
|
|
80
|
-
variantscards_sectionBySlug:{
|
|
81
|
-
|
|
82
|
-
},
|
|
83
|
-
listPaginatedchangelog:{
|
|
84
|
-
page:"PageInput",
|
|
85
|
-
rootParams:"RootParamsInput",
|
|
86
|
-
sort:"changelogSortInput",
|
|
87
|
-
filter:"changelogFilterInput"
|
|
88
|
-
},
|
|
89
|
-
onechangelogBySlug:{
|
|
90
|
-
rootParams:"RootParamsInput"
|
|
91
|
-
},
|
|
92
|
-
variantschangelogBySlug:{
|
|
93
|
-
|
|
94
|
-
},
|
|
95
|
-
listPaginatedcontact_page:{
|
|
96
|
-
page:"PageInput",
|
|
97
|
-
rootParams:"RootParamsInput",
|
|
98
|
-
sort:"contact_pageSortInput",
|
|
99
|
-
filter:"contact_pageFilterInput"
|
|
100
|
-
},
|
|
101
|
-
onecontact_pageBySlug:{
|
|
102
|
-
rootParams:"RootParamsInput"
|
|
103
|
-
},
|
|
104
|
-
variantscontact_pageBySlug:{
|
|
105
|
-
|
|
106
|
-
},
|
|
107
|
-
listPaginatedfaq_section:{
|
|
108
|
-
page:"PageInput",
|
|
109
|
-
rootParams:"RootParamsInput",
|
|
110
|
-
sort:"faq_sectionSortInput",
|
|
111
|
-
filter:"faq_sectionFilterInput"
|
|
112
|
-
},
|
|
113
|
-
onefaq_sectionBySlug:{
|
|
114
|
-
rootParams:"RootParamsInput"
|
|
115
|
-
},
|
|
116
|
-
variantsfaq_sectionBySlug:{
|
|
117
|
-
|
|
118
|
-
},
|
|
119
|
-
listPaginatedfeatures_page:{
|
|
120
|
-
page:"PageInput",
|
|
121
|
-
rootParams:"RootParamsInput",
|
|
122
|
-
sort:"features_pageSortInput",
|
|
123
|
-
filter:"features_pageFilterInput"
|
|
124
|
-
},
|
|
125
|
-
onefeatures_pageBySlug:{
|
|
126
|
-
rootParams:"RootParamsInput"
|
|
127
|
-
},
|
|
128
|
-
variantsfeatures_pageBySlug:{
|
|
129
|
-
|
|
130
|
-
},
|
|
131
|
-
listPaginatedfooter:{
|
|
132
|
-
page:"PageInput",
|
|
133
|
-
rootParams:"RootParamsInput",
|
|
134
|
-
sort:"footerSortInput",
|
|
135
|
-
filter:"footerFilterInput"
|
|
136
|
-
},
|
|
137
|
-
onefooterBySlug:{
|
|
138
|
-
rootParams:"RootParamsInput"
|
|
139
|
-
},
|
|
140
|
-
variantsfooterBySlug:{
|
|
141
|
-
|
|
142
|
-
},
|
|
143
|
-
listPaginatedgetstarted_section:{
|
|
144
|
-
page:"PageInput",
|
|
145
|
-
rootParams:"RootParamsInput",
|
|
146
|
-
sort:"getstarted_sectionSortInput",
|
|
147
|
-
filter:"getstarted_sectionFilterInput"
|
|
148
|
-
},
|
|
149
|
-
onegetstarted_sectionBySlug:{
|
|
150
|
-
rootParams:"RootParamsInput"
|
|
151
|
-
},
|
|
152
|
-
variantsgetstarted_sectionBySlug:{
|
|
153
|
-
|
|
154
|
-
},
|
|
155
|
-
listPaginatedguide:{
|
|
156
|
-
page:"PageInput",
|
|
157
|
-
rootParams:"RootParamsInput",
|
|
158
|
-
sort:"guideSortInput",
|
|
159
|
-
filter:"guideFilterInput"
|
|
160
|
-
},
|
|
161
|
-
oneguideBySlug:{
|
|
162
|
-
rootParams:"RootParamsInput"
|
|
163
|
-
},
|
|
164
|
-
variantsguideBySlug:{
|
|
165
|
-
|
|
166
|
-
},
|
|
167
|
-
listPaginatedguide_page:{
|
|
168
|
-
page:"PageInput",
|
|
169
|
-
rootParams:"RootParamsInput",
|
|
170
|
-
sort:"guide_pageSortInput",
|
|
171
|
-
filter:"guide_pageFilterInput"
|
|
172
|
-
},
|
|
173
|
-
oneguide_pageBySlug:{
|
|
174
|
-
rootParams:"RootParamsInput"
|
|
175
|
-
},
|
|
176
|
-
variantsguide_pageBySlug:{
|
|
177
|
-
|
|
178
|
-
},
|
|
179
|
-
listPaginatedhome_page:{
|
|
180
|
-
page:"PageInput",
|
|
181
|
-
rootParams:"RootParamsInput",
|
|
182
|
-
sort:"home_pageSortInput",
|
|
183
|
-
filter:"home_pageFilterInput"
|
|
184
|
-
},
|
|
185
|
-
onehome_pageBySlug:{
|
|
186
|
-
rootParams:"RootParamsInput"
|
|
187
|
-
},
|
|
188
|
-
variantshome_pageBySlug:{
|
|
189
|
-
|
|
190
|
-
},
|
|
191
|
-
listPaginatedinfo_page:{
|
|
192
|
-
page:"PageInput",
|
|
193
|
-
rootParams:"RootParamsInput",
|
|
194
|
-
sort:"info_pageSortInput",
|
|
195
|
-
filter:"info_pageFilterInput"
|
|
196
|
-
},
|
|
197
|
-
oneinfo_pageBySlug:{
|
|
198
|
-
rootParams:"RootParamsInput"
|
|
199
|
-
},
|
|
200
|
-
variantsinfo_pageBySlug:{
|
|
201
|
-
|
|
202
|
-
},
|
|
203
|
-
listPaginatedinfo_section:{
|
|
204
|
-
page:"PageInput",
|
|
205
|
-
rootParams:"RootParamsInput",
|
|
206
|
-
sort:"info_sectionSortInput",
|
|
207
|
-
filter:"info_sectionFilterInput"
|
|
208
|
-
},
|
|
209
|
-
oneinfo_sectionBySlug:{
|
|
210
|
-
rootParams:"RootParamsInput"
|
|
211
|
-
},
|
|
212
|
-
variantsinfo_sectionBySlug:{
|
|
213
|
-
|
|
214
|
-
},
|
|
215
|
-
listPaginatednavigation:{
|
|
216
|
-
page:"PageInput",
|
|
217
|
-
rootParams:"RootParamsInput",
|
|
218
|
-
sort:"navigationSortInput",
|
|
219
|
-
filter:"navigationFilterInput"
|
|
220
|
-
},
|
|
221
|
-
onenavigationBySlug:{
|
|
222
|
-
rootParams:"RootParamsInput"
|
|
223
|
-
},
|
|
224
|
-
variantsnavigationBySlug:{
|
|
225
|
-
|
|
226
|
-
},
|
|
227
|
-
listPaginatedpolicy:{
|
|
228
|
-
page:"PageInput",
|
|
229
|
-
rootParams:"RootParamsInput",
|
|
230
|
-
sort:"policySortInput",
|
|
231
|
-
filter:"policyFilterInput"
|
|
232
|
-
},
|
|
233
|
-
onepolicyBySlug:{
|
|
234
|
-
rootParams:"RootParamsInput"
|
|
235
|
-
},
|
|
236
|
-
variantspolicyBySlug:{
|
|
32
|
+
variantsdemoBySlug:{
|
|
237
33
|
|
|
238
34
|
},
|
|
239
35
|
listPaginatedpost:{
|
|
@@ -247,159 +43,15 @@ export const AllTypesProps: Record<string,any> = {
|
|
|
247
43
|
},
|
|
248
44
|
variantspostBySlug:{
|
|
249
45
|
|
|
250
|
-
},
|
|
251
|
-
listPaginatedpricing_page:{
|
|
252
|
-
page:"PageInput",
|
|
253
|
-
rootParams:"RootParamsInput",
|
|
254
|
-
sort:"pricing_pageSortInput",
|
|
255
|
-
filter:"pricing_pageFilterInput"
|
|
256
|
-
},
|
|
257
|
-
onepricing_pageBySlug:{
|
|
258
|
-
rootParams:"RootParamsInput"
|
|
259
|
-
},
|
|
260
|
-
variantspricing_pageBySlug:{
|
|
261
|
-
|
|
262
|
-
},
|
|
263
|
-
listPaginatedsolution_page:{
|
|
264
|
-
page:"PageInput",
|
|
265
|
-
rootParams:"RootParamsInput",
|
|
266
|
-
sort:"solution_pageSortInput",
|
|
267
|
-
filter:"solution_pageFilterInput"
|
|
268
|
-
},
|
|
269
|
-
onesolution_pageBySlug:{
|
|
270
|
-
rootParams:"RootParamsInput"
|
|
271
|
-
},
|
|
272
|
-
variantssolution_pageBySlug:{
|
|
273
|
-
|
|
274
|
-
},
|
|
275
|
-
listPaginatedtechnologies_section:{
|
|
276
|
-
page:"PageInput",
|
|
277
|
-
rootParams:"RootParamsInput",
|
|
278
|
-
sort:"technologies_sectionSortInput",
|
|
279
|
-
filter:"technologies_sectionFilterInput"
|
|
280
|
-
},
|
|
281
|
-
onetechnologies_sectionBySlug:{
|
|
282
|
-
rootParams:"RootParamsInput"
|
|
283
|
-
},
|
|
284
|
-
variantstechnologies_sectionBySlug:{
|
|
285
|
-
|
|
286
|
-
},
|
|
287
|
-
listPaginatedusecase_page:{
|
|
288
|
-
page:"PageInput",
|
|
289
|
-
rootParams:"RootParamsInput",
|
|
290
|
-
sort:"usecase_pageSortInput",
|
|
291
|
-
filter:"usecase_pageFilterInput"
|
|
292
|
-
},
|
|
293
|
-
oneusecase_pageBySlug:{
|
|
294
|
-
rootParams:"RootParamsInput"
|
|
295
|
-
},
|
|
296
|
-
variantsusecase_pageBySlug:{
|
|
297
|
-
|
|
298
|
-
},
|
|
299
|
-
listPaginatedvalidation:{
|
|
300
|
-
page:"PageInput",
|
|
301
|
-
rootParams:"RootParamsInput",
|
|
302
|
-
sort:"validationSortInput",
|
|
303
|
-
filter:"validationFilterInput"
|
|
304
|
-
},
|
|
305
|
-
onevalidationBySlug:{
|
|
306
|
-
rootParams:"RootParamsInput"
|
|
307
|
-
},
|
|
308
|
-
variantsvalidationBySlug:{
|
|
309
|
-
|
|
310
46
|
}
|
|
311
47
|
},
|
|
312
48
|
ModelEnum: "enum" as const,
|
|
49
|
+
ShapeEnum: "enum" as const,
|
|
313
50
|
RootParamsInput:{
|
|
314
51
|
|
|
315
52
|
},
|
|
316
53
|
RootParamsEnum: "enum" as const,
|
|
317
|
-
|
|
318
|
-
slug:"Sort",
|
|
319
|
-
createdAt:"Sort",
|
|
320
|
-
updatedAt:"Sort"
|
|
321
|
-
},
|
|
322
|
-
auth_pageSortInput:{
|
|
323
|
-
slug:"Sort",
|
|
324
|
-
createdAt:"Sort",
|
|
325
|
-
updatedAt:"Sort"
|
|
326
|
-
},
|
|
327
|
-
authorSortInput:{
|
|
328
|
-
slug:"Sort",
|
|
329
|
-
createdAt:"Sort",
|
|
330
|
-
updatedAt:"Sort"
|
|
331
|
-
},
|
|
332
|
-
blog_pageSortInput:{
|
|
333
|
-
slug:"Sort",
|
|
334
|
-
createdAt:"Sort",
|
|
335
|
-
updatedAt:"Sort"
|
|
336
|
-
},
|
|
337
|
-
cards_sectionSortInput:{
|
|
338
|
-
slug:"Sort",
|
|
339
|
-
createdAt:"Sort",
|
|
340
|
-
updatedAt:"Sort"
|
|
341
|
-
},
|
|
342
|
-
changelogSortInput:{
|
|
343
|
-
slug:"Sort",
|
|
344
|
-
createdAt:"Sort",
|
|
345
|
-
updatedAt:"Sort"
|
|
346
|
-
},
|
|
347
|
-
contact_pageSortInput:{
|
|
348
|
-
slug:"Sort",
|
|
349
|
-
createdAt:"Sort",
|
|
350
|
-
updatedAt:"Sort"
|
|
351
|
-
},
|
|
352
|
-
faq_sectionSortInput:{
|
|
353
|
-
slug:"Sort",
|
|
354
|
-
createdAt:"Sort",
|
|
355
|
-
updatedAt:"Sort"
|
|
356
|
-
},
|
|
357
|
-
features_pageSortInput:{
|
|
358
|
-
slug:"Sort",
|
|
359
|
-
createdAt:"Sort",
|
|
360
|
-
updatedAt:"Sort"
|
|
361
|
-
},
|
|
362
|
-
footerSortInput:{
|
|
363
|
-
slug:"Sort",
|
|
364
|
-
createdAt:"Sort",
|
|
365
|
-
updatedAt:"Sort"
|
|
366
|
-
},
|
|
367
|
-
getstarted_sectionSortInput:{
|
|
368
|
-
slug:"Sort",
|
|
369
|
-
createdAt:"Sort",
|
|
370
|
-
updatedAt:"Sort"
|
|
371
|
-
},
|
|
372
|
-
guideSortInput:{
|
|
373
|
-
slug:"Sort",
|
|
374
|
-
createdAt:"Sort",
|
|
375
|
-
updatedAt:"Sort"
|
|
376
|
-
},
|
|
377
|
-
guide_pageSortInput:{
|
|
378
|
-
slug:"Sort",
|
|
379
|
-
createdAt:"Sort",
|
|
380
|
-
updatedAt:"Sort"
|
|
381
|
-
},
|
|
382
|
-
home_pageSortInput:{
|
|
383
|
-
slug:"Sort",
|
|
384
|
-
createdAt:"Sort",
|
|
385
|
-
updatedAt:"Sort"
|
|
386
|
-
},
|
|
387
|
-
info_pageSortInput:{
|
|
388
|
-
slug:"Sort",
|
|
389
|
-
createdAt:"Sort",
|
|
390
|
-
updatedAt:"Sort"
|
|
391
|
-
},
|
|
392
|
-
info_sectionSortInput:{
|
|
393
|
-
slug:"Sort",
|
|
394
|
-
createdAt:"Sort",
|
|
395
|
-
updatedAt:"Sort"
|
|
396
|
-
},
|
|
397
|
-
navigationSortInput:{
|
|
398
|
-
slug:"Sort",
|
|
399
|
-
createdAt:"Sort",
|
|
400
|
-
updatedAt:"Sort"
|
|
401
|
-
},
|
|
402
|
-
policySortInput:{
|
|
54
|
+
demoSortInput:{
|
|
403
55
|
slug:"Sort",
|
|
404
56
|
createdAt:"Sort",
|
|
405
57
|
updatedAt:"Sort"
|
|
@@ -409,1038 +61,217 @@ export const AllTypesProps: Record<string,any> = {
|
|
|
409
61
|
createdAt:"Sort",
|
|
410
62
|
updatedAt:"Sort"
|
|
411
63
|
},
|
|
412
|
-
|
|
413
|
-
slug:"Sort",
|
|
414
|
-
createdAt:"Sort",
|
|
415
|
-
updatedAt:"Sort"
|
|
416
|
-
},
|
|
417
|
-
solution_pageSortInput:{
|
|
418
|
-
slug:"Sort",
|
|
419
|
-
createdAt:"Sort",
|
|
420
|
-
updatedAt:"Sort"
|
|
421
|
-
},
|
|
422
|
-
technologies_sectionSortInput:{
|
|
423
|
-
slug:"Sort",
|
|
424
|
-
createdAt:"Sort",
|
|
425
|
-
updatedAt:"Sort"
|
|
426
|
-
},
|
|
427
|
-
usecase_pageSortInput:{
|
|
428
|
-
slug:"Sort",
|
|
429
|
-
createdAt:"Sort",
|
|
430
|
-
updatedAt:"Sort"
|
|
431
|
-
},
|
|
432
|
-
validationSortInput:{
|
|
433
|
-
slug:"Sort",
|
|
434
|
-
createdAt:"Sort",
|
|
435
|
-
updatedAt:"Sort"
|
|
436
|
-
},
|
|
437
|
-
actionsFilterInput:{
|
|
438
|
-
slug:"FilterInputString"
|
|
439
|
-
},
|
|
440
|
-
auth_pageFilterInput:{
|
|
441
|
-
slug:"FilterInputString"
|
|
442
|
-
},
|
|
443
|
-
authorFilterInput:{
|
|
444
|
-
slug:"FilterInputString"
|
|
445
|
-
},
|
|
446
|
-
blog_pageFilterInput:{
|
|
64
|
+
demoFilterInput:{
|
|
447
65
|
slug:"FilterInputString"
|
|
448
66
|
},
|
|
449
|
-
|
|
450
|
-
slug:"FilterInputString"
|
|
451
|
-
},
|
|
452
|
-
changelogFilterInput:{
|
|
453
|
-
slug:"FilterInputString"
|
|
454
|
-
},
|
|
455
|
-
contact_pageFilterInput:{
|
|
456
|
-
slug:"FilterInputString"
|
|
457
|
-
},
|
|
458
|
-
faq_sectionFilterInput:{
|
|
67
|
+
postFilterInput:{
|
|
459
68
|
slug:"FilterInputString"
|
|
460
69
|
},
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
},
|
|
476
|
-
home_pageFilterInput:{
|
|
477
|
-
slug:"FilterInputString"
|
|
478
|
-
},
|
|
479
|
-
info_pageFilterInput:{
|
|
480
|
-
slug:"FilterInputString"
|
|
481
|
-
},
|
|
482
|
-
info_sectionFilterInput:{
|
|
483
|
-
slug:"FilterInputString"
|
|
484
|
-
},
|
|
485
|
-
navigationFilterInput:{
|
|
486
|
-
slug:"FilterInputString"
|
|
487
|
-
},
|
|
488
|
-
policyFilterInput:{
|
|
489
|
-
slug:"FilterInputString"
|
|
490
|
-
},
|
|
491
|
-
postFilterInput:{
|
|
492
|
-
slug:"FilterInputString"
|
|
493
|
-
},
|
|
494
|
-
pricing_pageFilterInput:{
|
|
495
|
-
slug:"FilterInputString"
|
|
496
|
-
},
|
|
497
|
-
solution_pageFilterInput:{
|
|
498
|
-
slug:"FilterInputString"
|
|
499
|
-
},
|
|
500
|
-
technologies_sectionFilterInput:{
|
|
501
|
-
slug:"FilterInputString"
|
|
502
|
-
},
|
|
503
|
-
usecase_pageFilterInput:{
|
|
504
|
-
slug:"FilterInputString"
|
|
505
|
-
},
|
|
506
|
-
validationFilterInput:{
|
|
507
|
-
slug:"FilterInputString"
|
|
508
|
-
},
|
|
509
|
-
ID: `scalar.ID` as const
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
export const ReturnTypes: Record<string,any> = {
|
|
513
|
-
ObjectId: `scalar.ObjectId` as const,
|
|
514
|
-
S3Scalar: `scalar.S3Scalar` as const,
|
|
515
|
-
Timestamp: `scalar.Timestamp` as const,
|
|
516
|
-
ModelNavigationCompiled: `scalar.ModelNavigationCompiled` as const,
|
|
517
|
-
BakedIpsumData: `scalar.BakedIpsumData` as const,
|
|
518
|
-
JSON: `scalar.JSON` as const,
|
|
519
|
-
TailwindConfiguration:{
|
|
520
|
-
content:"String",
|
|
521
|
-
contentForClient:"String",
|
|
522
|
-
compiledForIframe:"String"
|
|
523
|
-
},
|
|
524
|
-
VersionField:{
|
|
525
|
-
name:"String",
|
|
526
|
-
from:"Timestamp",
|
|
527
|
-
to:"Timestamp"
|
|
528
|
-
},
|
|
529
|
-
RangeField:{
|
|
530
|
-
min:"Float",
|
|
531
|
-
max:"Float"
|
|
532
|
-
},
|
|
533
|
-
ImageField:{
|
|
534
|
-
url:"S3Scalar",
|
|
535
|
-
thumbnail:"S3Scalar",
|
|
536
|
-
alt:"String"
|
|
537
|
-
},
|
|
538
|
-
VideoField:{
|
|
539
|
-
url:"S3Scalar",
|
|
540
|
-
previewImage:"S3Scalar",
|
|
541
|
-
alt:"String"
|
|
542
|
-
},
|
|
543
|
-
InternalLink:{
|
|
544
|
-
_id:"ObjectId",
|
|
545
|
-
keys:"String",
|
|
546
|
-
href:"String"
|
|
547
|
-
},
|
|
548
|
-
RootCMSParam:{
|
|
549
|
-
name:"String",
|
|
550
|
-
options:"String",
|
|
551
|
-
default:"String"
|
|
552
|
-
},
|
|
553
|
-
ModelNavigation:{
|
|
554
|
-
name:"String",
|
|
555
|
-
display:"String",
|
|
556
|
-
fields:"CMSField",
|
|
557
|
-
fieldSet:"String"
|
|
558
|
-
},
|
|
559
|
-
CMSField:{
|
|
560
|
-
name:"String",
|
|
561
|
-
display:"String",
|
|
562
|
-
type:"CMSType",
|
|
563
|
-
list:"Boolean",
|
|
564
|
-
searchable:"Boolean",
|
|
565
|
-
sortable:"Boolean",
|
|
566
|
-
filterable:"Boolean",
|
|
567
|
-
rangeValues:"Float",
|
|
568
|
-
options:"String",
|
|
569
|
-
relation:"String",
|
|
570
|
-
fields:"CMSField",
|
|
571
|
-
builtIn:"Boolean",
|
|
572
|
-
visual:"Visual",
|
|
573
|
-
conditions:"Condition",
|
|
574
|
-
nonTranslatable:"Boolean"
|
|
575
|
-
},
|
|
576
|
-
Condition:{
|
|
577
|
-
type:"ConditionType",
|
|
578
|
-
path:"String",
|
|
579
|
-
operator:"ConditionOperator",
|
|
580
|
-
setOperator:"ConditionSetOperator",
|
|
581
|
-
value:"String",
|
|
582
|
-
children:"Condition"
|
|
583
|
-
},
|
|
584
|
-
Visual:{
|
|
585
|
-
className:"String",
|
|
586
|
-
component:"String"
|
|
587
|
-
},
|
|
588
|
-
PageInfo:{
|
|
589
|
-
total:"Int",
|
|
590
|
-
hasNext:"Boolean"
|
|
591
|
-
},
|
|
592
|
-
Shape:{
|
|
593
|
-
name:"String",
|
|
594
|
-
slug:"String",
|
|
595
|
-
display:"String",
|
|
596
|
-
previewFields:"BakedIpsumData",
|
|
597
|
-
prompt:"String",
|
|
598
|
-
promptResponse:"AiComponent",
|
|
599
|
-
fields:"CMSField"
|
|
600
|
-
},
|
|
601
|
-
View:{
|
|
602
|
-
name:"String",
|
|
603
|
-
fields:"CMSField",
|
|
604
|
-
slug:"String",
|
|
605
|
-
display:"String"
|
|
606
|
-
},
|
|
607
|
-
AiComponent:{
|
|
608
|
-
name:"String",
|
|
609
|
-
htmlComponent:"String",
|
|
610
|
-
className:"String",
|
|
611
|
-
textContent:"String",
|
|
612
|
-
children:"AiComponent"
|
|
613
|
-
},
|
|
614
|
-
FormField:{
|
|
615
|
-
name:"String",
|
|
616
|
-
display:"String",
|
|
617
|
-
type:"FormFieldType",
|
|
618
|
-
list:"Boolean",
|
|
619
|
-
fields:"FormField",
|
|
620
|
-
visual:"Visual",
|
|
621
|
-
conditions:"Condition",
|
|
622
|
-
placeholder:"String",
|
|
623
|
-
root:"Boolean",
|
|
624
|
-
options:"String",
|
|
625
|
-
builtIn:"Boolean",
|
|
626
|
-
nonTranslatable:"Boolean"
|
|
627
|
-
},
|
|
628
|
-
Form:{
|
|
629
|
-
name:"String",
|
|
630
|
-
display:"String",
|
|
631
|
-
fields:"FormField"
|
|
632
|
-
},
|
|
633
|
-
FormTextField:{
|
|
634
|
-
label:"String",
|
|
635
|
-
placeholder:"String"
|
|
636
|
-
},
|
|
637
|
-
FormBooleanField:{
|
|
638
|
-
label:"String"
|
|
639
|
-
},
|
|
640
|
-
FormContentField:{
|
|
641
|
-
label:"String",
|
|
642
|
-
placeholder:"String"
|
|
643
|
-
},
|
|
644
|
-
FormRadioField:{
|
|
645
|
-
label:"String"
|
|
646
|
-
},
|
|
647
|
-
FormStepField:{
|
|
648
|
-
label:"String"
|
|
649
|
-
},
|
|
650
|
-
FormTextareaField:{
|
|
651
|
-
label:"String",
|
|
652
|
-
placeholder:"String"
|
|
653
|
-
},
|
|
654
|
-
FormGroupField:{
|
|
655
|
-
label:"String"
|
|
656
|
-
},
|
|
657
|
-
FormArrayStepField:{
|
|
658
|
-
label:"String"
|
|
659
|
-
},
|
|
660
|
-
FormRouteField:{
|
|
661
|
-
label:"String",
|
|
662
|
-
portal:"String"
|
|
663
|
-
},
|
|
664
|
-
FormPortalField:{
|
|
665
|
-
label:"String"
|
|
666
|
-
},
|
|
667
|
-
FormSubmitField:{
|
|
668
|
-
label:"String"
|
|
669
|
-
},
|
|
670
|
-
FormNumberField:{
|
|
671
|
-
label:"String"
|
|
672
|
-
},
|
|
673
|
-
FormRadioTextField:{
|
|
674
|
-
label:"String",
|
|
675
|
-
options:"String"
|
|
676
|
-
},
|
|
677
|
-
FormProductField:{
|
|
678
|
-
label:"String",
|
|
679
|
-
name:"String"
|
|
680
|
-
},
|
|
681
|
-
Query:{
|
|
682
|
-
navigation:"ModelNavigation",
|
|
683
|
-
rootParams:"RootCMSParam",
|
|
684
|
-
versions:"VersionField",
|
|
685
|
-
links:"InternalLink",
|
|
686
|
-
listViews:"View",
|
|
687
|
-
listShapes:"Shape",
|
|
688
|
-
tailwind:"TailwindConfiguration",
|
|
689
|
-
listForms:"Form",
|
|
690
|
-
listPaginatedactions:"actions__Connection",
|
|
691
|
-
oneactionsBySlug:"actions",
|
|
692
|
-
variantsactionsBySlug:"actions",
|
|
693
|
-
fieldSetactions:"String",
|
|
694
|
-
modelactions:"ModelNavigationCompiled",
|
|
695
|
-
previewFieldsactions:"ModelNavigationCompiled",
|
|
696
|
-
listPaginatedauth_page:"auth_page__Connection",
|
|
697
|
-
oneauth_pageBySlug:"auth_page",
|
|
698
|
-
variantsauth_pageBySlug:"auth_page",
|
|
699
|
-
fieldSetauth_page:"String",
|
|
700
|
-
modelauth_page:"ModelNavigationCompiled",
|
|
701
|
-
previewFieldsauth_page:"ModelNavigationCompiled",
|
|
702
|
-
listPaginatedauthor:"author__Connection",
|
|
703
|
-
oneauthorBySlug:"author",
|
|
704
|
-
variantsauthorBySlug:"author",
|
|
705
|
-
fieldSetauthor:"String",
|
|
706
|
-
modelauthor:"ModelNavigationCompiled",
|
|
707
|
-
previewFieldsauthor:"ModelNavigationCompiled",
|
|
708
|
-
listPaginatedblog_page:"blog_page__Connection",
|
|
709
|
-
oneblog_pageBySlug:"blog_page",
|
|
710
|
-
variantsblog_pageBySlug:"blog_page",
|
|
711
|
-
fieldSetblog_page:"String",
|
|
712
|
-
modelblog_page:"ModelNavigationCompiled",
|
|
713
|
-
previewFieldsblog_page:"ModelNavigationCompiled",
|
|
714
|
-
listPaginatedcards_section:"cards_section__Connection",
|
|
715
|
-
onecards_sectionBySlug:"cards_section",
|
|
716
|
-
variantscards_sectionBySlug:"cards_section",
|
|
717
|
-
fieldSetcards_section:"String",
|
|
718
|
-
modelcards_section:"ModelNavigationCompiled",
|
|
719
|
-
previewFieldscards_section:"ModelNavigationCompiled",
|
|
720
|
-
listPaginatedchangelog:"changelog__Connection",
|
|
721
|
-
onechangelogBySlug:"changelog",
|
|
722
|
-
variantschangelogBySlug:"changelog",
|
|
723
|
-
fieldSetchangelog:"String",
|
|
724
|
-
modelchangelog:"ModelNavigationCompiled",
|
|
725
|
-
previewFieldschangelog:"ModelNavigationCompiled",
|
|
726
|
-
listPaginatedcontact_page:"contact_page__Connection",
|
|
727
|
-
onecontact_pageBySlug:"contact_page",
|
|
728
|
-
variantscontact_pageBySlug:"contact_page",
|
|
729
|
-
fieldSetcontact_page:"String",
|
|
730
|
-
modelcontact_page:"ModelNavigationCompiled",
|
|
731
|
-
previewFieldscontact_page:"ModelNavigationCompiled",
|
|
732
|
-
listPaginatedfaq_section:"faq_section__Connection",
|
|
733
|
-
onefaq_sectionBySlug:"faq_section",
|
|
734
|
-
variantsfaq_sectionBySlug:"faq_section",
|
|
735
|
-
fieldSetfaq_section:"String",
|
|
736
|
-
modelfaq_section:"ModelNavigationCompiled",
|
|
737
|
-
previewFieldsfaq_section:"ModelNavigationCompiled",
|
|
738
|
-
listPaginatedfeatures_page:"features_page__Connection",
|
|
739
|
-
onefeatures_pageBySlug:"features_page",
|
|
740
|
-
variantsfeatures_pageBySlug:"features_page",
|
|
741
|
-
fieldSetfeatures_page:"String",
|
|
742
|
-
modelfeatures_page:"ModelNavigationCompiled",
|
|
743
|
-
previewFieldsfeatures_page:"ModelNavigationCompiled",
|
|
744
|
-
listPaginatedfooter:"footer__Connection",
|
|
745
|
-
onefooterBySlug:"footer",
|
|
746
|
-
variantsfooterBySlug:"footer",
|
|
747
|
-
fieldSetfooter:"String",
|
|
748
|
-
modelfooter:"ModelNavigationCompiled",
|
|
749
|
-
previewFieldsfooter:"ModelNavigationCompiled",
|
|
750
|
-
listPaginatedgetstarted_section:"getstarted_section__Connection",
|
|
751
|
-
onegetstarted_sectionBySlug:"getstarted_section",
|
|
752
|
-
variantsgetstarted_sectionBySlug:"getstarted_section",
|
|
753
|
-
fieldSetgetstarted_section:"String",
|
|
754
|
-
modelgetstarted_section:"ModelNavigationCompiled",
|
|
755
|
-
previewFieldsgetstarted_section:"ModelNavigationCompiled",
|
|
756
|
-
listPaginatedguide:"guide__Connection",
|
|
757
|
-
oneguideBySlug:"guide",
|
|
758
|
-
variantsguideBySlug:"guide",
|
|
759
|
-
fieldSetguide:"String",
|
|
760
|
-
modelguide:"ModelNavigationCompiled",
|
|
761
|
-
previewFieldsguide:"ModelNavigationCompiled",
|
|
762
|
-
listPaginatedguide_page:"guide_page__Connection",
|
|
763
|
-
oneguide_pageBySlug:"guide_page",
|
|
764
|
-
variantsguide_pageBySlug:"guide_page",
|
|
765
|
-
fieldSetguide_page:"String",
|
|
766
|
-
modelguide_page:"ModelNavigationCompiled",
|
|
767
|
-
previewFieldsguide_page:"ModelNavigationCompiled",
|
|
768
|
-
listPaginatedhome_page:"home_page__Connection",
|
|
769
|
-
onehome_pageBySlug:"home_page",
|
|
770
|
-
variantshome_pageBySlug:"home_page",
|
|
771
|
-
fieldSethome_page:"String",
|
|
772
|
-
modelhome_page:"ModelNavigationCompiled",
|
|
773
|
-
previewFieldshome_page:"ModelNavigationCompiled",
|
|
774
|
-
listPaginatedinfo_page:"info_page__Connection",
|
|
775
|
-
oneinfo_pageBySlug:"info_page",
|
|
776
|
-
variantsinfo_pageBySlug:"info_page",
|
|
777
|
-
fieldSetinfo_page:"String",
|
|
778
|
-
modelinfo_page:"ModelNavigationCompiled",
|
|
779
|
-
previewFieldsinfo_page:"ModelNavigationCompiled",
|
|
780
|
-
listPaginatedinfo_section:"info_section__Connection",
|
|
781
|
-
oneinfo_sectionBySlug:"info_section",
|
|
782
|
-
variantsinfo_sectionBySlug:"info_section",
|
|
783
|
-
fieldSetinfo_section:"String",
|
|
784
|
-
modelinfo_section:"ModelNavigationCompiled",
|
|
785
|
-
previewFieldsinfo_section:"ModelNavigationCompiled",
|
|
786
|
-
listPaginatednavigation:"navigation__Connection",
|
|
787
|
-
onenavigationBySlug:"navigation",
|
|
788
|
-
variantsnavigationBySlug:"navigation",
|
|
789
|
-
fieldSetnavigation:"String",
|
|
790
|
-
modelnavigation:"ModelNavigationCompiled",
|
|
791
|
-
previewFieldsnavigation:"ModelNavigationCompiled",
|
|
792
|
-
listPaginatedpolicy:"policy__Connection",
|
|
793
|
-
onepolicyBySlug:"policy",
|
|
794
|
-
variantspolicyBySlug:"policy",
|
|
795
|
-
fieldSetpolicy:"String",
|
|
796
|
-
modelpolicy:"ModelNavigationCompiled",
|
|
797
|
-
previewFieldspolicy:"ModelNavigationCompiled",
|
|
798
|
-
listPaginatedpost:"post__Connection",
|
|
799
|
-
onepostBySlug:"post",
|
|
800
|
-
variantspostBySlug:"post",
|
|
801
|
-
fieldSetpost:"String",
|
|
802
|
-
modelpost:"ModelNavigationCompiled",
|
|
803
|
-
previewFieldspost:"ModelNavigationCompiled",
|
|
804
|
-
listPaginatedpricing_page:"pricing_page__Connection",
|
|
805
|
-
onepricing_pageBySlug:"pricing_page",
|
|
806
|
-
variantspricing_pageBySlug:"pricing_page",
|
|
807
|
-
fieldSetpricing_page:"String",
|
|
808
|
-
modelpricing_page:"ModelNavigationCompiled",
|
|
809
|
-
previewFieldspricing_page:"ModelNavigationCompiled",
|
|
810
|
-
listPaginatedsolution_page:"solution_page__Connection",
|
|
811
|
-
onesolution_pageBySlug:"solution_page",
|
|
812
|
-
variantssolution_pageBySlug:"solution_page",
|
|
813
|
-
fieldSetsolution_page:"String",
|
|
814
|
-
modelsolution_page:"ModelNavigationCompiled",
|
|
815
|
-
previewFieldssolution_page:"ModelNavigationCompiled",
|
|
816
|
-
listPaginatedtechnologies_section:"technologies_section__Connection",
|
|
817
|
-
onetechnologies_sectionBySlug:"technologies_section",
|
|
818
|
-
variantstechnologies_sectionBySlug:"technologies_section",
|
|
819
|
-
fieldSettechnologies_section:"String",
|
|
820
|
-
modeltechnologies_section:"ModelNavigationCompiled",
|
|
821
|
-
previewFieldstechnologies_section:"ModelNavigationCompiled",
|
|
822
|
-
listPaginatedusecase_page:"usecase_page__Connection",
|
|
823
|
-
oneusecase_pageBySlug:"usecase_page",
|
|
824
|
-
variantsusecase_pageBySlug:"usecase_page",
|
|
825
|
-
fieldSetusecase_page:"String",
|
|
826
|
-
modelusecase_page:"ModelNavigationCompiled",
|
|
827
|
-
previewFieldsusecase_page:"ModelNavigationCompiled",
|
|
828
|
-
listPaginatedvalidation:"validation__Connection",
|
|
829
|
-
onevalidationBySlug:"validation",
|
|
830
|
-
variantsvalidationBySlug:"validation",
|
|
831
|
-
fieldSetvalidation:"String",
|
|
832
|
-
modelvalidation:"ModelNavigationCompiled",
|
|
833
|
-
previewFieldsvalidation:"ModelNavigationCompiled"
|
|
834
|
-
},
|
|
835
|
-
actionsButtons:{
|
|
836
|
-
back:"String",
|
|
837
|
-
submit:"String"
|
|
838
|
-
},
|
|
839
|
-
actionsWaiting:{
|
|
840
|
-
header:"String",
|
|
841
|
-
description:"String",
|
|
842
|
-
text:"String"
|
|
843
|
-
},
|
|
844
|
-
actionsSuccess:{
|
|
845
|
-
header:"String",
|
|
846
|
-
description:"String",
|
|
847
|
-
text:"String"
|
|
848
|
-
},
|
|
849
|
-
actionsValid:{
|
|
850
|
-
header:"String",
|
|
851
|
-
input_password:"String",
|
|
852
|
-
input_repeat:"String",
|
|
853
|
-
email:"String"
|
|
854
|
-
},
|
|
855
|
-
actionsError:{
|
|
856
|
-
header:"String",
|
|
857
|
-
description:"String",
|
|
858
|
-
text:"String",
|
|
859
|
-
password_weak:"String",
|
|
860
|
-
invalid_token:"String",
|
|
861
|
-
send_email_error:"String"
|
|
862
|
-
},
|
|
863
|
-
actions__Connection:{
|
|
864
|
-
items:"actions",
|
|
865
|
-
pageInfo:"PageInfo"
|
|
866
|
-
},
|
|
867
|
-
actions:{
|
|
868
|
-
_version:"VersionField",
|
|
869
|
-
buttons:"actionsButtons",
|
|
870
|
-
waiting:"actionsWaiting",
|
|
871
|
-
success:"actionsSuccess",
|
|
872
|
-
valid:"actionsValid",
|
|
873
|
-
error:"actionsError",
|
|
874
|
-
locale:"String",
|
|
875
|
-
slug:"String",
|
|
876
|
-
_id:"String",
|
|
877
|
-
createdAt:"Float",
|
|
878
|
-
updatedAt:"Float",
|
|
879
|
-
draft_version:"Boolean",
|
|
880
|
-
json_ld:"String"
|
|
881
|
-
},
|
|
882
|
-
auth_pageForm_values:{
|
|
883
|
-
email_label:"String",
|
|
884
|
-
password_label:"String",
|
|
885
|
-
repeat_password_label:"String",
|
|
886
|
-
forget_password_link_text:"String",
|
|
887
|
-
terms_link_text:"String",
|
|
888
|
-
privacy_link_text:"String",
|
|
889
|
-
i_ve_read:"String",
|
|
890
|
-
form_header:"String",
|
|
891
|
-
form_description:"String",
|
|
892
|
-
waiting:"String",
|
|
893
|
-
waiting_unit:"String",
|
|
894
|
-
success_text:"String"
|
|
895
|
-
},
|
|
896
|
-
auth_pageForm_errors:{
|
|
897
|
-
sign_in_error:"String",
|
|
898
|
-
user_exist:"String",
|
|
899
|
-
register_error:"String",
|
|
900
|
-
passwords_not_match:"String",
|
|
901
|
-
send_error:"String",
|
|
902
|
-
temp_error:"String",
|
|
903
|
-
password_weak:"String",
|
|
904
|
-
username_invalid:"String",
|
|
905
|
-
username_or_password_invalid:"String"
|
|
906
|
-
},
|
|
907
|
-
auth_pageBottom:{
|
|
908
|
-
primary_text:"String",
|
|
909
|
-
link_text:"String"
|
|
910
|
-
},
|
|
911
|
-
auth_page__Connection:{
|
|
912
|
-
items:"auth_page",
|
|
913
|
-
pageInfo:"PageInfo"
|
|
914
|
-
},
|
|
915
|
-
auth_page:{
|
|
916
|
-
_version:"VersionField",
|
|
917
|
-
page_title:"String",
|
|
918
|
-
meta_description:"String",
|
|
919
|
-
canonical:"String",
|
|
920
|
-
header:"String",
|
|
921
|
-
action_button:"String",
|
|
922
|
-
form_values:"auth_pageForm_values",
|
|
923
|
-
form_errors:"auth_pageForm_errors",
|
|
924
|
-
bottom:"auth_pageBottom",
|
|
925
|
-
locale:"String",
|
|
926
|
-
slug:"String",
|
|
927
|
-
_id:"String",
|
|
928
|
-
createdAt:"Float",
|
|
929
|
-
updatedAt:"Float",
|
|
930
|
-
draft_version:"Boolean",
|
|
931
|
-
json_ld:"String"
|
|
932
|
-
},
|
|
933
|
-
author__Connection:{
|
|
934
|
-
items:"author",
|
|
935
|
-
pageInfo:"PageInfo"
|
|
936
|
-
},
|
|
937
|
-
author:{
|
|
938
|
-
_version:"VersionField",
|
|
939
|
-
name:"String",
|
|
940
|
-
picture:"ImageField",
|
|
941
|
-
title:"String",
|
|
942
|
-
locale:"String",
|
|
943
|
-
slug:"String",
|
|
944
|
-
_id:"String",
|
|
945
|
-
createdAt:"Float",
|
|
946
|
-
updatedAt:"Float",
|
|
947
|
-
draft_version:"Boolean",
|
|
948
|
-
json_ld:"String"
|
|
949
|
-
},
|
|
950
|
-
blog_page__Connection:{
|
|
951
|
-
items:"blog_page",
|
|
952
|
-
pageInfo:"PageInfo"
|
|
953
|
-
},
|
|
954
|
-
blog_page:{
|
|
955
|
-
_version:"VersionField",
|
|
956
|
-
page_title:"String",
|
|
957
|
-
meta_description:"String",
|
|
958
|
-
canonical:"String",
|
|
959
|
-
header:"String",
|
|
960
|
-
description:"String",
|
|
961
|
-
button_more:"String",
|
|
962
|
-
posts_recommendation:"String",
|
|
963
|
-
locale:"String",
|
|
964
|
-
slug:"String",
|
|
965
|
-
_id:"String",
|
|
966
|
-
createdAt:"Float",
|
|
967
|
-
updatedAt:"Float",
|
|
968
|
-
draft_version:"Boolean",
|
|
969
|
-
json_ld:"String"
|
|
970
|
-
},
|
|
971
|
-
cards_sectionTile:{
|
|
972
|
-
title:"String",
|
|
973
|
-
description:"String",
|
|
974
|
-
icon:"String"
|
|
975
|
-
},
|
|
976
|
-
cards_section__Connection:{
|
|
977
|
-
items:"cards_section",
|
|
978
|
-
pageInfo:"PageInfo"
|
|
979
|
-
},
|
|
980
|
-
cards_section:{
|
|
981
|
-
_version:"VersionField",
|
|
982
|
-
title:"String",
|
|
983
|
-
description:"String",
|
|
984
|
-
description2:"String",
|
|
985
|
-
tile:"cards_sectionTile",
|
|
986
|
-
locale:"String",
|
|
987
|
-
slug:"String",
|
|
988
|
-
_id:"String",
|
|
989
|
-
createdAt:"Float",
|
|
990
|
-
updatedAt:"Float",
|
|
991
|
-
draft_version:"Boolean",
|
|
992
|
-
json_ld:"String"
|
|
993
|
-
},
|
|
994
|
-
changelog__Connection:{
|
|
995
|
-
items:"changelog",
|
|
996
|
-
pageInfo:"PageInfo"
|
|
997
|
-
},
|
|
998
|
-
changelog:{
|
|
999
|
-
_version:"VersionField",
|
|
1000
|
-
badge_text:"String",
|
|
1001
|
-
badge_color:"String",
|
|
1002
|
-
title:"String",
|
|
1003
|
-
content:"String",
|
|
1004
|
-
locale:"String",
|
|
1005
|
-
slug:"String",
|
|
1006
|
-
_id:"String",
|
|
1007
|
-
createdAt:"Float",
|
|
1008
|
-
updatedAt:"Float",
|
|
1009
|
-
draft_version:"Boolean",
|
|
1010
|
-
json_ld:"String"
|
|
1011
|
-
},
|
|
1012
|
-
contact_pageBrand_section:{
|
|
1013
|
-
title:"String",
|
|
1014
|
-
description:"String",
|
|
1015
|
-
description2:"String"
|
|
1016
|
-
},
|
|
1017
|
-
contact_page__Connection:{
|
|
1018
|
-
items:"contact_page",
|
|
1019
|
-
pageInfo:"PageInfo"
|
|
1020
|
-
},
|
|
1021
|
-
contact_page:{
|
|
1022
|
-
_version:"VersionField",
|
|
1023
|
-
page_title:"String",
|
|
1024
|
-
meta_description:"String",
|
|
1025
|
-
canonical:"String",
|
|
1026
|
-
brand_section:"contact_pageBrand_section",
|
|
1027
|
-
header:"String",
|
|
1028
|
-
email:"String",
|
|
1029
|
-
address:"String",
|
|
1030
|
-
locale:"String",
|
|
1031
|
-
slug:"String",
|
|
1032
|
-
_id:"String",
|
|
1033
|
-
createdAt:"Float",
|
|
1034
|
-
updatedAt:"Float",
|
|
1035
|
-
draft_version:"Boolean",
|
|
1036
|
-
json_ld:"String"
|
|
1037
|
-
},
|
|
1038
|
-
faq_sectionFaq_list:{
|
|
1039
|
-
question:"String",
|
|
1040
|
-
answer:"String"
|
|
1041
|
-
},
|
|
1042
|
-
faq_section__Connection:{
|
|
1043
|
-
items:"faq_section",
|
|
1044
|
-
pageInfo:"PageInfo"
|
|
1045
|
-
},
|
|
1046
|
-
faq_section:{
|
|
1047
|
-
_version:"VersionField",
|
|
1048
|
-
header:"String",
|
|
1049
|
-
faq_list:"faq_sectionFaq_list",
|
|
1050
|
-
locale:"String",
|
|
1051
|
-
slug:"String",
|
|
1052
|
-
_id:"String",
|
|
1053
|
-
createdAt:"Float",
|
|
1054
|
-
updatedAt:"Float",
|
|
1055
|
-
draft_version:"Boolean",
|
|
1056
|
-
json_ld:"String"
|
|
1057
|
-
},
|
|
1058
|
-
features_pageHeader:{
|
|
1059
|
-
title:"String",
|
|
1060
|
-
description:"String"
|
|
1061
|
-
},
|
|
1062
|
-
features_pageInstruction_line_sectionInstruction_listSteps:{
|
|
1063
|
-
number:"Float",
|
|
1064
|
-
label:"String"
|
|
1065
|
-
},
|
|
1066
|
-
features_pageInstruction_line_sectionInstruction_list:{
|
|
1067
|
-
title:"String",
|
|
1068
|
-
description:"String",
|
|
1069
|
-
steps:"features_pageInstruction_line_sectionInstruction_listSteps"
|
|
1070
|
-
},
|
|
1071
|
-
features_pageInstruction_line_section:{
|
|
1072
|
-
instruction_list:"features_pageInstruction_line_sectionInstruction_list"
|
|
1073
|
-
},
|
|
1074
|
-
features_page__Connection:{
|
|
1075
|
-
items:"features_page",
|
|
1076
|
-
pageInfo:"PageInfo"
|
|
1077
|
-
},
|
|
1078
|
-
features_page:{
|
|
1079
|
-
_version:"VersionField",
|
|
1080
|
-
page_title:"String",
|
|
1081
|
-
meta_description:"String",
|
|
1082
|
-
canonical:"String",
|
|
1083
|
-
header:"features_pageHeader",
|
|
1084
|
-
instruction_line_section:"features_pageInstruction_line_section",
|
|
1085
|
-
locale:"String",
|
|
1086
|
-
slug:"String",
|
|
1087
|
-
_id:"String",
|
|
1088
|
-
createdAt:"Float",
|
|
1089
|
-
updatedAt:"Float",
|
|
1090
|
-
draft_version:"Boolean",
|
|
1091
|
-
json_ld:"String"
|
|
1092
|
-
},
|
|
1093
|
-
footerBottom_band:{
|
|
1094
|
-
title:"String",
|
|
1095
|
-
link:"String"
|
|
1096
|
-
},
|
|
1097
|
-
footerNavigation_columnLinks:{
|
|
1098
|
-
title:"String",
|
|
1099
|
-
link:"String"
|
|
1100
|
-
},
|
|
1101
|
-
footerNavigation_column:{
|
|
1102
|
-
title:"String",
|
|
1103
|
-
links:"footerNavigation_columnLinks"
|
|
1104
|
-
},
|
|
1105
|
-
footer__Connection:{
|
|
1106
|
-
items:"footer",
|
|
1107
|
-
pageInfo:"PageInfo"
|
|
1108
|
-
},
|
|
1109
|
-
footer:{
|
|
1110
|
-
_version:"VersionField",
|
|
1111
|
-
logo:"ImageField",
|
|
1112
|
-
text_below_logo:"String",
|
|
1113
|
-
rights_reserved:"String",
|
|
1114
|
-
disclaimer:"String",
|
|
1115
|
-
media:"ImageField",
|
|
1116
|
-
bottom_band:"footerBottom_band",
|
|
1117
|
-
navigation_column:"footerNavigation_column",
|
|
1118
|
-
locale:"String",
|
|
1119
|
-
slug:"String",
|
|
1120
|
-
_id:"String",
|
|
1121
|
-
createdAt:"Float",
|
|
1122
|
-
updatedAt:"Float",
|
|
1123
|
-
draft_version:"Boolean",
|
|
1124
|
-
json_ld:"String"
|
|
1125
|
-
},
|
|
1126
|
-
getstarted_section__Connection:{
|
|
1127
|
-
items:"getstarted_section",
|
|
1128
|
-
pageInfo:"PageInfo"
|
|
1129
|
-
},
|
|
1130
|
-
getstarted_section:{
|
|
1131
|
-
_version:"VersionField",
|
|
1132
|
-
map_image:"ImageField",
|
|
1133
|
-
logo:"ImageField",
|
|
1134
|
-
title:"String",
|
|
1135
|
-
description:"String",
|
|
1136
|
-
button_text_app:"String",
|
|
1137
|
-
button_text_user:"String",
|
|
1138
|
-
locale:"String",
|
|
1139
|
-
slug:"String",
|
|
1140
|
-
_id:"String",
|
|
1141
|
-
createdAt:"Float",
|
|
1142
|
-
updatedAt:"Float",
|
|
1143
|
-
draft_version:"Boolean",
|
|
1144
|
-
json_ld:"String"
|
|
1145
|
-
},
|
|
1146
|
-
guide__Connection:{
|
|
1147
|
-
items:"guide",
|
|
1148
|
-
pageInfo:"PageInfo"
|
|
1149
|
-
},
|
|
1150
|
-
guide:{
|
|
1151
|
-
_version:"VersionField",
|
|
1152
|
-
title:"String",
|
|
1153
|
-
description:"String",
|
|
1154
|
-
content:"String",
|
|
1155
|
-
locale:"String",
|
|
1156
|
-
slug:"String",
|
|
1157
|
-
_id:"String",
|
|
1158
|
-
createdAt:"Float",
|
|
1159
|
-
updatedAt:"Float",
|
|
1160
|
-
draft_version:"Boolean",
|
|
1161
|
-
json_ld:"String"
|
|
1162
|
-
},
|
|
1163
|
-
guide_page__Connection:{
|
|
1164
|
-
items:"guide_page",
|
|
1165
|
-
pageInfo:"PageInfo"
|
|
1166
|
-
},
|
|
1167
|
-
guide_page:{
|
|
1168
|
-
_version:"VersionField",
|
|
1169
|
-
page_title:"String",
|
|
1170
|
-
meta_description:"String",
|
|
1171
|
-
canonical:"String",
|
|
1172
|
-
header:"String",
|
|
1173
|
-
description:"String",
|
|
1174
|
-
search_placeholder:"String",
|
|
1175
|
-
search_no_content:"String",
|
|
1176
|
-
locale:"String",
|
|
1177
|
-
slug:"String",
|
|
1178
|
-
_id:"String",
|
|
1179
|
-
createdAt:"Float",
|
|
1180
|
-
updatedAt:"Float",
|
|
1181
|
-
draft_version:"Boolean",
|
|
1182
|
-
json_ld:"String"
|
|
1183
|
-
},
|
|
1184
|
-
home_pageHeaderButtons:{
|
|
1185
|
-
translate:"String",
|
|
1186
|
-
features:"String"
|
|
70
|
+
ID: `scalar.ID` as const
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export const ReturnTypes: Record<string,any> = {
|
|
74
|
+
ObjectId: `scalar.ObjectId` as const,
|
|
75
|
+
S3Scalar: `scalar.S3Scalar` as const,
|
|
76
|
+
Timestamp: `scalar.Timestamp` as const,
|
|
77
|
+
ModelNavigationCompiled: `scalar.ModelNavigationCompiled` as const,
|
|
78
|
+
BakedIpsumData: `scalar.BakedIpsumData` as const,
|
|
79
|
+
JSON: `scalar.JSON` as const,
|
|
80
|
+
TailwindConfiguration:{
|
|
81
|
+
content:"String",
|
|
82
|
+
contentForClient:"String",
|
|
83
|
+
compiledForIframe:"String"
|
|
1187
84
|
},
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
buttons:"home_pageHeaderButtons"
|
|
85
|
+
VersionField:{
|
|
86
|
+
name:"String",
|
|
87
|
+
from:"Timestamp",
|
|
88
|
+
to:"Timestamp"
|
|
1193
89
|
},
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
icon:"String"
|
|
90
|
+
RangeField:{
|
|
91
|
+
min:"Float",
|
|
92
|
+
max:"Float"
|
|
1198
93
|
},
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
img:"ImageField"
|
|
94
|
+
ImageField:{
|
|
95
|
+
url:"S3Scalar",
|
|
96
|
+
thumbnail:"S3Scalar",
|
|
97
|
+
alt:"String"
|
|
1204
98
|
},
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
99
|
+
VideoField:{
|
|
100
|
+
url:"S3Scalar",
|
|
101
|
+
previewImage:"S3Scalar",
|
|
102
|
+
alt:"String"
|
|
1209
103
|
},
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
usecases_list:"home_pageFeaturesUsecases_list"
|
|
104
|
+
InternalLink:{
|
|
105
|
+
_id:"ObjectId",
|
|
106
|
+
keys:"String",
|
|
107
|
+
href:"String"
|
|
1215
108
|
},
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
button_app:"String",
|
|
1221
|
-
button_register:"String"
|
|
109
|
+
RootCMSParam:{
|
|
110
|
+
name:"String",
|
|
111
|
+
options:"String",
|
|
112
|
+
default:"String"
|
|
1222
113
|
},
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
114
|
+
ModelNavigation:{
|
|
115
|
+
name:"String",
|
|
116
|
+
display:"String",
|
|
117
|
+
fields:"CMSField",
|
|
118
|
+
fieldSet:"String"
|
|
1227
119
|
},
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
120
|
+
CMSField:{
|
|
121
|
+
name:"String",
|
|
122
|
+
display:"String",
|
|
123
|
+
type:"CMSType",
|
|
124
|
+
list:"Boolean",
|
|
125
|
+
searchable:"Boolean",
|
|
126
|
+
sortable:"Boolean",
|
|
127
|
+
filterable:"Boolean",
|
|
128
|
+
rangeValues:"Float",
|
|
129
|
+
options:"String",
|
|
130
|
+
relation:"String",
|
|
131
|
+
fields:"CMSField",
|
|
132
|
+
builtIn:"Boolean",
|
|
133
|
+
visual:"Visual",
|
|
134
|
+
conditions:"Condition",
|
|
135
|
+
nonTranslatable:"Boolean"
|
|
1232
136
|
},
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
137
|
+
Condition:{
|
|
138
|
+
type:"ConditionType",
|
|
139
|
+
path:"String",
|
|
140
|
+
operator:"ConditionOperator",
|
|
141
|
+
setOperator:"ConditionSetOperator",
|
|
142
|
+
value:"String",
|
|
143
|
+
children:"Condition"
|
|
1236
144
|
},
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
meta_description:"String",
|
|
1241
|
-
canonical:"String",
|
|
1242
|
-
header:"home_pageHeader",
|
|
1243
|
-
features:"home_pageFeatures",
|
|
1244
|
-
flags:"home_pageFlags",
|
|
1245
|
-
cards:"home_pageCards",
|
|
1246
|
-
locale:"String",
|
|
1247
|
-
slug:"String",
|
|
1248
|
-
_id:"String",
|
|
1249
|
-
createdAt:"Float",
|
|
1250
|
-
updatedAt:"Float",
|
|
1251
|
-
draft_version:"Boolean",
|
|
1252
|
-
json_ld:"String"
|
|
145
|
+
Visual:{
|
|
146
|
+
className:"String",
|
|
147
|
+
component:"String"
|
|
1253
148
|
},
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
149
|
+
PageInfo:{
|
|
150
|
+
total:"Int",
|
|
151
|
+
hasNext:"Boolean"
|
|
1257
152
|
},
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
page_title:"String",
|
|
1261
|
-
meta_description:"String",
|
|
1262
|
-
canonical:"String",
|
|
1263
|
-
page_header:"String",
|
|
1264
|
-
card_header:"String",
|
|
1265
|
-
card_description:"String",
|
|
1266
|
-
card_button:"String",
|
|
1267
|
-
locale:"String",
|
|
153
|
+
Shape:{
|
|
154
|
+
name:"String",
|
|
1268
155
|
slug:"String",
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
},
|
|
1275
|
-
info_sectionTile:{
|
|
1276
|
-
image:"ImageField",
|
|
1277
|
-
chip:"String",
|
|
1278
|
-
title:"String",
|
|
1279
|
-
description:"String",
|
|
1280
|
-
href:"String"
|
|
1281
|
-
},
|
|
1282
|
-
info_section__Connection:{
|
|
1283
|
-
items:"info_section",
|
|
1284
|
-
pageInfo:"PageInfo"
|
|
156
|
+
display:"String",
|
|
157
|
+
previewFields:"BakedIpsumData",
|
|
158
|
+
prompt:"String",
|
|
159
|
+
promptResponse:"AiComponent",
|
|
160
|
+
fields:"CMSField"
|
|
1285
161
|
},
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
locale:"String",
|
|
162
|
+
View:{
|
|
163
|
+
name:"String",
|
|
164
|
+
fields:"CMSField",
|
|
1290
165
|
slug:"String",
|
|
1291
|
-
|
|
1292
|
-
createdAt:"Float",
|
|
1293
|
-
updatedAt:"Float",
|
|
1294
|
-
draft_version:"Boolean",
|
|
1295
|
-
json_ld:"String"
|
|
166
|
+
display:"String"
|
|
1296
167
|
},
|
|
1297
|
-
|
|
168
|
+
AiComponent:{
|
|
1298
169
|
name:"String",
|
|
1299
|
-
|
|
170
|
+
htmlComponent:"String",
|
|
171
|
+
className:"String",
|
|
172
|
+
textContent:"String",
|
|
173
|
+
children:"AiComponent"
|
|
1300
174
|
},
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
175
|
+
FormField:{
|
|
176
|
+
name:"String",
|
|
177
|
+
display:"String",
|
|
178
|
+
type:"FormFieldType",
|
|
179
|
+
list:"Boolean",
|
|
180
|
+
fields:"FormField",
|
|
181
|
+
visual:"Visual",
|
|
182
|
+
conditions:"Condition",
|
|
183
|
+
placeholder:"String",
|
|
184
|
+
root:"Boolean",
|
|
185
|
+
options:"String",
|
|
186
|
+
builtIn:"Boolean",
|
|
187
|
+
nonTranslatable:"Boolean"
|
|
1304
188
|
},
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
button_signin:"String",
|
|
1310
|
-
locale:"String",
|
|
1311
|
-
slug:"String",
|
|
1312
|
-
_id:"String",
|
|
1313
|
-
createdAt:"Float",
|
|
1314
|
-
updatedAt:"Float",
|
|
1315
|
-
draft_version:"Boolean",
|
|
1316
|
-
json_ld:"String"
|
|
189
|
+
Form:{
|
|
190
|
+
name:"String",
|
|
191
|
+
display:"String",
|
|
192
|
+
fields:"FormField"
|
|
1317
193
|
},
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
194
|
+
FormTextField:{
|
|
195
|
+
label:"String",
|
|
196
|
+
placeholder:"String"
|
|
1321
197
|
},
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
content:"String",
|
|
1325
|
-
locale:"String",
|
|
1326
|
-
slug:"String",
|
|
1327
|
-
_id:"String",
|
|
1328
|
-
createdAt:"Float",
|
|
1329
|
-
updatedAt:"Float",
|
|
1330
|
-
draft_version:"Boolean",
|
|
1331
|
-
json_ld:"String"
|
|
198
|
+
FormBooleanField:{
|
|
199
|
+
label:"String"
|
|
1332
200
|
},
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
201
|
+
FormContentField:{
|
|
202
|
+
label:"String",
|
|
203
|
+
placeholder:"String"
|
|
1336
204
|
},
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
title:"String",
|
|
1340
|
-
date:"String",
|
|
1341
|
-
excerpt:"String",
|
|
1342
|
-
cover:"ImageField",
|
|
1343
|
-
author:"author",
|
|
1344
|
-
published:"Boolean",
|
|
1345
|
-
content:"String",
|
|
1346
|
-
locale:"String",
|
|
1347
|
-
slug:"String",
|
|
1348
|
-
_id:"String",
|
|
1349
|
-
createdAt:"Float",
|
|
1350
|
-
updatedAt:"Float",
|
|
1351
|
-
draft_version:"Boolean",
|
|
1352
|
-
json_ld:"String"
|
|
205
|
+
FormRadioField:{
|
|
206
|
+
label:"String"
|
|
1353
207
|
},
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
price:"String",
|
|
1357
|
-
description:"String",
|
|
1358
|
-
period:"String",
|
|
1359
|
-
button:"String",
|
|
1360
|
-
features:"String"
|
|
208
|
+
FormStepField:{
|
|
209
|
+
label:"String"
|
|
1361
210
|
},
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
211
|
+
FormTextareaField:{
|
|
212
|
+
label:"String",
|
|
213
|
+
placeholder:"String"
|
|
1365
214
|
},
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
name:"String",
|
|
1369
|
-
product_type:"String",
|
|
1370
|
-
data:"pricing_pageHero_sectionPacksData"
|
|
215
|
+
FormGroupField:{
|
|
216
|
+
label:"String"
|
|
1371
217
|
},
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
characters:"String"
|
|
218
|
+
FormArrayStepField:{
|
|
219
|
+
label:"String"
|
|
1375
220
|
},
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
climate_badge:"String",
|
|
1380
|
-
features_heading:"String",
|
|
1381
|
-
left:"pricing_pageHero_sectionLeft",
|
|
1382
|
-
packs:"pricing_pageHero_sectionPacks",
|
|
1383
|
-
center:"pricing_pageHero_sectionCenter"
|
|
221
|
+
FormRouteField:{
|
|
222
|
+
label:"String",
|
|
223
|
+
portal:"String"
|
|
1384
224
|
},
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
pageInfo:"PageInfo"
|
|
225
|
+
FormPortalField:{
|
|
226
|
+
label:"String"
|
|
1388
227
|
},
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
page_title:"String",
|
|
1392
|
-
meta_description:"String",
|
|
1393
|
-
canonical:"String",
|
|
1394
|
-
hero_section:"pricing_pageHero_section",
|
|
1395
|
-
tokens_for:"String",
|
|
1396
|
-
token_per_unit:"String",
|
|
1397
|
-
locale:"String",
|
|
1398
|
-
slug:"String",
|
|
1399
|
-
_id:"String",
|
|
1400
|
-
createdAt:"Float",
|
|
1401
|
-
updatedAt:"Float",
|
|
1402
|
-
draft_version:"Boolean",
|
|
1403
|
-
json_ld:"String"
|
|
228
|
+
FormSubmitField:{
|
|
229
|
+
label:"String"
|
|
1404
230
|
},
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
description:"String",
|
|
1408
|
-
button1:"String",
|
|
1409
|
-
button2:"String"
|
|
231
|
+
FormNumberField:{
|
|
232
|
+
label:"String"
|
|
1410
233
|
},
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
234
|
+
FormRadioTextField:{
|
|
235
|
+
label:"String",
|
|
236
|
+
options:"String"
|
|
1414
237
|
},
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
meta_description:"String",
|
|
1419
|
-
canonical:"String",
|
|
1420
|
-
hero_section:"solution_pageHero_section",
|
|
1421
|
-
locale:"String",
|
|
1422
|
-
slug:"String",
|
|
1423
|
-
_id:"String",
|
|
1424
|
-
createdAt:"Float",
|
|
1425
|
-
updatedAt:"Float",
|
|
1426
|
-
draft_version:"Boolean",
|
|
1427
|
-
json_ld:"String"
|
|
238
|
+
FormProductField:{
|
|
239
|
+
label:"String",
|
|
240
|
+
name:"String"
|
|
1428
241
|
},
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
242
|
+
Query:{
|
|
243
|
+
navigation:"ModelNavigation",
|
|
244
|
+
rootParams:"RootCMSParam",
|
|
245
|
+
versions:"VersionField",
|
|
246
|
+
links:"InternalLink",
|
|
247
|
+
listViews:"View",
|
|
248
|
+
listShapes:"Shape",
|
|
249
|
+
tailwind:"TailwindConfiguration",
|
|
250
|
+
listForms:"Form",
|
|
251
|
+
listPaginateddemo:"demo__Connection",
|
|
252
|
+
onedemoBySlug:"demo",
|
|
253
|
+
variantsdemoBySlug:"demo",
|
|
254
|
+
fieldSetdemo:"String",
|
|
255
|
+
modeldemo:"ModelNavigationCompiled",
|
|
256
|
+
previewFieldsdemo:"ModelNavigationCompiled",
|
|
257
|
+
listPaginatedpost:"post__Connection",
|
|
258
|
+
onepostBySlug:"post",
|
|
259
|
+
variantspostBySlug:"post",
|
|
260
|
+
fieldSetpost:"String",
|
|
261
|
+
modelpost:"ModelNavigationCompiled",
|
|
262
|
+
previewFieldspost:"ModelNavigationCompiled",
|
|
263
|
+
fieldSetShapetests:"String",
|
|
264
|
+
modelShapetests:"ModelNavigationCompiled",
|
|
265
|
+
previewFieldsShapetests:"ModelNavigationCompiled",
|
|
266
|
+
oneShapetests:"Shapetests"
|
|
1433
267
|
},
|
|
1434
|
-
|
|
1435
|
-
items:"
|
|
268
|
+
demo__Connection:{
|
|
269
|
+
items:"demo",
|
|
1436
270
|
pageInfo:"PageInfo"
|
|
1437
271
|
},
|
|
1438
|
-
|
|
272
|
+
demo:{
|
|
1439
273
|
_version:"VersionField",
|
|
1440
|
-
|
|
1441
|
-
description:"String",
|
|
1442
|
-
technologies_list:"technologies_sectionTechnologies_list",
|
|
1443
|
-
locale:"String",
|
|
274
|
+
content:"String",
|
|
1444
275
|
slug:"String",
|
|
1445
276
|
_id:"String",
|
|
1446
277
|
createdAt:"Float",
|
|
@@ -1448,35 +279,15 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
1448
279
|
draft_version:"Boolean",
|
|
1449
280
|
json_ld:"String"
|
|
1450
281
|
},
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
description:"String",
|
|
1454
|
-
button1:"String",
|
|
1455
|
-
button2:"String",
|
|
1456
|
-
icon:"String"
|
|
1457
|
-
},
|
|
1458
|
-
usecase_pageFeatures_sectionTile:{
|
|
1459
|
-
title:"String",
|
|
1460
|
-
description:"String",
|
|
1461
|
-
icon:"String"
|
|
1462
|
-
},
|
|
1463
|
-
usecase_pageFeatures_section:{
|
|
1464
|
-
title:"String",
|
|
1465
|
-
description:"String",
|
|
1466
|
-
tile:"usecase_pageFeatures_sectionTile"
|
|
1467
|
-
},
|
|
1468
|
-
usecase_page__Connection:{
|
|
1469
|
-
items:"usecase_page",
|
|
282
|
+
post__Connection:{
|
|
283
|
+
items:"post",
|
|
1470
284
|
pageInfo:"PageInfo"
|
|
1471
285
|
},
|
|
1472
|
-
|
|
286
|
+
post:{
|
|
1473
287
|
_version:"VersionField",
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
hero_section:"usecase_pageHero_section",
|
|
1478
|
-
features_section:"usecase_pageFeatures_section",
|
|
1479
|
-
locale:"String",
|
|
288
|
+
title:"String",
|
|
289
|
+
image:"ImageField",
|
|
290
|
+
content:"String",
|
|
1480
291
|
slug:"String",
|
|
1481
292
|
_id:"String",
|
|
1482
293
|
createdAt:"Float",
|
|
@@ -1484,28 +295,10 @@ export const ReturnTypes: Record<string,any> = {
|
|
|
1484
295
|
draft_version:"Boolean",
|
|
1485
296
|
json_ld:"String"
|
|
1486
297
|
},
|
|
1487
|
-
|
|
1488
|
-
items:"validation",
|
|
1489
|
-
pageInfo:"PageInfo"
|
|
1490
|
-
},
|
|
1491
|
-
validation:{
|
|
1492
|
-
_version:"VersionField",
|
|
1493
|
-
required:"String",
|
|
1494
|
-
email_valid:"String",
|
|
1495
|
-
email_blocked:"String",
|
|
1496
|
-
password_valid:"String",
|
|
1497
|
-
firstname_valid:"String",
|
|
1498
|
-
domain_valid:"String",
|
|
1499
|
-
name_valid:"String",
|
|
1500
|
-
password_match:"String",
|
|
1501
|
-
password_too_short:"String",
|
|
1502
|
-
locale:"String",
|
|
1503
|
-
slug:"String",
|
|
298
|
+
Shapetests:{
|
|
1504
299
|
_id:"String",
|
|
1505
300
|
createdAt:"Float",
|
|
1506
|
-
updatedAt:"Float"
|
|
1507
|
-
draft_version:"Boolean",
|
|
1508
|
-
json_ld:"String"
|
|
301
|
+
updatedAt:"Float"
|
|
1509
302
|
},
|
|
1510
303
|
ID: `scalar.ID` as const
|
|
1511
304
|
}
|