chore: Fresh openapi spec
This commit is contained in:
3
dist/models/CreateAnonymousDonation.d.ts
vendored
Normal file
3
dist/models/CreateAnonymousDonation.d.ts
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export type CreateAnonymousDonation = {
|
||||
amount: number;
|
||||
};
|
||||
4
dist/models/CreateDistanceDonation.d.ts
vendored
4
dist/models/CreateDistanceDonation.d.ts
vendored
@@ -1,6 +1,6 @@
|
||||
export type CreateDistanceDonation = {
|
||||
donor: number;
|
||||
paidAmount: number;
|
||||
runner: number;
|
||||
amountPerDistance: number;
|
||||
donor: number;
|
||||
paidAmount?: number;
|
||||
};
|
||||
|
||||
4
dist/models/CreateDonation.d.ts
vendored
4
dist/models/CreateDonation.d.ts
vendored
@@ -1,4 +0,0 @@
|
||||
export type CreateDonation = {
|
||||
donor: number;
|
||||
paidAmount?: number;
|
||||
};
|
||||
4
dist/models/CreateFixedDonation.d.ts
vendored
4
dist/models/CreateFixedDonation.d.ts
vendored
@@ -1,5 +1,5 @@
|
||||
export type CreateFixedDonation = {
|
||||
amount: number;
|
||||
donor: number;
|
||||
paidAmount?: number;
|
||||
paidAmount: number;
|
||||
amount: number;
|
||||
};
|
||||
|
||||
1
dist/models/DistanceDonation.d.ts
vendored
1
dist/models/DistanceDonation.d.ts
vendored
@@ -2,6 +2,5 @@ export type DistanceDonation = {
|
||||
runner: string;
|
||||
amountPerDistance: number;
|
||||
id: number;
|
||||
donor: string;
|
||||
paidAmount: number;
|
||||
};
|
||||
|
||||
1
dist/models/Donation.d.ts
vendored
1
dist/models/Donation.d.ts
vendored
@@ -1,5 +1,4 @@
|
||||
export type Donation = {
|
||||
id: number;
|
||||
donor: string;
|
||||
paidAmount: number;
|
||||
};
|
||||
|
||||
1
dist/models/FixedDonation.d.ts
vendored
1
dist/models/FixedDonation.d.ts
vendored
@@ -2,6 +2,5 @@ export type FixedDonation = {
|
||||
_amount: number;
|
||||
amount: number;
|
||||
id: number;
|
||||
donor: string;
|
||||
paidAmount: number;
|
||||
};
|
||||
|
||||
5
dist/models/ResponseAnonymousDonation.d.ts
vendored
Normal file
5
dist/models/ResponseAnonymousDonation.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
export type ResponseAnonymousDonation = {
|
||||
id: number;
|
||||
amount: number;
|
||||
paidAmount: number;
|
||||
};
|
||||
5
dist/models/ResponseAnonymousDonation.js
vendored
Normal file
5
dist/models/ResponseAnonymousDonation.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