new lib version [CI SKIP]
This commit is contained in:
13
dist/models/Address.ts
vendored
Normal file
13
dist/models/Address.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type Address = {
|
||||
id: number;
|
||||
description?: string;
|
||||
address1: string;
|
||||
address2?: string;
|
||||
postalcode: string;
|
||||
city: string;
|
||||
country: string;
|
||||
}
|
||||
8
dist/models/AddressNotFoundError.ts
vendored
Normal file
8
dist/models/AddressNotFoundError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type AddressNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/AddressWrongTypeError.ts
vendored
Normal file
8
dist/models/AddressWrongTypeError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type AddressWrongTypeError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
10
dist/models/Auth.ts
vendored
Normal file
10
dist/models/Auth.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type Auth = {
|
||||
access_token: string;
|
||||
refresh_token: string;
|
||||
access_token_expires_at: number;
|
||||
refresh_token_expires_at: number;
|
||||
}
|
||||
9
dist/models/CreateAuth.ts
vendored
Normal file
9
dist/models/CreateAuth.ts
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type CreateAuth = {
|
||||
username?: string;
|
||||
password: string;
|
||||
email?: string;
|
||||
}
|
||||
12
dist/models/CreateParticipant.ts
vendored
Normal file
12
dist/models/CreateParticipant.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type CreateParticipant = {
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
}
|
||||
13
dist/models/CreateRunner.ts
vendored
Normal file
13
dist/models/CreateRunner.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type CreateRunner = {
|
||||
group: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
}
|
||||
8
dist/models/CreateRunnerGroup.ts
vendored
Normal file
8
dist/models/CreateRunnerGroup.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type CreateRunnerGroup = {
|
||||
name: string;
|
||||
contact?: number;
|
||||
}
|
||||
9
dist/models/CreateRunnerOrganisation.ts
vendored
Normal file
9
dist/models/CreateRunnerOrganisation.ts
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type CreateRunnerOrganisation = {
|
||||
address?: number;
|
||||
name: string;
|
||||
contact?: number;
|
||||
}
|
||||
9
dist/models/CreateRunnerTeam.ts
vendored
Normal file
9
dist/models/CreateRunnerTeam.ts
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type CreateRunnerTeam = {
|
||||
parentGroup: number;
|
||||
name: string;
|
||||
contact?: number;
|
||||
}
|
||||
8
dist/models/CreateTrack.ts
vendored
Normal file
8
dist/models/CreateTrack.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type CreateTrack = {
|
||||
name: string;
|
||||
distance: number;
|
||||
}
|
||||
14
dist/models/CreateUser.ts
vendored
Normal file
14
dist/models/CreateUser.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type CreateUser = {
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
username?: string;
|
||||
email?: string;
|
||||
phone?: string;
|
||||
password: string;
|
||||
groupId?: any;
|
||||
}
|
||||
8
dist/models/CreateUserGroup.ts
vendored
Normal file
8
dist/models/CreateUserGroup.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type CreateUserGroup = {
|
||||
name: string;
|
||||
description?: string;
|
||||
}
|
||||
10
dist/models/DistanceDonation.ts
vendored
Normal file
10
dist/models/DistanceDonation.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type DistanceDonation = {
|
||||
runner: string;
|
||||
amountPerDistance: number;
|
||||
id: number;
|
||||
donor: string;
|
||||
}
|
||||
8
dist/models/Donation.ts
vendored
Normal file
8
dist/models/Donation.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type Donation = {
|
||||
id: number;
|
||||
donor: string;
|
||||
}
|
||||
8
dist/models/ExpiredJWTError.ts
vendored
Normal file
8
dist/models/ExpiredJWTError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type ExpiredJWTError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
13
dist/models/GroupContact.ts
vendored
Normal file
13
dist/models/GroupContact.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type GroupContact = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
address?: any;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
}
|
||||
8
dist/models/GroupContactNotFoundError.ts
vendored
Normal file
8
dist/models/GroupContactNotFoundError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type GroupContactNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/GroupContactWrongTypeError.ts
vendored
Normal file
8
dist/models/GroupContactWrongTypeError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type GroupContactWrongTypeError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/GroupNameNeededError.ts
vendored
Normal file
8
dist/models/GroupNameNeededError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type GroupNameNeededError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
7
dist/models/HandleLogout.ts
vendored
Normal file
7
dist/models/HandleLogout.ts
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type HandleLogout = {
|
||||
token?: string;
|
||||
}
|
||||
8
dist/models/IllegalJWTError.ts
vendored
Normal file
8
dist/models/IllegalJWTError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type IllegalJWTError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/InvalidCredentialsError.ts
vendored
Normal file
8
dist/models/InvalidCredentialsError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type InvalidCredentialsError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/JwtNotProvidedError.ts
vendored
Normal file
8
dist/models/JwtNotProvidedError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type JwtNotProvidedError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
7
dist/models/Logout.ts
vendored
Normal file
7
dist/models/Logout.ts
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type Logout = {
|
||||
timestamp: string;
|
||||
}
|
||||
8
dist/models/NoPermissionError.ts
vendored
Normal file
8
dist/models/NoPermissionError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type NoPermissionError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
12
dist/models/Participant.ts
vendored
Normal file
12
dist/models/Participant.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type Participant = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
}
|
||||
8
dist/models/PasswordNeededError.ts
vendored
Normal file
8
dist/models/PasswordNeededError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type PasswordNeededError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
9
dist/models/Permission.ts
vendored
Normal file
9
dist/models/Permission.ts
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type Permission = {
|
||||
id: number;
|
||||
target: string;
|
||||
action: string;
|
||||
}
|
||||
7
dist/models/RefreshAuth.ts
vendored
Normal file
7
dist/models/RefreshAuth.ts
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RefreshAuth = {
|
||||
token?: string;
|
||||
}
|
||||
8
dist/models/RefreshTokenCountInvalidError.ts
vendored
Normal file
8
dist/models/RefreshTokenCountInvalidError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RefreshTokenCountInvalidError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
7
dist/models/ResponseEmpty.ts
vendored
Normal file
7
dist/models/ResponseEmpty.ts
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type ResponseEmpty = {
|
||||
response: string;
|
||||
}
|
||||
12
dist/models/ResponseParticipant.ts
vendored
Normal file
12
dist/models/ResponseParticipant.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type ResponseParticipant = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename: string;
|
||||
lastname: string;
|
||||
phone: string;
|
||||
email: string;
|
||||
}
|
||||
16
dist/models/ResponseRunner.ts
vendored
Normal file
16
dist/models/ResponseRunner.ts
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { RunnerGroup } from './RunnerGroup';
|
||||
|
||||
export type ResponseRunner = {
|
||||
distance: number;
|
||||
group: RunnerGroup;
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename: string;
|
||||
lastname: string;
|
||||
phone: string;
|
||||
email: string;
|
||||
}
|
||||
11
dist/models/ResponseRunnerGroup.ts
vendored
Normal file
11
dist/models/ResponseRunnerGroup.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { GroupContact } from './GroupContact';
|
||||
|
||||
export type ResponseRunnerGroup = {
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: GroupContact;
|
||||
}
|
||||
14
dist/models/ResponseRunnerOrganisation.ts
vendored
Normal file
14
dist/models/ResponseRunnerOrganisation.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { Address } from './Address';
|
||||
import type { GroupContact } from './GroupContact';
|
||||
|
||||
export type ResponseRunnerOrganisation = {
|
||||
address: Address;
|
||||
teams: Array<any>;
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: GroupContact;
|
||||
}
|
||||
13
dist/models/ResponseRunnerTeam.ts
vendored
Normal file
13
dist/models/ResponseRunnerTeam.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { GroupContact } from './GroupContact';
|
||||
import type { RunnerOrganisation } from './RunnerOrganisation';
|
||||
|
||||
export type ResponseRunnerTeam = {
|
||||
parentGroup: RunnerOrganisation;
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: GroupContact;
|
||||
}
|
||||
9
dist/models/ResponseTrack.ts
vendored
Normal file
9
dist/models/ResponseTrack.ts
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type ResponseTrack = {
|
||||
id: number;
|
||||
name: string;
|
||||
distance: number;
|
||||
}
|
||||
14
dist/models/Runner.ts
vendored
Normal file
14
dist/models/Runner.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type Runner = {
|
||||
group: string;
|
||||
distance: number;
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
}
|
||||
10
dist/models/RunnerCard.ts
vendored
Normal file
10
dist/models/RunnerCard.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerCard = {
|
||||
id: number;
|
||||
runner?: any;
|
||||
code: string;
|
||||
enabled: boolean;
|
||||
}
|
||||
9
dist/models/RunnerGroup.ts
vendored
Normal file
9
dist/models/RunnerGroup.ts
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerGroup = {
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: any;
|
||||
}
|
||||
8
dist/models/RunnerGroupNeededError.ts
vendored
Normal file
8
dist/models/RunnerGroupNeededError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerGroupNeededError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/RunnerGroupNotFoundError.ts
vendored
Normal file
8
dist/models/RunnerGroupNotFoundError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerGroupNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/RunnerIdsNotMatchingError.ts
vendored
Normal file
8
dist/models/RunnerIdsNotMatchingError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerIdsNotMatchingError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/RunnerNotFoundError.ts
vendored
Normal file
8
dist/models/RunnerNotFoundError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
10
dist/models/RunnerOrganisation.ts
vendored
Normal file
10
dist/models/RunnerOrganisation.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerOrganisation = {
|
||||
address?: any;
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: any;
|
||||
}
|
||||
8
dist/models/RunnerOrganisationHasRunnersError.ts
vendored
Normal file
8
dist/models/RunnerOrganisationHasRunnersError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerOrganisationHasRunnersError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/RunnerOrganisationHasTeamsError.ts
vendored
Normal file
8
dist/models/RunnerOrganisationHasTeamsError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerOrganisationHasTeamsError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/RunnerOrganisationIdsNotMatchingError.ts
vendored
Normal file
8
dist/models/RunnerOrganisationIdsNotMatchingError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerOrganisationIdsNotMatchingError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/RunnerOrganisationNotFoundError.ts
vendored
Normal file
8
dist/models/RunnerOrganisationNotFoundError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerOrganisationNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/RunnerOrganisationWrongTypeError.ts
vendored
Normal file
8
dist/models/RunnerOrganisationWrongTypeError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerOrganisationWrongTypeError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
10
dist/models/RunnerTeam.ts
vendored
Normal file
10
dist/models/RunnerTeam.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerTeam = {
|
||||
parentGroup: string;
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: any;
|
||||
}
|
||||
8
dist/models/RunnerTeamHasRunnersError.ts
vendored
Normal file
8
dist/models/RunnerTeamHasRunnersError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerTeamHasRunnersError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/RunnerTeamIdsNotMatchingError.ts
vendored
Normal file
8
dist/models/RunnerTeamIdsNotMatchingError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerTeamIdsNotMatchingError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/RunnerTeamNeedsParentError.ts
vendored
Normal file
8
dist/models/RunnerTeamNeedsParentError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerTeamNeedsParentError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/RunnerTeamNotFoundError.ts
vendored
Normal file
8
dist/models/RunnerTeamNotFoundError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type RunnerTeamNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
10
dist/models/Scan.ts
vendored
Normal file
10
dist/models/Scan.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type Scan = {
|
||||
id: number;
|
||||
runner: string;
|
||||
distance: number;
|
||||
valid: boolean;
|
||||
}
|
||||
11
dist/models/ScanStation.ts
vendored
Normal file
11
dist/models/ScanStation.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type ScanStation = {
|
||||
id: number;
|
||||
description?: string;
|
||||
track: string;
|
||||
key: string;
|
||||
enabled: boolean;
|
||||
}
|
||||
9
dist/models/Track.ts
vendored
Normal file
9
dist/models/Track.ts
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type Track = {
|
||||
id: number;
|
||||
name: string;
|
||||
distance: number;
|
||||
}
|
||||
8
dist/models/TrackIdsNotMatchingError.ts
vendored
Normal file
8
dist/models/TrackIdsNotMatchingError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type TrackIdsNotMatchingError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/TrackNotFoundError.ts
vendored
Normal file
8
dist/models/TrackNotFoundError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type TrackNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
14
dist/models/TrackScan.ts
vendored
Normal file
14
dist/models/TrackScan.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type TrackScan = {
|
||||
track: string;
|
||||
card: string;
|
||||
station: string;
|
||||
distance: number;
|
||||
timestamp: string;
|
||||
id: number;
|
||||
runner: string;
|
||||
valid: boolean;
|
||||
}
|
||||
16
dist/models/UpdateRunner.ts
vendored
Normal file
16
dist/models/UpdateRunner.ts
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { RunnerGroup } from './RunnerGroup';
|
||||
|
||||
export type UpdateRunner = {
|
||||
id: number;
|
||||
group: RunnerGroup;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
}
|
||||
12
dist/models/UpdateRunnerTeam.ts
vendored
Normal file
12
dist/models/UpdateRunnerTeam.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { RunnerOrganisation } from './RunnerOrganisation';
|
||||
|
||||
export type UpdateRunnerTeam = {
|
||||
id: number;
|
||||
parentGroup: RunnerOrganisation;
|
||||
name: string;
|
||||
contact?: number;
|
||||
}
|
||||
21
dist/models/User.ts
vendored
Normal file
21
dist/models/User.ts
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type User = {
|
||||
id: number;
|
||||
uuid: string;
|
||||
email: string;
|
||||
phone?: string;
|
||||
username: string;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
password: string;
|
||||
permissions?: any;
|
||||
groups?: any;
|
||||
enabled: boolean;
|
||||
refreshTokenCount: number;
|
||||
profilePic?: string;
|
||||
actions?: any;
|
||||
}
|
||||
10
dist/models/UserAction.ts
vendored
Normal file
10
dist/models/UserAction.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type UserAction = {
|
||||
id: number;
|
||||
target: string;
|
||||
action: string;
|
||||
changed?: string;
|
||||
}
|
||||
9
dist/models/UserGroup.ts
vendored
Normal file
9
dist/models/UserGroup.ts
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type UserGroup = {
|
||||
id: number;
|
||||
name: string;
|
||||
description?: string;
|
||||
}
|
||||
8
dist/models/UserGroupIdsNotMatchingError.ts
vendored
Normal file
8
dist/models/UserGroupIdsNotMatchingError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type UserGroupIdsNotMatchingError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/UserGroupNotFoundError.ts
vendored
Normal file
8
dist/models/UserGroupNotFoundError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type UserGroupNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/UserIdsNotMatchingError.ts
vendored
Normal file
8
dist/models/UserIdsNotMatchingError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type UserIdsNotMatchingError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/UserNonexistantOrRefreshtokenInvalidError.ts
vendored
Normal file
8
dist/models/UserNonexistantOrRefreshtokenInvalidError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type UserNonexistantOrRefreshtokenInvalidError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/UserNotFoundError.ts
vendored
Normal file
8
dist/models/UserNotFoundError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type UserNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/UserNotFoundOrRefreshTokenCountInvalidError.ts
vendored
Normal file
8
dist/models/UserNotFoundOrRefreshTokenCountInvalidError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type UserNotFoundOrRefreshTokenCountInvalidError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
8
dist/models/UsernameOrEmailNeededError.ts
vendored
Normal file
8
dist/models/UsernameOrEmailNeededError.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type UsernameOrEmailNeededError = {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
Reference in New Issue
Block a user