@husar.ai/cli 0.3.3 → 0.3.5
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 +85 -45
- package/dist/zeus/const.js.map +1 -1
- package/dist/zeus/index.d.ts +754 -197
- package/dist/zeus/index.js +6 -3
- package/dist/zeus/index.js.map +1 -1
- package/package.json +3 -3
- package/src/zeus/const.ts +85 -45
- package/src/zeus/index.ts +1113 -556
package/dist/zeus/index.d.ts
CHANGED
|
@@ -137,7 +137,7 @@ export declare const InternalArgsBuilt: ({ props, ops, returns, scalars, vars, }
|
|
|
137
137
|
graphQLType: string;
|
|
138
138
|
}>;
|
|
139
139
|
}) => (a: ZeusArgsType, p?: string, root?: boolean) => string;
|
|
140
|
-
export declare const resolverFor: <X, T extends keyof ResolverInputTypes, Z extends keyof ResolverInputTypes[T]>(
|
|
140
|
+
export declare const resolverFor: <X, T extends keyof ResolverInputTypes, Z extends keyof ResolverInputTypes[T]>(_type: T, _field: Z, fn: (args: Required<ResolverInputTypes[T]>[Z] extends [infer Input, any] ? Input : any, source: any) => Z extends keyof ModelTypes[T] ? ModelTypes[T][Z] | Promise<ModelTypes[T][Z]> | X : never) => (args?: any, source?: any) => ReturnType<typeof fn>;
|
|
141
141
|
export type UnwrapPromise<T> = T extends Promise<infer R> ? R : T;
|
|
142
142
|
export type ZeusState<T extends (...args: any[]) => Promise<any>> = NonNullable<UnwrapPromise<ReturnType<T>>>;
|
|
143
143
|
export type ZeusHook<T extends (...args: any[]) => Record<string, (...args: any[]) => Promise<any>>, N extends keyof ReturnType<T>> = ZeusState<ReturnType<T>[N]>;
|
|
@@ -167,7 +167,7 @@ type IsInterfaced<SRC extends DeepAnify<DST>, DST, SCLR extends ScalarDefinition
|
|
|
167
167
|
} : Record<string, never>, SCLR> : never;
|
|
168
168
|
}[keyof SRC] & {
|
|
169
169
|
[P in keyof Omit<Pick<SRC, {
|
|
170
|
-
[P in keyof DST]: SRC[P] extends '__union' & infer
|
|
170
|
+
[P in keyof DST]: SRC[P] extends '__union' & infer _R ? never : P;
|
|
171
171
|
}[keyof DST]>, '__typename'>]: IsPayLoad<DST[P]> extends BaseZeusResolver ? IsScalar<SRC[P], SCLR> : IsArray<SRC[P], DST[P], SCLR>;
|
|
172
172
|
} : {
|
|
173
173
|
[P in keyof Pick<SRC, keyof DST>]: IsPayLoad<DST[P]> extends BaseZeusResolver ? IsScalar<SRC[P], SCLR> : IsArray<SRC[P], DST[P], SCLR>;
|
|
@@ -275,35 +275,41 @@ export type ValueTypes = {
|
|
|
275
275
|
contentForClient?: boolean | `@${string}`;
|
|
276
276
|
compiledForIframe?: boolean | `@${string}`;
|
|
277
277
|
__typename?: boolean | `@${string}`;
|
|
278
|
+
['...on TailwindConfiguration']?: Omit<ValueTypes["TailwindConfiguration"], "...on TailwindConfiguration">;
|
|
278
279
|
}>;
|
|
279
280
|
["VersionField"]: AliasType<{
|
|
280
281
|
name?: boolean | `@${string}`;
|
|
281
282
|
from?: boolean | `@${string}`;
|
|
282
283
|
to?: boolean | `@${string}`;
|
|
283
284
|
__typename?: boolean | `@${string}`;
|
|
285
|
+
['...on VersionField']?: Omit<ValueTypes["VersionField"], "...on VersionField">;
|
|
284
286
|
}>;
|
|
285
287
|
["RangeField"]: AliasType<{
|
|
286
288
|
min?: boolean | `@${string}`;
|
|
287
289
|
max?: boolean | `@${string}`;
|
|
288
290
|
__typename?: boolean | `@${string}`;
|
|
291
|
+
['...on RangeField']?: Omit<ValueTypes["RangeField"], "...on RangeField">;
|
|
289
292
|
}>;
|
|
290
293
|
["ImageField"]: AliasType<{
|
|
291
294
|
url?: boolean | `@${string}`;
|
|
292
295
|
thumbnail?: boolean | `@${string}`;
|
|
293
296
|
alt?: boolean | `@${string}`;
|
|
294
297
|
__typename?: boolean | `@${string}`;
|
|
298
|
+
['...on ImageField']?: Omit<ValueTypes["ImageField"], "...on ImageField">;
|
|
295
299
|
}>;
|
|
296
300
|
["VideoField"]: AliasType<{
|
|
297
301
|
url?: boolean | `@${string}`;
|
|
298
302
|
previewImage?: boolean | `@${string}`;
|
|
299
303
|
alt?: boolean | `@${string}`;
|
|
300
304
|
__typename?: boolean | `@${string}`;
|
|
305
|
+
['...on VideoField']?: Omit<ValueTypes["VideoField"], "...on VideoField">;
|
|
301
306
|
}>;
|
|
302
307
|
["InternalLink"]: AliasType<{
|
|
303
308
|
_id?: boolean | `@${string}`;
|
|
304
309
|
keys?: boolean | `@${string}`;
|
|
305
310
|
href?: boolean | `@${string}`;
|
|
306
311
|
__typename?: boolean | `@${string}`;
|
|
312
|
+
['...on InternalLink']?: Omit<ValueTypes["InternalLink"], "...on InternalLink">;
|
|
307
313
|
}>;
|
|
308
314
|
["Sort"]: Sort;
|
|
309
315
|
["RootCMSParam"]: AliasType<{
|
|
@@ -311,6 +317,7 @@ export type ValueTypes = {
|
|
|
311
317
|
options?: boolean | `@${string}`;
|
|
312
318
|
default?: boolean | `@${string}`;
|
|
313
319
|
__typename?: boolean | `@${string}`;
|
|
320
|
+
['...on RootCMSParam']?: Omit<ValueTypes["RootCMSParam"], "...on RootCMSParam">;
|
|
314
321
|
}>;
|
|
315
322
|
["ModelNavigation"]: AliasType<{
|
|
316
323
|
name?: boolean | `@${string}`;
|
|
@@ -318,6 +325,7 @@ export type ValueTypes = {
|
|
|
318
325
|
fields?: ValueTypes["CMSField"];
|
|
319
326
|
fieldSet?: boolean | `@${string}`;
|
|
320
327
|
__typename?: boolean | `@${string}`;
|
|
328
|
+
['...on ModelNavigation']?: Omit<ValueTypes["ModelNavigation"], "...on ModelNavigation">;
|
|
321
329
|
}>;
|
|
322
330
|
["CMSField"]: AliasType<{
|
|
323
331
|
name?: boolean | `@${string}`;
|
|
@@ -336,6 +344,7 @@ export type ValueTypes = {
|
|
|
336
344
|
conditions?: ValueTypes["Condition"];
|
|
337
345
|
nonTranslatable?: boolean | `@${string}`;
|
|
338
346
|
__typename?: boolean | `@${string}`;
|
|
347
|
+
['...on CMSField']?: Omit<ValueTypes["CMSField"], "...on CMSField">;
|
|
339
348
|
}>;
|
|
340
349
|
["ConditionSetOperator"]: ConditionSetOperator;
|
|
341
350
|
["ConditionOperator"]: ConditionOperator;
|
|
@@ -348,6 +357,7 @@ export type ValueTypes = {
|
|
|
348
357
|
value?: boolean | `@${string}`;
|
|
349
358
|
children?: ValueTypes["Condition"];
|
|
350
359
|
__typename?: boolean | `@${string}`;
|
|
360
|
+
['...on Condition']?: Omit<ValueTypes["Condition"], "...on Condition">;
|
|
351
361
|
}>;
|
|
352
362
|
["ActionType"]: ActionType;
|
|
353
363
|
["Action"]: AliasType<{
|
|
@@ -355,21 +365,25 @@ export type ValueTypes = {
|
|
|
355
365
|
type?: boolean | `@${string}`;
|
|
356
366
|
value?: boolean | `@${string}`;
|
|
357
367
|
__typename?: boolean | `@${string}`;
|
|
368
|
+
['...on Action']?: Omit<ValueTypes["Action"], "...on Action">;
|
|
358
369
|
}>;
|
|
359
370
|
["Rule"]: AliasType<{
|
|
360
371
|
conditions?: ValueTypes["Condition"];
|
|
361
372
|
actions?: ValueTypes["Action"];
|
|
362
373
|
__typename?: boolean | `@${string}`;
|
|
374
|
+
['...on Rule']?: Omit<ValueTypes["Rule"], "...on Rule">;
|
|
363
375
|
}>;
|
|
364
376
|
["Visual"]: AliasType<{
|
|
365
377
|
className?: boolean | `@${string}`;
|
|
366
378
|
component?: boolean | `@${string}`;
|
|
367
379
|
__typename?: boolean | `@${string}`;
|
|
380
|
+
['...on Visual']?: Omit<ValueTypes["Visual"], "...on Visual">;
|
|
368
381
|
}>;
|
|
369
382
|
["PageInfo"]: AliasType<{
|
|
370
383
|
total?: boolean | `@${string}`;
|
|
371
384
|
hasNext?: boolean | `@${string}`;
|
|
372
385
|
__typename?: boolean | `@${string}`;
|
|
386
|
+
['...on PageInfo']?: Omit<ValueTypes["PageInfo"], "...on PageInfo">;
|
|
373
387
|
}>;
|
|
374
388
|
["PageInput"]: {
|
|
375
389
|
limit: number | Variable<any, string>;
|
|
@@ -390,6 +404,7 @@ export type ValueTypes = {
|
|
|
390
404
|
promptResponse?: ValueTypes["AiComponent"];
|
|
391
405
|
fields?: ValueTypes["CMSField"];
|
|
392
406
|
__typename?: boolean | `@${string}`;
|
|
407
|
+
['...on Shape']?: Omit<ValueTypes["Shape"], "...on Shape">;
|
|
393
408
|
}>;
|
|
394
409
|
["View"]: AliasType<{
|
|
395
410
|
name?: boolean | `@${string}`;
|
|
@@ -397,6 +412,7 @@ export type ValueTypes = {
|
|
|
397
412
|
slug?: boolean | `@${string}`;
|
|
398
413
|
display?: boolean | `@${string}`;
|
|
399
414
|
__typename?: boolean | `@${string}`;
|
|
415
|
+
['...on View']?: Omit<ValueTypes["View"], "...on View">;
|
|
400
416
|
}>;
|
|
401
417
|
["AiComponent"]: AliasType<{
|
|
402
418
|
name?: boolean | `@${string}`;
|
|
@@ -405,12 +421,14 @@ export type ValueTypes = {
|
|
|
405
421
|
textContent?: boolean | `@${string}`;
|
|
406
422
|
children?: ValueTypes["AiComponent"];
|
|
407
423
|
__typename?: boolean | `@${string}`;
|
|
424
|
+
['...on AiComponent']?: Omit<ValueTypes["AiComponent"], "...on AiComponent">;
|
|
408
425
|
}>;
|
|
409
426
|
["FormFieldVisual"]: AliasType<{
|
|
410
427
|
className?: boolean | `@${string}`;
|
|
411
428
|
component?: boolean | `@${string}`;
|
|
412
429
|
rules?: ValueTypes["Rule"];
|
|
413
430
|
__typename?: boolean | `@${string}`;
|
|
431
|
+
['...on FormFieldVisual']?: Omit<ValueTypes["FormFieldVisual"], "...on FormFieldVisual">;
|
|
414
432
|
}>;
|
|
415
433
|
["FormField"]: AliasType<{
|
|
416
434
|
name?: boolean | `@${string}`;
|
|
@@ -425,6 +443,7 @@ export type ValueTypes = {
|
|
|
425
443
|
builtIn?: boolean | `@${string}`;
|
|
426
444
|
nonTranslatable?: boolean | `@${string}`;
|
|
427
445
|
__typename?: boolean | `@${string}`;
|
|
446
|
+
['...on FormField']?: Omit<ValueTypes["FormField"], "...on FormField">;
|
|
428
447
|
}>;
|
|
429
448
|
["FormFieldType"]: FormFieldType;
|
|
430
449
|
["Form"]: AliasType<{
|
|
@@ -432,6 +451,7 @@ export type ValueTypes = {
|
|
|
432
451
|
display?: boolean | `@${string}`;
|
|
433
452
|
fields?: ValueTypes["FormField"];
|
|
434
453
|
__typename?: boolean | `@${string}`;
|
|
454
|
+
['...on Form']?: Omit<ValueTypes["Form"], "...on Form">;
|
|
435
455
|
}>;
|
|
436
456
|
["FormTextField"]: AliasType<{
|
|
437
457
|
label?: boolean | `@${string}`;
|
|
@@ -439,83 +459,101 @@ export type ValueTypes = {
|
|
|
439
459
|
type?: boolean | `@${string}`;
|
|
440
460
|
defaultValue?: boolean | `@${string}`;
|
|
441
461
|
__typename?: boolean | `@${string}`;
|
|
462
|
+
['...on FormTextField']?: Omit<ValueTypes["FormTextField"], "...on FormTextField">;
|
|
442
463
|
}>;
|
|
443
464
|
["FormBooleanField"]: AliasType<{
|
|
444
465
|
label?: boolean | `@${string}`;
|
|
445
466
|
__typename?: boolean | `@${string}`;
|
|
467
|
+
['...on FormBooleanField']?: Omit<ValueTypes["FormBooleanField"], "...on FormBooleanField">;
|
|
446
468
|
}>;
|
|
447
469
|
["FormContentField"]: AliasType<{
|
|
448
470
|
label?: boolean | `@${string}`;
|
|
449
471
|
placeholder?: boolean | `@${string}`;
|
|
450
472
|
content?: boolean | `@${string}`;
|
|
451
473
|
__typename?: boolean | `@${string}`;
|
|
474
|
+
['...on FormContentField']?: Omit<ValueTypes["FormContentField"], "...on FormContentField">;
|
|
452
475
|
}>;
|
|
453
476
|
["FormRadioField"]: AliasType<{
|
|
454
477
|
label?: boolean | `@${string}`;
|
|
455
478
|
__typename?: boolean | `@${string}`;
|
|
479
|
+
['...on FormRadioField']?: Omit<ValueTypes["FormRadioField"], "...on FormRadioField">;
|
|
456
480
|
}>;
|
|
457
481
|
["FormStepField"]: AliasType<{
|
|
458
482
|
label?: boolean | `@${string}`;
|
|
459
483
|
__typename?: boolean | `@${string}`;
|
|
484
|
+
['...on FormStepField']?: Omit<ValueTypes["FormStepField"], "...on FormStepField">;
|
|
460
485
|
}>;
|
|
461
486
|
["FormTextareaField"]: AliasType<{
|
|
462
487
|
label?: boolean | `@${string}`;
|
|
463
488
|
placeholder?: boolean | `@${string}`;
|
|
464
489
|
__typename?: boolean | `@${string}`;
|
|
490
|
+
['...on FormTextareaField']?: Omit<ValueTypes["FormTextareaField"], "...on FormTextareaField">;
|
|
465
491
|
}>;
|
|
466
492
|
["FormGroupField"]: AliasType<{
|
|
467
493
|
label?: boolean | `@${string}`;
|
|
468
494
|
__typename?: boolean | `@${string}`;
|
|
495
|
+
['...on FormGroupField']?: Omit<ValueTypes["FormGroupField"], "...on FormGroupField">;
|
|
469
496
|
}>;
|
|
470
497
|
["FormArrayStepField"]: AliasType<{
|
|
471
498
|
label?: boolean | `@${string}`;
|
|
472
499
|
__typename?: boolean | `@${string}`;
|
|
500
|
+
['...on FormArrayStepField']?: Omit<ValueTypes["FormArrayStepField"], "...on FormArrayStepField">;
|
|
473
501
|
}>;
|
|
474
502
|
["FormRouteField"]: AliasType<{
|
|
475
503
|
label?: boolean | `@${string}`;
|
|
476
504
|
portal?: boolean | `@${string}`;
|
|
477
505
|
__typename?: boolean | `@${string}`;
|
|
506
|
+
['...on FormRouteField']?: Omit<ValueTypes["FormRouteField"], "...on FormRouteField">;
|
|
478
507
|
}>;
|
|
479
508
|
["FormPortalField"]: AliasType<{
|
|
480
509
|
label?: boolean | `@${string}`;
|
|
481
510
|
__typename?: boolean | `@${string}`;
|
|
511
|
+
['...on FormPortalField']?: Omit<ValueTypes["FormPortalField"], "...on FormPortalField">;
|
|
482
512
|
}>;
|
|
483
513
|
["FormSubmitField"]: AliasType<{
|
|
484
514
|
label?: boolean | `@${string}`;
|
|
485
515
|
__typename?: boolean | `@${string}`;
|
|
516
|
+
['...on FormSubmitField']?: Omit<ValueTypes["FormSubmitField"], "...on FormSubmitField">;
|
|
486
517
|
}>;
|
|
487
518
|
["FormNumberField"]: AliasType<{
|
|
488
519
|
label?: boolean | `@${string}`;
|
|
489
520
|
__typename?: boolean | `@${string}`;
|
|
521
|
+
['...on FormNumberField']?: Omit<ValueTypes["FormNumberField"], "...on FormNumberField">;
|
|
490
522
|
}>;
|
|
491
523
|
["FormRadioTextField"]: AliasType<{
|
|
492
524
|
label?: boolean | `@${string}`;
|
|
493
525
|
options?: boolean | `@${string}`;
|
|
494
526
|
__typename?: boolean | `@${string}`;
|
|
527
|
+
['...on FormRadioTextField']?: Omit<ValueTypes["FormRadioTextField"], "...on FormRadioTextField">;
|
|
495
528
|
}>;
|
|
496
529
|
["FormCheckboxField"]: AliasType<{
|
|
497
530
|
label?: boolean | `@${string}`;
|
|
498
531
|
__typename?: boolean | `@${string}`;
|
|
532
|
+
['...on FormCheckboxField']?: Omit<ValueTypes["FormCheckboxField"], "...on FormCheckboxField">;
|
|
499
533
|
}>;
|
|
500
534
|
["FormButtonField"]: AliasType<{
|
|
501
535
|
label?: boolean | `@${string}`;
|
|
502
536
|
__typename?: boolean | `@${string}`;
|
|
537
|
+
['...on FormButtonField']?: Omit<ValueTypes["FormButtonField"], "...on FormButtonField">;
|
|
503
538
|
}>;
|
|
504
539
|
["FormProductField"]: AliasType<{
|
|
505
540
|
label?: boolean | `@${string}`;
|
|
506
541
|
name?: boolean | `@${string}`;
|
|
507
542
|
__typename?: boolean | `@${string}`;
|
|
543
|
+
['...on FormProductField']?: Omit<ValueTypes["FormProductField"], "...on FormProductField">;
|
|
508
544
|
}>;
|
|
509
545
|
["FormVariableField"]: AliasType<{
|
|
510
546
|
label?: boolean | `@${string}`;
|
|
511
547
|
name?: boolean | `@${string}`;
|
|
512
548
|
defaultValue?: boolean | `@${string}`;
|
|
513
549
|
__typename?: boolean | `@${string}`;
|
|
550
|
+
['...on FormVariableField']?: Omit<ValueTypes["FormVariableField"], "...on FormVariableField">;
|
|
514
551
|
}>;
|
|
515
552
|
["FormDisplayField"]: AliasType<{
|
|
516
553
|
label?: boolean | `@${string}`;
|
|
517
554
|
path?: boolean | `@${string}`;
|
|
518
555
|
__typename?: boolean | `@${string}`;
|
|
556
|
+
['...on FormDisplayField']?: Omit<ValueTypes["FormDisplayField"], "...on FormDisplayField">;
|
|
519
557
|
}>;
|
|
520
558
|
["GenerateHusarShapeImplementorInput"]: {
|
|
521
559
|
prompt: string | Variable<any, string>;
|
|
@@ -523,6 +561,13 @@ export type ValueTypes = {
|
|
|
523
561
|
backendGraphQlContent?: string | undefined | null | Variable<any, string>;
|
|
524
562
|
includeShapes?: Array<string> | undefined | null | Variable<any, string>;
|
|
525
563
|
};
|
|
564
|
+
["ShapeLibrary"]: AliasType<{
|
|
565
|
+
name?: boolean | `@${string}`;
|
|
566
|
+
shapes?: ValueTypes["Shape"];
|
|
567
|
+
description?: boolean | `@${string}`;
|
|
568
|
+
__typename?: boolean | `@${string}`;
|
|
569
|
+
['...on ShapeLibrary']?: Omit<ValueTypes["ShapeLibrary"], "...on ShapeLibrary">;
|
|
570
|
+
}>;
|
|
526
571
|
["CMSType"]: CMSType;
|
|
527
572
|
["Query"]: AliasType<{
|
|
528
573
|
navigation?: ValueTypes["ModelNavigation"];
|
|
@@ -533,6 +578,7 @@ export type ValueTypes = {
|
|
|
533
578
|
listShapes?: ValueTypes["Shape"];
|
|
534
579
|
tailwind?: ValueTypes["TailwindConfiguration"];
|
|
535
580
|
listForms?: ValueTypes["Form"];
|
|
581
|
+
shapeLibraries?: ValueTypes["ShapeLibrary"];
|
|
536
582
|
listPaginateddocs?: [{
|
|
537
583
|
page: ValueTypes["PageInput"] | Variable<any, string>;
|
|
538
584
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
@@ -582,10 +628,18 @@ export type ValueTypes = {
|
|
|
582
628
|
modelShapefeaturepresentation?: boolean | `@${string}`;
|
|
583
629
|
previewFieldsShapefeaturepresentation?: boolean | `@${string}`;
|
|
584
630
|
oneShapefeaturepresentation?: ValueTypes["Shapefeaturepresentation"];
|
|
631
|
+
fieldSetShapefeaturesv2?: boolean | `@${string}`;
|
|
632
|
+
modelShapefeaturesv2?: boolean | `@${string}`;
|
|
633
|
+
previewFieldsShapefeaturesv2?: boolean | `@${string}`;
|
|
634
|
+
oneShapefeaturesv2?: ValueTypes["Shapefeaturesv2"];
|
|
585
635
|
fieldSetShapefoot?: boolean | `@${string}`;
|
|
586
636
|
modelShapefoot?: boolean | `@${string}`;
|
|
587
637
|
previewFieldsShapefoot?: boolean | `@${string}`;
|
|
588
638
|
oneShapefoot?: ValueTypes["Shapefoot"];
|
|
639
|
+
fieldSetShapeheading?: boolean | `@${string}`;
|
|
640
|
+
modelShapeheading?: boolean | `@${string}`;
|
|
641
|
+
previewFieldsShapeheading?: boolean | `@${string}`;
|
|
642
|
+
oneShapeheading?: ValueTypes["Shapeheading"];
|
|
589
643
|
fieldSetShapehero?: boolean | `@${string}`;
|
|
590
644
|
modelShapehero?: boolean | `@${string}`;
|
|
591
645
|
previewFieldsShapehero?: boolean | `@${string}`;
|
|
@@ -606,14 +660,14 @@ export type ValueTypes = {
|
|
|
606
660
|
modelShapenewshape?: boolean | `@${string}`;
|
|
607
661
|
previewFieldsShapenewshape?: boolean | `@${string}`;
|
|
608
662
|
oneShapenewshape?: ValueTypes["Shapenewshape"];
|
|
609
|
-
fieldSetShapepricing_table?: boolean | `@${string}`;
|
|
610
|
-
modelShapepricing_table?: boolean | `@${string}`;
|
|
611
|
-
previewFieldsShapepricing_table?: boolean | `@${string}`;
|
|
612
|
-
oneShapepricing_table?: ValueTypes["Shapepricing_table"];
|
|
613
663
|
fieldSetShapepricingv1?: boolean | `@${string}`;
|
|
614
664
|
modelShapepricingv1?: boolean | `@${string}`;
|
|
615
665
|
previewFieldsShapepricingv1?: boolean | `@${string}`;
|
|
616
666
|
oneShapepricingv1?: ValueTypes["Shapepricingv1"];
|
|
667
|
+
fieldSetShapepricingv2?: boolean | `@${string}`;
|
|
668
|
+
modelShapepricingv2?: boolean | `@${string}`;
|
|
669
|
+
previewFieldsShapepricingv2?: boolean | `@${string}`;
|
|
670
|
+
oneShapepricingv2?: ValueTypes["Shapepricingv2"];
|
|
617
671
|
fieldSetShapeprofile_info?: boolean | `@${string}`;
|
|
618
672
|
modelShapeprofile_info?: boolean | `@${string}`;
|
|
619
673
|
previewFieldsShapeprofile_info?: boolean | `@${string}`;
|
|
@@ -622,6 +676,10 @@ export type ValueTypes = {
|
|
|
622
676
|
modelShapesecondary_cta?: boolean | `@${string}`;
|
|
623
677
|
previewFieldsShapesecondary_cta?: boolean | `@${string}`;
|
|
624
678
|
oneShapesecondary_cta?: ValueTypes["Shapesecondary_cta"];
|
|
679
|
+
fieldSetShapesubheading?: boolean | `@${string}`;
|
|
680
|
+
modelShapesubheading?: boolean | `@${string}`;
|
|
681
|
+
previewFieldsShapesubheading?: boolean | `@${string}`;
|
|
682
|
+
oneShapesubheading?: ValueTypes["Shapesubheading"];
|
|
625
683
|
fieldSetShapesupport?: boolean | `@${string}`;
|
|
626
684
|
modelShapesupport?: boolean | `@${string}`;
|
|
627
685
|
previewFieldsShapesupport?: boolean | `@${string}`;
|
|
@@ -674,14 +732,14 @@ export type ValueTypes = {
|
|
|
674
732
|
oneAsScalarViewhowitworks?: [{
|
|
675
733
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
676
734
|
}, boolean | `@${string}`];
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
735
|
+
variantsViewpricing_component?: ValueTypes["Viewpricing_component"];
|
|
736
|
+
fieldSetViewpricing_component?: boolean | `@${string}`;
|
|
737
|
+
modelViewpricing_component?: boolean | `@${string}`;
|
|
738
|
+
previewFieldsViewpricing_component?: boolean | `@${string}`;
|
|
739
|
+
oneViewpricing_component?: [{
|
|
682
740
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
683
|
-
}, ValueTypes["
|
|
684
|
-
|
|
741
|
+
}, ValueTypes["Viewpricing_component"]];
|
|
742
|
+
oneAsScalarViewpricing_component?: [{
|
|
685
743
|
rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable<any, string>;
|
|
686
744
|
}, boolean | `@${string}`];
|
|
687
745
|
variantsViewttt?: ValueTypes["Viewttt"];
|
|
@@ -737,6 +795,7 @@ export type ValueTypes = {
|
|
|
737
795
|
id: string | Variable<any, string>;
|
|
738
796
|
}, boolean | `@${string}`];
|
|
739
797
|
__typename?: boolean | `@${string}`;
|
|
798
|
+
['...on Query']?: Omit<ValueTypes["Query"], "...on Query">;
|
|
740
799
|
}>;
|
|
741
800
|
["Mutation"]: AliasType<{
|
|
742
801
|
heartbeat?: boolean | `@${string}`;
|
|
@@ -753,11 +812,13 @@ export type ValueTypes = {
|
|
|
753
812
|
id: string | Variable<any, string>;
|
|
754
813
|
}, boolean | `@${string}`];
|
|
755
814
|
__typename?: boolean | `@${string}`;
|
|
815
|
+
['...on Mutation']?: Omit<ValueTypes["Mutation"], "...on Mutation">;
|
|
756
816
|
}>;
|
|
757
817
|
["RootParamsType"]: AliasType<{
|
|
758
818
|
_version?: boolean | `@${string}`;
|
|
759
819
|
locale?: boolean | `@${string}`;
|
|
760
820
|
__typename?: boolean | `@${string}`;
|
|
821
|
+
['...on RootParamsType']?: Omit<ValueTypes["RootParamsType"], "...on RootParamsType">;
|
|
761
822
|
}>;
|
|
762
823
|
["ModelEnum"]: ModelEnum;
|
|
763
824
|
["ViewEnum"]: ViewEnum;
|
|
@@ -767,6 +828,7 @@ export type ValueTypes = {
|
|
|
767
828
|
items?: ValueTypes["docs"];
|
|
768
829
|
pageInfo?: ValueTypes["PageInfo"];
|
|
769
830
|
__typename?: boolean | `@${string}`;
|
|
831
|
+
['...on docs__Connection']?: Omit<ValueTypes["docs__Connection"], "...on docs__Connection">;
|
|
770
832
|
}>;
|
|
771
833
|
["docs"]: AliasType<{
|
|
772
834
|
_version?: ValueTypes["VersionField"];
|
|
@@ -785,11 +847,13 @@ export type ValueTypes = {
|
|
|
785
847
|
draft_version?: boolean | `@${string}`;
|
|
786
848
|
json_ld?: boolean | `@${string}`;
|
|
787
849
|
__typename?: boolean | `@${string}`;
|
|
850
|
+
['...on docs']?: Omit<ValueTypes["docs"], "...on docs">;
|
|
788
851
|
}>;
|
|
789
852
|
["ViewaccountMain"]: AliasType<{
|
|
790
853
|
profile?: ValueTypes["Shapeprofile_info"];
|
|
791
854
|
projects?: ValueTypes["Shapelista_projektow"];
|
|
792
855
|
__typename?: boolean | `@${string}`;
|
|
856
|
+
['...on ViewaccountMain']?: Omit<ValueTypes["ViewaccountMain"], "...on ViewaccountMain">;
|
|
793
857
|
}>;
|
|
794
858
|
["Viewaccount"]: AliasType<{
|
|
795
859
|
_version?: ValueTypes["VersionField"];
|
|
@@ -802,11 +866,13 @@ export type ValueTypes = {
|
|
|
802
866
|
draft_version?: boolean | `@${string}`;
|
|
803
867
|
json_ld?: boolean | `@${string}`;
|
|
804
868
|
__typename?: boolean | `@${string}`;
|
|
869
|
+
['...on Viewaccount']?: Omit<ValueTypes["Viewaccount"], "...on Viewaccount">;
|
|
805
870
|
}>;
|
|
806
871
|
["ViewfeaturesMain"]: AliasType<{
|
|
807
872
|
auto_translation?: ValueTypes["Shapefeaturepresentation"];
|
|
808
873
|
ai_component?: ValueTypes["Shapefeaturepresentation"];
|
|
809
874
|
__typename?: boolean | `@${string}`;
|
|
875
|
+
['...on ViewfeaturesMain']?: Omit<ValueTypes["ViewfeaturesMain"], "...on ViewfeaturesMain">;
|
|
810
876
|
}>;
|
|
811
877
|
["Viewfeatures"]: AliasType<{
|
|
812
878
|
_version?: ValueTypes["VersionField"];
|
|
@@ -819,24 +885,27 @@ export type ValueTypes = {
|
|
|
819
885
|
draft_version?: boolean | `@${string}`;
|
|
820
886
|
json_ld?: boolean | `@${string}`;
|
|
821
887
|
__typename?: boolean | `@${string}`;
|
|
888
|
+
['...on Viewfeatures']?: Omit<ValueTypes["Viewfeatures"], "...on Viewfeatures">;
|
|
822
889
|
}>;
|
|
823
890
|
["ViewhomepageCotContain"]: AliasType<{
|
|
824
891
|
header?: ValueTypes["Shapetitle_desc"];
|
|
825
892
|
__typename?: boolean | `@${string}`;
|
|
893
|
+
['...on ViewhomepageCotContain']?: Omit<ValueTypes["ViewhomepageCotContain"], "...on ViewhomepageCotContain">;
|
|
826
894
|
}>;
|
|
827
895
|
["ViewhomepageCotFeatures"]: AliasType<{
|
|
828
896
|
feat?: ValueTypes["Shapefeaturepresentation"];
|
|
829
897
|
__typename?: boolean | `@${string}`;
|
|
898
|
+
['...on ViewhomepageCotFeatures']?: Omit<ValueTypes["ViewhomepageCotFeatures"], "...on ViewhomepageCotFeatures">;
|
|
830
899
|
}>;
|
|
831
900
|
["ViewhomepageCot"]: AliasType<{
|
|
832
901
|
contain?: ValueTypes["ViewhomepageCotContain"];
|
|
833
902
|
features?: ValueTypes["ViewhomepageCotFeatures"];
|
|
834
903
|
__typename?: boolean | `@${string}`;
|
|
904
|
+
['...on ViewhomepageCot']?: Omit<ValueTypes["ViewhomepageCot"], "...on ViewhomepageCot">;
|
|
835
905
|
}>;
|
|
836
906
|
["Viewhomepage"]: AliasType<{
|
|
837
907
|
_version?: ValueTypes["VersionField"];
|
|
838
908
|
nav?: ValueTypes["Shapenav"];
|
|
839
|
-
main?: ValueTypes["Shapehero"];
|
|
840
909
|
hero?: ValueTypes["Shapeherox"];
|
|
841
910
|
cot?: ValueTypes["ViewhomepageCot"];
|
|
842
911
|
pricing?: ValueTypes["Shapepricingv1"];
|
|
@@ -849,12 +918,14 @@ export type ValueTypes = {
|
|
|
849
918
|
draft_version?: boolean | `@${string}`;
|
|
850
919
|
json_ld?: boolean | `@${string}`;
|
|
851
920
|
__typename?: boolean | `@${string}`;
|
|
921
|
+
['...on Viewhomepage']?: Omit<ValueTypes["Viewhomepage"], "...on Viewhomepage">;
|
|
852
922
|
}>;
|
|
853
923
|
["ViewhowitworksFeature_control"]: AliasType<{
|
|
854
924
|
title?: boolean | `@${string}`;
|
|
855
925
|
description?: boolean | `@${string}`;
|
|
856
926
|
image?: ValueTypes["ImageField"];
|
|
857
927
|
__typename?: boolean | `@${string}`;
|
|
928
|
+
['...on ViewhowitworksFeature_control']?: Omit<ValueTypes["ViewhowitworksFeature_control"], "...on ViewhowitworksFeature_control">;
|
|
858
929
|
}>;
|
|
859
930
|
["Viewhowitworks"]: AliasType<{
|
|
860
931
|
_version?: ValueTypes["VersionField"];
|
|
@@ -868,12 +939,10 @@ export type ValueTypes = {
|
|
|
868
939
|
draft_version?: boolean | `@${string}`;
|
|
869
940
|
json_ld?: boolean | `@${string}`;
|
|
870
941
|
__typename?: boolean | `@${string}`;
|
|
942
|
+
['...on Viewhowitworks']?: Omit<ValueTypes["Viewhowitworks"], "...on Viewhowitworks">;
|
|
871
943
|
}>;
|
|
872
|
-
["
|
|
944
|
+
["Viewpricing_component"]: AliasType<{
|
|
873
945
|
_version?: ValueTypes["VersionField"];
|
|
874
|
-
pricing?: ValueTypes["Shapepricingv1"];
|
|
875
|
-
table?: ValueTypes["Shapepricing_table"];
|
|
876
|
-
cta?: ValueTypes["Shapenewshape"];
|
|
877
946
|
locale?: boolean | `@${string}`;
|
|
878
947
|
slug?: boolean | `@${string}`;
|
|
879
948
|
_id?: boolean | `@${string}`;
|
|
@@ -882,6 +951,7 @@ export type ValueTypes = {
|
|
|
882
951
|
draft_version?: boolean | `@${string}`;
|
|
883
952
|
json_ld?: boolean | `@${string}`;
|
|
884
953
|
__typename?: boolean | `@${string}`;
|
|
954
|
+
['...on Viewpricing_component']?: Omit<ValueTypes["Viewpricing_component"], "...on Viewpricing_component">;
|
|
885
955
|
}>;
|
|
886
956
|
["Viewttt"]: AliasType<{
|
|
887
957
|
_version?: ValueTypes["VersionField"];
|
|
@@ -893,63 +963,75 @@ export type ValueTypes = {
|
|
|
893
963
|
draft_version?: boolean | `@${string}`;
|
|
894
964
|
json_ld?: boolean | `@${string}`;
|
|
895
965
|
__typename?: boolean | `@${string}`;
|
|
966
|
+
['...on Viewttt']?: Omit<ValueTypes["Viewttt"], "...on Viewttt">;
|
|
896
967
|
}>;
|
|
897
968
|
["Shapeaplikacja_gNavbarMenu"]: AliasType<{
|
|
898
969
|
name?: boolean | `@${string}`;
|
|
899
970
|
href?: boolean | `@${string}`;
|
|
900
971
|
__typename?: boolean | `@${string}`;
|
|
972
|
+
['...on Shapeaplikacja_gNavbarMenu']?: Omit<ValueTypes["Shapeaplikacja_gNavbarMenu"], "...on Shapeaplikacja_gNavbarMenu">;
|
|
901
973
|
}>;
|
|
902
974
|
["Shapeaplikacja_gNavbar"]: AliasType<{
|
|
903
975
|
logo?: boolean | `@${string}`;
|
|
904
976
|
menu?: ValueTypes["Shapeaplikacja_gNavbarMenu"];
|
|
905
977
|
__typename?: boolean | `@${string}`;
|
|
978
|
+
['...on Shapeaplikacja_gNavbar']?: Omit<ValueTypes["Shapeaplikacja_gNavbar"], "...on Shapeaplikacja_gNavbar">;
|
|
906
979
|
}>;
|
|
907
980
|
["Shapeaplikacja_gHero"]: AliasType<{
|
|
908
981
|
heading?: boolean | `@${string}`;
|
|
909
982
|
subheading?: boolean | `@${string}`;
|
|
910
983
|
__typename?: boolean | `@${string}`;
|
|
984
|
+
['...on Shapeaplikacja_gHero']?: Omit<ValueTypes["Shapeaplikacja_gHero"], "...on Shapeaplikacja_gHero">;
|
|
911
985
|
}>;
|
|
912
986
|
["Shapeaplikacja_gExplainer_video"]: AliasType<{
|
|
913
987
|
title?: boolean | `@${string}`;
|
|
914
988
|
description?: boolean | `@${string}`;
|
|
915
989
|
video?: ValueTypes["VideoField"];
|
|
916
990
|
__typename?: boolean | `@${string}`;
|
|
991
|
+
['...on Shapeaplikacja_gExplainer_video']?: Omit<ValueTypes["Shapeaplikacja_gExplainer_video"], "...on Shapeaplikacja_gExplainer_video">;
|
|
917
992
|
}>;
|
|
918
993
|
["Shapeaplikacja_gVideo_list"]: AliasType<{
|
|
919
994
|
title?: boolean | `@${string}`;
|
|
920
995
|
description?: boolean | `@${string}`;
|
|
921
996
|
video?: ValueTypes["VideoField"];
|
|
922
997
|
__typename?: boolean | `@${string}`;
|
|
998
|
+
['...on Shapeaplikacja_gVideo_list']?: Omit<ValueTypes["Shapeaplikacja_gVideo_list"], "...on Shapeaplikacja_gVideo_list">;
|
|
923
999
|
}>;
|
|
924
1000
|
["Shapeaplikacja_gStatsItems"]: AliasType<{
|
|
925
1001
|
label?: boolean | `@${string}`;
|
|
926
1002
|
value?: boolean | `@${string}`;
|
|
927
1003
|
__typename?: boolean | `@${string}`;
|
|
1004
|
+
['...on Shapeaplikacja_gStatsItems']?: Omit<ValueTypes["Shapeaplikacja_gStatsItems"], "...on Shapeaplikacja_gStatsItems">;
|
|
928
1005
|
}>;
|
|
929
1006
|
["Shapeaplikacja_gStats"]: AliasType<{
|
|
930
1007
|
items?: ValueTypes["Shapeaplikacja_gStatsItems"];
|
|
931
1008
|
__typename?: boolean | `@${string}`;
|
|
1009
|
+
['...on Shapeaplikacja_gStats']?: Omit<ValueTypes["Shapeaplikacja_gStats"], "...on Shapeaplikacja_gStats">;
|
|
932
1010
|
}>;
|
|
933
1011
|
["Shapeaplikacja_gTestimonials"]: AliasType<{
|
|
934
1012
|
name?: boolean | `@${string}`;
|
|
935
1013
|
text?: boolean | `@${string}`;
|
|
936
1014
|
__typename?: boolean | `@${string}`;
|
|
1015
|
+
['...on Shapeaplikacja_gTestimonials']?: Omit<ValueTypes["Shapeaplikacja_gTestimonials"], "...on Shapeaplikacja_gTestimonials">;
|
|
937
1016
|
}>;
|
|
938
1017
|
["Shapeaplikacja_gCall_to_action"]: AliasType<{
|
|
939
1018
|
heading?: boolean | `@${string}`;
|
|
940
1019
|
description?: boolean | `@${string}`;
|
|
941
1020
|
button_text?: boolean | `@${string}`;
|
|
942
1021
|
__typename?: boolean | `@${string}`;
|
|
1022
|
+
['...on Shapeaplikacja_gCall_to_action']?: Omit<ValueTypes["Shapeaplikacja_gCall_to_action"], "...on Shapeaplikacja_gCall_to_action">;
|
|
943
1023
|
}>;
|
|
944
1024
|
["Shapeaplikacja_gFooterLinks"]: AliasType<{
|
|
945
1025
|
label?: boolean | `@${string}`;
|
|
946
1026
|
href?: boolean | `@${string}`;
|
|
947
1027
|
__typename?: boolean | `@${string}`;
|
|
1028
|
+
['...on Shapeaplikacja_gFooterLinks']?: Omit<ValueTypes["Shapeaplikacja_gFooterLinks"], "...on Shapeaplikacja_gFooterLinks">;
|
|
948
1029
|
}>;
|
|
949
1030
|
["Shapeaplikacja_gFooter"]: AliasType<{
|
|
950
1031
|
copyright?: boolean | `@${string}`;
|
|
951
1032
|
links?: ValueTypes["Shapeaplikacja_gFooterLinks"];
|
|
952
1033
|
__typename?: boolean | `@${string}`;
|
|
1034
|
+
['...on Shapeaplikacja_gFooter']?: Omit<ValueTypes["Shapeaplikacja_gFooter"], "...on Shapeaplikacja_gFooter">;
|
|
953
1035
|
}>;
|
|
954
1036
|
["Shapeaplikacja_g"]: AliasType<{
|
|
955
1037
|
navbar?: ValueTypes["Shapeaplikacja_gNavbar"];
|
|
@@ -964,34 +1046,41 @@ export type ValueTypes = {
|
|
|
964
1046
|
createdAt?: boolean | `@${string}`;
|
|
965
1047
|
updatedAt?: boolean | `@${string}`;
|
|
966
1048
|
__typename?: boolean | `@${string}`;
|
|
1049
|
+
['...on Shapeaplikacja_g']?: Omit<ValueTypes["Shapeaplikacja_g"], "...on Shapeaplikacja_g">;
|
|
967
1050
|
}>;
|
|
968
1051
|
["Shapecloud_sidebarSidebarMenuCategoryPage"]: AliasType<{
|
|
969
1052
|
name?: boolean | `@${string}`;
|
|
970
1053
|
link?: boolean | `@${string}`;
|
|
971
1054
|
__typename?: boolean | `@${string}`;
|
|
1055
|
+
['...on Shapecloud_sidebarSidebarMenuCategoryPage']?: Omit<ValueTypes["Shapecloud_sidebarSidebarMenuCategoryPage"], "...on Shapecloud_sidebarSidebarMenuCategoryPage">;
|
|
972
1056
|
}>;
|
|
973
1057
|
["Shapecloud_sidebarSidebarMenuCategory"]: AliasType<{
|
|
974
1058
|
page?: ValueTypes["Shapecloud_sidebarSidebarMenuCategoryPage"];
|
|
975
1059
|
__typename?: boolean | `@${string}`;
|
|
1060
|
+
['...on Shapecloud_sidebarSidebarMenuCategory']?: Omit<ValueTypes["Shapecloud_sidebarSidebarMenuCategory"], "...on Shapecloud_sidebarSidebarMenuCategory">;
|
|
976
1061
|
}>;
|
|
977
1062
|
["Shapecloud_sidebarSidebarMenu"]: AliasType<{
|
|
978
1063
|
logo?: ValueTypes["ImageField"];
|
|
979
1064
|
category?: ValueTypes["Shapecloud_sidebarSidebarMenuCategory"];
|
|
980
1065
|
__typename?: boolean | `@${string}`;
|
|
1066
|
+
['...on Shapecloud_sidebarSidebarMenu']?: Omit<ValueTypes["Shapecloud_sidebarSidebarMenu"], "...on Shapecloud_sidebarSidebarMenu">;
|
|
981
1067
|
}>;
|
|
982
1068
|
["Shapecloud_sidebarSidebarBottom_menuLogout"]: AliasType<{
|
|
983
1069
|
name?: boolean | `@${string}`;
|
|
984
1070
|
link?: boolean | `@${string}`;
|
|
985
1071
|
__typename?: boolean | `@${string}`;
|
|
1072
|
+
['...on Shapecloud_sidebarSidebarBottom_menuLogout']?: Omit<ValueTypes["Shapecloud_sidebarSidebarBottom_menuLogout"], "...on Shapecloud_sidebarSidebarBottom_menuLogout">;
|
|
986
1073
|
}>;
|
|
987
1074
|
["Shapecloud_sidebarSidebarBottom_menu"]: AliasType<{
|
|
988
1075
|
logout?: ValueTypes["Shapecloud_sidebarSidebarBottom_menuLogout"];
|
|
989
1076
|
__typename?: boolean | `@${string}`;
|
|
1077
|
+
['...on Shapecloud_sidebarSidebarBottom_menu']?: Omit<ValueTypes["Shapecloud_sidebarSidebarBottom_menu"], "...on Shapecloud_sidebarSidebarBottom_menu">;
|
|
990
1078
|
}>;
|
|
991
1079
|
["Shapecloud_sidebarSidebar"]: AliasType<{
|
|
992
1080
|
menu?: ValueTypes["Shapecloud_sidebarSidebarMenu"];
|
|
993
1081
|
bottom_menu?: ValueTypes["Shapecloud_sidebarSidebarBottom_menu"];
|
|
994
1082
|
__typename?: boolean | `@${string}`;
|
|
1083
|
+
['...on Shapecloud_sidebarSidebar']?: Omit<ValueTypes["Shapecloud_sidebarSidebar"], "...on Shapecloud_sidebarSidebar">;
|
|
995
1084
|
}>;
|
|
996
1085
|
["Shapecloud_sidebar"]: AliasType<{
|
|
997
1086
|
sidebar?: ValueTypes["Shapecloud_sidebarSidebar"];
|
|
@@ -999,26 +1088,31 @@ export type ValueTypes = {
|
|
|
999
1088
|
createdAt?: boolean | `@${string}`;
|
|
1000
1089
|
updatedAt?: boolean | `@${string}`;
|
|
1001
1090
|
__typename?: boolean | `@${string}`;
|
|
1091
|
+
['...on Shapecloud_sidebar']?: Omit<ValueTypes["Shapecloud_sidebar"], "...on Shapecloud_sidebar">;
|
|
1002
1092
|
}>;
|
|
1003
1093
|
["Shapecta_boomSectionContentCentered_contentBadge"]: AliasType<{
|
|
1004
1094
|
dot?: boolean | `@${string}`;
|
|
1005
1095
|
badge_text?: boolean | `@${string}`;
|
|
1006
1096
|
__typename?: boolean | `@${string}`;
|
|
1097
|
+
['...on Shapecta_boomSectionContentCentered_contentBadge']?: Omit<ValueTypes["Shapecta_boomSectionContentCentered_contentBadge"], "...on Shapecta_boomSectionContentCentered_contentBadge">;
|
|
1007
1098
|
}>;
|
|
1008
1099
|
["Shapecta_boomSectionContentCentered_contentCta_blockCta_primary"]: AliasType<{
|
|
1009
1100
|
cta?: boolean | `@${string}`;
|
|
1010
1101
|
href?: boolean | `@${string}`;
|
|
1011
1102
|
__typename?: boolean | `@${string}`;
|
|
1103
|
+
['...on Shapecta_boomSectionContentCentered_contentCta_blockCta_primary']?: Omit<ValueTypes["Shapecta_boomSectionContentCentered_contentCta_blockCta_primary"], "...on Shapecta_boomSectionContentCentered_contentCta_blockCta_primary">;
|
|
1012
1104
|
}>;
|
|
1013
1105
|
["Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary"]: AliasType<{
|
|
1014
1106
|
cta?: boolean | `@${string}`;
|
|
1015
1107
|
href?: boolean | `@${string}`;
|
|
1016
1108
|
__typename?: boolean | `@${string}`;
|
|
1109
|
+
['...on Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary']?: Omit<ValueTypes["Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary"], "...on Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary">;
|
|
1017
1110
|
}>;
|
|
1018
1111
|
["Shapecta_boomSectionContentCentered_contentCta_block"]: AliasType<{
|
|
1019
1112
|
cta_primary?: ValueTypes["Shapecta_boomSectionContentCentered_contentCta_blockCta_primary"];
|
|
1020
1113
|
cta_secondary?: ValueTypes["Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary"];
|
|
1021
1114
|
__typename?: boolean | `@${string}`;
|
|
1115
|
+
['...on Shapecta_boomSectionContentCentered_contentCta_block']?: Omit<ValueTypes["Shapecta_boomSectionContentCentered_contentCta_block"], "...on Shapecta_boomSectionContentCentered_contentCta_block">;
|
|
1022
1116
|
}>;
|
|
1023
1117
|
["Shapecta_boomSectionContentCentered_content"]: AliasType<{
|
|
1024
1118
|
badge?: ValueTypes["Shapecta_boomSectionContentCentered_contentBadge"];
|
|
@@ -1028,14 +1122,17 @@ export type ValueTypes = {
|
|
|
1028
1122
|
cta_block?: ValueTypes["Shapecta_boomSectionContentCentered_contentCta_block"];
|
|
1029
1123
|
footer_note?: boolean | `@${string}`;
|
|
1030
1124
|
__typename?: boolean | `@${string}`;
|
|
1125
|
+
['...on Shapecta_boomSectionContentCentered_content']?: Omit<ValueTypes["Shapecta_boomSectionContentCentered_content"], "...on Shapecta_boomSectionContentCentered_content">;
|
|
1031
1126
|
}>;
|
|
1032
1127
|
["Shapecta_boomSectionContent"]: AliasType<{
|
|
1033
1128
|
centered_content?: ValueTypes["Shapecta_boomSectionContentCentered_content"];
|
|
1034
1129
|
__typename?: boolean | `@${string}`;
|
|
1130
|
+
['...on Shapecta_boomSectionContent']?: Omit<ValueTypes["Shapecta_boomSectionContent"], "...on Shapecta_boomSectionContent">;
|
|
1035
1131
|
}>;
|
|
1036
1132
|
["Shapecta_boomSection"]: AliasType<{
|
|
1037
1133
|
content?: ValueTypes["Shapecta_boomSectionContent"];
|
|
1038
1134
|
__typename?: boolean | `@${string}`;
|
|
1135
|
+
['...on Shapecta_boomSection']?: Omit<ValueTypes["Shapecta_boomSection"], "...on Shapecta_boomSection">;
|
|
1039
1136
|
}>;
|
|
1040
1137
|
["Shapecta_boom"]: AliasType<{
|
|
1041
1138
|
section?: ValueTypes["Shapecta_boomSection"];
|
|
@@ -1043,6 +1140,7 @@ export type ValueTypes = {
|
|
|
1043
1140
|
createdAt?: boolean | `@${string}`;
|
|
1044
1141
|
updatedAt?: boolean | `@${string}`;
|
|
1045
1142
|
__typename?: boolean | `@${string}`;
|
|
1143
|
+
['...on Shapecta_boom']?: Omit<ValueTypes["Shapecta_boom"], "...on Shapecta_boom">;
|
|
1046
1144
|
}>;
|
|
1047
1145
|
["Shapectabutton"]: AliasType<{
|
|
1048
1146
|
cta?: boolean | `@${string}`;
|
|
@@ -1050,28 +1148,34 @@ export type ValueTypes = {
|
|
|
1050
1148
|
createdAt?: boolean | `@${string}`;
|
|
1051
1149
|
updatedAt?: boolean | `@${string}`;
|
|
1052
1150
|
__typename?: boolean | `@${string}`;
|
|
1151
|
+
['...on Shapectabutton']?: Omit<ValueTypes["Shapectabutton"], "...on Shapectabutton">;
|
|
1053
1152
|
}>;
|
|
1054
1153
|
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: AliasType<{
|
|
1055
1154
|
content?: boolean | `@${string}`;
|
|
1056
1155
|
__typename?: boolean | `@${string}`;
|
|
1156
|
+
['...on Shapedocs_contentDocumentation_pageContent_containerDoc_content']?: Omit<ValueTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"], "...on Shapedocs_contentDocumentation_pageContent_containerDoc_content">;
|
|
1057
1157
|
}>;
|
|
1058
1158
|
["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"]: AliasType<{
|
|
1059
1159
|
scrollspy_title?: boolean | `@${string}`;
|
|
1060
1160
|
scrollspy_list?: boolean | `@${string}`;
|
|
1061
1161
|
__typename?: boolean | `@${string}`;
|
|
1162
|
+
['...on Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container']?: Omit<ValueTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"], "...on Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container">;
|
|
1062
1163
|
}>;
|
|
1063
1164
|
["Shapedocs_contentDocumentation_pageContent_containerScrollspy"]: AliasType<{
|
|
1064
1165
|
scrollspy_container?: ValueTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"];
|
|
1065
1166
|
__typename?: boolean | `@${string}`;
|
|
1167
|
+
['...on Shapedocs_contentDocumentation_pageContent_containerScrollspy']?: Omit<ValueTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"], "...on Shapedocs_contentDocumentation_pageContent_containerScrollspy">;
|
|
1066
1168
|
}>;
|
|
1067
1169
|
["Shapedocs_contentDocumentation_pageContent_container"]: AliasType<{
|
|
1068
1170
|
doc_content?: ValueTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"];
|
|
1069
1171
|
scrollspy?: ValueTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"];
|
|
1070
1172
|
__typename?: boolean | `@${string}`;
|
|
1173
|
+
['...on Shapedocs_contentDocumentation_pageContent_container']?: Omit<ValueTypes["Shapedocs_contentDocumentation_pageContent_container"], "...on Shapedocs_contentDocumentation_pageContent_container">;
|
|
1071
1174
|
}>;
|
|
1072
1175
|
["Shapedocs_contentDocumentation_page"]: AliasType<{
|
|
1073
1176
|
content_container?: ValueTypes["Shapedocs_contentDocumentation_pageContent_container"];
|
|
1074
1177
|
__typename?: boolean | `@${string}`;
|
|
1178
|
+
['...on Shapedocs_contentDocumentation_page']?: Omit<ValueTypes["Shapedocs_contentDocumentation_page"], "...on Shapedocs_contentDocumentation_page">;
|
|
1075
1179
|
}>;
|
|
1076
1180
|
["Shapedocs_content"]: AliasType<{
|
|
1077
1181
|
documentation_page?: ValueTypes["Shapedocs_contentDocumentation_page"];
|
|
@@ -1079,24 +1183,29 @@ export type ValueTypes = {
|
|
|
1079
1183
|
createdAt?: boolean | `@${string}`;
|
|
1080
1184
|
updatedAt?: boolean | `@${string}`;
|
|
1081
1185
|
__typename?: boolean | `@${string}`;
|
|
1186
|
+
['...on Shapedocs_content']?: Omit<ValueTypes["Shapedocs_content"], "...on Shapedocs_content">;
|
|
1082
1187
|
}>;
|
|
1083
1188
|
["Shapedocs_navMainListChildrenCategory"]: AliasType<{
|
|
1084
1189
|
name?: boolean | `@${string}`;
|
|
1085
1190
|
link?: boolean | `@${string}`;
|
|
1086
1191
|
__typename?: boolean | `@${string}`;
|
|
1192
|
+
['...on Shapedocs_navMainListChildrenCategory']?: Omit<ValueTypes["Shapedocs_navMainListChildrenCategory"], "...on Shapedocs_navMainListChildrenCategory">;
|
|
1087
1193
|
}>;
|
|
1088
1194
|
["Shapedocs_navMainListChildren"]: AliasType<{
|
|
1089
1195
|
category?: ValueTypes["Shapedocs_navMainListChildrenCategory"];
|
|
1090
1196
|
__typename?: boolean | `@${string}`;
|
|
1197
|
+
['...on Shapedocs_navMainListChildren']?: Omit<ValueTypes["Shapedocs_navMainListChildren"], "...on Shapedocs_navMainListChildren">;
|
|
1091
1198
|
}>;
|
|
1092
1199
|
["Shapedocs_navMainList"]: AliasType<{
|
|
1093
1200
|
title?: boolean | `@${string}`;
|
|
1094
1201
|
children?: ValueTypes["Shapedocs_navMainListChildren"];
|
|
1095
1202
|
__typename?: boolean | `@${string}`;
|
|
1203
|
+
['...on Shapedocs_navMainList']?: Omit<ValueTypes["Shapedocs_navMainList"], "...on Shapedocs_navMainList">;
|
|
1096
1204
|
}>;
|
|
1097
1205
|
["Shapedocs_navMain"]: AliasType<{
|
|
1098
1206
|
list?: ValueTypes["Shapedocs_navMainList"];
|
|
1099
1207
|
__typename?: boolean | `@${string}`;
|
|
1208
|
+
['...on Shapedocs_navMain']?: Omit<ValueTypes["Shapedocs_navMain"], "...on Shapedocs_navMain">;
|
|
1100
1209
|
}>;
|
|
1101
1210
|
["Shapedocs_nav"]: AliasType<{
|
|
1102
1211
|
main?: ValueTypes["Shapedocs_navMain"];
|
|
@@ -1104,12 +1213,14 @@ export type ValueTypes = {
|
|
|
1104
1213
|
createdAt?: boolean | `@${string}`;
|
|
1105
1214
|
updatedAt?: boolean | `@${string}`;
|
|
1106
1215
|
__typename?: boolean | `@${string}`;
|
|
1216
|
+
['...on Shapedocs_nav']?: Omit<ValueTypes["Shapedocs_nav"], "...on Shapedocs_nav">;
|
|
1107
1217
|
}>;
|
|
1108
1218
|
["ShapefeaturepresentationMain"]: AliasType<{
|
|
1109
1219
|
title?: boolean | `@${string}`;
|
|
1110
1220
|
subtitle?: boolean | `@${string}`;
|
|
1111
1221
|
content?: boolean | `@${string}`;
|
|
1112
1222
|
__typename?: boolean | `@${string}`;
|
|
1223
|
+
['...on ShapefeaturepresentationMain']?: Omit<ValueTypes["ShapefeaturepresentationMain"], "...on ShapefeaturepresentationMain">;
|
|
1113
1224
|
}>;
|
|
1114
1225
|
["Shapefeaturepresentation"]: AliasType<{
|
|
1115
1226
|
main?: ValueTypes["ShapefeaturepresentationMain"];
|
|
@@ -1117,22 +1228,33 @@ export type ValueTypes = {
|
|
|
1117
1228
|
createdAt?: boolean | `@${string}`;
|
|
1118
1229
|
updatedAt?: boolean | `@${string}`;
|
|
1119
1230
|
__typename?: boolean | `@${string}`;
|
|
1231
|
+
['...on Shapefeaturepresentation']?: Omit<ValueTypes["Shapefeaturepresentation"], "...on Shapefeaturepresentation">;
|
|
1232
|
+
}>;
|
|
1233
|
+
["Shapefeaturesv2"]: AliasType<{
|
|
1234
|
+
_id?: boolean | `@${string}`;
|
|
1235
|
+
createdAt?: boolean | `@${string}`;
|
|
1236
|
+
updatedAt?: boolean | `@${string}`;
|
|
1237
|
+
__typename?: boolean | `@${string}`;
|
|
1238
|
+
['...on Shapefeaturesv2']?: Omit<ValueTypes["Shapefeaturesv2"], "...on Shapefeaturesv2">;
|
|
1120
1239
|
}>;
|
|
1121
1240
|
["ShapefootFooterFooter_containerFooter_links"]: AliasType<{
|
|
1122
1241
|
privacy_policy?: boolean | `@${string}`;
|
|
1123
1242
|
terms_of_service?: boolean | `@${string}`;
|
|
1124
1243
|
contact_us?: boolean | `@${string}`;
|
|
1125
1244
|
__typename?: boolean | `@${string}`;
|
|
1245
|
+
['...on ShapefootFooterFooter_containerFooter_links']?: Omit<ValueTypes["ShapefootFooterFooter_containerFooter_links"], "...on ShapefootFooterFooter_containerFooter_links">;
|
|
1126
1246
|
}>;
|
|
1127
1247
|
["ShapefootFooterFooter_container"]: AliasType<{
|
|
1128
1248
|
footer_logo?: boolean | `@${string}`;
|
|
1129
1249
|
footer_links?: ValueTypes["ShapefootFooterFooter_containerFooter_links"];
|
|
1130
1250
|
footer_copy?: boolean | `@${string}`;
|
|
1131
1251
|
__typename?: boolean | `@${string}`;
|
|
1252
|
+
['...on ShapefootFooterFooter_container']?: Omit<ValueTypes["ShapefootFooterFooter_container"], "...on ShapefootFooterFooter_container">;
|
|
1132
1253
|
}>;
|
|
1133
1254
|
["ShapefootFooter"]: AliasType<{
|
|
1134
1255
|
footer_container?: ValueTypes["ShapefootFooterFooter_container"];
|
|
1135
1256
|
__typename?: boolean | `@${string}`;
|
|
1257
|
+
['...on ShapefootFooter']?: Omit<ValueTypes["ShapefootFooter"], "...on ShapefootFooter">;
|
|
1136
1258
|
}>;
|
|
1137
1259
|
["Shapefoot"]: AliasType<{
|
|
1138
1260
|
footer?: ValueTypes["ShapefootFooter"];
|
|
@@ -1140,10 +1262,20 @@ export type ValueTypes = {
|
|
|
1140
1262
|
createdAt?: boolean | `@${string}`;
|
|
1141
1263
|
updatedAt?: boolean | `@${string}`;
|
|
1142
1264
|
__typename?: boolean | `@${string}`;
|
|
1265
|
+
['...on Shapefoot']?: Omit<ValueTypes["Shapefoot"], "...on Shapefoot">;
|
|
1266
|
+
}>;
|
|
1267
|
+
["Shapeheading"]: AliasType<{
|
|
1268
|
+
text?: boolean | `@${string}`;
|
|
1269
|
+
_id?: boolean | `@${string}`;
|
|
1270
|
+
createdAt?: boolean | `@${string}`;
|
|
1271
|
+
updatedAt?: boolean | `@${string}`;
|
|
1272
|
+
__typename?: boolean | `@${string}`;
|
|
1273
|
+
['...on Shapeheading']?: Omit<ValueTypes["Shapeheading"], "...on Shapeheading">;
|
|
1143
1274
|
}>;
|
|
1144
1275
|
["ShapeheroHero_componentSlogan_parent"]: AliasType<{
|
|
1145
1276
|
slogan?: boolean | `@${string}`;
|
|
1146
1277
|
__typename?: boolean | `@${string}`;
|
|
1278
|
+
['...on ShapeheroHero_componentSlogan_parent']?: Omit<ValueTypes["ShapeheroHero_componentSlogan_parent"], "...on ShapeheroHero_componentSlogan_parent">;
|
|
1147
1279
|
}>;
|
|
1148
1280
|
["ShapeheroHero_component"]: AliasType<{
|
|
1149
1281
|
logoplace?: boolean | `@${string}`;
|
|
@@ -1151,6 +1283,7 @@ export type ValueTypes = {
|
|
|
1151
1283
|
slogan_parent?: ValueTypes["ShapeheroHero_componentSlogan_parent"];
|
|
1152
1284
|
subslogan?: boolean | `@${string}`;
|
|
1153
1285
|
__typename?: boolean | `@${string}`;
|
|
1286
|
+
['...on ShapeheroHero_component']?: Omit<ValueTypes["ShapeheroHero_component"], "...on ShapeheroHero_component">;
|
|
1154
1287
|
}>;
|
|
1155
1288
|
["Shapehero"]: AliasType<{
|
|
1156
1289
|
hero_component?: ValueTypes["ShapeheroHero_component"];
|
|
@@ -1158,34 +1291,41 @@ export type ValueTypes = {
|
|
|
1158
1291
|
createdAt?: boolean | `@${string}`;
|
|
1159
1292
|
updatedAt?: boolean | `@${string}`;
|
|
1160
1293
|
__typename?: boolean | `@${string}`;
|
|
1294
|
+
['...on Shapehero']?: Omit<ValueTypes["Shapehero"], "...on Shapehero">;
|
|
1161
1295
|
}>;
|
|
1162
1296
|
["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"]: AliasType<{
|
|
1163
1297
|
feature?: boolean | `@${string}`;
|
|
1164
1298
|
__typename?: boolean | `@${string}`;
|
|
1299
|
+
['...on ShapeheroxHero_sectionHero_containerText_wrapperFeatures']?: Omit<ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"], "...on ShapeheroxHero_sectionHero_containerText_wrapperFeatures">;
|
|
1165
1300
|
}>;
|
|
1166
1301
|
["ShapeheroxHero_sectionHero_containerText_wrapper"]: AliasType<{
|
|
1167
1302
|
title?: boolean | `@${string}`;
|
|
1168
1303
|
description?: boolean | `@${string}`;
|
|
1169
1304
|
features?: ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"];
|
|
1170
1305
|
__typename?: boolean | `@${string}`;
|
|
1306
|
+
['...on ShapeheroxHero_sectionHero_containerText_wrapper']?: Omit<ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapper"], "...on ShapeheroxHero_sectionHero_containerText_wrapper">;
|
|
1171
1307
|
}>;
|
|
1172
1308
|
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: AliasType<{
|
|
1173
1309
|
hero_image?: ValueTypes["ImageField"];
|
|
1174
1310
|
__typename?: boolean | `@${string}`;
|
|
1311
|
+
['...on ShapeheroxHero_sectionHero_containerImage_wrapper']?: Omit<ValueTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"], "...on ShapeheroxHero_sectionHero_containerImage_wrapper">;
|
|
1175
1312
|
}>;
|
|
1176
1313
|
["ShapeheroxHero_sectionHero_containerPresentation"]: AliasType<{
|
|
1177
1314
|
video?: ValueTypes["VideoField"];
|
|
1178
1315
|
__typename?: boolean | `@${string}`;
|
|
1316
|
+
['...on ShapeheroxHero_sectionHero_containerPresentation']?: Omit<ValueTypes["ShapeheroxHero_sectionHero_containerPresentation"], "...on ShapeheroxHero_sectionHero_containerPresentation">;
|
|
1179
1317
|
}>;
|
|
1180
1318
|
["ShapeheroxHero_sectionHero_container"]: AliasType<{
|
|
1181
1319
|
text_wrapper?: ValueTypes["ShapeheroxHero_sectionHero_containerText_wrapper"];
|
|
1182
1320
|
image_wrapper?: ValueTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"];
|
|
1183
1321
|
presentation?: ValueTypes["ShapeheroxHero_sectionHero_containerPresentation"];
|
|
1184
1322
|
__typename?: boolean | `@${string}`;
|
|
1323
|
+
['...on ShapeheroxHero_sectionHero_container']?: Omit<ValueTypes["ShapeheroxHero_sectionHero_container"], "...on ShapeheroxHero_sectionHero_container">;
|
|
1185
1324
|
}>;
|
|
1186
1325
|
["ShapeheroxHero_section"]: AliasType<{
|
|
1187
1326
|
hero_container?: ValueTypes["ShapeheroxHero_sectionHero_container"];
|
|
1188
1327
|
__typename?: boolean | `@${string}`;
|
|
1328
|
+
['...on ShapeheroxHero_section']?: Omit<ValueTypes["ShapeheroxHero_section"], "...on ShapeheroxHero_section">;
|
|
1189
1329
|
}>;
|
|
1190
1330
|
["Shapeherox"]: AliasType<{
|
|
1191
1331
|
hero_section?: ValueTypes["ShapeheroxHero_section"];
|
|
@@ -1193,22 +1333,26 @@ export type ValueTypes = {
|
|
|
1193
1333
|
createdAt?: boolean | `@${string}`;
|
|
1194
1334
|
updatedAt?: boolean | `@${string}`;
|
|
1195
1335
|
__typename?: boolean | `@${string}`;
|
|
1336
|
+
['...on Shapeherox']?: Omit<ValueTypes["Shapeherox"], "...on Shapeherox">;
|
|
1196
1337
|
}>;
|
|
1197
1338
|
["Shapelista_projektowListProjectsInstance"]: AliasType<{
|
|
1198
1339
|
title?: boolean | `@${string}`;
|
|
1199
1340
|
link?: boolean | `@${string}`;
|
|
1200
1341
|
remove_button?: boolean | `@${string}`;
|
|
1201
1342
|
__typename?: boolean | `@${string}`;
|
|
1343
|
+
['...on Shapelista_projektowListProjectsInstance']?: Omit<ValueTypes["Shapelista_projektowListProjectsInstance"], "...on Shapelista_projektowListProjectsInstance">;
|
|
1202
1344
|
}>;
|
|
1203
1345
|
["Shapelista_projektowListProjects"]: AliasType<{
|
|
1204
1346
|
instance?: ValueTypes["Shapelista_projektowListProjectsInstance"];
|
|
1205
1347
|
__typename?: boolean | `@${string}`;
|
|
1348
|
+
['...on Shapelista_projektowListProjects']?: Omit<ValueTypes["Shapelista_projektowListProjects"], "...on Shapelista_projektowListProjects">;
|
|
1206
1349
|
}>;
|
|
1207
1350
|
["Shapelista_projektowList"]: AliasType<{
|
|
1208
1351
|
title?: boolean | `@${string}`;
|
|
1209
1352
|
subtitle?: boolean | `@${string}`;
|
|
1210
1353
|
projects?: ValueTypes["Shapelista_projektowListProjects"];
|
|
1211
1354
|
__typename?: boolean | `@${string}`;
|
|
1355
|
+
['...on Shapelista_projektowList']?: Omit<ValueTypes["Shapelista_projektowList"], "...on Shapelista_projektowList">;
|
|
1212
1356
|
}>;
|
|
1213
1357
|
["Shapelista_projektow"]: AliasType<{
|
|
1214
1358
|
list?: ValueTypes["Shapelista_projektowList"];
|
|
@@ -1216,20 +1360,24 @@ export type ValueTypes = {
|
|
|
1216
1360
|
createdAt?: boolean | `@${string}`;
|
|
1217
1361
|
updatedAt?: boolean | `@${string}`;
|
|
1218
1362
|
__typename?: boolean | `@${string}`;
|
|
1363
|
+
['...on Shapelista_projektow']?: Omit<ValueTypes["Shapelista_projektow"], "...on Shapelista_projektow">;
|
|
1219
1364
|
}>;
|
|
1220
1365
|
["ShapenavNavigationNavigation_linksLink"]: AliasType<{
|
|
1221
1366
|
display?: boolean | `@${string}`;
|
|
1222
1367
|
href?: boolean | `@${string}`;
|
|
1223
1368
|
__typename?: boolean | `@${string}`;
|
|
1369
|
+
['...on ShapenavNavigationNavigation_linksLink']?: Omit<ValueTypes["ShapenavNavigationNavigation_linksLink"], "...on ShapenavNavigationNavigation_linksLink">;
|
|
1224
1370
|
}>;
|
|
1225
1371
|
["ShapenavNavigationNavigation_links"]: AliasType<{
|
|
1226
1372
|
link?: ValueTypes["ShapenavNavigationNavigation_linksLink"];
|
|
1227
1373
|
__typename?: boolean | `@${string}`;
|
|
1374
|
+
['...on ShapenavNavigationNavigation_links']?: Omit<ValueTypes["ShapenavNavigationNavigation_links"], "...on ShapenavNavigationNavigation_links">;
|
|
1228
1375
|
}>;
|
|
1229
1376
|
["ShapenavNavigation"]: AliasType<{
|
|
1230
1377
|
logo?: boolean | `@${string}`;
|
|
1231
1378
|
navigation_links?: ValueTypes["ShapenavNavigationNavigation_links"];
|
|
1232
1379
|
__typename?: boolean | `@${string}`;
|
|
1380
|
+
['...on ShapenavNavigation']?: Omit<ValueTypes["ShapenavNavigation"], "...on ShapenavNavigation">;
|
|
1233
1381
|
}>;
|
|
1234
1382
|
["Shapenav"]: AliasType<{
|
|
1235
1383
|
navigation?: ValueTypes["ShapenavNavigation"];
|
|
@@ -1237,6 +1385,7 @@ export type ValueTypes = {
|
|
|
1237
1385
|
createdAt?: boolean | `@${string}`;
|
|
1238
1386
|
updatedAt?: boolean | `@${string}`;
|
|
1239
1387
|
__typename?: boolean | `@${string}`;
|
|
1388
|
+
['...on Shapenav']?: Omit<ValueTypes["Shapenav"], "...on Shapenav">;
|
|
1240
1389
|
}>;
|
|
1241
1390
|
["ShapenewshapeBackgroundContent"]: AliasType<{
|
|
1242
1391
|
badge?: boolean | `@${string}`;
|
|
@@ -1245,12 +1394,14 @@ export type ValueTypes = {
|
|
|
1245
1394
|
cta_label?: boolean | `@${string}`;
|
|
1246
1395
|
cta_href?: boolean | `@${string}`;
|
|
1247
1396
|
__typename?: boolean | `@${string}`;
|
|
1397
|
+
['...on ShapenewshapeBackgroundContent']?: Omit<ValueTypes["ShapenewshapeBackgroundContent"], "...on ShapenewshapeBackgroundContent">;
|
|
1248
1398
|
}>;
|
|
1249
1399
|
["ShapenewshapeBackground"]: AliasType<{
|
|
1250
1400
|
overlay_gradient?: boolean | `@${string}`;
|
|
1251
1401
|
content?: ValueTypes["ShapenewshapeBackgroundContent"];
|
|
1252
1402
|
hero_image?: ValueTypes["ImageField"];
|
|
1253
1403
|
__typename?: boolean | `@${string}`;
|
|
1404
|
+
['...on ShapenewshapeBackground']?: Omit<ValueTypes["ShapenewshapeBackground"], "...on ShapenewshapeBackground">;
|
|
1254
1405
|
}>;
|
|
1255
1406
|
["Shapenewshape"]: AliasType<{
|
|
1256
1407
|
background?: ValueTypes["ShapenewshapeBackground"];
|
|
@@ -1258,49 +1409,18 @@ export type ValueTypes = {
|
|
|
1258
1409
|
createdAt?: boolean | `@${string}`;
|
|
1259
1410
|
updatedAt?: boolean | `@${string}`;
|
|
1260
1411
|
__typename?: boolean | `@${string}`;
|
|
1261
|
-
|
|
1262
|
-
["Shapepricing_tablePricing_sectionHeader_wrapper"]: AliasType<{
|
|
1263
|
-
title?: boolean | `@${string}`;
|
|
1264
|
-
description?: boolean | `@${string}`;
|
|
1265
|
-
__typename?: boolean | `@${string}`;
|
|
1266
|
-
}>;
|
|
1267
|
-
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: AliasType<{
|
|
1268
|
-
feature?: boolean | `@${string}`;
|
|
1269
|
-
unit?: boolean | `@${string}`;
|
|
1270
|
-
price?: boolean | `@${string}`;
|
|
1271
|
-
__typename?: boolean | `@${string}`;
|
|
1272
|
-
}>;
|
|
1273
|
-
["Shapepricing_tablePricing_sectionPricing_tableRows"]: AliasType<{
|
|
1274
|
-
feature?: boolean | `@${string}`;
|
|
1275
|
-
unit?: boolean | `@${string}`;
|
|
1276
|
-
price?: boolean | `@${string}`;
|
|
1277
|
-
__typename?: boolean | `@${string}`;
|
|
1278
|
-
}>;
|
|
1279
|
-
["Shapepricing_tablePricing_sectionPricing_table"]: AliasType<{
|
|
1280
|
-
table_head?: ValueTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"];
|
|
1281
|
-
rows?: ValueTypes["Shapepricing_tablePricing_sectionPricing_tableRows"];
|
|
1282
|
-
__typename?: boolean | `@${string}`;
|
|
1283
|
-
}>;
|
|
1284
|
-
["Shapepricing_tablePricing_section"]: AliasType<{
|
|
1285
|
-
header_wrapper?: ValueTypes["Shapepricing_tablePricing_sectionHeader_wrapper"];
|
|
1286
|
-
pricing_table?: ValueTypes["Shapepricing_tablePricing_sectionPricing_table"];
|
|
1287
|
-
__typename?: boolean | `@${string}`;
|
|
1288
|
-
}>;
|
|
1289
|
-
["Shapepricing_table"]: AliasType<{
|
|
1290
|
-
pricing_section?: ValueTypes["Shapepricing_tablePricing_section"];
|
|
1291
|
-
_id?: boolean | `@${string}`;
|
|
1292
|
-
createdAt?: boolean | `@${string}`;
|
|
1293
|
-
updatedAt?: boolean | `@${string}`;
|
|
1294
|
-
__typename?: boolean | `@${string}`;
|
|
1412
|
+
['...on Shapenewshape']?: Omit<ValueTypes["Shapenewshape"], "...on Shapenewshape">;
|
|
1295
1413
|
}>;
|
|
1296
1414
|
["Shapepricingv1Pricing_sectionHeader_wrapper"]: AliasType<{
|
|
1297
1415
|
title?: boolean | `@${string}`;
|
|
1298
1416
|
description?: boolean | `@${string}`;
|
|
1299
1417
|
__typename?: boolean | `@${string}`;
|
|
1418
|
+
['...on Shapepricingv1Pricing_sectionHeader_wrapper']?: Omit<ValueTypes["Shapepricingv1Pricing_sectionHeader_wrapper"], "...on Shapepricingv1Pricing_sectionHeader_wrapper">;
|
|
1300
1419
|
}>;
|
|
1301
1420
|
["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"]: AliasType<{
|
|
1302
1421
|
feature?: boolean | `@${string}`;
|
|
1303
1422
|
__typename?: boolean | `@${string}`;
|
|
1423
|
+
['...on Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list']?: Omit<ValueTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"], "...on Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list">;
|
|
1304
1424
|
}>;
|
|
1305
1425
|
["Shapepricingv1Pricing_sectionPlans_gridFree_plan"]: AliasType<{
|
|
1306
1426
|
plan_name?: boolean | `@${string}`;
|
|
@@ -1309,10 +1429,12 @@ export type ValueTypes = {
|
|
|
1309
1429
|
feature_list?: ValueTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"];
|
|
1310
1430
|
cta?: ValueTypes["Shapesecondary_cta"];
|
|
1311
1431
|
__typename?: boolean | `@${string}`;
|
|
1432
|
+
['...on Shapepricingv1Pricing_sectionPlans_gridFree_plan']?: Omit<ValueTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"], "...on Shapepricingv1Pricing_sectionPlans_gridFree_plan">;
|
|
1312
1433
|
}>;
|
|
1313
1434
|
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: AliasType<{
|
|
1314
1435
|
feature?: boolean | `@${string}`;
|
|
1315
1436
|
__typename?: boolean | `@${string}`;
|
|
1437
|
+
['...on Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list']?: Omit<ValueTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"], "...on Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list">;
|
|
1316
1438
|
}>;
|
|
1317
1439
|
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: AliasType<{
|
|
1318
1440
|
plan_name?: boolean | `@${string}`;
|
|
@@ -1321,16 +1443,19 @@ export type ValueTypes = {
|
|
|
1321
1443
|
feature_list?: ValueTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"];
|
|
1322
1444
|
cta?: ValueTypes["Shapectabutton"];
|
|
1323
1445
|
__typename?: boolean | `@${string}`;
|
|
1446
|
+
['...on Shapepricingv1Pricing_sectionPlans_gridPaid_plan']?: Omit<ValueTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"], "...on Shapepricingv1Pricing_sectionPlans_gridPaid_plan">;
|
|
1324
1447
|
}>;
|
|
1325
1448
|
["Shapepricingv1Pricing_sectionPlans_grid"]: AliasType<{
|
|
1326
1449
|
free_plan?: ValueTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"];
|
|
1327
1450
|
paid_plan?: ValueTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"];
|
|
1328
1451
|
__typename?: boolean | `@${string}`;
|
|
1452
|
+
['...on Shapepricingv1Pricing_sectionPlans_grid']?: Omit<ValueTypes["Shapepricingv1Pricing_sectionPlans_grid"], "...on Shapepricingv1Pricing_sectionPlans_grid">;
|
|
1329
1453
|
}>;
|
|
1330
1454
|
["Shapepricingv1Pricing_section"]: AliasType<{
|
|
1331
1455
|
header_wrapper?: ValueTypes["Shapepricingv1Pricing_sectionHeader_wrapper"];
|
|
1332
1456
|
plans_grid?: ValueTypes["Shapepricingv1Pricing_sectionPlans_grid"];
|
|
1333
1457
|
__typename?: boolean | `@${string}`;
|
|
1458
|
+
['...on Shapepricingv1Pricing_section']?: Omit<ValueTypes["Shapepricingv1Pricing_section"], "...on Shapepricingv1Pricing_section">;
|
|
1334
1459
|
}>;
|
|
1335
1460
|
["Shapepricingv1"]: AliasType<{
|
|
1336
1461
|
pricing_section?: ValueTypes["Shapepricingv1Pricing_section"];
|
|
@@ -1338,48 +1463,110 @@ export type ValueTypes = {
|
|
|
1338
1463
|
createdAt?: boolean | `@${string}`;
|
|
1339
1464
|
updatedAt?: boolean | `@${string}`;
|
|
1340
1465
|
__typename?: boolean | `@${string}`;
|
|
1466
|
+
['...on Shapepricingv1']?: Omit<ValueTypes["Shapepricingv1"], "...on Shapepricingv1">;
|
|
1467
|
+
}>;
|
|
1468
|
+
["Shapepricingv2MainPlans_gridFree_planPlan_footer"]: AliasType<{
|
|
1469
|
+
price?: boolean | `@${string}`;
|
|
1470
|
+
cta?: boolean | `@${string}`;
|
|
1471
|
+
__typename?: boolean | `@${string}`;
|
|
1472
|
+
['...on Shapepricingv2MainPlans_gridFree_planPlan_footer']?: Omit<ValueTypes["Shapepricingv2MainPlans_gridFree_planPlan_footer"], "...on Shapepricingv2MainPlans_gridFree_planPlan_footer">;
|
|
1473
|
+
}>;
|
|
1474
|
+
["Shapepricingv2MainPlans_gridFree_plan"]: AliasType<{
|
|
1475
|
+
subtitle?: boolean | `@${string}`;
|
|
1476
|
+
description?: boolean | `@${string}`;
|
|
1477
|
+
features?: boolean | `@${string}`;
|
|
1478
|
+
plan_footer?: ValueTypes["Shapepricingv2MainPlans_gridFree_planPlan_footer"];
|
|
1479
|
+
__typename?: boolean | `@${string}`;
|
|
1480
|
+
['...on Shapepricingv2MainPlans_gridFree_plan']?: Omit<ValueTypes["Shapepricingv2MainPlans_gridFree_plan"], "...on Shapepricingv2MainPlans_gridFree_plan">;
|
|
1481
|
+
}>;
|
|
1482
|
+
["Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock"]: AliasType<{
|
|
1483
|
+
price?: boolean | `@${string}`;
|
|
1484
|
+
price_period?: boolean | `@${string}`;
|
|
1485
|
+
__typename?: boolean | `@${string}`;
|
|
1486
|
+
['...on Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock']?: Omit<ValueTypes["Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock"], "...on Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock">;
|
|
1487
|
+
}>;
|
|
1488
|
+
["Shapepricingv2MainPlans_gridPro_planPlan_footer"]: AliasType<{
|
|
1489
|
+
priceblock?: ValueTypes["Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock"];
|
|
1490
|
+
cta?: boolean | `@${string}`;
|
|
1491
|
+
__typename?: boolean | `@${string}`;
|
|
1492
|
+
['...on Shapepricingv2MainPlans_gridPro_planPlan_footer']?: Omit<ValueTypes["Shapepricingv2MainPlans_gridPro_planPlan_footer"], "...on Shapepricingv2MainPlans_gridPro_planPlan_footer">;
|
|
1493
|
+
}>;
|
|
1494
|
+
["Shapepricingv2MainPlans_gridPro_plan"]: AliasType<{
|
|
1495
|
+
subtitle?: boolean | `@${string}`;
|
|
1496
|
+
description?: boolean | `@${string}`;
|
|
1497
|
+
features?: boolean | `@${string}`;
|
|
1498
|
+
plan_footer?: ValueTypes["Shapepricingv2MainPlans_gridPro_planPlan_footer"];
|
|
1499
|
+
__typename?: boolean | `@${string}`;
|
|
1500
|
+
['...on Shapepricingv2MainPlans_gridPro_plan']?: Omit<ValueTypes["Shapepricingv2MainPlans_gridPro_plan"], "...on Shapepricingv2MainPlans_gridPro_plan">;
|
|
1501
|
+
}>;
|
|
1502
|
+
["Shapepricingv2MainPlans_grid"]: AliasType<{
|
|
1503
|
+
free_plan?: ValueTypes["Shapepricingv2MainPlans_gridFree_plan"];
|
|
1504
|
+
pro_plan?: ValueTypes["Shapepricingv2MainPlans_gridPro_plan"];
|
|
1505
|
+
__typename?: boolean | `@${string}`;
|
|
1506
|
+
['...on Shapepricingv2MainPlans_grid']?: Omit<ValueTypes["Shapepricingv2MainPlans_grid"], "...on Shapepricingv2MainPlans_grid">;
|
|
1507
|
+
}>;
|
|
1508
|
+
["Shapepricingv2Main"]: AliasType<{
|
|
1509
|
+
plans_grid?: ValueTypes["Shapepricingv2MainPlans_grid"];
|
|
1510
|
+
__typename?: boolean | `@${string}`;
|
|
1511
|
+
['...on Shapepricingv2Main']?: Omit<ValueTypes["Shapepricingv2Main"], "...on Shapepricingv2Main">;
|
|
1512
|
+
}>;
|
|
1513
|
+
["Shapepricingv2"]: AliasType<{
|
|
1514
|
+
main?: ValueTypes["Shapepricingv2Main"];
|
|
1515
|
+
_id?: boolean | `@${string}`;
|
|
1516
|
+
createdAt?: boolean | `@${string}`;
|
|
1517
|
+
updatedAt?: boolean | `@${string}`;
|
|
1518
|
+
__typename?: boolean | `@${string}`;
|
|
1519
|
+
['...on Shapepricingv2']?: Omit<ValueTypes["Shapepricingv2"], "...on Shapepricingv2">;
|
|
1341
1520
|
}>;
|
|
1342
1521
|
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: AliasType<{
|
|
1343
1522
|
full_name?: boolean | `@${string}`;
|
|
1344
1523
|
company?: boolean | `@${string}`;
|
|
1345
1524
|
email?: boolean | `@${string}`;
|
|
1346
1525
|
__typename?: boolean | `@${string}`;
|
|
1526
|
+
['...on Shapeprofile_infoProfile_sectionAccount_headerInfo']?: Omit<ValueTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"], "...on Shapeprofile_infoProfile_sectionAccount_headerInfo">;
|
|
1347
1527
|
}>;
|
|
1348
1528
|
["Shapeprofile_infoProfile_sectionAccount_header"]: AliasType<{
|
|
1349
1529
|
avatar?: ValueTypes["ImageField"];
|
|
1350
1530
|
info?: ValueTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"];
|
|
1351
1531
|
__typename?: boolean | `@${string}`;
|
|
1532
|
+
['...on Shapeprofile_infoProfile_sectionAccount_header']?: Omit<ValueTypes["Shapeprofile_infoProfile_sectionAccount_header"], "...on Shapeprofile_infoProfile_sectionAccount_header">;
|
|
1352
1533
|
}>;
|
|
1353
1534
|
["Shapeprofile_infoProfile_sectionPlan_status"]: AliasType<{
|
|
1354
1535
|
plan?: boolean | `@${string}`;
|
|
1355
1536
|
__typename?: boolean | `@${string}`;
|
|
1537
|
+
['...on Shapeprofile_infoProfile_sectionPlan_status']?: Omit<ValueTypes["Shapeprofile_infoProfile_sectionPlan_status"], "...on Shapeprofile_infoProfile_sectionPlan_status">;
|
|
1356
1538
|
}>;
|
|
1357
1539
|
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: AliasType<{
|
|
1358
1540
|
label?: boolean | `@${string}`;
|
|
1359
1541
|
value?: boolean | `@${string}`;
|
|
1360
1542
|
__typename?: boolean | `@${string}`;
|
|
1543
|
+
['...on Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens']?: Omit<ValueTypes["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"], "...on Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens">;
|
|
1361
1544
|
}>;
|
|
1362
1545
|
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: AliasType<{
|
|
1363
1546
|
label?: boolean | `@${string}`;
|
|
1364
1547
|
value?: boolean | `@${string}`;
|
|
1365
1548
|
__typename?: boolean | `@${string}`;
|
|
1549
|
+
['...on Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens']?: Omit<ValueTypes["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"], "...on Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens">;
|
|
1366
1550
|
}>;
|
|
1367
1551
|
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: AliasType<{
|
|
1368
1552
|
label?: boolean | `@${string}`;
|
|
1369
1553
|
value?: boolean | `@${string}`;
|
|
1370
1554
|
__typename?: boolean | `@${string}`;
|
|
1555
|
+
['...on Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests']?: Omit<ValueTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"], "...on Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests">;
|
|
1371
1556
|
}>;
|
|
1372
1557
|
["Shapeprofile_infoProfile_sectionUsage_section"]: AliasType<{
|
|
1373
1558
|
ai_tokens?: ValueTypes["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"];
|
|
1374
1559
|
translate_tokens?: ValueTypes["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"];
|
|
1375
1560
|
monthly_api_requests?: ValueTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"];
|
|
1376
1561
|
__typename?: boolean | `@${string}`;
|
|
1562
|
+
['...on Shapeprofile_infoProfile_sectionUsage_section']?: Omit<ValueTypes["Shapeprofile_infoProfile_sectionUsage_section"], "...on Shapeprofile_infoProfile_sectionUsage_section">;
|
|
1377
1563
|
}>;
|
|
1378
1564
|
["Shapeprofile_infoProfile_section"]: AliasType<{
|
|
1379
1565
|
account_header?: ValueTypes["Shapeprofile_infoProfile_sectionAccount_header"];
|
|
1380
1566
|
plan_status?: ValueTypes["Shapeprofile_infoProfile_sectionPlan_status"];
|
|
1381
1567
|
usage_section?: ValueTypes["Shapeprofile_infoProfile_sectionUsage_section"];
|
|
1382
1568
|
__typename?: boolean | `@${string}`;
|
|
1569
|
+
['...on Shapeprofile_infoProfile_section']?: Omit<ValueTypes["Shapeprofile_infoProfile_section"], "...on Shapeprofile_infoProfile_section">;
|
|
1383
1570
|
}>;
|
|
1384
1571
|
["Shapeprofile_info"]: AliasType<{
|
|
1385
1572
|
profile_section?: ValueTypes["Shapeprofile_infoProfile_section"];
|
|
@@ -1387,6 +1574,7 @@ export type ValueTypes = {
|
|
|
1387
1574
|
createdAt?: boolean | `@${string}`;
|
|
1388
1575
|
updatedAt?: boolean | `@${string}`;
|
|
1389
1576
|
__typename?: boolean | `@${string}`;
|
|
1577
|
+
['...on Shapeprofile_info']?: Omit<ValueTypes["Shapeprofile_info"], "...on Shapeprofile_info">;
|
|
1390
1578
|
}>;
|
|
1391
1579
|
["Shapesecondary_cta"]: AliasType<{
|
|
1392
1580
|
cta?: boolean | `@${string}`;
|
|
@@ -1394,11 +1582,21 @@ export type ValueTypes = {
|
|
|
1394
1582
|
createdAt?: boolean | `@${string}`;
|
|
1395
1583
|
updatedAt?: boolean | `@${string}`;
|
|
1396
1584
|
__typename?: boolean | `@${string}`;
|
|
1585
|
+
['...on Shapesecondary_cta']?: Omit<ValueTypes["Shapesecondary_cta"], "...on Shapesecondary_cta">;
|
|
1586
|
+
}>;
|
|
1587
|
+
["Shapesubheading"]: AliasType<{
|
|
1588
|
+
text?: boolean | `@${string}`;
|
|
1589
|
+
_id?: boolean | `@${string}`;
|
|
1590
|
+
createdAt?: boolean | `@${string}`;
|
|
1591
|
+
updatedAt?: boolean | `@${string}`;
|
|
1592
|
+
__typename?: boolean | `@${string}`;
|
|
1593
|
+
['...on Shapesubheading']?: Omit<ValueTypes["Shapesubheading"], "...on Shapesubheading">;
|
|
1397
1594
|
}>;
|
|
1398
1595
|
["ShapesupportSectionHeader_wrapper"]: AliasType<{
|
|
1399
1596
|
title?: boolean | `@${string}`;
|
|
1400
1597
|
description?: boolean | `@${string}`;
|
|
1401
1598
|
__typename?: boolean | `@${string}`;
|
|
1599
|
+
['...on ShapesupportSectionHeader_wrapper']?: Omit<ValueTypes["ShapesupportSectionHeader_wrapper"], "...on ShapesupportSectionHeader_wrapper">;
|
|
1402
1600
|
}>;
|
|
1403
1601
|
["ShapesupportSectionFeatures_gridFeature_item"]: AliasType<{
|
|
1404
1602
|
image?: ValueTypes["ImageField"];
|
|
@@ -1406,15 +1604,18 @@ export type ValueTypes = {
|
|
|
1406
1604
|
text?: boolean | `@${string}`;
|
|
1407
1605
|
cta?: boolean | `@${string}`;
|
|
1408
1606
|
__typename?: boolean | `@${string}`;
|
|
1607
|
+
['...on ShapesupportSectionFeatures_gridFeature_item']?: Omit<ValueTypes["ShapesupportSectionFeatures_gridFeature_item"], "...on ShapesupportSectionFeatures_gridFeature_item">;
|
|
1409
1608
|
}>;
|
|
1410
1609
|
["ShapesupportSectionFeatures_grid"]: AliasType<{
|
|
1411
1610
|
feature_item?: ValueTypes["ShapesupportSectionFeatures_gridFeature_item"];
|
|
1412
1611
|
__typename?: boolean | `@${string}`;
|
|
1612
|
+
['...on ShapesupportSectionFeatures_grid']?: Omit<ValueTypes["ShapesupportSectionFeatures_grid"], "...on ShapesupportSectionFeatures_grid">;
|
|
1413
1613
|
}>;
|
|
1414
1614
|
["ShapesupportSection"]: AliasType<{
|
|
1415
1615
|
header_wrapper?: ValueTypes["ShapesupportSectionHeader_wrapper"];
|
|
1416
1616
|
features_grid?: ValueTypes["ShapesupportSectionFeatures_grid"];
|
|
1417
1617
|
__typename?: boolean | `@${string}`;
|
|
1618
|
+
['...on ShapesupportSection']?: Omit<ValueTypes["ShapesupportSection"], "...on ShapesupportSection">;
|
|
1418
1619
|
}>;
|
|
1419
1620
|
["Shapesupport"]: AliasType<{
|
|
1420
1621
|
section?: ValueTypes["ShapesupportSection"];
|
|
@@ -1422,11 +1623,13 @@ export type ValueTypes = {
|
|
|
1422
1623
|
createdAt?: boolean | `@${string}`;
|
|
1423
1624
|
updatedAt?: boolean | `@${string}`;
|
|
1424
1625
|
__typename?: boolean | `@${string}`;
|
|
1626
|
+
['...on Shapesupport']?: Omit<ValueTypes["Shapesupport"], "...on Shapesupport">;
|
|
1425
1627
|
}>;
|
|
1426
1628
|
["Shapetitle_descTitledesc"]: AliasType<{
|
|
1427
1629
|
title?: boolean | `@${string}`;
|
|
1428
1630
|
description?: boolean | `@${string}`;
|
|
1429
1631
|
__typename?: boolean | `@${string}`;
|
|
1632
|
+
['...on Shapetitle_descTitledesc']?: Omit<ValueTypes["Shapetitle_descTitledesc"], "...on Shapetitle_descTitledesc">;
|
|
1430
1633
|
}>;
|
|
1431
1634
|
["Shapetitle_desc"]: AliasType<{
|
|
1432
1635
|
titledesc?: ValueTypes["Shapetitle_descTitledesc"];
|
|
@@ -1434,6 +1637,7 @@ export type ValueTypes = {
|
|
|
1434
1637
|
createdAt?: boolean | `@${string}`;
|
|
1435
1638
|
updatedAt?: boolean | `@${string}`;
|
|
1436
1639
|
__typename?: boolean | `@${string}`;
|
|
1640
|
+
['...on Shapetitle_desc']?: Omit<ValueTypes["Shapetitle_desc"], "...on Shapetitle_desc">;
|
|
1437
1641
|
}>;
|
|
1438
1642
|
["ShapeusageMain"]: AliasType<{
|
|
1439
1643
|
title?: boolean | `@${string}`;
|
|
@@ -1441,6 +1645,7 @@ export type ValueTypes = {
|
|
|
1441
1645
|
period?: boolean | `@${string}`;
|
|
1442
1646
|
tokens_consumed?: boolean | `@${string}`;
|
|
1443
1647
|
__typename?: boolean | `@${string}`;
|
|
1648
|
+
['...on ShapeusageMain']?: Omit<ValueTypes["ShapeusageMain"], "...on ShapeusageMain">;
|
|
1444
1649
|
}>;
|
|
1445
1650
|
["Shapeusage"]: AliasType<{
|
|
1446
1651
|
main?: ValueTypes["ShapeusageMain"];
|
|
@@ -1448,6 +1653,7 @@ export type ValueTypes = {
|
|
|
1448
1653
|
createdAt?: boolean | `@${string}`;
|
|
1449
1654
|
updatedAt?: boolean | `@${string}`;
|
|
1450
1655
|
__typename?: boolean | `@${string}`;
|
|
1656
|
+
['...on Shapeusage']?: Omit<ValueTypes["Shapeusage"], "...on Shapeusage">;
|
|
1451
1657
|
}>;
|
|
1452
1658
|
["FormregisterRegistration_stepUser_details"]: AliasType<{
|
|
1453
1659
|
_mocks?: boolean | `@${string}`;
|
|
@@ -1456,12 +1662,14 @@ export type ValueTypes = {
|
|
|
1456
1662
|
full_name?: ValueTypes["FormTextField"];
|
|
1457
1663
|
phone?: ValueTypes["FormTextField"];
|
|
1458
1664
|
__typename?: boolean | `@${string}`;
|
|
1665
|
+
['...on FormregisterRegistration_stepUser_details']?: Omit<ValueTypes["FormregisterRegistration_stepUser_details"], "...on FormregisterRegistration_stepUser_details">;
|
|
1459
1666
|
}>;
|
|
1460
1667
|
["FormregisterRegistration_step"]: AliasType<{
|
|
1461
1668
|
_mocks?: boolean | `@${string}`;
|
|
1462
1669
|
user_details?: ValueTypes["FormregisterRegistration_stepUser_details"];
|
|
1463
1670
|
submit?: ValueTypes["FormSubmitField"];
|
|
1464
1671
|
__typename?: boolean | `@${string}`;
|
|
1672
|
+
['...on FormregisterRegistration_step']?: Omit<ValueTypes["FormregisterRegistration_step"], "...on FormregisterRegistration_step">;
|
|
1465
1673
|
}>;
|
|
1466
1674
|
["Formregister"]: AliasType<{
|
|
1467
1675
|
_mocks?: boolean | `@${string}`;
|
|
@@ -1477,6 +1685,7 @@ export type ValueTypes = {
|
|
|
1477
1685
|
draft_version?: boolean | `@${string}`;
|
|
1478
1686
|
json_ld?: boolean | `@${string}`;
|
|
1479
1687
|
__typename?: boolean | `@${string}`;
|
|
1688
|
+
['...on Formregister']?: Omit<ValueTypes["Formregister"], "...on Formregister">;
|
|
1480
1689
|
}>;
|
|
1481
1690
|
["FormtestStep_basic_infoBasic_info_group"]: AliasType<{
|
|
1482
1691
|
_mocks?: boolean | `@${string}`;
|
|
@@ -1484,12 +1693,14 @@ export type ValueTypes = {
|
|
|
1484
1693
|
quantity?: ValueTypes["FormTextField"];
|
|
1485
1694
|
location?: ValueTypes["FormRadioTextField"];
|
|
1486
1695
|
__typename?: boolean | `@${string}`;
|
|
1696
|
+
['...on FormtestStep_basic_infoBasic_info_group']?: Omit<ValueTypes["FormtestStep_basic_infoBasic_info_group"], "...on FormtestStep_basic_infoBasic_info_group">;
|
|
1487
1697
|
}>;
|
|
1488
1698
|
["FormtestStep_basic_info"]: AliasType<{
|
|
1489
1699
|
_mocks?: boolean | `@${string}`;
|
|
1490
1700
|
basic_info_group?: ValueTypes["FormtestStep_basic_infoBasic_info_group"];
|
|
1491
1701
|
basic_next?: ValueTypes["FormButtonField"];
|
|
1492
1702
|
__typename?: boolean | `@${string}`;
|
|
1703
|
+
['...on FormtestStep_basic_info']?: Omit<ValueTypes["FormtestStep_basic_info"], "...on FormtestStep_basic_info">;
|
|
1493
1704
|
}>;
|
|
1494
1705
|
["FormtestStep_dimensionsDimensions_group"]: AliasType<{
|
|
1495
1706
|
_mocks?: boolean | `@${string}`;
|
|
@@ -1499,6 +1710,7 @@ export type ValueTypes = {
|
|
|
1499
1710
|
opening_direction?: ValueTypes["FormRadioTextField"];
|
|
1500
1711
|
sash_count?: ValueTypes["FormTextField"];
|
|
1501
1712
|
__typename?: boolean | `@${string}`;
|
|
1713
|
+
['...on FormtestStep_dimensionsDimensions_group']?: Omit<ValueTypes["FormtestStep_dimensionsDimensions_group"], "...on FormtestStep_dimensionsDimensions_group">;
|
|
1502
1714
|
}>;
|
|
1503
1715
|
["FormtestStep_dimensions"]: AliasType<{
|
|
1504
1716
|
_mocks?: boolean | `@${string}`;
|
|
@@ -1506,6 +1718,7 @@ export type ValueTypes = {
|
|
|
1506
1718
|
dimensions_back?: ValueTypes["FormButtonField"];
|
|
1507
1719
|
dimensions_next?: ValueTypes["FormButtonField"];
|
|
1508
1720
|
__typename?: boolean | `@${string}`;
|
|
1721
|
+
['...on FormtestStep_dimensions']?: Omit<ValueTypes["FormtestStep_dimensions"], "...on FormtestStep_dimensions">;
|
|
1509
1722
|
}>;
|
|
1510
1723
|
["FormtestStep_featuresFeatures_group"]: AliasType<{
|
|
1511
1724
|
_mocks?: boolean | `@${string}`;
|
|
@@ -1515,6 +1728,7 @@ export type ValueTypes = {
|
|
|
1515
1728
|
thermal_break?: ValueTypes["FormBooleanField"];
|
|
1516
1729
|
soundproofing?: ValueTypes["FormBooleanField"];
|
|
1517
1730
|
__typename?: boolean | `@${string}`;
|
|
1731
|
+
['...on FormtestStep_featuresFeatures_group']?: Omit<ValueTypes["FormtestStep_featuresFeatures_group"], "...on FormtestStep_featuresFeatures_group">;
|
|
1518
1732
|
}>;
|
|
1519
1733
|
["FormtestStep_features"]: AliasType<{
|
|
1520
1734
|
_mocks?: boolean | `@${string}`;
|
|
@@ -1522,6 +1736,7 @@ export type ValueTypes = {
|
|
|
1522
1736
|
features_back?: ValueTypes["FormButtonField"];
|
|
1523
1737
|
features_next?: ValueTypes["FormButtonField"];
|
|
1524
1738
|
__typename?: boolean | `@${string}`;
|
|
1739
|
+
['...on FormtestStep_features']?: Omit<ValueTypes["FormtestStep_features"], "...on FormtestStep_features">;
|
|
1525
1740
|
}>;
|
|
1526
1741
|
["FormtestStep_accessoriesAccessories_group"]: AliasType<{
|
|
1527
1742
|
_mocks?: boolean | `@${string}`;
|
|
@@ -1531,6 +1746,7 @@ export type ValueTypes = {
|
|
|
1531
1746
|
ventilator?: ValueTypes["FormBooleanField"];
|
|
1532
1747
|
accessories_other?: ValueTypes["FormTextField"];
|
|
1533
1748
|
__typename?: boolean | `@${string}`;
|
|
1749
|
+
['...on FormtestStep_accessoriesAccessories_group']?: Omit<ValueTypes["FormtestStep_accessoriesAccessories_group"], "...on FormtestStep_accessoriesAccessories_group">;
|
|
1534
1750
|
}>;
|
|
1535
1751
|
["FormtestStep_accessories"]: AliasType<{
|
|
1536
1752
|
_mocks?: boolean | `@${string}`;
|
|
@@ -1538,6 +1754,7 @@ export type ValueTypes = {
|
|
|
1538
1754
|
accessories_back?: ValueTypes["FormButtonField"];
|
|
1539
1755
|
accessories_next?: ValueTypes["FormButtonField"];
|
|
1540
1756
|
__typename?: boolean | `@${string}`;
|
|
1757
|
+
['...on FormtestStep_accessories']?: Omit<ValueTypes["FormtestStep_accessories"], "...on FormtestStep_accessories">;
|
|
1541
1758
|
}>;
|
|
1542
1759
|
["FormtestStep_summary"]: AliasType<{
|
|
1543
1760
|
_mocks?: boolean | `@${string}`;
|
|
@@ -1545,6 +1762,7 @@ export type ValueTypes = {
|
|
|
1545
1762
|
summary_back?: ValueTypes["FormButtonField"];
|
|
1546
1763
|
submit?: ValueTypes["FormSubmitField"];
|
|
1547
1764
|
__typename?: boolean | `@${string}`;
|
|
1765
|
+
['...on FormtestStep_summary']?: Omit<ValueTypes["FormtestStep_summary"], "...on FormtestStep_summary">;
|
|
1548
1766
|
}>;
|
|
1549
1767
|
["Formtest"]: AliasType<{
|
|
1550
1768
|
_mocks?: boolean | `@${string}`;
|
|
@@ -1564,6 +1782,7 @@ export type ValueTypes = {
|
|
|
1564
1782
|
draft_version?: boolean | `@${string}`;
|
|
1565
1783
|
json_ld?: boolean | `@${string}`;
|
|
1566
1784
|
__typename?: boolean | `@${string}`;
|
|
1785
|
+
['...on Formtest']?: Omit<ValueTypes["Formtest"], "...on Formtest">;
|
|
1567
1786
|
}>;
|
|
1568
1787
|
["SubmitFormregisterUser_details"]: {
|
|
1569
1788
|
username?: string | undefined | null | Variable<any, string>;
|
|
@@ -1659,11 +1878,13 @@ export type ValueTypes = {
|
|
|
1659
1878
|
full_name?: boolean | `@${string}`;
|
|
1660
1879
|
phone?: boolean | `@${string}`;
|
|
1661
1880
|
__typename?: boolean | `@${string}`;
|
|
1881
|
+
['...on ResponseFormregisterUser_details']?: Omit<ValueTypes["ResponseFormregisterUser_details"], "...on ResponseFormregisterUser_details">;
|
|
1662
1882
|
}>;
|
|
1663
1883
|
["ResponseFormregisterRegistration_step"]: AliasType<{
|
|
1664
1884
|
user_details?: ValueTypes["ResponseFormregisterUser_details"];
|
|
1665
1885
|
submit?: boolean | `@${string}`;
|
|
1666
1886
|
__typename?: boolean | `@${string}`;
|
|
1887
|
+
['...on ResponseFormregisterRegistration_step']?: Omit<ValueTypes["ResponseFormregisterRegistration_step"], "...on ResponseFormregisterRegistration_step">;
|
|
1667
1888
|
}>;
|
|
1668
1889
|
["ResponseFormregister"]: AliasType<{
|
|
1669
1890
|
state_step?: boolean | `@${string}`;
|
|
@@ -1677,17 +1898,20 @@ export type ValueTypes = {
|
|
|
1677
1898
|
draft_version?: boolean | `@${string}`;
|
|
1678
1899
|
json_ld?: boolean | `@${string}`;
|
|
1679
1900
|
__typename?: boolean | `@${string}`;
|
|
1901
|
+
['...on ResponseFormregister']?: Omit<ValueTypes["ResponseFormregister"], "...on ResponseFormregister">;
|
|
1680
1902
|
}>;
|
|
1681
1903
|
["ResponseFormtestBasic_info_group"]: AliasType<{
|
|
1682
1904
|
window_type?: boolean | `@${string}`;
|
|
1683
1905
|
quantity?: boolean | `@${string}`;
|
|
1684
1906
|
location?: boolean | `@${string}`;
|
|
1685
1907
|
__typename?: boolean | `@${string}`;
|
|
1908
|
+
['...on ResponseFormtestBasic_info_group']?: Omit<ValueTypes["ResponseFormtestBasic_info_group"], "...on ResponseFormtestBasic_info_group">;
|
|
1686
1909
|
}>;
|
|
1687
1910
|
["ResponseFormtestStep_basic_info"]: AliasType<{
|
|
1688
1911
|
basic_info_group?: ValueTypes["ResponseFormtestBasic_info_group"];
|
|
1689
1912
|
basic_next?: boolean | `@${string}`;
|
|
1690
1913
|
__typename?: boolean | `@${string}`;
|
|
1914
|
+
['...on ResponseFormtestStep_basic_info']?: Omit<ValueTypes["ResponseFormtestStep_basic_info"], "...on ResponseFormtestStep_basic_info">;
|
|
1691
1915
|
}>;
|
|
1692
1916
|
["ResponseFormtestDimensions_group"]: AliasType<{
|
|
1693
1917
|
width_mm?: boolean | `@${string}`;
|
|
@@ -1696,12 +1920,14 @@ export type ValueTypes = {
|
|
|
1696
1920
|
opening_direction?: boolean | `@${string}`;
|
|
1697
1921
|
sash_count?: boolean | `@${string}`;
|
|
1698
1922
|
__typename?: boolean | `@${string}`;
|
|
1923
|
+
['...on ResponseFormtestDimensions_group']?: Omit<ValueTypes["ResponseFormtestDimensions_group"], "...on ResponseFormtestDimensions_group">;
|
|
1699
1924
|
}>;
|
|
1700
1925
|
["ResponseFormtestStep_dimensions"]: AliasType<{
|
|
1701
1926
|
dimensions_group?: ValueTypes["ResponseFormtestDimensions_group"];
|
|
1702
1927
|
dimensions_back?: boolean | `@${string}`;
|
|
1703
1928
|
dimensions_next?: boolean | `@${string}`;
|
|
1704
1929
|
__typename?: boolean | `@${string}`;
|
|
1930
|
+
['...on ResponseFormtestStep_dimensions']?: Omit<ValueTypes["ResponseFormtestStep_dimensions"], "...on ResponseFormtestStep_dimensions">;
|
|
1705
1931
|
}>;
|
|
1706
1932
|
["ResponseFormtestFeatures_group"]: AliasType<{
|
|
1707
1933
|
material?: boolean | `@${string}`;
|
|
@@ -1710,12 +1936,14 @@ export type ValueTypes = {
|
|
|
1710
1936
|
thermal_break?: boolean | `@${string}`;
|
|
1711
1937
|
soundproofing?: boolean | `@${string}`;
|
|
1712
1938
|
__typename?: boolean | `@${string}`;
|
|
1939
|
+
['...on ResponseFormtestFeatures_group']?: Omit<ValueTypes["ResponseFormtestFeatures_group"], "...on ResponseFormtestFeatures_group">;
|
|
1713
1940
|
}>;
|
|
1714
1941
|
["ResponseFormtestStep_features"]: AliasType<{
|
|
1715
1942
|
features_group?: ValueTypes["ResponseFormtestFeatures_group"];
|
|
1716
1943
|
features_back?: boolean | `@${string}`;
|
|
1717
1944
|
features_next?: boolean | `@${string}`;
|
|
1718
1945
|
__typename?: boolean | `@${string}`;
|
|
1946
|
+
['...on ResponseFormtestStep_features']?: Omit<ValueTypes["ResponseFormtestStep_features"], "...on ResponseFormtestStep_features">;
|
|
1719
1947
|
}>;
|
|
1720
1948
|
["ResponseFormtestAccessories_group"]: AliasType<{
|
|
1721
1949
|
handle_type?: boolean | `@${string}`;
|
|
@@ -1724,18 +1952,21 @@ export type ValueTypes = {
|
|
|
1724
1952
|
ventilator?: boolean | `@${string}`;
|
|
1725
1953
|
accessories_other?: boolean | `@${string}`;
|
|
1726
1954
|
__typename?: boolean | `@${string}`;
|
|
1955
|
+
['...on ResponseFormtestAccessories_group']?: Omit<ValueTypes["ResponseFormtestAccessories_group"], "...on ResponseFormtestAccessories_group">;
|
|
1727
1956
|
}>;
|
|
1728
1957
|
["ResponseFormtestStep_accessories"]: AliasType<{
|
|
1729
1958
|
accessories_group?: ValueTypes["ResponseFormtestAccessories_group"];
|
|
1730
1959
|
accessories_back?: boolean | `@${string}`;
|
|
1731
1960
|
accessories_next?: boolean | `@${string}`;
|
|
1732
1961
|
__typename?: boolean | `@${string}`;
|
|
1962
|
+
['...on ResponseFormtestStep_accessories']?: Omit<ValueTypes["ResponseFormtestStep_accessories"], "...on ResponseFormtestStep_accessories">;
|
|
1733
1963
|
}>;
|
|
1734
1964
|
["ResponseFormtestStep_summary"]: AliasType<{
|
|
1735
1965
|
summary_display?: boolean | `@${string}`;
|
|
1736
1966
|
summary_back?: boolean | `@${string}`;
|
|
1737
1967
|
submit?: boolean | `@${string}`;
|
|
1738
1968
|
__typename?: boolean | `@${string}`;
|
|
1969
|
+
['...on ResponseFormtestStep_summary']?: Omit<ValueTypes["ResponseFormtestStep_summary"], "...on ResponseFormtestStep_summary">;
|
|
1739
1970
|
}>;
|
|
1740
1971
|
["ResponseFormtest"]: AliasType<{
|
|
1741
1972
|
form_step_variable?: boolean | `@${string}`;
|
|
@@ -1753,11 +1984,13 @@ export type ValueTypes = {
|
|
|
1753
1984
|
draft_version?: boolean | `@${string}`;
|
|
1754
1985
|
json_ld?: boolean | `@${string}`;
|
|
1755
1986
|
__typename?: boolean | `@${string}`;
|
|
1987
|
+
['...on ResponseFormtest']?: Omit<ValueTypes["ResponseFormtest"], "...on ResponseFormtest">;
|
|
1756
1988
|
}>;
|
|
1757
1989
|
["SearchResponsesFormregister"]: AliasType<{
|
|
1758
1990
|
items?: ValueTypes["ResponseFormregister"];
|
|
1759
1991
|
totalCount?: boolean | `@${string}`;
|
|
1760
1992
|
__typename?: boolean | `@${string}`;
|
|
1993
|
+
['...on SearchResponsesFormregister']?: Omit<ValueTypes["SearchResponsesFormregister"], "...on SearchResponsesFormregister">;
|
|
1761
1994
|
}>;
|
|
1762
1995
|
["ResponsesFormregisterFilter"]: {
|
|
1763
1996
|
state_step?: string | undefined | null | Variable<any, string>;
|
|
@@ -1775,6 +2008,7 @@ export type ValueTypes = {
|
|
|
1775
2008
|
items?: ValueTypes["ResponseFormtest"];
|
|
1776
2009
|
totalCount?: boolean | `@${string}`;
|
|
1777
2010
|
__typename?: boolean | `@${string}`;
|
|
2011
|
+
['...on SearchResponsesFormtest']?: Omit<ValueTypes["SearchResponsesFormtest"], "...on SearchResponsesFormtest">;
|
|
1778
2012
|
}>;
|
|
1779
2013
|
["ResponsesFormtestFilter"]: {
|
|
1780
2014
|
form_step_variable?: string | undefined | null | Variable<any, string>;
|
|
@@ -2071,6 +2305,12 @@ export type ResolverInputTypes = {
|
|
|
2071
2305
|
backendGraphQlContent?: string | undefined | null;
|
|
2072
2306
|
includeShapes?: Array<string> | undefined | null;
|
|
2073
2307
|
};
|
|
2308
|
+
["ShapeLibrary"]: AliasType<{
|
|
2309
|
+
name?: boolean | `@${string}`;
|
|
2310
|
+
shapes?: ResolverInputTypes["Shape"];
|
|
2311
|
+
description?: boolean | `@${string}`;
|
|
2312
|
+
__typename?: boolean | `@${string}`;
|
|
2313
|
+
}>;
|
|
2074
2314
|
["CMSType"]: CMSType;
|
|
2075
2315
|
["Query"]: AliasType<{
|
|
2076
2316
|
navigation?: ResolverInputTypes["ModelNavigation"];
|
|
@@ -2081,6 +2321,7 @@ export type ResolverInputTypes = {
|
|
|
2081
2321
|
listShapes?: ResolverInputTypes["Shape"];
|
|
2082
2322
|
tailwind?: ResolverInputTypes["TailwindConfiguration"];
|
|
2083
2323
|
listForms?: ResolverInputTypes["Form"];
|
|
2324
|
+
shapeLibraries?: ResolverInputTypes["ShapeLibrary"];
|
|
2084
2325
|
listPaginateddocs?: [{
|
|
2085
2326
|
page: ResolverInputTypes["PageInput"];
|
|
2086
2327
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
@@ -2130,10 +2371,18 @@ export type ResolverInputTypes = {
|
|
|
2130
2371
|
modelShapefeaturepresentation?: boolean | `@${string}`;
|
|
2131
2372
|
previewFieldsShapefeaturepresentation?: boolean | `@${string}`;
|
|
2132
2373
|
oneShapefeaturepresentation?: ResolverInputTypes["Shapefeaturepresentation"];
|
|
2374
|
+
fieldSetShapefeaturesv2?: boolean | `@${string}`;
|
|
2375
|
+
modelShapefeaturesv2?: boolean | `@${string}`;
|
|
2376
|
+
previewFieldsShapefeaturesv2?: boolean | `@${string}`;
|
|
2377
|
+
oneShapefeaturesv2?: ResolverInputTypes["Shapefeaturesv2"];
|
|
2133
2378
|
fieldSetShapefoot?: boolean | `@${string}`;
|
|
2134
2379
|
modelShapefoot?: boolean | `@${string}`;
|
|
2135
2380
|
previewFieldsShapefoot?: boolean | `@${string}`;
|
|
2136
2381
|
oneShapefoot?: ResolverInputTypes["Shapefoot"];
|
|
2382
|
+
fieldSetShapeheading?: boolean | `@${string}`;
|
|
2383
|
+
modelShapeheading?: boolean | `@${string}`;
|
|
2384
|
+
previewFieldsShapeheading?: boolean | `@${string}`;
|
|
2385
|
+
oneShapeheading?: ResolverInputTypes["Shapeheading"];
|
|
2137
2386
|
fieldSetShapehero?: boolean | `@${string}`;
|
|
2138
2387
|
modelShapehero?: boolean | `@${string}`;
|
|
2139
2388
|
previewFieldsShapehero?: boolean | `@${string}`;
|
|
@@ -2154,14 +2403,14 @@ export type ResolverInputTypes = {
|
|
|
2154
2403
|
modelShapenewshape?: boolean | `@${string}`;
|
|
2155
2404
|
previewFieldsShapenewshape?: boolean | `@${string}`;
|
|
2156
2405
|
oneShapenewshape?: ResolverInputTypes["Shapenewshape"];
|
|
2157
|
-
fieldSetShapepricing_table?: boolean | `@${string}`;
|
|
2158
|
-
modelShapepricing_table?: boolean | `@${string}`;
|
|
2159
|
-
previewFieldsShapepricing_table?: boolean | `@${string}`;
|
|
2160
|
-
oneShapepricing_table?: ResolverInputTypes["Shapepricing_table"];
|
|
2161
2406
|
fieldSetShapepricingv1?: boolean | `@${string}`;
|
|
2162
2407
|
modelShapepricingv1?: boolean | `@${string}`;
|
|
2163
2408
|
previewFieldsShapepricingv1?: boolean | `@${string}`;
|
|
2164
2409
|
oneShapepricingv1?: ResolverInputTypes["Shapepricingv1"];
|
|
2410
|
+
fieldSetShapepricingv2?: boolean | `@${string}`;
|
|
2411
|
+
modelShapepricingv2?: boolean | `@${string}`;
|
|
2412
|
+
previewFieldsShapepricingv2?: boolean | `@${string}`;
|
|
2413
|
+
oneShapepricingv2?: ResolverInputTypes["Shapepricingv2"];
|
|
2165
2414
|
fieldSetShapeprofile_info?: boolean | `@${string}`;
|
|
2166
2415
|
modelShapeprofile_info?: boolean | `@${string}`;
|
|
2167
2416
|
previewFieldsShapeprofile_info?: boolean | `@${string}`;
|
|
@@ -2170,6 +2419,10 @@ export type ResolverInputTypes = {
|
|
|
2170
2419
|
modelShapesecondary_cta?: boolean | `@${string}`;
|
|
2171
2420
|
previewFieldsShapesecondary_cta?: boolean | `@${string}`;
|
|
2172
2421
|
oneShapesecondary_cta?: ResolverInputTypes["Shapesecondary_cta"];
|
|
2422
|
+
fieldSetShapesubheading?: boolean | `@${string}`;
|
|
2423
|
+
modelShapesubheading?: boolean | `@${string}`;
|
|
2424
|
+
previewFieldsShapesubheading?: boolean | `@${string}`;
|
|
2425
|
+
oneShapesubheading?: ResolverInputTypes["Shapesubheading"];
|
|
2173
2426
|
fieldSetShapesupport?: boolean | `@${string}`;
|
|
2174
2427
|
modelShapesupport?: boolean | `@${string}`;
|
|
2175
2428
|
previewFieldsShapesupport?: boolean | `@${string}`;
|
|
@@ -2222,14 +2475,14 @@ export type ResolverInputTypes = {
|
|
|
2222
2475
|
oneAsScalarViewhowitworks?: [{
|
|
2223
2476
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
2224
2477
|
}, boolean | `@${string}`];
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2478
|
+
variantsViewpricing_component?: ResolverInputTypes["Viewpricing_component"];
|
|
2479
|
+
fieldSetViewpricing_component?: boolean | `@${string}`;
|
|
2480
|
+
modelViewpricing_component?: boolean | `@${string}`;
|
|
2481
|
+
previewFieldsViewpricing_component?: boolean | `@${string}`;
|
|
2482
|
+
oneViewpricing_component?: [{
|
|
2230
2483
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
2231
|
-
}, ResolverInputTypes["
|
|
2232
|
-
|
|
2484
|
+
}, ResolverInputTypes["Viewpricing_component"]];
|
|
2485
|
+
oneAsScalarViewpricing_component?: [{
|
|
2233
2486
|
rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null;
|
|
2234
2487
|
}, boolean | `@${string}`];
|
|
2235
2488
|
variantsViewttt?: ResolverInputTypes["Viewttt"];
|
|
@@ -2384,7 +2637,6 @@ export type ResolverInputTypes = {
|
|
|
2384
2637
|
["Viewhomepage"]: AliasType<{
|
|
2385
2638
|
_version?: ResolverInputTypes["VersionField"];
|
|
2386
2639
|
nav?: ResolverInputTypes["Shapenav"];
|
|
2387
|
-
main?: ResolverInputTypes["Shapehero"];
|
|
2388
2640
|
hero?: ResolverInputTypes["Shapeherox"];
|
|
2389
2641
|
cot?: ResolverInputTypes["ViewhomepageCot"];
|
|
2390
2642
|
pricing?: ResolverInputTypes["Shapepricingv1"];
|
|
@@ -2417,11 +2669,8 @@ export type ResolverInputTypes = {
|
|
|
2417
2669
|
json_ld?: boolean | `@${string}`;
|
|
2418
2670
|
__typename?: boolean | `@${string}`;
|
|
2419
2671
|
}>;
|
|
2420
|
-
["
|
|
2672
|
+
["Viewpricing_component"]: AliasType<{
|
|
2421
2673
|
_version?: ResolverInputTypes["VersionField"];
|
|
2422
|
-
pricing?: ResolverInputTypes["Shapepricingv1"];
|
|
2423
|
-
table?: ResolverInputTypes["Shapepricing_table"];
|
|
2424
|
-
cta?: ResolverInputTypes["Shapenewshape"];
|
|
2425
2674
|
locale?: boolean | `@${string}`;
|
|
2426
2675
|
slug?: boolean | `@${string}`;
|
|
2427
2676
|
_id?: boolean | `@${string}`;
|
|
@@ -2666,6 +2915,12 @@ export type ResolverInputTypes = {
|
|
|
2666
2915
|
updatedAt?: boolean | `@${string}`;
|
|
2667
2916
|
__typename?: boolean | `@${string}`;
|
|
2668
2917
|
}>;
|
|
2918
|
+
["Shapefeaturesv2"]: AliasType<{
|
|
2919
|
+
_id?: boolean | `@${string}`;
|
|
2920
|
+
createdAt?: boolean | `@${string}`;
|
|
2921
|
+
updatedAt?: boolean | `@${string}`;
|
|
2922
|
+
__typename?: boolean | `@${string}`;
|
|
2923
|
+
}>;
|
|
2669
2924
|
["ShapefootFooterFooter_containerFooter_links"]: AliasType<{
|
|
2670
2925
|
privacy_policy?: boolean | `@${string}`;
|
|
2671
2926
|
terms_of_service?: boolean | `@${string}`;
|
|
@@ -2689,6 +2944,13 @@ export type ResolverInputTypes = {
|
|
|
2689
2944
|
updatedAt?: boolean | `@${string}`;
|
|
2690
2945
|
__typename?: boolean | `@${string}`;
|
|
2691
2946
|
}>;
|
|
2947
|
+
["Shapeheading"]: AliasType<{
|
|
2948
|
+
text?: boolean | `@${string}`;
|
|
2949
|
+
_id?: boolean | `@${string}`;
|
|
2950
|
+
createdAt?: boolean | `@${string}`;
|
|
2951
|
+
updatedAt?: boolean | `@${string}`;
|
|
2952
|
+
__typename?: boolean | `@${string}`;
|
|
2953
|
+
}>;
|
|
2692
2954
|
["ShapeheroHero_componentSlogan_parent"]: AliasType<{
|
|
2693
2955
|
slogan?: boolean | `@${string}`;
|
|
2694
2956
|
__typename?: boolean | `@${string}`;
|
|
@@ -2807,40 +3069,6 @@ export type ResolverInputTypes = {
|
|
|
2807
3069
|
updatedAt?: boolean | `@${string}`;
|
|
2808
3070
|
__typename?: boolean | `@${string}`;
|
|
2809
3071
|
}>;
|
|
2810
|
-
["Shapepricing_tablePricing_sectionHeader_wrapper"]: AliasType<{
|
|
2811
|
-
title?: boolean | `@${string}`;
|
|
2812
|
-
description?: boolean | `@${string}`;
|
|
2813
|
-
__typename?: boolean | `@${string}`;
|
|
2814
|
-
}>;
|
|
2815
|
-
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: AliasType<{
|
|
2816
|
-
feature?: boolean | `@${string}`;
|
|
2817
|
-
unit?: boolean | `@${string}`;
|
|
2818
|
-
price?: boolean | `@${string}`;
|
|
2819
|
-
__typename?: boolean | `@${string}`;
|
|
2820
|
-
}>;
|
|
2821
|
-
["Shapepricing_tablePricing_sectionPricing_tableRows"]: AliasType<{
|
|
2822
|
-
feature?: boolean | `@${string}`;
|
|
2823
|
-
unit?: boolean | `@${string}`;
|
|
2824
|
-
price?: boolean | `@${string}`;
|
|
2825
|
-
__typename?: boolean | `@${string}`;
|
|
2826
|
-
}>;
|
|
2827
|
-
["Shapepricing_tablePricing_sectionPricing_table"]: AliasType<{
|
|
2828
|
-
table_head?: ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"];
|
|
2829
|
-
rows?: ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_tableRows"];
|
|
2830
|
-
__typename?: boolean | `@${string}`;
|
|
2831
|
-
}>;
|
|
2832
|
-
["Shapepricing_tablePricing_section"]: AliasType<{
|
|
2833
|
-
header_wrapper?: ResolverInputTypes["Shapepricing_tablePricing_sectionHeader_wrapper"];
|
|
2834
|
-
pricing_table?: ResolverInputTypes["Shapepricing_tablePricing_sectionPricing_table"];
|
|
2835
|
-
__typename?: boolean | `@${string}`;
|
|
2836
|
-
}>;
|
|
2837
|
-
["Shapepricing_table"]: AliasType<{
|
|
2838
|
-
pricing_section?: ResolverInputTypes["Shapepricing_tablePricing_section"];
|
|
2839
|
-
_id?: boolean | `@${string}`;
|
|
2840
|
-
createdAt?: boolean | `@${string}`;
|
|
2841
|
-
updatedAt?: boolean | `@${string}`;
|
|
2842
|
-
__typename?: boolean | `@${string}`;
|
|
2843
|
-
}>;
|
|
2844
3072
|
["Shapepricingv1Pricing_sectionHeader_wrapper"]: AliasType<{
|
|
2845
3073
|
title?: boolean | `@${string}`;
|
|
2846
3074
|
description?: boolean | `@${string}`;
|
|
@@ -2887,6 +3115,51 @@ export type ResolverInputTypes = {
|
|
|
2887
3115
|
updatedAt?: boolean | `@${string}`;
|
|
2888
3116
|
__typename?: boolean | `@${string}`;
|
|
2889
3117
|
}>;
|
|
3118
|
+
["Shapepricingv2MainPlans_gridFree_planPlan_footer"]: AliasType<{
|
|
3119
|
+
price?: boolean | `@${string}`;
|
|
3120
|
+
cta?: boolean | `@${string}`;
|
|
3121
|
+
__typename?: boolean | `@${string}`;
|
|
3122
|
+
}>;
|
|
3123
|
+
["Shapepricingv2MainPlans_gridFree_plan"]: AliasType<{
|
|
3124
|
+
subtitle?: boolean | `@${string}`;
|
|
3125
|
+
description?: boolean | `@${string}`;
|
|
3126
|
+
features?: boolean | `@${string}`;
|
|
3127
|
+
plan_footer?: ResolverInputTypes["Shapepricingv2MainPlans_gridFree_planPlan_footer"];
|
|
3128
|
+
__typename?: boolean | `@${string}`;
|
|
3129
|
+
}>;
|
|
3130
|
+
["Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock"]: AliasType<{
|
|
3131
|
+
price?: boolean | `@${string}`;
|
|
3132
|
+
price_period?: boolean | `@${string}`;
|
|
3133
|
+
__typename?: boolean | `@${string}`;
|
|
3134
|
+
}>;
|
|
3135
|
+
["Shapepricingv2MainPlans_gridPro_planPlan_footer"]: AliasType<{
|
|
3136
|
+
priceblock?: ResolverInputTypes["Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock"];
|
|
3137
|
+
cta?: boolean | `@${string}`;
|
|
3138
|
+
__typename?: boolean | `@${string}`;
|
|
3139
|
+
}>;
|
|
3140
|
+
["Shapepricingv2MainPlans_gridPro_plan"]: AliasType<{
|
|
3141
|
+
subtitle?: boolean | `@${string}`;
|
|
3142
|
+
description?: boolean | `@${string}`;
|
|
3143
|
+
features?: boolean | `@${string}`;
|
|
3144
|
+
plan_footer?: ResolverInputTypes["Shapepricingv2MainPlans_gridPro_planPlan_footer"];
|
|
3145
|
+
__typename?: boolean | `@${string}`;
|
|
3146
|
+
}>;
|
|
3147
|
+
["Shapepricingv2MainPlans_grid"]: AliasType<{
|
|
3148
|
+
free_plan?: ResolverInputTypes["Shapepricingv2MainPlans_gridFree_plan"];
|
|
3149
|
+
pro_plan?: ResolverInputTypes["Shapepricingv2MainPlans_gridPro_plan"];
|
|
3150
|
+
__typename?: boolean | `@${string}`;
|
|
3151
|
+
}>;
|
|
3152
|
+
["Shapepricingv2Main"]: AliasType<{
|
|
3153
|
+
plans_grid?: ResolverInputTypes["Shapepricingv2MainPlans_grid"];
|
|
3154
|
+
__typename?: boolean | `@${string}`;
|
|
3155
|
+
}>;
|
|
3156
|
+
["Shapepricingv2"]: AliasType<{
|
|
3157
|
+
main?: ResolverInputTypes["Shapepricingv2Main"];
|
|
3158
|
+
_id?: boolean | `@${string}`;
|
|
3159
|
+
createdAt?: boolean | `@${string}`;
|
|
3160
|
+
updatedAt?: boolean | `@${string}`;
|
|
3161
|
+
__typename?: boolean | `@${string}`;
|
|
3162
|
+
}>;
|
|
2890
3163
|
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: AliasType<{
|
|
2891
3164
|
full_name?: boolean | `@${string}`;
|
|
2892
3165
|
company?: boolean | `@${string}`;
|
|
@@ -2943,6 +3216,13 @@ export type ResolverInputTypes = {
|
|
|
2943
3216
|
updatedAt?: boolean | `@${string}`;
|
|
2944
3217
|
__typename?: boolean | `@${string}`;
|
|
2945
3218
|
}>;
|
|
3219
|
+
["Shapesubheading"]: AliasType<{
|
|
3220
|
+
text?: boolean | `@${string}`;
|
|
3221
|
+
_id?: boolean | `@${string}`;
|
|
3222
|
+
createdAt?: boolean | `@${string}`;
|
|
3223
|
+
updatedAt?: boolean | `@${string}`;
|
|
3224
|
+
__typename?: boolean | `@${string}`;
|
|
3225
|
+
}>;
|
|
2946
3226
|
["ShapesupportSectionHeader_wrapper"]: AliasType<{
|
|
2947
3227
|
title?: boolean | `@${string}`;
|
|
2948
3228
|
description?: boolean | `@${string}`;
|
|
@@ -3586,6 +3866,11 @@ export type ModelTypes = {
|
|
|
3586
3866
|
backendGraphQlContent?: string | undefined | null;
|
|
3587
3867
|
includeShapes?: Array<string> | undefined | null;
|
|
3588
3868
|
};
|
|
3869
|
+
["ShapeLibrary"]: {
|
|
3870
|
+
name: string;
|
|
3871
|
+
shapes?: Array<ModelTypes["Shape"]> | undefined | null;
|
|
3872
|
+
description?: string | undefined | null;
|
|
3873
|
+
};
|
|
3589
3874
|
["CMSType"]: CMSType;
|
|
3590
3875
|
["Query"]: {
|
|
3591
3876
|
navigation?: Array<ModelTypes["ModelNavigation"]> | undefined | null;
|
|
@@ -3596,6 +3881,7 @@ export type ModelTypes = {
|
|
|
3596
3881
|
listShapes?: Array<ModelTypes["Shape"]> | undefined | null;
|
|
3597
3882
|
tailwind?: ModelTypes["TailwindConfiguration"] | undefined | null;
|
|
3598
3883
|
listForms?: Array<ModelTypes["Form"]> | undefined | null;
|
|
3884
|
+
shapeLibraries?: Array<ModelTypes["ShapeLibrary"]> | undefined | null;
|
|
3599
3885
|
listPaginateddocs?: ModelTypes["docs__Connection"] | undefined | null;
|
|
3600
3886
|
onedocsBySlug?: ModelTypes["docs"] | undefined | null;
|
|
3601
3887
|
oneAsScalardocsBySlug?: ModelTypes["ModelAsScalar"] | undefined | null;
|
|
@@ -3631,10 +3917,18 @@ export type ModelTypes = {
|
|
|
3631
3917
|
modelShapefeaturepresentation: ModelTypes["ModelNavigationCompiled"];
|
|
3632
3918
|
previewFieldsShapefeaturepresentation: ModelTypes["ModelNavigationCompiled"];
|
|
3633
3919
|
oneShapefeaturepresentation?: ModelTypes["Shapefeaturepresentation"] | undefined | null;
|
|
3920
|
+
fieldSetShapefeaturesv2: string;
|
|
3921
|
+
modelShapefeaturesv2: ModelTypes["ModelNavigationCompiled"];
|
|
3922
|
+
previewFieldsShapefeaturesv2: ModelTypes["ModelNavigationCompiled"];
|
|
3923
|
+
oneShapefeaturesv2?: ModelTypes["Shapefeaturesv2"] | undefined | null;
|
|
3634
3924
|
fieldSetShapefoot: string;
|
|
3635
3925
|
modelShapefoot: ModelTypes["ModelNavigationCompiled"];
|
|
3636
3926
|
previewFieldsShapefoot: ModelTypes["ModelNavigationCompiled"];
|
|
3637
3927
|
oneShapefoot?: ModelTypes["Shapefoot"] | undefined | null;
|
|
3928
|
+
fieldSetShapeheading: string;
|
|
3929
|
+
modelShapeheading: ModelTypes["ModelNavigationCompiled"];
|
|
3930
|
+
previewFieldsShapeheading: ModelTypes["ModelNavigationCompiled"];
|
|
3931
|
+
oneShapeheading?: ModelTypes["Shapeheading"] | undefined | null;
|
|
3638
3932
|
fieldSetShapehero: string;
|
|
3639
3933
|
modelShapehero: ModelTypes["ModelNavigationCompiled"];
|
|
3640
3934
|
previewFieldsShapehero: ModelTypes["ModelNavigationCompiled"];
|
|
@@ -3655,14 +3949,14 @@ export type ModelTypes = {
|
|
|
3655
3949
|
modelShapenewshape: ModelTypes["ModelNavigationCompiled"];
|
|
3656
3950
|
previewFieldsShapenewshape: ModelTypes["ModelNavigationCompiled"];
|
|
3657
3951
|
oneShapenewshape?: ModelTypes["Shapenewshape"] | undefined | null;
|
|
3658
|
-
fieldSetShapepricing_table: string;
|
|
3659
|
-
modelShapepricing_table: ModelTypes["ModelNavigationCompiled"];
|
|
3660
|
-
previewFieldsShapepricing_table: ModelTypes["ModelNavigationCompiled"];
|
|
3661
|
-
oneShapepricing_table?: ModelTypes["Shapepricing_table"] | undefined | null;
|
|
3662
3952
|
fieldSetShapepricingv1: string;
|
|
3663
3953
|
modelShapepricingv1: ModelTypes["ModelNavigationCompiled"];
|
|
3664
3954
|
previewFieldsShapepricingv1: ModelTypes["ModelNavigationCompiled"];
|
|
3665
3955
|
oneShapepricingv1?: ModelTypes["Shapepricingv1"] | undefined | null;
|
|
3956
|
+
fieldSetShapepricingv2: string;
|
|
3957
|
+
modelShapepricingv2: ModelTypes["ModelNavigationCompiled"];
|
|
3958
|
+
previewFieldsShapepricingv2: ModelTypes["ModelNavigationCompiled"];
|
|
3959
|
+
oneShapepricingv2?: ModelTypes["Shapepricingv2"] | undefined | null;
|
|
3666
3960
|
fieldSetShapeprofile_info: string;
|
|
3667
3961
|
modelShapeprofile_info: ModelTypes["ModelNavigationCompiled"];
|
|
3668
3962
|
previewFieldsShapeprofile_info: ModelTypes["ModelNavigationCompiled"];
|
|
@@ -3671,6 +3965,10 @@ export type ModelTypes = {
|
|
|
3671
3965
|
modelShapesecondary_cta: ModelTypes["ModelNavigationCompiled"];
|
|
3672
3966
|
previewFieldsShapesecondary_cta: ModelTypes["ModelNavigationCompiled"];
|
|
3673
3967
|
oneShapesecondary_cta?: ModelTypes["Shapesecondary_cta"] | undefined | null;
|
|
3968
|
+
fieldSetShapesubheading: string;
|
|
3969
|
+
modelShapesubheading: ModelTypes["ModelNavigationCompiled"];
|
|
3970
|
+
previewFieldsShapesubheading: ModelTypes["ModelNavigationCompiled"];
|
|
3971
|
+
oneShapesubheading?: ModelTypes["Shapesubheading"] | undefined | null;
|
|
3674
3972
|
fieldSetShapesupport: string;
|
|
3675
3973
|
modelShapesupport: ModelTypes["ModelNavigationCompiled"];
|
|
3676
3974
|
previewFieldsShapesupport: ModelTypes["ModelNavigationCompiled"];
|
|
@@ -3707,12 +4005,12 @@ export type ModelTypes = {
|
|
|
3707
4005
|
previewFieldsViewhowitworks: ModelTypes["ModelNavigationCompiled"];
|
|
3708
4006
|
oneViewhowitworks?: ModelTypes["Viewhowitworks"] | undefined | null;
|
|
3709
4007
|
oneAsScalarViewhowitworks?: ModelTypes["ViewAsScalar"] | undefined | null;
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
4008
|
+
variantsViewpricing_component?: Array<ModelTypes["Viewpricing_component"]> | undefined | null;
|
|
4009
|
+
fieldSetViewpricing_component: string;
|
|
4010
|
+
modelViewpricing_component: ModelTypes["ModelNavigationCompiled"];
|
|
4011
|
+
previewFieldsViewpricing_component: ModelTypes["ModelNavigationCompiled"];
|
|
4012
|
+
oneViewpricing_component?: ModelTypes["Viewpricing_component"] | undefined | null;
|
|
4013
|
+
oneAsScalarViewpricing_component?: ModelTypes["ViewAsScalar"] | undefined | null;
|
|
3716
4014
|
variantsViewttt?: Array<ModelTypes["Viewttt"]> | undefined | null;
|
|
3717
4015
|
fieldSetViewttt: string;
|
|
3718
4016
|
modelViewttt: ModelTypes["ModelNavigationCompiled"];
|
|
@@ -3817,7 +4115,6 @@ export type ModelTypes = {
|
|
|
3817
4115
|
["Viewhomepage"]: {
|
|
3818
4116
|
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
3819
4117
|
nav?: ModelTypes["Shapenav"] | undefined | null;
|
|
3820
|
-
main?: ModelTypes["Shapehero"] | undefined | null;
|
|
3821
4118
|
hero?: ModelTypes["Shapeherox"] | undefined | null;
|
|
3822
4119
|
cot?: ModelTypes["ViewhomepageCot"] | undefined | null;
|
|
3823
4120
|
pricing?: ModelTypes["Shapepricingv1"] | undefined | null;
|
|
@@ -3847,11 +4144,8 @@ export type ModelTypes = {
|
|
|
3847
4144
|
draft_version?: boolean | undefined | null;
|
|
3848
4145
|
json_ld?: string | undefined | null;
|
|
3849
4146
|
};
|
|
3850
|
-
["
|
|
4147
|
+
["Viewpricing_component"]: {
|
|
3851
4148
|
_version?: ModelTypes["VersionField"] | undefined | null;
|
|
3852
|
-
pricing?: ModelTypes["Shapepricingv1"] | undefined | null;
|
|
3853
|
-
table?: ModelTypes["Shapepricing_table"] | undefined | null;
|
|
3854
|
-
cta?: ModelTypes["Shapenewshape"] | undefined | null;
|
|
3855
4149
|
locale?: string | undefined | null;
|
|
3856
4150
|
slug?: string | undefined | null;
|
|
3857
4151
|
_id: string;
|
|
@@ -4053,6 +4347,11 @@ export type ModelTypes = {
|
|
|
4053
4347
|
createdAt?: number | undefined | null;
|
|
4054
4348
|
updatedAt?: number | undefined | null;
|
|
4055
4349
|
};
|
|
4350
|
+
["Shapefeaturesv2"]: {
|
|
4351
|
+
_id: string;
|
|
4352
|
+
createdAt?: number | undefined | null;
|
|
4353
|
+
updatedAt?: number | undefined | null;
|
|
4354
|
+
};
|
|
4056
4355
|
["ShapefootFooterFooter_containerFooter_links"]: {
|
|
4057
4356
|
privacy_policy?: string | undefined | null;
|
|
4058
4357
|
terms_of_service?: string | undefined | null;
|
|
@@ -4072,6 +4371,12 @@ export type ModelTypes = {
|
|
|
4072
4371
|
createdAt?: number | undefined | null;
|
|
4073
4372
|
updatedAt?: number | undefined | null;
|
|
4074
4373
|
};
|
|
4374
|
+
["Shapeheading"]: {
|
|
4375
|
+
text?: string | undefined | null;
|
|
4376
|
+
_id: string;
|
|
4377
|
+
createdAt?: number | undefined | null;
|
|
4378
|
+
updatedAt?: number | undefined | null;
|
|
4379
|
+
};
|
|
4075
4380
|
["ShapeheroHero_componentSlogan_parent"]: {
|
|
4076
4381
|
slogan?: string | undefined | null;
|
|
4077
4382
|
};
|
|
@@ -4169,34 +4474,6 @@ export type ModelTypes = {
|
|
|
4169
4474
|
createdAt?: number | undefined | null;
|
|
4170
4475
|
updatedAt?: number | undefined | null;
|
|
4171
4476
|
};
|
|
4172
|
-
["Shapepricing_tablePricing_sectionHeader_wrapper"]: {
|
|
4173
|
-
title?: string | undefined | null;
|
|
4174
|
-
description?: string | undefined | null;
|
|
4175
|
-
};
|
|
4176
|
-
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: {
|
|
4177
|
-
feature?: string | undefined | null;
|
|
4178
|
-
unit?: string | undefined | null;
|
|
4179
|
-
price?: string | undefined | null;
|
|
4180
|
-
};
|
|
4181
|
-
["Shapepricing_tablePricing_sectionPricing_tableRows"]: {
|
|
4182
|
-
feature?: string | undefined | null;
|
|
4183
|
-
unit?: string | undefined | null;
|
|
4184
|
-
price?: string | undefined | null;
|
|
4185
|
-
};
|
|
4186
|
-
["Shapepricing_tablePricing_sectionPricing_table"]: {
|
|
4187
|
-
table_head?: ModelTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"] | undefined | null;
|
|
4188
|
-
rows?: Array<ModelTypes["Shapepricing_tablePricing_sectionPricing_tableRows"] | undefined | null> | undefined | null;
|
|
4189
|
-
};
|
|
4190
|
-
["Shapepricing_tablePricing_section"]: {
|
|
4191
|
-
header_wrapper?: ModelTypes["Shapepricing_tablePricing_sectionHeader_wrapper"] | undefined | null;
|
|
4192
|
-
pricing_table?: ModelTypes["Shapepricing_tablePricing_sectionPricing_table"] | undefined | null;
|
|
4193
|
-
};
|
|
4194
|
-
["Shapepricing_table"]: {
|
|
4195
|
-
pricing_section?: ModelTypes["Shapepricing_tablePricing_section"] | undefined | null;
|
|
4196
|
-
_id: string;
|
|
4197
|
-
createdAt?: number | undefined | null;
|
|
4198
|
-
updatedAt?: number | undefined | null;
|
|
4199
|
-
};
|
|
4200
4477
|
["Shapepricingv1Pricing_sectionHeader_wrapper"]: {
|
|
4201
4478
|
title?: string | undefined | null;
|
|
4202
4479
|
description?: string | undefined | null;
|
|
@@ -4235,6 +4512,43 @@ export type ModelTypes = {
|
|
|
4235
4512
|
createdAt?: number | undefined | null;
|
|
4236
4513
|
updatedAt?: number | undefined | null;
|
|
4237
4514
|
};
|
|
4515
|
+
["Shapepricingv2MainPlans_gridFree_planPlan_footer"]: {
|
|
4516
|
+
price?: string | undefined | null;
|
|
4517
|
+
cta?: string | undefined | null;
|
|
4518
|
+
};
|
|
4519
|
+
["Shapepricingv2MainPlans_gridFree_plan"]: {
|
|
4520
|
+
subtitle?: string | undefined | null;
|
|
4521
|
+
description?: string | undefined | null;
|
|
4522
|
+
features?: Array<string | undefined | null> | undefined | null;
|
|
4523
|
+
plan_footer?: ModelTypes["Shapepricingv2MainPlans_gridFree_planPlan_footer"] | undefined | null;
|
|
4524
|
+
};
|
|
4525
|
+
["Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock"]: {
|
|
4526
|
+
price?: string | undefined | null;
|
|
4527
|
+
price_period?: string | undefined | null;
|
|
4528
|
+
};
|
|
4529
|
+
["Shapepricingv2MainPlans_gridPro_planPlan_footer"]: {
|
|
4530
|
+
priceblock?: ModelTypes["Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock"] | undefined | null;
|
|
4531
|
+
cta?: string | undefined | null;
|
|
4532
|
+
};
|
|
4533
|
+
["Shapepricingv2MainPlans_gridPro_plan"]: {
|
|
4534
|
+
subtitle?: string | undefined | null;
|
|
4535
|
+
description?: string | undefined | null;
|
|
4536
|
+
features?: Array<string | undefined | null> | undefined | null;
|
|
4537
|
+
plan_footer?: ModelTypes["Shapepricingv2MainPlans_gridPro_planPlan_footer"] | undefined | null;
|
|
4538
|
+
};
|
|
4539
|
+
["Shapepricingv2MainPlans_grid"]: {
|
|
4540
|
+
free_plan?: ModelTypes["Shapepricingv2MainPlans_gridFree_plan"] | undefined | null;
|
|
4541
|
+
pro_plan?: ModelTypes["Shapepricingv2MainPlans_gridPro_plan"] | undefined | null;
|
|
4542
|
+
};
|
|
4543
|
+
["Shapepricingv2Main"]: {
|
|
4544
|
+
plans_grid?: ModelTypes["Shapepricingv2MainPlans_grid"] | undefined | null;
|
|
4545
|
+
};
|
|
4546
|
+
["Shapepricingv2"]: {
|
|
4547
|
+
main?: ModelTypes["Shapepricingv2Main"] | undefined | null;
|
|
4548
|
+
_id: string;
|
|
4549
|
+
createdAt?: number | undefined | null;
|
|
4550
|
+
updatedAt?: number | undefined | null;
|
|
4551
|
+
};
|
|
4238
4552
|
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: {
|
|
4239
4553
|
full_name?: string | undefined | null;
|
|
4240
4554
|
company?: string | undefined | null;
|
|
@@ -4281,6 +4595,12 @@ export type ModelTypes = {
|
|
|
4281
4595
|
createdAt?: number | undefined | null;
|
|
4282
4596
|
updatedAt?: number | undefined | null;
|
|
4283
4597
|
};
|
|
4598
|
+
["Shapesubheading"]: {
|
|
4599
|
+
text?: string | undefined | null;
|
|
4600
|
+
_id: string;
|
|
4601
|
+
createdAt?: number | undefined | null;
|
|
4602
|
+
updatedAt?: number | undefined | null;
|
|
4603
|
+
};
|
|
4284
4604
|
["ShapesupportSectionHeader_wrapper"]: {
|
|
4285
4605
|
title?: string | undefined | null;
|
|
4286
4606
|
description?: string | undefined | null;
|
|
@@ -4696,35 +5016,41 @@ export type GraphQLTypes = {
|
|
|
4696
5016
|
content: string;
|
|
4697
5017
|
contentForClient: string;
|
|
4698
5018
|
compiledForIframe: string;
|
|
5019
|
+
['...on TailwindConfiguration']: Omit<GraphQLTypes["TailwindConfiguration"], "...on TailwindConfiguration">;
|
|
4699
5020
|
};
|
|
4700
5021
|
["VersionField"]: {
|
|
4701
5022
|
__typename: "VersionField";
|
|
4702
5023
|
name: string;
|
|
4703
5024
|
from: GraphQLTypes["Timestamp"];
|
|
4704
5025
|
to?: GraphQLTypes["Timestamp"] | undefined | null;
|
|
5026
|
+
['...on VersionField']: Omit<GraphQLTypes["VersionField"], "...on VersionField">;
|
|
4705
5027
|
};
|
|
4706
5028
|
["RangeField"]: {
|
|
4707
5029
|
__typename: "RangeField";
|
|
4708
5030
|
min: number;
|
|
4709
5031
|
max: number;
|
|
5032
|
+
['...on RangeField']: Omit<GraphQLTypes["RangeField"], "...on RangeField">;
|
|
4710
5033
|
};
|
|
4711
5034
|
["ImageField"]: {
|
|
4712
5035
|
__typename: "ImageField";
|
|
4713
5036
|
url?: GraphQLTypes["S3Scalar"] | undefined | null;
|
|
4714
5037
|
thumbnail?: GraphQLTypes["S3Scalar"] | undefined | null;
|
|
4715
5038
|
alt?: string | undefined | null;
|
|
5039
|
+
['...on ImageField']: Omit<GraphQLTypes["ImageField"], "...on ImageField">;
|
|
4716
5040
|
};
|
|
4717
5041
|
["VideoField"]: {
|
|
4718
5042
|
__typename: "VideoField";
|
|
4719
5043
|
url?: GraphQLTypes["S3Scalar"] | undefined | null;
|
|
4720
5044
|
previewImage?: GraphQLTypes["S3Scalar"] | undefined | null;
|
|
4721
5045
|
alt?: string | undefined | null;
|
|
5046
|
+
['...on VideoField']: Omit<GraphQLTypes["VideoField"], "...on VideoField">;
|
|
4722
5047
|
};
|
|
4723
5048
|
["InternalLink"]: {
|
|
4724
5049
|
__typename: "InternalLink";
|
|
4725
5050
|
_id: GraphQLTypes["ObjectId"];
|
|
4726
5051
|
keys: Array<string>;
|
|
4727
5052
|
href: string;
|
|
5053
|
+
['...on InternalLink']: Omit<GraphQLTypes["InternalLink"], "...on InternalLink">;
|
|
4728
5054
|
};
|
|
4729
5055
|
["Sort"]: Sort;
|
|
4730
5056
|
["RootCMSParam"]: {
|
|
@@ -4732,6 +5058,7 @@ export type GraphQLTypes = {
|
|
|
4732
5058
|
name: string;
|
|
4733
5059
|
options: Array<string>;
|
|
4734
5060
|
default?: string | undefined | null;
|
|
5061
|
+
['...on RootCMSParam']: Omit<GraphQLTypes["RootCMSParam"], "...on RootCMSParam">;
|
|
4735
5062
|
};
|
|
4736
5063
|
["ModelNavigation"]: {
|
|
4737
5064
|
__typename: "ModelNavigation";
|
|
@@ -4739,6 +5066,7 @@ export type GraphQLTypes = {
|
|
|
4739
5066
|
display: string;
|
|
4740
5067
|
fields: Array<GraphQLTypes["CMSField"]>;
|
|
4741
5068
|
fieldSet: string;
|
|
5069
|
+
['...on ModelNavigation']: Omit<GraphQLTypes["ModelNavigation"], "...on ModelNavigation">;
|
|
4742
5070
|
};
|
|
4743
5071
|
["CMSField"]: {
|
|
4744
5072
|
__typename: "CMSField";
|
|
@@ -4757,6 +5085,7 @@ export type GraphQLTypes = {
|
|
|
4757
5085
|
visual?: GraphQLTypes["Visual"] | undefined | null;
|
|
4758
5086
|
conditions?: GraphQLTypes["Condition"] | undefined | null;
|
|
4759
5087
|
nonTranslatable?: boolean | undefined | null;
|
|
5088
|
+
['...on CMSField']: Omit<GraphQLTypes["CMSField"], "...on CMSField">;
|
|
4760
5089
|
};
|
|
4761
5090
|
["ConditionSetOperator"]: ConditionSetOperator;
|
|
4762
5091
|
["ConditionOperator"]: ConditionOperator;
|
|
@@ -4769,6 +5098,7 @@ export type GraphQLTypes = {
|
|
|
4769
5098
|
setOperator?: GraphQLTypes["ConditionSetOperator"] | undefined | null;
|
|
4770
5099
|
value?: string | undefined | null;
|
|
4771
5100
|
children?: Array<GraphQLTypes["Condition"]> | undefined | null;
|
|
5101
|
+
['...on Condition']: Omit<GraphQLTypes["Condition"], "...on Condition">;
|
|
4772
5102
|
};
|
|
4773
5103
|
["ActionType"]: ActionType;
|
|
4774
5104
|
["Action"]: {
|
|
@@ -4776,21 +5106,25 @@ export type GraphQLTypes = {
|
|
|
4776
5106
|
path: string;
|
|
4777
5107
|
type: GraphQLTypes["ActionType"];
|
|
4778
5108
|
value: string;
|
|
5109
|
+
['...on Action']: Omit<GraphQLTypes["Action"], "...on Action">;
|
|
4779
5110
|
};
|
|
4780
5111
|
["Rule"]: {
|
|
4781
5112
|
__typename: "Rule";
|
|
4782
5113
|
conditions: Array<GraphQLTypes["Condition"]>;
|
|
4783
5114
|
actions: Array<GraphQLTypes["Action"]>;
|
|
5115
|
+
['...on Rule']: Omit<GraphQLTypes["Rule"], "...on Rule">;
|
|
4784
5116
|
};
|
|
4785
5117
|
["Visual"]: {
|
|
4786
5118
|
__typename: "Visual";
|
|
4787
5119
|
className?: string | undefined | null;
|
|
4788
5120
|
component?: string | undefined | null;
|
|
5121
|
+
['...on Visual']: Omit<GraphQLTypes["Visual"], "...on Visual">;
|
|
4789
5122
|
};
|
|
4790
5123
|
["PageInfo"]: {
|
|
4791
5124
|
__typename: "PageInfo";
|
|
4792
5125
|
total: number;
|
|
4793
5126
|
hasNext?: boolean | undefined | null;
|
|
5127
|
+
['...on PageInfo']: Omit<GraphQLTypes["PageInfo"], "...on PageInfo">;
|
|
4794
5128
|
};
|
|
4795
5129
|
["PageInput"]: {
|
|
4796
5130
|
limit: number;
|
|
@@ -4813,6 +5147,7 @@ export type GraphQLTypes = {
|
|
|
4813
5147
|
prompt?: string | undefined | null;
|
|
4814
5148
|
promptResponse?: GraphQLTypes["AiComponent"] | undefined | null;
|
|
4815
5149
|
fields: Array<GraphQLTypes["CMSField"]>;
|
|
5150
|
+
['...on Shape']: Omit<GraphQLTypes["Shape"], "...on Shape">;
|
|
4816
5151
|
};
|
|
4817
5152
|
["View"]: {
|
|
4818
5153
|
__typename: "View";
|
|
@@ -4820,6 +5155,7 @@ export type GraphQLTypes = {
|
|
|
4820
5155
|
fields: Array<GraphQLTypes["CMSField"]>;
|
|
4821
5156
|
slug: string;
|
|
4822
5157
|
display: string;
|
|
5158
|
+
['...on View']: Omit<GraphQLTypes["View"], "...on View">;
|
|
4823
5159
|
};
|
|
4824
5160
|
["AiComponent"]: {
|
|
4825
5161
|
__typename: "AiComponent";
|
|
@@ -4828,12 +5164,14 @@ export type GraphQLTypes = {
|
|
|
4828
5164
|
className: string;
|
|
4829
5165
|
textContent?: string | undefined | null;
|
|
4830
5166
|
children?: Array<GraphQLTypes["AiComponent"]> | undefined | null;
|
|
5167
|
+
['...on AiComponent']: Omit<GraphQLTypes["AiComponent"], "...on AiComponent">;
|
|
4831
5168
|
};
|
|
4832
5169
|
["FormFieldVisual"]: {
|
|
4833
5170
|
__typename: "FormFieldVisual";
|
|
4834
5171
|
className?: string | undefined | null;
|
|
4835
5172
|
component?: string | undefined | null;
|
|
4836
5173
|
rules?: Array<GraphQLTypes["Rule"]> | undefined | null;
|
|
5174
|
+
['...on FormFieldVisual']: Omit<GraphQLTypes["FormFieldVisual"], "...on FormFieldVisual">;
|
|
4837
5175
|
};
|
|
4838
5176
|
["FormField"]: {
|
|
4839
5177
|
__typename: "FormField";
|
|
@@ -4848,6 +5186,7 @@ export type GraphQLTypes = {
|
|
|
4848
5186
|
options?: Array<string> | undefined | null;
|
|
4849
5187
|
builtIn?: boolean | undefined | null;
|
|
4850
5188
|
nonTranslatable?: boolean | undefined | null;
|
|
5189
|
+
['...on FormField']: Omit<GraphQLTypes["FormField"], "...on FormField">;
|
|
4851
5190
|
};
|
|
4852
5191
|
["FormFieldType"]: FormFieldType;
|
|
4853
5192
|
["Form"]: {
|
|
@@ -4855,6 +5194,7 @@ export type GraphQLTypes = {
|
|
|
4855
5194
|
name: string;
|
|
4856
5195
|
display?: string | undefined | null;
|
|
4857
5196
|
fields: Array<GraphQLTypes["FormField"]>;
|
|
5197
|
+
['...on Form']: Omit<GraphQLTypes["Form"], "...on Form">;
|
|
4858
5198
|
};
|
|
4859
5199
|
["FormTextField"]: {
|
|
4860
5200
|
__typename: "FormTextField";
|
|
@@ -4862,83 +5202,101 @@ export type GraphQLTypes = {
|
|
|
4862
5202
|
placeholder?: string | undefined | null;
|
|
4863
5203
|
type?: string | undefined | null;
|
|
4864
5204
|
defaultValue?: string | undefined | null;
|
|
5205
|
+
['...on FormTextField']: Omit<GraphQLTypes["FormTextField"], "...on FormTextField">;
|
|
4865
5206
|
};
|
|
4866
5207
|
["FormBooleanField"]: {
|
|
4867
5208
|
__typename: "FormBooleanField";
|
|
4868
5209
|
label?: string | undefined | null;
|
|
5210
|
+
['...on FormBooleanField']: Omit<GraphQLTypes["FormBooleanField"], "...on FormBooleanField">;
|
|
4869
5211
|
};
|
|
4870
5212
|
["FormContentField"]: {
|
|
4871
5213
|
__typename: "FormContentField";
|
|
4872
5214
|
label?: string | undefined | null;
|
|
4873
5215
|
placeholder?: string | undefined | null;
|
|
4874
5216
|
content?: string | undefined | null;
|
|
5217
|
+
['...on FormContentField']: Omit<GraphQLTypes["FormContentField"], "...on FormContentField">;
|
|
4875
5218
|
};
|
|
4876
5219
|
["FormRadioField"]: {
|
|
4877
5220
|
__typename: "FormRadioField";
|
|
4878
5221
|
label?: string | undefined | null;
|
|
5222
|
+
['...on FormRadioField']: Omit<GraphQLTypes["FormRadioField"], "...on FormRadioField">;
|
|
4879
5223
|
};
|
|
4880
5224
|
["FormStepField"]: {
|
|
4881
5225
|
__typename: "FormStepField";
|
|
4882
5226
|
label?: string | undefined | null;
|
|
5227
|
+
['...on FormStepField']: Omit<GraphQLTypes["FormStepField"], "...on FormStepField">;
|
|
4883
5228
|
};
|
|
4884
5229
|
["FormTextareaField"]: {
|
|
4885
5230
|
__typename: "FormTextareaField";
|
|
4886
5231
|
label?: string | undefined | null;
|
|
4887
5232
|
placeholder?: string | undefined | null;
|
|
5233
|
+
['...on FormTextareaField']: Omit<GraphQLTypes["FormTextareaField"], "...on FormTextareaField">;
|
|
4888
5234
|
};
|
|
4889
5235
|
["FormGroupField"]: {
|
|
4890
5236
|
__typename: "FormGroupField";
|
|
4891
5237
|
label?: string | undefined | null;
|
|
5238
|
+
['...on FormGroupField']: Omit<GraphQLTypes["FormGroupField"], "...on FormGroupField">;
|
|
4892
5239
|
};
|
|
4893
5240
|
["FormArrayStepField"]: {
|
|
4894
5241
|
__typename: "FormArrayStepField";
|
|
4895
5242
|
label?: string | undefined | null;
|
|
5243
|
+
['...on FormArrayStepField']: Omit<GraphQLTypes["FormArrayStepField"], "...on FormArrayStepField">;
|
|
4896
5244
|
};
|
|
4897
5245
|
["FormRouteField"]: {
|
|
4898
5246
|
__typename: "FormRouteField";
|
|
4899
5247
|
label?: string | undefined | null;
|
|
4900
5248
|
portal?: string | undefined | null;
|
|
5249
|
+
['...on FormRouteField']: Omit<GraphQLTypes["FormRouteField"], "...on FormRouteField">;
|
|
4901
5250
|
};
|
|
4902
5251
|
["FormPortalField"]: {
|
|
4903
5252
|
__typename: "FormPortalField";
|
|
4904
5253
|
label?: string | undefined | null;
|
|
5254
|
+
['...on FormPortalField']: Omit<GraphQLTypes["FormPortalField"], "...on FormPortalField">;
|
|
4905
5255
|
};
|
|
4906
5256
|
["FormSubmitField"]: {
|
|
4907
5257
|
__typename: "FormSubmitField";
|
|
4908
5258
|
label?: string | undefined | null;
|
|
5259
|
+
['...on FormSubmitField']: Omit<GraphQLTypes["FormSubmitField"], "...on FormSubmitField">;
|
|
4909
5260
|
};
|
|
4910
5261
|
["FormNumberField"]: {
|
|
4911
5262
|
__typename: "FormNumberField";
|
|
4912
5263
|
label?: string | undefined | null;
|
|
5264
|
+
['...on FormNumberField']: Omit<GraphQLTypes["FormNumberField"], "...on FormNumberField">;
|
|
4913
5265
|
};
|
|
4914
5266
|
["FormRadioTextField"]: {
|
|
4915
5267
|
__typename: "FormRadioTextField";
|
|
4916
5268
|
label?: string | undefined | null;
|
|
4917
5269
|
options?: Array<string> | undefined | null;
|
|
5270
|
+
['...on FormRadioTextField']: Omit<GraphQLTypes["FormRadioTextField"], "...on FormRadioTextField">;
|
|
4918
5271
|
};
|
|
4919
5272
|
["FormCheckboxField"]: {
|
|
4920
5273
|
__typename: "FormCheckboxField";
|
|
4921
5274
|
label?: string | undefined | null;
|
|
5275
|
+
['...on FormCheckboxField']: Omit<GraphQLTypes["FormCheckboxField"], "...on FormCheckboxField">;
|
|
4922
5276
|
};
|
|
4923
5277
|
["FormButtonField"]: {
|
|
4924
5278
|
__typename: "FormButtonField";
|
|
4925
5279
|
label?: string | undefined | null;
|
|
5280
|
+
['...on FormButtonField']: Omit<GraphQLTypes["FormButtonField"], "...on FormButtonField">;
|
|
4926
5281
|
};
|
|
4927
5282
|
["FormProductField"]: {
|
|
4928
5283
|
__typename: "FormProductField";
|
|
4929
5284
|
label?: string | undefined | null;
|
|
4930
5285
|
name?: string | undefined | null;
|
|
5286
|
+
['...on FormProductField']: Omit<GraphQLTypes["FormProductField"], "...on FormProductField">;
|
|
4931
5287
|
};
|
|
4932
5288
|
["FormVariableField"]: {
|
|
4933
5289
|
__typename: "FormVariableField";
|
|
4934
5290
|
label?: string | undefined | null;
|
|
4935
5291
|
name?: string | undefined | null;
|
|
4936
5292
|
defaultValue?: string | undefined | null;
|
|
5293
|
+
['...on FormVariableField']: Omit<GraphQLTypes["FormVariableField"], "...on FormVariableField">;
|
|
4937
5294
|
};
|
|
4938
5295
|
["FormDisplayField"]: {
|
|
4939
5296
|
__typename: "FormDisplayField";
|
|
4940
5297
|
label?: string | undefined | null;
|
|
4941
5298
|
path?: string | undefined | null;
|
|
5299
|
+
['...on FormDisplayField']: Omit<GraphQLTypes["FormDisplayField"], "...on FormDisplayField">;
|
|
4942
5300
|
};
|
|
4943
5301
|
["GenerateHusarShapeImplementorInput"]: {
|
|
4944
5302
|
prompt: string;
|
|
@@ -4946,6 +5304,13 @@ export type GraphQLTypes = {
|
|
|
4946
5304
|
backendGraphQlContent?: string | undefined | null;
|
|
4947
5305
|
includeShapes?: Array<string> | undefined | null;
|
|
4948
5306
|
};
|
|
5307
|
+
["ShapeLibrary"]: {
|
|
5308
|
+
__typename: "ShapeLibrary";
|
|
5309
|
+
name: string;
|
|
5310
|
+
shapes?: Array<GraphQLTypes["Shape"]> | undefined | null;
|
|
5311
|
+
description?: string | undefined | null;
|
|
5312
|
+
['...on ShapeLibrary']: Omit<GraphQLTypes["ShapeLibrary"], "...on ShapeLibrary">;
|
|
5313
|
+
};
|
|
4949
5314
|
["CMSType"]: CMSType;
|
|
4950
5315
|
["Query"]: {
|
|
4951
5316
|
__typename: "Query";
|
|
@@ -4957,6 +5322,7 @@ export type GraphQLTypes = {
|
|
|
4957
5322
|
listShapes?: Array<GraphQLTypes["Shape"]> | undefined | null;
|
|
4958
5323
|
tailwind?: GraphQLTypes["TailwindConfiguration"] | undefined | null;
|
|
4959
5324
|
listForms?: Array<GraphQLTypes["Form"]> | undefined | null;
|
|
5325
|
+
shapeLibraries?: Array<GraphQLTypes["ShapeLibrary"]> | undefined | null;
|
|
4960
5326
|
listPaginateddocs?: GraphQLTypes["docs__Connection"] | undefined | null;
|
|
4961
5327
|
onedocsBySlug?: GraphQLTypes["docs"] | undefined | null;
|
|
4962
5328
|
oneAsScalardocsBySlug?: GraphQLTypes["ModelAsScalar"] | undefined | null;
|
|
@@ -4992,10 +5358,18 @@ export type GraphQLTypes = {
|
|
|
4992
5358
|
modelShapefeaturepresentation: GraphQLTypes["ModelNavigationCompiled"];
|
|
4993
5359
|
previewFieldsShapefeaturepresentation: GraphQLTypes["ModelNavigationCompiled"];
|
|
4994
5360
|
oneShapefeaturepresentation?: GraphQLTypes["Shapefeaturepresentation"] | undefined | null;
|
|
5361
|
+
fieldSetShapefeaturesv2: string;
|
|
5362
|
+
modelShapefeaturesv2: GraphQLTypes["ModelNavigationCompiled"];
|
|
5363
|
+
previewFieldsShapefeaturesv2: GraphQLTypes["ModelNavigationCompiled"];
|
|
5364
|
+
oneShapefeaturesv2?: GraphQLTypes["Shapefeaturesv2"] | undefined | null;
|
|
4995
5365
|
fieldSetShapefoot: string;
|
|
4996
5366
|
modelShapefoot: GraphQLTypes["ModelNavigationCompiled"];
|
|
4997
5367
|
previewFieldsShapefoot: GraphQLTypes["ModelNavigationCompiled"];
|
|
4998
5368
|
oneShapefoot?: GraphQLTypes["Shapefoot"] | undefined | null;
|
|
5369
|
+
fieldSetShapeheading: string;
|
|
5370
|
+
modelShapeheading: GraphQLTypes["ModelNavigationCompiled"];
|
|
5371
|
+
previewFieldsShapeheading: GraphQLTypes["ModelNavigationCompiled"];
|
|
5372
|
+
oneShapeheading?: GraphQLTypes["Shapeheading"] | undefined | null;
|
|
4999
5373
|
fieldSetShapehero: string;
|
|
5000
5374
|
modelShapehero: GraphQLTypes["ModelNavigationCompiled"];
|
|
5001
5375
|
previewFieldsShapehero: GraphQLTypes["ModelNavigationCompiled"];
|
|
@@ -5016,14 +5390,14 @@ export type GraphQLTypes = {
|
|
|
5016
5390
|
modelShapenewshape: GraphQLTypes["ModelNavigationCompiled"];
|
|
5017
5391
|
previewFieldsShapenewshape: GraphQLTypes["ModelNavigationCompiled"];
|
|
5018
5392
|
oneShapenewshape?: GraphQLTypes["Shapenewshape"] | undefined | null;
|
|
5019
|
-
fieldSetShapepricing_table: string;
|
|
5020
|
-
modelShapepricing_table: GraphQLTypes["ModelNavigationCompiled"];
|
|
5021
|
-
previewFieldsShapepricing_table: GraphQLTypes["ModelNavigationCompiled"];
|
|
5022
|
-
oneShapepricing_table?: GraphQLTypes["Shapepricing_table"] | undefined | null;
|
|
5023
5393
|
fieldSetShapepricingv1: string;
|
|
5024
5394
|
modelShapepricingv1: GraphQLTypes["ModelNavigationCompiled"];
|
|
5025
5395
|
previewFieldsShapepricingv1: GraphQLTypes["ModelNavigationCompiled"];
|
|
5026
5396
|
oneShapepricingv1?: GraphQLTypes["Shapepricingv1"] | undefined | null;
|
|
5397
|
+
fieldSetShapepricingv2: string;
|
|
5398
|
+
modelShapepricingv2: GraphQLTypes["ModelNavigationCompiled"];
|
|
5399
|
+
previewFieldsShapepricingv2: GraphQLTypes["ModelNavigationCompiled"];
|
|
5400
|
+
oneShapepricingv2?: GraphQLTypes["Shapepricingv2"] | undefined | null;
|
|
5027
5401
|
fieldSetShapeprofile_info: string;
|
|
5028
5402
|
modelShapeprofile_info: GraphQLTypes["ModelNavigationCompiled"];
|
|
5029
5403
|
previewFieldsShapeprofile_info: GraphQLTypes["ModelNavigationCompiled"];
|
|
@@ -5032,6 +5406,10 @@ export type GraphQLTypes = {
|
|
|
5032
5406
|
modelShapesecondary_cta: GraphQLTypes["ModelNavigationCompiled"];
|
|
5033
5407
|
previewFieldsShapesecondary_cta: GraphQLTypes["ModelNavigationCompiled"];
|
|
5034
5408
|
oneShapesecondary_cta?: GraphQLTypes["Shapesecondary_cta"] | undefined | null;
|
|
5409
|
+
fieldSetShapesubheading: string;
|
|
5410
|
+
modelShapesubheading: GraphQLTypes["ModelNavigationCompiled"];
|
|
5411
|
+
previewFieldsShapesubheading: GraphQLTypes["ModelNavigationCompiled"];
|
|
5412
|
+
oneShapesubheading?: GraphQLTypes["Shapesubheading"] | undefined | null;
|
|
5035
5413
|
fieldSetShapesupport: string;
|
|
5036
5414
|
modelShapesupport: GraphQLTypes["ModelNavigationCompiled"];
|
|
5037
5415
|
previewFieldsShapesupport: GraphQLTypes["ModelNavigationCompiled"];
|
|
@@ -5068,12 +5446,12 @@ export type GraphQLTypes = {
|
|
|
5068
5446
|
previewFieldsViewhowitworks: GraphQLTypes["ModelNavigationCompiled"];
|
|
5069
5447
|
oneViewhowitworks?: GraphQLTypes["Viewhowitworks"] | undefined | null;
|
|
5070
5448
|
oneAsScalarViewhowitworks?: GraphQLTypes["ViewAsScalar"] | undefined | null;
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5075
|
-
|
|
5076
|
-
|
|
5449
|
+
variantsViewpricing_component?: Array<GraphQLTypes["Viewpricing_component"]> | undefined | null;
|
|
5450
|
+
fieldSetViewpricing_component: string;
|
|
5451
|
+
modelViewpricing_component: GraphQLTypes["ModelNavigationCompiled"];
|
|
5452
|
+
previewFieldsViewpricing_component: GraphQLTypes["ModelNavigationCompiled"];
|
|
5453
|
+
oneViewpricing_component?: GraphQLTypes["Viewpricing_component"] | undefined | null;
|
|
5454
|
+
oneAsScalarViewpricing_component?: GraphQLTypes["ViewAsScalar"] | undefined | null;
|
|
5077
5455
|
variantsViewttt?: Array<GraphQLTypes["Viewttt"]> | undefined | null;
|
|
5078
5456
|
fieldSetViewttt: string;
|
|
5079
5457
|
modelViewttt: GraphQLTypes["ModelNavigationCompiled"];
|
|
@@ -5098,6 +5476,7 @@ export type GraphQLTypes = {
|
|
|
5098
5476
|
responsesFormtest?: GraphQLTypes["SearchResponsesFormtest"] | undefined | null;
|
|
5099
5477
|
responseFormtest?: GraphQLTypes["ResponseFormtest"] | undefined | null;
|
|
5100
5478
|
responseFieldSetFormtest?: string | undefined | null;
|
|
5479
|
+
['...on Query']: Omit<GraphQLTypes["Query"], "...on Query">;
|
|
5101
5480
|
};
|
|
5102
5481
|
["Mutation"]: {
|
|
5103
5482
|
__typename: "Mutation";
|
|
@@ -5106,11 +5485,13 @@ export type GraphQLTypes = {
|
|
|
5106
5485
|
removeResponseFormregister?: boolean | undefined | null;
|
|
5107
5486
|
submitResponseFormtest?: boolean | undefined | null;
|
|
5108
5487
|
removeResponseFormtest?: boolean | undefined | null;
|
|
5488
|
+
['...on Mutation']: Omit<GraphQLTypes["Mutation"], "...on Mutation">;
|
|
5109
5489
|
};
|
|
5110
5490
|
["RootParamsType"]: {
|
|
5111
5491
|
__typename: "RootParamsType";
|
|
5112
5492
|
_version?: string | undefined | null;
|
|
5113
5493
|
locale?: string | undefined | null;
|
|
5494
|
+
['...on RootParamsType']: Omit<GraphQLTypes["RootParamsType"], "...on RootParamsType">;
|
|
5114
5495
|
};
|
|
5115
5496
|
["ModelEnum"]: ModelEnum;
|
|
5116
5497
|
["ViewEnum"]: ViewEnum;
|
|
@@ -5120,6 +5501,7 @@ export type GraphQLTypes = {
|
|
|
5120
5501
|
__typename: "docs__Connection";
|
|
5121
5502
|
items?: Array<GraphQLTypes["docs"]> | undefined | null;
|
|
5122
5503
|
pageInfo: GraphQLTypes["PageInfo"];
|
|
5504
|
+
['...on docs__Connection']: Omit<GraphQLTypes["docs__Connection"], "...on docs__Connection">;
|
|
5123
5505
|
};
|
|
5124
5506
|
["docs"]: {
|
|
5125
5507
|
__typename: "docs";
|
|
@@ -5138,11 +5520,13 @@ export type GraphQLTypes = {
|
|
|
5138
5520
|
updatedAt?: number | undefined | null;
|
|
5139
5521
|
draft_version?: boolean | undefined | null;
|
|
5140
5522
|
json_ld?: string | undefined | null;
|
|
5523
|
+
['...on docs']: Omit<GraphQLTypes["docs"], "...on docs">;
|
|
5141
5524
|
};
|
|
5142
5525
|
["ViewaccountMain"]: {
|
|
5143
5526
|
__typename: "ViewaccountMain";
|
|
5144
5527
|
profile?: GraphQLTypes["Shapeprofile_info"] | undefined | null;
|
|
5145
5528
|
projects?: GraphQLTypes["Shapelista_projektow"] | undefined | null;
|
|
5529
|
+
['...on ViewaccountMain']: Omit<GraphQLTypes["ViewaccountMain"], "...on ViewaccountMain">;
|
|
5146
5530
|
};
|
|
5147
5531
|
["Viewaccount"]: {
|
|
5148
5532
|
__typename: "Viewaccount";
|
|
@@ -5155,11 +5539,13 @@ export type GraphQLTypes = {
|
|
|
5155
5539
|
updatedAt?: number | undefined | null;
|
|
5156
5540
|
draft_version?: boolean | undefined | null;
|
|
5157
5541
|
json_ld?: string | undefined | null;
|
|
5542
|
+
['...on Viewaccount']: Omit<GraphQLTypes["Viewaccount"], "...on Viewaccount">;
|
|
5158
5543
|
};
|
|
5159
5544
|
["ViewfeaturesMain"]: {
|
|
5160
5545
|
__typename: "ViewfeaturesMain";
|
|
5161
5546
|
auto_translation?: GraphQLTypes["Shapefeaturepresentation"] | undefined | null;
|
|
5162
5547
|
ai_component?: GraphQLTypes["Shapefeaturepresentation"] | undefined | null;
|
|
5548
|
+
['...on ViewfeaturesMain']: Omit<GraphQLTypes["ViewfeaturesMain"], "...on ViewfeaturesMain">;
|
|
5163
5549
|
};
|
|
5164
5550
|
["Viewfeatures"]: {
|
|
5165
5551
|
__typename: "Viewfeatures";
|
|
@@ -5172,25 +5558,28 @@ export type GraphQLTypes = {
|
|
|
5172
5558
|
updatedAt?: number | undefined | null;
|
|
5173
5559
|
draft_version?: boolean | undefined | null;
|
|
5174
5560
|
json_ld?: string | undefined | null;
|
|
5561
|
+
['...on Viewfeatures']: Omit<GraphQLTypes["Viewfeatures"], "...on Viewfeatures">;
|
|
5175
5562
|
};
|
|
5176
5563
|
["ViewhomepageCotContain"]: {
|
|
5177
5564
|
__typename: "ViewhomepageCotContain";
|
|
5178
5565
|
header?: GraphQLTypes["Shapetitle_desc"] | undefined | null;
|
|
5566
|
+
['...on ViewhomepageCotContain']: Omit<GraphQLTypes["ViewhomepageCotContain"], "...on ViewhomepageCotContain">;
|
|
5179
5567
|
};
|
|
5180
5568
|
["ViewhomepageCotFeatures"]: {
|
|
5181
5569
|
__typename: "ViewhomepageCotFeatures";
|
|
5182
5570
|
feat?: Array<GraphQLTypes["Shapefeaturepresentation"] | undefined | null> | undefined | null;
|
|
5571
|
+
['...on ViewhomepageCotFeatures']: Omit<GraphQLTypes["ViewhomepageCotFeatures"], "...on ViewhomepageCotFeatures">;
|
|
5183
5572
|
};
|
|
5184
5573
|
["ViewhomepageCot"]: {
|
|
5185
5574
|
__typename: "ViewhomepageCot";
|
|
5186
5575
|
contain?: GraphQLTypes["ViewhomepageCotContain"] | undefined | null;
|
|
5187
5576
|
features?: GraphQLTypes["ViewhomepageCotFeatures"] | undefined | null;
|
|
5577
|
+
['...on ViewhomepageCot']: Omit<GraphQLTypes["ViewhomepageCot"], "...on ViewhomepageCot">;
|
|
5188
5578
|
};
|
|
5189
5579
|
["Viewhomepage"]: {
|
|
5190
5580
|
__typename: "Viewhomepage";
|
|
5191
5581
|
_version?: GraphQLTypes["VersionField"] | undefined | null;
|
|
5192
5582
|
nav?: GraphQLTypes["Shapenav"] | undefined | null;
|
|
5193
|
-
main?: GraphQLTypes["Shapehero"] | undefined | null;
|
|
5194
5583
|
hero?: GraphQLTypes["Shapeherox"] | undefined | null;
|
|
5195
5584
|
cot?: GraphQLTypes["ViewhomepageCot"] | undefined | null;
|
|
5196
5585
|
pricing?: GraphQLTypes["Shapepricingv1"] | undefined | null;
|
|
@@ -5202,12 +5591,14 @@ export type GraphQLTypes = {
|
|
|
5202
5591
|
updatedAt?: number | undefined | null;
|
|
5203
5592
|
draft_version?: boolean | undefined | null;
|
|
5204
5593
|
json_ld?: string | undefined | null;
|
|
5594
|
+
['...on Viewhomepage']: Omit<GraphQLTypes["Viewhomepage"], "...on Viewhomepage">;
|
|
5205
5595
|
};
|
|
5206
5596
|
["ViewhowitworksFeature_control"]: {
|
|
5207
5597
|
__typename: "ViewhowitworksFeature_control";
|
|
5208
5598
|
title?: string | undefined | null;
|
|
5209
5599
|
description?: string | undefined | null;
|
|
5210
5600
|
image?: GraphQLTypes["ImageField"] | undefined | null;
|
|
5601
|
+
['...on ViewhowitworksFeature_control']: Omit<GraphQLTypes["ViewhowitworksFeature_control"], "...on ViewhowitworksFeature_control">;
|
|
5211
5602
|
};
|
|
5212
5603
|
["Viewhowitworks"]: {
|
|
5213
5604
|
__typename: "Viewhowitworks";
|
|
@@ -5221,13 +5612,11 @@ export type GraphQLTypes = {
|
|
|
5221
5612
|
updatedAt?: number | undefined | null;
|
|
5222
5613
|
draft_version?: boolean | undefined | null;
|
|
5223
5614
|
json_ld?: string | undefined | null;
|
|
5615
|
+
['...on Viewhowitworks']: Omit<GraphQLTypes["Viewhowitworks"], "...on Viewhowitworks">;
|
|
5224
5616
|
};
|
|
5225
|
-
["
|
|
5226
|
-
__typename: "
|
|
5617
|
+
["Viewpricing_component"]: {
|
|
5618
|
+
__typename: "Viewpricing_component";
|
|
5227
5619
|
_version?: GraphQLTypes["VersionField"] | undefined | null;
|
|
5228
|
-
pricing?: GraphQLTypes["Shapepricingv1"] | undefined | null;
|
|
5229
|
-
table?: GraphQLTypes["Shapepricing_table"] | undefined | null;
|
|
5230
|
-
cta?: GraphQLTypes["Shapenewshape"] | undefined | null;
|
|
5231
5620
|
locale?: string | undefined | null;
|
|
5232
5621
|
slug?: string | undefined | null;
|
|
5233
5622
|
_id: string;
|
|
@@ -5235,6 +5624,7 @@ export type GraphQLTypes = {
|
|
|
5235
5624
|
updatedAt?: number | undefined | null;
|
|
5236
5625
|
draft_version?: boolean | undefined | null;
|
|
5237
5626
|
json_ld?: string | undefined | null;
|
|
5627
|
+
['...on Viewpricing_component']: Omit<GraphQLTypes["Viewpricing_component"], "...on Viewpricing_component">;
|
|
5238
5628
|
};
|
|
5239
5629
|
["Viewttt"]: {
|
|
5240
5630
|
__typename: "Viewttt";
|
|
@@ -5246,63 +5636,75 @@ export type GraphQLTypes = {
|
|
|
5246
5636
|
updatedAt?: number | undefined | null;
|
|
5247
5637
|
draft_version?: boolean | undefined | null;
|
|
5248
5638
|
json_ld?: string | undefined | null;
|
|
5639
|
+
['...on Viewttt']: Omit<GraphQLTypes["Viewttt"], "...on Viewttt">;
|
|
5249
5640
|
};
|
|
5250
5641
|
["Shapeaplikacja_gNavbarMenu"]: {
|
|
5251
5642
|
__typename: "Shapeaplikacja_gNavbarMenu";
|
|
5252
5643
|
name?: string | undefined | null;
|
|
5253
5644
|
href?: string | undefined | null;
|
|
5645
|
+
['...on Shapeaplikacja_gNavbarMenu']: Omit<GraphQLTypes["Shapeaplikacja_gNavbarMenu"], "...on Shapeaplikacja_gNavbarMenu">;
|
|
5254
5646
|
};
|
|
5255
5647
|
["Shapeaplikacja_gNavbar"]: {
|
|
5256
5648
|
__typename: "Shapeaplikacja_gNavbar";
|
|
5257
5649
|
logo?: string | undefined | null;
|
|
5258
5650
|
menu?: Array<GraphQLTypes["Shapeaplikacja_gNavbarMenu"] | undefined | null> | undefined | null;
|
|
5651
|
+
['...on Shapeaplikacja_gNavbar']: Omit<GraphQLTypes["Shapeaplikacja_gNavbar"], "...on Shapeaplikacja_gNavbar">;
|
|
5259
5652
|
};
|
|
5260
5653
|
["Shapeaplikacja_gHero"]: {
|
|
5261
5654
|
__typename: "Shapeaplikacja_gHero";
|
|
5262
5655
|
heading?: string | undefined | null;
|
|
5263
5656
|
subheading?: string | undefined | null;
|
|
5657
|
+
['...on Shapeaplikacja_gHero']: Omit<GraphQLTypes["Shapeaplikacja_gHero"], "...on Shapeaplikacja_gHero">;
|
|
5264
5658
|
};
|
|
5265
5659
|
["Shapeaplikacja_gExplainer_video"]: {
|
|
5266
5660
|
__typename: "Shapeaplikacja_gExplainer_video";
|
|
5267
5661
|
title?: string | undefined | null;
|
|
5268
5662
|
description?: string | undefined | null;
|
|
5269
5663
|
video?: GraphQLTypes["VideoField"] | undefined | null;
|
|
5664
|
+
['...on Shapeaplikacja_gExplainer_video']: Omit<GraphQLTypes["Shapeaplikacja_gExplainer_video"], "...on Shapeaplikacja_gExplainer_video">;
|
|
5270
5665
|
};
|
|
5271
5666
|
["Shapeaplikacja_gVideo_list"]: {
|
|
5272
5667
|
__typename: "Shapeaplikacja_gVideo_list";
|
|
5273
5668
|
title?: string | undefined | null;
|
|
5274
5669
|
description?: string | undefined | null;
|
|
5275
5670
|
video?: GraphQLTypes["VideoField"] | undefined | null;
|
|
5671
|
+
['...on Shapeaplikacja_gVideo_list']: Omit<GraphQLTypes["Shapeaplikacja_gVideo_list"], "...on Shapeaplikacja_gVideo_list">;
|
|
5276
5672
|
};
|
|
5277
5673
|
["Shapeaplikacja_gStatsItems"]: {
|
|
5278
5674
|
__typename: "Shapeaplikacja_gStatsItems";
|
|
5279
5675
|
label?: string | undefined | null;
|
|
5280
5676
|
value?: number | undefined | null;
|
|
5677
|
+
['...on Shapeaplikacja_gStatsItems']: Omit<GraphQLTypes["Shapeaplikacja_gStatsItems"], "...on Shapeaplikacja_gStatsItems">;
|
|
5281
5678
|
};
|
|
5282
5679
|
["Shapeaplikacja_gStats"]: {
|
|
5283
5680
|
__typename: "Shapeaplikacja_gStats";
|
|
5284
5681
|
items?: Array<GraphQLTypes["Shapeaplikacja_gStatsItems"] | undefined | null> | undefined | null;
|
|
5682
|
+
['...on Shapeaplikacja_gStats']: Omit<GraphQLTypes["Shapeaplikacja_gStats"], "...on Shapeaplikacja_gStats">;
|
|
5285
5683
|
};
|
|
5286
5684
|
["Shapeaplikacja_gTestimonials"]: {
|
|
5287
5685
|
__typename: "Shapeaplikacja_gTestimonials";
|
|
5288
5686
|
name?: string | undefined | null;
|
|
5289
5687
|
text?: string | undefined | null;
|
|
5688
|
+
['...on Shapeaplikacja_gTestimonials']: Omit<GraphQLTypes["Shapeaplikacja_gTestimonials"], "...on Shapeaplikacja_gTestimonials">;
|
|
5290
5689
|
};
|
|
5291
5690
|
["Shapeaplikacja_gCall_to_action"]: {
|
|
5292
5691
|
__typename: "Shapeaplikacja_gCall_to_action";
|
|
5293
5692
|
heading?: string | undefined | null;
|
|
5294
5693
|
description?: string | undefined | null;
|
|
5295
5694
|
button_text?: string | undefined | null;
|
|
5695
|
+
['...on Shapeaplikacja_gCall_to_action']: Omit<GraphQLTypes["Shapeaplikacja_gCall_to_action"], "...on Shapeaplikacja_gCall_to_action">;
|
|
5296
5696
|
};
|
|
5297
5697
|
["Shapeaplikacja_gFooterLinks"]: {
|
|
5298
5698
|
__typename: "Shapeaplikacja_gFooterLinks";
|
|
5299
5699
|
label?: string | undefined | null;
|
|
5300
5700
|
href?: string | undefined | null;
|
|
5701
|
+
['...on Shapeaplikacja_gFooterLinks']: Omit<GraphQLTypes["Shapeaplikacja_gFooterLinks"], "...on Shapeaplikacja_gFooterLinks">;
|
|
5301
5702
|
};
|
|
5302
5703
|
["Shapeaplikacja_gFooter"]: {
|
|
5303
5704
|
__typename: "Shapeaplikacja_gFooter";
|
|
5304
5705
|
copyright?: string | undefined | null;
|
|
5305
5706
|
links?: Array<GraphQLTypes["Shapeaplikacja_gFooterLinks"] | undefined | null> | undefined | null;
|
|
5707
|
+
['...on Shapeaplikacja_gFooter']: Omit<GraphQLTypes["Shapeaplikacja_gFooter"], "...on Shapeaplikacja_gFooter">;
|
|
5306
5708
|
};
|
|
5307
5709
|
["Shapeaplikacja_g"]: {
|
|
5308
5710
|
__typename: "Shapeaplikacja_g";
|
|
@@ -5317,34 +5719,41 @@ export type GraphQLTypes = {
|
|
|
5317
5719
|
_id: string;
|
|
5318
5720
|
createdAt?: number | undefined | null;
|
|
5319
5721
|
updatedAt?: number | undefined | null;
|
|
5722
|
+
['...on Shapeaplikacja_g']: Omit<GraphQLTypes["Shapeaplikacja_g"], "...on Shapeaplikacja_g">;
|
|
5320
5723
|
};
|
|
5321
5724
|
["Shapecloud_sidebarSidebarMenuCategoryPage"]: {
|
|
5322
5725
|
__typename: "Shapecloud_sidebarSidebarMenuCategoryPage";
|
|
5323
5726
|
name?: string | undefined | null;
|
|
5324
5727
|
link?: string | undefined | null;
|
|
5728
|
+
['...on Shapecloud_sidebarSidebarMenuCategoryPage']: Omit<GraphQLTypes["Shapecloud_sidebarSidebarMenuCategoryPage"], "...on Shapecloud_sidebarSidebarMenuCategoryPage">;
|
|
5325
5729
|
};
|
|
5326
5730
|
["Shapecloud_sidebarSidebarMenuCategory"]: {
|
|
5327
5731
|
__typename: "Shapecloud_sidebarSidebarMenuCategory";
|
|
5328
5732
|
page?: Array<GraphQLTypes["Shapecloud_sidebarSidebarMenuCategoryPage"] | undefined | null> | undefined | null;
|
|
5733
|
+
['...on Shapecloud_sidebarSidebarMenuCategory']: Omit<GraphQLTypes["Shapecloud_sidebarSidebarMenuCategory"], "...on Shapecloud_sidebarSidebarMenuCategory">;
|
|
5329
5734
|
};
|
|
5330
5735
|
["Shapecloud_sidebarSidebarMenu"]: {
|
|
5331
5736
|
__typename: "Shapecloud_sidebarSidebarMenu";
|
|
5332
5737
|
logo?: GraphQLTypes["ImageField"] | undefined | null;
|
|
5333
5738
|
category?: Array<GraphQLTypes["Shapecloud_sidebarSidebarMenuCategory"] | undefined | null> | undefined | null;
|
|
5739
|
+
['...on Shapecloud_sidebarSidebarMenu']: Omit<GraphQLTypes["Shapecloud_sidebarSidebarMenu"], "...on Shapecloud_sidebarSidebarMenu">;
|
|
5334
5740
|
};
|
|
5335
5741
|
["Shapecloud_sidebarSidebarBottom_menuLogout"]: {
|
|
5336
5742
|
__typename: "Shapecloud_sidebarSidebarBottom_menuLogout";
|
|
5337
5743
|
name?: string | undefined | null;
|
|
5338
5744
|
link?: string | undefined | null;
|
|
5745
|
+
['...on Shapecloud_sidebarSidebarBottom_menuLogout']: Omit<GraphQLTypes["Shapecloud_sidebarSidebarBottom_menuLogout"], "...on Shapecloud_sidebarSidebarBottom_menuLogout">;
|
|
5339
5746
|
};
|
|
5340
5747
|
["Shapecloud_sidebarSidebarBottom_menu"]: {
|
|
5341
5748
|
__typename: "Shapecloud_sidebarSidebarBottom_menu";
|
|
5342
5749
|
logout?: GraphQLTypes["Shapecloud_sidebarSidebarBottom_menuLogout"] | undefined | null;
|
|
5750
|
+
['...on Shapecloud_sidebarSidebarBottom_menu']: Omit<GraphQLTypes["Shapecloud_sidebarSidebarBottom_menu"], "...on Shapecloud_sidebarSidebarBottom_menu">;
|
|
5343
5751
|
};
|
|
5344
5752
|
["Shapecloud_sidebarSidebar"]: {
|
|
5345
5753
|
__typename: "Shapecloud_sidebarSidebar";
|
|
5346
5754
|
menu?: GraphQLTypes["Shapecloud_sidebarSidebarMenu"] | undefined | null;
|
|
5347
5755
|
bottom_menu?: GraphQLTypes["Shapecloud_sidebarSidebarBottom_menu"] | undefined | null;
|
|
5756
|
+
['...on Shapecloud_sidebarSidebar']: Omit<GraphQLTypes["Shapecloud_sidebarSidebar"], "...on Shapecloud_sidebarSidebar">;
|
|
5348
5757
|
};
|
|
5349
5758
|
["Shapecloud_sidebar"]: {
|
|
5350
5759
|
__typename: "Shapecloud_sidebar";
|
|
@@ -5352,26 +5761,31 @@ export type GraphQLTypes = {
|
|
|
5352
5761
|
_id: string;
|
|
5353
5762
|
createdAt?: number | undefined | null;
|
|
5354
5763
|
updatedAt?: number | undefined | null;
|
|
5764
|
+
['...on Shapecloud_sidebar']: Omit<GraphQLTypes["Shapecloud_sidebar"], "...on Shapecloud_sidebar">;
|
|
5355
5765
|
};
|
|
5356
5766
|
["Shapecta_boomSectionContentCentered_contentBadge"]: {
|
|
5357
5767
|
__typename: "Shapecta_boomSectionContentCentered_contentBadge";
|
|
5358
5768
|
dot?: string | undefined | null;
|
|
5359
5769
|
badge_text?: string | undefined | null;
|
|
5770
|
+
['...on Shapecta_boomSectionContentCentered_contentBadge']: Omit<GraphQLTypes["Shapecta_boomSectionContentCentered_contentBadge"], "...on Shapecta_boomSectionContentCentered_contentBadge">;
|
|
5360
5771
|
};
|
|
5361
5772
|
["Shapecta_boomSectionContentCentered_contentCta_blockCta_primary"]: {
|
|
5362
5773
|
__typename: "Shapecta_boomSectionContentCentered_contentCta_blockCta_primary";
|
|
5363
5774
|
cta?: string | undefined | null;
|
|
5364
5775
|
href?: string | undefined | null;
|
|
5776
|
+
['...on Shapecta_boomSectionContentCentered_contentCta_blockCta_primary']: Omit<GraphQLTypes["Shapecta_boomSectionContentCentered_contentCta_blockCta_primary"], "...on Shapecta_boomSectionContentCentered_contentCta_blockCta_primary">;
|
|
5365
5777
|
};
|
|
5366
5778
|
["Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary"]: {
|
|
5367
5779
|
__typename: "Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary";
|
|
5368
5780
|
cta?: string | undefined | null;
|
|
5369
5781
|
href?: string | undefined | null;
|
|
5782
|
+
['...on Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary']: Omit<GraphQLTypes["Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary"], "...on Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary">;
|
|
5370
5783
|
};
|
|
5371
5784
|
["Shapecta_boomSectionContentCentered_contentCta_block"]: {
|
|
5372
5785
|
__typename: "Shapecta_boomSectionContentCentered_contentCta_block";
|
|
5373
5786
|
cta_primary?: GraphQLTypes["Shapecta_boomSectionContentCentered_contentCta_blockCta_primary"] | undefined | null;
|
|
5374
5787
|
cta_secondary?: GraphQLTypes["Shapecta_boomSectionContentCentered_contentCta_blockCta_secondary"] | undefined | null;
|
|
5788
|
+
['...on Shapecta_boomSectionContentCentered_contentCta_block']: Omit<GraphQLTypes["Shapecta_boomSectionContentCentered_contentCta_block"], "...on Shapecta_boomSectionContentCentered_contentCta_block">;
|
|
5375
5789
|
};
|
|
5376
5790
|
["Shapecta_boomSectionContentCentered_content"]: {
|
|
5377
5791
|
__typename: "Shapecta_boomSectionContentCentered_content";
|
|
@@ -5381,14 +5795,17 @@ export type GraphQLTypes = {
|
|
|
5381
5795
|
description?: string | undefined | null;
|
|
5382
5796
|
cta_block?: GraphQLTypes["Shapecta_boomSectionContentCentered_contentCta_block"] | undefined | null;
|
|
5383
5797
|
footer_note?: string | undefined | null;
|
|
5798
|
+
['...on Shapecta_boomSectionContentCentered_content']: Omit<GraphQLTypes["Shapecta_boomSectionContentCentered_content"], "...on Shapecta_boomSectionContentCentered_content">;
|
|
5384
5799
|
};
|
|
5385
5800
|
["Shapecta_boomSectionContent"]: {
|
|
5386
5801
|
__typename: "Shapecta_boomSectionContent";
|
|
5387
5802
|
centered_content?: GraphQLTypes["Shapecta_boomSectionContentCentered_content"] | undefined | null;
|
|
5803
|
+
['...on Shapecta_boomSectionContent']: Omit<GraphQLTypes["Shapecta_boomSectionContent"], "...on Shapecta_boomSectionContent">;
|
|
5388
5804
|
};
|
|
5389
5805
|
["Shapecta_boomSection"]: {
|
|
5390
5806
|
__typename: "Shapecta_boomSection";
|
|
5391
5807
|
content?: GraphQLTypes["Shapecta_boomSectionContent"] | undefined | null;
|
|
5808
|
+
['...on Shapecta_boomSection']: Omit<GraphQLTypes["Shapecta_boomSection"], "...on Shapecta_boomSection">;
|
|
5392
5809
|
};
|
|
5393
5810
|
["Shapecta_boom"]: {
|
|
5394
5811
|
__typename: "Shapecta_boom";
|
|
@@ -5396,6 +5813,7 @@ export type GraphQLTypes = {
|
|
|
5396
5813
|
_id: string;
|
|
5397
5814
|
createdAt?: number | undefined | null;
|
|
5398
5815
|
updatedAt?: number | undefined | null;
|
|
5816
|
+
['...on Shapecta_boom']: Omit<GraphQLTypes["Shapecta_boom"], "...on Shapecta_boom">;
|
|
5399
5817
|
};
|
|
5400
5818
|
["Shapectabutton"]: {
|
|
5401
5819
|
__typename: "Shapectabutton";
|
|
@@ -5403,28 +5821,34 @@ export type GraphQLTypes = {
|
|
|
5403
5821
|
_id: string;
|
|
5404
5822
|
createdAt?: number | undefined | null;
|
|
5405
5823
|
updatedAt?: number | undefined | null;
|
|
5824
|
+
['...on Shapectabutton']: Omit<GraphQLTypes["Shapectabutton"], "...on Shapectabutton">;
|
|
5406
5825
|
};
|
|
5407
5826
|
["Shapedocs_contentDocumentation_pageContent_containerDoc_content"]: {
|
|
5408
5827
|
__typename: "Shapedocs_contentDocumentation_pageContent_containerDoc_content";
|
|
5409
5828
|
content?: string | undefined | null;
|
|
5829
|
+
['...on Shapedocs_contentDocumentation_pageContent_containerDoc_content']: Omit<GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"], "...on Shapedocs_contentDocumentation_pageContent_containerDoc_content">;
|
|
5410
5830
|
};
|
|
5411
5831
|
["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"]: {
|
|
5412
5832
|
__typename: "Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container";
|
|
5413
5833
|
scrollspy_title?: string | undefined | null;
|
|
5414
5834
|
scrollspy_list?: string | undefined | null;
|
|
5835
|
+
['...on Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container']: Omit<GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"], "...on Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container">;
|
|
5415
5836
|
};
|
|
5416
5837
|
["Shapedocs_contentDocumentation_pageContent_containerScrollspy"]: {
|
|
5417
5838
|
__typename: "Shapedocs_contentDocumentation_pageContent_containerScrollspy";
|
|
5418
5839
|
scrollspy_container?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspyScrollspy_container"] | undefined | null;
|
|
5840
|
+
['...on Shapedocs_contentDocumentation_pageContent_containerScrollspy']: Omit<GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"], "...on Shapedocs_contentDocumentation_pageContent_containerScrollspy">;
|
|
5419
5841
|
};
|
|
5420
5842
|
["Shapedocs_contentDocumentation_pageContent_container"]: {
|
|
5421
5843
|
__typename: "Shapedocs_contentDocumentation_pageContent_container";
|
|
5422
5844
|
doc_content?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerDoc_content"] | undefined | null;
|
|
5423
5845
|
scrollspy?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_containerScrollspy"] | undefined | null;
|
|
5846
|
+
['...on Shapedocs_contentDocumentation_pageContent_container']: Omit<GraphQLTypes["Shapedocs_contentDocumentation_pageContent_container"], "...on Shapedocs_contentDocumentation_pageContent_container">;
|
|
5424
5847
|
};
|
|
5425
5848
|
["Shapedocs_contentDocumentation_page"]: {
|
|
5426
5849
|
__typename: "Shapedocs_contentDocumentation_page";
|
|
5427
5850
|
content_container?: GraphQLTypes["Shapedocs_contentDocumentation_pageContent_container"] | undefined | null;
|
|
5851
|
+
['...on Shapedocs_contentDocumentation_page']: Omit<GraphQLTypes["Shapedocs_contentDocumentation_page"], "...on Shapedocs_contentDocumentation_page">;
|
|
5428
5852
|
};
|
|
5429
5853
|
["Shapedocs_content"]: {
|
|
5430
5854
|
__typename: "Shapedocs_content";
|
|
@@ -5432,24 +5856,29 @@ export type GraphQLTypes = {
|
|
|
5432
5856
|
_id: string;
|
|
5433
5857
|
createdAt?: number | undefined | null;
|
|
5434
5858
|
updatedAt?: number | undefined | null;
|
|
5859
|
+
['...on Shapedocs_content']: Omit<GraphQLTypes["Shapedocs_content"], "...on Shapedocs_content">;
|
|
5435
5860
|
};
|
|
5436
5861
|
["Shapedocs_navMainListChildrenCategory"]: {
|
|
5437
5862
|
__typename: "Shapedocs_navMainListChildrenCategory";
|
|
5438
5863
|
name?: string | undefined | null;
|
|
5439
5864
|
link?: string | undefined | null;
|
|
5865
|
+
['...on Shapedocs_navMainListChildrenCategory']: Omit<GraphQLTypes["Shapedocs_navMainListChildrenCategory"], "...on Shapedocs_navMainListChildrenCategory">;
|
|
5440
5866
|
};
|
|
5441
5867
|
["Shapedocs_navMainListChildren"]: {
|
|
5442
5868
|
__typename: "Shapedocs_navMainListChildren";
|
|
5443
5869
|
category?: Array<GraphQLTypes["Shapedocs_navMainListChildrenCategory"] | undefined | null> | undefined | null;
|
|
5870
|
+
['...on Shapedocs_navMainListChildren']: Omit<GraphQLTypes["Shapedocs_navMainListChildren"], "...on Shapedocs_navMainListChildren">;
|
|
5444
5871
|
};
|
|
5445
5872
|
["Shapedocs_navMainList"]: {
|
|
5446
5873
|
__typename: "Shapedocs_navMainList";
|
|
5447
5874
|
title?: string | undefined | null;
|
|
5448
5875
|
children?: GraphQLTypes["Shapedocs_navMainListChildren"] | undefined | null;
|
|
5876
|
+
['...on Shapedocs_navMainList']: Omit<GraphQLTypes["Shapedocs_navMainList"], "...on Shapedocs_navMainList">;
|
|
5449
5877
|
};
|
|
5450
5878
|
["Shapedocs_navMain"]: {
|
|
5451
5879
|
__typename: "Shapedocs_navMain";
|
|
5452
5880
|
list?: Array<GraphQLTypes["Shapedocs_navMainList"] | undefined | null> | undefined | null;
|
|
5881
|
+
['...on Shapedocs_navMain']: Omit<GraphQLTypes["Shapedocs_navMain"], "...on Shapedocs_navMain">;
|
|
5453
5882
|
};
|
|
5454
5883
|
["Shapedocs_nav"]: {
|
|
5455
5884
|
__typename: "Shapedocs_nav";
|
|
@@ -5457,12 +5886,14 @@ export type GraphQLTypes = {
|
|
|
5457
5886
|
_id: string;
|
|
5458
5887
|
createdAt?: number | undefined | null;
|
|
5459
5888
|
updatedAt?: number | undefined | null;
|
|
5889
|
+
['...on Shapedocs_nav']: Omit<GraphQLTypes["Shapedocs_nav"], "...on Shapedocs_nav">;
|
|
5460
5890
|
};
|
|
5461
5891
|
["ShapefeaturepresentationMain"]: {
|
|
5462
5892
|
__typename: "ShapefeaturepresentationMain";
|
|
5463
5893
|
title?: string | undefined | null;
|
|
5464
5894
|
subtitle?: string | undefined | null;
|
|
5465
5895
|
content?: string | undefined | null;
|
|
5896
|
+
['...on ShapefeaturepresentationMain']: Omit<GraphQLTypes["ShapefeaturepresentationMain"], "...on ShapefeaturepresentationMain">;
|
|
5466
5897
|
};
|
|
5467
5898
|
["Shapefeaturepresentation"]: {
|
|
5468
5899
|
__typename: "Shapefeaturepresentation";
|
|
@@ -5470,22 +5901,33 @@ export type GraphQLTypes = {
|
|
|
5470
5901
|
_id: string;
|
|
5471
5902
|
createdAt?: number | undefined | null;
|
|
5472
5903
|
updatedAt?: number | undefined | null;
|
|
5904
|
+
['...on Shapefeaturepresentation']: Omit<GraphQLTypes["Shapefeaturepresentation"], "...on Shapefeaturepresentation">;
|
|
5905
|
+
};
|
|
5906
|
+
["Shapefeaturesv2"]: {
|
|
5907
|
+
__typename: "Shapefeaturesv2";
|
|
5908
|
+
_id: string;
|
|
5909
|
+
createdAt?: number | undefined | null;
|
|
5910
|
+
updatedAt?: number | undefined | null;
|
|
5911
|
+
['...on Shapefeaturesv2']: Omit<GraphQLTypes["Shapefeaturesv2"], "...on Shapefeaturesv2">;
|
|
5473
5912
|
};
|
|
5474
5913
|
["ShapefootFooterFooter_containerFooter_links"]: {
|
|
5475
5914
|
__typename: "ShapefootFooterFooter_containerFooter_links";
|
|
5476
5915
|
privacy_policy?: string | undefined | null;
|
|
5477
5916
|
terms_of_service?: string | undefined | null;
|
|
5478
5917
|
contact_us?: string | undefined | null;
|
|
5918
|
+
['...on ShapefootFooterFooter_containerFooter_links']: Omit<GraphQLTypes["ShapefootFooterFooter_containerFooter_links"], "...on ShapefootFooterFooter_containerFooter_links">;
|
|
5479
5919
|
};
|
|
5480
5920
|
["ShapefootFooterFooter_container"]: {
|
|
5481
5921
|
__typename: "ShapefootFooterFooter_container";
|
|
5482
5922
|
footer_logo?: string | undefined | null;
|
|
5483
5923
|
footer_links?: GraphQLTypes["ShapefootFooterFooter_containerFooter_links"] | undefined | null;
|
|
5484
5924
|
footer_copy?: string | undefined | null;
|
|
5925
|
+
['...on ShapefootFooterFooter_container']: Omit<GraphQLTypes["ShapefootFooterFooter_container"], "...on ShapefootFooterFooter_container">;
|
|
5485
5926
|
};
|
|
5486
5927
|
["ShapefootFooter"]: {
|
|
5487
5928
|
__typename: "ShapefootFooter";
|
|
5488
5929
|
footer_container?: GraphQLTypes["ShapefootFooterFooter_container"] | undefined | null;
|
|
5930
|
+
['...on ShapefootFooter']: Omit<GraphQLTypes["ShapefootFooter"], "...on ShapefootFooter">;
|
|
5489
5931
|
};
|
|
5490
5932
|
["Shapefoot"]: {
|
|
5491
5933
|
__typename: "Shapefoot";
|
|
@@ -5493,10 +5935,20 @@ export type GraphQLTypes = {
|
|
|
5493
5935
|
_id: string;
|
|
5494
5936
|
createdAt?: number | undefined | null;
|
|
5495
5937
|
updatedAt?: number | undefined | null;
|
|
5938
|
+
['...on Shapefoot']: Omit<GraphQLTypes["Shapefoot"], "...on Shapefoot">;
|
|
5939
|
+
};
|
|
5940
|
+
["Shapeheading"]: {
|
|
5941
|
+
__typename: "Shapeheading";
|
|
5942
|
+
text?: string | undefined | null;
|
|
5943
|
+
_id: string;
|
|
5944
|
+
createdAt?: number | undefined | null;
|
|
5945
|
+
updatedAt?: number | undefined | null;
|
|
5946
|
+
['...on Shapeheading']: Omit<GraphQLTypes["Shapeheading"], "...on Shapeheading">;
|
|
5496
5947
|
};
|
|
5497
5948
|
["ShapeheroHero_componentSlogan_parent"]: {
|
|
5498
5949
|
__typename: "ShapeheroHero_componentSlogan_parent";
|
|
5499
5950
|
slogan?: string | undefined | null;
|
|
5951
|
+
['...on ShapeheroHero_componentSlogan_parent']: Omit<GraphQLTypes["ShapeheroHero_componentSlogan_parent"], "...on ShapeheroHero_componentSlogan_parent">;
|
|
5500
5952
|
};
|
|
5501
5953
|
["ShapeheroHero_component"]: {
|
|
5502
5954
|
__typename: "ShapeheroHero_component";
|
|
@@ -5504,6 +5956,7 @@ export type GraphQLTypes = {
|
|
|
5504
5956
|
logo?: string | undefined | null;
|
|
5505
5957
|
slogan_parent?: GraphQLTypes["ShapeheroHero_componentSlogan_parent"] | undefined | null;
|
|
5506
5958
|
subslogan?: string | undefined | null;
|
|
5959
|
+
['...on ShapeheroHero_component']: Omit<GraphQLTypes["ShapeheroHero_component"], "...on ShapeheroHero_component">;
|
|
5507
5960
|
};
|
|
5508
5961
|
["Shapehero"]: {
|
|
5509
5962
|
__typename: "Shapehero";
|
|
@@ -5511,34 +5964,41 @@ export type GraphQLTypes = {
|
|
|
5511
5964
|
_id: string;
|
|
5512
5965
|
createdAt?: number | undefined | null;
|
|
5513
5966
|
updatedAt?: number | undefined | null;
|
|
5967
|
+
['...on Shapehero']: Omit<GraphQLTypes["Shapehero"], "...on Shapehero">;
|
|
5514
5968
|
};
|
|
5515
5969
|
["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"]: {
|
|
5516
5970
|
__typename: "ShapeheroxHero_sectionHero_containerText_wrapperFeatures";
|
|
5517
5971
|
feature?: Array<string | undefined | null> | undefined | null;
|
|
5972
|
+
['...on ShapeheroxHero_sectionHero_containerText_wrapperFeatures']: Omit<GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"], "...on ShapeheroxHero_sectionHero_containerText_wrapperFeatures">;
|
|
5518
5973
|
};
|
|
5519
5974
|
["ShapeheroxHero_sectionHero_containerText_wrapper"]: {
|
|
5520
5975
|
__typename: "ShapeheroxHero_sectionHero_containerText_wrapper";
|
|
5521
5976
|
title?: string | undefined | null;
|
|
5522
5977
|
description?: string | undefined | null;
|
|
5523
5978
|
features?: GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapperFeatures"] | undefined | null;
|
|
5979
|
+
['...on ShapeheroxHero_sectionHero_containerText_wrapper']: Omit<GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapper"], "...on ShapeheroxHero_sectionHero_containerText_wrapper">;
|
|
5524
5980
|
};
|
|
5525
5981
|
["ShapeheroxHero_sectionHero_containerImage_wrapper"]: {
|
|
5526
5982
|
__typename: "ShapeheroxHero_sectionHero_containerImage_wrapper";
|
|
5527
5983
|
hero_image?: GraphQLTypes["ImageField"] | undefined | null;
|
|
5984
|
+
['...on ShapeheroxHero_sectionHero_containerImage_wrapper']: Omit<GraphQLTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"], "...on ShapeheroxHero_sectionHero_containerImage_wrapper">;
|
|
5528
5985
|
};
|
|
5529
5986
|
["ShapeheroxHero_sectionHero_containerPresentation"]: {
|
|
5530
5987
|
__typename: "ShapeheroxHero_sectionHero_containerPresentation";
|
|
5531
5988
|
video?: GraphQLTypes["VideoField"] | undefined | null;
|
|
5989
|
+
['...on ShapeheroxHero_sectionHero_containerPresentation']: Omit<GraphQLTypes["ShapeheroxHero_sectionHero_containerPresentation"], "...on ShapeheroxHero_sectionHero_containerPresentation">;
|
|
5532
5990
|
};
|
|
5533
5991
|
["ShapeheroxHero_sectionHero_container"]: {
|
|
5534
5992
|
__typename: "ShapeheroxHero_sectionHero_container";
|
|
5535
5993
|
text_wrapper?: GraphQLTypes["ShapeheroxHero_sectionHero_containerText_wrapper"] | undefined | null;
|
|
5536
5994
|
image_wrapper?: GraphQLTypes["ShapeheroxHero_sectionHero_containerImage_wrapper"] | undefined | null;
|
|
5537
5995
|
presentation?: GraphQLTypes["ShapeheroxHero_sectionHero_containerPresentation"] | undefined | null;
|
|
5996
|
+
['...on ShapeheroxHero_sectionHero_container']: Omit<GraphQLTypes["ShapeheroxHero_sectionHero_container"], "...on ShapeheroxHero_sectionHero_container">;
|
|
5538
5997
|
};
|
|
5539
5998
|
["ShapeheroxHero_section"]: {
|
|
5540
5999
|
__typename: "ShapeheroxHero_section";
|
|
5541
6000
|
hero_container?: GraphQLTypes["ShapeheroxHero_sectionHero_container"] | undefined | null;
|
|
6001
|
+
['...on ShapeheroxHero_section']: Omit<GraphQLTypes["ShapeheroxHero_section"], "...on ShapeheroxHero_section">;
|
|
5542
6002
|
};
|
|
5543
6003
|
["Shapeherox"]: {
|
|
5544
6004
|
__typename: "Shapeherox";
|
|
@@ -5546,22 +6006,26 @@ export type GraphQLTypes = {
|
|
|
5546
6006
|
_id: string;
|
|
5547
6007
|
createdAt?: number | undefined | null;
|
|
5548
6008
|
updatedAt?: number | undefined | null;
|
|
6009
|
+
['...on Shapeherox']: Omit<GraphQLTypes["Shapeherox"], "...on Shapeherox">;
|
|
5549
6010
|
};
|
|
5550
6011
|
["Shapelista_projektowListProjectsInstance"]: {
|
|
5551
6012
|
__typename: "Shapelista_projektowListProjectsInstance";
|
|
5552
6013
|
title?: string | undefined | null;
|
|
5553
6014
|
link?: string | undefined | null;
|
|
5554
6015
|
remove_button?: string | undefined | null;
|
|
6016
|
+
['...on Shapelista_projektowListProjectsInstance']: Omit<GraphQLTypes["Shapelista_projektowListProjectsInstance"], "...on Shapelista_projektowListProjectsInstance">;
|
|
5555
6017
|
};
|
|
5556
6018
|
["Shapelista_projektowListProjects"]: {
|
|
5557
6019
|
__typename: "Shapelista_projektowListProjects";
|
|
5558
6020
|
instance?: Array<GraphQLTypes["Shapelista_projektowListProjectsInstance"] | undefined | null> | undefined | null;
|
|
6021
|
+
['...on Shapelista_projektowListProjects']: Omit<GraphQLTypes["Shapelista_projektowListProjects"], "...on Shapelista_projektowListProjects">;
|
|
5559
6022
|
};
|
|
5560
6023
|
["Shapelista_projektowList"]: {
|
|
5561
6024
|
__typename: "Shapelista_projektowList";
|
|
5562
6025
|
title?: string | undefined | null;
|
|
5563
6026
|
subtitle?: string | undefined | null;
|
|
5564
6027
|
projects?: GraphQLTypes["Shapelista_projektowListProjects"] | undefined | null;
|
|
6028
|
+
['...on Shapelista_projektowList']: Omit<GraphQLTypes["Shapelista_projektowList"], "...on Shapelista_projektowList">;
|
|
5565
6029
|
};
|
|
5566
6030
|
["Shapelista_projektow"]: {
|
|
5567
6031
|
__typename: "Shapelista_projektow";
|
|
@@ -5569,20 +6033,24 @@ export type GraphQLTypes = {
|
|
|
5569
6033
|
_id: string;
|
|
5570
6034
|
createdAt?: number | undefined | null;
|
|
5571
6035
|
updatedAt?: number | undefined | null;
|
|
6036
|
+
['...on Shapelista_projektow']: Omit<GraphQLTypes["Shapelista_projektow"], "...on Shapelista_projektow">;
|
|
5572
6037
|
};
|
|
5573
6038
|
["ShapenavNavigationNavigation_linksLink"]: {
|
|
5574
6039
|
__typename: "ShapenavNavigationNavigation_linksLink";
|
|
5575
6040
|
display?: string | undefined | null;
|
|
5576
6041
|
href?: string | undefined | null;
|
|
6042
|
+
['...on ShapenavNavigationNavigation_linksLink']: Omit<GraphQLTypes["ShapenavNavigationNavigation_linksLink"], "...on ShapenavNavigationNavigation_linksLink">;
|
|
5577
6043
|
};
|
|
5578
6044
|
["ShapenavNavigationNavigation_links"]: {
|
|
5579
6045
|
__typename: "ShapenavNavigationNavigation_links";
|
|
5580
6046
|
link?: Array<GraphQLTypes["ShapenavNavigationNavigation_linksLink"] | undefined | null> | undefined | null;
|
|
6047
|
+
['...on ShapenavNavigationNavigation_links']: Omit<GraphQLTypes["ShapenavNavigationNavigation_links"], "...on ShapenavNavigationNavigation_links">;
|
|
5581
6048
|
};
|
|
5582
6049
|
["ShapenavNavigation"]: {
|
|
5583
6050
|
__typename: "ShapenavNavigation";
|
|
5584
6051
|
logo?: string | undefined | null;
|
|
5585
6052
|
navigation_links?: GraphQLTypes["ShapenavNavigationNavigation_links"] | undefined | null;
|
|
6053
|
+
['...on ShapenavNavigation']: Omit<GraphQLTypes["ShapenavNavigation"], "...on ShapenavNavigation">;
|
|
5586
6054
|
};
|
|
5587
6055
|
["Shapenav"]: {
|
|
5588
6056
|
__typename: "Shapenav";
|
|
@@ -5590,6 +6058,7 @@ export type GraphQLTypes = {
|
|
|
5590
6058
|
_id: string;
|
|
5591
6059
|
createdAt?: number | undefined | null;
|
|
5592
6060
|
updatedAt?: number | undefined | null;
|
|
6061
|
+
['...on Shapenav']: Omit<GraphQLTypes["Shapenav"], "...on Shapenav">;
|
|
5593
6062
|
};
|
|
5594
6063
|
["ShapenewshapeBackgroundContent"]: {
|
|
5595
6064
|
__typename: "ShapenewshapeBackgroundContent";
|
|
@@ -5598,12 +6067,14 @@ export type GraphQLTypes = {
|
|
|
5598
6067
|
subheadline?: string | undefined | null;
|
|
5599
6068
|
cta_label?: string | undefined | null;
|
|
5600
6069
|
cta_href?: string | undefined | null;
|
|
6070
|
+
['...on ShapenewshapeBackgroundContent']: Omit<GraphQLTypes["ShapenewshapeBackgroundContent"], "...on ShapenewshapeBackgroundContent">;
|
|
5601
6071
|
};
|
|
5602
6072
|
["ShapenewshapeBackground"]: {
|
|
5603
6073
|
__typename: "ShapenewshapeBackground";
|
|
5604
6074
|
overlay_gradient?: boolean | undefined | null;
|
|
5605
6075
|
content?: GraphQLTypes["ShapenewshapeBackgroundContent"] | undefined | null;
|
|
5606
6076
|
hero_image?: GraphQLTypes["ImageField"] | undefined | null;
|
|
6077
|
+
['...on ShapenewshapeBackground']: Omit<GraphQLTypes["ShapenewshapeBackground"], "...on ShapenewshapeBackground">;
|
|
5607
6078
|
};
|
|
5608
6079
|
["Shapenewshape"]: {
|
|
5609
6080
|
__typename: "Shapenewshape";
|
|
@@ -5611,49 +6082,18 @@ export type GraphQLTypes = {
|
|
|
5611
6082
|
_id: string;
|
|
5612
6083
|
createdAt?: number | undefined | null;
|
|
5613
6084
|
updatedAt?: number | undefined | null;
|
|
5614
|
-
|
|
5615
|
-
["Shapepricing_tablePricing_sectionHeader_wrapper"]: {
|
|
5616
|
-
__typename: "Shapepricing_tablePricing_sectionHeader_wrapper";
|
|
5617
|
-
title?: string | undefined | null;
|
|
5618
|
-
description?: string | undefined | null;
|
|
5619
|
-
};
|
|
5620
|
-
["Shapepricing_tablePricing_sectionPricing_tableTable_head"]: {
|
|
5621
|
-
__typename: "Shapepricing_tablePricing_sectionPricing_tableTable_head";
|
|
5622
|
-
feature?: string | undefined | null;
|
|
5623
|
-
unit?: string | undefined | null;
|
|
5624
|
-
price?: string | undefined | null;
|
|
5625
|
-
};
|
|
5626
|
-
["Shapepricing_tablePricing_sectionPricing_tableRows"]: {
|
|
5627
|
-
__typename: "Shapepricing_tablePricing_sectionPricing_tableRows";
|
|
5628
|
-
feature?: string | undefined | null;
|
|
5629
|
-
unit?: string | undefined | null;
|
|
5630
|
-
price?: string | undefined | null;
|
|
5631
|
-
};
|
|
5632
|
-
["Shapepricing_tablePricing_sectionPricing_table"]: {
|
|
5633
|
-
__typename: "Shapepricing_tablePricing_sectionPricing_table";
|
|
5634
|
-
table_head?: GraphQLTypes["Shapepricing_tablePricing_sectionPricing_tableTable_head"] | undefined | null;
|
|
5635
|
-
rows?: Array<GraphQLTypes["Shapepricing_tablePricing_sectionPricing_tableRows"] | undefined | null> | undefined | null;
|
|
5636
|
-
};
|
|
5637
|
-
["Shapepricing_tablePricing_section"]: {
|
|
5638
|
-
__typename: "Shapepricing_tablePricing_section";
|
|
5639
|
-
header_wrapper?: GraphQLTypes["Shapepricing_tablePricing_sectionHeader_wrapper"] | undefined | null;
|
|
5640
|
-
pricing_table?: GraphQLTypes["Shapepricing_tablePricing_sectionPricing_table"] | undefined | null;
|
|
5641
|
-
};
|
|
5642
|
-
["Shapepricing_table"]: {
|
|
5643
|
-
__typename: "Shapepricing_table";
|
|
5644
|
-
pricing_section?: GraphQLTypes["Shapepricing_tablePricing_section"] | undefined | null;
|
|
5645
|
-
_id: string;
|
|
5646
|
-
createdAt?: number | undefined | null;
|
|
5647
|
-
updatedAt?: number | undefined | null;
|
|
6085
|
+
['...on Shapenewshape']: Omit<GraphQLTypes["Shapenewshape"], "...on Shapenewshape">;
|
|
5648
6086
|
};
|
|
5649
6087
|
["Shapepricingv1Pricing_sectionHeader_wrapper"]: {
|
|
5650
6088
|
__typename: "Shapepricingv1Pricing_sectionHeader_wrapper";
|
|
5651
6089
|
title?: string | undefined | null;
|
|
5652
6090
|
description?: string | undefined | null;
|
|
6091
|
+
['...on Shapepricingv1Pricing_sectionHeader_wrapper']: Omit<GraphQLTypes["Shapepricingv1Pricing_sectionHeader_wrapper"], "...on Shapepricingv1Pricing_sectionHeader_wrapper">;
|
|
5653
6092
|
};
|
|
5654
6093
|
["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"]: {
|
|
5655
6094
|
__typename: "Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list";
|
|
5656
6095
|
feature?: Array<string | undefined | null> | undefined | null;
|
|
6096
|
+
['...on Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list']: Omit<GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"], "...on Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list">;
|
|
5657
6097
|
};
|
|
5658
6098
|
["Shapepricingv1Pricing_sectionPlans_gridFree_plan"]: {
|
|
5659
6099
|
__typename: "Shapepricingv1Pricing_sectionPlans_gridFree_plan";
|
|
@@ -5662,10 +6102,12 @@ export type GraphQLTypes = {
|
|
|
5662
6102
|
plan_description?: string | undefined | null;
|
|
5663
6103
|
feature_list?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridFree_planFeature_list"] | undefined | null;
|
|
5664
6104
|
cta?: GraphQLTypes["Shapesecondary_cta"] | undefined | null;
|
|
6105
|
+
['...on Shapepricingv1Pricing_sectionPlans_gridFree_plan']: Omit<GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"], "...on Shapepricingv1Pricing_sectionPlans_gridFree_plan">;
|
|
5665
6106
|
};
|
|
5666
6107
|
["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"]: {
|
|
5667
6108
|
__typename: "Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list";
|
|
5668
6109
|
feature?: Array<string | undefined | null> | undefined | null;
|
|
6110
|
+
['...on Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list']: Omit<GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"], "...on Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list">;
|
|
5669
6111
|
};
|
|
5670
6112
|
["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"]: {
|
|
5671
6113
|
__typename: "Shapepricingv1Pricing_sectionPlans_gridPaid_plan";
|
|
@@ -5674,16 +6116,19 @@ export type GraphQLTypes = {
|
|
|
5674
6116
|
plan_description?: string | undefined | null;
|
|
5675
6117
|
feature_list?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_planFeature_list"] | undefined | null;
|
|
5676
6118
|
cta?: GraphQLTypes["Shapectabutton"] | undefined | null;
|
|
6119
|
+
['...on Shapepricingv1Pricing_sectionPlans_gridPaid_plan']: Omit<GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"], "...on Shapepricingv1Pricing_sectionPlans_gridPaid_plan">;
|
|
5677
6120
|
};
|
|
5678
6121
|
["Shapepricingv1Pricing_sectionPlans_grid"]: {
|
|
5679
6122
|
__typename: "Shapepricingv1Pricing_sectionPlans_grid";
|
|
5680
6123
|
free_plan?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridFree_plan"] | undefined | null;
|
|
5681
6124
|
paid_plan?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_gridPaid_plan"] | undefined | null;
|
|
6125
|
+
['...on Shapepricingv1Pricing_sectionPlans_grid']: Omit<GraphQLTypes["Shapepricingv1Pricing_sectionPlans_grid"], "...on Shapepricingv1Pricing_sectionPlans_grid">;
|
|
5682
6126
|
};
|
|
5683
6127
|
["Shapepricingv1Pricing_section"]: {
|
|
5684
6128
|
__typename: "Shapepricingv1Pricing_section";
|
|
5685
6129
|
header_wrapper?: GraphQLTypes["Shapepricingv1Pricing_sectionHeader_wrapper"] | undefined | null;
|
|
5686
6130
|
plans_grid?: GraphQLTypes["Shapepricingv1Pricing_sectionPlans_grid"] | undefined | null;
|
|
6131
|
+
['...on Shapepricingv1Pricing_section']: Omit<GraphQLTypes["Shapepricingv1Pricing_section"], "...on Shapepricingv1Pricing_section">;
|
|
5687
6132
|
};
|
|
5688
6133
|
["Shapepricingv1"]: {
|
|
5689
6134
|
__typename: "Shapepricingv1";
|
|
@@ -5691,48 +6136,110 @@ export type GraphQLTypes = {
|
|
|
5691
6136
|
_id: string;
|
|
5692
6137
|
createdAt?: number | undefined | null;
|
|
5693
6138
|
updatedAt?: number | undefined | null;
|
|
6139
|
+
['...on Shapepricingv1']: Omit<GraphQLTypes["Shapepricingv1"], "...on Shapepricingv1">;
|
|
6140
|
+
};
|
|
6141
|
+
["Shapepricingv2MainPlans_gridFree_planPlan_footer"]: {
|
|
6142
|
+
__typename: "Shapepricingv2MainPlans_gridFree_planPlan_footer";
|
|
6143
|
+
price?: string | undefined | null;
|
|
6144
|
+
cta?: string | undefined | null;
|
|
6145
|
+
['...on Shapepricingv2MainPlans_gridFree_planPlan_footer']: Omit<GraphQLTypes["Shapepricingv2MainPlans_gridFree_planPlan_footer"], "...on Shapepricingv2MainPlans_gridFree_planPlan_footer">;
|
|
6146
|
+
};
|
|
6147
|
+
["Shapepricingv2MainPlans_gridFree_plan"]: {
|
|
6148
|
+
__typename: "Shapepricingv2MainPlans_gridFree_plan";
|
|
6149
|
+
subtitle?: string | undefined | null;
|
|
6150
|
+
description?: string | undefined | null;
|
|
6151
|
+
features?: Array<string | undefined | null> | undefined | null;
|
|
6152
|
+
plan_footer?: GraphQLTypes["Shapepricingv2MainPlans_gridFree_planPlan_footer"] | undefined | null;
|
|
6153
|
+
['...on Shapepricingv2MainPlans_gridFree_plan']: Omit<GraphQLTypes["Shapepricingv2MainPlans_gridFree_plan"], "...on Shapepricingv2MainPlans_gridFree_plan">;
|
|
6154
|
+
};
|
|
6155
|
+
["Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock"]: {
|
|
6156
|
+
__typename: "Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock";
|
|
6157
|
+
price?: string | undefined | null;
|
|
6158
|
+
price_period?: string | undefined | null;
|
|
6159
|
+
['...on Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock']: Omit<GraphQLTypes["Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock"], "...on Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock">;
|
|
6160
|
+
};
|
|
6161
|
+
["Shapepricingv2MainPlans_gridPro_planPlan_footer"]: {
|
|
6162
|
+
__typename: "Shapepricingv2MainPlans_gridPro_planPlan_footer";
|
|
6163
|
+
priceblock?: GraphQLTypes["Shapepricingv2MainPlans_gridPro_planPlan_footerPriceblock"] | undefined | null;
|
|
6164
|
+
cta?: string | undefined | null;
|
|
6165
|
+
['...on Shapepricingv2MainPlans_gridPro_planPlan_footer']: Omit<GraphQLTypes["Shapepricingv2MainPlans_gridPro_planPlan_footer"], "...on Shapepricingv2MainPlans_gridPro_planPlan_footer">;
|
|
6166
|
+
};
|
|
6167
|
+
["Shapepricingv2MainPlans_gridPro_plan"]: {
|
|
6168
|
+
__typename: "Shapepricingv2MainPlans_gridPro_plan";
|
|
6169
|
+
subtitle?: string | undefined | null;
|
|
6170
|
+
description?: string | undefined | null;
|
|
6171
|
+
features?: Array<string | undefined | null> | undefined | null;
|
|
6172
|
+
plan_footer?: GraphQLTypes["Shapepricingv2MainPlans_gridPro_planPlan_footer"] | undefined | null;
|
|
6173
|
+
['...on Shapepricingv2MainPlans_gridPro_plan']: Omit<GraphQLTypes["Shapepricingv2MainPlans_gridPro_plan"], "...on Shapepricingv2MainPlans_gridPro_plan">;
|
|
6174
|
+
};
|
|
6175
|
+
["Shapepricingv2MainPlans_grid"]: {
|
|
6176
|
+
__typename: "Shapepricingv2MainPlans_grid";
|
|
6177
|
+
free_plan?: GraphQLTypes["Shapepricingv2MainPlans_gridFree_plan"] | undefined | null;
|
|
6178
|
+
pro_plan?: GraphQLTypes["Shapepricingv2MainPlans_gridPro_plan"] | undefined | null;
|
|
6179
|
+
['...on Shapepricingv2MainPlans_grid']: Omit<GraphQLTypes["Shapepricingv2MainPlans_grid"], "...on Shapepricingv2MainPlans_grid">;
|
|
6180
|
+
};
|
|
6181
|
+
["Shapepricingv2Main"]: {
|
|
6182
|
+
__typename: "Shapepricingv2Main";
|
|
6183
|
+
plans_grid?: GraphQLTypes["Shapepricingv2MainPlans_grid"] | undefined | null;
|
|
6184
|
+
['...on Shapepricingv2Main']: Omit<GraphQLTypes["Shapepricingv2Main"], "...on Shapepricingv2Main">;
|
|
6185
|
+
};
|
|
6186
|
+
["Shapepricingv2"]: {
|
|
6187
|
+
__typename: "Shapepricingv2";
|
|
6188
|
+
main?: GraphQLTypes["Shapepricingv2Main"] | undefined | null;
|
|
6189
|
+
_id: string;
|
|
6190
|
+
createdAt?: number | undefined | null;
|
|
6191
|
+
updatedAt?: number | undefined | null;
|
|
6192
|
+
['...on Shapepricingv2']: Omit<GraphQLTypes["Shapepricingv2"], "...on Shapepricingv2">;
|
|
5694
6193
|
};
|
|
5695
6194
|
["Shapeprofile_infoProfile_sectionAccount_headerInfo"]: {
|
|
5696
6195
|
__typename: "Shapeprofile_infoProfile_sectionAccount_headerInfo";
|
|
5697
6196
|
full_name?: string | undefined | null;
|
|
5698
6197
|
company?: string | undefined | null;
|
|
5699
6198
|
email?: string | undefined | null;
|
|
6199
|
+
['...on Shapeprofile_infoProfile_sectionAccount_headerInfo']: Omit<GraphQLTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"], "...on Shapeprofile_infoProfile_sectionAccount_headerInfo">;
|
|
5700
6200
|
};
|
|
5701
6201
|
["Shapeprofile_infoProfile_sectionAccount_header"]: {
|
|
5702
6202
|
__typename: "Shapeprofile_infoProfile_sectionAccount_header";
|
|
5703
6203
|
avatar?: GraphQLTypes["ImageField"] | undefined | null;
|
|
5704
6204
|
info?: GraphQLTypes["Shapeprofile_infoProfile_sectionAccount_headerInfo"] | undefined | null;
|
|
6205
|
+
['...on Shapeprofile_infoProfile_sectionAccount_header']: Omit<GraphQLTypes["Shapeprofile_infoProfile_sectionAccount_header"], "...on Shapeprofile_infoProfile_sectionAccount_header">;
|
|
5705
6206
|
};
|
|
5706
6207
|
["Shapeprofile_infoProfile_sectionPlan_status"]: {
|
|
5707
6208
|
__typename: "Shapeprofile_infoProfile_sectionPlan_status";
|
|
5708
6209
|
plan?: string | undefined | null;
|
|
6210
|
+
['...on Shapeprofile_infoProfile_sectionPlan_status']: Omit<GraphQLTypes["Shapeprofile_infoProfile_sectionPlan_status"], "...on Shapeprofile_infoProfile_sectionPlan_status">;
|
|
5709
6211
|
};
|
|
5710
6212
|
["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"]: {
|
|
5711
6213
|
__typename: "Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens";
|
|
5712
6214
|
label?: string | undefined | null;
|
|
5713
6215
|
value?: string | undefined | null;
|
|
6216
|
+
['...on Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens']: Omit<GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"], "...on Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens">;
|
|
5714
6217
|
};
|
|
5715
6218
|
["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"]: {
|
|
5716
6219
|
__typename: "Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens";
|
|
5717
6220
|
label?: string | undefined | null;
|
|
5718
6221
|
value?: string | undefined | null;
|
|
6222
|
+
['...on Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens']: Omit<GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"], "...on Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens">;
|
|
5719
6223
|
};
|
|
5720
6224
|
["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"]: {
|
|
5721
6225
|
__typename: "Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests";
|
|
5722
6226
|
label?: string | undefined | null;
|
|
5723
6227
|
value?: string | undefined | null;
|
|
6228
|
+
['...on Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests']: Omit<GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"], "...on Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests">;
|
|
5724
6229
|
};
|
|
5725
6230
|
["Shapeprofile_infoProfile_sectionUsage_section"]: {
|
|
5726
6231
|
__typename: "Shapeprofile_infoProfile_sectionUsage_section";
|
|
5727
6232
|
ai_tokens?: GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_sectionAi_tokens"] | undefined | null;
|
|
5728
6233
|
translate_tokens?: GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_sectionTranslate_tokens"] | undefined | null;
|
|
5729
6234
|
monthly_api_requests?: GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_sectionMonthly_api_requests"] | undefined | null;
|
|
6235
|
+
['...on Shapeprofile_infoProfile_sectionUsage_section']: Omit<GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_section"], "...on Shapeprofile_infoProfile_sectionUsage_section">;
|
|
5730
6236
|
};
|
|
5731
6237
|
["Shapeprofile_infoProfile_section"]: {
|
|
5732
6238
|
__typename: "Shapeprofile_infoProfile_section";
|
|
5733
6239
|
account_header?: GraphQLTypes["Shapeprofile_infoProfile_sectionAccount_header"] | undefined | null;
|
|
5734
6240
|
plan_status?: GraphQLTypes["Shapeprofile_infoProfile_sectionPlan_status"] | undefined | null;
|
|
5735
6241
|
usage_section?: GraphQLTypes["Shapeprofile_infoProfile_sectionUsage_section"] | undefined | null;
|
|
6242
|
+
['...on Shapeprofile_infoProfile_section']: Omit<GraphQLTypes["Shapeprofile_infoProfile_section"], "...on Shapeprofile_infoProfile_section">;
|
|
5736
6243
|
};
|
|
5737
6244
|
["Shapeprofile_info"]: {
|
|
5738
6245
|
__typename: "Shapeprofile_info";
|
|
@@ -5740,6 +6247,7 @@ export type GraphQLTypes = {
|
|
|
5740
6247
|
_id: string;
|
|
5741
6248
|
createdAt?: number | undefined | null;
|
|
5742
6249
|
updatedAt?: number | undefined | null;
|
|
6250
|
+
['...on Shapeprofile_info']: Omit<GraphQLTypes["Shapeprofile_info"], "...on Shapeprofile_info">;
|
|
5743
6251
|
};
|
|
5744
6252
|
["Shapesecondary_cta"]: {
|
|
5745
6253
|
__typename: "Shapesecondary_cta";
|
|
@@ -5747,11 +6255,21 @@ export type GraphQLTypes = {
|
|
|
5747
6255
|
_id: string;
|
|
5748
6256
|
createdAt?: number | undefined | null;
|
|
5749
6257
|
updatedAt?: number | undefined | null;
|
|
6258
|
+
['...on Shapesecondary_cta']: Omit<GraphQLTypes["Shapesecondary_cta"], "...on Shapesecondary_cta">;
|
|
6259
|
+
};
|
|
6260
|
+
["Shapesubheading"]: {
|
|
6261
|
+
__typename: "Shapesubheading";
|
|
6262
|
+
text?: string | undefined | null;
|
|
6263
|
+
_id: string;
|
|
6264
|
+
createdAt?: number | undefined | null;
|
|
6265
|
+
updatedAt?: number | undefined | null;
|
|
6266
|
+
['...on Shapesubheading']: Omit<GraphQLTypes["Shapesubheading"], "...on Shapesubheading">;
|
|
5750
6267
|
};
|
|
5751
6268
|
["ShapesupportSectionHeader_wrapper"]: {
|
|
5752
6269
|
__typename: "ShapesupportSectionHeader_wrapper";
|
|
5753
6270
|
title?: string | undefined | null;
|
|
5754
6271
|
description?: string | undefined | null;
|
|
6272
|
+
['...on ShapesupportSectionHeader_wrapper']: Omit<GraphQLTypes["ShapesupportSectionHeader_wrapper"], "...on ShapesupportSectionHeader_wrapper">;
|
|
5755
6273
|
};
|
|
5756
6274
|
["ShapesupportSectionFeatures_gridFeature_item"]: {
|
|
5757
6275
|
__typename: "ShapesupportSectionFeatures_gridFeature_item";
|
|
@@ -5759,15 +6277,18 @@ export type GraphQLTypes = {
|
|
|
5759
6277
|
title?: string | undefined | null;
|
|
5760
6278
|
text?: string | undefined | null;
|
|
5761
6279
|
cta?: string | undefined | null;
|
|
6280
|
+
['...on ShapesupportSectionFeatures_gridFeature_item']: Omit<GraphQLTypes["ShapesupportSectionFeatures_gridFeature_item"], "...on ShapesupportSectionFeatures_gridFeature_item">;
|
|
5762
6281
|
};
|
|
5763
6282
|
["ShapesupportSectionFeatures_grid"]: {
|
|
5764
6283
|
__typename: "ShapesupportSectionFeatures_grid";
|
|
5765
6284
|
feature_item?: Array<GraphQLTypes["ShapesupportSectionFeatures_gridFeature_item"] | undefined | null> | undefined | null;
|
|
6285
|
+
['...on ShapesupportSectionFeatures_grid']: Omit<GraphQLTypes["ShapesupportSectionFeatures_grid"], "...on ShapesupportSectionFeatures_grid">;
|
|
5766
6286
|
};
|
|
5767
6287
|
["ShapesupportSection"]: {
|
|
5768
6288
|
__typename: "ShapesupportSection";
|
|
5769
6289
|
header_wrapper?: GraphQLTypes["ShapesupportSectionHeader_wrapper"] | undefined | null;
|
|
5770
6290
|
features_grid?: GraphQLTypes["ShapesupportSectionFeatures_grid"] | undefined | null;
|
|
6291
|
+
['...on ShapesupportSection']: Omit<GraphQLTypes["ShapesupportSection"], "...on ShapesupportSection">;
|
|
5771
6292
|
};
|
|
5772
6293
|
["Shapesupport"]: {
|
|
5773
6294
|
__typename: "Shapesupport";
|
|
@@ -5775,11 +6296,13 @@ export type GraphQLTypes = {
|
|
|
5775
6296
|
_id: string;
|
|
5776
6297
|
createdAt?: number | undefined | null;
|
|
5777
6298
|
updatedAt?: number | undefined | null;
|
|
6299
|
+
['...on Shapesupport']: Omit<GraphQLTypes["Shapesupport"], "...on Shapesupport">;
|
|
5778
6300
|
};
|
|
5779
6301
|
["Shapetitle_descTitledesc"]: {
|
|
5780
6302
|
__typename: "Shapetitle_descTitledesc";
|
|
5781
6303
|
title?: string | undefined | null;
|
|
5782
6304
|
description?: string | undefined | null;
|
|
6305
|
+
['...on Shapetitle_descTitledesc']: Omit<GraphQLTypes["Shapetitle_descTitledesc"], "...on Shapetitle_descTitledesc">;
|
|
5783
6306
|
};
|
|
5784
6307
|
["Shapetitle_desc"]: {
|
|
5785
6308
|
__typename: "Shapetitle_desc";
|
|
@@ -5787,6 +6310,7 @@ export type GraphQLTypes = {
|
|
|
5787
6310
|
_id: string;
|
|
5788
6311
|
createdAt?: number | undefined | null;
|
|
5789
6312
|
updatedAt?: number | undefined | null;
|
|
6313
|
+
['...on Shapetitle_desc']: Omit<GraphQLTypes["Shapetitle_desc"], "...on Shapetitle_desc">;
|
|
5790
6314
|
};
|
|
5791
6315
|
["ShapeusageMain"]: {
|
|
5792
6316
|
__typename: "ShapeusageMain";
|
|
@@ -5794,6 +6318,7 @@ export type GraphQLTypes = {
|
|
|
5794
6318
|
subtitle?: string | undefined | null;
|
|
5795
6319
|
period?: string | undefined | null;
|
|
5796
6320
|
tokens_consumed?: number | undefined | null;
|
|
6321
|
+
['...on ShapeusageMain']: Omit<GraphQLTypes["ShapeusageMain"], "...on ShapeusageMain">;
|
|
5797
6322
|
};
|
|
5798
6323
|
["Shapeusage"]: {
|
|
5799
6324
|
__typename: "Shapeusage";
|
|
@@ -5801,6 +6326,7 @@ export type GraphQLTypes = {
|
|
|
5801
6326
|
_id: string;
|
|
5802
6327
|
createdAt?: number | undefined | null;
|
|
5803
6328
|
updatedAt?: number | undefined | null;
|
|
6329
|
+
['...on Shapeusage']: Omit<GraphQLTypes["Shapeusage"], "...on Shapeusage">;
|
|
5804
6330
|
};
|
|
5805
6331
|
["FormregisterRegistration_stepUser_details"]: {
|
|
5806
6332
|
__typename: "FormregisterRegistration_stepUser_details";
|
|
@@ -5809,12 +6335,14 @@ export type GraphQLTypes = {
|
|
|
5809
6335
|
password?: GraphQLTypes["FormTextField"] | undefined | null;
|
|
5810
6336
|
full_name?: GraphQLTypes["FormTextField"] | undefined | null;
|
|
5811
6337
|
phone?: GraphQLTypes["FormTextField"] | undefined | null;
|
|
6338
|
+
['...on FormregisterRegistration_stepUser_details']: Omit<GraphQLTypes["FormregisterRegistration_stepUser_details"], "...on FormregisterRegistration_stepUser_details">;
|
|
5812
6339
|
};
|
|
5813
6340
|
["FormregisterRegistration_step"]: {
|
|
5814
6341
|
__typename: "FormregisterRegistration_step";
|
|
5815
6342
|
_mocks?: string | undefined | null;
|
|
5816
6343
|
user_details?: GraphQLTypes["FormregisterRegistration_stepUser_details"] | undefined | null;
|
|
5817
6344
|
submit?: GraphQLTypes["FormSubmitField"] | undefined | null;
|
|
6345
|
+
['...on FormregisterRegistration_step']: Omit<GraphQLTypes["FormregisterRegistration_step"], "...on FormregisterRegistration_step">;
|
|
5818
6346
|
};
|
|
5819
6347
|
["Formregister"]: {
|
|
5820
6348
|
__typename: "Formregister";
|
|
@@ -5830,6 +6358,7 @@ export type GraphQLTypes = {
|
|
|
5830
6358
|
updatedAt?: string | undefined | null;
|
|
5831
6359
|
draft_version?: string | undefined | null;
|
|
5832
6360
|
json_ld?: string | undefined | null;
|
|
6361
|
+
['...on Formregister']: Omit<GraphQLTypes["Formregister"], "...on Formregister">;
|
|
5833
6362
|
};
|
|
5834
6363
|
["FormtestStep_basic_infoBasic_info_group"]: {
|
|
5835
6364
|
__typename: "FormtestStep_basic_infoBasic_info_group";
|
|
@@ -5837,12 +6366,14 @@ export type GraphQLTypes = {
|
|
|
5837
6366
|
window_type?: GraphQLTypes["FormRadioTextField"] | undefined | null;
|
|
5838
6367
|
quantity?: GraphQLTypes["FormTextField"] | undefined | null;
|
|
5839
6368
|
location?: GraphQLTypes["FormRadioTextField"] | undefined | null;
|
|
6369
|
+
['...on FormtestStep_basic_infoBasic_info_group']: Omit<GraphQLTypes["FormtestStep_basic_infoBasic_info_group"], "...on FormtestStep_basic_infoBasic_info_group">;
|
|
5840
6370
|
};
|
|
5841
6371
|
["FormtestStep_basic_info"]: {
|
|
5842
6372
|
__typename: "FormtestStep_basic_info";
|
|
5843
6373
|
_mocks?: string | undefined | null;
|
|
5844
6374
|
basic_info_group?: GraphQLTypes["FormtestStep_basic_infoBasic_info_group"] | undefined | null;
|
|
5845
6375
|
basic_next?: GraphQLTypes["FormButtonField"] | undefined | null;
|
|
6376
|
+
['...on FormtestStep_basic_info']: Omit<GraphQLTypes["FormtestStep_basic_info"], "...on FormtestStep_basic_info">;
|
|
5846
6377
|
};
|
|
5847
6378
|
["FormtestStep_dimensionsDimensions_group"]: {
|
|
5848
6379
|
__typename: "FormtestStep_dimensionsDimensions_group";
|
|
@@ -5852,6 +6383,7 @@ export type GraphQLTypes = {
|
|
|
5852
6383
|
depth_mm?: GraphQLTypes["FormTextField"] | undefined | null;
|
|
5853
6384
|
opening_direction?: GraphQLTypes["FormRadioTextField"] | undefined | null;
|
|
5854
6385
|
sash_count?: GraphQLTypes["FormTextField"] | undefined | null;
|
|
6386
|
+
['...on FormtestStep_dimensionsDimensions_group']: Omit<GraphQLTypes["FormtestStep_dimensionsDimensions_group"], "...on FormtestStep_dimensionsDimensions_group">;
|
|
5855
6387
|
};
|
|
5856
6388
|
["FormtestStep_dimensions"]: {
|
|
5857
6389
|
__typename: "FormtestStep_dimensions";
|
|
@@ -5859,6 +6391,7 @@ export type GraphQLTypes = {
|
|
|
5859
6391
|
dimensions_group?: GraphQLTypes["FormtestStep_dimensionsDimensions_group"] | undefined | null;
|
|
5860
6392
|
dimensions_back?: GraphQLTypes["FormButtonField"] | undefined | null;
|
|
5861
6393
|
dimensions_next?: GraphQLTypes["FormButtonField"] | undefined | null;
|
|
6394
|
+
['...on FormtestStep_dimensions']: Omit<GraphQLTypes["FormtestStep_dimensions"], "...on FormtestStep_dimensions">;
|
|
5862
6395
|
};
|
|
5863
6396
|
["FormtestStep_featuresFeatures_group"]: {
|
|
5864
6397
|
__typename: "FormtestStep_featuresFeatures_group";
|
|
@@ -5868,6 +6401,7 @@ export type GraphQLTypes = {
|
|
|
5868
6401
|
glazing_type?: GraphQLTypes["FormRadioTextField"] | undefined | null;
|
|
5869
6402
|
thermal_break?: GraphQLTypes["FormBooleanField"] | undefined | null;
|
|
5870
6403
|
soundproofing?: GraphQLTypes["FormBooleanField"] | undefined | null;
|
|
6404
|
+
['...on FormtestStep_featuresFeatures_group']: Omit<GraphQLTypes["FormtestStep_featuresFeatures_group"], "...on FormtestStep_featuresFeatures_group">;
|
|
5871
6405
|
};
|
|
5872
6406
|
["FormtestStep_features"]: {
|
|
5873
6407
|
__typename: "FormtestStep_features";
|
|
@@ -5875,6 +6409,7 @@ export type GraphQLTypes = {
|
|
|
5875
6409
|
features_group?: GraphQLTypes["FormtestStep_featuresFeatures_group"] | undefined | null;
|
|
5876
6410
|
features_back?: GraphQLTypes["FormButtonField"] | undefined | null;
|
|
5877
6411
|
features_next?: GraphQLTypes["FormButtonField"] | undefined | null;
|
|
6412
|
+
['...on FormtestStep_features']: Omit<GraphQLTypes["FormtestStep_features"], "...on FormtestStep_features">;
|
|
5878
6413
|
};
|
|
5879
6414
|
["FormtestStep_accessoriesAccessories_group"]: {
|
|
5880
6415
|
__typename: "FormtestStep_accessoriesAccessories_group";
|
|
@@ -5884,6 +6419,7 @@ export type GraphQLTypes = {
|
|
|
5884
6419
|
mosquito_net?: GraphQLTypes["FormBooleanField"] | undefined | null;
|
|
5885
6420
|
ventilator?: GraphQLTypes["FormBooleanField"] | undefined | null;
|
|
5886
6421
|
accessories_other?: GraphQLTypes["FormTextField"] | undefined | null;
|
|
6422
|
+
['...on FormtestStep_accessoriesAccessories_group']: Omit<GraphQLTypes["FormtestStep_accessoriesAccessories_group"], "...on FormtestStep_accessoriesAccessories_group">;
|
|
5887
6423
|
};
|
|
5888
6424
|
["FormtestStep_accessories"]: {
|
|
5889
6425
|
__typename: "FormtestStep_accessories";
|
|
@@ -5891,6 +6427,7 @@ export type GraphQLTypes = {
|
|
|
5891
6427
|
accessories_group?: GraphQLTypes["FormtestStep_accessoriesAccessories_group"] | undefined | null;
|
|
5892
6428
|
accessories_back?: GraphQLTypes["FormButtonField"] | undefined | null;
|
|
5893
6429
|
accessories_next?: GraphQLTypes["FormButtonField"] | undefined | null;
|
|
6430
|
+
['...on FormtestStep_accessories']: Omit<GraphQLTypes["FormtestStep_accessories"], "...on FormtestStep_accessories">;
|
|
5894
6431
|
};
|
|
5895
6432
|
["FormtestStep_summary"]: {
|
|
5896
6433
|
__typename: "FormtestStep_summary";
|
|
@@ -5898,6 +6435,7 @@ export type GraphQLTypes = {
|
|
|
5898
6435
|
summary_display?: GraphQLTypes["FormDisplayField"] | undefined | null;
|
|
5899
6436
|
summary_back?: GraphQLTypes["FormButtonField"] | undefined | null;
|
|
5900
6437
|
submit?: GraphQLTypes["FormSubmitField"] | undefined | null;
|
|
6438
|
+
['...on FormtestStep_summary']: Omit<GraphQLTypes["FormtestStep_summary"], "...on FormtestStep_summary">;
|
|
5901
6439
|
};
|
|
5902
6440
|
["Formtest"]: {
|
|
5903
6441
|
__typename: "Formtest";
|
|
@@ -5917,6 +6455,7 @@ export type GraphQLTypes = {
|
|
|
5917
6455
|
updatedAt?: string | undefined | null;
|
|
5918
6456
|
draft_version?: string | undefined | null;
|
|
5919
6457
|
json_ld?: string | undefined | null;
|
|
6458
|
+
['...on Formtest']: Omit<GraphQLTypes["Formtest"], "...on Formtest">;
|
|
5920
6459
|
};
|
|
5921
6460
|
["SubmitFormregisterUser_details"]: {
|
|
5922
6461
|
username?: string | undefined | null;
|
|
@@ -6012,11 +6551,13 @@ export type GraphQLTypes = {
|
|
|
6012
6551
|
password?: string | undefined | null;
|
|
6013
6552
|
full_name?: string | undefined | null;
|
|
6014
6553
|
phone?: string | undefined | null;
|
|
6554
|
+
['...on ResponseFormregisterUser_details']: Omit<GraphQLTypes["ResponseFormregisterUser_details"], "...on ResponseFormregisterUser_details">;
|
|
6015
6555
|
};
|
|
6016
6556
|
["ResponseFormregisterRegistration_step"]: {
|
|
6017
6557
|
__typename: "ResponseFormregisterRegistration_step";
|
|
6018
6558
|
user_details?: GraphQLTypes["ResponseFormregisterUser_details"] | undefined | null;
|
|
6019
6559
|
submit?: string | undefined | null;
|
|
6560
|
+
['...on ResponseFormregisterRegistration_step']: Omit<GraphQLTypes["ResponseFormregisterRegistration_step"], "...on ResponseFormregisterRegistration_step">;
|
|
6020
6561
|
};
|
|
6021
6562
|
["ResponseFormregister"]: {
|
|
6022
6563
|
__typename: "ResponseFormregister";
|
|
@@ -6030,17 +6571,20 @@ export type GraphQLTypes = {
|
|
|
6030
6571
|
updatedAt?: string | undefined | null;
|
|
6031
6572
|
draft_version?: string | undefined | null;
|
|
6032
6573
|
json_ld?: string | undefined | null;
|
|
6574
|
+
['...on ResponseFormregister']: Omit<GraphQLTypes["ResponseFormregister"], "...on ResponseFormregister">;
|
|
6033
6575
|
};
|
|
6034
6576
|
["ResponseFormtestBasic_info_group"]: {
|
|
6035
6577
|
__typename: "ResponseFormtestBasic_info_group";
|
|
6036
6578
|
window_type?: string | undefined | null;
|
|
6037
6579
|
quantity?: string | undefined | null;
|
|
6038
6580
|
location?: string | undefined | null;
|
|
6581
|
+
['...on ResponseFormtestBasic_info_group']: Omit<GraphQLTypes["ResponseFormtestBasic_info_group"], "...on ResponseFormtestBasic_info_group">;
|
|
6039
6582
|
};
|
|
6040
6583
|
["ResponseFormtestStep_basic_info"]: {
|
|
6041
6584
|
__typename: "ResponseFormtestStep_basic_info";
|
|
6042
6585
|
basic_info_group?: GraphQLTypes["ResponseFormtestBasic_info_group"] | undefined | null;
|
|
6043
6586
|
basic_next?: string | undefined | null;
|
|
6587
|
+
['...on ResponseFormtestStep_basic_info']: Omit<GraphQLTypes["ResponseFormtestStep_basic_info"], "...on ResponseFormtestStep_basic_info">;
|
|
6044
6588
|
};
|
|
6045
6589
|
["ResponseFormtestDimensions_group"]: {
|
|
6046
6590
|
__typename: "ResponseFormtestDimensions_group";
|
|
@@ -6049,12 +6593,14 @@ export type GraphQLTypes = {
|
|
|
6049
6593
|
depth_mm?: string | undefined | null;
|
|
6050
6594
|
opening_direction?: string | undefined | null;
|
|
6051
6595
|
sash_count?: string | undefined | null;
|
|
6596
|
+
['...on ResponseFormtestDimensions_group']: Omit<GraphQLTypes["ResponseFormtestDimensions_group"], "...on ResponseFormtestDimensions_group">;
|
|
6052
6597
|
};
|
|
6053
6598
|
["ResponseFormtestStep_dimensions"]: {
|
|
6054
6599
|
__typename: "ResponseFormtestStep_dimensions";
|
|
6055
6600
|
dimensions_group?: GraphQLTypes["ResponseFormtestDimensions_group"] | undefined | null;
|
|
6056
6601
|
dimensions_back?: string | undefined | null;
|
|
6057
6602
|
dimensions_next?: string | undefined | null;
|
|
6603
|
+
['...on ResponseFormtestStep_dimensions']: Omit<GraphQLTypes["ResponseFormtestStep_dimensions"], "...on ResponseFormtestStep_dimensions">;
|
|
6058
6604
|
};
|
|
6059
6605
|
["ResponseFormtestFeatures_group"]: {
|
|
6060
6606
|
__typename: "ResponseFormtestFeatures_group";
|
|
@@ -6063,12 +6609,14 @@ export type GraphQLTypes = {
|
|
|
6063
6609
|
glazing_type?: string | undefined | null;
|
|
6064
6610
|
thermal_break?: boolean | undefined | null;
|
|
6065
6611
|
soundproofing?: boolean | undefined | null;
|
|
6612
|
+
['...on ResponseFormtestFeatures_group']: Omit<GraphQLTypes["ResponseFormtestFeatures_group"], "...on ResponseFormtestFeatures_group">;
|
|
6066
6613
|
};
|
|
6067
6614
|
["ResponseFormtestStep_features"]: {
|
|
6068
6615
|
__typename: "ResponseFormtestStep_features";
|
|
6069
6616
|
features_group?: GraphQLTypes["ResponseFormtestFeatures_group"] | undefined | null;
|
|
6070
6617
|
features_back?: string | undefined | null;
|
|
6071
6618
|
features_next?: string | undefined | null;
|
|
6619
|
+
['...on ResponseFormtestStep_features']: Omit<GraphQLTypes["ResponseFormtestStep_features"], "...on ResponseFormtestStep_features">;
|
|
6072
6620
|
};
|
|
6073
6621
|
["ResponseFormtestAccessories_group"]: {
|
|
6074
6622
|
__typename: "ResponseFormtestAccessories_group";
|
|
@@ -6077,18 +6625,21 @@ export type GraphQLTypes = {
|
|
|
6077
6625
|
mosquito_net?: boolean | undefined | null;
|
|
6078
6626
|
ventilator?: boolean | undefined | null;
|
|
6079
6627
|
accessories_other?: string | undefined | null;
|
|
6628
|
+
['...on ResponseFormtestAccessories_group']: Omit<GraphQLTypes["ResponseFormtestAccessories_group"], "...on ResponseFormtestAccessories_group">;
|
|
6080
6629
|
};
|
|
6081
6630
|
["ResponseFormtestStep_accessories"]: {
|
|
6082
6631
|
__typename: "ResponseFormtestStep_accessories";
|
|
6083
6632
|
accessories_group?: GraphQLTypes["ResponseFormtestAccessories_group"] | undefined | null;
|
|
6084
6633
|
accessories_back?: string | undefined | null;
|
|
6085
6634
|
accessories_next?: string | undefined | null;
|
|
6635
|
+
['...on ResponseFormtestStep_accessories']: Omit<GraphQLTypes["ResponseFormtestStep_accessories"], "...on ResponseFormtestStep_accessories">;
|
|
6086
6636
|
};
|
|
6087
6637
|
["ResponseFormtestStep_summary"]: {
|
|
6088
6638
|
__typename: "ResponseFormtestStep_summary";
|
|
6089
6639
|
summary_display?: string | undefined | null;
|
|
6090
6640
|
summary_back?: string | undefined | null;
|
|
6091
6641
|
submit?: string | undefined | null;
|
|
6642
|
+
['...on ResponseFormtestStep_summary']: Omit<GraphQLTypes["ResponseFormtestStep_summary"], "...on ResponseFormtestStep_summary">;
|
|
6092
6643
|
};
|
|
6093
6644
|
["ResponseFormtest"]: {
|
|
6094
6645
|
__typename: "ResponseFormtest";
|
|
@@ -6106,11 +6657,13 @@ export type GraphQLTypes = {
|
|
|
6106
6657
|
updatedAt?: string | undefined | null;
|
|
6107
6658
|
draft_version?: string | undefined | null;
|
|
6108
6659
|
json_ld?: string | undefined | null;
|
|
6660
|
+
['...on ResponseFormtest']: Omit<GraphQLTypes["ResponseFormtest"], "...on ResponseFormtest">;
|
|
6109
6661
|
};
|
|
6110
6662
|
["SearchResponsesFormregister"]: {
|
|
6111
6663
|
__typename: "SearchResponsesFormregister";
|
|
6112
6664
|
items?: Array<GraphQLTypes["ResponseFormregister"]> | undefined | null;
|
|
6113
6665
|
totalCount?: number | undefined | null;
|
|
6666
|
+
['...on SearchResponsesFormregister']: Omit<GraphQLTypes["SearchResponsesFormregister"], "...on SearchResponsesFormregister">;
|
|
6114
6667
|
};
|
|
6115
6668
|
["ResponsesFormregisterFilter"]: {
|
|
6116
6669
|
state_step?: string | undefined | null;
|
|
@@ -6128,6 +6681,7 @@ export type GraphQLTypes = {
|
|
|
6128
6681
|
__typename: "SearchResponsesFormtest";
|
|
6129
6682
|
items?: Array<GraphQLTypes["ResponseFormtest"]> | undefined | null;
|
|
6130
6683
|
totalCount?: number | undefined | null;
|
|
6684
|
+
['...on SearchResponsesFormtest']: Omit<GraphQLTypes["SearchResponsesFormtest"], "...on SearchResponsesFormtest">;
|
|
6131
6685
|
};
|
|
6132
6686
|
["ResponsesFormtestFilter"]: {
|
|
6133
6687
|
form_step_variable?: string | undefined | null;
|
|
@@ -6232,7 +6786,7 @@ export declare enum ViewEnum {
|
|
|
6232
6786
|
features = "features",
|
|
6233
6787
|
homepage = "homepage",
|
|
6234
6788
|
howitworks = "howitworks",
|
|
6235
|
-
|
|
6789
|
+
pricing_component = "pricing_component",
|
|
6236
6790
|
ttt = "ttt"
|
|
6237
6791
|
}
|
|
6238
6792
|
export declare enum ShapeEnum {
|
|
@@ -6243,16 +6797,19 @@ export declare enum ShapeEnum {
|
|
|
6243
6797
|
docs_content = "docs_content",
|
|
6244
6798
|
docs_nav = "docs_nav",
|
|
6245
6799
|
featurepresentation = "featurepresentation",
|
|
6800
|
+
featuresv2 = "featuresv2",
|
|
6246
6801
|
foot = "foot",
|
|
6802
|
+
heading = "heading",
|
|
6247
6803
|
hero = "hero",
|
|
6248
6804
|
herox = "herox",
|
|
6249
6805
|
lista_projektow = "lista_projektow",
|
|
6250
6806
|
nav = "nav",
|
|
6251
6807
|
newshape = "newshape",
|
|
6252
|
-
pricing_table = "pricing_table",
|
|
6253
6808
|
pricingv1 = "pricingv1",
|
|
6809
|
+
pricingv2 = "pricingv2",
|
|
6254
6810
|
profile_info = "profile_info",
|
|
6255
6811
|
secondary_cta = "secondary_cta",
|
|
6812
|
+
subheading = "subheading",
|
|
6256
6813
|
support = "support",
|
|
6257
6814
|
title_desc = "title_desc",
|
|
6258
6815
|
usage = "usage"
|