🚀New lib version v0.1.0 [CI SKIP]
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2021-01-15 19:40:46 +00:00
parent 79606e3f43
commit 3e9d3e4120
7 changed files with 8 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
export declare type UpdatePermission = {
id: number;
principal: any;
principal: number;
target: string;
action: string;
};

View File

@@ -1,6 +1,6 @@
export declare type UpdateRunner = {
id: number;
group: any;
group: number;
firstname: string;
middlename?: string;
lastname: string;

View File

@@ -1,6 +1,6 @@
export declare type UpdateRunnerTeam = {
id: number;
parentGroup: any;
parentGroup: number;
name: string;
contact?: number;
};

View File

@@ -1,6 +1,6 @@
export declare type UpdateTrackScan = {
id: number;
runner?: number;
runner: number;
valid?: boolean;
station?: number;
station: number;
};