-
Notifications
You must be signed in to change notification settings - Fork 6
/
models.ts
229 lines (209 loc) · 5.47 KB
/
models.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
import { SanityAsset } from "@sanity/image-url/lib/types/types";
export enum META_OWNER {
EFFEKT = 1,
EAN = 2,
EFFEKTANDEAN = 3,
}
export type Donation = {
KID: string;
donor: string;
donorId: number;
email: string;
id: number;
paymentMethod: string;
sum: string;
timestamp: string;
transactionCost: string;
metaOwnerId: META_OWNER;
};
export type AvtaleGiroAgreement = {
ID: number;
active: number;
amount: string;
KID: string;
payment_date: number;
created: string;
last_updated: string;
notice: boolean;
full_name: string;
cancelled: string;
};
export type AutoGiroAgreement = {
ID: number;
mandateID: number;
KID: string;
amount: string;
payment_date: number;
notice: boolean;
active: boolean;
last_updated: string;
created: string;
cancelled: string;
};
export type VippsAgreement = {
ID: number;
status: "EXPIRED" | "PENDING" | "ACTIVE" | "STOPPED";
donorID: number;
full_name: string;
KID: string;
timestamp_created: string;
monthly_charge_day: number;
force_charge_date: boolean;
paused_until_date: string;
amount: number;
agreement_url_code: string;
};
export type Distribution = {
kid: string;
donorId: number;
taxUnitId: number | null;
causeAreas: DistributionCauseArea[];
};
export type DistributionCauseArea = {
id: number;
name?: string;
standardSplit: boolean;
percentageShare: string;
organizations: {
id: number;
name?: string;
percentageShare: string;
}[];
};
export type Donor = {
id: string;
name: string;
email: string;
newsletter: boolean;
registered: string;
};
export type AggregatedDonations = {
abbriv: string;
organization: string;
organizationId: number;
value: string;
year: number;
};
export type DonationGraphData = {
name: string;
};
export type Organization = {
id: number;
name: string;
abbriv: string;
shortDesc: string;
standardShare: number;
infoUrl: string;
};
export type SEOMeta = {
title: string;
titleTemplate?: string;
description: string;
imageAsset: SanityAsset;
canonicalurl: string;
keywords?: string;
siteName: string;
};
export type FacebookDonationRegistration = {
email: string;
paymentID: string;
name: string;
ssn: string;
};
export type TaxUnit = {
id: number;
donorId: number;
ssn: string;
name: string;
numDonations: number;
sumDonations: number;
registered: string;
archived: string | null;
taxDeductions?: { year: number; sumDonations: number; deduction: number; benefit: number }[];
};
export type TaxYearlyReport = {
/** @description The year the report is for */
year: number;
/** @description The tax units for the year */
units: TaxYearlyReportUnits[];
/** @description The sum of all donations for the year not connected to a tax unit */
sumDonationsWithoutTaxUnit: {
/** @description The sum of all donations for the year not connected to a tax unit */
sumDonations: number;
/** @description The channels for the year */
channels: {
/** @description The channel (or entity the donations where given to) for the year and channel */
channel: string;
/** @description The sum of all donations for the year and channel */
sumDonations: number;
}[];
};
/** @description The sum of all non deductible donations for the year and type */
sumNonDeductibleDonationsByType: {
/** @description The type of non deductible donation */
type: string;
/** @description The sum of all non deductible donations for the year and type */
sumNonDeductibleDonations: number;
}[];
/** @description The sum of all tax deductions for the year */
sumTaxDeductions: number;
/** @description The sum of all donations for the year */
sumDonations: number;
};
export type TaxYearlyReportUnits = {
/** @description The Auto-generated id for a tax unit */
id: number;
/** @description Full name of the tax unit (either a personal name or a business entity) */
name: string;
/** @description Either a personal number or the number for the business entity */
ssn: string;
/** @description The sum of all donations for the tax unit for the year and channel */
sumDonations: number;
/** @description The tax deduction for the tax unit for the year and channel */
taxDeduction: number;
/** @description The channels for the tax unit for the year */
channels: {
/** @description The channel (or entity the donations where given to) for the tax unit for the year and channel */
channel: string;
/** @description The sum of all donations for the tax unit for the year and channel */
sumDonations: number;
}[];
};
export type ImpactCharity = {
id: number; // Not necessarily the same as the id in the database
charity_name: string;
abbreviation: string;
};
export type ImpactIntervention = {
long_description: string;
short_description: string;
id: number;
};
export type ImpactEvaluation = {
id: number;
intervention: ImpactIntervention;
converted_cost_per_output: number;
currency: string;
language: string;
start_year: number;
start_month: number;
cents_per_output: number;
charity: ImpactCharity;
};
export type GiveWellGrant = {
id: number;
allotment_set: {
id: number;
intervention: ImpactIntervention;
converted_sum: number;
currency: string;
converted_cost_per_output: number;
exchange_rate_date: string;
sum_in_cents: number;
number_outputs_purchased: number;
charity: ImpactCharity;
}[];
language: string;
start_year: number;
start_month: number;
};