This commit is contained in:
Vendored
+3
-1
@@ -13,7 +13,9 @@ export declare namespace CreatePermission {
|
||||
USERGROUP = "USERGROUP",
|
||||
PERMISSION = "PERMISSION",
|
||||
STATSCLIENT = "STATSCLIENT",
|
||||
DONOR = "DONOR"
|
||||
DONOR = "DONOR",
|
||||
SCAN = "SCAN",
|
||||
STATION = "STATION"
|
||||
}
|
||||
enum action {
|
||||
GET = "GET",
|
||||
|
||||
Vendored
+2
@@ -17,6 +17,8 @@ var CreatePermission;
|
||||
target["PERMISSION"] = "PERMISSION";
|
||||
target["STATSCLIENT"] = "STATSCLIENT";
|
||||
target["DONOR"] = "DONOR";
|
||||
target["SCAN"] = "SCAN";
|
||||
target["STATION"] = "STATION";
|
||||
})(target = CreatePermission.target || (CreatePermission.target = {}));
|
||||
let action;
|
||||
(function (action) {
|
||||
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
export declare type CreateScan = {
|
||||
runner: number;
|
||||
valid?: boolean;
|
||||
distance: number;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
export declare type CreateScanStation = {
|
||||
description?: string;
|
||||
track: number;
|
||||
enabled?: boolean;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
export declare type CreateTrackScan = {
|
||||
track: string;
|
||||
card: string;
|
||||
station: string;
|
||||
runner: number;
|
||||
valid?: boolean;
|
||||
distance: number;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+1
@@ -8,4 +8,5 @@ export declare type CreateUser = {
|
||||
password: string;
|
||||
enabled?: boolean;
|
||||
groups?: any;
|
||||
profilePic?: string;
|
||||
};
|
||||
|
||||
Vendored
+3
-1
@@ -13,7 +13,9 @@ export declare namespace Permission {
|
||||
USERGROUP = "USERGROUP",
|
||||
PERMISSION = "PERMISSION",
|
||||
STATSCLIENT = "STATSCLIENT",
|
||||
DONOR = "DONOR"
|
||||
DONOR = "DONOR",
|
||||
SCAN = "SCAN",
|
||||
STATION = "STATION"
|
||||
}
|
||||
enum action {
|
||||
GET = "GET",
|
||||
|
||||
Vendored
+2
@@ -17,6 +17,8 @@ var Permission;
|
||||
target["PERMISSION"] = "PERMISSION";
|
||||
target["STATSCLIENT"] = "STATSCLIENT";
|
||||
target["DONOR"] = "DONOR";
|
||||
target["SCAN"] = "SCAN";
|
||||
target["STATION"] = "STATION";
|
||||
})(target = Permission.target || (Permission.target = {}));
|
||||
let action;
|
||||
(function (action) {
|
||||
|
||||
Vendored
+3
-1
@@ -14,7 +14,9 @@ export declare namespace ResponsePermission {
|
||||
USERGROUP = "USERGROUP",
|
||||
PERMISSION = "PERMISSION",
|
||||
STATSCLIENT = "STATSCLIENT",
|
||||
DONOR = "DONOR"
|
||||
DONOR = "DONOR",
|
||||
SCAN = "SCAN",
|
||||
STATION = "STATION"
|
||||
}
|
||||
enum action {
|
||||
GET = "GET",
|
||||
|
||||
Vendored
+2
@@ -17,6 +17,8 @@ var ResponsePermission;
|
||||
target["PERMISSION"] = "PERMISSION";
|
||||
target["STATSCLIENT"] = "STATSCLIENT";
|
||||
target["DONOR"] = "DONOR";
|
||||
target["SCAN"] = "SCAN";
|
||||
target["STATION"] = "STATION";
|
||||
})(target = ResponsePermission.target || (ResponsePermission.target = {}));
|
||||
let action;
|
||||
(function (action) {
|
||||
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
export declare type ResponseScan = {
|
||||
id: number;
|
||||
runner: string;
|
||||
valid: boolean;
|
||||
distance: number;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
export declare type ResponseScanStation = {
|
||||
id: number;
|
||||
description?: string;
|
||||
key?: string;
|
||||
prefix: string;
|
||||
track: any;
|
||||
enabled: boolean;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
export declare type ResponseTrackScan = {
|
||||
track: string;
|
||||
card: string;
|
||||
station: string;
|
||||
timestamp: string;
|
||||
id: number;
|
||||
runner: string;
|
||||
valid: boolean;
|
||||
distance: number;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+1
-1
@@ -6,7 +6,7 @@ export declare type ResponseUser = {
|
||||
email: string;
|
||||
username: string;
|
||||
enabled: boolean;
|
||||
profilePic?: string;
|
||||
profilePic: string;
|
||||
groups?: Array<any>;
|
||||
permissions?: Array<any>;
|
||||
id: number;
|
||||
|
||||
Vendored
+2
-1
@@ -1,6 +1,7 @@
|
||||
export declare type Scan = {
|
||||
id: number;
|
||||
runner: string;
|
||||
distance: number;
|
||||
valid: boolean;
|
||||
_distance: number;
|
||||
distance: number;
|
||||
};
|
||||
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export declare type ScanIdsNotMatchingError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
export declare type ScanNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+2
@@ -2,6 +2,8 @@ export declare type ScanStation = {
|
||||
id: number;
|
||||
description?: string;
|
||||
track: string;
|
||||
prefix: string;
|
||||
key: string;
|
||||
cleartextkey?: string;
|
||||
enabled: boolean;
|
||||
};
|
||||
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export declare type ScanStationHasScansError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
@@ -0,0 +1,4 @@
|
||||
export declare type ScanStationIdsNotMatchingError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export declare type ScanStationNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export declare type TrackHasScanStationsError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+1
@@ -7,4 +7,5 @@ export declare type TrackScan = {
|
||||
id: number;
|
||||
runner: string;
|
||||
valid: boolean;
|
||||
_distance: number;
|
||||
};
|
||||
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
export declare type UpdateScan = {
|
||||
id: number;
|
||||
runner: number;
|
||||
valid?: boolean;
|
||||
distance: number;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
export declare type UpdateScanStation = {
|
||||
id: number;
|
||||
description?: string;
|
||||
enabled?: boolean;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+1
@@ -9,4 +9,5 @@ export declare type UpdateUser = {
|
||||
password?: string;
|
||||
enabled: boolean;
|
||||
groups?: any;
|
||||
profilePic?: string;
|
||||
};
|
||||
|
||||
Vendored
+1
-1
@@ -10,7 +10,7 @@ export declare type User = {
|
||||
groups?: any;
|
||||
enabled: boolean;
|
||||
refreshTokenCount: number;
|
||||
profilePic?: string;
|
||||
profilePic: string;
|
||||
resetRequestedTimestamp?: string;
|
||||
actions?: any;
|
||||
id: number;
|
||||
|
||||
Reference in New Issue
Block a user