Projekt

Obecné

Profil

Stáhnout (1.93 KB) Statistiky
| Větev: | Tag: | Revize:
1
/* 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
export interface CatalogItemDto {
13
  /** @format uuid */
14
  id?: string;
15
  name?: string;
16
  allNames?: string[];
17
  writtenForms?: string[];
18
  types?: string[];
19
  countries?: string[];
20
  bibliography?: string[];
21

    
22
  /** @format double */
23
  longitude?: number;
24

    
25
  /** @format double */
26
  latitude?: number;
27

    
28
  /** @format int32 */
29
  certainty?: number;
30
  description?: string;
31
}
32

    
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
export interface TitlePageDto {
52
  content?: string;
53
}
54

    
55
export interface SourcesDto {
56
  sources?: string;
57
}
58

    
59
export interface PathDto {
60
  text?: string;
61
  foundCatalogItems?: CatalogItemDto[][];
62
}
63

    
64
export interface ExternalCatalogItemDto {
65
  /** @format uuid */
66
  id?: string;
67
  externalSource?: "PLEIADES" | "GEONAMES" | "CIGS" | "ANE";
68

    
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
}
(7-7/8)