This commit is contained in:
Vendored
+1
-3
@@ -1,8 +1,6 @@
|
||||
export declare type Address = {
|
||||
id: number;
|
||||
description?: string;
|
||||
address1: string;
|
||||
address2?: string;
|
||||
address2: string;
|
||||
postalcode: string;
|
||||
city: string;
|
||||
country: string;
|
||||
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export declare type AddressCityEmptyError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export declare type AddressCountryEmptyError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export declare type AddressFirstLineEmptyError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
-4
@@ -1,4 +0,0 @@
|
||||
export declare type AddressNotFoundError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -0,0 +1,4 @@
|
||||
export declare type AddressPostalCodeEmptyError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
+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 AddressPostalCodeInvalidError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
-4
@@ -1,4 +0,0 @@
|
||||
export declare type AddressWrongTypeError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
Vendored
+1
-1
@@ -5,5 +5,5 @@ export declare type CreateDonor = {
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
address?: any;
|
||||
};
|
||||
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
export declare type CreateGroupContact = {
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
address?: any;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
groups?: any;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+1
-1
@@ -4,5 +4,5 @@ export declare type CreateParticipant = {
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
address?: any;
|
||||
};
|
||||
|
||||
Vendored
+2
-1
@@ -17,7 +17,8 @@ export declare namespace CreatePermission {
|
||||
SCAN = "SCAN",
|
||||
STATION = "STATION",
|
||||
CARD = "CARD",
|
||||
DONATION = "DONATION"
|
||||
DONATION = "DONATION",
|
||||
CONTACT = "CONTACT"
|
||||
}
|
||||
enum action {
|
||||
GET = "GET",
|
||||
|
||||
Vendored
+1
@@ -21,6 +21,7 @@ var CreatePermission;
|
||||
target["STATION"] = "STATION";
|
||||
target["CARD"] = "CARD";
|
||||
target["DONATION"] = "DONATION";
|
||||
target["CONTACT"] = "CONTACT";
|
||||
})(target = CreatePermission.target || (CreatePermission.target = {}));
|
||||
let action;
|
||||
(function (action) {
|
||||
|
||||
Vendored
+1
-1
@@ -5,5 +5,5 @@ export declare type CreateRunner = {
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
address?: any;
|
||||
};
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
export declare type CreateRunnerOrganisation = {
|
||||
address?: number;
|
||||
address?: any;
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
|
||||
Vendored
-1
@@ -3,7 +3,6 @@ export declare type GroupContact = {
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
address?: any;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
};
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
export declare type GroupContactIdsNotMatchingError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
-4
@@ -1,4 +0,0 @@
|
||||
export declare type GroupContactWrongTypeError = {
|
||||
name: string;
|
||||
message: string;
|
||||
};
|
||||
Vendored
+2
-1
@@ -17,7 +17,8 @@ export declare namespace Permission {
|
||||
SCAN = "SCAN",
|
||||
STATION = "STATION",
|
||||
CARD = "CARD",
|
||||
DONATION = "DONATION"
|
||||
DONATION = "DONATION",
|
||||
CONTACT = "CONTACT"
|
||||
}
|
||||
enum action {
|
||||
GET = "GET",
|
||||
|
||||
Vendored
+1
@@ -21,6 +21,7 @@ var Permission;
|
||||
target["STATION"] = "STATION";
|
||||
target["CARD"] = "CARD";
|
||||
target["DONATION"] = "DONATION";
|
||||
target["CONTACT"] = "CONTACT";
|
||||
})(target = Permission.target || (Permission.target = {}));
|
||||
let action;
|
||||
(function (action) {
|
||||
|
||||
Vendored
+1
@@ -7,4 +7,5 @@ export declare type ResponseDonor = {
|
||||
lastname: string;
|
||||
phone: string;
|
||||
email: string;
|
||||
address?: any;
|
||||
};
|
||||
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
export declare type ResponseGroupContact = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename: string;
|
||||
lastname: string;
|
||||
phone: string;
|
||||
email: string;
|
||||
groups: any;
|
||||
address: any;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+1
@@ -5,4 +5,5 @@ export declare type ResponseParticipant = {
|
||||
lastname: string;
|
||||
phone: string;
|
||||
email: string;
|
||||
address?: any;
|
||||
};
|
||||
|
||||
Vendored
+2
-1
@@ -18,7 +18,8 @@ export declare namespace ResponsePermission {
|
||||
SCAN = "SCAN",
|
||||
STATION = "STATION",
|
||||
CARD = "CARD",
|
||||
DONATION = "DONATION"
|
||||
DONATION = "DONATION",
|
||||
CONTACT = "CONTACT"
|
||||
}
|
||||
enum action {
|
||||
GET = "GET",
|
||||
|
||||
Vendored
+1
@@ -21,6 +21,7 @@ var ResponsePermission;
|
||||
target["STATION"] = "STATION";
|
||||
target["CARD"] = "CARD";
|
||||
target["DONATION"] = "DONATION";
|
||||
target["CONTACT"] = "CONTACT";
|
||||
})(target = ResponsePermission.target || (ResponsePermission.target = {}));
|
||||
let action;
|
||||
(function (action) {
|
||||
|
||||
Vendored
+1
@@ -7,4 +7,5 @@ export declare type ResponseRunner = {
|
||||
lastname: string;
|
||||
phone: string;
|
||||
email: string;
|
||||
address?: any;
|
||||
};
|
||||
|
||||
Vendored
+1
-1
@@ -6,5 +6,5 @@ export declare type UpdateDonor = {
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
address?: any;
|
||||
};
|
||||
|
||||
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
export declare type UpdateGroupContact = {
|
||||
id: number;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
address?: any;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
groups?: any;
|
||||
};
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Vendored
+1
-1
@@ -6,5 +6,5 @@ export declare type UpdateRunner = {
|
||||
lastname: string;
|
||||
phone?: string;
|
||||
email?: string;
|
||||
address?: number;
|
||||
address?: any;
|
||||
};
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
export declare type UpdateRunnerOrganisation = {
|
||||
id: number;
|
||||
address?: number;
|
||||
address?: any;
|
||||
name: string;
|
||||
contact?: number;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user