1 |
c7d2ced1
|
Václav Honzík
|
/* eslint-disable */
|
2 |
|
|
/* tslint:disable */
|
3 |
|
|
/*
|
4 |
|
|
* ---------------------------------------------------------------
|
5 |
|
|
* ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ##
|
6 |
|
|
* ## ##
|
7 |
|
|
* ## AUTHOR: acacode ##
|
8 |
|
|
* ## SOURCE: https://github.com/acacode/swagger-typescript-api ##
|
9 |
|
|
* ---------------------------------------------------------------
|
10 |
|
|
*/
|
11 |
|
|
|
12 |
a69da1e3
|
Vaclav Honzik
|
export interface CatalogItemDto {
|
13 |
c7d2ced1
|
Václav Honzík
|
/** @format uuid */
|
14 |
|
|
id?: string;
|
15 |
|
|
name?: string;
|
16 |
b61ca51b
|
Schwobik
|
allNames?: string[];
|
17 |
394f2d16
|
Vaclav Honzik
|
writtenForms?: string[];
|
18 |
|
|
types?: string[];
|
19 |
|
|
countries?: string[];
|
20 |
|
|
bibliography?: string[];
|
21 |
c7d2ced1
|
Václav Honzík
|
|
22 |
|
|
/** @format double */
|
23 |
|
|
longitude?: number;
|
24 |
|
|
|
25 |
|
|
/** @format double */
|
26 |
|
|
latitude?: number;
|
27 |
394f2d16
|
Vaclav Honzik
|
|
28 |
|
|
/** @format int32 */
|
29 |
|
|
certainty?: number;
|
30 |
|
|
description?: string;
|
31 |
c7d2ced1
|
Václav Honzík
|
}
|
32 |
a69da1e3
|
Vaclav Honzik
|
|
33 |
|
|
export interface PasswordDto {
|
34 |
|
|
password: string;
|
35 |
|
|
confirmationPassword: string;
|
36 |
|
|
}
|
37 |
|
|
|
38 |
|
|
export interface PermissionDto {
|
39 |
|
|
canRead?: boolean;
|
40 |
|
|
canWrite?: boolean;
|
41 |
|
|
canDelete?: boolean;
|
42 |
|
|
}
|
43 |
|
|
|
44 |
|
|
export interface UserDto {
|
45 |
|
|
name?: string;
|
46 |
|
|
email: string;
|
47 |
|
|
permissions?: PermissionDto;
|
48 |
|
|
passwords: PasswordDto;
|
49 |
|
|
}
|
50 |
|
|
|
51 |
409ad6d9
|
Jakub Smid
|
export interface TitlePageDto {
|
52 |
a69da1e3
|
Vaclav Honzik
|
content?: string;
|
53 |
|
|
}
|
54 |
394f2d16
|
Vaclav Honzik
|
|
55 |
b61ca51b
|
Schwobik
|
export interface SourcesDto {
|
56 |
|
|
sources?: string;
|
57 |
|
|
}
|
58 |
|
|
|
59 |
394f2d16
|
Vaclav Honzik
|
export interface PathDto {
|
60 |
|
|
text?: string;
|
61 |
|
|
foundCatalogItems?: CatalogItemDto[][];
|
62 |
|
|
}
|
63 |
4996b85f
|
Schwobik
|
|
64 |
|
|
export interface ExternalCatalogItemDto {
|
65 |
|
|
/** @format uuid */
|
66 |
|
|
id?: string;
|
67 |
b61ca51b
|
Schwobik
|
externalSource?: "PLEIADES" | "GEONAMES" | "CIGS" | "ANE";
|
68 |
4996b85f
|
Schwobik
|
|
69 |
|
|
/** @format double */
|
70 |
|
|
latitude?: number;
|
71 |
|
|
|
72 |
|
|
/** @format double */
|
73 |
|
|
longitude?: number;
|
74 |
|
|
locationPrecision?: string;
|
75 |
|
|
|
76 |
|
|
/** @format int32 */
|
77 |
|
|
maxDate?: number;
|
78 |
|
|
|
79 |
|
|
/** @format int32 */
|
80 |
|
|
minDate?: number;
|
81 |
|
|
timePeriodKeys?: string;
|
82 |
|
|
pid?: string;
|
83 |
|
|
names?: string[];
|
84 |
|
|
featureCode?: string;
|
85 |
|
|
country?: string;
|
86 |
|
|
|
87 |
|
|
/** @format int32 */
|
88 |
|
|
accuracy?: number;
|
89 |
|
|
|
90 |
|
|
/** @format int64 */
|
91 |
|
|
geonameId?: number;
|
92 |
|
|
|
93 |
|
|
/** @format int64 */
|
94 |
|
|
pleiadesId?: number;
|
95 |
|
|
|
96 |
|
|
/** @format int64 */
|
97 |
|
|
osmId?: number;
|
98 |
|
|
}
|