@piveau/sdk-vue 1.0.0-beta.8 → 1.0.0-beta.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +651 -622
- package/dist/index.d.ts +651 -622
- package/dist/index.mjs +58 -11
- package/dist/index.mjs.map +1 -1
- package/dist/locale/index.mjs.map +1 -1
- package/dist/utils/vHelpers.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -2,7 +2,7 @@ import * as vue from 'vue';
|
|
|
2
2
|
import { MaybeRefOrGetter, InjectionKey, Slot, VNode, PropType, VNodeArrayChildren, MaybeRef, Ref, ComputedRef, App } from 'vue';
|
|
3
3
|
import { UseQueryReturnType, QueryClient } from '@tanstack/vue-query';
|
|
4
4
|
export { QueryClient, UseQueryReturnType } from '@tanstack/vue-query';
|
|
5
|
-
import { Resource, SearchParamsBase, GetResourceResult, GetResourceByIdParams, SearchResult, Dataset, Distribution, Catalog,
|
|
5
|
+
import { Resource, SearchParamsBase, GetResourceResult, GetResourceByIdParams, SearchResult, Dataset, Distribution, Catalog, SearchResultFacetGroup, SearchParams } from '@piveau/sdk-core';
|
|
6
6
|
import { StandardSchemaV1 } from '@standard-schema/spec';
|
|
7
7
|
import * as zod from 'zod';
|
|
8
8
|
export { Schema, ZodObject as _ZodObject } from 'zod';
|
|
@@ -290,7 +290,7 @@ declare function selectNodesById(options: SelectNodesByIdParams): PropertyTableE
|
|
|
290
290
|
|
|
291
291
|
declare const PropertyTableNode: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
292
292
|
as: {
|
|
293
|
-
type: (
|
|
293
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
294
294
|
default: string;
|
|
295
295
|
};
|
|
296
296
|
nodes: {
|
|
@@ -309,7 +309,7 @@ declare const PropertyTableNode: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
309
309
|
[key: string]: any;
|
|
310
310
|
}> | VNodeArrayChildren, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
311
311
|
as: {
|
|
312
|
-
type: (
|
|
312
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
313
313
|
default: string;
|
|
314
314
|
};
|
|
315
315
|
nodes: {
|
|
@@ -325,14 +325,14 @@ declare const PropertyTableNode: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
325
325
|
default: string;
|
|
326
326
|
};
|
|
327
327
|
}>> & Readonly<{}>, {
|
|
328
|
-
nodes: PropertyTableEntry[];
|
|
329
328
|
as: string | Record<string, any>;
|
|
329
|
+
nodes: PropertyTableEntry[];
|
|
330
330
|
depth: number;
|
|
331
331
|
nodeClass: string;
|
|
332
332
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
333
333
|
declare const PropertyTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
334
334
|
as: {
|
|
335
|
-
type: (
|
|
335
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
336
336
|
default: string;
|
|
337
337
|
};
|
|
338
338
|
root: {
|
|
@@ -351,7 +351,7 @@ declare const PropertyTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
351
351
|
[key: string]: any;
|
|
352
352
|
}>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
353
353
|
as: {
|
|
354
|
-
type: (
|
|
354
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
355
355
|
default: string;
|
|
356
356
|
};
|
|
357
357
|
root: {
|
|
@@ -412,7 +412,7 @@ interface UseResourceResultWithData<TSetup extends object, T = any> {
|
|
|
412
412
|
resultEnhanced: ComputedRef<TSetup>;
|
|
413
413
|
}
|
|
414
414
|
type UseResourceResultBase<TSetup extends object, T = any> = UseResourceResultNoData | UseResourceResultWithData<TSetup, T>;
|
|
415
|
-
type UseResourceResult<TSetup extends object, TModelSchema extends StandardSchemaV1
|
|
415
|
+
type UseResourceResult<TSetup extends object, TModelSchema extends StandardSchemaV1, TResult = UseResourceResultBase<TSetup, StandardSchemaV1.InferOutput<TModelSchema>>> = {
|
|
416
416
|
[K in keyof TResult]: K extends 'isSuccess' ? Ref<TResult[K]> : TResult[K];
|
|
417
417
|
} & {
|
|
418
418
|
query: _UseQueryReturnType<GetResourceResult<StandardSchemaV1.InferOutput<TModelSchema>>, Error>;
|
|
@@ -424,21 +424,21 @@ interface UseResourceParams {
|
|
|
424
424
|
headers?: MaybeRefOrGetter<Record<string, string>>;
|
|
425
425
|
queryOptions?: OurQueryOptions;
|
|
426
426
|
}
|
|
427
|
-
type UseResourceFunction<TSetup extends object, TModelSchema extends StandardSchemaV1
|
|
428
|
-
interface UseResourceFactoryParams<TModelSchema extends StandardSchemaV1
|
|
427
|
+
type UseResourceFunction<TSetup extends object, TModelSchema extends StandardSchemaV1> = (resourceId: MaybeRefOrGetter<string>, params?: UseResourceParams) => UseResourceResult<TSetup, TModelSchema>;
|
|
428
|
+
interface UseResourceFactoryParams<TModelSchema extends StandardSchemaV1> {
|
|
429
429
|
baseUrl: string;
|
|
430
|
-
schema:
|
|
430
|
+
schema: TModelSchema;
|
|
431
431
|
index: MaybeRefOrGetter<string>;
|
|
432
432
|
indexSearch?: MaybeRefOrGetter<string>;
|
|
433
433
|
queryOptions?: OurQueryOptions;
|
|
434
434
|
qc: QueryClient;
|
|
435
435
|
fetcherFn: (_options: GetResourceByIdParams) => Promise<GetResourceResult<StandardSchemaV1.InferOutput<TModelSchema>>>;
|
|
436
436
|
}
|
|
437
|
-
declare function useResourceFactory<TSetup extends object, TModelSchema extends StandardSchemaV1
|
|
437
|
+
declare function useResourceFactory<TSetup extends object, TModelSchema extends StandardSchemaV1>(options: UseResourceFactoryParams<TModelSchema>, setup?: SetupFn<TSetup, TModelSchema>): UseResourceFunction<TSetup, TModelSchema>;
|
|
438
438
|
|
|
439
|
-
interface DefineHubSearchOptions<
|
|
439
|
+
interface DefineHubSearchOptions<TFacetNames extends string, TModelSchema extends StandardSchemaV1> {
|
|
440
440
|
baseUrl: string;
|
|
441
|
-
index:
|
|
441
|
+
index: string | string[];
|
|
442
442
|
indexDetails?: string;
|
|
443
443
|
enabled?: MaybeRefOrGetter<boolean>;
|
|
444
444
|
schema: TModelSchema;
|
|
@@ -456,7 +456,7 @@ type SetupContext<TModelSchema extends StandardSchemaV1> = {
|
|
|
456
456
|
params?: Record<string, string>;
|
|
457
457
|
queryParams?: Record<string, any>;
|
|
458
458
|
headers?: Record<string, string>;
|
|
459
|
-
schema?:
|
|
459
|
+
schema?: TModelSchema;
|
|
460
460
|
} & UnwrappedLocaleInstance;
|
|
461
461
|
type SetupFn<TSetup extends object, TModelSchema extends StandardSchemaV1> = (data: StandardSchemaV1.InferOutput<TModelSchema>, ctx: SetupContext<TModelSchema>) => TSetup;
|
|
462
462
|
type ResolvedSetupFn<TSetup extends object, T> = (data: T) => TSetup;
|
|
@@ -507,7 +507,7 @@ type ResolvedSetupFn<TSetup extends object, T> = (data: T) => TSetup;
|
|
|
507
507
|
* 1. A `schema` for the result model
|
|
508
508
|
* 2. A setup function that maps the type of the `schema` model to a unified data model for your application.
|
|
509
509
|
*/
|
|
510
|
-
declare function defineHubSearch<
|
|
510
|
+
declare function defineHubSearch<TFacetNames extends string, TModelSchema extends StandardSchemaV1, TSetup extends object>(options: DefineHubSearchOptions<TFacetNames, TModelSchema>, setup?: SetupFn<TSetup, TModelSchema>): HubSearchDefinition<TFacetNames, TModelSchema, TSetup>;
|
|
511
511
|
interface HubSearchDefinition<TFacetNames extends string, TModelSchema extends StandardSchemaV1, TSetup extends object> {
|
|
512
512
|
setup?: SetupFn<TSetup, TModelSchema>;
|
|
513
513
|
useSearch: (params: UseSearchParams<TFacetNames>) => UseSearchFactoryReturn<TFacetNames, TModelSchema, TSetup>;
|
|
@@ -515,7 +515,7 @@ interface HubSearchDefinition<TFacetNames extends string, TModelSchema extends S
|
|
|
515
515
|
refSyncedWithRouteQuery: RefSyncedWithRouteQueryFn;
|
|
516
516
|
refSyncedWithRouteQueryFacet: RefSyncedWithRouteQueryFacetFn<TFacetNames>;
|
|
517
517
|
}
|
|
518
|
-
type HubSearchIntegrationOptions<TModelSchema extends StandardSchemaV1> = DefineHubSearchOptions<string,
|
|
518
|
+
type HubSearchIntegrationOptions<TModelSchema extends StandardSchemaV1> = DefineHubSearchOptions<string, TModelSchema>;
|
|
519
519
|
declare function defineHubSearchIntegration<TModelSchema extends StandardSchemaV1, TSetup extends object>(schema: TModelSchema, setup: SetupFn<TSetup, TModelSchema>): {
|
|
520
520
|
setup: SetupFn<TSetup, TModelSchema>;
|
|
521
521
|
schema: TModelSchema;
|
|
@@ -540,8 +540,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
540
540
|
getDescription: string | undefined;
|
|
541
541
|
getCategories: {
|
|
542
542
|
label: Record<string, string>;
|
|
543
|
-
resource: string;
|
|
544
543
|
id: string;
|
|
544
|
+
resource: string;
|
|
545
545
|
}[];
|
|
546
546
|
getPublisher: {
|
|
547
547
|
type?: string | null | undefined;
|
|
@@ -580,9 +580,9 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
580
580
|
*/
|
|
581
581
|
license: {
|
|
582
582
|
label?: string | null | undefined;
|
|
583
|
-
resource?: string | null | undefined;
|
|
584
583
|
id?: string | null | undefined;
|
|
585
584
|
description?: string | null | undefined;
|
|
585
|
+
resource?: string | null | undefined;
|
|
586
586
|
} | undefined;
|
|
587
587
|
created: string | undefined;
|
|
588
588
|
issued: string | undefined;
|
|
@@ -607,12 +607,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
607
607
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
608
608
|
}, "strip", zod.ZodTypeAny, {
|
|
609
609
|
label?: string | null | undefined;
|
|
610
|
-
resource?: string | null | undefined;
|
|
611
610
|
id?: string | null | undefined;
|
|
611
|
+
resource?: string | null | undefined;
|
|
612
612
|
}, {
|
|
613
613
|
label?: string | null | undefined;
|
|
614
|
-
resource?: string | null | undefined;
|
|
615
614
|
id?: string | null | undefined;
|
|
615
|
+
resource?: string | null | undefined;
|
|
616
616
|
}>>>;
|
|
617
617
|
keywords: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
618
618
|
language: zod.ZodString;
|
|
@@ -627,43 +627,43 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
627
627
|
id: string;
|
|
628
628
|
language: string;
|
|
629
629
|
}>, "many">>>;
|
|
630
|
-
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<
|
|
630
|
+
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
631
631
|
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
632
632
|
label: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
633
633
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
634
|
-
}
|
|
634
|
+
} & {
|
|
635
635
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
636
|
-
}
|
|
636
|
+
}, "strip", zod.ZodTypeAny, {
|
|
637
637
|
label?: string | null | undefined;
|
|
638
|
-
resource?: string | null | undefined;
|
|
639
638
|
id?: string | null | undefined;
|
|
640
639
|
description?: string | null | undefined;
|
|
640
|
+
resource?: string | null | undefined;
|
|
641
641
|
}, {
|
|
642
642
|
label?: string | null | undefined;
|
|
643
|
-
resource?: string | null | undefined;
|
|
644
643
|
id?: string | null | undefined;
|
|
645
644
|
description?: string | null | undefined;
|
|
645
|
+
resource?: string | null | undefined;
|
|
646
646
|
}>>>;
|
|
647
647
|
catalog: zod.ZodObject<{
|
|
648
648
|
id: zod.ZodString;
|
|
649
649
|
title: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
|
|
650
650
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
|
|
651
|
-
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<
|
|
651
|
+
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
652
652
|
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
653
653
|
label: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
654
654
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
655
|
-
}
|
|
655
|
+
} & {
|
|
656
656
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
657
|
-
}
|
|
657
|
+
}, "strip", zod.ZodTypeAny, {
|
|
658
658
|
label?: string | null | undefined;
|
|
659
|
-
resource?: string | null | undefined;
|
|
660
659
|
id?: string | null | undefined;
|
|
661
660
|
description?: string | null | undefined;
|
|
661
|
+
resource?: string | null | undefined;
|
|
662
662
|
}, {
|
|
663
663
|
label?: string | null | undefined;
|
|
664
|
-
resource?: string | null | undefined;
|
|
665
664
|
id?: string | null | undefined;
|
|
666
665
|
description?: string | null | undefined;
|
|
666
|
+
resource?: string | null | undefined;
|
|
667
667
|
}>>>;
|
|
668
668
|
publisher: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
669
669
|
name: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -687,12 +687,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
687
687
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
688
688
|
}, "strip", zod.ZodTypeAny, {
|
|
689
689
|
label?: string | null | undefined;
|
|
690
|
-
resource?: string | null | undefined;
|
|
691
690
|
id?: string | null | undefined;
|
|
691
|
+
resource?: string | null | undefined;
|
|
692
692
|
}, {
|
|
693
693
|
label?: string | null | undefined;
|
|
694
|
-
resource?: string | null | undefined;
|
|
695
694
|
id?: string | null | undefined;
|
|
695
|
+
resource?: string | null | undefined;
|
|
696
696
|
}>, "many">>>;
|
|
697
697
|
country: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
698
698
|
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -700,12 +700,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
700
700
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
701
701
|
}, "strip", zod.ZodTypeAny, {
|
|
702
702
|
label?: string | null | undefined;
|
|
703
|
-
resource?: string | null | undefined;
|
|
704
703
|
id?: string | null | undefined;
|
|
704
|
+
resource?: string | null | undefined;
|
|
705
705
|
}, {
|
|
706
706
|
label?: string | null | undefined;
|
|
707
|
-
resource?: string | null | undefined;
|
|
708
707
|
id?: string | null | undefined;
|
|
708
|
+
resource?: string | null | undefined;
|
|
709
709
|
}>>>;
|
|
710
710
|
homepage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
711
711
|
issued: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -721,22 +721,24 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
721
721
|
count: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
722
722
|
}, "strip", zod.ZodTypeAny, {
|
|
723
723
|
id: string;
|
|
724
|
+
title?: Record<string, string> | null | undefined;
|
|
724
725
|
description?: Record<string, string> | null | undefined;
|
|
725
|
-
|
|
726
|
+
country?: {
|
|
726
727
|
label?: string | null | undefined;
|
|
727
|
-
resource?: string | null | undefined;
|
|
728
728
|
id?: string | null | undefined;
|
|
729
|
-
|
|
729
|
+
resource?: string | null | undefined;
|
|
730
730
|
} | null | undefined;
|
|
731
|
-
title?: Record<string, string> | null | undefined;
|
|
732
|
-
issued?: string | null | undefined;
|
|
733
|
-
rights?: any;
|
|
734
731
|
language?: {
|
|
735
732
|
label?: string | null | undefined;
|
|
736
|
-
resource?: string | null | undefined;
|
|
737
733
|
id?: string | null | undefined;
|
|
734
|
+
resource?: string | null | undefined;
|
|
738
735
|
}[] | null | undefined;
|
|
739
|
-
|
|
736
|
+
license?: {
|
|
737
|
+
label?: string | null | undefined;
|
|
738
|
+
id?: string | null | undefined;
|
|
739
|
+
description?: string | null | undefined;
|
|
740
|
+
resource?: string | null | undefined;
|
|
741
|
+
} | null | undefined;
|
|
740
742
|
homepage?: string | null | undefined;
|
|
741
743
|
publisher?: {
|
|
742
744
|
type?: string | null | undefined;
|
|
@@ -744,11 +746,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
744
746
|
email?: string | null | undefined;
|
|
745
747
|
homepage?: string | null | undefined;
|
|
746
748
|
} | null | undefined;
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
resource?: string | null | undefined;
|
|
750
|
-
id?: string | null | undefined;
|
|
751
|
-
} | null | undefined;
|
|
749
|
+
issued?: string | null | undefined;
|
|
750
|
+
modified?: string | null | undefined;
|
|
752
751
|
spatial?: any[] | null | undefined;
|
|
753
752
|
spatial_resource?: any;
|
|
754
753
|
theme_taxonomy?: any;
|
|
@@ -756,25 +755,28 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
756
755
|
has_part?: any;
|
|
757
756
|
is_part_of?: any;
|
|
758
757
|
creator?: any;
|
|
758
|
+
rights?: any;
|
|
759
759
|
count?: number | null | undefined;
|
|
760
760
|
}, {
|
|
761
761
|
id: string;
|
|
762
|
+
title?: Record<string, string> | null | undefined;
|
|
762
763
|
description?: Record<string, string> | null | undefined;
|
|
763
|
-
|
|
764
|
+
country?: {
|
|
764
765
|
label?: string | null | undefined;
|
|
765
|
-
resource?: string | null | undefined;
|
|
766
766
|
id?: string | null | undefined;
|
|
767
|
-
|
|
767
|
+
resource?: string | null | undefined;
|
|
768
768
|
} | null | undefined;
|
|
769
|
-
title?: Record<string, string> | null | undefined;
|
|
770
|
-
issued?: string | null | undefined;
|
|
771
|
-
rights?: any;
|
|
772
769
|
language?: {
|
|
773
770
|
label?: string | null | undefined;
|
|
774
|
-
resource?: string | null | undefined;
|
|
775
771
|
id?: string | null | undefined;
|
|
772
|
+
resource?: string | null | undefined;
|
|
776
773
|
}[] | null | undefined;
|
|
777
|
-
|
|
774
|
+
license?: {
|
|
775
|
+
label?: string | null | undefined;
|
|
776
|
+
id?: string | null | undefined;
|
|
777
|
+
description?: string | null | undefined;
|
|
778
|
+
resource?: string | null | undefined;
|
|
779
|
+
} | null | undefined;
|
|
778
780
|
homepage?: string | null | undefined;
|
|
779
781
|
publisher?: {
|
|
780
782
|
type?: string | null | undefined;
|
|
@@ -782,11 +784,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
782
784
|
email?: string | null | undefined;
|
|
783
785
|
homepage?: string | null | undefined;
|
|
784
786
|
} | null | undefined;
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
resource?: string | null | undefined;
|
|
788
|
-
id?: string | null | undefined;
|
|
789
|
-
} | null | undefined;
|
|
787
|
+
issued?: string | null | undefined;
|
|
788
|
+
modified?: string | null | undefined;
|
|
790
789
|
spatial?: any[] | null | undefined;
|
|
791
790
|
spatial_resource?: any;
|
|
792
791
|
theme_taxonomy?: any;
|
|
@@ -794,6 +793,7 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
794
793
|
has_part?: any;
|
|
795
794
|
is_part_of?: any;
|
|
796
795
|
creator?: any;
|
|
796
|
+
rights?: any;
|
|
797
797
|
count?: number | null | undefined;
|
|
798
798
|
}>;
|
|
799
799
|
subject: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
@@ -812,12 +812,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
812
812
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
813
813
|
}, "strip", zod.ZodTypeAny, {
|
|
814
814
|
label?: string | null | undefined;
|
|
815
|
-
resource?: string | null | undefined;
|
|
816
815
|
id?: string | null | undefined;
|
|
816
|
+
resource?: string | null | undefined;
|
|
817
817
|
}, {
|
|
818
818
|
label?: string | null | undefined;
|
|
819
|
-
resource?: string | null | undefined;
|
|
820
819
|
id?: string | null | undefined;
|
|
820
|
+
resource?: string | null | undefined;
|
|
821
821
|
}>, "many">>>;
|
|
822
822
|
source: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
|
|
823
823
|
type: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
@@ -826,12 +826,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
826
826
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
827
827
|
}, "strip", zod.ZodTypeAny, {
|
|
828
828
|
label?: string | null | undefined;
|
|
829
|
-
resource?: string | null | undefined;
|
|
830
829
|
id?: string | null | undefined;
|
|
830
|
+
resource?: string | null | undefined;
|
|
831
831
|
}, {
|
|
832
832
|
label?: string | null | undefined;
|
|
833
|
-
resource?: string | null | undefined;
|
|
834
833
|
id?: string | null | undefined;
|
|
834
|
+
resource?: string | null | undefined;
|
|
835
835
|
}>>>;
|
|
836
836
|
temporal_resolution: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
837
837
|
relation: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
|
|
@@ -868,45 +868,45 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
868
868
|
id: zod.ZodString;
|
|
869
869
|
access_service: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
870
870
|
endpoint_url: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
|
|
871
|
-
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<
|
|
871
|
+
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
872
872
|
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
873
873
|
label: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
874
874
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
875
|
-
}
|
|
875
|
+
} & {
|
|
876
876
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
877
|
-
}
|
|
877
|
+
}, "strip", zod.ZodTypeAny, {
|
|
878
878
|
label?: string | null | undefined;
|
|
879
|
-
resource?: string | null | undefined;
|
|
880
879
|
id?: string | null | undefined;
|
|
881
880
|
description?: string | null | undefined;
|
|
881
|
+
resource?: string | null | undefined;
|
|
882
882
|
}, {
|
|
883
883
|
label?: string | null | undefined;
|
|
884
|
-
resource?: string | null | undefined;
|
|
885
884
|
id?: string | null | undefined;
|
|
886
885
|
description?: string | null | undefined;
|
|
886
|
+
resource?: string | null | undefined;
|
|
887
887
|
}>>>;
|
|
888
888
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
|
|
889
889
|
title: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
|
|
890
890
|
}, "strip", zod.ZodTypeAny, {
|
|
891
|
+
title?: Record<string, string> | null | undefined;
|
|
891
892
|
description?: Record<string, string> | null | undefined;
|
|
892
|
-
endpoint_url?: string[] | null | undefined;
|
|
893
893
|
license?: {
|
|
894
894
|
label?: string | null | undefined;
|
|
895
|
-
resource?: string | null | undefined;
|
|
896
895
|
id?: string | null | undefined;
|
|
897
896
|
description?: string | null | undefined;
|
|
897
|
+
resource?: string | null | undefined;
|
|
898
898
|
} | null | undefined;
|
|
899
|
-
|
|
899
|
+
endpoint_url?: string[] | null | undefined;
|
|
900
900
|
}, {
|
|
901
|
+
title?: Record<string, string> | null | undefined;
|
|
901
902
|
description?: Record<string, string> | null | undefined;
|
|
902
|
-
endpoint_url?: string[] | null | undefined;
|
|
903
903
|
license?: {
|
|
904
904
|
label?: string | null | undefined;
|
|
905
|
-
resource?: string | null | undefined;
|
|
906
905
|
id?: string | null | undefined;
|
|
907
906
|
description?: string | null | undefined;
|
|
907
|
+
resource?: string | null | undefined;
|
|
908
908
|
} | null | undefined;
|
|
909
|
-
|
|
909
|
+
endpoint_url?: string[] | null | undefined;
|
|
910
910
|
}>, "many">>>;
|
|
911
911
|
spatial_resolution_in_meters: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
912
912
|
format: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
@@ -915,12 +915,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
915
915
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
916
916
|
}, "strip", zod.ZodTypeAny, {
|
|
917
917
|
label?: string | null | undefined;
|
|
918
|
-
resource?: string | null | undefined;
|
|
919
918
|
id?: string | null | undefined;
|
|
919
|
+
resource?: string | null | undefined;
|
|
920
920
|
}, {
|
|
921
921
|
label?: string | null | undefined;
|
|
922
|
-
resource?: string | null | undefined;
|
|
923
922
|
id?: string | null | undefined;
|
|
923
|
+
resource?: string | null | undefined;
|
|
924
924
|
}>>>;
|
|
925
925
|
issued: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
926
926
|
conforms_to: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
@@ -970,22 +970,22 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
970
970
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
|
|
971
971
|
access_url: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
|
|
972
972
|
download_url: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
|
|
973
|
-
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<
|
|
973
|
+
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
974
974
|
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
975
975
|
label: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
976
976
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
977
|
-
}
|
|
977
|
+
} & {
|
|
978
978
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
979
|
-
}
|
|
979
|
+
}, "strip", zod.ZodTypeAny, {
|
|
980
980
|
label?: string | null | undefined;
|
|
981
|
-
resource?: string | null | undefined;
|
|
982
981
|
id?: string | null | undefined;
|
|
983
982
|
description?: string | null | undefined;
|
|
983
|
+
resource?: string | null | undefined;
|
|
984
984
|
}, {
|
|
985
985
|
label?: string | null | undefined;
|
|
986
|
-
resource?: string | null | undefined;
|
|
987
986
|
id?: string | null | undefined;
|
|
988
987
|
description?: string | null | undefined;
|
|
988
|
+
resource?: string | null | undefined;
|
|
989
989
|
}>>>;
|
|
990
990
|
byte_size: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
991
991
|
checksum: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
@@ -1004,12 +1004,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1004
1004
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1005
1005
|
}, "strip", zod.ZodTypeAny, {
|
|
1006
1006
|
label?: string | null | undefined;
|
|
1007
|
-
resource?: string | null | undefined;
|
|
1008
1007
|
id?: string | null | undefined;
|
|
1008
|
+
resource?: string | null | undefined;
|
|
1009
1009
|
}, {
|
|
1010
1010
|
label?: string | null | undefined;
|
|
1011
|
-
resource?: string | null | undefined;
|
|
1012
1011
|
id?: string | null | undefined;
|
|
1012
|
+
resource?: string | null | undefined;
|
|
1013
1013
|
}>, "many">>>;
|
|
1014
1014
|
modified: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1015
1015
|
page: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
@@ -1021,31 +1021,31 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1021
1021
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1022
1022
|
}, "strip", zod.ZodTypeAny, {
|
|
1023
1023
|
label?: string | null | undefined;
|
|
1024
|
-
resource?: string | null | undefined;
|
|
1025
1024
|
id?: string | null | undefined;
|
|
1025
|
+
resource?: string | null | undefined;
|
|
1026
1026
|
}, {
|
|
1027
1027
|
label?: string | null | undefined;
|
|
1028
|
-
resource?: string | null | undefined;
|
|
1029
1028
|
id?: string | null | undefined;
|
|
1029
|
+
resource?: string | null | undefined;
|
|
1030
1030
|
}>>>;
|
|
1031
1031
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1032
1032
|
}, "strip", zod.ZodTypeAny, {
|
|
1033
|
-
resource?: string | null | undefined;
|
|
1034
|
-
description?: Record<string, string> | null | undefined;
|
|
1035
1033
|
title?: Record<string, string> | null | undefined;
|
|
1034
|
+
description?: Record<string, string> | null | undefined;
|
|
1035
|
+
resource?: string | null | undefined;
|
|
1036
1036
|
format?: {
|
|
1037
1037
|
label?: string | null | undefined;
|
|
1038
|
-
resource?: string | null | undefined;
|
|
1039
1038
|
id?: string | null | undefined;
|
|
1039
|
+
resource?: string | null | undefined;
|
|
1040
1040
|
} | null | undefined;
|
|
1041
1041
|
}, {
|
|
1042
|
-
resource?: string | null | undefined;
|
|
1043
|
-
description?: Record<string, string> | null | undefined;
|
|
1044
1042
|
title?: Record<string, string> | null | undefined;
|
|
1043
|
+
description?: Record<string, string> | null | undefined;
|
|
1044
|
+
resource?: string | null | undefined;
|
|
1045
1045
|
format?: {
|
|
1046
1046
|
label?: string | null | undefined;
|
|
1047
|
-
resource?: string | null | undefined;
|
|
1048
1047
|
id?: string | null | undefined;
|
|
1048
|
+
resource?: string | null | undefined;
|
|
1049
1049
|
} | null | undefined;
|
|
1050
1050
|
}>>>, "many">>>;
|
|
1051
1051
|
compress_format: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
@@ -1086,50 +1086,61 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1086
1086
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1087
1087
|
}, "strip", zod.ZodTypeAny, {
|
|
1088
1088
|
label?: string | null | undefined;
|
|
1089
|
-
resource?: string | null | undefined;
|
|
1090
1089
|
id?: string | null | undefined;
|
|
1090
|
+
resource?: string | null | undefined;
|
|
1091
1091
|
}, {
|
|
1092
1092
|
label?: string | null | undefined;
|
|
1093
|
-
resource?: string | null | undefined;
|
|
1094
1093
|
id?: string | null | undefined;
|
|
1094
|
+
resource?: string | null | undefined;
|
|
1095
1095
|
}>>>, "many">>>;
|
|
1096
1096
|
}, "strip", zod.ZodTypeAny, {
|
|
1097
1097
|
id: string;
|
|
1098
|
-
resource?: string | null | undefined;
|
|
1099
1098
|
type?: {
|
|
1100
1099
|
label?: string | null | undefined;
|
|
1101
1100
|
resource?: string | null | undefined;
|
|
1102
1101
|
} | null | undefined;
|
|
1102
|
+
title?: Record<string, string> | null | undefined;
|
|
1103
1103
|
status?: {
|
|
1104
1104
|
label?: string | null | undefined;
|
|
1105
1105
|
resource?: string | null | undefined;
|
|
1106
1106
|
} | null | undefined;
|
|
1107
1107
|
description?: Record<string, string> | null | undefined;
|
|
1108
|
-
|
|
1108
|
+
resource?: string | null | undefined;
|
|
1109
|
+
language?: {
|
|
1109
1110
|
label?: string | null | undefined;
|
|
1111
|
+
id?: string | null | undefined;
|
|
1110
1112
|
resource?: string | null | undefined;
|
|
1113
|
+
}[] | null | undefined;
|
|
1114
|
+
license?: {
|
|
1115
|
+
label?: string | null | undefined;
|
|
1111
1116
|
id?: string | null | undefined;
|
|
1112
1117
|
description?: string | null | undefined;
|
|
1118
|
+
resource?: string | null | undefined;
|
|
1113
1119
|
} | null | undefined;
|
|
1114
|
-
|
|
1120
|
+
issued?: string | null | undefined;
|
|
1121
|
+
modified?: string | null | undefined;
|
|
1122
|
+
rights?: {
|
|
1123
|
+
label?: string | null | undefined;
|
|
1124
|
+
resource?: string | null | undefined;
|
|
1125
|
+
} | null | undefined;
|
|
1126
|
+
temporal_resolution?: string | null | undefined;
|
|
1115
1127
|
access_service?: {
|
|
1128
|
+
title?: Record<string, string> | null | undefined;
|
|
1116
1129
|
description?: Record<string, string> | null | undefined;
|
|
1117
|
-
endpoint_url?: string[] | null | undefined;
|
|
1118
1130
|
license?: {
|
|
1119
1131
|
label?: string | null | undefined;
|
|
1120
|
-
resource?: string | null | undefined;
|
|
1121
1132
|
id?: string | null | undefined;
|
|
1122
1133
|
description?: string | null | undefined;
|
|
1134
|
+
resource?: string | null | undefined;
|
|
1123
1135
|
} | null | undefined;
|
|
1124
|
-
|
|
1136
|
+
endpoint_url?: string[] | null | undefined;
|
|
1125
1137
|
}[] | null | undefined;
|
|
1126
1138
|
spatial_resolution_in_meters?: number | null | undefined;
|
|
1127
1139
|
format?: {
|
|
1128
1140
|
label?: string | null | undefined;
|
|
1129
|
-
resource?: string | null | undefined;
|
|
1130
1141
|
id?: string | null | undefined;
|
|
1142
|
+
resource?: string | null | undefined;
|
|
1131
1143
|
} | null | undefined;
|
|
1132
|
-
issued?: string | null | undefined;
|
|
1133
1144
|
conforms_to?: {
|
|
1134
1145
|
label?: string | null | undefined;
|
|
1135
1146
|
resource?: string | null | undefined;
|
|
@@ -1138,12 +1149,7 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1138
1149
|
label?: string | null | undefined;
|
|
1139
1150
|
resource?: string | null | undefined;
|
|
1140
1151
|
} | null | undefined;
|
|
1141
|
-
temporal_resolution?: string | null | undefined;
|
|
1142
1152
|
media_type?: string | null | undefined;
|
|
1143
|
-
rights?: {
|
|
1144
|
-
label?: string | null | undefined;
|
|
1145
|
-
resource?: string | null | undefined;
|
|
1146
|
-
} | null | undefined;
|
|
1147
1153
|
access_url?: string[] | null | undefined;
|
|
1148
1154
|
download_url?: string[] | null | undefined;
|
|
1149
1155
|
byte_size?: number | null | undefined;
|
|
@@ -1151,20 +1157,14 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1151
1157
|
algorithm?: string | null | undefined;
|
|
1152
1158
|
checksum_value?: string | null | undefined;
|
|
1153
1159
|
} | null | undefined;
|
|
1154
|
-
language?: {
|
|
1155
|
-
label?: string | null | undefined;
|
|
1156
|
-
resource?: string | null | undefined;
|
|
1157
|
-
id?: string | null | undefined;
|
|
1158
|
-
}[] | null | undefined;
|
|
1159
|
-
modified?: string | null | undefined;
|
|
1160
1160
|
page?: ({
|
|
1161
|
-
resource?: string | null | undefined;
|
|
1162
|
-
description?: Record<string, string> | null | undefined;
|
|
1163
1161
|
title?: Record<string, string> | null | undefined;
|
|
1162
|
+
description?: Record<string, string> | null | undefined;
|
|
1163
|
+
resource?: string | null | undefined;
|
|
1164
1164
|
format?: {
|
|
1165
1165
|
label?: string | null | undefined;
|
|
1166
|
-
resource?: string | null | undefined;
|
|
1167
1166
|
id?: string | null | undefined;
|
|
1167
|
+
resource?: string | null | undefined;
|
|
1168
1168
|
} | null | undefined;
|
|
1169
1169
|
} | null | undefined)[] | null | undefined;
|
|
1170
1170
|
compress_format?: {
|
|
@@ -1179,46 +1179,57 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1179
1179
|
extended_metadata?: string[] | null | undefined;
|
|
1180
1180
|
applicable_legislation?: ({
|
|
1181
1181
|
label?: string | null | undefined;
|
|
1182
|
-
resource?: string | null | undefined;
|
|
1183
1182
|
id?: string | null | undefined;
|
|
1183
|
+
resource?: string | null | undefined;
|
|
1184
1184
|
} | null | undefined)[] | null | undefined;
|
|
1185
1185
|
}, {
|
|
1186
1186
|
id: string;
|
|
1187
|
-
resource?: string | null | undefined;
|
|
1188
1187
|
type?: {
|
|
1189
1188
|
label?: string | null | undefined;
|
|
1190
1189
|
resource?: string | null | undefined;
|
|
1191
1190
|
} | null | undefined;
|
|
1191
|
+
title?: Record<string, string> | null | undefined;
|
|
1192
1192
|
status?: {
|
|
1193
1193
|
label?: string | null | undefined;
|
|
1194
1194
|
resource?: string | null | undefined;
|
|
1195
1195
|
} | null | undefined;
|
|
1196
1196
|
description?: Record<string, string> | null | undefined;
|
|
1197
|
-
|
|
1197
|
+
resource?: string | null | undefined;
|
|
1198
|
+
language?: {
|
|
1198
1199
|
label?: string | null | undefined;
|
|
1200
|
+
id?: string | null | undefined;
|
|
1199
1201
|
resource?: string | null | undefined;
|
|
1202
|
+
}[] | null | undefined;
|
|
1203
|
+
license?: {
|
|
1204
|
+
label?: string | null | undefined;
|
|
1200
1205
|
id?: string | null | undefined;
|
|
1201
1206
|
description?: string | null | undefined;
|
|
1207
|
+
resource?: string | null | undefined;
|
|
1202
1208
|
} | null | undefined;
|
|
1203
|
-
|
|
1209
|
+
issued?: string | null | undefined;
|
|
1210
|
+
modified?: string | null | undefined;
|
|
1211
|
+
rights?: {
|
|
1212
|
+
label?: string | null | undefined;
|
|
1213
|
+
resource?: string | null | undefined;
|
|
1214
|
+
} | null | undefined;
|
|
1215
|
+
temporal_resolution?: string | null | undefined;
|
|
1204
1216
|
access_service?: {
|
|
1217
|
+
title?: Record<string, string> | null | undefined;
|
|
1205
1218
|
description?: Record<string, string> | null | undefined;
|
|
1206
|
-
endpoint_url?: string[] | null | undefined;
|
|
1207
1219
|
license?: {
|
|
1208
1220
|
label?: string | null | undefined;
|
|
1209
|
-
resource?: string | null | undefined;
|
|
1210
1221
|
id?: string | null | undefined;
|
|
1211
1222
|
description?: string | null | undefined;
|
|
1223
|
+
resource?: string | null | undefined;
|
|
1212
1224
|
} | null | undefined;
|
|
1213
|
-
|
|
1225
|
+
endpoint_url?: string[] | null | undefined;
|
|
1214
1226
|
}[] | null | undefined;
|
|
1215
1227
|
spatial_resolution_in_meters?: number | null | undefined;
|
|
1216
1228
|
format?: {
|
|
1217
1229
|
label?: string | null | undefined;
|
|
1218
|
-
resource?: string | null | undefined;
|
|
1219
1230
|
id?: string | null | undefined;
|
|
1231
|
+
resource?: string | null | undefined;
|
|
1220
1232
|
} | null | undefined;
|
|
1221
|
-
issued?: string | null | undefined;
|
|
1222
1233
|
conforms_to?: {
|
|
1223
1234
|
label?: string | null | undefined;
|
|
1224
1235
|
resource?: string | null | undefined;
|
|
@@ -1227,12 +1238,7 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1227
1238
|
label?: string | null | undefined;
|
|
1228
1239
|
resource?: string | null | undefined;
|
|
1229
1240
|
} | null | undefined;
|
|
1230
|
-
temporal_resolution?: string | null | undefined;
|
|
1231
1241
|
media_type?: string | null | undefined;
|
|
1232
|
-
rights?: {
|
|
1233
|
-
label?: string | null | undefined;
|
|
1234
|
-
resource?: string | null | undefined;
|
|
1235
|
-
} | null | undefined;
|
|
1236
1242
|
access_url?: string[] | null | undefined;
|
|
1237
1243
|
download_url?: string[] | null | undefined;
|
|
1238
1244
|
byte_size?: number | null | undefined;
|
|
@@ -1240,20 +1246,14 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1240
1246
|
algorithm?: string | null | undefined;
|
|
1241
1247
|
checksum_value?: string | null | undefined;
|
|
1242
1248
|
} | null | undefined;
|
|
1243
|
-
language?: {
|
|
1244
|
-
label?: string | null | undefined;
|
|
1245
|
-
resource?: string | null | undefined;
|
|
1246
|
-
id?: string | null | undefined;
|
|
1247
|
-
}[] | null | undefined;
|
|
1248
|
-
modified?: string | null | undefined;
|
|
1249
1249
|
page?: ({
|
|
1250
|
-
resource?: string | null | undefined;
|
|
1251
|
-
description?: Record<string, string> | null | undefined;
|
|
1252
1250
|
title?: Record<string, string> | null | undefined;
|
|
1251
|
+
description?: Record<string, string> | null | undefined;
|
|
1252
|
+
resource?: string | null | undefined;
|
|
1253
1253
|
format?: {
|
|
1254
1254
|
label?: string | null | undefined;
|
|
1255
|
-
resource?: string | null | undefined;
|
|
1256
1255
|
id?: string | null | undefined;
|
|
1256
|
+
resource?: string | null | undefined;
|
|
1257
1257
|
} | null | undefined;
|
|
1258
1258
|
} | null | undefined)[] | null | undefined;
|
|
1259
1259
|
compress_format?: {
|
|
@@ -1268,8 +1268,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1268
1268
|
extended_metadata?: string[] | null | undefined;
|
|
1269
1269
|
applicable_legislation?: ({
|
|
1270
1270
|
label?: string | null | undefined;
|
|
1271
|
-
resource?: string | null | undefined;
|
|
1272
1271
|
id?: string | null | undefined;
|
|
1272
|
+
resource?: string | null | undefined;
|
|
1273
1273
|
} | null | undefined)[] | null | undefined;
|
|
1274
1274
|
}>, "many">>>;
|
|
1275
1275
|
is_referenced_by: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
|
|
@@ -1320,21 +1320,21 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1320
1320
|
email: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1321
1321
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1322
1322
|
}, "strip", zod.ZodTypeAny, {
|
|
1323
|
-
resource?: string | null | undefined;
|
|
1324
1323
|
type?: string | null | undefined;
|
|
1325
1324
|
name?: string | null | undefined;
|
|
1325
|
+
address?: string | null | undefined;
|
|
1326
|
+
resource?: string | null | undefined;
|
|
1326
1327
|
email?: string | null | undefined;
|
|
1327
1328
|
organisation_name?: string | null | undefined;
|
|
1328
|
-
address?: string | null | undefined;
|
|
1329
1329
|
telephone?: string | null | undefined;
|
|
1330
1330
|
url?: string[] | null | undefined;
|
|
1331
1331
|
}, {
|
|
1332
|
-
resource?: string | null | undefined;
|
|
1333
1332
|
type?: string | null | undefined;
|
|
1334
1333
|
name?: string | null | undefined;
|
|
1334
|
+
address?: string | null | undefined;
|
|
1335
|
+
resource?: string | null | undefined;
|
|
1335
1336
|
email?: string | null | undefined;
|
|
1336
1337
|
organisation_name?: string | null | undefined;
|
|
1337
|
-
address?: string | null | undefined;
|
|
1338
1338
|
telephone?: string | null | undefined;
|
|
1339
1339
|
url?: string[] | null | undefined;
|
|
1340
1340
|
}>, "many">>>;
|
|
@@ -1349,16 +1349,16 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1349
1349
|
full_available_languages: zod.ZodArray<zod.ZodString, "many">;
|
|
1350
1350
|
status: zod.ZodString;
|
|
1351
1351
|
}, "strip", zod.ZodTypeAny, {
|
|
1352
|
-
status: string;
|
|
1353
1352
|
details: Record<string, {
|
|
1354
1353
|
machine_translated: boolean;
|
|
1355
1354
|
}>;
|
|
1355
|
+
status: string;
|
|
1356
1356
|
full_available_languages: string[];
|
|
1357
1357
|
}, {
|
|
1358
|
-
status: string;
|
|
1359
1358
|
details: Record<string, {
|
|
1360
1359
|
machine_translated: boolean;
|
|
1361
1360
|
}>;
|
|
1361
|
+
status: string;
|
|
1362
1362
|
full_available_languages: string[];
|
|
1363
1363
|
}>>>;
|
|
1364
1364
|
version_notes: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
|
|
@@ -1369,12 +1369,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1369
1369
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1370
1370
|
}, "strip", zod.ZodTypeAny, {
|
|
1371
1371
|
label?: string | null | undefined;
|
|
1372
|
-
resource?: string | null | undefined;
|
|
1373
1372
|
id?: string | null | undefined;
|
|
1373
|
+
resource?: string | null | undefined;
|
|
1374
1374
|
}, {
|
|
1375
1375
|
label?: string | null | undefined;
|
|
1376
|
-
resource?: string | null | undefined;
|
|
1377
1376
|
id?: string | null | undefined;
|
|
1377
|
+
resource?: string | null | undefined;
|
|
1378
1378
|
}>>>;
|
|
1379
1379
|
geocoding_description: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
1380
1380
|
access_right: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
@@ -1383,12 +1383,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1383
1383
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1384
1384
|
}, "strip", zod.ZodTypeAny, {
|
|
1385
1385
|
label?: string | null | undefined;
|
|
1386
|
-
resource?: string | null | undefined;
|
|
1387
1386
|
id?: string | null | undefined;
|
|
1387
|
+
resource?: string | null | undefined;
|
|
1388
1388
|
}, {
|
|
1389
1389
|
label?: string | null | undefined;
|
|
1390
|
-
resource?: string | null | undefined;
|
|
1391
1390
|
id?: string | null | undefined;
|
|
1391
|
+
resource?: string | null | undefined;
|
|
1392
1392
|
}>>>;
|
|
1393
1393
|
provenance: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1394
1394
|
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -1396,12 +1396,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1396
1396
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1397
1397
|
}, "strip", zod.ZodTypeAny, {
|
|
1398
1398
|
label?: string | null | undefined;
|
|
1399
|
-
resource?: string | null | undefined;
|
|
1400
1399
|
id?: string | null | undefined;
|
|
1400
|
+
resource?: string | null | undefined;
|
|
1401
1401
|
}, {
|
|
1402
1402
|
label?: string | null | undefined;
|
|
1403
|
-
resource?: string | null | undefined;
|
|
1404
1403
|
id?: string | null | undefined;
|
|
1404
|
+
resource?: string | null | undefined;
|
|
1405
1405
|
}>, "many">>>;
|
|
1406
1406
|
categories: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1407
1407
|
resource: zod.ZodString;
|
|
@@ -1409,12 +1409,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1409
1409
|
label: zod.ZodRecord<zod.ZodString, zod.ZodString>;
|
|
1410
1410
|
}, "strip", zod.ZodTypeAny, {
|
|
1411
1411
|
label: Record<string, string>;
|
|
1412
|
-
resource: string;
|
|
1413
1412
|
id: string;
|
|
1413
|
+
resource: string;
|
|
1414
1414
|
}, {
|
|
1415
1415
|
label: Record<string, string>;
|
|
1416
|
-
resource: string;
|
|
1417
1416
|
id: string;
|
|
1417
|
+
resource: string;
|
|
1418
1418
|
}>, "many">>>;
|
|
1419
1419
|
adms_identifier: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1420
1420
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -1455,12 +1455,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1455
1455
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1456
1456
|
}, "strip", zod.ZodTypeAny, {
|
|
1457
1457
|
label?: string | null | undefined;
|
|
1458
|
-
resource?: string | null | undefined;
|
|
1459
1458
|
id?: string | null | undefined;
|
|
1459
|
+
resource?: string | null | undefined;
|
|
1460
1460
|
}, {
|
|
1461
1461
|
label?: string | null | undefined;
|
|
1462
|
-
resource?: string | null | undefined;
|
|
1463
1462
|
id?: string | null | undefined;
|
|
1463
|
+
resource?: string | null | undefined;
|
|
1464
1464
|
}>, "many">>>;
|
|
1465
1465
|
version_info: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
1466
1466
|
sample: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
|
|
@@ -1471,12 +1471,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1471
1471
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1472
1472
|
}, "strip", zod.ZodTypeAny, {
|
|
1473
1473
|
label?: string | null | undefined;
|
|
1474
|
-
resource?: string | null | undefined;
|
|
1475
1474
|
id?: string | null | undefined;
|
|
1475
|
+
resource?: string | null | undefined;
|
|
1476
1476
|
}, {
|
|
1477
1477
|
label?: string | null | undefined;
|
|
1478
|
-
resource?: string | null | undefined;
|
|
1479
1478
|
id?: string | null | undefined;
|
|
1479
|
+
resource?: string | null | undefined;
|
|
1480
1480
|
}>, "many">>>;
|
|
1481
1481
|
num_series: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
1482
1482
|
is_hvd: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
@@ -1486,12 +1486,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1486
1486
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1487
1487
|
}, "strip", zod.ZodTypeAny, {
|
|
1488
1488
|
label?: string | null | undefined;
|
|
1489
|
-
resource?: string | null | undefined;
|
|
1490
1489
|
id?: string | null | undefined;
|
|
1490
|
+
resource?: string | null | undefined;
|
|
1491
1491
|
}, {
|
|
1492
1492
|
label?: string | null | undefined;
|
|
1493
|
-
resource?: string | null | undefined;
|
|
1494
1493
|
id?: string | null | undefined;
|
|
1494
|
+
resource?: string | null | undefined;
|
|
1495
1495
|
}>, "many">>>;
|
|
1496
1496
|
hvd_category: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1497
1497
|
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -1499,33 +1499,35 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1499
1499
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1500
1500
|
}, "strip", zod.ZodTypeAny, {
|
|
1501
1501
|
label?: string | null | undefined;
|
|
1502
|
-
resource?: string | null | undefined;
|
|
1503
1502
|
id?: string | null | undefined;
|
|
1503
|
+
resource?: string | null | undefined;
|
|
1504
1504
|
}, {
|
|
1505
1505
|
label?: string | null | undefined;
|
|
1506
|
-
resource?: string | null | undefined;
|
|
1507
1506
|
id?: string | null | undefined;
|
|
1507
|
+
resource?: string | null | undefined;
|
|
1508
1508
|
}>, "many">>>;
|
|
1509
1509
|
}, "strip", zod.ZodTypeAny, {
|
|
1510
1510
|
id: string;
|
|
1511
1511
|
catalog: {
|
|
1512
1512
|
id: string;
|
|
1513
|
+
title?: Record<string, string> | null | undefined;
|
|
1513
1514
|
description?: Record<string, string> | null | undefined;
|
|
1514
|
-
|
|
1515
|
+
country?: {
|
|
1515
1516
|
label?: string | null | undefined;
|
|
1516
|
-
resource?: string | null | undefined;
|
|
1517
1517
|
id?: string | null | undefined;
|
|
1518
|
-
|
|
1518
|
+
resource?: string | null | undefined;
|
|
1519
1519
|
} | null | undefined;
|
|
1520
|
-
title?: Record<string, string> | null | undefined;
|
|
1521
|
-
issued?: string | null | undefined;
|
|
1522
|
-
rights?: any;
|
|
1523
1520
|
language?: {
|
|
1524
1521
|
label?: string | null | undefined;
|
|
1525
|
-
resource?: string | null | undefined;
|
|
1526
1522
|
id?: string | null | undefined;
|
|
1523
|
+
resource?: string | null | undefined;
|
|
1527
1524
|
}[] | null | undefined;
|
|
1528
|
-
|
|
1525
|
+
license?: {
|
|
1526
|
+
label?: string | null | undefined;
|
|
1527
|
+
id?: string | null | undefined;
|
|
1528
|
+
description?: string | null | undefined;
|
|
1529
|
+
resource?: string | null | undefined;
|
|
1530
|
+
} | null | undefined;
|
|
1529
1531
|
homepage?: string | null | undefined;
|
|
1530
1532
|
publisher?: {
|
|
1531
1533
|
type?: string | null | undefined;
|
|
@@ -1533,11 +1535,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1533
1535
|
email?: string | null | undefined;
|
|
1534
1536
|
homepage?: string | null | undefined;
|
|
1535
1537
|
} | null | undefined;
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
resource?: string | null | undefined;
|
|
1539
|
-
id?: string | null | undefined;
|
|
1540
|
-
} | null | undefined;
|
|
1538
|
+
issued?: string | null | undefined;
|
|
1539
|
+
modified?: string | null | undefined;
|
|
1541
1540
|
spatial?: any[] | null | undefined;
|
|
1542
1541
|
spatial_resource?: any;
|
|
1543
1542
|
theme_taxonomy?: any;
|
|
@@ -1545,55 +1544,47 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1545
1544
|
has_part?: any;
|
|
1546
1545
|
is_part_of?: any;
|
|
1547
1546
|
creator?: any;
|
|
1547
|
+
rights?: any;
|
|
1548
1548
|
count?: number | null | undefined;
|
|
1549
1549
|
};
|
|
1550
|
-
resource?: string | null | undefined;
|
|
1551
1550
|
type?: {
|
|
1552
1551
|
label?: string | null | undefined;
|
|
1553
|
-
resource?: string | null | undefined;
|
|
1554
1552
|
id?: string | null | undefined;
|
|
1555
|
-
} | null | undefined;
|
|
1556
|
-
description?: Record<string, string> | null | undefined;
|
|
1557
|
-
identifier?: string[] | null | undefined;
|
|
1558
|
-
license?: {
|
|
1559
|
-
label?: string | null | undefined;
|
|
1560
1553
|
resource?: string | null | undefined;
|
|
1561
|
-
id?: string | null | undefined;
|
|
1562
|
-
description?: string | null | undefined;
|
|
1563
1554
|
} | null | undefined;
|
|
1555
|
+
source?: string[] | null | undefined;
|
|
1564
1556
|
title?: Record<string, string> | null | undefined;
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1557
|
+
description?: Record<string, string> | null | undefined;
|
|
1558
|
+
resource?: string | null | undefined;
|
|
1559
|
+
country?: {
|
|
1568
1560
|
label?: string | null | undefined;
|
|
1569
|
-
resource?: string | null | undefined;
|
|
1570
1561
|
id?: string | null | undefined;
|
|
1571
|
-
|
|
1572
|
-
|
|
1562
|
+
resource?: string | null | undefined;
|
|
1563
|
+
} | null | undefined;
|
|
1573
1564
|
language?: {
|
|
1574
1565
|
label?: string | null | undefined;
|
|
1575
|
-
resource?: string | null | undefined;
|
|
1576
1566
|
id?: string | null | undefined;
|
|
1567
|
+
resource?: string | null | undefined;
|
|
1577
1568
|
}[] | null | undefined;
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1569
|
+
keywords?: {
|
|
1570
|
+
label: string;
|
|
1571
|
+
id: string;
|
|
1572
|
+
language: string;
|
|
1573
|
+
}[] | null | undefined;
|
|
1574
|
+
license?: {
|
|
1582
1575
|
label?: string | null | undefined;
|
|
1583
|
-
resource?: string | null | undefined;
|
|
1584
1576
|
id?: string | null | undefined;
|
|
1585
|
-
|
|
1577
|
+
description?: string | null | undefined;
|
|
1578
|
+
resource?: string | null | undefined;
|
|
1579
|
+
} | null | undefined;
|
|
1586
1580
|
publisher?: {
|
|
1587
1581
|
type?: string | null | undefined;
|
|
1588
1582
|
name?: string | null | undefined;
|
|
1589
1583
|
email?: string | null | undefined;
|
|
1590
1584
|
homepage?: string | null | undefined;
|
|
1591
1585
|
} | null | undefined;
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
resource?: string | null | undefined;
|
|
1595
|
-
id?: string | null | undefined;
|
|
1596
|
-
} | null | undefined;
|
|
1586
|
+
issued?: string | null | undefined;
|
|
1587
|
+
modified?: string | null | undefined;
|
|
1597
1588
|
spatial?: zod.objectOutputType<{}, zod.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1598
1589
|
spatial_resource?: any;
|
|
1599
1590
|
creator?: {
|
|
@@ -1602,16 +1593,11 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1602
1593
|
email?: string | null | undefined;
|
|
1603
1594
|
homepage?: string | null | undefined;
|
|
1604
1595
|
} | null | undefined;
|
|
1605
|
-
keywords?: {
|
|
1606
|
-
label: string;
|
|
1607
|
-
id: string;
|
|
1608
|
-
language: string;
|
|
1609
|
-
}[] | null | undefined;
|
|
1610
1596
|
subject?: {
|
|
1611
1597
|
label?: string | null | undefined;
|
|
1612
1598
|
resource?: string | null | undefined;
|
|
1613
1599
|
}[] | null | undefined;
|
|
1614
|
-
|
|
1600
|
+
temporal_resolution?: string | null | undefined;
|
|
1615
1601
|
relation?: string[] | null | undefined;
|
|
1616
1602
|
legal_basis?: Record<string, string> | null | undefined;
|
|
1617
1603
|
stat_unit_measure?: string[] | null | undefined;
|
|
@@ -1623,44 +1609,69 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1623
1609
|
lte: string;
|
|
1624
1610
|
gte: string;
|
|
1625
1611
|
}[] | null | undefined;
|
|
1612
|
+
identifier?: string[] | null | undefined;
|
|
1626
1613
|
is_version_of?: string[] | null | undefined;
|
|
1614
|
+
spatial_resolution_in_meters?: any;
|
|
1615
|
+
conforms_to?: {
|
|
1616
|
+
label?: string | null | undefined;
|
|
1617
|
+
id?: string | null | undefined;
|
|
1618
|
+
resource?: string | null | undefined;
|
|
1619
|
+
}[] | null | undefined;
|
|
1620
|
+
page?: any;
|
|
1621
|
+
extended_metadata?: any;
|
|
1622
|
+
applicable_legislation?: {
|
|
1623
|
+
label?: string | null | undefined;
|
|
1624
|
+
id?: string | null | undefined;
|
|
1625
|
+
resource?: string | null | undefined;
|
|
1626
|
+
}[] | null | undefined;
|
|
1627
1627
|
distributions?: {
|
|
1628
1628
|
id: string;
|
|
1629
|
-
resource?: string | null | undefined;
|
|
1630
1629
|
type?: {
|
|
1631
1630
|
label?: string | null | undefined;
|
|
1632
1631
|
resource?: string | null | undefined;
|
|
1633
1632
|
} | null | undefined;
|
|
1633
|
+
title?: Record<string, string> | null | undefined;
|
|
1634
1634
|
status?: {
|
|
1635
1635
|
label?: string | null | undefined;
|
|
1636
1636
|
resource?: string | null | undefined;
|
|
1637
1637
|
} | null | undefined;
|
|
1638
1638
|
description?: Record<string, string> | null | undefined;
|
|
1639
|
-
|
|
1639
|
+
resource?: string | null | undefined;
|
|
1640
|
+
language?: {
|
|
1640
1641
|
label?: string | null | undefined;
|
|
1642
|
+
id?: string | null | undefined;
|
|
1641
1643
|
resource?: string | null | undefined;
|
|
1644
|
+
}[] | null | undefined;
|
|
1645
|
+
license?: {
|
|
1646
|
+
label?: string | null | undefined;
|
|
1642
1647
|
id?: string | null | undefined;
|
|
1643
1648
|
description?: string | null | undefined;
|
|
1649
|
+
resource?: string | null | undefined;
|
|
1644
1650
|
} | null | undefined;
|
|
1645
|
-
|
|
1651
|
+
issued?: string | null | undefined;
|
|
1652
|
+
modified?: string | null | undefined;
|
|
1653
|
+
rights?: {
|
|
1654
|
+
label?: string | null | undefined;
|
|
1655
|
+
resource?: string | null | undefined;
|
|
1656
|
+
} | null | undefined;
|
|
1657
|
+
temporal_resolution?: string | null | undefined;
|
|
1646
1658
|
access_service?: {
|
|
1659
|
+
title?: Record<string, string> | null | undefined;
|
|
1647
1660
|
description?: Record<string, string> | null | undefined;
|
|
1648
|
-
endpoint_url?: string[] | null | undefined;
|
|
1649
1661
|
license?: {
|
|
1650
1662
|
label?: string | null | undefined;
|
|
1651
|
-
resource?: string | null | undefined;
|
|
1652
1663
|
id?: string | null | undefined;
|
|
1653
1664
|
description?: string | null | undefined;
|
|
1665
|
+
resource?: string | null | undefined;
|
|
1654
1666
|
} | null | undefined;
|
|
1655
|
-
|
|
1667
|
+
endpoint_url?: string[] | null | undefined;
|
|
1656
1668
|
}[] | null | undefined;
|
|
1657
1669
|
spatial_resolution_in_meters?: number | null | undefined;
|
|
1658
1670
|
format?: {
|
|
1659
1671
|
label?: string | null | undefined;
|
|
1660
|
-
resource?: string | null | undefined;
|
|
1661
1672
|
id?: string | null | undefined;
|
|
1673
|
+
resource?: string | null | undefined;
|
|
1662
1674
|
} | null | undefined;
|
|
1663
|
-
issued?: string | null | undefined;
|
|
1664
1675
|
conforms_to?: {
|
|
1665
1676
|
label?: string | null | undefined;
|
|
1666
1677
|
resource?: string | null | undefined;
|
|
@@ -1669,12 +1680,7 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1669
1680
|
label?: string | null | undefined;
|
|
1670
1681
|
resource?: string | null | undefined;
|
|
1671
1682
|
} | null | undefined;
|
|
1672
|
-
temporal_resolution?: string | null | undefined;
|
|
1673
1683
|
media_type?: string | null | undefined;
|
|
1674
|
-
rights?: {
|
|
1675
|
-
label?: string | null | undefined;
|
|
1676
|
-
resource?: string | null | undefined;
|
|
1677
|
-
} | null | undefined;
|
|
1678
1684
|
access_url?: string[] | null | undefined;
|
|
1679
1685
|
download_url?: string[] | null | undefined;
|
|
1680
1686
|
byte_size?: number | null | undefined;
|
|
@@ -1682,20 +1688,14 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1682
1688
|
algorithm?: string | null | undefined;
|
|
1683
1689
|
checksum_value?: string | null | undefined;
|
|
1684
1690
|
} | null | undefined;
|
|
1685
|
-
language?: {
|
|
1686
|
-
label?: string | null | undefined;
|
|
1687
|
-
resource?: string | null | undefined;
|
|
1688
|
-
id?: string | null | undefined;
|
|
1689
|
-
}[] | null | undefined;
|
|
1690
|
-
modified?: string | null | undefined;
|
|
1691
1691
|
page?: ({
|
|
1692
|
-
resource?: string | null | undefined;
|
|
1693
|
-
description?: Record<string, string> | null | undefined;
|
|
1694
1692
|
title?: Record<string, string> | null | undefined;
|
|
1693
|
+
description?: Record<string, string> | null | undefined;
|
|
1694
|
+
resource?: string | null | undefined;
|
|
1695
1695
|
format?: {
|
|
1696
1696
|
label?: string | null | undefined;
|
|
1697
|
-
resource?: string | null | undefined;
|
|
1698
1697
|
id?: string | null | undefined;
|
|
1698
|
+
resource?: string | null | undefined;
|
|
1699
1699
|
} | null | undefined;
|
|
1700
1700
|
} | null | undefined)[] | null | undefined;
|
|
1701
1701
|
compress_format?: {
|
|
@@ -1710,8 +1710,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1710
1710
|
extended_metadata?: string[] | null | undefined;
|
|
1711
1711
|
applicable_legislation?: ({
|
|
1712
1712
|
label?: string | null | undefined;
|
|
1713
|
-
resource?: string | null | undefined;
|
|
1714
1713
|
id?: string | null | undefined;
|
|
1714
|
+
resource?: string | null | undefined;
|
|
1715
1715
|
} | null | undefined)[] | null | undefined;
|
|
1716
1716
|
}[] | null | undefined;
|
|
1717
1717
|
is_referenced_by?: string[] | null | undefined;
|
|
@@ -1725,44 +1725,44 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1725
1725
|
modified?: string | null | undefined;
|
|
1726
1726
|
} | null | undefined;
|
|
1727
1727
|
contact_point?: {
|
|
1728
|
-
resource?: string | null | undefined;
|
|
1729
1728
|
type?: string | null | undefined;
|
|
1730
1729
|
name?: string | null | undefined;
|
|
1730
|
+
address?: string | null | undefined;
|
|
1731
|
+
resource?: string | null | undefined;
|
|
1731
1732
|
email?: string | null | undefined;
|
|
1732
1733
|
organisation_name?: string | null | undefined;
|
|
1733
|
-
address?: string | null | undefined;
|
|
1734
1734
|
telephone?: string | null | undefined;
|
|
1735
1735
|
url?: string[] | null | undefined;
|
|
1736
1736
|
}[] | null | undefined;
|
|
1737
1737
|
translation_meta?: {
|
|
1738
|
-
status: string;
|
|
1739
1738
|
details: Record<string, {
|
|
1740
1739
|
machine_translated: boolean;
|
|
1741
1740
|
}>;
|
|
1741
|
+
status: string;
|
|
1742
1742
|
full_available_languages: string[];
|
|
1743
1743
|
} | null | undefined;
|
|
1744
1744
|
version_notes?: Record<string, string> | null | undefined;
|
|
1745
1745
|
has_version?: string[] | null | undefined;
|
|
1746
1746
|
accrual_periodicity?: {
|
|
1747
1747
|
label?: string | null | undefined;
|
|
1748
|
-
resource?: string | null | undefined;
|
|
1749
1748
|
id?: string | null | undefined;
|
|
1749
|
+
resource?: string | null | undefined;
|
|
1750
1750
|
} | null | undefined;
|
|
1751
1751
|
geocoding_description?: any;
|
|
1752
1752
|
access_right?: {
|
|
1753
1753
|
label?: string | null | undefined;
|
|
1754
|
-
resource?: string | null | undefined;
|
|
1755
1754
|
id?: string | null | undefined;
|
|
1755
|
+
resource?: string | null | undefined;
|
|
1756
1756
|
} | null | undefined;
|
|
1757
1757
|
provenance?: {
|
|
1758
1758
|
label?: string | null | undefined;
|
|
1759
|
-
resource?: string | null | undefined;
|
|
1760
1759
|
id?: string | null | undefined;
|
|
1760
|
+
resource?: string | null | undefined;
|
|
1761
1761
|
}[] | null | undefined;
|
|
1762
1762
|
categories?: {
|
|
1763
1763
|
label: Record<string, string>;
|
|
1764
|
-
resource: string;
|
|
1765
1764
|
id: string;
|
|
1765
|
+
resource: string;
|
|
1766
1766
|
}[] | null | undefined;
|
|
1767
1767
|
adms_identifier?: {
|
|
1768
1768
|
resource?: string | null | undefined;
|
|
@@ -1775,8 +1775,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1775
1775
|
dimension?: string[] | null | undefined;
|
|
1776
1776
|
landing_page?: {
|
|
1777
1777
|
label?: string | null | undefined;
|
|
1778
|
-
resource?: string | null | undefined;
|
|
1779
1778
|
id?: string | null | undefined;
|
|
1779
|
+
resource?: string | null | undefined;
|
|
1780
1780
|
}[] | null | undefined;
|
|
1781
1781
|
version_info?: any;
|
|
1782
1782
|
sample?: string[] | null | undefined;
|
|
@@ -1784,29 +1784,31 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1784
1784
|
is_hvd?: boolean | null | undefined;
|
|
1785
1785
|
hvd_category?: {
|
|
1786
1786
|
label?: string | null | undefined;
|
|
1787
|
-
resource?: string | null | undefined;
|
|
1788
1787
|
id?: string | null | undefined;
|
|
1788
|
+
resource?: string | null | undefined;
|
|
1789
1789
|
}[] | null | undefined;
|
|
1790
1790
|
}, {
|
|
1791
1791
|
id: string;
|
|
1792
1792
|
catalog: {
|
|
1793
1793
|
id: string;
|
|
1794
|
+
title?: Record<string, string> | null | undefined;
|
|
1794
1795
|
description?: Record<string, string> | null | undefined;
|
|
1795
|
-
|
|
1796
|
+
country?: {
|
|
1796
1797
|
label?: string | null | undefined;
|
|
1797
|
-
resource?: string | null | undefined;
|
|
1798
1798
|
id?: string | null | undefined;
|
|
1799
|
-
|
|
1799
|
+
resource?: string | null | undefined;
|
|
1800
1800
|
} | null | undefined;
|
|
1801
|
-
title?: Record<string, string> | null | undefined;
|
|
1802
|
-
issued?: string | null | undefined;
|
|
1803
|
-
rights?: any;
|
|
1804
1801
|
language?: {
|
|
1805
1802
|
label?: string | null | undefined;
|
|
1806
|
-
resource?: string | null | undefined;
|
|
1807
1803
|
id?: string | null | undefined;
|
|
1804
|
+
resource?: string | null | undefined;
|
|
1808
1805
|
}[] | null | undefined;
|
|
1809
|
-
|
|
1806
|
+
license?: {
|
|
1807
|
+
label?: string | null | undefined;
|
|
1808
|
+
id?: string | null | undefined;
|
|
1809
|
+
description?: string | null | undefined;
|
|
1810
|
+
resource?: string | null | undefined;
|
|
1811
|
+
} | null | undefined;
|
|
1810
1812
|
homepage?: string | null | undefined;
|
|
1811
1813
|
publisher?: {
|
|
1812
1814
|
type?: string | null | undefined;
|
|
@@ -1814,11 +1816,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1814
1816
|
email?: string | null | undefined;
|
|
1815
1817
|
homepage?: string | null | undefined;
|
|
1816
1818
|
} | null | undefined;
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
resource?: string | null | undefined;
|
|
1820
|
-
id?: string | null | undefined;
|
|
1821
|
-
} | null | undefined;
|
|
1819
|
+
issued?: string | null | undefined;
|
|
1820
|
+
modified?: string | null | undefined;
|
|
1822
1821
|
spatial?: any[] | null | undefined;
|
|
1823
1822
|
spatial_resource?: any;
|
|
1824
1823
|
theme_taxonomy?: any;
|
|
@@ -1826,55 +1825,47 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1826
1825
|
has_part?: any;
|
|
1827
1826
|
is_part_of?: any;
|
|
1828
1827
|
creator?: any;
|
|
1828
|
+
rights?: any;
|
|
1829
1829
|
count?: number | null | undefined;
|
|
1830
1830
|
};
|
|
1831
|
-
resource?: string | null | undefined;
|
|
1832
1831
|
type?: {
|
|
1833
1832
|
label?: string | null | undefined;
|
|
1834
|
-
resource?: string | null | undefined;
|
|
1835
1833
|
id?: string | null | undefined;
|
|
1836
|
-
} | null | undefined;
|
|
1837
|
-
description?: Record<string, string> | null | undefined;
|
|
1838
|
-
identifier?: string[] | null | undefined;
|
|
1839
|
-
license?: {
|
|
1840
|
-
label?: string | null | undefined;
|
|
1841
1834
|
resource?: string | null | undefined;
|
|
1842
|
-
id?: string | null | undefined;
|
|
1843
|
-
description?: string | null | undefined;
|
|
1844
1835
|
} | null | undefined;
|
|
1836
|
+
source?: string[] | null | undefined;
|
|
1845
1837
|
title?: Record<string, string> | null | undefined;
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1838
|
+
description?: Record<string, string> | null | undefined;
|
|
1839
|
+
resource?: string | null | undefined;
|
|
1840
|
+
country?: {
|
|
1849
1841
|
label?: string | null | undefined;
|
|
1850
|
-
resource?: string | null | undefined;
|
|
1851
1842
|
id?: string | null | undefined;
|
|
1852
|
-
|
|
1853
|
-
|
|
1843
|
+
resource?: string | null | undefined;
|
|
1844
|
+
} | null | undefined;
|
|
1854
1845
|
language?: {
|
|
1855
1846
|
label?: string | null | undefined;
|
|
1856
|
-
resource?: string | null | undefined;
|
|
1857
1847
|
id?: string | null | undefined;
|
|
1848
|
+
resource?: string | null | undefined;
|
|
1858
1849
|
}[] | null | undefined;
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1850
|
+
keywords?: {
|
|
1851
|
+
label: string;
|
|
1852
|
+
id: string;
|
|
1853
|
+
language: string;
|
|
1854
|
+
}[] | null | undefined;
|
|
1855
|
+
license?: {
|
|
1863
1856
|
label?: string | null | undefined;
|
|
1864
|
-
resource?: string | null | undefined;
|
|
1865
1857
|
id?: string | null | undefined;
|
|
1866
|
-
|
|
1858
|
+
description?: string | null | undefined;
|
|
1859
|
+
resource?: string | null | undefined;
|
|
1860
|
+
} | null | undefined;
|
|
1867
1861
|
publisher?: {
|
|
1868
1862
|
type?: string | null | undefined;
|
|
1869
1863
|
name?: string | null | undefined;
|
|
1870
1864
|
email?: string | null | undefined;
|
|
1871
1865
|
homepage?: string | null | undefined;
|
|
1872
1866
|
} | null | undefined;
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
resource?: string | null | undefined;
|
|
1876
|
-
id?: string | null | undefined;
|
|
1877
|
-
} | null | undefined;
|
|
1867
|
+
issued?: string | null | undefined;
|
|
1868
|
+
modified?: string | null | undefined;
|
|
1878
1869
|
spatial?: zod.objectInputType<{}, zod.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1879
1870
|
spatial_resource?: any;
|
|
1880
1871
|
creator?: {
|
|
@@ -1883,16 +1874,11 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1883
1874
|
email?: string | null | undefined;
|
|
1884
1875
|
homepage?: string | null | undefined;
|
|
1885
1876
|
} | null | undefined;
|
|
1886
|
-
keywords?: {
|
|
1887
|
-
label: string;
|
|
1888
|
-
id: string;
|
|
1889
|
-
language: string;
|
|
1890
|
-
}[] | null | undefined;
|
|
1891
1877
|
subject?: {
|
|
1892
1878
|
label?: string | null | undefined;
|
|
1893
1879
|
resource?: string | null | undefined;
|
|
1894
1880
|
}[] | null | undefined;
|
|
1895
|
-
|
|
1881
|
+
temporal_resolution?: string | null | undefined;
|
|
1896
1882
|
relation?: string[] | null | undefined;
|
|
1897
1883
|
legal_basis?: Record<string, string> | null | undefined;
|
|
1898
1884
|
stat_unit_measure?: string[] | null | undefined;
|
|
@@ -1904,44 +1890,69 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1904
1890
|
lte: string;
|
|
1905
1891
|
gte: string;
|
|
1906
1892
|
}[] | null | undefined;
|
|
1893
|
+
identifier?: string[] | null | undefined;
|
|
1907
1894
|
is_version_of?: string[] | null | undefined;
|
|
1895
|
+
spatial_resolution_in_meters?: any;
|
|
1896
|
+
conforms_to?: {
|
|
1897
|
+
label?: string | null | undefined;
|
|
1898
|
+
id?: string | null | undefined;
|
|
1899
|
+
resource?: string | null | undefined;
|
|
1900
|
+
}[] | null | undefined;
|
|
1901
|
+
page?: any;
|
|
1902
|
+
extended_metadata?: any;
|
|
1903
|
+
applicable_legislation?: {
|
|
1904
|
+
label?: string | null | undefined;
|
|
1905
|
+
id?: string | null | undefined;
|
|
1906
|
+
resource?: string | null | undefined;
|
|
1907
|
+
}[] | null | undefined;
|
|
1908
1908
|
distributions?: {
|
|
1909
1909
|
id: string;
|
|
1910
|
-
resource?: string | null | undefined;
|
|
1911
1910
|
type?: {
|
|
1912
1911
|
label?: string | null | undefined;
|
|
1913
1912
|
resource?: string | null | undefined;
|
|
1914
1913
|
} | null | undefined;
|
|
1914
|
+
title?: Record<string, string> | null | undefined;
|
|
1915
1915
|
status?: {
|
|
1916
1916
|
label?: string | null | undefined;
|
|
1917
1917
|
resource?: string | null | undefined;
|
|
1918
1918
|
} | null | undefined;
|
|
1919
1919
|
description?: Record<string, string> | null | undefined;
|
|
1920
|
-
|
|
1920
|
+
resource?: string | null | undefined;
|
|
1921
|
+
language?: {
|
|
1921
1922
|
label?: string | null | undefined;
|
|
1923
|
+
id?: string | null | undefined;
|
|
1922
1924
|
resource?: string | null | undefined;
|
|
1925
|
+
}[] | null | undefined;
|
|
1926
|
+
license?: {
|
|
1927
|
+
label?: string | null | undefined;
|
|
1923
1928
|
id?: string | null | undefined;
|
|
1924
1929
|
description?: string | null | undefined;
|
|
1930
|
+
resource?: string | null | undefined;
|
|
1925
1931
|
} | null | undefined;
|
|
1926
|
-
|
|
1932
|
+
issued?: string | null | undefined;
|
|
1933
|
+
modified?: string | null | undefined;
|
|
1934
|
+
rights?: {
|
|
1935
|
+
label?: string | null | undefined;
|
|
1936
|
+
resource?: string | null | undefined;
|
|
1937
|
+
} | null | undefined;
|
|
1938
|
+
temporal_resolution?: string | null | undefined;
|
|
1927
1939
|
access_service?: {
|
|
1940
|
+
title?: Record<string, string> | null | undefined;
|
|
1928
1941
|
description?: Record<string, string> | null | undefined;
|
|
1929
|
-
endpoint_url?: string[] | null | undefined;
|
|
1930
1942
|
license?: {
|
|
1931
1943
|
label?: string | null | undefined;
|
|
1932
|
-
resource?: string | null | undefined;
|
|
1933
1944
|
id?: string | null | undefined;
|
|
1934
1945
|
description?: string | null | undefined;
|
|
1946
|
+
resource?: string | null | undefined;
|
|
1935
1947
|
} | null | undefined;
|
|
1936
|
-
|
|
1948
|
+
endpoint_url?: string[] | null | undefined;
|
|
1937
1949
|
}[] | null | undefined;
|
|
1938
1950
|
spatial_resolution_in_meters?: number | null | undefined;
|
|
1939
1951
|
format?: {
|
|
1940
1952
|
label?: string | null | undefined;
|
|
1941
|
-
resource?: string | null | undefined;
|
|
1942
1953
|
id?: string | null | undefined;
|
|
1954
|
+
resource?: string | null | undefined;
|
|
1943
1955
|
} | null | undefined;
|
|
1944
|
-
issued?: string | null | undefined;
|
|
1945
1956
|
conforms_to?: {
|
|
1946
1957
|
label?: string | null | undefined;
|
|
1947
1958
|
resource?: string | null | undefined;
|
|
@@ -1950,12 +1961,7 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1950
1961
|
label?: string | null | undefined;
|
|
1951
1962
|
resource?: string | null | undefined;
|
|
1952
1963
|
} | null | undefined;
|
|
1953
|
-
temporal_resolution?: string | null | undefined;
|
|
1954
1964
|
media_type?: string | null | undefined;
|
|
1955
|
-
rights?: {
|
|
1956
|
-
label?: string | null | undefined;
|
|
1957
|
-
resource?: string | null | undefined;
|
|
1958
|
-
} | null | undefined;
|
|
1959
1965
|
access_url?: string[] | null | undefined;
|
|
1960
1966
|
download_url?: string[] | null | undefined;
|
|
1961
1967
|
byte_size?: number | null | undefined;
|
|
@@ -1963,20 +1969,14 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1963
1969
|
algorithm?: string | null | undefined;
|
|
1964
1970
|
checksum_value?: string | null | undefined;
|
|
1965
1971
|
} | null | undefined;
|
|
1966
|
-
language?: {
|
|
1967
|
-
label?: string | null | undefined;
|
|
1968
|
-
resource?: string | null | undefined;
|
|
1969
|
-
id?: string | null | undefined;
|
|
1970
|
-
}[] | null | undefined;
|
|
1971
|
-
modified?: string | null | undefined;
|
|
1972
1972
|
page?: ({
|
|
1973
|
-
resource?: string | null | undefined;
|
|
1974
|
-
description?: Record<string, string> | null | undefined;
|
|
1975
1973
|
title?: Record<string, string> | null | undefined;
|
|
1974
|
+
description?: Record<string, string> | null | undefined;
|
|
1975
|
+
resource?: string | null | undefined;
|
|
1976
1976
|
format?: {
|
|
1977
1977
|
label?: string | null | undefined;
|
|
1978
|
-
resource?: string | null | undefined;
|
|
1979
1978
|
id?: string | null | undefined;
|
|
1979
|
+
resource?: string | null | undefined;
|
|
1980
1980
|
} | null | undefined;
|
|
1981
1981
|
} | null | undefined)[] | null | undefined;
|
|
1982
1982
|
compress_format?: {
|
|
@@ -1991,8 +1991,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
1991
1991
|
extended_metadata?: string[] | null | undefined;
|
|
1992
1992
|
applicable_legislation?: ({
|
|
1993
1993
|
label?: string | null | undefined;
|
|
1994
|
-
resource?: string | null | undefined;
|
|
1995
1994
|
id?: string | null | undefined;
|
|
1995
|
+
resource?: string | null | undefined;
|
|
1996
1996
|
} | null | undefined)[] | null | undefined;
|
|
1997
1997
|
}[] | null | undefined;
|
|
1998
1998
|
is_referenced_by?: string[] | null | undefined;
|
|
@@ -2006,44 +2006,44 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2006
2006
|
modified?: string | null | undefined;
|
|
2007
2007
|
} | null | undefined;
|
|
2008
2008
|
contact_point?: {
|
|
2009
|
-
resource?: string | null | undefined;
|
|
2010
2009
|
type?: string | null | undefined;
|
|
2011
2010
|
name?: string | null | undefined;
|
|
2011
|
+
address?: string | null | undefined;
|
|
2012
|
+
resource?: string | null | undefined;
|
|
2012
2013
|
email?: string | null | undefined;
|
|
2013
2014
|
organisation_name?: string | null | undefined;
|
|
2014
|
-
address?: string | null | undefined;
|
|
2015
2015
|
telephone?: string | null | undefined;
|
|
2016
2016
|
url?: string[] | null | undefined;
|
|
2017
2017
|
}[] | null | undefined;
|
|
2018
2018
|
translation_meta?: {
|
|
2019
|
-
status: string;
|
|
2020
2019
|
details: Record<string, {
|
|
2021
2020
|
machine_translated: boolean;
|
|
2022
2021
|
}>;
|
|
2022
|
+
status: string;
|
|
2023
2023
|
full_available_languages: string[];
|
|
2024
2024
|
} | null | undefined;
|
|
2025
2025
|
version_notes?: Record<string, string> | null | undefined;
|
|
2026
2026
|
has_version?: string[] | null | undefined;
|
|
2027
2027
|
accrual_periodicity?: {
|
|
2028
2028
|
label?: string | null | undefined;
|
|
2029
|
-
resource?: string | null | undefined;
|
|
2030
2029
|
id?: string | null | undefined;
|
|
2030
|
+
resource?: string | null | undefined;
|
|
2031
2031
|
} | null | undefined;
|
|
2032
2032
|
geocoding_description?: any;
|
|
2033
2033
|
access_right?: {
|
|
2034
2034
|
label?: string | null | undefined;
|
|
2035
|
-
resource?: string | null | undefined;
|
|
2036
2035
|
id?: string | null | undefined;
|
|
2036
|
+
resource?: string | null | undefined;
|
|
2037
2037
|
} | null | undefined;
|
|
2038
2038
|
provenance?: {
|
|
2039
2039
|
label?: string | null | undefined;
|
|
2040
|
-
resource?: string | null | undefined;
|
|
2041
2040
|
id?: string | null | undefined;
|
|
2041
|
+
resource?: string | null | undefined;
|
|
2042
2042
|
}[] | null | undefined;
|
|
2043
2043
|
categories?: {
|
|
2044
2044
|
label: Record<string, string>;
|
|
2045
|
-
resource: string;
|
|
2046
2045
|
id: string;
|
|
2046
|
+
resource: string;
|
|
2047
2047
|
}[] | null | undefined;
|
|
2048
2048
|
adms_identifier?: {
|
|
2049
2049
|
resource?: string | null | undefined;
|
|
@@ -2056,8 +2056,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2056
2056
|
dimension?: string[] | null | undefined;
|
|
2057
2057
|
landing_page?: {
|
|
2058
2058
|
label?: string | null | undefined;
|
|
2059
|
-
resource?: string | null | undefined;
|
|
2060
2059
|
id?: string | null | undefined;
|
|
2060
|
+
resource?: string | null | undefined;
|
|
2061
2061
|
}[] | null | undefined;
|
|
2062
2062
|
version_info?: any;
|
|
2063
2063
|
sample?: string[] | null | undefined;
|
|
@@ -2065,8 +2065,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2065
2065
|
is_hvd?: boolean | null | undefined;
|
|
2066
2066
|
hvd_category?: {
|
|
2067
2067
|
label?: string | null | undefined;
|
|
2068
|
-
resource?: string | null | undefined;
|
|
2069
2068
|
id?: string | null | undefined;
|
|
2069
|
+
resource?: string | null | undefined;
|
|
2070
2070
|
}[] | null | undefined;
|
|
2071
2071
|
}>>;
|
|
2072
2072
|
schema: zod.ZodObject<{
|
|
@@ -2079,12 +2079,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2079
2079
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2080
2080
|
}, "strip", zod.ZodTypeAny, {
|
|
2081
2081
|
label?: string | null | undefined;
|
|
2082
|
-
resource?: string | null | undefined;
|
|
2083
2082
|
id?: string | null | undefined;
|
|
2083
|
+
resource?: string | null | undefined;
|
|
2084
2084
|
}, {
|
|
2085
2085
|
label?: string | null | undefined;
|
|
2086
|
-
resource?: string | null | undefined;
|
|
2087
2086
|
id?: string | null | undefined;
|
|
2087
|
+
resource?: string | null | undefined;
|
|
2088
2088
|
}>>>;
|
|
2089
2089
|
keywords: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
2090
2090
|
language: zod.ZodString;
|
|
@@ -2099,43 +2099,43 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2099
2099
|
id: string;
|
|
2100
2100
|
language: string;
|
|
2101
2101
|
}>, "many">>>;
|
|
2102
|
-
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<
|
|
2102
|
+
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
2103
2103
|
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2104
2104
|
label: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2105
2105
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2106
|
-
}
|
|
2106
|
+
} & {
|
|
2107
2107
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2108
|
-
}
|
|
2108
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2109
2109
|
label?: string | null | undefined;
|
|
2110
|
-
resource?: string | null | undefined;
|
|
2111
2110
|
id?: string | null | undefined;
|
|
2112
2111
|
description?: string | null | undefined;
|
|
2112
|
+
resource?: string | null | undefined;
|
|
2113
2113
|
}, {
|
|
2114
2114
|
label?: string | null | undefined;
|
|
2115
|
-
resource?: string | null | undefined;
|
|
2116
2115
|
id?: string | null | undefined;
|
|
2117
2116
|
description?: string | null | undefined;
|
|
2117
|
+
resource?: string | null | undefined;
|
|
2118
2118
|
}>>>;
|
|
2119
2119
|
catalog: zod.ZodObject<{
|
|
2120
2120
|
id: zod.ZodString;
|
|
2121
2121
|
title: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
|
|
2122
2122
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
|
|
2123
|
-
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<
|
|
2123
|
+
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
2124
2124
|
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2125
2125
|
label: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2126
2126
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2127
|
-
}
|
|
2127
|
+
} & {
|
|
2128
2128
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2129
|
-
}
|
|
2129
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2130
2130
|
label?: string | null | undefined;
|
|
2131
|
-
resource?: string | null | undefined;
|
|
2132
2131
|
id?: string | null | undefined;
|
|
2133
2132
|
description?: string | null | undefined;
|
|
2133
|
+
resource?: string | null | undefined;
|
|
2134
2134
|
}, {
|
|
2135
2135
|
label?: string | null | undefined;
|
|
2136
|
-
resource?: string | null | undefined;
|
|
2137
2136
|
id?: string | null | undefined;
|
|
2138
2137
|
description?: string | null | undefined;
|
|
2138
|
+
resource?: string | null | undefined;
|
|
2139
2139
|
}>>>;
|
|
2140
2140
|
publisher: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
2141
2141
|
name: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -2159,12 +2159,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2159
2159
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2160
2160
|
}, "strip", zod.ZodTypeAny, {
|
|
2161
2161
|
label?: string | null | undefined;
|
|
2162
|
-
resource?: string | null | undefined;
|
|
2163
2162
|
id?: string | null | undefined;
|
|
2163
|
+
resource?: string | null | undefined;
|
|
2164
2164
|
}, {
|
|
2165
2165
|
label?: string | null | undefined;
|
|
2166
|
-
resource?: string | null | undefined;
|
|
2167
2166
|
id?: string | null | undefined;
|
|
2167
|
+
resource?: string | null | undefined;
|
|
2168
2168
|
}>, "many">>>;
|
|
2169
2169
|
country: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
2170
2170
|
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -2172,12 +2172,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2172
2172
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2173
2173
|
}, "strip", zod.ZodTypeAny, {
|
|
2174
2174
|
label?: string | null | undefined;
|
|
2175
|
-
resource?: string | null | undefined;
|
|
2176
2175
|
id?: string | null | undefined;
|
|
2176
|
+
resource?: string | null | undefined;
|
|
2177
2177
|
}, {
|
|
2178
2178
|
label?: string | null | undefined;
|
|
2179
|
-
resource?: string | null | undefined;
|
|
2180
2179
|
id?: string | null | undefined;
|
|
2180
|
+
resource?: string | null | undefined;
|
|
2181
2181
|
}>>>;
|
|
2182
2182
|
homepage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2183
2183
|
issued: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -2193,22 +2193,24 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2193
2193
|
count: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
2194
2194
|
}, "strip", zod.ZodTypeAny, {
|
|
2195
2195
|
id: string;
|
|
2196
|
+
title?: Record<string, string> | null | undefined;
|
|
2196
2197
|
description?: Record<string, string> | null | undefined;
|
|
2197
|
-
|
|
2198
|
+
country?: {
|
|
2198
2199
|
label?: string | null | undefined;
|
|
2199
|
-
resource?: string | null | undefined;
|
|
2200
2200
|
id?: string | null | undefined;
|
|
2201
|
-
|
|
2201
|
+
resource?: string | null | undefined;
|
|
2202
2202
|
} | null | undefined;
|
|
2203
|
-
title?: Record<string, string> | null | undefined;
|
|
2204
|
-
issued?: string | null | undefined;
|
|
2205
|
-
rights?: any;
|
|
2206
2203
|
language?: {
|
|
2207
2204
|
label?: string | null | undefined;
|
|
2208
|
-
resource?: string | null | undefined;
|
|
2209
2205
|
id?: string | null | undefined;
|
|
2206
|
+
resource?: string | null | undefined;
|
|
2210
2207
|
}[] | null | undefined;
|
|
2211
|
-
|
|
2208
|
+
license?: {
|
|
2209
|
+
label?: string | null | undefined;
|
|
2210
|
+
id?: string | null | undefined;
|
|
2211
|
+
description?: string | null | undefined;
|
|
2212
|
+
resource?: string | null | undefined;
|
|
2213
|
+
} | null | undefined;
|
|
2212
2214
|
homepage?: string | null | undefined;
|
|
2213
2215
|
publisher?: {
|
|
2214
2216
|
type?: string | null | undefined;
|
|
@@ -2216,11 +2218,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2216
2218
|
email?: string | null | undefined;
|
|
2217
2219
|
homepage?: string | null | undefined;
|
|
2218
2220
|
} | null | undefined;
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
resource?: string | null | undefined;
|
|
2222
|
-
id?: string | null | undefined;
|
|
2223
|
-
} | null | undefined;
|
|
2221
|
+
issued?: string | null | undefined;
|
|
2222
|
+
modified?: string | null | undefined;
|
|
2224
2223
|
spatial?: any[] | null | undefined;
|
|
2225
2224
|
spatial_resource?: any;
|
|
2226
2225
|
theme_taxonomy?: any;
|
|
@@ -2228,25 +2227,28 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2228
2227
|
has_part?: any;
|
|
2229
2228
|
is_part_of?: any;
|
|
2230
2229
|
creator?: any;
|
|
2230
|
+
rights?: any;
|
|
2231
2231
|
count?: number | null | undefined;
|
|
2232
2232
|
}, {
|
|
2233
2233
|
id: string;
|
|
2234
|
+
title?: Record<string, string> | null | undefined;
|
|
2234
2235
|
description?: Record<string, string> | null | undefined;
|
|
2235
|
-
|
|
2236
|
+
country?: {
|
|
2236
2237
|
label?: string | null | undefined;
|
|
2237
|
-
resource?: string | null | undefined;
|
|
2238
2238
|
id?: string | null | undefined;
|
|
2239
|
-
|
|
2239
|
+
resource?: string | null | undefined;
|
|
2240
2240
|
} | null | undefined;
|
|
2241
|
-
title?: Record<string, string> | null | undefined;
|
|
2242
|
-
issued?: string | null | undefined;
|
|
2243
|
-
rights?: any;
|
|
2244
2241
|
language?: {
|
|
2245
2242
|
label?: string | null | undefined;
|
|
2246
|
-
resource?: string | null | undefined;
|
|
2247
2243
|
id?: string | null | undefined;
|
|
2244
|
+
resource?: string | null | undefined;
|
|
2248
2245
|
}[] | null | undefined;
|
|
2249
|
-
|
|
2246
|
+
license?: {
|
|
2247
|
+
label?: string | null | undefined;
|
|
2248
|
+
id?: string | null | undefined;
|
|
2249
|
+
description?: string | null | undefined;
|
|
2250
|
+
resource?: string | null | undefined;
|
|
2251
|
+
} | null | undefined;
|
|
2250
2252
|
homepage?: string | null | undefined;
|
|
2251
2253
|
publisher?: {
|
|
2252
2254
|
type?: string | null | undefined;
|
|
@@ -2254,11 +2256,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2254
2256
|
email?: string | null | undefined;
|
|
2255
2257
|
homepage?: string | null | undefined;
|
|
2256
2258
|
} | null | undefined;
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
resource?: string | null | undefined;
|
|
2260
|
-
id?: string | null | undefined;
|
|
2261
|
-
} | null | undefined;
|
|
2259
|
+
issued?: string | null | undefined;
|
|
2260
|
+
modified?: string | null | undefined;
|
|
2262
2261
|
spatial?: any[] | null | undefined;
|
|
2263
2262
|
spatial_resource?: any;
|
|
2264
2263
|
theme_taxonomy?: any;
|
|
@@ -2266,6 +2265,7 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2266
2265
|
has_part?: any;
|
|
2267
2266
|
is_part_of?: any;
|
|
2268
2267
|
creator?: any;
|
|
2268
|
+
rights?: any;
|
|
2269
2269
|
count?: number | null | undefined;
|
|
2270
2270
|
}>;
|
|
2271
2271
|
subject: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
@@ -2284,12 +2284,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2284
2284
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2285
2285
|
}, "strip", zod.ZodTypeAny, {
|
|
2286
2286
|
label?: string | null | undefined;
|
|
2287
|
-
resource?: string | null | undefined;
|
|
2288
2287
|
id?: string | null | undefined;
|
|
2288
|
+
resource?: string | null | undefined;
|
|
2289
2289
|
}, {
|
|
2290
2290
|
label?: string | null | undefined;
|
|
2291
|
-
resource?: string | null | undefined;
|
|
2292
2291
|
id?: string | null | undefined;
|
|
2292
|
+
resource?: string | null | undefined;
|
|
2293
2293
|
}>, "many">>>;
|
|
2294
2294
|
source: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
|
|
2295
2295
|
type: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
@@ -2298,12 +2298,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2298
2298
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2299
2299
|
}, "strip", zod.ZodTypeAny, {
|
|
2300
2300
|
label?: string | null | undefined;
|
|
2301
|
-
resource?: string | null | undefined;
|
|
2302
2301
|
id?: string | null | undefined;
|
|
2302
|
+
resource?: string | null | undefined;
|
|
2303
2303
|
}, {
|
|
2304
2304
|
label?: string | null | undefined;
|
|
2305
|
-
resource?: string | null | undefined;
|
|
2306
2305
|
id?: string | null | undefined;
|
|
2306
|
+
resource?: string | null | undefined;
|
|
2307
2307
|
}>>>;
|
|
2308
2308
|
temporal_resolution: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2309
2309
|
relation: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
|
|
@@ -2340,45 +2340,45 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2340
2340
|
id: zod.ZodString;
|
|
2341
2341
|
access_service: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
2342
2342
|
endpoint_url: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
|
|
2343
|
-
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<
|
|
2343
|
+
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
2344
2344
|
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2345
2345
|
label: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2346
2346
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2347
|
-
}
|
|
2347
|
+
} & {
|
|
2348
2348
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2349
|
-
}
|
|
2349
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2350
2350
|
label?: string | null | undefined;
|
|
2351
|
-
resource?: string | null | undefined;
|
|
2352
2351
|
id?: string | null | undefined;
|
|
2353
2352
|
description?: string | null | undefined;
|
|
2353
|
+
resource?: string | null | undefined;
|
|
2354
2354
|
}, {
|
|
2355
2355
|
label?: string | null | undefined;
|
|
2356
|
-
resource?: string | null | undefined;
|
|
2357
2356
|
id?: string | null | undefined;
|
|
2358
2357
|
description?: string | null | undefined;
|
|
2358
|
+
resource?: string | null | undefined;
|
|
2359
2359
|
}>>>;
|
|
2360
2360
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
|
|
2361
2361
|
title: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
|
|
2362
2362
|
}, "strip", zod.ZodTypeAny, {
|
|
2363
|
+
title?: Record<string, string> | null | undefined;
|
|
2363
2364
|
description?: Record<string, string> | null | undefined;
|
|
2364
|
-
endpoint_url?: string[] | null | undefined;
|
|
2365
2365
|
license?: {
|
|
2366
2366
|
label?: string | null | undefined;
|
|
2367
|
-
resource?: string | null | undefined;
|
|
2368
2367
|
id?: string | null | undefined;
|
|
2369
2368
|
description?: string | null | undefined;
|
|
2369
|
+
resource?: string | null | undefined;
|
|
2370
2370
|
} | null | undefined;
|
|
2371
|
-
|
|
2371
|
+
endpoint_url?: string[] | null | undefined;
|
|
2372
2372
|
}, {
|
|
2373
|
+
title?: Record<string, string> | null | undefined;
|
|
2373
2374
|
description?: Record<string, string> | null | undefined;
|
|
2374
|
-
endpoint_url?: string[] | null | undefined;
|
|
2375
2375
|
license?: {
|
|
2376
2376
|
label?: string | null | undefined;
|
|
2377
|
-
resource?: string | null | undefined;
|
|
2378
2377
|
id?: string | null | undefined;
|
|
2379
2378
|
description?: string | null | undefined;
|
|
2379
|
+
resource?: string | null | undefined;
|
|
2380
2380
|
} | null | undefined;
|
|
2381
|
-
|
|
2381
|
+
endpoint_url?: string[] | null | undefined;
|
|
2382
2382
|
}>, "many">>>;
|
|
2383
2383
|
spatial_resolution_in_meters: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
2384
2384
|
format: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
@@ -2387,12 +2387,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2387
2387
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2388
2388
|
}, "strip", zod.ZodTypeAny, {
|
|
2389
2389
|
label?: string | null | undefined;
|
|
2390
|
-
resource?: string | null | undefined;
|
|
2391
2390
|
id?: string | null | undefined;
|
|
2391
|
+
resource?: string | null | undefined;
|
|
2392
2392
|
}, {
|
|
2393
2393
|
label?: string | null | undefined;
|
|
2394
|
-
resource?: string | null | undefined;
|
|
2395
2394
|
id?: string | null | undefined;
|
|
2395
|
+
resource?: string | null | undefined;
|
|
2396
2396
|
}>>>;
|
|
2397
2397
|
issued: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2398
2398
|
conforms_to: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
@@ -2442,22 +2442,22 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2442
2442
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
|
|
2443
2443
|
access_url: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
|
|
2444
2444
|
download_url: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
|
|
2445
|
-
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<
|
|
2445
|
+
license: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
2446
2446
|
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2447
2447
|
label: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2448
2448
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2449
|
-
}
|
|
2449
|
+
} & {
|
|
2450
2450
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2451
|
-
}
|
|
2451
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2452
2452
|
label?: string | null | undefined;
|
|
2453
|
-
resource?: string | null | undefined;
|
|
2454
2453
|
id?: string | null | undefined;
|
|
2455
2454
|
description?: string | null | undefined;
|
|
2455
|
+
resource?: string | null | undefined;
|
|
2456
2456
|
}, {
|
|
2457
2457
|
label?: string | null | undefined;
|
|
2458
|
-
resource?: string | null | undefined;
|
|
2459
2458
|
id?: string | null | undefined;
|
|
2460
2459
|
description?: string | null | undefined;
|
|
2460
|
+
resource?: string | null | undefined;
|
|
2461
2461
|
}>>>;
|
|
2462
2462
|
byte_size: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
2463
2463
|
checksum: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
@@ -2476,12 +2476,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2476
2476
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2477
2477
|
}, "strip", zod.ZodTypeAny, {
|
|
2478
2478
|
label?: string | null | undefined;
|
|
2479
|
-
resource?: string | null | undefined;
|
|
2480
2479
|
id?: string | null | undefined;
|
|
2480
|
+
resource?: string | null | undefined;
|
|
2481
2481
|
}, {
|
|
2482
2482
|
label?: string | null | undefined;
|
|
2483
|
-
resource?: string | null | undefined;
|
|
2484
2483
|
id?: string | null | undefined;
|
|
2484
|
+
resource?: string | null | undefined;
|
|
2485
2485
|
}>, "many">>>;
|
|
2486
2486
|
modified: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2487
2487
|
page: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
@@ -2493,31 +2493,31 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2493
2493
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2494
2494
|
}, "strip", zod.ZodTypeAny, {
|
|
2495
2495
|
label?: string | null | undefined;
|
|
2496
|
-
resource?: string | null | undefined;
|
|
2497
2496
|
id?: string | null | undefined;
|
|
2497
|
+
resource?: string | null | undefined;
|
|
2498
2498
|
}, {
|
|
2499
2499
|
label?: string | null | undefined;
|
|
2500
|
-
resource?: string | null | undefined;
|
|
2501
2500
|
id?: string | null | undefined;
|
|
2501
|
+
resource?: string | null | undefined;
|
|
2502
2502
|
}>>>;
|
|
2503
2503
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2504
2504
|
}, "strip", zod.ZodTypeAny, {
|
|
2505
|
-
resource?: string | null | undefined;
|
|
2506
|
-
description?: Record<string, string> | null | undefined;
|
|
2507
2505
|
title?: Record<string, string> | null | undefined;
|
|
2506
|
+
description?: Record<string, string> | null | undefined;
|
|
2507
|
+
resource?: string | null | undefined;
|
|
2508
2508
|
format?: {
|
|
2509
2509
|
label?: string | null | undefined;
|
|
2510
|
-
resource?: string | null | undefined;
|
|
2511
2510
|
id?: string | null | undefined;
|
|
2511
|
+
resource?: string | null | undefined;
|
|
2512
2512
|
} | null | undefined;
|
|
2513
2513
|
}, {
|
|
2514
|
-
resource?: string | null | undefined;
|
|
2515
|
-
description?: Record<string, string> | null | undefined;
|
|
2516
2514
|
title?: Record<string, string> | null | undefined;
|
|
2515
|
+
description?: Record<string, string> | null | undefined;
|
|
2516
|
+
resource?: string | null | undefined;
|
|
2517
2517
|
format?: {
|
|
2518
2518
|
label?: string | null | undefined;
|
|
2519
|
-
resource?: string | null | undefined;
|
|
2520
2519
|
id?: string | null | undefined;
|
|
2520
|
+
resource?: string | null | undefined;
|
|
2521
2521
|
} | null | undefined;
|
|
2522
2522
|
}>>>, "many">>>;
|
|
2523
2523
|
compress_format: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
@@ -2558,50 +2558,61 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2558
2558
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2559
2559
|
}, "strip", zod.ZodTypeAny, {
|
|
2560
2560
|
label?: string | null | undefined;
|
|
2561
|
-
resource?: string | null | undefined;
|
|
2562
2561
|
id?: string | null | undefined;
|
|
2562
|
+
resource?: string | null | undefined;
|
|
2563
2563
|
}, {
|
|
2564
2564
|
label?: string | null | undefined;
|
|
2565
|
-
resource?: string | null | undefined;
|
|
2566
2565
|
id?: string | null | undefined;
|
|
2566
|
+
resource?: string | null | undefined;
|
|
2567
2567
|
}>>>, "many">>>;
|
|
2568
2568
|
}, "strip", zod.ZodTypeAny, {
|
|
2569
2569
|
id: string;
|
|
2570
|
-
resource?: string | null | undefined;
|
|
2571
2570
|
type?: {
|
|
2572
2571
|
label?: string | null | undefined;
|
|
2573
2572
|
resource?: string | null | undefined;
|
|
2574
2573
|
} | null | undefined;
|
|
2574
|
+
title?: Record<string, string> | null | undefined;
|
|
2575
2575
|
status?: {
|
|
2576
2576
|
label?: string | null | undefined;
|
|
2577
2577
|
resource?: string | null | undefined;
|
|
2578
2578
|
} | null | undefined;
|
|
2579
2579
|
description?: Record<string, string> | null | undefined;
|
|
2580
|
-
|
|
2580
|
+
resource?: string | null | undefined;
|
|
2581
|
+
language?: {
|
|
2581
2582
|
label?: string | null | undefined;
|
|
2583
|
+
id?: string | null | undefined;
|
|
2582
2584
|
resource?: string | null | undefined;
|
|
2585
|
+
}[] | null | undefined;
|
|
2586
|
+
license?: {
|
|
2587
|
+
label?: string | null | undefined;
|
|
2583
2588
|
id?: string | null | undefined;
|
|
2584
2589
|
description?: string | null | undefined;
|
|
2590
|
+
resource?: string | null | undefined;
|
|
2585
2591
|
} | null | undefined;
|
|
2586
|
-
|
|
2592
|
+
issued?: string | null | undefined;
|
|
2593
|
+
modified?: string | null | undefined;
|
|
2594
|
+
rights?: {
|
|
2595
|
+
label?: string | null | undefined;
|
|
2596
|
+
resource?: string | null | undefined;
|
|
2597
|
+
} | null | undefined;
|
|
2598
|
+
temporal_resolution?: string | null | undefined;
|
|
2587
2599
|
access_service?: {
|
|
2600
|
+
title?: Record<string, string> | null | undefined;
|
|
2588
2601
|
description?: Record<string, string> | null | undefined;
|
|
2589
|
-
endpoint_url?: string[] | null | undefined;
|
|
2590
2602
|
license?: {
|
|
2591
2603
|
label?: string | null | undefined;
|
|
2592
|
-
resource?: string | null | undefined;
|
|
2593
2604
|
id?: string | null | undefined;
|
|
2594
2605
|
description?: string | null | undefined;
|
|
2606
|
+
resource?: string | null | undefined;
|
|
2595
2607
|
} | null | undefined;
|
|
2596
|
-
|
|
2608
|
+
endpoint_url?: string[] | null | undefined;
|
|
2597
2609
|
}[] | null | undefined;
|
|
2598
2610
|
spatial_resolution_in_meters?: number | null | undefined;
|
|
2599
2611
|
format?: {
|
|
2600
2612
|
label?: string | null | undefined;
|
|
2601
|
-
resource?: string | null | undefined;
|
|
2602
2613
|
id?: string | null | undefined;
|
|
2614
|
+
resource?: string | null | undefined;
|
|
2603
2615
|
} | null | undefined;
|
|
2604
|
-
issued?: string | null | undefined;
|
|
2605
2616
|
conforms_to?: {
|
|
2606
2617
|
label?: string | null | undefined;
|
|
2607
2618
|
resource?: string | null | undefined;
|
|
@@ -2610,12 +2621,7 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2610
2621
|
label?: string | null | undefined;
|
|
2611
2622
|
resource?: string | null | undefined;
|
|
2612
2623
|
} | null | undefined;
|
|
2613
|
-
temporal_resolution?: string | null | undefined;
|
|
2614
2624
|
media_type?: string | null | undefined;
|
|
2615
|
-
rights?: {
|
|
2616
|
-
label?: string | null | undefined;
|
|
2617
|
-
resource?: string | null | undefined;
|
|
2618
|
-
} | null | undefined;
|
|
2619
2625
|
access_url?: string[] | null | undefined;
|
|
2620
2626
|
download_url?: string[] | null | undefined;
|
|
2621
2627
|
byte_size?: number | null | undefined;
|
|
@@ -2623,20 +2629,14 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2623
2629
|
algorithm?: string | null | undefined;
|
|
2624
2630
|
checksum_value?: string | null | undefined;
|
|
2625
2631
|
} | null | undefined;
|
|
2626
|
-
language?: {
|
|
2627
|
-
label?: string | null | undefined;
|
|
2628
|
-
resource?: string | null | undefined;
|
|
2629
|
-
id?: string | null | undefined;
|
|
2630
|
-
}[] | null | undefined;
|
|
2631
|
-
modified?: string | null | undefined;
|
|
2632
2632
|
page?: ({
|
|
2633
|
-
resource?: string | null | undefined;
|
|
2634
|
-
description?: Record<string, string> | null | undefined;
|
|
2635
2633
|
title?: Record<string, string> | null | undefined;
|
|
2634
|
+
description?: Record<string, string> | null | undefined;
|
|
2635
|
+
resource?: string | null | undefined;
|
|
2636
2636
|
format?: {
|
|
2637
2637
|
label?: string | null | undefined;
|
|
2638
|
-
resource?: string | null | undefined;
|
|
2639
2638
|
id?: string | null | undefined;
|
|
2639
|
+
resource?: string | null | undefined;
|
|
2640
2640
|
} | null | undefined;
|
|
2641
2641
|
} | null | undefined)[] | null | undefined;
|
|
2642
2642
|
compress_format?: {
|
|
@@ -2651,46 +2651,57 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2651
2651
|
extended_metadata?: string[] | null | undefined;
|
|
2652
2652
|
applicable_legislation?: ({
|
|
2653
2653
|
label?: string | null | undefined;
|
|
2654
|
-
resource?: string | null | undefined;
|
|
2655
2654
|
id?: string | null | undefined;
|
|
2655
|
+
resource?: string | null | undefined;
|
|
2656
2656
|
} | null | undefined)[] | null | undefined;
|
|
2657
2657
|
}, {
|
|
2658
2658
|
id: string;
|
|
2659
|
-
resource?: string | null | undefined;
|
|
2660
2659
|
type?: {
|
|
2661
2660
|
label?: string | null | undefined;
|
|
2662
2661
|
resource?: string | null | undefined;
|
|
2663
2662
|
} | null | undefined;
|
|
2663
|
+
title?: Record<string, string> | null | undefined;
|
|
2664
2664
|
status?: {
|
|
2665
2665
|
label?: string | null | undefined;
|
|
2666
2666
|
resource?: string | null | undefined;
|
|
2667
2667
|
} | null | undefined;
|
|
2668
2668
|
description?: Record<string, string> | null | undefined;
|
|
2669
|
-
|
|
2669
|
+
resource?: string | null | undefined;
|
|
2670
|
+
language?: {
|
|
2670
2671
|
label?: string | null | undefined;
|
|
2672
|
+
id?: string | null | undefined;
|
|
2671
2673
|
resource?: string | null | undefined;
|
|
2674
|
+
}[] | null | undefined;
|
|
2675
|
+
license?: {
|
|
2676
|
+
label?: string | null | undefined;
|
|
2672
2677
|
id?: string | null | undefined;
|
|
2673
2678
|
description?: string | null | undefined;
|
|
2679
|
+
resource?: string | null | undefined;
|
|
2674
2680
|
} | null | undefined;
|
|
2675
|
-
|
|
2681
|
+
issued?: string | null | undefined;
|
|
2682
|
+
modified?: string | null | undefined;
|
|
2683
|
+
rights?: {
|
|
2684
|
+
label?: string | null | undefined;
|
|
2685
|
+
resource?: string | null | undefined;
|
|
2686
|
+
} | null | undefined;
|
|
2687
|
+
temporal_resolution?: string | null | undefined;
|
|
2676
2688
|
access_service?: {
|
|
2689
|
+
title?: Record<string, string> | null | undefined;
|
|
2677
2690
|
description?: Record<string, string> | null | undefined;
|
|
2678
|
-
endpoint_url?: string[] | null | undefined;
|
|
2679
2691
|
license?: {
|
|
2680
2692
|
label?: string | null | undefined;
|
|
2681
|
-
resource?: string | null | undefined;
|
|
2682
2693
|
id?: string | null | undefined;
|
|
2683
2694
|
description?: string | null | undefined;
|
|
2695
|
+
resource?: string | null | undefined;
|
|
2684
2696
|
} | null | undefined;
|
|
2685
|
-
|
|
2697
|
+
endpoint_url?: string[] | null | undefined;
|
|
2686
2698
|
}[] | null | undefined;
|
|
2687
2699
|
spatial_resolution_in_meters?: number | null | undefined;
|
|
2688
2700
|
format?: {
|
|
2689
2701
|
label?: string | null | undefined;
|
|
2690
|
-
resource?: string | null | undefined;
|
|
2691
2702
|
id?: string | null | undefined;
|
|
2703
|
+
resource?: string | null | undefined;
|
|
2692
2704
|
} | null | undefined;
|
|
2693
|
-
issued?: string | null | undefined;
|
|
2694
2705
|
conforms_to?: {
|
|
2695
2706
|
label?: string | null | undefined;
|
|
2696
2707
|
resource?: string | null | undefined;
|
|
@@ -2699,12 +2710,7 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2699
2710
|
label?: string | null | undefined;
|
|
2700
2711
|
resource?: string | null | undefined;
|
|
2701
2712
|
} | null | undefined;
|
|
2702
|
-
temporal_resolution?: string | null | undefined;
|
|
2703
2713
|
media_type?: string | null | undefined;
|
|
2704
|
-
rights?: {
|
|
2705
|
-
label?: string | null | undefined;
|
|
2706
|
-
resource?: string | null | undefined;
|
|
2707
|
-
} | null | undefined;
|
|
2708
2714
|
access_url?: string[] | null | undefined;
|
|
2709
2715
|
download_url?: string[] | null | undefined;
|
|
2710
2716
|
byte_size?: number | null | undefined;
|
|
@@ -2712,20 +2718,14 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2712
2718
|
algorithm?: string | null | undefined;
|
|
2713
2719
|
checksum_value?: string | null | undefined;
|
|
2714
2720
|
} | null | undefined;
|
|
2715
|
-
language?: {
|
|
2716
|
-
label?: string | null | undefined;
|
|
2717
|
-
resource?: string | null | undefined;
|
|
2718
|
-
id?: string | null | undefined;
|
|
2719
|
-
}[] | null | undefined;
|
|
2720
|
-
modified?: string | null | undefined;
|
|
2721
2721
|
page?: ({
|
|
2722
|
-
resource?: string | null | undefined;
|
|
2723
|
-
description?: Record<string, string> | null | undefined;
|
|
2724
2722
|
title?: Record<string, string> | null | undefined;
|
|
2723
|
+
description?: Record<string, string> | null | undefined;
|
|
2724
|
+
resource?: string | null | undefined;
|
|
2725
2725
|
format?: {
|
|
2726
2726
|
label?: string | null | undefined;
|
|
2727
|
-
resource?: string | null | undefined;
|
|
2728
2727
|
id?: string | null | undefined;
|
|
2728
|
+
resource?: string | null | undefined;
|
|
2729
2729
|
} | null | undefined;
|
|
2730
2730
|
} | null | undefined)[] | null | undefined;
|
|
2731
2731
|
compress_format?: {
|
|
@@ -2740,8 +2740,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2740
2740
|
extended_metadata?: string[] | null | undefined;
|
|
2741
2741
|
applicable_legislation?: ({
|
|
2742
2742
|
label?: string | null | undefined;
|
|
2743
|
-
resource?: string | null | undefined;
|
|
2744
2743
|
id?: string | null | undefined;
|
|
2744
|
+
resource?: string | null | undefined;
|
|
2745
2745
|
} | null | undefined)[] | null | undefined;
|
|
2746
2746
|
}>, "many">>>;
|
|
2747
2747
|
is_referenced_by: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
|
|
@@ -2792,21 +2792,21 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2792
2792
|
email: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2793
2793
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2794
2794
|
}, "strip", zod.ZodTypeAny, {
|
|
2795
|
-
resource?: string | null | undefined;
|
|
2796
2795
|
type?: string | null | undefined;
|
|
2797
2796
|
name?: string | null | undefined;
|
|
2797
|
+
address?: string | null | undefined;
|
|
2798
|
+
resource?: string | null | undefined;
|
|
2798
2799
|
email?: string | null | undefined;
|
|
2799
2800
|
organisation_name?: string | null | undefined;
|
|
2800
|
-
address?: string | null | undefined;
|
|
2801
2801
|
telephone?: string | null | undefined;
|
|
2802
2802
|
url?: string[] | null | undefined;
|
|
2803
2803
|
}, {
|
|
2804
|
-
resource?: string | null | undefined;
|
|
2805
2804
|
type?: string | null | undefined;
|
|
2806
2805
|
name?: string | null | undefined;
|
|
2806
|
+
address?: string | null | undefined;
|
|
2807
|
+
resource?: string | null | undefined;
|
|
2807
2808
|
email?: string | null | undefined;
|
|
2808
2809
|
organisation_name?: string | null | undefined;
|
|
2809
|
-
address?: string | null | undefined;
|
|
2810
2810
|
telephone?: string | null | undefined;
|
|
2811
2811
|
url?: string[] | null | undefined;
|
|
2812
2812
|
}>, "many">>>;
|
|
@@ -2821,16 +2821,16 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2821
2821
|
full_available_languages: zod.ZodArray<zod.ZodString, "many">;
|
|
2822
2822
|
status: zod.ZodString;
|
|
2823
2823
|
}, "strip", zod.ZodTypeAny, {
|
|
2824
|
-
status: string;
|
|
2825
2824
|
details: Record<string, {
|
|
2826
2825
|
machine_translated: boolean;
|
|
2827
2826
|
}>;
|
|
2827
|
+
status: string;
|
|
2828
2828
|
full_available_languages: string[];
|
|
2829
2829
|
}, {
|
|
2830
|
-
status: string;
|
|
2831
2830
|
details: Record<string, {
|
|
2832
2831
|
machine_translated: boolean;
|
|
2833
2832
|
}>;
|
|
2833
|
+
status: string;
|
|
2834
2834
|
full_available_languages: string[];
|
|
2835
2835
|
}>>>;
|
|
2836
2836
|
version_notes: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodString>>>;
|
|
@@ -2841,12 +2841,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2841
2841
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2842
2842
|
}, "strip", zod.ZodTypeAny, {
|
|
2843
2843
|
label?: string | null | undefined;
|
|
2844
|
-
resource?: string | null | undefined;
|
|
2845
2844
|
id?: string | null | undefined;
|
|
2845
|
+
resource?: string | null | undefined;
|
|
2846
2846
|
}, {
|
|
2847
2847
|
label?: string | null | undefined;
|
|
2848
|
-
resource?: string | null | undefined;
|
|
2849
2848
|
id?: string | null | undefined;
|
|
2849
|
+
resource?: string | null | undefined;
|
|
2850
2850
|
}>>>;
|
|
2851
2851
|
geocoding_description: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
2852
2852
|
access_right: zod.ZodOptional<zod.ZodNullable<zod.ZodObject<{
|
|
@@ -2855,12 +2855,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2855
2855
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2856
2856
|
}, "strip", zod.ZodTypeAny, {
|
|
2857
2857
|
label?: string | null | undefined;
|
|
2858
|
-
resource?: string | null | undefined;
|
|
2859
2858
|
id?: string | null | undefined;
|
|
2859
|
+
resource?: string | null | undefined;
|
|
2860
2860
|
}, {
|
|
2861
2861
|
label?: string | null | undefined;
|
|
2862
|
-
resource?: string | null | undefined;
|
|
2863
2862
|
id?: string | null | undefined;
|
|
2863
|
+
resource?: string | null | undefined;
|
|
2864
2864
|
}>>>;
|
|
2865
2865
|
provenance: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
2866
2866
|
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -2868,12 +2868,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2868
2868
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2869
2869
|
}, "strip", zod.ZodTypeAny, {
|
|
2870
2870
|
label?: string | null | undefined;
|
|
2871
|
-
resource?: string | null | undefined;
|
|
2872
2871
|
id?: string | null | undefined;
|
|
2872
|
+
resource?: string | null | undefined;
|
|
2873
2873
|
}, {
|
|
2874
2874
|
label?: string | null | undefined;
|
|
2875
|
-
resource?: string | null | undefined;
|
|
2876
2875
|
id?: string | null | undefined;
|
|
2876
|
+
resource?: string | null | undefined;
|
|
2877
2877
|
}>, "many">>>;
|
|
2878
2878
|
categories: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
2879
2879
|
resource: zod.ZodString;
|
|
@@ -2881,12 +2881,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2881
2881
|
label: zod.ZodRecord<zod.ZodString, zod.ZodString>;
|
|
2882
2882
|
}, "strip", zod.ZodTypeAny, {
|
|
2883
2883
|
label: Record<string, string>;
|
|
2884
|
-
resource: string;
|
|
2885
2884
|
id: string;
|
|
2885
|
+
resource: string;
|
|
2886
2886
|
}, {
|
|
2887
2887
|
label: Record<string, string>;
|
|
2888
|
-
resource: string;
|
|
2889
2888
|
id: string;
|
|
2889
|
+
resource: string;
|
|
2890
2890
|
}>, "many">>>;
|
|
2891
2891
|
adms_identifier: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
2892
2892
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -2927,12 +2927,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2927
2927
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2928
2928
|
}, "strip", zod.ZodTypeAny, {
|
|
2929
2929
|
label?: string | null | undefined;
|
|
2930
|
-
resource?: string | null | undefined;
|
|
2931
2930
|
id?: string | null | undefined;
|
|
2931
|
+
resource?: string | null | undefined;
|
|
2932
2932
|
}, {
|
|
2933
2933
|
label?: string | null | undefined;
|
|
2934
|
-
resource?: string | null | undefined;
|
|
2935
2934
|
id?: string | null | undefined;
|
|
2935
|
+
resource?: string | null | undefined;
|
|
2936
2936
|
}>, "many">>>;
|
|
2937
2937
|
version_info: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
2938
2938
|
sample: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString, "many">>>;
|
|
@@ -2943,12 +2943,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2943
2943
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2944
2944
|
}, "strip", zod.ZodTypeAny, {
|
|
2945
2945
|
label?: string | null | undefined;
|
|
2946
|
-
resource?: string | null | undefined;
|
|
2947
2946
|
id?: string | null | undefined;
|
|
2947
|
+
resource?: string | null | undefined;
|
|
2948
2948
|
}, {
|
|
2949
2949
|
label?: string | null | undefined;
|
|
2950
|
-
resource?: string | null | undefined;
|
|
2951
2950
|
id?: string | null | undefined;
|
|
2951
|
+
resource?: string | null | undefined;
|
|
2952
2952
|
}>, "many">>>;
|
|
2953
2953
|
num_series: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
2954
2954
|
is_hvd: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
@@ -2958,12 +2958,12 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2958
2958
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2959
2959
|
}, "strip", zod.ZodTypeAny, {
|
|
2960
2960
|
label?: string | null | undefined;
|
|
2961
|
-
resource?: string | null | undefined;
|
|
2962
2961
|
id?: string | null | undefined;
|
|
2962
|
+
resource?: string | null | undefined;
|
|
2963
2963
|
}, {
|
|
2964
2964
|
label?: string | null | undefined;
|
|
2965
|
-
resource?: string | null | undefined;
|
|
2966
2965
|
id?: string | null | undefined;
|
|
2966
|
+
resource?: string | null | undefined;
|
|
2967
2967
|
}>, "many">>>;
|
|
2968
2968
|
hvd_category: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
2969
2969
|
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -2971,33 +2971,35 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
2971
2971
|
resource: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2972
2972
|
}, "strip", zod.ZodTypeAny, {
|
|
2973
2973
|
label?: string | null | undefined;
|
|
2974
|
-
resource?: string | null | undefined;
|
|
2975
2974
|
id?: string | null | undefined;
|
|
2975
|
+
resource?: string | null | undefined;
|
|
2976
2976
|
}, {
|
|
2977
2977
|
label?: string | null | undefined;
|
|
2978
|
-
resource?: string | null | undefined;
|
|
2979
2978
|
id?: string | null | undefined;
|
|
2979
|
+
resource?: string | null | undefined;
|
|
2980
2980
|
}>, "many">>>;
|
|
2981
2981
|
}, "strip", zod.ZodTypeAny, {
|
|
2982
2982
|
id: string;
|
|
2983
2983
|
catalog: {
|
|
2984
2984
|
id: string;
|
|
2985
|
+
title?: Record<string, string> | null | undefined;
|
|
2985
2986
|
description?: Record<string, string> | null | undefined;
|
|
2986
|
-
|
|
2987
|
+
country?: {
|
|
2987
2988
|
label?: string | null | undefined;
|
|
2988
|
-
resource?: string | null | undefined;
|
|
2989
2989
|
id?: string | null | undefined;
|
|
2990
|
-
|
|
2990
|
+
resource?: string | null | undefined;
|
|
2991
2991
|
} | null | undefined;
|
|
2992
|
-
title?: Record<string, string> | null | undefined;
|
|
2993
|
-
issued?: string | null | undefined;
|
|
2994
|
-
rights?: any;
|
|
2995
2992
|
language?: {
|
|
2996
2993
|
label?: string | null | undefined;
|
|
2997
|
-
resource?: string | null | undefined;
|
|
2998
2994
|
id?: string | null | undefined;
|
|
2995
|
+
resource?: string | null | undefined;
|
|
2999
2996
|
}[] | null | undefined;
|
|
3000
|
-
|
|
2997
|
+
license?: {
|
|
2998
|
+
label?: string | null | undefined;
|
|
2999
|
+
id?: string | null | undefined;
|
|
3000
|
+
description?: string | null | undefined;
|
|
3001
|
+
resource?: string | null | undefined;
|
|
3002
|
+
} | null | undefined;
|
|
3001
3003
|
homepage?: string | null | undefined;
|
|
3002
3004
|
publisher?: {
|
|
3003
3005
|
type?: string | null | undefined;
|
|
@@ -3005,11 +3007,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3005
3007
|
email?: string | null | undefined;
|
|
3006
3008
|
homepage?: string | null | undefined;
|
|
3007
3009
|
} | null | undefined;
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
resource?: string | null | undefined;
|
|
3011
|
-
id?: string | null | undefined;
|
|
3012
|
-
} | null | undefined;
|
|
3010
|
+
issued?: string | null | undefined;
|
|
3011
|
+
modified?: string | null | undefined;
|
|
3013
3012
|
spatial?: any[] | null | undefined;
|
|
3014
3013
|
spatial_resource?: any;
|
|
3015
3014
|
theme_taxonomy?: any;
|
|
@@ -3017,55 +3016,47 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3017
3016
|
has_part?: any;
|
|
3018
3017
|
is_part_of?: any;
|
|
3019
3018
|
creator?: any;
|
|
3019
|
+
rights?: any;
|
|
3020
3020
|
count?: number | null | undefined;
|
|
3021
3021
|
};
|
|
3022
|
-
resource?: string | null | undefined;
|
|
3023
3022
|
type?: {
|
|
3024
3023
|
label?: string | null | undefined;
|
|
3025
|
-
resource?: string | null | undefined;
|
|
3026
3024
|
id?: string | null | undefined;
|
|
3027
|
-
} | null | undefined;
|
|
3028
|
-
description?: Record<string, string> | null | undefined;
|
|
3029
|
-
identifier?: string[] | null | undefined;
|
|
3030
|
-
license?: {
|
|
3031
|
-
label?: string | null | undefined;
|
|
3032
3025
|
resource?: string | null | undefined;
|
|
3033
|
-
id?: string | null | undefined;
|
|
3034
|
-
description?: string | null | undefined;
|
|
3035
3026
|
} | null | undefined;
|
|
3027
|
+
source?: string[] | null | undefined;
|
|
3036
3028
|
title?: Record<string, string> | null | undefined;
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3029
|
+
description?: Record<string, string> | null | undefined;
|
|
3030
|
+
resource?: string | null | undefined;
|
|
3031
|
+
country?: {
|
|
3040
3032
|
label?: string | null | undefined;
|
|
3041
|
-
resource?: string | null | undefined;
|
|
3042
3033
|
id?: string | null | undefined;
|
|
3043
|
-
|
|
3044
|
-
|
|
3034
|
+
resource?: string | null | undefined;
|
|
3035
|
+
} | null | undefined;
|
|
3045
3036
|
language?: {
|
|
3046
3037
|
label?: string | null | undefined;
|
|
3047
|
-
resource?: string | null | undefined;
|
|
3048
3038
|
id?: string | null | undefined;
|
|
3039
|
+
resource?: string | null | undefined;
|
|
3049
3040
|
}[] | null | undefined;
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3041
|
+
keywords?: {
|
|
3042
|
+
label: string;
|
|
3043
|
+
id: string;
|
|
3044
|
+
language: string;
|
|
3045
|
+
}[] | null | undefined;
|
|
3046
|
+
license?: {
|
|
3054
3047
|
label?: string | null | undefined;
|
|
3055
|
-
resource?: string | null | undefined;
|
|
3056
3048
|
id?: string | null | undefined;
|
|
3057
|
-
|
|
3049
|
+
description?: string | null | undefined;
|
|
3050
|
+
resource?: string | null | undefined;
|
|
3051
|
+
} | null | undefined;
|
|
3058
3052
|
publisher?: {
|
|
3059
3053
|
type?: string | null | undefined;
|
|
3060
3054
|
name?: string | null | undefined;
|
|
3061
3055
|
email?: string | null | undefined;
|
|
3062
3056
|
homepage?: string | null | undefined;
|
|
3063
3057
|
} | null | undefined;
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
resource?: string | null | undefined;
|
|
3067
|
-
id?: string | null | undefined;
|
|
3068
|
-
} | null | undefined;
|
|
3058
|
+
issued?: string | null | undefined;
|
|
3059
|
+
modified?: string | null | undefined;
|
|
3069
3060
|
spatial?: zod.objectOutputType<{}, zod.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
3070
3061
|
spatial_resource?: any;
|
|
3071
3062
|
creator?: {
|
|
@@ -3074,16 +3065,11 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3074
3065
|
email?: string | null | undefined;
|
|
3075
3066
|
homepage?: string | null | undefined;
|
|
3076
3067
|
} | null | undefined;
|
|
3077
|
-
keywords?: {
|
|
3078
|
-
label: string;
|
|
3079
|
-
id: string;
|
|
3080
|
-
language: string;
|
|
3081
|
-
}[] | null | undefined;
|
|
3082
3068
|
subject?: {
|
|
3083
3069
|
label?: string | null | undefined;
|
|
3084
3070
|
resource?: string | null | undefined;
|
|
3085
3071
|
}[] | null | undefined;
|
|
3086
|
-
|
|
3072
|
+
temporal_resolution?: string | null | undefined;
|
|
3087
3073
|
relation?: string[] | null | undefined;
|
|
3088
3074
|
legal_basis?: Record<string, string> | null | undefined;
|
|
3089
3075
|
stat_unit_measure?: string[] | null | undefined;
|
|
@@ -3095,44 +3081,69 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3095
3081
|
lte: string;
|
|
3096
3082
|
gte: string;
|
|
3097
3083
|
}[] | null | undefined;
|
|
3084
|
+
identifier?: string[] | null | undefined;
|
|
3098
3085
|
is_version_of?: string[] | null | undefined;
|
|
3086
|
+
spatial_resolution_in_meters?: any;
|
|
3087
|
+
conforms_to?: {
|
|
3088
|
+
label?: string | null | undefined;
|
|
3089
|
+
id?: string | null | undefined;
|
|
3090
|
+
resource?: string | null | undefined;
|
|
3091
|
+
}[] | null | undefined;
|
|
3092
|
+
page?: any;
|
|
3093
|
+
extended_metadata?: any;
|
|
3094
|
+
applicable_legislation?: {
|
|
3095
|
+
label?: string | null | undefined;
|
|
3096
|
+
id?: string | null | undefined;
|
|
3097
|
+
resource?: string | null | undefined;
|
|
3098
|
+
}[] | null | undefined;
|
|
3099
3099
|
distributions?: {
|
|
3100
3100
|
id: string;
|
|
3101
|
-
resource?: string | null | undefined;
|
|
3102
3101
|
type?: {
|
|
3103
3102
|
label?: string | null | undefined;
|
|
3104
3103
|
resource?: string | null | undefined;
|
|
3105
3104
|
} | null | undefined;
|
|
3105
|
+
title?: Record<string, string> | null | undefined;
|
|
3106
3106
|
status?: {
|
|
3107
3107
|
label?: string | null | undefined;
|
|
3108
3108
|
resource?: string | null | undefined;
|
|
3109
3109
|
} | null | undefined;
|
|
3110
3110
|
description?: Record<string, string> | null | undefined;
|
|
3111
|
-
|
|
3111
|
+
resource?: string | null | undefined;
|
|
3112
|
+
language?: {
|
|
3112
3113
|
label?: string | null | undefined;
|
|
3114
|
+
id?: string | null | undefined;
|
|
3113
3115
|
resource?: string | null | undefined;
|
|
3116
|
+
}[] | null | undefined;
|
|
3117
|
+
license?: {
|
|
3118
|
+
label?: string | null | undefined;
|
|
3114
3119
|
id?: string | null | undefined;
|
|
3115
3120
|
description?: string | null | undefined;
|
|
3121
|
+
resource?: string | null | undefined;
|
|
3116
3122
|
} | null | undefined;
|
|
3117
|
-
|
|
3123
|
+
issued?: string | null | undefined;
|
|
3124
|
+
modified?: string | null | undefined;
|
|
3125
|
+
rights?: {
|
|
3126
|
+
label?: string | null | undefined;
|
|
3127
|
+
resource?: string | null | undefined;
|
|
3128
|
+
} | null | undefined;
|
|
3129
|
+
temporal_resolution?: string | null | undefined;
|
|
3118
3130
|
access_service?: {
|
|
3131
|
+
title?: Record<string, string> | null | undefined;
|
|
3119
3132
|
description?: Record<string, string> | null | undefined;
|
|
3120
|
-
endpoint_url?: string[] | null | undefined;
|
|
3121
3133
|
license?: {
|
|
3122
3134
|
label?: string | null | undefined;
|
|
3123
|
-
resource?: string | null | undefined;
|
|
3124
3135
|
id?: string | null | undefined;
|
|
3125
3136
|
description?: string | null | undefined;
|
|
3137
|
+
resource?: string | null | undefined;
|
|
3126
3138
|
} | null | undefined;
|
|
3127
|
-
|
|
3139
|
+
endpoint_url?: string[] | null | undefined;
|
|
3128
3140
|
}[] | null | undefined;
|
|
3129
3141
|
spatial_resolution_in_meters?: number | null | undefined;
|
|
3130
3142
|
format?: {
|
|
3131
3143
|
label?: string | null | undefined;
|
|
3132
|
-
resource?: string | null | undefined;
|
|
3133
3144
|
id?: string | null | undefined;
|
|
3145
|
+
resource?: string | null | undefined;
|
|
3134
3146
|
} | null | undefined;
|
|
3135
|
-
issued?: string | null | undefined;
|
|
3136
3147
|
conforms_to?: {
|
|
3137
3148
|
label?: string | null | undefined;
|
|
3138
3149
|
resource?: string | null | undefined;
|
|
@@ -3141,12 +3152,7 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3141
3152
|
label?: string | null | undefined;
|
|
3142
3153
|
resource?: string | null | undefined;
|
|
3143
3154
|
} | null | undefined;
|
|
3144
|
-
temporal_resolution?: string | null | undefined;
|
|
3145
3155
|
media_type?: string | null | undefined;
|
|
3146
|
-
rights?: {
|
|
3147
|
-
label?: string | null | undefined;
|
|
3148
|
-
resource?: string | null | undefined;
|
|
3149
|
-
} | null | undefined;
|
|
3150
3156
|
access_url?: string[] | null | undefined;
|
|
3151
3157
|
download_url?: string[] | null | undefined;
|
|
3152
3158
|
byte_size?: number | null | undefined;
|
|
@@ -3154,20 +3160,14 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3154
3160
|
algorithm?: string | null | undefined;
|
|
3155
3161
|
checksum_value?: string | null | undefined;
|
|
3156
3162
|
} | null | undefined;
|
|
3157
|
-
language?: {
|
|
3158
|
-
label?: string | null | undefined;
|
|
3159
|
-
resource?: string | null | undefined;
|
|
3160
|
-
id?: string | null | undefined;
|
|
3161
|
-
}[] | null | undefined;
|
|
3162
|
-
modified?: string | null | undefined;
|
|
3163
3163
|
page?: ({
|
|
3164
|
-
resource?: string | null | undefined;
|
|
3165
|
-
description?: Record<string, string> | null | undefined;
|
|
3166
3164
|
title?: Record<string, string> | null | undefined;
|
|
3165
|
+
description?: Record<string, string> | null | undefined;
|
|
3166
|
+
resource?: string | null | undefined;
|
|
3167
3167
|
format?: {
|
|
3168
3168
|
label?: string | null | undefined;
|
|
3169
|
-
resource?: string | null | undefined;
|
|
3170
3169
|
id?: string | null | undefined;
|
|
3170
|
+
resource?: string | null | undefined;
|
|
3171
3171
|
} | null | undefined;
|
|
3172
3172
|
} | null | undefined)[] | null | undefined;
|
|
3173
3173
|
compress_format?: {
|
|
@@ -3182,8 +3182,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3182
3182
|
extended_metadata?: string[] | null | undefined;
|
|
3183
3183
|
applicable_legislation?: ({
|
|
3184
3184
|
label?: string | null | undefined;
|
|
3185
|
-
resource?: string | null | undefined;
|
|
3186
3185
|
id?: string | null | undefined;
|
|
3186
|
+
resource?: string | null | undefined;
|
|
3187
3187
|
} | null | undefined)[] | null | undefined;
|
|
3188
3188
|
}[] | null | undefined;
|
|
3189
3189
|
is_referenced_by?: string[] | null | undefined;
|
|
@@ -3197,44 +3197,44 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3197
3197
|
modified?: string | null | undefined;
|
|
3198
3198
|
} | null | undefined;
|
|
3199
3199
|
contact_point?: {
|
|
3200
|
-
resource?: string | null | undefined;
|
|
3201
3200
|
type?: string | null | undefined;
|
|
3202
3201
|
name?: string | null | undefined;
|
|
3202
|
+
address?: string | null | undefined;
|
|
3203
|
+
resource?: string | null | undefined;
|
|
3203
3204
|
email?: string | null | undefined;
|
|
3204
3205
|
organisation_name?: string | null | undefined;
|
|
3205
|
-
address?: string | null | undefined;
|
|
3206
3206
|
telephone?: string | null | undefined;
|
|
3207
3207
|
url?: string[] | null | undefined;
|
|
3208
3208
|
}[] | null | undefined;
|
|
3209
3209
|
translation_meta?: {
|
|
3210
|
-
status: string;
|
|
3211
3210
|
details: Record<string, {
|
|
3212
3211
|
machine_translated: boolean;
|
|
3213
3212
|
}>;
|
|
3213
|
+
status: string;
|
|
3214
3214
|
full_available_languages: string[];
|
|
3215
3215
|
} | null | undefined;
|
|
3216
3216
|
version_notes?: Record<string, string> | null | undefined;
|
|
3217
3217
|
has_version?: string[] | null | undefined;
|
|
3218
3218
|
accrual_periodicity?: {
|
|
3219
3219
|
label?: string | null | undefined;
|
|
3220
|
-
resource?: string | null | undefined;
|
|
3221
3220
|
id?: string | null | undefined;
|
|
3221
|
+
resource?: string | null | undefined;
|
|
3222
3222
|
} | null | undefined;
|
|
3223
3223
|
geocoding_description?: any;
|
|
3224
3224
|
access_right?: {
|
|
3225
3225
|
label?: string | null | undefined;
|
|
3226
|
-
resource?: string | null | undefined;
|
|
3227
3226
|
id?: string | null | undefined;
|
|
3227
|
+
resource?: string | null | undefined;
|
|
3228
3228
|
} | null | undefined;
|
|
3229
3229
|
provenance?: {
|
|
3230
3230
|
label?: string | null | undefined;
|
|
3231
|
-
resource?: string | null | undefined;
|
|
3232
3231
|
id?: string | null | undefined;
|
|
3232
|
+
resource?: string | null | undefined;
|
|
3233
3233
|
}[] | null | undefined;
|
|
3234
3234
|
categories?: {
|
|
3235
3235
|
label: Record<string, string>;
|
|
3236
|
-
resource: string;
|
|
3237
3236
|
id: string;
|
|
3237
|
+
resource: string;
|
|
3238
3238
|
}[] | null | undefined;
|
|
3239
3239
|
adms_identifier?: {
|
|
3240
3240
|
resource?: string | null | undefined;
|
|
@@ -3247,8 +3247,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3247
3247
|
dimension?: string[] | null | undefined;
|
|
3248
3248
|
landing_page?: {
|
|
3249
3249
|
label?: string | null | undefined;
|
|
3250
|
-
resource?: string | null | undefined;
|
|
3251
3250
|
id?: string | null | undefined;
|
|
3251
|
+
resource?: string | null | undefined;
|
|
3252
3252
|
}[] | null | undefined;
|
|
3253
3253
|
version_info?: any;
|
|
3254
3254
|
sample?: string[] | null | undefined;
|
|
@@ -3256,29 +3256,31 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3256
3256
|
is_hvd?: boolean | null | undefined;
|
|
3257
3257
|
hvd_category?: {
|
|
3258
3258
|
label?: string | null | undefined;
|
|
3259
|
-
resource?: string | null | undefined;
|
|
3260
3259
|
id?: string | null | undefined;
|
|
3260
|
+
resource?: string | null | undefined;
|
|
3261
3261
|
}[] | null | undefined;
|
|
3262
3262
|
}, {
|
|
3263
3263
|
id: string;
|
|
3264
3264
|
catalog: {
|
|
3265
3265
|
id: string;
|
|
3266
|
+
title?: Record<string, string> | null | undefined;
|
|
3266
3267
|
description?: Record<string, string> | null | undefined;
|
|
3267
|
-
|
|
3268
|
+
country?: {
|
|
3268
3269
|
label?: string | null | undefined;
|
|
3269
|
-
resource?: string | null | undefined;
|
|
3270
3270
|
id?: string | null | undefined;
|
|
3271
|
-
|
|
3271
|
+
resource?: string | null | undefined;
|
|
3272
3272
|
} | null | undefined;
|
|
3273
|
-
title?: Record<string, string> | null | undefined;
|
|
3274
|
-
issued?: string | null | undefined;
|
|
3275
|
-
rights?: any;
|
|
3276
3273
|
language?: {
|
|
3277
3274
|
label?: string | null | undefined;
|
|
3278
|
-
resource?: string | null | undefined;
|
|
3279
3275
|
id?: string | null | undefined;
|
|
3276
|
+
resource?: string | null | undefined;
|
|
3280
3277
|
}[] | null | undefined;
|
|
3281
|
-
|
|
3278
|
+
license?: {
|
|
3279
|
+
label?: string | null | undefined;
|
|
3280
|
+
id?: string | null | undefined;
|
|
3281
|
+
description?: string | null | undefined;
|
|
3282
|
+
resource?: string | null | undefined;
|
|
3283
|
+
} | null | undefined;
|
|
3282
3284
|
homepage?: string | null | undefined;
|
|
3283
3285
|
publisher?: {
|
|
3284
3286
|
type?: string | null | undefined;
|
|
@@ -3286,11 +3288,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3286
3288
|
email?: string | null | undefined;
|
|
3287
3289
|
homepage?: string | null | undefined;
|
|
3288
3290
|
} | null | undefined;
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
resource?: string | null | undefined;
|
|
3292
|
-
id?: string | null | undefined;
|
|
3293
|
-
} | null | undefined;
|
|
3291
|
+
issued?: string | null | undefined;
|
|
3292
|
+
modified?: string | null | undefined;
|
|
3294
3293
|
spatial?: any[] | null | undefined;
|
|
3295
3294
|
spatial_resource?: any;
|
|
3296
3295
|
theme_taxonomy?: any;
|
|
@@ -3298,55 +3297,47 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3298
3297
|
has_part?: any;
|
|
3299
3298
|
is_part_of?: any;
|
|
3300
3299
|
creator?: any;
|
|
3300
|
+
rights?: any;
|
|
3301
3301
|
count?: number | null | undefined;
|
|
3302
3302
|
};
|
|
3303
|
-
resource?: string | null | undefined;
|
|
3304
3303
|
type?: {
|
|
3305
3304
|
label?: string | null | undefined;
|
|
3306
|
-
resource?: string | null | undefined;
|
|
3307
3305
|
id?: string | null | undefined;
|
|
3308
|
-
} | null | undefined;
|
|
3309
|
-
description?: Record<string, string> | null | undefined;
|
|
3310
|
-
identifier?: string[] | null | undefined;
|
|
3311
|
-
license?: {
|
|
3312
|
-
label?: string | null | undefined;
|
|
3313
3306
|
resource?: string | null | undefined;
|
|
3314
|
-
id?: string | null | undefined;
|
|
3315
|
-
description?: string | null | undefined;
|
|
3316
3307
|
} | null | undefined;
|
|
3308
|
+
source?: string[] | null | undefined;
|
|
3317
3309
|
title?: Record<string, string> | null | undefined;
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3310
|
+
description?: Record<string, string> | null | undefined;
|
|
3311
|
+
resource?: string | null | undefined;
|
|
3312
|
+
country?: {
|
|
3321
3313
|
label?: string | null | undefined;
|
|
3322
|
-
resource?: string | null | undefined;
|
|
3323
3314
|
id?: string | null | undefined;
|
|
3324
|
-
|
|
3325
|
-
|
|
3315
|
+
resource?: string | null | undefined;
|
|
3316
|
+
} | null | undefined;
|
|
3326
3317
|
language?: {
|
|
3327
3318
|
label?: string | null | undefined;
|
|
3328
|
-
resource?: string | null | undefined;
|
|
3329
3319
|
id?: string | null | undefined;
|
|
3320
|
+
resource?: string | null | undefined;
|
|
3330
3321
|
}[] | null | undefined;
|
|
3331
|
-
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
|
|
3322
|
+
keywords?: {
|
|
3323
|
+
label: string;
|
|
3324
|
+
id: string;
|
|
3325
|
+
language: string;
|
|
3326
|
+
}[] | null | undefined;
|
|
3327
|
+
license?: {
|
|
3335
3328
|
label?: string | null | undefined;
|
|
3336
|
-
resource?: string | null | undefined;
|
|
3337
3329
|
id?: string | null | undefined;
|
|
3338
|
-
|
|
3330
|
+
description?: string | null | undefined;
|
|
3331
|
+
resource?: string | null | undefined;
|
|
3332
|
+
} | null | undefined;
|
|
3339
3333
|
publisher?: {
|
|
3340
3334
|
type?: string | null | undefined;
|
|
3341
3335
|
name?: string | null | undefined;
|
|
3342
3336
|
email?: string | null | undefined;
|
|
3343
3337
|
homepage?: string | null | undefined;
|
|
3344
3338
|
} | null | undefined;
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
resource?: string | null | undefined;
|
|
3348
|
-
id?: string | null | undefined;
|
|
3349
|
-
} | null | undefined;
|
|
3339
|
+
issued?: string | null | undefined;
|
|
3340
|
+
modified?: string | null | undefined;
|
|
3350
3341
|
spatial?: zod.objectInputType<{}, zod.ZodTypeAny, "passthrough">[] | null | undefined;
|
|
3351
3342
|
spatial_resource?: any;
|
|
3352
3343
|
creator?: {
|
|
@@ -3355,16 +3346,11 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3355
3346
|
email?: string | null | undefined;
|
|
3356
3347
|
homepage?: string | null | undefined;
|
|
3357
3348
|
} | null | undefined;
|
|
3358
|
-
keywords?: {
|
|
3359
|
-
label: string;
|
|
3360
|
-
id: string;
|
|
3361
|
-
language: string;
|
|
3362
|
-
}[] | null | undefined;
|
|
3363
3349
|
subject?: {
|
|
3364
3350
|
label?: string | null | undefined;
|
|
3365
3351
|
resource?: string | null | undefined;
|
|
3366
3352
|
}[] | null | undefined;
|
|
3367
|
-
|
|
3353
|
+
temporal_resolution?: string | null | undefined;
|
|
3368
3354
|
relation?: string[] | null | undefined;
|
|
3369
3355
|
legal_basis?: Record<string, string> | null | undefined;
|
|
3370
3356
|
stat_unit_measure?: string[] | null | undefined;
|
|
@@ -3376,44 +3362,69 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3376
3362
|
lte: string;
|
|
3377
3363
|
gte: string;
|
|
3378
3364
|
}[] | null | undefined;
|
|
3365
|
+
identifier?: string[] | null | undefined;
|
|
3379
3366
|
is_version_of?: string[] | null | undefined;
|
|
3367
|
+
spatial_resolution_in_meters?: any;
|
|
3368
|
+
conforms_to?: {
|
|
3369
|
+
label?: string | null | undefined;
|
|
3370
|
+
id?: string | null | undefined;
|
|
3371
|
+
resource?: string | null | undefined;
|
|
3372
|
+
}[] | null | undefined;
|
|
3373
|
+
page?: any;
|
|
3374
|
+
extended_metadata?: any;
|
|
3375
|
+
applicable_legislation?: {
|
|
3376
|
+
label?: string | null | undefined;
|
|
3377
|
+
id?: string | null | undefined;
|
|
3378
|
+
resource?: string | null | undefined;
|
|
3379
|
+
}[] | null | undefined;
|
|
3380
3380
|
distributions?: {
|
|
3381
3381
|
id: string;
|
|
3382
|
-
resource?: string | null | undefined;
|
|
3383
3382
|
type?: {
|
|
3384
3383
|
label?: string | null | undefined;
|
|
3385
3384
|
resource?: string | null | undefined;
|
|
3386
3385
|
} | null | undefined;
|
|
3386
|
+
title?: Record<string, string> | null | undefined;
|
|
3387
3387
|
status?: {
|
|
3388
3388
|
label?: string | null | undefined;
|
|
3389
3389
|
resource?: string | null | undefined;
|
|
3390
3390
|
} | null | undefined;
|
|
3391
3391
|
description?: Record<string, string> | null | undefined;
|
|
3392
|
-
|
|
3392
|
+
resource?: string | null | undefined;
|
|
3393
|
+
language?: {
|
|
3393
3394
|
label?: string | null | undefined;
|
|
3395
|
+
id?: string | null | undefined;
|
|
3394
3396
|
resource?: string | null | undefined;
|
|
3397
|
+
}[] | null | undefined;
|
|
3398
|
+
license?: {
|
|
3399
|
+
label?: string | null | undefined;
|
|
3395
3400
|
id?: string | null | undefined;
|
|
3396
3401
|
description?: string | null | undefined;
|
|
3402
|
+
resource?: string | null | undefined;
|
|
3397
3403
|
} | null | undefined;
|
|
3398
|
-
|
|
3404
|
+
issued?: string | null | undefined;
|
|
3405
|
+
modified?: string | null | undefined;
|
|
3406
|
+
rights?: {
|
|
3407
|
+
label?: string | null | undefined;
|
|
3408
|
+
resource?: string | null | undefined;
|
|
3409
|
+
} | null | undefined;
|
|
3410
|
+
temporal_resolution?: string | null | undefined;
|
|
3399
3411
|
access_service?: {
|
|
3412
|
+
title?: Record<string, string> | null | undefined;
|
|
3400
3413
|
description?: Record<string, string> | null | undefined;
|
|
3401
|
-
endpoint_url?: string[] | null | undefined;
|
|
3402
3414
|
license?: {
|
|
3403
3415
|
label?: string | null | undefined;
|
|
3404
|
-
resource?: string | null | undefined;
|
|
3405
3416
|
id?: string | null | undefined;
|
|
3406
3417
|
description?: string | null | undefined;
|
|
3418
|
+
resource?: string | null | undefined;
|
|
3407
3419
|
} | null | undefined;
|
|
3408
|
-
|
|
3420
|
+
endpoint_url?: string[] | null | undefined;
|
|
3409
3421
|
}[] | null | undefined;
|
|
3410
3422
|
spatial_resolution_in_meters?: number | null | undefined;
|
|
3411
3423
|
format?: {
|
|
3412
3424
|
label?: string | null | undefined;
|
|
3413
|
-
resource?: string | null | undefined;
|
|
3414
3425
|
id?: string | null | undefined;
|
|
3426
|
+
resource?: string | null | undefined;
|
|
3415
3427
|
} | null | undefined;
|
|
3416
|
-
issued?: string | null | undefined;
|
|
3417
3428
|
conforms_to?: {
|
|
3418
3429
|
label?: string | null | undefined;
|
|
3419
3430
|
resource?: string | null | undefined;
|
|
@@ -3422,12 +3433,7 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3422
3433
|
label?: string | null | undefined;
|
|
3423
3434
|
resource?: string | null | undefined;
|
|
3424
3435
|
} | null | undefined;
|
|
3425
|
-
temporal_resolution?: string | null | undefined;
|
|
3426
3436
|
media_type?: string | null | undefined;
|
|
3427
|
-
rights?: {
|
|
3428
|
-
label?: string | null | undefined;
|
|
3429
|
-
resource?: string | null | undefined;
|
|
3430
|
-
} | null | undefined;
|
|
3431
3437
|
access_url?: string[] | null | undefined;
|
|
3432
3438
|
download_url?: string[] | null | undefined;
|
|
3433
3439
|
byte_size?: number | null | undefined;
|
|
@@ -3435,20 +3441,14 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3435
3441
|
algorithm?: string | null | undefined;
|
|
3436
3442
|
checksum_value?: string | null | undefined;
|
|
3437
3443
|
} | null | undefined;
|
|
3438
|
-
language?: {
|
|
3439
|
-
label?: string | null | undefined;
|
|
3440
|
-
resource?: string | null | undefined;
|
|
3441
|
-
id?: string | null | undefined;
|
|
3442
|
-
}[] | null | undefined;
|
|
3443
|
-
modified?: string | null | undefined;
|
|
3444
3444
|
page?: ({
|
|
3445
|
-
resource?: string | null | undefined;
|
|
3446
|
-
description?: Record<string, string> | null | undefined;
|
|
3447
3445
|
title?: Record<string, string> | null | undefined;
|
|
3446
|
+
description?: Record<string, string> | null | undefined;
|
|
3447
|
+
resource?: string | null | undefined;
|
|
3448
3448
|
format?: {
|
|
3449
3449
|
label?: string | null | undefined;
|
|
3450
|
-
resource?: string | null | undefined;
|
|
3451
3450
|
id?: string | null | undefined;
|
|
3451
|
+
resource?: string | null | undefined;
|
|
3452
3452
|
} | null | undefined;
|
|
3453
3453
|
} | null | undefined)[] | null | undefined;
|
|
3454
3454
|
compress_format?: {
|
|
@@ -3463,8 +3463,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3463
3463
|
extended_metadata?: string[] | null | undefined;
|
|
3464
3464
|
applicable_legislation?: ({
|
|
3465
3465
|
label?: string | null | undefined;
|
|
3466
|
-
resource?: string | null | undefined;
|
|
3467
3466
|
id?: string | null | undefined;
|
|
3467
|
+
resource?: string | null | undefined;
|
|
3468
3468
|
} | null | undefined)[] | null | undefined;
|
|
3469
3469
|
}[] | null | undefined;
|
|
3470
3470
|
is_referenced_by?: string[] | null | undefined;
|
|
@@ -3478,44 +3478,44 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3478
3478
|
modified?: string | null | undefined;
|
|
3479
3479
|
} | null | undefined;
|
|
3480
3480
|
contact_point?: {
|
|
3481
|
-
resource?: string | null | undefined;
|
|
3482
3481
|
type?: string | null | undefined;
|
|
3483
3482
|
name?: string | null | undefined;
|
|
3483
|
+
address?: string | null | undefined;
|
|
3484
|
+
resource?: string | null | undefined;
|
|
3484
3485
|
email?: string | null | undefined;
|
|
3485
3486
|
organisation_name?: string | null | undefined;
|
|
3486
|
-
address?: string | null | undefined;
|
|
3487
3487
|
telephone?: string | null | undefined;
|
|
3488
3488
|
url?: string[] | null | undefined;
|
|
3489
3489
|
}[] | null | undefined;
|
|
3490
3490
|
translation_meta?: {
|
|
3491
|
-
status: string;
|
|
3492
3491
|
details: Record<string, {
|
|
3493
3492
|
machine_translated: boolean;
|
|
3494
3493
|
}>;
|
|
3494
|
+
status: string;
|
|
3495
3495
|
full_available_languages: string[];
|
|
3496
3496
|
} | null | undefined;
|
|
3497
3497
|
version_notes?: Record<string, string> | null | undefined;
|
|
3498
3498
|
has_version?: string[] | null | undefined;
|
|
3499
3499
|
accrual_periodicity?: {
|
|
3500
3500
|
label?: string | null | undefined;
|
|
3501
|
-
resource?: string | null | undefined;
|
|
3502
3501
|
id?: string | null | undefined;
|
|
3502
|
+
resource?: string | null | undefined;
|
|
3503
3503
|
} | null | undefined;
|
|
3504
3504
|
geocoding_description?: any;
|
|
3505
3505
|
access_right?: {
|
|
3506
3506
|
label?: string | null | undefined;
|
|
3507
|
-
resource?: string | null | undefined;
|
|
3508
3507
|
id?: string | null | undefined;
|
|
3508
|
+
resource?: string | null | undefined;
|
|
3509
3509
|
} | null | undefined;
|
|
3510
3510
|
provenance?: {
|
|
3511
3511
|
label?: string | null | undefined;
|
|
3512
|
-
resource?: string | null | undefined;
|
|
3513
3512
|
id?: string | null | undefined;
|
|
3513
|
+
resource?: string | null | undefined;
|
|
3514
3514
|
}[] | null | undefined;
|
|
3515
3515
|
categories?: {
|
|
3516
3516
|
label: Record<string, string>;
|
|
3517
|
-
resource: string;
|
|
3518
3517
|
id: string;
|
|
3518
|
+
resource: string;
|
|
3519
3519
|
}[] | null | undefined;
|
|
3520
3520
|
adms_identifier?: {
|
|
3521
3521
|
resource?: string | null | undefined;
|
|
@@ -3528,8 +3528,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3528
3528
|
dimension?: string[] | null | undefined;
|
|
3529
3529
|
landing_page?: {
|
|
3530
3530
|
label?: string | null | undefined;
|
|
3531
|
-
resource?: string | null | undefined;
|
|
3532
3531
|
id?: string | null | undefined;
|
|
3532
|
+
resource?: string | null | undefined;
|
|
3533
3533
|
}[] | null | undefined;
|
|
3534
3534
|
version_info?: any;
|
|
3535
3535
|
sample?: string[] | null | undefined;
|
|
@@ -3537,8 +3537,8 @@ declare function dcatApDataset(options?: DcatApDatasetParams): {
|
|
|
3537
3537
|
is_hvd?: boolean | null | undefined;
|
|
3538
3538
|
hvd_category?: {
|
|
3539
3539
|
label?: string | null | undefined;
|
|
3540
|
-
resource?: string | null | undefined;
|
|
3541
3540
|
id?: string | null | undefined;
|
|
3541
|
+
resource?: string | null | undefined;
|
|
3542
3542
|
}[] | null | undefined;
|
|
3543
3543
|
}>;
|
|
3544
3544
|
};
|
|
@@ -3567,9 +3567,9 @@ interface SearchResultFacetGroupLocalized {
|
|
|
3567
3567
|
count: number;
|
|
3568
3568
|
}[];
|
|
3569
3569
|
}
|
|
3570
|
-
interface UseSearchFactoryParams<TFacetNames extends string,
|
|
3570
|
+
interface UseSearchFactoryParams<TFacetNames extends string, TModelSchema extends StandardSchemaV1> {
|
|
3571
3571
|
schema: TModelSchema;
|
|
3572
|
-
index:
|
|
3572
|
+
index: string | string[];
|
|
3573
3573
|
facets?: TFacetNames[];
|
|
3574
3574
|
queryOptions?: OurQueryOptions;
|
|
3575
3575
|
qc: QueryClient;
|
|
@@ -3599,15 +3599,43 @@ interface UseSearchFactoryReturn<TFacetNames extends string, TModelSchema extend
|
|
|
3599
3599
|
*/
|
|
3600
3600
|
getSearchResults: ComputedRef<StandardSchemaV1.InferOutput<TModelSchema>[] | undefined>;
|
|
3601
3601
|
getSearchResultsEnhanced: ComputedRef<TSetup[] | undefined>;
|
|
3602
|
+
/**
|
|
3603
|
+
* The normalized search result that handles both single and multi-index cases consistently.
|
|
3604
|
+
* This provides a unified interface regardless of whether you're using single or combined search.
|
|
3605
|
+
*/
|
|
3606
|
+
getNormalizedResult: ComputedRef<{
|
|
3607
|
+
indexes: string[];
|
|
3608
|
+
count: {
|
|
3609
|
+
total: number;
|
|
3610
|
+
} & Record<string, number>;
|
|
3611
|
+
results: StandardSchemaV1.InferOutput<TModelSchema>[] | undefined;
|
|
3612
|
+
facets: SearchResultFacetGroup[];
|
|
3613
|
+
} | null>;
|
|
3602
3614
|
/**
|
|
3603
3615
|
* The total number of search results.
|
|
3616
|
+
* For single index search, this returns the count for that index.
|
|
3617
|
+
* For multi-index search, this returns the total count.
|
|
3604
3618
|
*/
|
|
3605
3619
|
getSearchResultsCount: ComputedRef<number>;
|
|
3606
3620
|
/**
|
|
3607
3621
|
* The total number of pages of search results based on the current limit parameter.
|
|
3608
3622
|
* If the limit is not set or is less than or equal to 0, this will return `NaN`.
|
|
3623
|
+
* For single index search, this is based on the count for that index.
|
|
3624
|
+
* For multi-index search, this is based on the total count.
|
|
3609
3625
|
*/
|
|
3610
3626
|
getSearchResultsPagesCount: ComputedRef<number>;
|
|
3627
|
+
/**
|
|
3628
|
+
* Get the count for a specific index.
|
|
3629
|
+
* @param index The index to get the count for
|
|
3630
|
+
* @returns A computed ref with the count for the specified index
|
|
3631
|
+
*/
|
|
3632
|
+
getSearchResultCountByIndex: (index: string) => ComputedRef<number>;
|
|
3633
|
+
/**
|
|
3634
|
+
* Get the number of pages for a specific index based on the current limit parameter.
|
|
3635
|
+
* @param index The index to get the page count for
|
|
3636
|
+
* @returns A computed ref with the page count for the specified index
|
|
3637
|
+
*/
|
|
3638
|
+
getSearchResultsPagesCountByIndex: (index: string) => ComputedRef<number>;
|
|
3611
3639
|
/**
|
|
3612
3640
|
* Whether the search query is loading.
|
|
3613
3641
|
*/
|
|
@@ -3637,7 +3665,7 @@ interface UseSearchParams<TFacetNames extends string> {
|
|
|
3637
3665
|
headers?: MaybeRefOrGetter<Record<string, string>>;
|
|
3638
3666
|
queryOptions?: OurQueryOptions;
|
|
3639
3667
|
}
|
|
3640
|
-
declare function useSearchFactory<TSetup extends object, TFacetNames extends string,
|
|
3668
|
+
declare function useSearchFactory<TSetup extends object, TFacetNames extends string, TModelSchema extends StandardSchemaV1>(options: UseSearchFactoryParams<TFacetNames, TModelSchema>, setup?: SetupFn<TSetup, TModelSchema>): (params: UseSearchParams<TFacetNames>) => UseSearchFactoryReturn<TFacetNames, TModelSchema, TSetup>;
|
|
3641
3669
|
|
|
3642
3670
|
/**
|
|
3643
3671
|
* @groupDescription Essentials
|
|
@@ -3661,4 +3689,5 @@ declare const piveauKitPlugin: {
|
|
|
3661
3689
|
install(app: App, options?: PiveauKitPluginOptions): void;
|
|
3662
3690
|
};
|
|
3663
3691
|
|
|
3664
|
-
export {
|
|
3692
|
+
export { PropertyTable, PropertyTableNode, asArray, dcatApDataset, defineHubSearch, defineHubSearchIntegration, definePropertyNode, definePropertyNodeCompact, definePropertyValue, getCurrentApp, getLocalizedValue, getPropertyTableCatalog, getPropertyTableDataset, getPropertyTableDistribution, getRepresentativeLocaleOf, getTranslationFor, hasSlotContent, isEmpty, isSlotEmpty, isStringArray, isUrl, isVNodeEmpty, keyQueryClient, localeKey, nonNullable, parseResource, parseResourceList, parseUrl, parseUrlList, piveauKitPlugin, plugin, selectNodesById, unwrapLocaleInstance, useLocale, useLocaleUnwrapped, useQueryClient, useResourceFactory, useSearchFactory };
|
|
3693
|
+
export type { DateFormatStrings, DateFormats, DateLike, DcatApDatasetParams, DefineHubSearchOptions, DefinePropertyNodeGeneralOptions, DefinePropertyNodeOptions, DefinePropertyValueOptions, Facet, FacetList, GetPropertyTableBase, GetPropertyTableDatasetParams, GetPropertyTableDistributionParams, HubSearchDefinition, HubSearchIntegrationOptions, LinkedDataFormats, LocaleInstance, LocaleMessages, LocaleOptions, PiveauKitPluginOptions, PropertyTableCell, PropertyTableCellContact, PropertyTableCellHref, PropertyTableEntry, PropertyTableEntryBase, PropertyTableEntryHref, PropertyTableEntryLeaf, PropertyTableEntryNode, PropertyTableEntryNodeSimplified, PropertyTableEntrySimplified, PropertyTableEntryValue, PropertyTableLeafHref, PropertyTableLeafValue, PropertyTableProps, PropertyTableRoot, ResolvedSetupFn, SearchResultFacetGroupLocalized, SelectNodesByIdParams, SelectNodesOptions, SelectOption, SelectOptionList, SetupContext, SetupFn, UnwrappedLocaleInstance, UseResourceFactoryParams, UseResourceFunction, UseResourceParams, UseResourceResult, UseResourceResultBase, UseResourceResultNoData, UseResourceResultWithData, UseSearchFactoryParams, UseSearchFactoryReturn, UseSearchParams, _UseQueryReturnType };
|