-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
247 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/server/data_io/type_declarations/generated/Arguments_Empty.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run json-schema-to-typescript to regenerate this file. | ||
*/ | ||
|
||
export interface Arguments_Empty { | ||
[k: string]: unknown; | ||
} |
14 changes: 14 additions & 0 deletions
14
src/server/data_io/type_declarations/generated/Arguments_Ps.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run json-schema-to-typescript to regenerate this file. | ||
*/ | ||
|
||
export interface Arguments_Ps { | ||
/** | ||
* patient IDs | ||
*/ | ||
patientList: string[]; | ||
[k: string]: unknown; | ||
} |
21 changes: 21 additions & 0 deletions
21
src/server/data_io/type_declarations/generated/Arguments_TTEsKSs.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run json-schema-to-typescript to regenerate this file. | ||
*/ | ||
|
||
export interface Arguments_TTEsKSs { | ||
starttime: string; | ||
endtime: string; | ||
/** | ||
* pathogen IDs | ||
*/ | ||
pathogenList: string[]; | ||
hospital: string; | ||
/** | ||
* station IDs | ||
*/ | ||
station: string[]; | ||
[k: string]: unknown; | ||
} |
15 changes: 15 additions & 0 deletions
15
src/server/data_io/type_declarations/generated/Arguments_TTKP_Degree.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run json-schema-to-typescript to regenerate this file. | ||
*/ | ||
|
||
export interface Arguments_TTKP_Degree { | ||
starttime: string; | ||
endtime: string; | ||
patientID: string; | ||
hospital: string; | ||
degree: number; | ||
[k: string]: unknown; | ||
} |
14 changes: 14 additions & 0 deletions
14
src/server/data_io/type_declarations/generated/Arguments_TTPK.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run json-schema-to-typescript to regenerate this file. | ||
*/ | ||
|
||
export interface Arguments_TTPK { | ||
starttime: string; | ||
endtime: string; | ||
patientID: number; | ||
hospital: number; | ||
[k: string]: unknown; | ||
} |
33 changes: 33 additions & 0 deletions
33
src/server/data_io/type_declarations/generated/Bewegungen.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run json-schema-to-typescript to regenerate this file. | ||
*/ | ||
|
||
export type Bewegungen = { | ||
id?: string; | ||
Beginn: string; | ||
/** | ||
* ist immer da, falls ein Aufenthalt noch nicht abgeschlossen ist steht hier das aktuelle Datum drin | ||
*/ | ||
Ende: string; | ||
PatientID: string; | ||
FallID: string; | ||
StationID?: string; | ||
LfdNr?: number; | ||
Station?: string; | ||
/** | ||
* this is only called 'number', but is really a textual identifier | ||
*/ | ||
ZimmerNr?: string; | ||
CaseID?: number; | ||
CaseType_l?: string; | ||
CaseType_k?: string; | ||
BewegungsartID?: number; | ||
Bewegungsart_l?: string; | ||
Bewegungsart_k?: string; | ||
BewegungstypID: number; | ||
Bewegungstyp?: string; | ||
[k: string]: unknown; | ||
}[]; |
18 changes: 18 additions & 0 deletions
18
src/server/data_io/type_declarations/generated/DiagnosticResults.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run json-schema-to-typescript to regenerate this file. | ||
*/ | ||
|
||
export type DiagnosticResults = { | ||
PatientID: string; | ||
ICD_Code: string; | ||
/** | ||
* this is generated readable text from the ICD code | ||
*/ | ||
Diagnose: string; | ||
Freitextbeschreibung: string | null; | ||
DokumentationsDatum: string; | ||
[k: string]: unknown; | ||
}[]; |
20 changes: 20 additions & 0 deletions
20
src/server/data_io/type_declarations/generated/ErregerProTag.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run json-schema-to-typescript to regenerate this file. | ||
*/ | ||
|
||
export type ErregerProTag = { | ||
StationID: string | null; | ||
Datum: string; | ||
ErregerID: string; | ||
ErregerBEZL: string; | ||
Anzahl: number; | ||
Anzahl_cs: number; | ||
MAVG7: number | null; | ||
MAVG28: number | null; | ||
MAVG7_cs: number | null; | ||
MAVG28_cs: number | null; | ||
[k: string]: unknown; | ||
}[]; |
27 changes: 27 additions & 0 deletions
27
src/server/data_io/type_declarations/generated/Hospitals.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run json-schema-to-typescript to regenerate this file. | ||
*/ | ||
|
||
export type Hospitals = { | ||
id: number; | ||
/** | ||
* Bezeichnung (lang) | ||
*/ | ||
BEZL: string; | ||
/** | ||
* Bezeichnung (kurz) | ||
*/ | ||
BEZK: string; | ||
/** | ||
* the latitude of the hospital in degrees | ||
*/ | ||
Lat: number; | ||
/** | ||
* the longitude of the hospital in degrees | ||
*/ | ||
Lon: number; | ||
[k: string]: unknown; | ||
}[]; |
10 changes: 10 additions & 0 deletions
10
src/server/data_io/type_declarations/generated/Kontakte.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run json-schema-to-typescript to regenerate this file. | ||
*/ | ||
|
||
export interface Kontakte { | ||
[k: string]: unknown; | ||
} |
21 changes: 21 additions & 0 deletions
21
src/server/data_io/type_declarations/generated/Labordaten.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run json-schema-to-typescript to regenerate this file. | ||
*/ | ||
|
||
/** | ||
* for both viruses and bacteria | ||
*/ | ||
export type Labordaten = ( | ||
| { | ||
[k: string]: unknown; | ||
} | ||
| { | ||
[k: string]: unknown; | ||
} | ||
| { | ||
[k: string]: unknown; | ||
} | ||
)[]; |
15 changes: 15 additions & 0 deletions
15
src/server/data_io/type_declarations/generated/PathogenFlag.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run json-schema-to-typescript to regenerate this file. | ||
*/ | ||
|
||
export type PathogenFlag = { | ||
PatientID: string; | ||
Flag: boolean; | ||
KeimID: string; | ||
Keim_l: string; | ||
DokumentationsDatum: string; | ||
[k: string]: unknown; | ||
}[]; |
28 changes: 28 additions & 0 deletions
28
src/server/data_io/type_declarations/generated/Praktikum_CF_2020_Result.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This file was automatically generated by json-schema-to-typescript. | ||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, | ||
* and run json-schema-to-typescript to regenerate this file. | ||
*/ | ||
|
||
export interface Praktikum_CF_2020_Result { | ||
nodes: { | ||
nodeID: string; | ||
time: string; | ||
personID: string; | ||
LocationID: string; | ||
pathogens: { | ||
pathogenID: string; | ||
result: boolean; | ||
screening?: boolean; | ||
[k: string]: unknown; | ||
}[]; | ||
[k: string]: unknown; | ||
}[]; | ||
edges: { | ||
nodeID_start: string; | ||
nodeID_end: string; | ||
[k: string]: unknown; | ||
}[]; | ||
[k: string]: unknown; | ||
} |