Projekt

Obecné

Profil

Stáhnout (1.89 KB) Statistiky
| Větev: | Tag: | Revize:
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 394f2d16 Vaclav Honzik
  alternativeNames?: string[];
17
  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
  title?: string;
53
  content?: string;
54
}
55 394f2d16 Vaclav Honzik
56
export interface PathDto {
57
  text?: string;
58
  foundCatalogItems?: CatalogItemDto[][];
59
}
60 9ac8d8a0 Schwobik
61
export interface ExternalCatalogItemDto {
62
  /** @format uuid */
63
  id?: string;
64
  externalSource?: "PLEIADES" | "GEONAMES" | "CIGS";
65
66
  /** @format double */
67
  latitude?: number;
68
69
  /** @format double */
70
  longitude?: number;
71
  locationPrecision?: string;
72
73
  /** @format int32 */
74
  maxDate?: number;
75
76
  /** @format int32 */
77
  minDate?: number;
78
  timePeriodKeys?: string;
79
  pid?: string;
80
  names?: string[];
81
  featureCode?: string;
82
  country?: string;
83
84
  /** @format int32 */
85
  accuracy?: number;
86
87
  /** @format int64 */
88
  geonameId?: number;
89
90
  /** @format int64 */
91
  pleiadesId?: number;
92
93
  /** @format int64 */
94
  osmId?: number;
95
}