-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
2674 lines (2494 loc) · 76.7 KB
/
schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
export type Maybe<T> = T | null;
export type InputMaybe<T> = Maybe<T>;
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
/** All built-in and custom scalars, mapped to their actual values */
export type Scalars = {
ID: string;
String: string;
Boolean: boolean;
Int: number;
Float: number;
BooleanType: any;
CustomData: any;
DateTime: any;
FloatType: any;
IntType: any;
ItemId: any;
JsonField: any;
MetaTagAttributes: any;
UploadId: any;
};
/** Specifies how to filter Boolean fields */
export type BooleanFilter = {
/** Search for records with an exact match */
eq?: InputMaybe<Scalars['BooleanType']>;
};
export type CollectionMetadata = {
__typename?: 'CollectionMetadata';
count: Scalars['IntType'];
};
export enum ColorBucketType {
Black = 'black',
Blue = 'blue',
Brown = 'brown',
Cyan = 'cyan',
Green = 'green',
Grey = 'grey',
Orange = 'orange',
Pink = 'pink',
Purple = 'purple',
Red = 'red',
White = 'white',
Yellow = 'yellow'
}
export type ColorField = {
__typename?: 'ColorField';
alpha: Scalars['IntType'];
blue: Scalars['IntType'];
green: Scalars['IntType'];
hex: Scalars['String'];
red: Scalars['IntType'];
};
/** Record of type ContactPage (contactpage) */
export type ContactpageRecord = RecordInterface & {
__typename?: 'ContactpageRecord';
_createdAt: Scalars['DateTime'];
_firstPublishedAt?: Maybe<Scalars['DateTime']>;
_isValid: Scalars['BooleanType'];
_modelApiKey: Scalars['String'];
_publicationScheduledAt?: Maybe<Scalars['DateTime']>;
_publishedAt?: Maybe<Scalars['DateTime']>;
/** SEO meta tags */
_seoMetaTags: Array<Tag>;
_status: ItemStatus;
_unpublishingScheduledAt?: Maybe<Scalars['DateTime']>;
_updatedAt: Scalars['DateTime'];
contacticons: Array<LinkRecord>;
cvlink: Array<LinkRecord>;
getintouch?: Maybe<Scalars['String']>;
header?: Maybe<HeaderRecord>;
id: Scalars['ItemId'];
profileimage?: Maybe<FileField>;
subtitle?: Maybe<Scalars['String']>;
title?: Maybe<Scalars['String']>;
};
/** Record of type ContactPage (contactpage) */
export type ContactpageRecord_SeoMetaTagsArgs = {
locale?: InputMaybe<SiteLocale>;
};
/** Specifies how to filter by creation datetime */
export type CreatedAtFilter = {
/** Filter records with a value that's within the specified minute range. Seconds and milliseconds are truncated from the argument. */
eq?: InputMaybe<Scalars['DateTime']>;
/** Filter records with the specified field defined (i.e. with any value) or not */
exists?: InputMaybe<Scalars['BooleanType']>;
/** Filter records with a value that's strictly greater than the one specified. Seconds and milliseconds are truncated from the argument. */
gt?: InputMaybe<Scalars['DateTime']>;
/** Filter records with a value that's greater than or equal to than the one specified. Seconds and milliseconds are truncated from the argument. */
gte?: InputMaybe<Scalars['DateTime']>;
/** Filter records with a value that's less than the one specified. Seconds and milliseconds are truncated from the argument. */
lt?: InputMaybe<Scalars['DateTime']>;
/** Filter records with a value that's less or equal than the one specified. Seconds and milliseconds are truncated from the argument. */
lte?: InputMaybe<Scalars['DateTime']>;
/** Filter records with a value that's outside the specified minute range. Seconds and milliseconds are truncated from the argument. */
neq?: InputMaybe<Scalars['DateTime']>;
};
export enum FaviconType {
AppleTouchIcon = 'appleTouchIcon',
Icon = 'icon',
MsApplication = 'msApplication'
}
export type FileField = FileFieldInterface & {
__typename?: 'FileField';
_createdAt: Scalars['DateTime'];
_updatedAt: Scalars['DateTime'];
alt?: Maybe<Scalars['String']>;
author?: Maybe<Scalars['String']>;
basename: Scalars['String'];
blurUpThumb?: Maybe<Scalars['String']>;
blurhash?: Maybe<Scalars['String']>;
colors: Array<ColorField>;
copyright?: Maybe<Scalars['String']>;
customData: Scalars['CustomData'];
exifInfo: Scalars['CustomData'];
filename: Scalars['String'];
focalPoint?: Maybe<FocalPoint>;
format: Scalars['String'];
height?: Maybe<Scalars['IntType']>;
id: Scalars['UploadId'];
md5: Scalars['String'];
mimeType: Scalars['String'];
notes?: Maybe<Scalars['String']>;
responsiveImage?: Maybe<ResponsiveImage>;
size: Scalars['IntType'];
smartTags: Array<Scalars['String']>;
tags: Array<Scalars['String']>;
title?: Maybe<Scalars['String']>;
url: Scalars['String'];
video?: Maybe<UploadVideoField>;
width?: Maybe<Scalars['IntType']>;
};
export type FileFieldAltArgs = {
fallbackLocales?: InputMaybe<Array<SiteLocale>>;
locale?: InputMaybe<SiteLocale>;
};
export type FileFieldBlurUpThumbArgs = {
imgixParams?: InputMaybe<ImgixParams>;
punch?: Scalars['Float'];
quality?: Scalars['Int'];
size?: Scalars['Int'];
};
export type FileFieldCustomDataArgs = {
fallbackLocales?: InputMaybe<Array<SiteLocale>>;
locale?: InputMaybe<SiteLocale>;
};
export type FileFieldFocalPointArgs = {
fallbackLocales?: InputMaybe<Array<SiteLocale>>;
locale?: InputMaybe<SiteLocale>;
};
export type FileFieldResponsiveImageArgs = {
fallbackLocales?: InputMaybe<Array<SiteLocale>>;
imgixParams?: InputMaybe<ImgixParams>;
locale?: InputMaybe<SiteLocale>;
sizes?: InputMaybe<Scalars['String']>;
};
export type FileFieldTitleArgs = {
fallbackLocales?: InputMaybe<Array<SiteLocale>>;
locale?: InputMaybe<SiteLocale>;
};
export type FileFieldUrlArgs = {
imgixParams?: InputMaybe<ImgixParams>;
};
export type FileFieldInterface = {
_createdAt: Scalars['DateTime'];
_updatedAt: Scalars['DateTime'];
alt?: Maybe<Scalars['String']>;
author?: Maybe<Scalars['String']>;
basename: Scalars['String'];
blurUpThumb?: Maybe<Scalars['String']>;
blurhash?: Maybe<Scalars['String']>;
colors: Array<ColorField>;
copyright?: Maybe<Scalars['String']>;
customData: Scalars['CustomData'];
exifInfo: Scalars['CustomData'];
filename: Scalars['String'];
focalPoint?: Maybe<FocalPoint>;
format: Scalars['String'];
height?: Maybe<Scalars['IntType']>;
id: Scalars['UploadId'];
md5: Scalars['String'];
mimeType: Scalars['String'];
notes?: Maybe<Scalars['String']>;
responsiveImage?: Maybe<ResponsiveImage>;
size: Scalars['IntType'];
smartTags: Array<Scalars['String']>;
tags: Array<Scalars['String']>;
title?: Maybe<Scalars['String']>;
url: Scalars['String'];
video?: Maybe<UploadVideoField>;
width?: Maybe<Scalars['IntType']>;
};
export type FileFieldInterfaceAltArgs = {
fallbackLocales?: InputMaybe<Array<SiteLocale>>;
locale?: InputMaybe<SiteLocale>;
};
export type FileFieldInterfaceBlurUpThumbArgs = {
imgixParams?: InputMaybe<ImgixParams>;
punch?: Scalars['Float'];
quality?: Scalars['Int'];
size?: Scalars['Int'];
};
export type FileFieldInterfaceCustomDataArgs = {
fallbackLocales?: InputMaybe<Array<SiteLocale>>;
locale?: InputMaybe<SiteLocale>;
};
export type FileFieldInterfaceFocalPointArgs = {
fallbackLocales?: InputMaybe<Array<SiteLocale>>;
locale?: InputMaybe<SiteLocale>;
};
export type FileFieldInterfaceResponsiveImageArgs = {
fallbackLocales?: InputMaybe<Array<SiteLocale>>;
imgixParams?: InputMaybe<ImgixParams>;
locale?: InputMaybe<SiteLocale>;
sizes?: InputMaybe<Scalars['String']>;
};
export type FileFieldInterfaceTitleArgs = {
fallbackLocales?: InputMaybe<Array<SiteLocale>>;
locale?: InputMaybe<SiteLocale>;
};
export type FileFieldInterfaceUrlArgs = {
imgixParams?: InputMaybe<ImgixParams>;
};
/** Specifies how to filter Single-file/image fields */
export type FileFilter = {
/** Search for records with an exact match. The specified value must be an Upload ID */
eq?: InputMaybe<Scalars['UploadId']>;
/** Filter records with the specified field defined (i.e. with any value) or not */
exists?: InputMaybe<Scalars['BooleanType']>;
/** Filter records that have one of the specified uploads */
in?: InputMaybe<Array<InputMaybe<Scalars['UploadId']>>>;
/** Exclude records with an exact match. The specified value must be an Upload ID */
neq?: InputMaybe<Scalars['UploadId']>;
/** Filter records that do not have one of the specified uploads */
notIn?: InputMaybe<Array<InputMaybe<Scalars['UploadId']>>>;
};
export type GlobalSeoField = {
__typename?: 'GlobalSeoField';
facebookPageUrl?: Maybe<Scalars['String']>;
fallbackSeo?: Maybe<SeoField>;
siteName?: Maybe<Scalars['String']>;
titleSuffix?: Maybe<Scalars['String']>;
twitterAccount?: Maybe<Scalars['String']>;
};
/** Record of type Header (header) */
export type HeaderRecord = RecordInterface & {
__typename?: 'HeaderRecord';
_createdAt: Scalars['DateTime'];
_firstPublishedAt?: Maybe<Scalars['DateTime']>;
_isValid: Scalars['BooleanType'];
_modelApiKey: Scalars['String'];
_publicationScheduledAt?: Maybe<Scalars['DateTime']>;
_publishedAt?: Maybe<Scalars['DateTime']>;
/** SEO meta tags */
_seoMetaTags: Array<Tag>;
_status: ItemStatus;
_unpublishingScheduledAt?: Maybe<Scalars['DateTime']>;
_updatedAt: Scalars['DateTime'];
backarrow?: Maybe<FileField>;
goback?: Maybe<Scalars['String']>;
id: Scalars['ItemId'];
logo?: Maybe<FileField>;
};
/** Record of type Header (header) */
export type HeaderRecord_SeoMetaTagsArgs = {
locale?: InputMaybe<SiteLocale>;
};
export type HomepageModelWelcomemessageField = {
__typename?: 'HomepageModelWelcomemessageField';
blocks: Array<Scalars['String']>;
links: Array<Scalars['String']>;
value: Scalars['JsonField'];
};
/** Record of type Homepage (homepage) */
export type HomepageRecord = RecordInterface & {
__typename?: 'HomepageRecord';
_createdAt: Scalars['DateTime'];
_firstPublishedAt?: Maybe<Scalars['DateTime']>;
_isValid: Scalars['BooleanType'];
_modelApiKey: Scalars['String'];
_publicationScheduledAt?: Maybe<Scalars['DateTime']>;
_publishedAt?: Maybe<Scalars['DateTime']>;
/** SEO meta tags */
_seoMetaTags: Array<Tag>;
_status: ItemStatus;
_unpublishingScheduledAt?: Maybe<Scalars['DateTime']>;
_updatedAt: Scalars['DateTime'];
carousel: Array<FileField>;
floatingicons: Array<FileField>;
header?: Maybe<HeaderRecord>;
id: Scalars['ItemId'];
links: Array<LinkRecord>;
profileimage?: Maybe<FileField>;
title?: Maybe<Scalars['String']>;
welcomemessage?: Maybe<HomepageModelWelcomemessageField>;
};
/** Record of type Homepage (homepage) */
export type HomepageRecord_SeoMetaTagsArgs = {
locale?: InputMaybe<SiteLocale>;
};
export type ImgixParams = {
/**
* Aspect Ratio
*
* Specifies an aspect ratio to maintain when resizing and cropping the image
*
* Depends on: `fit=crop`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/size/ar)
*/
ar?: InputMaybe<Scalars['String']>;
/**
* Automatic
*
* Applies automatic enhancements to images.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/auto)
*/
auto?: InputMaybe<Array<ImgixParamsAuto>>;
/**
* Background Color
*
* Colors the background of padded and partially-transparent images.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/bg)
*/
bg?: InputMaybe<Scalars['String']>;
/**
* Blend
*
* Specifies the location of the blend image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend)
*/
blend?: InputMaybe<Scalars['String']>;
/**
* Blend Align
*
* Changes the blend alignment relative to the parent image.
*
* Depends on: `blend`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-align)
*/
blendAlign?: InputMaybe<Array<ImgixParamsBlendAlign>>;
/**
* Blend Alpha
*
* Changes the alpha of the blend image.
*
* Depends on: `blend`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-alpha)
*/
blendAlpha?: InputMaybe<Scalars['IntType']>;
/**
* Blend Color
*
* Specifies a color to use when applying the blend.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-color)
*/
blendColor?: InputMaybe<Scalars['String']>;
/**
* Blend Crop
*
* Specifies the type of crop for blend images.
*
* Depends on: `blend`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-crop)
*/
blendCrop?: InputMaybe<Array<ImgixParamsBlendCrop>>;
/**
* Blend Fit
*
* Specifies the fit mode for blend images.
*
* Depends on: `blend`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-fit)
*/
blendFit?: InputMaybe<ImgixParamsBlendFit>;
/**
* Blend Height
*
* Adjusts the height of the blend image.
*
* Depends on: `blend`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-h)
*/
blendH?: InputMaybe<Scalars['FloatType']>;
/**
* Blend Mode
*
* Sets the blend mode for a blend image.
*
* Depends on: `blend`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-mode)
*/
blendMode?: InputMaybe<ImgixParamsBlendMode>;
/**
* Blend Padding
*
* Applies padding to the blend image.
*
* Depends on: `blend`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-pad)
*/
blendPad?: InputMaybe<Scalars['IntType']>;
/**
* Blend Size
*
* Adjusts the size of the blend image.
*
* Depends on: `blend`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-size)
*/
blendSize?: InputMaybe<ImgixParamsBlendSize>;
/**
* Blend Width
*
* Adjusts the width of the blend image.
*
* Depends on: `blend`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-w)
*/
blendW?: InputMaybe<Scalars['FloatType']>;
/**
* Blend X Position
*
* Adjusts the x-offset of the blend image relative to its parent.
*
* Depends on: `blend`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-x)
*/
blendX?: InputMaybe<Scalars['IntType']>;
/**
* Blend Y Position
*
* Adjusts the y-offset of the blend image relative to its parent.
*
* Depends on: `blend`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/blending/blend-y)
*/
blendY?: InputMaybe<Scalars['IntType']>;
/**
* Gaussian Blur
*
* Applies a gaussian blur to an image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/stylize/blur)
*/
blur?: InputMaybe<Scalars['IntType']>;
/**
* Border Size & Color
*
* Applies a border to an image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border)
*/
border?: InputMaybe<Scalars['String']>;
/**
* Border Bottom
*
* Sets bottom border of an image.
*
* Depends on: `border`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-bottom)
*/
borderBottom?: InputMaybe<Scalars['IntType']>;
/**
* Border Left
*
* Sets left border of an image.
*
* Depends on: `border`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-left)
*/
borderLeft?: InputMaybe<Scalars['IntType']>;
/**
* Outer Border Radius
*
* Sets the outer radius of the image's border in pixels.
*
* Depends on: `border`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-radius)
*/
borderRadius?: InputMaybe<Scalars['String']>;
/**
* Inner Border Radius
*
* Sets the inner radius of the image's border in pixels.
*
* Depends on: `border`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-radius-inner)
*/
borderRadiusInner?: InputMaybe<Scalars['String']>;
/**
* Border Right
*
* Sets right border of an image.
*
* Depends on: `border`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-right)
*/
borderRight?: InputMaybe<Scalars['IntType']>;
/**
* Border Top
*
* Sets top border of an image.
*
* Depends on: `border`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/border-and-padding/border-top)
*/
borderTop?: InputMaybe<Scalars['IntType']>;
/**
* Brightness
*
* Adjusts the brightness of the source image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/adjustment/bri)
*/
bri?: InputMaybe<Scalars['IntType']>;
/**
* Client Hints
*
* Sets one or more Client-Hints headers
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/format/ch)
*/
ch?: InputMaybe<Array<ImgixParamsCh>>;
/**
* Chroma Subsampling
*
* Specifies the output chroma subsampling rate.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/format/chromasub)
*/
chromasub?: InputMaybe<Scalars['IntType']>;
/**
* Color Quantization
*
* Limits the number of unique colors in an image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/format/colorquant)
*/
colorquant?: InputMaybe<Scalars['IntType']>;
/**
* Palette Color Count
*
* Specifies how many colors to include in a palette-extraction response.
*
* Depends on: `palette`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/color-palette/colors)
*/
colors?: InputMaybe<Scalars['IntType']>;
/**
* Contrast
*
* Adjusts the contrast of the source image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/adjustment/con)
*/
con?: InputMaybe<Scalars['IntType']>;
/**
* Mask Corner Radius
*
* Specifies the radius value for a rounded corner mask.
*
* Depends on: `mask=corners`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/mask/corner-radius)
*/
cornerRadius?: InputMaybe<Scalars['String']>;
/**
* Crop Mode
*
* Specifies how to crop an image.
*
* Depends on: `fit=crop`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/size/crop)
*/
crop?: InputMaybe<Array<ImgixParamsCrop>>;
/**
* Color Space
*
* Specifies the color space of the output image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/format/cs)
*/
cs?: InputMaybe<ImgixParamsCs>;
/**
* Download
*
* Forces a URL to use send-file in its response.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/format/dl)
*/
dl?: InputMaybe<Scalars['String']>;
/**
* Dots Per Inch
*
* Sets the DPI value in the EXIF header.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/format/dpi)
*/
dpi?: InputMaybe<Scalars['IntType']>;
/**
* Device Pixel Ratio
*
* Adjusts the device-pixel ratio of the output image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/dpr)
*/
dpr?: InputMaybe<Scalars['FloatType']>;
/**
* Duotone
*
* Applies a duotone effect to the source image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/stylize/duotone)
*/
duotone?: InputMaybe<Scalars['String']>;
/**
* Duotone Alpha
*
* Changes the alpha of the duotone effect atop the source image.
*
* Depends on: `duotone`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/stylize/duotone-alpha)
*/
duotoneAlpha?: InputMaybe<Scalars['IntType']>;
/**
* Exposure
*
* Adjusts the exposure of the output image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/adjustment/exp)
*/
exp?: InputMaybe<Scalars['IntType']>;
/**
* Url Expiration Timestamp
*
* A Unix timestamp specifying a UTC time. Requests made to this URL after that time will output a 404 status code.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/expires)
*/
expires?: InputMaybe<Scalars['IntType']>;
/**
* Face Index
*
* Selects a face to crop to.
*
* Depends on: `fit=facearea`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/face-detection/faceindex)
*/
faceindex?: InputMaybe<Scalars['IntType']>;
/**
* Face Padding
*
* Adjusts padding around a selected face.
*
* Depends on: `fit=facearea`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/face-detection/facepad)
*/
facepad?: InputMaybe<Scalars['FloatType']>;
/**
* Json Face Data
*
* Specifies that face data should be included in output when combined with `fm=json`.
*
* Depends on: `fm=json`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/face-detection/faces)
*/
faces?: InputMaybe<Scalars['IntType']>;
/**
* Fill Mode
*
* Determines how to fill in additional space created by the fit setting
*
* Depends on: `fit`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/fill/fill)
*/
fill?: InputMaybe<ImgixParamsFill>;
/**
* Fill Color
*
* Sets the fill color for images with additional space created by the fit setting
*
* Depends on: `fill=solid`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/fill/fill-color)
*/
fillColor?: InputMaybe<Scalars['String']>;
/**
* Resize Fit Mode
*
* Specifies how to map the source image to the output image dimensions.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/size/fit)
*/
fit?: InputMaybe<ImgixParamsFit>;
/**
* Flip Axis
*
* Flips an image on a specified axis.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/rotation/flip)
*/
flip?: InputMaybe<ImgixParamsFlip>;
/**
* Output Format
*
* Changes the format of the output image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/format/fm)
*/
fm?: InputMaybe<ImgixParamsFm>;
/**
* Focal Point Debug
*
* Displays crosshairs identifying the location of the set focal point
*
* Depends on: `fit=crop`, `crop=focalpoint`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/focalpoint-crop/fp-debug)
*/
fpDebug?: InputMaybe<Scalars['BooleanType']>;
/**
* Focal Point X Position
*
* Sets the relative horizontal value for the focal point of an image
*
* Depends on: `fit=crop`, `crop=focalpoint`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/focalpoint-crop/fp-x)
*/
fpX?: InputMaybe<Scalars['FloatType']>;
/**
* Focal Point Y Position
*
* Sets the relative vertical value for the focal point of an image
*
* Depends on: `fit=crop`, `crop=focalpoint`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/focalpoint-crop/fp-y)
*/
fpY?: InputMaybe<Scalars['FloatType']>;
/**
* Focal Point Zoom
*
* Sets the relative zoom value for the focal point of an image
*
* Depends on: `fit=crop`, `crop=focalpoint`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/focalpoint-crop/fp-z)
*/
fpZ?: InputMaybe<Scalars['FloatType']>;
/**
* Gamma
*
* Adjusts the gamma of the source image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/adjustment/gam)
*/
gam?: InputMaybe<Scalars['IntType']>;
/**
* Grid Colors
*
* Sets grid colors for the transparency checkerboard grid.
*
* Depends on: `transparency`
*/
gridColors?: InputMaybe<Scalars['String']>;
/**
* Grid Size
*
* Sets grid size for the transparency checkerboard grid.
*
* Depends on: `transparency`
*/
gridSize?: InputMaybe<Scalars['IntType']>;
/**
* Image Height
*
* Adjusts the height of the output image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/size/h)
*/
h?: InputMaybe<Scalars['FloatType']>;
/**
* Highlight
*
* Adjusts the highlights of the source image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/adjustment/high)
*/
high?: InputMaybe<Scalars['IntType']>;
/**
* Halftone
*
* Applies a half-tone effect to the source image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/stylize/htn)
*/
htn?: InputMaybe<Scalars['IntType']>;
/**
* Hue Shift
*
* Adjusts the hue of the source image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/adjustment/hue)
*/
hue?: InputMaybe<Scalars['IntType']>;
/**
* Invert
*
* Inverts the colors on the source image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/adjustment/invert)
*/
invert?: InputMaybe<Scalars['BooleanType']>;
/**
* Iptc Passthrough
*
* Determine if IPTC data should be passed for JPEG images.
*/
iptc?: InputMaybe<ImgixParamsIptc>;
/**
* Lossless Compression
*
* Specifies that the output image should be a lossless variant.
*
* Depends on: `fm=webp`, `fm=jxr`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/format/lossless)
*/
lossless?: InputMaybe<Scalars['BooleanType']>;
/**
* Watermark Image Url
*
* Specifies the location of the watermark image.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/watermark/mark)
*/
mark?: InputMaybe<Scalars['String']>;
/**
* Watermark Alignment Mode
*
* Changes the watermark alignment relative to the parent image.
*
* Depends on: `mark`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/watermark/mark-align)
*/
markAlign?: InputMaybe<Array<ImgixParamsMarkAlign>>;
/**
* Watermark Alpha
*
* Changes the alpha of the watermark image.
*
* Depends on: `mark`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/watermark/mark-alpha)
*/
markAlpha?: InputMaybe<Scalars['IntType']>;
/**
* Watermark Base Url
*
* Changes base URL of the watermark image.
*
* Depends on: `mark`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/watermark/mark-base)
*/
markBase?: InputMaybe<Scalars['String']>;
/**
* Watermark Fit Mode
*
* Specifies the fit mode for watermark images.
*
* Depends on: `mark`, `markw`, `markh`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/watermark/mark-fit)
*/
markFit?: InputMaybe<ImgixParamsMarkFit>;
/**
* Watermark Height
*
* Adjusts the height of the watermark image.
*
* Depends on: `mark`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/watermark/mark-h)
*/
markH?: InputMaybe<Scalars['FloatType']>;
/**
* Watermark Padding
*
* Applies padding to the watermark image.
*
* Depends on: `mark`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/watermark/mark-pad)
*/
markPad?: InputMaybe<Scalars['IntType']>;
/**
* Watermark Rotation
*
* Rotates a watermark or tiled watermarks by a specified number of degrees.
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/watermark/mark-rot)
*/
markRot?: InputMaybe<Scalars['FloatType']>;
/**
* Watermark Scale
*
* Adjusts the scale of the watermark image.
*
* Depends on: `mark`
*
* [Open Imgix reference »](https://docs.imgix.com/apis/url/watermark/mark-scale)
*/
markScale?: InputMaybe<Scalars['IntType']>;
/**
* Watermark Tile
*
* Adds tiled watermark.
*
* Depends on: `mark`