new lib version [CI SKIP]
This commit is contained in:
Vendored
+9
-9
@@ -1,9 +1,9 @@
|
||||
export declare type Address = {
|
||||
id: number;
|
||||
description?: string;
|
||||
address1: string;
|
||||
address2?: string;
|
||||
postalcode: string;
|
||||
city: string;
|
||||
country: string;
|
||||
};
|
||||
export declare type Address = {
|
||||
id: number;
|
||||
description?: string;
|
||||
address1: string;
|
||||
address2?: string;
|
||||
postalcode: string;
|
||||
city: string;
|
||||
country: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type AddressNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
export declare type AddressNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type AddressWrongTypeError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
export declare type AddressWrongTypeError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+6
-6
@@ -1,6 +1,6 @@
|
||||
export declare type Auth = {
|
||||
access_token: string;
|
||||
refresh_token: string;
|
||||
access_token_expires_at: number;
|
||||
refresh_token_expires_at: number;
|
||||
};
|
||||
export declare type Auth = {
|
||||
access_token: string;
|
||||
refresh_token: string;
|
||||
access_token_expires_at: number;
|
||||
refresh_token_expires_at: number;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
export declare type CreateAuth = {
|
||||
username?: string;
|
||||
password: string;
|
||||
email?: string;
|
||||
};
|
||||
export declare type CreateAuth = {
|
||||
username?: string;
|
||||
email?: string;
|
||||
password: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+8
-8
@@ -1,8 +1,8 @@
|
||||
export declare type CreateParticipant = {
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
};
|
||||
export declare type CreateParticipant = {
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+24
@@ -0,0 +1,24 @@
|
||||
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
@@ -0,0 +1,28 @@
|
||||
"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
@@ -0,0 +1,4 @@
|
||||
export declare type CreateResetToken = {
|
||||
username?: string;
|
||||
email?: string;
|
||||
};
|
||||
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+9
-9
@@ -1,9 +1,9 @@
|
||||
export declare type CreateRunner = {
|
||||
group: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
};
|
||||
export declare type CreateRunner = {
|
||||
group: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type CreateRunnerGroup = {
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
export declare type CreateRunnerGroup = {
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
+5
-5
@@ -1,5 +1,5 @@
|
||||
export declare type CreateRunnerOrganisation = {
|
||||
address?: number;
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
export declare type CreateRunnerOrganisation = {
|
||||
address?: number;
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
|
||||
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
export declare type CreateRunnerTeam = {
|
||||
parentGroup: number;
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
export declare type CreateRunnerTeam = {
|
||||
parentGroup: number;
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
export declare type CreateStatsClient = {
|
||||
description?: string;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type CreateTrack = {
|
||||
name: string;
|
||||
distance: number;
|
||||
};
|
||||
export declare type CreateTrack = {
|
||||
name: string;
|
||||
distance: number;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+11
-10
@@ -1,10 +1,11 @@
|
||||
export declare type CreateUser = {
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
username?: string;
|
||||
email?: string;
|
||||
phone?: string;
|
||||
password: string;
|
||||
groupId?: any;
|
||||
};
|
||||
export declare type CreateUser = {
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
username?: string;
|
||||
email?: string;
|
||||
phone?: string;
|
||||
password: string;
|
||||
enabled?: boolean;
|
||||
groups?: any;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type CreateUserGroup = {
|
||||
name: string;
|
||||
description?: string;
|
||||
};
|
||||
export declare type CreateUserGroup = {
|
||||
name: string;
|
||||
description?: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+6
-6
@@ -1,6 +1,6 @@
|
||||
export declare type DistanceDonation = {
|
||||
runner: string;
|
||||
amountPerDistance: number;
|
||||
id: number;
|
||||
donor: string;
|
||||
};
|
||||
export declare type DistanceDonation = {
|
||||
runner: string;
|
||||
amountPerDistance: number;
|
||||
id: number;
|
||||
donor: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type Donation = {
|
||||
id: number;
|
||||
donor: string;
|
||||
};
|
||||
export declare type Donation = {
|
||||
id: number;
|
||||
donor: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
-4
@@ -1,4 +0,0 @@
|
||||
export declare type ExpiredJWTError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
Vendored
+9
-9
@@ -1,9 +1,9 @@
|
||||
export declare type GroupContact = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
address?: any;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
};
|
||||
export declare type GroupContact = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
address?: any;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type GroupContactNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
export declare type GroupContactNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
|
||||
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type GroupContactWrongTypeError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
export declare type GroupContactWrongTypeError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
|
||||
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type GroupNameNeededError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
export declare type GroupNameNeededError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+3
-3
@@ -1,3 +1,3 @@
|
||||
export declare type HandleLogout = {
|
||||
token?: string;
|
||||
};
|
||||
export declare type HandleLogout = {
|
||||
token?: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type IllegalJWTError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
export declare type IllegalJWTError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
export declare type ImportRunner = {
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
team?: string;
|
||||
class?: string;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type InvalidCredentialsError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
export declare type InvalidCredentialsError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
|
||||
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type JwtNotProvidedError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
export declare type JwtNotProvidedError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
export declare type JwtUser = {
|
||||
id: number;
|
||||
uuid: string;
|
||||
email?: string;
|
||||
username?: string;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
enabled: boolean;
|
||||
refreshTokenCount: number;
|
||||
profilePic?: string;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+3
-3
@@ -1,3 +1,3 @@
|
||||
export declare type Logout = {
|
||||
timestamp: string;
|
||||
};
|
||||
export declare type Logout = {
|
||||
timestamp: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type NoPermissionError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
export declare type NoPermissionError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+8
-8
@@ -1,8 +1,8 @@
|
||||
export declare type Participant = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
};
|
||||
export declare type Participant = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type PasswordNeededError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
export declare type PasswordNeededError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+24
-5
@@ -1,5 +1,24 @@
|
||||
export declare type Permission = {
|
||||
id: number;
|
||||
target: string;
|
||||
action: string;
|
||||
};
|
||||
export declare type Permission = {
|
||||
id: number;
|
||||
target: Permission.target;
|
||||
action: Permission.action;
|
||||
};
|
||||
export declare namespace Permission {
|
||||
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
-5
@@ -1,5 +1,28 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.Permission = void 0;
|
||||
var Permission;
|
||||
(function (Permission) {
|
||||
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 = Permission.target || (Permission.target = {}));
|
||||
let action;
|
||||
(function (action) {
|
||||
action["GET"] = "GET";
|
||||
action["CREATE"] = "CREATE";
|
||||
action["UPDATE"] = "UPDATE";
|
||||
action["DELETE"] = "DELETE";
|
||||
action["IMPORT"] = "IMPORT";
|
||||
})(action = Permission.action || (Permission.action = {}));
|
||||
})(Permission = exports.Permission || (exports.Permission = {}));
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
export declare type PermissionIdsNotMatchingError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -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 PermissionNeedsPrincipalError = {
|
||||
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 PermissionNotFoundError = {
|
||||
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
+3
@@ -0,0 +1,3 @@
|
||||
export declare type Principal = {
|
||||
id: number;
|
||||
};
|
||||
Vendored
+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 PrincipalNotFoundError = {
|
||||
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 PrincipalWrongTypeError = {
|
||||
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
+3
-3
@@ -1,3 +1,3 @@
|
||||
export declare type RefreshAuth = {
|
||||
token?: string;
|
||||
};
|
||||
export declare type RefreshAuth = {
|
||||
token?: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
+4
-4
@@ -1,4 +1,4 @@
|
||||
export declare type RefreshTokenCountInvalidError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
export declare type RefreshTokenCountInvalidError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
|
||||
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export declare type ResetAlreadyRequestedError = {
|
||||
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 ResetPassword = {
|
||||
resetToken?: string;
|
||||
password: string;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+3
-3
@@ -1,3 +1,3 @@
|
||||
export declare type ResponseEmpty = {
|
||||
response: string;
|
||||
};
|
||||
export declare type ResponseEmpty = {
|
||||
response: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+8
-8
@@ -1,8 +1,8 @@
|
||||
export declare type ResponseParticipant = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename: string;
|
||||
lastname: string;
|
||||
phone: string;
|
||||
email: string;
|
||||
};
|
||||
export declare type ResponseParticipant = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename: string;
|
||||
lastname: string;
|
||||
phone: string;
|
||||
email: string;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+26
@@ -0,0 +1,26 @@
|
||||
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
@@ -0,0 +1,28 @@
|
||||
"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
+3
@@ -0,0 +1,3 @@
|
||||
export declare type ResponsePrincipal = {
|
||||
id: number;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+11
-11
@@ -1,11 +1,11 @@
|
||||
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;
|
||||
};
|
||||
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
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
Vendored
+6
-6
@@ -1,6 +1,6 @@
|
||||
import type { GroupContact } from './GroupContact';
|
||||
export declare type ResponseRunnerGroup = {
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: GroupContact;
|
||||
};
|
||||
import type { GroupContact } from './GroupContact';
|
||||
export declare type ResponseRunnerGroup = {
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: GroupContact;
|
||||
};
|
||||
|
||||
Vendored
+5
-5
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
+9
-9
@@ -1,9 +1,9 @@
|
||||
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;
|
||||
};
|
||||
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;
|
||||
};
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user