🚀New lib version v0.11.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:
1
dist/models/CreateDistanceDonation.d.ts
vendored
1
dist/models/CreateDistanceDonation.d.ts
vendored
@@ -2,4 +2,5 @@ export declare type CreateDistanceDonation = {
|
||||
runner: number;
|
||||
amountPerDistance: number;
|
||||
donor: number;
|
||||
paidAmount?: number;
|
||||
};
|
||||
|
||||
1
dist/models/CreateDonation.d.ts
vendored
1
dist/models/CreateDonation.d.ts
vendored
@@ -1,3 +1,4 @@
|
||||
export declare type CreateDonation = {
|
||||
donor: number;
|
||||
paidAmount?: number;
|
||||
};
|
||||
|
||||
1
dist/models/CreateFixedDonation.d.ts
vendored
1
dist/models/CreateFixedDonation.d.ts
vendored
@@ -1,4 +1,5 @@
|
||||
export declare type CreateFixedDonation = {
|
||||
amount: number;
|
||||
donor: number;
|
||||
paidAmount?: number;
|
||||
};
|
||||
|
||||
1
dist/models/DistanceDonation.d.ts
vendored
1
dist/models/DistanceDonation.d.ts
vendored
@@ -3,4 +3,5 @@ export declare type DistanceDonation = {
|
||||
amountPerDistance: number;
|
||||
id: number;
|
||||
donor: string;
|
||||
paidAmount: number;
|
||||
};
|
||||
|
||||
1
dist/models/Donation.d.ts
vendored
1
dist/models/Donation.d.ts
vendored
@@ -1,4 +1,5 @@
|
||||
export declare type Donation = {
|
||||
id: number;
|
||||
donor: string;
|
||||
paidAmount: number;
|
||||
};
|
||||
|
||||
1
dist/models/Donor.d.ts
vendored
1
dist/models/Donor.d.ts
vendored
@@ -1,6 +1,7 @@
|
||||
export declare type Donor = {
|
||||
receiptNeeded: boolean;
|
||||
donationAmount: number;
|
||||
paidDonationAmount: number;
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
|
||||
1
dist/models/FixedDonation.d.ts
vendored
1
dist/models/FixedDonation.d.ts
vendored
@@ -3,4 +3,5 @@ export declare type FixedDonation = {
|
||||
amount: number;
|
||||
id: number;
|
||||
donor: string;
|
||||
paidAmount: number;
|
||||
};
|
||||
|
||||
1
dist/models/ResponseDistanceDonation.d.ts
vendored
1
dist/models/ResponseDistanceDonation.d.ts
vendored
@@ -4,4 +4,5 @@ export declare type ResponseDistanceDonation = {
|
||||
id: number;
|
||||
donor: string;
|
||||
amount: number;
|
||||
paidAmount: number;
|
||||
};
|
||||
|
||||
1
dist/models/ResponseDonation.d.ts
vendored
1
dist/models/ResponseDonation.d.ts
vendored
@@ -2,4 +2,5 @@ export declare type ResponseDonation = {
|
||||
id: number;
|
||||
donor: string;
|
||||
amount: number;
|
||||
paidAmount: number;
|
||||
};
|
||||
|
||||
1
dist/models/ResponseDonor.d.ts
vendored
1
dist/models/ResponseDonor.d.ts
vendored
@@ -1,6 +1,7 @@
|
||||
export declare type ResponseDonor = {
|
||||
receiptNeeded: boolean;
|
||||
donationAmount: number;
|
||||
paidDonationAmount: number;
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename: string;
|
||||
|
||||
1
dist/models/ResponseStatsRunner.d.ts
vendored
1
dist/models/ResponseStatsRunner.d.ts
vendored
@@ -5,5 +5,6 @@ export declare type ResponseStatsRunner = {
|
||||
lastname: string;
|
||||
distance: number;
|
||||
donationAmount: number;
|
||||
minLaptime?: number;
|
||||
group: any;
|
||||
};
|
||||
|
||||
1
dist/models/UpdateDistanceDonation.d.ts
vendored
1
dist/models/UpdateDistanceDonation.d.ts
vendored
@@ -3,4 +3,5 @@ export declare type UpdateDistanceDonation = {
|
||||
amountPerDistance: number;
|
||||
id: number;
|
||||
donor: number;
|
||||
paidAmount?: number;
|
||||
};
|
||||
|
||||
1
dist/models/UpdateDonation.d.ts
vendored
1
dist/models/UpdateDonation.d.ts
vendored
@@ -1,4 +1,5 @@
|
||||
export declare type UpdateDonation = {
|
||||
id: number;
|
||||
donor: number;
|
||||
paidAmount?: number;
|
||||
};
|
||||
|
||||
1
dist/models/UpdateFixedDonation.d.ts
vendored
1
dist/models/UpdateFixedDonation.d.ts
vendored
@@ -2,4 +2,5 @@ export declare type UpdateFixedDonation = {
|
||||
amount: number;
|
||||
id: number;
|
||||
donor: number;
|
||||
paidAmount?: number;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user