This commit is contained in:
Vendored
-9
@@ -1,9 +0,0 @@
|
||||
export declare type Address = {
|
||||
id: number;
|
||||
description?: string;
|
||||
address1: string;
|
||||
address2?: string;
|
||||
postalcode: string;
|
||||
city: string;
|
||||
country: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
-4
@@ -1,4 +0,0 @@
|
||||
export declare type AddressNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
-4
@@ -1,4 +0,0 @@
|
||||
export declare type AddressWrongTypeError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-6
@@ -1,6 +0,0 @@
|
||||
export declare type Auth = {
|
||||
access_token: string;
|
||||
refresh_token: string;
|
||||
access_token_expires_at: number;
|
||||
refresh_token_expires_at: number;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
export declare type CreateAuth = {
|
||||
username?: string;
|
||||
email?: string;
|
||||
password: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-8
@@ -1,8 +0,0 @@
|
||||
export declare type CreateParticipant = {
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-24
@@ -1,24 +0,0 @@
|
||||
export declare type CreatePermission = {
|
||||
principal: number;
|
||||
target: CreatePermission.target;
|
||||
action: CreatePermission.action;
|
||||
};
|
||||
export declare namespace CreatePermission {
|
||||
enum target {
|
||||
RUNNER = "RUNNER",
|
||||
ORGANISATION = "ORGANISATION",
|
||||
TEAM = "TEAM",
|
||||
TRACK = "TRACK",
|
||||
USER = "USER",
|
||||
USERGROUP = "USERGROUP",
|
||||
PERMISSION = "PERMISSION",
|
||||
STATSCLIENT = "STATSCLIENT"
|
||||
}
|
||||
enum action {
|
||||
GET = "GET",
|
||||
CREATE = "CREATE",
|
||||
UPDATE = "UPDATE",
|
||||
DELETE = "DELETE",
|
||||
IMPORT = "IMPORT"
|
||||
}
|
||||
}
|
||||
Vendored
-28
@@ -1,28 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CreatePermission = void 0;
|
||||
var CreatePermission;
|
||||
(function (CreatePermission) {
|
||||
let target;
|
||||
(function (target) {
|
||||
target["RUNNER"] = "RUNNER";
|
||||
target["ORGANISATION"] = "ORGANISATION";
|
||||
target["TEAM"] = "TEAM";
|
||||
target["TRACK"] = "TRACK";
|
||||
target["USER"] = "USER";
|
||||
target["USERGROUP"] = "USERGROUP";
|
||||
target["PERMISSION"] = "PERMISSION";
|
||||
target["STATSCLIENT"] = "STATSCLIENT";
|
||||
})(target = CreatePermission.target || (CreatePermission.target = {}));
|
||||
let action;
|
||||
(function (action) {
|
||||
action["GET"] = "GET";
|
||||
action["CREATE"] = "CREATE";
|
||||
action["UPDATE"] = "UPDATE";
|
||||
action["DELETE"] = "DELETE";
|
||||
action["IMPORT"] = "IMPORT";
|
||||
})(action = CreatePermission.action || (CreatePermission.action = {}));
|
||||
})(CreatePermission = exports.CreatePermission || (exports.CreatePermission = {}));
|
||||
Vendored
-4
@@ -1,4 +0,0 @@
|
||||
export declare type CreateResetToken = {
|
||||
username?: string;
|
||||
email?: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-9
@@ -1,9 +0,0 @@
|
||||
export declare type CreateRunner = {
|
||||
group: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-4
@@ -1,4 +0,0 @@
|
||||
export declare type CreateRunnerGroup = {
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
export declare type CreateRunnerOrganisation = {
|
||||
address?: number;
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
export declare type CreateRunnerTeam = {
|
||||
parentGroup: number;
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-3
@@ -1,3 +0,0 @@
|
||||
export declare type CreateStatsClient = {
|
||||
description?: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-4
@@ -1,4 +0,0 @@
|
||||
export declare type CreateTrack = {
|
||||
name: string;
|
||||
distance: number;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-11
@@ -1,11 +0,0 @@
|
||||
export declare type CreateUser = {
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
username?: string;
|
||||
email?: string;
|
||||
phone?: string;
|
||||
password: string;
|
||||
enabled?: boolean;
|
||||
groups?: any;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-4
@@ -1,4 +0,0 @@
|
||||
export declare type CreateUserGroup = {
|
||||
name: string;
|
||||
description?: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-6
@@ -1,6 +0,0 @@
|
||||
export declare type DistanceDonation = {
|
||||
runner: string;
|
||||
amountPerDistance: number;
|
||||
id: number;
|
||||
donor: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-4
@@ -1,4 +0,0 @@
|
||||
export declare type Donation = {
|
||||
id: number;
|
||||
donor: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-9
@@ -1,9 +0,0 @@
|
||||
export declare type GroupContact = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
address?: any;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
-4
@@ -1,4 +0,0 @@
|
||||
export declare type GroupContactNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
-4
@@ -1,4 +0,0 @@
|
||||
export declare type GroupContactWrongTypeError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
-4
@@ -1,4 +0,0 @@
|
||||
export declare type GroupNameNeededError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-3
@@ -1,3 +0,0 @@
|
||||
export declare type HandleLogout = {
|
||||
token?: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-7
@@ -1,7 +0,0 @@
|
||||
export declare type ImportRunner = {
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
team?: string;
|
||||
class?: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-3
@@ -1,3 +0,0 @@
|
||||
export declare type Logout = {
|
||||
timestamp: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-8
@@ -1,8 +0,0 @@
|
||||
export declare type Participant = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+2
-1
@@ -12,7 +12,8 @@ export declare namespace Permission {
|
||||
USER = "USER",
|
||||
USERGROUP = "USERGROUP",
|
||||
PERMISSION = "PERMISSION",
|
||||
STATSCLIENT = "STATSCLIENT"
|
||||
STATSCLIENT = "STATSCLIENT",
|
||||
DONOR = "DONOR"
|
||||
}
|
||||
enum action {
|
||||
GET = "GET",
|
||||
|
||||
Vendored
+1
@@ -16,6 +16,7 @@ var Permission;
|
||||
target["USERGROUP"] = "USERGROUP";
|
||||
target["PERMISSION"] = "PERMISSION";
|
||||
target["STATSCLIENT"] = "STATSCLIENT";
|
||||
target["DONOR"] = "DONOR";
|
||||
})(target = Permission.target || (Permission.target = {}));
|
||||
let action;
|
||||
(function (action) {
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
export declare type PermissionIdsNotMatchingError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
@@ -1,4 +0,0 @@
|
||||
export declare type PermissionNeedsPrincipalError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
-4
@@ -1,4 +0,0 @@
|
||||
export declare type PermissionNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
-4
@@ -1,4 +0,0 @@
|
||||
export declare type PrincipalNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
-4
@@ -1,4 +0,0 @@
|
||||
export declare type PrincipalWrongTypeError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-3
@@ -1,3 +0,0 @@
|
||||
export declare type RefreshAuth = {
|
||||
token?: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-4
@@ -1,4 +0,0 @@
|
||||
export declare type ResetPassword = {
|
||||
resetToken?: string;
|
||||
password: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-3
@@ -1,3 +0,0 @@
|
||||
export declare type ResponseEmpty = {
|
||||
response: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-8
@@ -1,8 +0,0 @@
|
||||
export declare type ResponseParticipant = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename: string;
|
||||
lastname: string;
|
||||
phone: string;
|
||||
email: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-26
@@ -1,26 +0,0 @@
|
||||
import type { ResponsePrincipal } from './ResponsePrincipal';
|
||||
export declare type ResponsePermission = {
|
||||
id: number;
|
||||
principal: ResponsePrincipal;
|
||||
target: ResponsePermission.target;
|
||||
action: ResponsePermission.action;
|
||||
};
|
||||
export declare namespace ResponsePermission {
|
||||
enum target {
|
||||
RUNNER = "RUNNER",
|
||||
ORGANISATION = "ORGANISATION",
|
||||
TEAM = "TEAM",
|
||||
TRACK = "TRACK",
|
||||
USER = "USER",
|
||||
USERGROUP = "USERGROUP",
|
||||
PERMISSION = "PERMISSION",
|
||||
STATSCLIENT = "STATSCLIENT"
|
||||
}
|
||||
enum action {
|
||||
GET = "GET",
|
||||
CREATE = "CREATE",
|
||||
UPDATE = "UPDATE",
|
||||
DELETE = "DELETE",
|
||||
IMPORT = "IMPORT"
|
||||
}
|
||||
}
|
||||
Vendored
-28
@@ -1,28 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ResponsePermission = void 0;
|
||||
var ResponsePermission;
|
||||
(function (ResponsePermission) {
|
||||
let target;
|
||||
(function (target) {
|
||||
target["RUNNER"] = "RUNNER";
|
||||
target["ORGANISATION"] = "ORGANISATION";
|
||||
target["TEAM"] = "TEAM";
|
||||
target["TRACK"] = "TRACK";
|
||||
target["USER"] = "USER";
|
||||
target["USERGROUP"] = "USERGROUP";
|
||||
target["PERMISSION"] = "PERMISSION";
|
||||
target["STATSCLIENT"] = "STATSCLIENT";
|
||||
})(target = ResponsePermission.target || (ResponsePermission.target = {}));
|
||||
let action;
|
||||
(function (action) {
|
||||
action["GET"] = "GET";
|
||||
action["CREATE"] = "CREATE";
|
||||
action["UPDATE"] = "UPDATE";
|
||||
action["DELETE"] = "DELETE";
|
||||
action["IMPORT"] = "IMPORT";
|
||||
})(action = ResponsePermission.action || (ResponsePermission.action = {}));
|
||||
})(ResponsePermission = exports.ResponsePermission || (exports.ResponsePermission = {}));
|
||||
Vendored
-11
@@ -1,11 +0,0 @@
|
||||
import type { RunnerGroup } from './RunnerGroup';
|
||||
export declare type ResponseRunner = {
|
||||
distance: number;
|
||||
group: RunnerGroup;
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename: string;
|
||||
lastname: string;
|
||||
phone: string;
|
||||
email: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-6
@@ -1,6 +0,0 @@
|
||||
import type { GroupContact } from './GroupContact';
|
||||
export declare type ResponseRunnerGroup = {
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: GroupContact;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
-9
@@ -1,9 +0,0 @@
|
||||
import type { Address } from './Address';
|
||||
import type { GroupContact } from './GroupContact';
|
||||
export declare type ResponseRunnerOrganisation = {
|
||||
address: Address;
|
||||
teams: Array<any>;
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: GroupContact;
|
||||
};
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-8
@@ -1,8 +0,0 @@
|
||||
import type { GroupContact } from './GroupContact';
|
||||
import type { RunnerOrganisation } from './RunnerOrganisation';
|
||||
export declare type ResponseRunnerTeam = {
|
||||
parentGroup: RunnerOrganisation;
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: GroupContact;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-10
@@ -1,10 +0,0 @@
|
||||
export declare type ResponseStats = {
|
||||
total_runners: number;
|
||||
total_teams: number;
|
||||
total_orgs: number;
|
||||
total_users: number;
|
||||
total_scans: number;
|
||||
total_distance: number;
|
||||
total_donation: number;
|
||||
average_distance: number;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-6
@@ -1,6 +0,0 @@
|
||||
export declare type ResponseStatsClient = {
|
||||
id: number;
|
||||
description?: string;
|
||||
key?: string;
|
||||
prefix: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
-6
@@ -1,6 +0,0 @@
|
||||
export declare type ResponseStatsOrgnisation = {
|
||||
id: number;
|
||||
name: string;
|
||||
distance: number;
|
||||
donationAmount: number;
|
||||
};
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-10
@@ -1,10 +0,0 @@
|
||||
import type { RunnerGroup } from './RunnerGroup';
|
||||
export declare type ResponseStatsRunner = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename: string;
|
||||
lastname: string;
|
||||
distance: number;
|
||||
donationAmount: number;
|
||||
group: RunnerGroup;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-8
@@ -1,8 +0,0 @@
|
||||
import type { RunnerGroup } from './RunnerGroup';
|
||||
export declare type ResponseStatsTeam = {
|
||||
id: number;
|
||||
name: string;
|
||||
distance: number;
|
||||
donationAmount: number;
|
||||
parent: RunnerGroup;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
export declare type ResponseTrack = {
|
||||
id: number;
|
||||
name: string;
|
||||
distance: number;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-11
@@ -1,11 +0,0 @@
|
||||
export declare type Runner = {
|
||||
group: string;
|
||||
distance: number;
|
||||
distanceDonationAmount: number;
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-6
@@ -1,6 +0,0 @@
|
||||
export declare type RunnerCard = {
|
||||
id: number;
|
||||
runner?: any;
|
||||
code: string;
|
||||
enabled: boolean;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
-7
@@ -1,7 +0,0 @@
|
||||
export declare type RunnerGroup = {
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: any;
|
||||
distance: number;
|
||||
distanceDonationAmount: number;
|
||||
};
|
||||
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user