🚀New lib version v0.3.0 [CI SKIP]
All checks were successful
continuous-integration/drone Build is passing
All checks were successful
continuous-integration/drone Build is passing
This commit is contained in:
2
dist/models/CreatePermission.d.ts
vendored
2
dist/models/CreatePermission.d.ts
vendored
@@ -6,7 +6,7 @@ export declare type CreatePermission = {
|
||||
export declare namespace CreatePermission {
|
||||
enum target {
|
||||
RUNNER = "RUNNER",
|
||||
ORGANISATION = "ORGANISATION",
|
||||
ORGANIZATION = "ORGANIZATION",
|
||||
TEAM = "TEAM",
|
||||
TRACK = "TRACK",
|
||||
USER = "USER",
|
||||
|
||||
2
dist/models/CreatePermission.js
vendored
2
dist/models/CreatePermission.js
vendored
@@ -9,7 +9,7 @@ var CreatePermission;
|
||||
let target;
|
||||
(function (target) {
|
||||
target["RUNNER"] = "RUNNER";
|
||||
target["ORGANISATION"] = "ORGANISATION";
|
||||
target["ORGANIZATION"] = "ORGANIZATION";
|
||||
target["TEAM"] = "TEAM";
|
||||
target["TRACK"] = "TRACK";
|
||||
target["USER"] = "USER";
|
||||
|
||||
5
dist/models/CreateRunnerOrganisation.d.ts
vendored
5
dist/models/CreateRunnerOrganisation.d.ts
vendored
@@ -1,5 +0,0 @@
|
||||
export declare type CreateRunnerOrganisation = {
|
||||
address?: any;
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
6
dist/models/CreateRunnerOrganization.d.ts
vendored
Normal file
6
dist/models/CreateRunnerOrganization.d.ts
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
export declare type CreateRunnerOrganization = {
|
||||
address?: any;
|
||||
registrationEnabled?: boolean;
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
8
dist/models/CreateSelfServiceCitizenRunner.d.ts
vendored
Normal file
8
dist/models/CreateSelfServiceCitizenRunner.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
export declare type CreateSelfServiceCitizenRunner = {
|
||||
email?: string;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
address?: any;
|
||||
};
|
||||
9
dist/models/CreateSelfServiceRunner.d.ts
vendored
Normal file
9
dist/models/CreateSelfServiceRunner.d.ts
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
export declare type CreateSelfServiceRunner = {
|
||||
team?: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: any;
|
||||
};
|
||||
2
dist/models/Permission.d.ts
vendored
2
dist/models/Permission.d.ts
vendored
@@ -6,7 +6,7 @@ export declare type Permission = {
|
||||
export declare namespace Permission {
|
||||
enum target {
|
||||
RUNNER = "RUNNER",
|
||||
ORGANISATION = "ORGANISATION",
|
||||
ORGANIZATION = "ORGANIZATION",
|
||||
TEAM = "TEAM",
|
||||
TRACK = "TRACK",
|
||||
USER = "USER",
|
||||
|
||||
2
dist/models/Permission.js
vendored
2
dist/models/Permission.js
vendored
@@ -9,7 +9,7 @@ var Permission;
|
||||
let target;
|
||||
(function (target) {
|
||||
target["RUNNER"] = "RUNNER";
|
||||
target["ORGANISATION"] = "ORGANISATION";
|
||||
target["ORGANIZATION"] = "ORGANIZATION";
|
||||
target["TEAM"] = "TEAM";
|
||||
target["TRACK"] = "TRACK";
|
||||
target["USER"] = "USER";
|
||||
|
||||
2
dist/models/ResponsePermission.d.ts
vendored
2
dist/models/ResponsePermission.d.ts
vendored
@@ -7,7 +7,7 @@ export declare type ResponsePermission = {
|
||||
export declare namespace ResponsePermission {
|
||||
enum target {
|
||||
RUNNER = "RUNNER",
|
||||
ORGANISATION = "ORGANISATION",
|
||||
ORGANIZATION = "ORGANIZATION",
|
||||
TEAM = "TEAM",
|
||||
TRACK = "TRACK",
|
||||
USER = "USER",
|
||||
|
||||
2
dist/models/ResponsePermission.js
vendored
2
dist/models/ResponsePermission.js
vendored
@@ -9,7 +9,7 @@ var ResponsePermission;
|
||||
let target;
|
||||
(function (target) {
|
||||
target["RUNNER"] = "RUNNER";
|
||||
target["ORGANISATION"] = "ORGANISATION";
|
||||
target["ORGANIZATION"] = "ORGANIZATION";
|
||||
target["TEAM"] = "TEAM";
|
||||
target["TRACK"] = "TRACK";
|
||||
target["USER"] = "USER";
|
||||
|
||||
7
dist/models/ResponseRunnerOrganisation.d.ts
vendored
7
dist/models/ResponseRunnerOrganisation.d.ts
vendored
@@ -1,7 +0,0 @@
|
||||
export declare type ResponseRunnerOrganisation = {
|
||||
address?: any;
|
||||
teams: Array<any>;
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: any;
|
||||
};
|
||||
9
dist/models/ResponseRunnerOrganization.d.ts
vendored
Normal file
9
dist/models/ResponseRunnerOrganization.d.ts
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
export declare type ResponseRunnerOrganization = {
|
||||
address?: any;
|
||||
teams: Array<any>;
|
||||
registrationKey?: string;
|
||||
registrationEnabled?: boolean;
|
||||
id: number;
|
||||
name: string;
|
||||
contact?: any;
|
||||
};
|
||||
1
dist/models/ResponseSelfServiceRunner.d.ts
vendored
1
dist/models/ResponseSelfServiceRunner.d.ts
vendored
@@ -3,6 +3,7 @@ export declare type ResponseSelfServiceRunner = {
|
||||
donationAmount: number;
|
||||
group: string;
|
||||
donations: string;
|
||||
token?: string;
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename: string;
|
||||
|
||||
4
dist/models/RunnerEmailNeededError.d.ts
vendored
Normal file
4
dist/models/RunnerEmailNeededError.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
export declare type RunnerEmailNeededError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -1,4 +0,0 @@
|
||||
export declare type RunnerOrganisationHasRunnersError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -1,4 +0,0 @@
|
||||
export declare type RunnerOrganisationHasTeamsError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -1,4 +0,0 @@
|
||||
export declare type RunnerOrganisationIdsNotMatchingError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -1,4 +0,0 @@
|
||||
export declare type RunnerOrganisationNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -1,4 +0,0 @@
|
||||
export declare type RunnerOrganisationWrongTypeError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -1,5 +1,6 @@
|
||||
export declare type RunnerOrganisation = {
|
||||
export declare type RunnerOrganization = {
|
||||
address?: any;
|
||||
key?: string;
|
||||
distance: number;
|
||||
distanceDonationAmount: number;
|
||||
id: number;
|
||||
4
dist/models/RunnerOrganizationHasRunnersError.d.ts
vendored
Normal file
4
dist/models/RunnerOrganizationHasRunnersError.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
export declare type RunnerOrganizationHasRunnersError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
4
dist/models/RunnerOrganizationHasTeamsError.d.ts
vendored
Normal file
4
dist/models/RunnerOrganizationHasTeamsError.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
export declare type RunnerOrganizationHasTeamsError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
4
dist/models/RunnerOrganizationIdsNotMatchingError.d.ts
vendored
Normal file
4
dist/models/RunnerOrganizationIdsNotMatchingError.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
export declare type RunnerOrganizationIdsNotMatchingError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
4
dist/models/RunnerOrganizationNotFoundError.d.ts
vendored
Normal file
4
dist/models/RunnerOrganizationNotFoundError.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
export declare type RunnerOrganizationNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
5
dist/models/RunnerOrganizationNotFoundError.js
vendored
Normal file
5
dist/models/RunnerOrganizationNotFoundError.js
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
4
dist/models/RunnerOrganizationWrongTypeError.d.ts
vendored
Normal file
4
dist/models/RunnerOrganizationWrongTypeError.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
export declare type RunnerOrganizationWrongTypeError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
5
dist/models/RunnerOrganizationWrongTypeError.js
vendored
Normal file
5
dist/models/RunnerOrganizationWrongTypeError.js
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
6
dist/models/UpdateRunnerOrganisation.d.ts
vendored
6
dist/models/UpdateRunnerOrganisation.d.ts
vendored
@@ -1,6 +0,0 @@
|
||||
export declare type UpdateRunnerOrganisation = {
|
||||
id: number;
|
||||
address?: any;
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
7
dist/models/UpdateRunnerOrganization.d.ts
vendored
Normal file
7
dist/models/UpdateRunnerOrganization.d.ts
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
export declare type UpdateRunnerOrganization = {
|
||||
id: number;
|
||||
address?: any;
|
||||
registrationEnabled?: boolean;
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
5
dist/models/UpdateRunnerOrganization.js
vendored
Normal file
5
dist/models/UpdateRunnerOrganization.js
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Reference in New Issue
Block a user