Initial commit for the js version
This commit is contained in:
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
export declare type Address = {
|
||||
id: number;
|
||||
description?: string;
|
||||
address1: string;
|
||||
address2?: string;
|
||||
postalcode: string;
|
||||
city: string;
|
||||
country: string;
|
||||
};
|
||||
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 AddressNotFoundError = {
|
||||
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 });
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export declare type AddressWrongTypeError = {
|
||||
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
+6
@@ -0,0 +1,6 @@
|
||||
export declare type Auth = {
|
||||
access_token: string;
|
||||
refresh_token: string;
|
||||
access_token_expires_at: number;
|
||||
refresh_token_expires_at: 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 CreateAuth = {
|
||||
username?: string;
|
||||
password: string;
|
||||
email?: string;
|
||||
};
|
||||
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 CreateParticipant = {
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
export declare type CreateRunner = {
|
||||
group: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
};
|
||||
Vendored
+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 CreateRunnerGroup = {
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
export declare type CreateRunnerOrganisation = {
|
||||
address?: number;
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
+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 CreateRunnerTeam = {
|
||||
parentGroup: number;
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
Vendored
+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 CreateTrack = {
|
||||
name: string;
|
||||
distance: number;
|
||||
};
|
||||
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 CreateUser = {
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
username?: string;
|
||||
email?: string;
|
||||
phone?: string;
|
||||
password: string;
|
||||
groupId?: any;
|
||||
};
|
||||
Vendored
+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 CreateUserGroup = {
|
||||
name: string;
|
||||
description?: string;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
export declare type DistanceDonation = {
|
||||
runner: string;
|
||||
amountPerDistance: number;
|
||||
id: number;
|
||||
donor: string;
|
||||
};
|
||||
Vendored
+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 Donation = {
|
||||
id: number;
|
||||
donor: string;
|
||||
};
|
||||
Vendored
+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 ExpiredJWTError = {
|
||||
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
+9
@@ -0,0 +1,9 @@
|
||||
export declare type GroupContact = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
address?: any;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
};
|
||||
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 GroupContactNotFoundError = {
|
||||
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 GroupContactWrongTypeError = {
|
||||
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 GroupNameNeededError = {
|
||||
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
+3
@@ -0,0 +1,3 @@
|
||||
export declare type HandleLogout = {
|
||||
token?: string;
|
||||
};
|
||||
Vendored
+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 IllegalJWTError = {
|
||||
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 });
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export declare type InvalidCredentialsError = {
|
||||
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 JwtNotProvidedError = {
|
||||
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
+3
@@ -0,0 +1,3 @@
|
||||
export declare type Logout = {
|
||||
timestamp: string;
|
||||
};
|
||||
Vendored
+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 NoPermissionError = {
|
||||
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
+8
@@ -0,0 +1,8 @@
|
||||
export declare type Participant = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
};
|
||||
Vendored
+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 PasswordNeededError = {
|
||||
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
+5
@@ -0,0 +1,5 @@
|
||||
export declare type Permission = {
|
||||
id: number;
|
||||
target: string;
|
||||
action: string;
|
||||
};
|
||||
Vendored
+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 RefreshAuth = {
|
||||
token?: string;
|
||||
};
|
||||
Vendored
+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 RefreshTokenCountInvalidError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -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 ResponseEmpty = {
|
||||
response: string;
|
||||
};
|
||||
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 ResponseParticipant = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename: string;
|
||||
lastname: string;
|
||||
phone: string;
|
||||
email: string;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+11
@@ -0,0 +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;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
import type { GroupContact } from './GroupContact';
|
||||
export declare type ResponseRunnerGroup = {
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: GroupContact;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
+9
@@ -0,0 +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;
|
||||
};
|
||||
+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 @@
|
||||
import type { GroupContact } from './GroupContact';
|
||||
import type { RunnerOrganisation } from './RunnerOrganisation';
|
||||
export declare type ResponseRunnerTeam = {
|
||||
parentGroup: RunnerOrganisation;
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: GroupContact;
|
||||
};
|
||||
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 ResponseTrack = {
|
||||
id: number;
|
||||
name: string;
|
||||
distance: number;
|
||||
};
|
||||
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 Runner = {
|
||||
group: string;
|
||||
distance: number;
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
export declare type RunnerCard = {
|
||||
id: number;
|
||||
runner?: any;
|
||||
code: 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
+5
@@ -0,0 +1,5 @@
|
||||
export declare type RunnerGroup = {
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: any;
|
||||
};
|
||||
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 RunnerGroupNeededError = {
|
||||
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 RunnerGroupNotFoundError = {
|
||||
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 RunnerIdsNotMatchingError = {
|
||||
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 RunnerNotFoundError = {
|
||||
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
+6
@@ -0,0 +1,6 @@
|
||||
export declare type RunnerOrganisation = {
|
||||
address?: any;
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: any;
|
||||
};
|
||||
Vendored
+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 RunnerOrganisationHasRunnersError = {
|
||||
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 RunnerOrganisationHasTeamsError = {
|
||||
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 RunnerOrganisationIdsNotMatchingError = {
|
||||
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 RunnerOrganisationNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -0,0 +1,5 @@
|
||||
"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