@geowiki/cms-proxy 0.15.0-dev.1

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.
@@ -0,0 +1,1253 @@
1
+ type ApiRequestOptions = {
2
+ readonly method: "GET" | "PUT" | "POST" | "DELETE" | "OPTIONS" | "HEAD" | "PATCH";
3
+ readonly url: string;
4
+ readonly path?: Record<string, any>;
5
+ readonly cookies?: Record<string, any>;
6
+ readonly headers?: Record<string, any>;
7
+ readonly query?: Record<string, any>;
8
+ readonly formData?: Record<string, any>;
9
+ readonly body?: any;
10
+ readonly mediaType?: string;
11
+ readonly responseHeader?: string;
12
+ readonly errors?: Record<number, string>;
13
+ };
14
+
15
+ type ApiResult = {
16
+ readonly url: string;
17
+ readonly ok: boolean;
18
+ readonly status: number;
19
+ readonly statusText: string;
20
+ readonly body: any;
21
+ };
22
+
23
+ declare class ApiError extends Error {
24
+ readonly url: string;
25
+ readonly status: number;
26
+ readonly statusText: string;
27
+ readonly body: any;
28
+ readonly request: ApiRequestOptions;
29
+ constructor(request: ApiRequestOptions, response: ApiResult, message: string);
30
+ }
31
+
32
+ declare class CancelError extends Error {
33
+ constructor(message: string);
34
+ get isCancelled(): boolean;
35
+ }
36
+ interface OnCancel {
37
+ readonly isResolved: boolean;
38
+ readonly isRejected: boolean;
39
+ readonly isCancelled: boolean;
40
+ (cancelHandler: () => void): void;
41
+ }
42
+ declare class CancelablePromise<T> implements Promise<T> {
43
+ #private;
44
+ constructor(executor: (resolve: (value: T | PromiseLike<T>) => void, reject: (reason?: any) => void, onCancel: OnCancel) => void);
45
+ get [Symbol.toStringTag](): string;
46
+ then<TResult1 = T, TResult2 = never>(onFulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | null, onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null): Promise<TResult1 | TResult2>;
47
+ catch<TResult = never>(onRejected?: ((reason: any) => TResult | PromiseLike<TResult>) | null): Promise<T | TResult>;
48
+ finally(onFinally?: (() => void) | null): Promise<T>;
49
+ cancel(): void;
50
+ get isCancelled(): boolean;
51
+ }
52
+
53
+ type Resolver<T> = (options: ApiRequestOptions) => Promise<T>;
54
+ type Headers = Record<string, string>;
55
+ type OpenAPIConfig = {
56
+ BASE: string;
57
+ VERSION: string;
58
+ WITH_CREDENTIALS: boolean;
59
+ CREDENTIALS: "include" | "omit" | "same-origin";
60
+ TOKEN?: string | Resolver<string> | undefined;
61
+ USERNAME?: string | Resolver<string> | undefined;
62
+ PASSWORD?: string | Resolver<string> | undefined;
63
+ HEADERS?: Headers | Resolver<Headers> | undefined;
64
+ ENCODE_PATH?: ((path: string) => string) | undefined;
65
+ };
66
+ declare const OpenAPI: OpenAPIConfig;
67
+
68
+ type ContentElementDto = Record<string, any>;
69
+
70
+ type ContentPartDto = ContentElementDto & Record<string, any>;
71
+
72
+ type AdditionalStylingPartDto = {
73
+ CustomClasses?: string | null;
74
+ RemoveGridExtensionClasses?: boolean;
75
+ } & ContentPartDto;
76
+
77
+ type AliasPartDto = {
78
+ Alias?: string | null;
79
+ } & ContentPartDto;
80
+
81
+ type ContentFieldDto = ContentElementDto & Record<string, any>;
82
+
83
+ type BooleanFieldDto = {
84
+ Value?: boolean;
85
+ } & ContentFieldDto;
86
+
87
+ type MediaFieldDto = {
88
+ Paths?: Array<string> | null;
89
+ MediaTexts?: Array<string> | null;
90
+ } & ContentFieldDto;
91
+
92
+ type NumericFieldDto = {
93
+ Value?: number | null;
94
+ } & ContentFieldDto;
95
+
96
+ type TextFieldDto = {
97
+ Text?: string | null;
98
+ } & ContentFieldDto;
99
+
100
+ type ApplicationDto = ContentPartDto & {
101
+ IsVisible?: BooleanFieldDto | null;
102
+ Description?: TextFieldDto | null;
103
+ Image?: MediaFieldDto | null;
104
+ Order?: NumericFieldDto | null;
105
+ };
106
+
107
+ type ContentItemDto = ContentElementDto & Record<string, any>;
108
+
109
+ type LinkPartDto = ContentPartDto & {
110
+ IsNewTab?: BooleanFieldDto | null;
111
+ Url?: TextFieldDto | null;
112
+ Text?: TextFieldDto | null;
113
+ };
114
+
115
+ type TitlePartDto = {
116
+ Title?: string | null;
117
+ } & ContentPartDto;
118
+
119
+ type ApplicationItemDto = ContentItemDto & {
120
+ Application?: ApplicationDto | null;
121
+ TitlePart?: TitlePartDto | null;
122
+ PlayStore?: LinkPartDto | null;
123
+ AppStore?: LinkPartDto | null;
124
+ Website?: LinkPartDto | null;
125
+ };
126
+
127
+ type AutoroutePartDto = {
128
+ Path?: string | null;
129
+ SetHomepage?: boolean;
130
+ Disabled?: boolean;
131
+ RouteContainedItems?: boolean;
132
+ Absolute?: boolean;
133
+ } & ContentPartDto;
134
+
135
+ type BackgroundPartDto = ContentPartDto & {
136
+ BackgroundColour?: TextFieldDto | null;
137
+ };
138
+
139
+ type BagPartDto = {
140
+ ContentItems?: Array<ContentItemDto> | null;
141
+ } & ContentPartDto;
142
+
143
+ type BannerFollowLinksDto = ContentPartDto;
144
+
145
+ type BannerFollowLinksItemDto = ContentItemDto & {
146
+ BannerFollowLinks?: BannerFollowLinksDto | null;
147
+ TitlePart?: TitlePartDto | null;
148
+ BagPart?: BagPartDto | null;
149
+ };
150
+
151
+ type CardDto = ContentPartDto & {
152
+ Description?: TextFieldDto | null;
153
+ Image?: MediaFieldDto | null;
154
+ MainText?: TextFieldDto | null;
155
+ };
156
+
157
+ type CardGridDto = ContentPartDto;
158
+
159
+ type CardGridItemDto = ContentItemDto & {
160
+ CardGrid?: CardGridDto | null;
161
+ BagPart?: BagPartDto | null;
162
+ TitlePart?: TitlePartDto | null;
163
+ };
164
+
165
+ type CardItemDto = ContentItemDto & {
166
+ Card?: CardDto | null;
167
+ TitlePart?: TitlePartDto | null;
168
+ LinkPart?: LinkPartDto | null;
169
+ };
170
+
171
+ type CheckboxItemDto = ContentPartDto & {
172
+ Label?: TextFieldDto | null;
173
+ Value?: TextFieldDto | null;
174
+ Id?: TextFieldDto | null;
175
+ };
176
+
177
+ type CheckboxItemItemDto = ContentItemDto & {
178
+ CheckboxItem?: CheckboxItemDto | null;
179
+ };
180
+
181
+ type ClusterFilterItemsDto = ContentPartDto & {
182
+ Name?: TextFieldDto | null;
183
+ LabelField?: TextFieldDto | null;
184
+ FetchDetail?: TextFieldDto | null;
185
+ ValueField?: TextFieldDto | null;
186
+ LabelLookUpField?: TextFieldDto | null;
187
+ };
188
+
189
+ type ClusterFilterItemsItemDto = ContentItemDto & {
190
+ ClusterFilterItems?: ClusterFilterItemsDto | null;
191
+ Parameter?: BagPartDto | null;
192
+ LabelLookUp?: BagPartDto | null;
193
+ };
194
+
195
+ type ClusterFilterSettingsDto = ContentPartDto & {
196
+ IsFreeText?: BooleanFieldDto | null;
197
+ Name?: TextFieldDto | null;
198
+ ShowButtons?: BooleanFieldDto | null;
199
+ };
200
+
201
+ type ClusterFilterSettingsItemDto = ContentItemDto & {
202
+ ClusterFilterSettings?: ClusterFilterSettingsDto | null;
203
+ ClusterSorting?: BagPartDto | null;
204
+ ClusterFilter?: BagPartDto | null;
205
+ };
206
+
207
+ type ClusterSortingItemsDto = ContentPartDto & {
208
+ Name?: TextFieldDto | null;
209
+ Key?: TextFieldDto | null;
210
+ SortDirection?: TextFieldDto | null;
211
+ Selected?: BooleanFieldDto | null;
212
+ };
213
+
214
+ type ClusterSortingItemsItemDto = ContentItemDto & {
215
+ ClusterSortingItems?: ClusterSortingItemsDto | null;
216
+ };
217
+
218
+ type ColumnDto = ContentPartDto;
219
+
220
+ type ColumnItemDto = ContentItemDto & {
221
+ Column?: ColumnDto | null;
222
+ BagPart?: BagPartDto | null;
223
+ TitlePart?: TitlePartDto | null;
224
+ };
225
+
226
+ type CommonPartDto = Record<string, any> & ContentPartDto;
227
+
228
+ type MultiTextFieldDto = {
229
+ Values?: Array<string> | null;
230
+ } & ContentFieldDto;
231
+
232
+ type ConfigSettingsDto = ContentPartDto & {
233
+ ImageMaxDimensionWidth?: NumericFieldDto | null;
234
+ ImageMaxDimensionHeight?: NumericFieldDto | null;
235
+ ImageMinDimensionWidth?: NumericFieldDto | null;
236
+ ImageMinDimensionHeight?: NumericFieldDto | null;
237
+ ImageError?: TextFieldDto | null;
238
+ ColorArray?: MultiTextFieldDto | null;
239
+ FeaturesFarmerCluster?: TextFieldDto | null;
240
+ FeaturesFarmerClusterNews?: TextFieldDto | null;
241
+ FeaturesSettingManagementEnable?: TextFieldDto | null;
242
+ FeaturesGeoWikiLogin?: TextFieldDto | null;
243
+ FeaturesGeoWikiSettings?: TextFieldDto | null;
244
+ FeaturesSettingManagementAllowTenantsToChangeEmailSettings?: TextFieldDto | null;
245
+ FeaturesResources?: TextFieldDto | null;
246
+ LookUpClusterFarmingSystem?: TextFieldDto | null;
247
+ LookUpClusterMainAgricultureArea?: TextFieldDto | null;
248
+ LookUpClusterMainCrops?: TextFieldDto | null;
249
+ LookUpClusterCountries?: TextFieldDto | null;
250
+ LookUpClusterActivityStatus?: TextFieldDto | null;
251
+ NewsDefaultImage?: TextFieldDto | null;
252
+ };
253
+
254
+ type ConfigSettingsItemDto = ContentItemDto & {
255
+ ConfigSettings?: ConfigSettingsDto | null;
256
+ ClusterFunding?: BagPartDto | null;
257
+ HuntingManagement?: BagPartDto | null;
258
+ LiveStock?: BagPartDto | null;
259
+ OtherLandscapeElements?: BagPartDto | null;
260
+ MainAgriculturalAreas?: BagPartDto | null;
261
+ MainCrops?: BagPartDto | null;
262
+ ActivityStatus?: BagPartDto | null;
263
+ PermissionFarmerCluster?: BagPartDto | null;
264
+ FarmingSystems?: BagPartDto | null;
265
+ Permissions?: BagPartDto | null;
266
+ };
267
+
268
+ type ContactDto = ContentPartDto & {
269
+ MainText?: TextFieldDto | null;
270
+ SubText?: TextFieldDto | null;
271
+ To?: TextFieldDto | null;
272
+ PrivacyUrl?: TextFieldDto | null;
273
+ From?: TextFieldDto | null;
274
+ };
275
+
276
+ type ContactItemDto = ContentItemDto & {
277
+ Contact?: ContactDto | null;
278
+ };
279
+
280
+ type NewResourceCollectionItemDto = ContentPartDto & {
281
+ Subtitle?: TextFieldDto | null;
282
+ Title?: TextFieldDto | null;
283
+ Text?: TextFieldDto | null;
284
+ Link?: TextFieldDto | null;
285
+ IsNewTab?: BooleanFieldDto | null;
286
+ Icon?: TextFieldDto | null;
287
+ };
288
+
289
+ type ContactCardsDto = ContentPartDto & {
290
+ MainText?: TextFieldDto | null;
291
+ SubText?: TextFieldDto | null;
292
+ Cards?: NewResourceCollectionItemDto[] | null;
293
+ };
294
+
295
+ type ContactCardsItemDto = ContentItemDto & {
296
+ ContactCards?: ContactCardsDto | null;
297
+ };
298
+
299
+ type ContainedPartDto = {
300
+ ListContentItemId?: string | null;
301
+ ListContentType?: string | null;
302
+ Order?: number;
303
+ } & ContentPartDto;
304
+
305
+ type FlowPartDto = {
306
+ Widgets?: Array<ContentItemDto> | null;
307
+ } & ContentPartDto;
308
+
309
+ type ContainerWidgetItemDto = ContentItemDto & {
310
+ TitlePart?: TitlePartDto | null;
311
+ FlowPart?: FlowPartDto | null;
312
+ };
313
+
314
+ type ContentPickerFieldDto = {
315
+ ContentItemIds?: Array<string> | null;
316
+ } & ContentFieldDto;
317
+
318
+ type ContentItemWidgetDto = ContentPartDto & {
319
+ ContentToDisplay?: ContentPickerFieldDto | null;
320
+ DisplayType?: TextFieldDto | null;
321
+ GroupId?: TextFieldDto | null;
322
+ };
323
+
324
+ type ContentItemWidgetItemDto = ContentItemDto & {
325
+ ContentItemWidget?: ContentItemWidgetDto | null;
326
+ };
327
+
328
+ type ContentMenuItemDto = ContentPartDto;
329
+
330
+ type ContentMenuItemPartDto = Record<string, any> & ContentPartDto & {
331
+ SelectedContentItem?: ContentPickerFieldDto | null;
332
+ };
333
+
334
+ type ContentMenuItemItemDto = ContentItemDto & {
335
+ ContentMenuItem?: ContentMenuItemDto | null;
336
+ ContentMenuItemPart?: ContentMenuItemPartDto | null;
337
+ };
338
+
339
+ type DateFieldDto = {
340
+ Value?: string | null;
341
+ } & ContentFieldDto;
342
+
343
+ type DateTimeFieldDto = {
344
+ Value?: string | null;
345
+ } & ContentFieldDto;
346
+
347
+ type DownloadQuestDto = ContentPartDto;
348
+
349
+ type DownloadQuestItemDto = ContentItemDto & {
350
+ DownloadQuest?: DownloadQuestDto | null;
351
+ };
352
+
353
+ type EmptyItemDto = ContentItemDto;
354
+
355
+ type EntityListDto = ContentPartDto & {
356
+ MainText?: TextFieldDto | null;
357
+ NumberofEntity?: NumericFieldDto | null;
358
+ SubText?: TextFieldDto | null;
359
+ };
360
+
361
+ type EntityListItemDto = ContentItemDto & {
362
+ EntityList?: EntityListDto | null;
363
+ };
364
+
365
+ type HtmlFieldDto = {
366
+ Html?: string | null;
367
+ } & ContentFieldDto;
368
+
369
+ type FaqDto = ContentPartDto & {
370
+ Question?: TextFieldDto | null;
371
+ Answer?: TextFieldDto | null;
372
+ Hint?: TextFieldDto | null;
373
+ AnswerText?: HtmlFieldDto | null;
374
+ };
375
+
376
+ type FaqItemDto = ContentItemDto & {
377
+ Faq?: FaqDto | null;
378
+ BagPart?: BagPartDto | null;
379
+ };
380
+
381
+ type FaqLinkDto = ContentPartDto & {
382
+ Language?: TextFieldDto | null;
383
+ };
384
+
385
+ type FaqLinkItemDto = ContentItemDto & {
386
+ FaqLink?: FaqLinkDto | null;
387
+ Link?: LinkPartDto | null;
388
+ };
389
+
390
+ type FarmerClusterDto = ContentPartDto & {
391
+ Total?: NumericFieldDto | null;
392
+ };
393
+
394
+ type FarmerClusterFinderDto = ContentPartDto;
395
+
396
+ type FarmerClusterFinderItemDto = ContentItemDto & {
397
+ FarmerClusterFinder?: FarmerClusterFinderDto | null;
398
+ };
399
+
400
+ type FarmerClusterItemDto = ContentItemDto & {
401
+ FarmerCluster?: FarmerClusterDto | null;
402
+ TitlePart?: TitlePartDto | null;
403
+ };
404
+
405
+ type FarmerClusterSettingsDto = ContentPartDto & {
406
+ Total?: NumericFieldDto | null;
407
+ };
408
+
409
+ type FarmerClusterSettingsItemDto = ContentItemDto & {
410
+ FarmerClusterSettings?: FarmerClusterSettingsDto | null;
411
+ };
412
+
413
+ type LinkFieldDto = {
414
+ Url?: string | null;
415
+ Text?: string | null;
416
+ Target?: string | null;
417
+ } & ContentFieldDto;
418
+
419
+ type FeatureItemDto = ContentPartDto & {
420
+ Name?: TextFieldDto | null;
421
+ Description?: TextFieldDto | null;
422
+ Image?: MediaFieldDto | null;
423
+ Link?: LinkFieldDto | null;
424
+ };
425
+
426
+ type FeatureItemItemDto = ContentItemDto & {
427
+ FeatureItem?: FeatureItemDto | null;
428
+ };
429
+
430
+ type FeatureRowDto = ContentPartDto & {
431
+ MainText?: TextFieldDto | null;
432
+ SubText?: TextFieldDto | null;
433
+ };
434
+
435
+ type FeatureRowItemDto = ContentItemDto & {
436
+ FeatureRow?: FeatureRowDto | null;
437
+ FeatureItems?: BagPartDto | null;
438
+ };
439
+
440
+ type FeatureRowWithImageDto = ContentPartDto & {
441
+ MainText?: TextFieldDto | null;
442
+ SubText?: TextFieldDto | null;
443
+ Image?: MediaFieldDto | null;
444
+ };
445
+
446
+ type FeatureRowWithImageItemDto = ContentItemDto & {
447
+ FeatureRowWithImage?: FeatureRowWithImageDto | null;
448
+ };
449
+
450
+ type FeatureRowWithMultipleImagesDto = ContentPartDto & {
451
+ MainText?: TextFieldDto | null;
452
+ SubText?: TextFieldDto | null;
453
+ };
454
+
455
+ type FeatureRowWithMultipleImagesItemDto = ContentItemDto & {
456
+ FeatureRowWithMultipleImages?: FeatureRowWithMultipleImagesDto | null;
457
+ Images?: BagPartDto | null;
458
+ };
459
+
460
+ type FigureDto = ContentPartDto & {
461
+ Image?: MediaFieldDto | null;
462
+ AlternateText?: TextFieldDto | null;
463
+ Caption?: TextFieldDto | null;
464
+ };
465
+
466
+ type FigureItemDto = ContentItemDto & {
467
+ Figure?: FigureDto | null;
468
+ };
469
+
470
+ declare enum FlowAlignment {
471
+ "_0" = 0,
472
+ "_1" = 1,
473
+ "_2" = 2,
474
+ "_3" = 3
475
+ }
476
+
477
+ type FlowMetadataDto = {
478
+ Alignment?: FlowAlignment;
479
+ Size?: number;
480
+ } & ContentPartDto;
481
+
482
+ type FooterDto = ContentPartDto;
483
+
484
+ type FooterListDto = ContentPartDto & {
485
+ Name?: TextFieldDto | null;
486
+ };
487
+
488
+ type FooterListItemDto = ContentItemDto & {
489
+ FooterList?: FooterListDto | null;
490
+ BagPart?: BagPartDto | null;
491
+ };
492
+
493
+ type FooterSettingsDto = ContentPartDto & {
494
+ Copyrights?: TextFieldDto | null;
495
+ TitleTagLine?: TextFieldDto | null;
496
+ };
497
+
498
+ type FooterSettingsItemDto = ContentItemDto & {
499
+ FooterSettings?: FooterSettingsDto | null;
500
+ Links?: BagPartDto | null;
501
+ Terms?: LinkPartDto | null;
502
+ Privacy?: LinkPartDto | null;
503
+ Facebook?: LinkPartDto | null;
504
+ Twitter?: LinkPartDto | null;
505
+ FooterLinks?: BagPartDto | null;
506
+ SocialLinks?: BagPartDto | null;
507
+ };
508
+
509
+ type FundingInfoDto = ContentPartDto;
510
+
511
+ type FundingSettingsDto = ContentPartDto & {
512
+ Image?: MediaFieldDto | null;
513
+ Description?: TextFieldDto | null;
514
+ IsVisible?: BooleanFieldDto | null;
515
+ };
516
+
517
+ type FundingSettingsItemDto = ContentItemDto & {
518
+ FundingSettings?: FundingSettingsDto | null;
519
+ FundingImages?: BagPartDto | null;
520
+ };
521
+
522
+ type GalleryDto = ContentPartDto;
523
+
524
+ type GalleryEmbedItemDto = ContentPartDto & {
525
+ EmbedURL?: TextFieldDto | null;
526
+ Title?: TextFieldDto | null;
527
+ AlternateText?: TextFieldDto | null;
528
+ };
529
+
530
+ type GalleryEmbedItemItemDto = ContentItemDto & {
531
+ GalleryEmbedItem?: GalleryEmbedItemDto | null;
532
+ };
533
+
534
+ type GalleryItemDto = ContentItemDto & {
535
+ Gallery?: GalleryDto | null;
536
+ BagPart?: BagPartDto | null;
537
+ TitlePart?: TitlePartDto | null;
538
+ };
539
+
540
+ type GalleryMediaItemDto = ContentPartDto & {
541
+ Image?: MediaFieldDto | null;
542
+ AlternateText?: TextFieldDto | null;
543
+ };
544
+
545
+ type GalleryMediaItemItemDto = ContentItemDto & {
546
+ GalleryMediaItem?: GalleryMediaItemDto | null;
547
+ };
548
+
549
+ type GeoWikiSettingsDto = ContentPartDto & {
550
+ ApiUrl?: TextFieldDto | null;
551
+ Host?: TextFieldDto | null;
552
+ IdentityUrl?: TextFieldDto | null;
553
+ ClientUrl?: TextFieldDto | null;
554
+ IsActive?: BooleanFieldDto | null;
555
+ CanLogin?: BooleanFieldDto | null;
556
+ Logo?: MediaFieldDto | null;
557
+ BrandName?: TextFieldDto | null;
558
+ Theme?: TextFieldDto | null;
559
+ ShowInternalLogin?: BooleanFieldDto | null;
560
+ ShowGuidedTour?: BooleanFieldDto | null;
561
+ GoogleAnalyticsId?: TextFieldDto | null;
562
+ CanSignup?: BooleanFieldDto | null;
563
+ FavIcon?: MediaFieldDto | null;
564
+ HasStickyNavBar?: BooleanFieldDto | null;
565
+ };
566
+
567
+ type GeoWikiSettingsItemDto = ContentItemDto & {
568
+ GeoWikiSettings?: GeoWikiSettingsDto | null;
569
+ TitlePart?: TitlePartDto | null;
570
+ };
571
+
572
+ type HeaderDto = ContentPartDto & {
573
+ HeadingText?: TextFieldDto | null;
574
+ SubHeadingText?: TextFieldDto | null;
575
+ HeadingInfo?: TextFieldDto | null;
576
+ };
577
+
578
+ type HeaderItemDto = ContentItemDto & {
579
+ Header?: HeaderDto | null;
580
+ };
581
+
582
+ type HeadingTextDto = ContentPartDto & {
583
+ Type?: MultiTextFieldDto | null;
584
+ Tag?: TextFieldDto | null;
585
+ TextBody?: HtmlFieldDto | null;
586
+ BottomPadding?: TextFieldDto | null;
587
+ };
588
+
589
+ type HeadingTextItemDto = ContentItemDto & {
590
+ HeadingText?: HeadingTextDto | null;
591
+ TitlePart?: TitlePartDto | null;
592
+ LinkPart?: LinkPartDto | null;
593
+ };
594
+
595
+ type HeroCenterTextDto = ContentPartDto & {
596
+ Image?: MediaFieldDto | null;
597
+ MainText?: TextFieldDto | null;
598
+ SubText?: TextFieldDto | null;
599
+ };
600
+
601
+ type HeroCenterTextItemDto = ContentItemDto & {
602
+ HeroCenterText?: HeroCenterTextDto | null;
603
+ Buttons?: BagPartDto | null;
604
+ };
605
+
606
+ type HeroDto = ContentPartDto & {
607
+ Type?: TextFieldDto | null;
608
+ Description?: TextFieldDto | null;
609
+ Images?: MediaFieldDto | null;
610
+ Title?: TextFieldDto | null;
611
+ ImageDirection?: TextFieldDto | null;
612
+ Logo?: MediaFieldDto | null;
613
+ GooglePlayUrl?: TextFieldDto | null;
614
+ AppStoreUrl?: TextFieldDto | null;
615
+ LayoutVersion?: NumericFieldDto | null;
616
+ };
617
+
618
+ type HeroItemDto = ContentItemDto & {
619
+ Hero?: HeroDto | null;
620
+ Buttons?: BagPartDto | null;
621
+ };
622
+
623
+ type HeroWidgetDto = ContentPartDto & {
624
+ MainText?: TextFieldDto | null;
625
+ Images?: MediaFieldDto | null;
626
+ SubText?: TextFieldDto | null;
627
+ };
628
+
629
+ type HeroWidgetItemDto = ContentItemDto & {
630
+ HeroWidget?: HeroWidgetDto | null;
631
+ TitlePart?: TitlePartDto | null;
632
+ Buttons?: BagPartDto | null;
633
+ };
634
+
635
+ type HtmlBodyPartDto = {
636
+ Html?: string | null;
637
+ } & ContentPartDto;
638
+
639
+ type HtmlLinkDto = ContentPartDto & {
640
+ Url?: LinkFieldDto | null;
641
+ NewTab?: BooleanFieldDto | null;
642
+ Type?: TextFieldDto | null;
643
+ };
644
+
645
+ type HtmlLinkItemDto = ContentItemDto & {
646
+ HtmlLink?: HtmlLinkDto | null;
647
+ };
648
+
649
+ type HtmlMenuItemDto = ContentPartDto;
650
+
651
+ type HtmlMenuItemPartDto = {
652
+ Url?: string | null;
653
+ Target?: string | null;
654
+ Html?: string | null;
655
+ } & ContentPartDto;
656
+
657
+ type HtmlMenuItemItemDto = ContentItemDto & {
658
+ HtmlMenuItem?: HtmlMenuItemDto | null;
659
+ HtmlMenuItemPart?: HtmlMenuItemPartDto | null;
660
+ };
661
+
662
+ type HtmlWidgetItemDto = ContentItemDto & {
663
+ HtmlBodyPart?: HtmlBodyPartDto | null;
664
+ };
665
+
666
+ type ImageCarouselDto = ContentPartDto;
667
+
668
+ type ImageCarouselItemDto = ContentItemDto & {
669
+ ImageCarousel?: ImageCarouselDto | null;
670
+ BagPart?: BagPartDto | null;
671
+ };
672
+
673
+ type ImageDto = ContentPartDto & {
674
+ Image?: MediaFieldDto | null;
675
+ AlternateText?: TextFieldDto | null;
676
+ LinkTo?: TextFieldDto | null;
677
+ };
678
+
679
+ type ImageItemDto = ContentItemDto & {
680
+ Image?: ImageDto | null;
681
+ };
682
+
683
+ type ImageWithTextDto = ContentPartDto & {
684
+ Image?: MediaFieldDto | null;
685
+ Text?: TextFieldDto | null;
686
+ LinkUrl?: LinkFieldDto | null;
687
+ };
688
+
689
+ type ImageWithTextItemDto = ContentItemDto & {
690
+ ImageWithText?: ImageWithTextDto | null;
691
+ };
692
+
693
+ type IntroTourSettingsDto = ContentPartDto;
694
+
695
+ type LiquidPartDto = {
696
+ Liquid?: string | null;
697
+ } & ContentPartDto;
698
+
699
+ type IntroTourSettingsItemDto = ContentItemDto & {
700
+ IntroTourSettings?: IntroTourSettingsDto | null;
701
+ LiquidPart?: LiquidPartDto | null;
702
+ };
703
+
704
+ type KeyValueItemDto = ContentPartDto & {
705
+ Key?: TextFieldDto | null;
706
+ Value?: TextFieldDto | null;
707
+ };
708
+
709
+ type KeyValueItemItemDto = ContentItemDto & {
710
+ KeyValueItem?: KeyValueItemDto | null;
711
+ };
712
+
713
+ type LayerDto = ContentPartDto & {
714
+ Url?: TextFieldDto | null;
715
+ CSSName?: TextFieldDto | null;
716
+ LayerName?: TextFieldDto | null;
717
+ Order?: NumericFieldDto | null;
718
+ Type?: TextFieldDto | null;
719
+ Color?: TextFieldDto | null;
720
+ Icon?: TextFieldDto | null;
721
+ ImageProperty?: TextFieldDto | null;
722
+ Properties?: TextFieldDto | null;
723
+ ShowPopup?: BooleanFieldDto | null;
724
+ };
725
+
726
+ type LayerInfoDto = ContentPartDto & {
727
+ IsVisible?: BooleanFieldDto | null;
728
+ Name?: TextFieldDto | null;
729
+ Overview?: TextFieldDto | null;
730
+ Description?: TextFieldDto | null;
731
+ Function?: TextFieldDto | null;
732
+ Resolution?: TextFieldDto | null;
733
+ Source?: TextFieldDto | null;
734
+ DateofContent?: TextFieldDto | null;
735
+ Cautions?: TextFieldDto | null;
736
+ Citation?: TextFieldDto | null;
737
+ GeographicCoverage?: TextFieldDto | null;
738
+ License?: TextFieldDto | null;
739
+ HoverCardText?: TextFieldDto | null;
740
+ SourceLink?: LinkFieldDto | null;
741
+ CitationLink?: LinkFieldDto | null;
742
+ };
743
+
744
+ type LayerItemDto = ContentItemDto & {
745
+ Layer?: LayerDto | null;
746
+ TitlePart?: TitlePartDto | null;
747
+ LayerInfo?: LayerInfoDto | null;
748
+ };
749
+
750
+ type LayerMetadataDto = {
751
+ RenderTitle?: boolean;
752
+ Position?: number;
753
+ Zone?: string | null;
754
+ Layer?: string | null;
755
+ } & ContentPartDto;
756
+
757
+ type LayerTypeDto = ContentPartDto;
758
+
759
+ type LayerTypeItemDto = ContentItemDto & {
760
+ LayerType?: LayerTypeDto | null;
761
+ TitlePart?: TitlePartDto | null;
762
+ };
763
+
764
+ type LinkMenuItemDto = ContentPartDto & {
765
+ IsNewTab?: BooleanFieldDto | null;
766
+ };
767
+
768
+ type LinkMenuItemPartDto = {
769
+ Url?: string | null;
770
+ Target?: string | null;
771
+ } & ContentPartDto;
772
+
773
+ type LinkMenuItemItemDto = ContentItemDto & {
774
+ LinkMenuItem?: LinkMenuItemDto | null;
775
+ LinkMenuItemPart?: LinkMenuItemPartDto | null;
776
+ };
777
+
778
+ type LiquidWidgetItemDto = ContentItemDto & {
779
+ LiquidPart?: LiquidPartDto | null;
780
+ };
781
+
782
+ type ListPartDto = Record<string, any> & ContentPartDto;
783
+
784
+ type LocationPartDto = ContentPartDto & {
785
+ Latitude?: TextFieldDto | null;
786
+ Longitude?: TextFieldDto | null;
787
+ Zoom?: NumericFieldDto | null;
788
+ };
789
+
790
+ type MapConfigDto = ContentPartDto;
791
+
792
+ type MapHeroWidgetDto = ContentPartDto & {
793
+ MainText?: TextFieldDto | null;
794
+ SubText?: TextFieldDto | null;
795
+ };
796
+
797
+ type MapHeroWidgetItemDto = ContentItemDto & {
798
+ MapHeroWidget?: MapHeroWidgetDto | null;
799
+ LocationPart?: LocationPartDto | null;
800
+ };
801
+
802
+ type MapMenuItemDto = ContentPartDto & {
803
+ IconCSS?: TextFieldDto | null;
804
+ IsVisible?: BooleanFieldDto | null;
805
+ Order?: NumericFieldDto | null;
806
+ };
807
+
808
+ type MapMenuItemItemDto = ContentItemDto & {
809
+ MapMenuItem?: MapMenuItemDto | null;
810
+ BagPart?: BagPartDto | null;
811
+ TitlePart?: TitlePartDto | null;
812
+ };
813
+
814
+ type MapSettingsDto = ContentPartDto;
815
+
816
+ type MapSettingsItemDto = ContentItemDto & {
817
+ MapSettings?: MapSettingsDto | null;
818
+ LocationPart?: LocationPartDto | null;
819
+ };
820
+
821
+ type MarkdownBodyPartDto = {
822
+ Markdown?: string | null;
823
+ } & ContentPartDto;
824
+
825
+ type MarkdownFieldDto = {
826
+ Markdown?: string | null;
827
+ } & ContentFieldDto;
828
+
829
+ type MarkdownWidgetItemDto = ContentItemDto & {
830
+ MarkdownBodyPart?: MarkdownBodyPartDto | null;
831
+ };
832
+
833
+ type MenuDto = ContentPartDto;
834
+
835
+ type MenuItemsListPartDto = {
836
+ MenuItems?: Array<ContentItemDto> | null;
837
+ } & ContentPartDto;
838
+
839
+ type MenuPartDto = Record<string, any> & ContentPartDto;
840
+
841
+ type MenuItemDto = ContentItemDto & {
842
+ Menu?: MenuDto | null;
843
+ TitlePart?: TitlePartDto | null;
844
+ AliasPart?: AliasPartDto | null;
845
+ MenuPart?: MenuPartDto | null;
846
+ MenuItemsListPart?: MenuItemsListPartDto | null;
847
+ };
848
+
849
+ type MenuItemPartDto = ContentPartDto;
850
+
851
+ type MenuWidgetItemDto = ContentItemDto;
852
+
853
+ type NewContactUsDto = ContentPartDto & {
854
+ From?: TextFieldDto | null;
855
+ PrivacyUrl?: TextFieldDto | null;
856
+ To?: TextFieldDto | null;
857
+ };
858
+
859
+ type NewContactUsItemDto = ContentItemDto & {
860
+ NewContactUs?: NewContactUsDto | null;
861
+ };
862
+
863
+ type NewResourceCollectionItemItemDto = ContentItemDto & {
864
+ NewResourceCollectionItem?: NewResourceCollectionItemDto | null;
865
+ };
866
+
867
+ type NewsFeedDto = ContentPartDto;
868
+
869
+ type NewsFeedItemDto = ContentItemDto & {
870
+ NewsFeed?: NewsFeedDto | null;
871
+ };
872
+
873
+ type NewsFeedPreviewDto = ContentPartDto;
874
+
875
+ type NewsFeedPreviewItemDto = ContentItemDto & {
876
+ NewsFeedPreview?: NewsFeedPreviewDto | null;
877
+ };
878
+
879
+ type NewsLetterDto = ContentPartDto & {
880
+ MainText?: TextFieldDto | null;
881
+ MailChimpListId?: TextFieldDto | null;
882
+ SubText?: TextFieldDto | null;
883
+ PrivacyUrl?: TextFieldDto | null;
884
+ };
885
+
886
+ type NewsLetterItemDto = ContentItemDto & {
887
+ NewsLetter?: NewsLetterDto | null;
888
+ };
889
+
890
+ type NewTestimonialsDto = ContentPartDto;
891
+
892
+ type NewTestimonialsItemDto = ContentItemDto & {
893
+ NewTestimonials?: NewTestimonialsDto | null;
894
+ BagPart?: BagPartDto | null;
895
+ };
896
+
897
+ type PageDto = ContentPartDto & {
898
+ IsMainPage?: BooleanFieldDto | null;
899
+ IsVisible?: BooleanFieldDto | null;
900
+ };
901
+
902
+ type PageItemDto = ContentItemDto & {
903
+ Page?: PageDto | null;
904
+ TitlePart?: TitlePartDto | null;
905
+ FlowPart?: FlowPartDto | null;
906
+ };
907
+
908
+ type ParagraphDto = ContentPartDto & {
909
+ Text?: TextFieldDto | null;
910
+ };
911
+
912
+ type ParagraphItemDto = ContentItemDto & {
913
+ Paragraph?: ParagraphDto | null;
914
+ };
915
+
916
+ type PermissionsDto = ContentPartDto;
917
+
918
+ type PermissionsItemDto = ContentItemDto & {
919
+ Permissions?: PermissionsDto | null;
920
+ AllPermissions?: BagPartDto | null;
921
+ };
922
+
923
+ type PreviewPartDto = Record<string, any> & ContentPartDto;
924
+
925
+ type PublicationDto = ContentPartDto & {
926
+ Image?: MediaFieldDto | null;
927
+ Author?: TextFieldDto | null;
928
+ Category?: TextFieldDto | null;
929
+ Description?: TextFieldDto | null;
930
+ };
931
+
932
+ type PublishLaterPartDto = {
933
+ ScheduledPublishUtc?: string | null;
934
+ } & ContentPartDto;
935
+
936
+ type PublicationItemDto = ContentItemDto & {
937
+ Publication?: PublicationDto | null;
938
+ HtmlBodyPart?: HtmlBodyPartDto | null;
939
+ PublishLaterPart?: PublishLaterPartDto | null;
940
+ TitlePart?: TitlePartDto | null;
941
+ AutoroutePart?: AutoroutePartDto | null;
942
+ };
943
+
944
+ type PublicationSettingsDto = ContentPartDto & {
945
+ IsVisible?: BooleanFieldDto | null;
946
+ Header?: TextFieldDto | null;
947
+ HeadingInfo?: TextFieldDto | null;
948
+ };
949
+
950
+ type PublicationSettingsItemDto = ContentItemDto & {
951
+ PublicationSettings?: PublicationSettingsDto | null;
952
+ };
953
+
954
+ type QueriesItemsDto = Array<ContentItemDto> | null;
955
+
956
+ type QuestMapDto = ContentPartDto;
957
+
958
+ type QuestMapItemDto = ContentItemDto & {
959
+ QuestMap?: QuestMapDto | null;
960
+ };
961
+
962
+ type ResourceCollectionItemDto = ContentPartDto & {
963
+ Title?: TextFieldDto | null;
964
+ Description?: TextFieldDto | null;
965
+ LinkUrl?: LinkFieldDto | null;
966
+ };
967
+
968
+ type ResourceCollectionItemItemDto = ContentItemDto & {
969
+ ResourceCollectionItem?: ResourceCollectionItemDto | null;
970
+ };
971
+
972
+ type ResourceCollectionsDto = ContentPartDto;
973
+
974
+ type ResourceCollectionsItemDto = ContentItemDto & {
975
+ ResourceCollections?: ResourceCollectionsDto | null;
976
+ BagPart?: BagPartDto | null;
977
+ };
978
+
979
+ type ResourceQuickFindDto = ContentPartDto & {
980
+ MainText?: TextFieldDto | null;
981
+ SubText?: TextFieldDto | null;
982
+ };
983
+
984
+ type ResourceQuickFindItemDto = ContentItemDto & {
985
+ ResourceQuickFind?: ResourceQuickFindDto | null;
986
+ };
987
+
988
+ type RowDto = ContentPartDto;
989
+
990
+ type RowItemDto = ContentItemDto & {
991
+ Row?: RowDto | null;
992
+ BagPart?: BagPartDto | null;
993
+ TitlePart?: TitlePartDto | null;
994
+ };
995
+
996
+ type RowWithImagesDto = ContentPartDto & {
997
+ MainText?: TextFieldDto | null;
998
+ SubText?: TextFieldDto | null;
999
+ };
1000
+
1001
+ type RowWithImagesItemDto = ContentItemDto & {
1002
+ RowWithImages?: RowWithImagesDto | null;
1003
+ Images?: BagPartDto | null;
1004
+ };
1005
+
1006
+ type SearchDto = ContentPartDto & {
1007
+ Numberofsearchitems?: NumericFieldDto | null;
1008
+ Searchdisplayname?: TextFieldDto | null;
1009
+ };
1010
+
1011
+ type SearchItemDto = ContentItemDto & {
1012
+ Search?: SearchDto | null;
1013
+ };
1014
+
1015
+ type SelectQuestDto = ContentPartDto;
1016
+
1017
+ type SelectQuestItemDto = ContentItemDto & {
1018
+ SelectQuest?: SelectQuestDto | null;
1019
+ };
1020
+
1021
+ type SimpleActionDto = ContentPartDto & {
1022
+ Tag?: TextFieldDto | null;
1023
+ MainText?: TextFieldDto | null;
1024
+ SubText?: TextFieldDto | null;
1025
+ };
1026
+
1027
+ type SimpleActionItemDto = ContentItemDto & {
1028
+ SimpleAction?: SimpleActionDto | null;
1029
+ Buttons?: BagPartDto | null;
1030
+ };
1031
+
1032
+ type SimpleActionListDto = ContentPartDto;
1033
+
1034
+ type SimpleActionListItemDto = ContentItemDto & {
1035
+ SimpleActionList?: SimpleActionListDto | null;
1036
+ ActionItems?: BagPartDto | null;
1037
+ };
1038
+
1039
+ type SimpleCenteredCallToActionDto = ContentPartDto & {
1040
+ MainText?: TextFieldDto | null;
1041
+ SubText?: TextFieldDto | null;
1042
+ };
1043
+
1044
+ type SimpleCenteredCallToActionItemDto = ContentItemDto & {
1045
+ SimpleCenteredCallToAction?: SimpleCenteredCallToActionDto | null;
1046
+ Buttons?: BagPartDto | null;
1047
+ };
1048
+
1049
+ type SpecialFeaturesDto = ContentPartDto & {
1050
+ MainText?: TextFieldDto | null;
1051
+ SubText?: TextFieldDto | null;
1052
+ };
1053
+
1054
+ type SpecialFeaturesItemDto = ContentItemDto & {
1055
+ SpecialFeatures?: SpecialFeaturesDto | null;
1056
+ FeatureItems?: BagPartDto | null;
1057
+ };
1058
+
1059
+ type StatisticsItemDto = ContentPartDto & {
1060
+ MainText?: TextFieldDto | null;
1061
+ SubText?: TextFieldDto | null;
1062
+ };
1063
+
1064
+ type StatisticsItemItemDto = ContentItemDto & {
1065
+ StatisticsItem?: StatisticsItemDto | null;
1066
+ };
1067
+
1068
+ type StatsDto = ContentPartDto & {
1069
+ MainText?: TextFieldDto | null;
1070
+ SubText?: TextFieldDto | null;
1071
+ };
1072
+
1073
+ type StatsItemDto = ContentItemDto & {
1074
+ Stats?: StatsDto | null;
1075
+ BagPart?: BagPartDto | null;
1076
+ };
1077
+
1078
+ type SubMenuItemDto = ContentPartDto & {
1079
+ Name?: TextFieldDto | null;
1080
+ Url?: TextFieldDto | null;
1081
+ IconName?: TextFieldDto | null;
1082
+ IsCurrent?: BooleanFieldDto | null;
1083
+ };
1084
+
1085
+ type SubMenuItemItemDto = ContentItemDto & {
1086
+ SubMenuItem?: SubMenuItemDto | null;
1087
+ };
1088
+
1089
+ type SubtitleH3BodyDto = ContentPartDto & {
1090
+ Content?: HtmlFieldDto | null;
1091
+ Subtitle?: TextFieldDto | null;
1092
+ BackgroundColor?: TextFieldDto | null;
1093
+ ImageClass?: TextFieldDto | null;
1094
+ };
1095
+
1096
+ type SubtitleH3BodyInternalLinkListDto = ContentPartDto & {
1097
+ Subtitle?: TextFieldDto | null;
1098
+ TextBody?: TextFieldDto | null;
1099
+ Content?: HtmlFieldDto | null;
1100
+ };
1101
+
1102
+ type SubtitleH3BodyInternalLinkListItemDto = ContentItemDto & {
1103
+ SubtitleH3BodyInternalLinkList?: SubtitleH3BodyInternalLinkListDto | null;
1104
+ BagPart?: BagPartDto | null;
1105
+ TitlePart?: TitlePartDto | null;
1106
+ };
1107
+
1108
+ type SubtitleH3BodyItemDto = ContentItemDto & {
1109
+ SubtitleH3Body?: SubtitleH3BodyDto | null;
1110
+ TitlePart?: TitlePartDto | null;
1111
+ LinkPart?: LinkPartDto | null;
1112
+ };
1113
+
1114
+ type SubtitleH3FaqDto = ContentPartDto & {
1115
+ Subtitle?: TextFieldDto | null;
1116
+ Type?: TextFieldDto | null;
1117
+ Description?: TextFieldDto | null;
1118
+ BackgroundColor?: TextFieldDto | null;
1119
+ };
1120
+
1121
+ type SubtitleH3FaqItemDto = ContentItemDto & {
1122
+ SubtitleH3Faq?: SubtitleH3FaqDto | null;
1123
+ TitlePart?: TitlePartDto | null;
1124
+ BagPart?: BagPartDto | null;
1125
+ };
1126
+
1127
+ type SubtitleH3ResourceCollectionsDto = ContentPartDto & {
1128
+ Subtitle?: TextFieldDto | null;
1129
+ };
1130
+
1131
+ type SubtitleH3ResourceCollectionsItemDto = ContentItemDto & {
1132
+ SubtitleH3ResourceCollections?: SubtitleH3ResourceCollectionsDto | null;
1133
+ TitlePart?: TitlePartDto | null;
1134
+ BagPart?: BagPartDto | null;
1135
+ };
1136
+
1137
+ type TaxonomyItemDto = ContentItemDto & {
1138
+ TitlePart?: TitlePartDto | null;
1139
+ AliasPart?: AliasPartDto | null;
1140
+ AutoroutePart?: AutoroutePartDto | null;
1141
+ };
1142
+
1143
+ type TestimonialDto = ContentPartDto & {
1144
+ Info?: TextFieldDto | null;
1145
+ Name?: TextFieldDto | null;
1146
+ Title?: TextFieldDto | null;
1147
+ Image?: MediaFieldDto | null;
1148
+ };
1149
+
1150
+ type TestimonialItemDto = ContentItemDto & {
1151
+ Testimonial?: TestimonialDto | null;
1152
+ };
1153
+
1154
+ type TestimonialListDto = ContentPartDto;
1155
+
1156
+ type TestimonialListItemDto = ContentItemDto & {
1157
+ TestimonialList?: TestimonialListDto | null;
1158
+ BagPart?: BagPartDto | null;
1159
+ };
1160
+
1161
+ type TimeFieldDto = {
1162
+ Value?: string | null;
1163
+ } & ContentFieldDto;
1164
+
1165
+ type UpdateUserInfoDto = ContentPartDto;
1166
+
1167
+ type UpdateUserInfoItemDto = ContentItemDto & {
1168
+ UpdateUserInfo?: UpdateUserInfoDto | null;
1169
+ };
1170
+
1171
+ type UserInfoDto = ContentPartDto;
1172
+
1173
+ type UserInfoItemDto = ContentItemDto & {
1174
+ UserInfo?: UserInfoDto | null;
1175
+ };
1176
+
1177
+ type UserPickerFieldDto = {
1178
+ UserIds?: Array<string> | null;
1179
+ } & ContentFieldDto;
1180
+
1181
+ type WidgetMetadataDto = {
1182
+ RenderTitle?: boolean;
1183
+ Position?: string | null;
1184
+ } & ContentPartDto;
1185
+
1186
+ type WidgetsListPartDto = {
1187
+ Widgets?: Record<string, Array<ContentItemDto>> | null;
1188
+ } & ContentPartDto;
1189
+
1190
+ type YoutubeFieldDto = {
1191
+ EmbeddedAddress?: string | null;
1192
+ RawAddress?: string | null;
1193
+ } & ContentFieldDto;
1194
+
1195
+ declare class DefaultService {
1196
+ /**
1197
+ * @param contentItemId
1198
+ * @returns any
1199
+ * @throws ApiError
1200
+ */
1201
+ static getApiContent(contentItemId: string | null): CancelablePromise<any>;
1202
+ /**
1203
+ * @param contentItemId
1204
+ * @returns any
1205
+ * @throws ApiError
1206
+ */
1207
+ static deleteApiContent(contentItemId: string | null): CancelablePromise<any>;
1208
+ /**
1209
+ * @param draft
1210
+ * @param requestBody
1211
+ * @returns any
1212
+ * @throws ApiError
1213
+ */
1214
+ static postApiContent(draft?: boolean, requestBody?: ContentItemDto): CancelablePromise<any>;
1215
+ }
1216
+
1217
+ declare class QueryApiService {
1218
+ /**
1219
+ * @param name
1220
+ * @param parameters
1221
+ * @returns QueriesItemsDto
1222
+ * @throws ApiError
1223
+ */
1224
+ static apiQueryPost(name: string, parameters?: string | null): CancelablePromise<QueriesItemsDto>;
1225
+ /**
1226
+ * @param name
1227
+ * @param parameters
1228
+ * @returns QueriesItemsDto
1229
+ * @throws ApiError
1230
+ */
1231
+ static apiQueryGet(name: string, parameters?: string | null): CancelablePromise<QueriesItemsDto>;
1232
+ }
1233
+
1234
+ declare class SettingsService {
1235
+ /**
1236
+ * @param settingsType
1237
+ * @returns binary
1238
+ * @throws ApiError
1239
+ */
1240
+ static settingsGetSiteSettings(settingsType: string): CancelablePromise<Blob>;
1241
+ /**
1242
+ * @returns binary
1243
+ * @throws ApiError
1244
+ */
1245
+ static settingsGetDefaultSiteSettings(): CancelablePromise<Blob>;
1246
+ /**
1247
+ * @returns binary
1248
+ * @throws ApiError
1249
+ */
1250
+ static settingsGetMenu(): CancelablePromise<Blob>;
1251
+ }
1252
+
1253
+ export { type AdditionalStylingPartDto, type AliasPartDto, ApiError, type ApplicationDto, type ApplicationItemDto, type AutoroutePartDto, type BackgroundPartDto, type BagPartDto, type BannerFollowLinksDto, type BannerFollowLinksItemDto, type BooleanFieldDto, CancelError, CancelablePromise, type CardDto, type CardGridDto, type CardGridItemDto, type CardItemDto, type CheckboxItemDto, type CheckboxItemItemDto, type ClusterFilterItemsDto, type ClusterFilterItemsItemDto, type ClusterFilterSettingsDto, type ClusterFilterSettingsItemDto, type ClusterSortingItemsDto, type ClusterSortingItemsItemDto, type ColumnDto, type ColumnItemDto, type CommonPartDto, type ConfigSettingsDto, type ConfigSettingsItemDto, type ContactCardsDto, type ContactCardsItemDto, type ContactDto, type ContactItemDto, type ContainedPartDto, type ContainerWidgetItemDto, type ContentElementDto, type ContentFieldDto, type ContentItemDto, type ContentItemWidgetDto, type ContentItemWidgetItemDto, type ContentMenuItemDto, type ContentMenuItemItemDto, type ContentMenuItemPartDto, type ContentPartDto, type ContentPickerFieldDto, type DateFieldDto, type DateTimeFieldDto, DefaultService, type DownloadQuestDto, type DownloadQuestItemDto, type EmptyItemDto, type EntityListDto, type EntityListItemDto, type FaqDto, type FaqItemDto, type FaqLinkDto, type FaqLinkItemDto, type FarmerClusterDto, type FarmerClusterFinderDto, type FarmerClusterFinderItemDto, type FarmerClusterItemDto, type FarmerClusterSettingsDto, type FarmerClusterSettingsItemDto, type FeatureItemDto, type FeatureItemItemDto, type FeatureRowDto, type FeatureRowItemDto, type FeatureRowWithImageDto, type FeatureRowWithImageItemDto, type FeatureRowWithMultipleImagesDto, type FeatureRowWithMultipleImagesItemDto, type FigureDto, type FigureItemDto, FlowAlignment, type FlowMetadataDto, type FlowPartDto, type FooterDto, type FooterListDto, type FooterListItemDto, type FooterSettingsDto, type FooterSettingsItemDto, type FundingInfoDto, type FundingSettingsDto, type FundingSettingsItemDto, type GalleryDto, type GalleryEmbedItemDto, type GalleryEmbedItemItemDto, type GalleryItemDto, type GalleryMediaItemDto, type GalleryMediaItemItemDto, type GeoWikiSettingsDto, type GeoWikiSettingsItemDto, type HeaderDto, type HeaderItemDto, type HeadingTextDto, type HeadingTextItemDto, type HeroCenterTextDto, type HeroCenterTextItemDto, type HeroDto, type HeroItemDto, type HeroWidgetDto, type HeroWidgetItemDto, type HtmlBodyPartDto, type HtmlFieldDto, type HtmlLinkDto, type HtmlLinkItemDto, type HtmlMenuItemDto, type HtmlMenuItemItemDto, type HtmlMenuItemPartDto, type HtmlWidgetItemDto, type ImageCarouselDto, type ImageCarouselItemDto, type ImageDto, type ImageItemDto, type ImageWithTextDto, type ImageWithTextItemDto, type IntroTourSettingsDto, type IntroTourSettingsItemDto, type KeyValueItemDto, type KeyValueItemItemDto, type LayerDto, type LayerInfoDto, type LayerItemDto, type LayerMetadataDto, type LayerTypeDto, type LayerTypeItemDto, type LinkFieldDto, type LinkMenuItemDto, type LinkMenuItemItemDto, type LinkMenuItemPartDto, type LinkPartDto, type LiquidPartDto, type LiquidWidgetItemDto, type ListPartDto, type LocationPartDto, type MapConfigDto, type MapHeroWidgetDto, type MapHeroWidgetItemDto, type MapMenuItemDto, type MapMenuItemItemDto, type MapSettingsDto, type MapSettingsItemDto, type MarkdownBodyPartDto, type MarkdownFieldDto, type MarkdownWidgetItemDto, type MediaFieldDto, type MenuDto, type MenuItemDto, type MenuItemPartDto, type MenuItemsListPartDto, type MenuPartDto, type MenuWidgetItemDto, type MultiTextFieldDto, type NewContactUsDto, type NewContactUsItemDto, type NewResourceCollectionItemDto, type NewResourceCollectionItemItemDto, type NewTestimonialsDto, type NewTestimonialsItemDto, type NewsFeedDto, type NewsFeedItemDto, type NewsFeedPreviewDto, type NewsFeedPreviewItemDto, type NewsLetterDto, type NewsLetterItemDto, type NumericFieldDto, OpenAPI, type OpenAPIConfig, type PageDto, type PageItemDto, type ParagraphDto, type ParagraphItemDto, type PermissionsDto, type PermissionsItemDto, type PreviewPartDto, type PublicationDto, type PublicationItemDto, type PublicationSettingsDto, type PublicationSettingsItemDto, type PublishLaterPartDto, type QueriesItemsDto, QueryApiService, type QuestMapDto, type QuestMapItemDto, type ResourceCollectionItemDto, type ResourceCollectionItemItemDto, type ResourceCollectionsDto, type ResourceCollectionsItemDto, type ResourceQuickFindDto, type ResourceQuickFindItemDto, type RowDto, type RowItemDto, type RowWithImagesDto, type RowWithImagesItemDto, type SearchDto, type SearchItemDto, type SelectQuestDto, type SelectQuestItemDto, SettingsService, type SimpleActionDto, type SimpleActionItemDto, type SimpleActionListDto, type SimpleActionListItemDto, type SimpleCenteredCallToActionDto, type SimpleCenteredCallToActionItemDto, type SpecialFeaturesDto, type SpecialFeaturesItemDto, type StatisticsItemDto, type StatisticsItemItemDto, type StatsDto, type StatsItemDto, type SubMenuItemDto, type SubMenuItemItemDto, type SubtitleH3BodyDto, type SubtitleH3BodyInternalLinkListDto, type SubtitleH3BodyInternalLinkListItemDto, type SubtitleH3BodyItemDto, type SubtitleH3FaqDto, type SubtitleH3FaqItemDto, type SubtitleH3ResourceCollectionsDto, type SubtitleH3ResourceCollectionsItemDto, type TaxonomyItemDto, type TestimonialDto, type TestimonialItemDto, type TestimonialListDto, type TestimonialListItemDto, type TextFieldDto, type TimeFieldDto, type TitlePartDto, type UpdateUserInfoDto, type UpdateUserInfoItemDto, type UserInfoDto, type UserInfoItemDto, type UserPickerFieldDto, type WidgetMetadataDto, type WidgetsListPartDto, type YoutubeFieldDto };