Skip to content

Commit

Permalink
changed gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
biermapa committed Sep 7, 2021
1 parent 5b520ed commit 4602677
Show file tree
Hide file tree
Showing 14 changed files with 247 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,4 @@ dist
.pnp.*


src/server/data_io/type_declarations/generated/*
# src/server/data_io/type_declarations/generated/*
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 src/server/data_io/type_declarations/generated/Arguments_Ps.d.ts
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;
}
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;
}
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 src/server/data_io/type_declarations/generated/Arguments_TTPK.d.ts
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 src/server/data_io/type_declarations/generated/Bewegungen.d.ts
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;
}[];
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 src/server/data_io/type_declarations/generated/ErregerProTag.d.ts
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 src/server/data_io/type_declarations/generated/Hospitals.d.ts
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 src/server/data_io/type_declarations/generated/Kontakte.d.ts
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 src/server/data_io/type_declarations/generated/Labordaten.d.ts
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 src/server/data_io/type_declarations/generated/PathogenFlag.d.ts
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;
}[];
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;
}

0 comments on commit 4602677

Please sign in to comment.