@ayasofyazilim/saas 0.0.23 → 0.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BackerService/schemas.gen.ts +12444 -12401
- package/BackerService/types.gen.ts +14936 -14936
- package/FundraiserService/schemas.gen.ts +795 -661
- package/FundraiserService/services.gen.ts +12 -36
- package/FundraiserService/types.gen.ts +1229 -2471
- package/MerchantService/schemas.gen.ts +14764 -14697
- package/MerchantService/services.gen.ts +1602 -1602
- package/MerchantService/types.gen.ts +18875 -18819
- package/ProjectService/schemas.gen.ts +365 -1
- package/ProjectService/types.gen.ts +161 -1
- package/SettingService/schemas.gen.ts +1524 -1521
- package/SettingService/types.gen.ts +981 -980
- package/package.json +1 -1
|
@@ -26,28 +26,28 @@ export type UpwithCrowd_FundraiserService_AddressTypes_CreateAddressTypeDto = {
|
|
|
26
26
|
readonly extraProperties?: {
|
|
27
27
|
[key: string]: unknown;
|
|
28
28
|
} | null;
|
|
29
|
-
typeCode
|
|
30
|
-
addressLine
|
|
31
|
-
city
|
|
32
|
-
terriority
|
|
33
|
-
postalCode
|
|
34
|
-
country
|
|
35
|
-
fullAddress
|
|
36
|
-
primaryFlag
|
|
29
|
+
typeCode: 0 | 1;
|
|
30
|
+
addressLine: string;
|
|
31
|
+
city: string;
|
|
32
|
+
terriority: string;
|
|
33
|
+
postalCode: string;
|
|
34
|
+
country: string;
|
|
35
|
+
fullAddress: string;
|
|
36
|
+
primaryFlag: boolean;
|
|
37
37
|
};
|
|
38
38
|
|
|
39
39
|
export type UpwithCrowd_FundraiserService_AddressTypes_UpdateAddressTypeDto = {
|
|
40
40
|
readonly extraProperties?: {
|
|
41
41
|
[key: string]: unknown;
|
|
42
42
|
} | null;
|
|
43
|
-
typeCode
|
|
44
|
-
addressLine
|
|
45
|
-
city
|
|
46
|
-
terriority
|
|
47
|
-
postalCode
|
|
48
|
-
country
|
|
49
|
-
fullAddress
|
|
50
|
-
primaryFlag
|
|
43
|
+
typeCode: 0 | 1;
|
|
44
|
+
addressLine: string;
|
|
45
|
+
city: string;
|
|
46
|
+
terriority: string;
|
|
47
|
+
postalCode: string;
|
|
48
|
+
country: string;
|
|
49
|
+
fullAddress: string;
|
|
50
|
+
primaryFlag: boolean;
|
|
51
51
|
};
|
|
52
52
|
|
|
53
53
|
export type UpwithCrowd_FundraiserService_AffiliationTypes_AffiliationTypeDto = {
|
|
@@ -72,9 +72,9 @@ export type UpwithCrowd_FundraiserService_AffiliationTypes_CreateAffiliationType
|
|
|
72
72
|
readonly extraProperties?: {
|
|
73
73
|
[key: string]: unknown;
|
|
74
74
|
} | null;
|
|
75
|
-
name
|
|
76
|
-
description
|
|
77
|
-
affiliationTypeCode
|
|
75
|
+
name: string;
|
|
76
|
+
description: string;
|
|
77
|
+
affiliationTypeCode: 0 | 1 | 2;
|
|
78
78
|
};
|
|
79
79
|
|
|
80
80
|
export type UpwithCrowd_FundraiserService_AffiliationTypes_UpdateAffiliationTypeDto = {
|
|
@@ -155,84 +155,84 @@ export type UpwithCrowd_FundraiserService_ContactInformationTypes_CreateContactI
|
|
|
155
155
|
readonly extraProperties?: {
|
|
156
156
|
[key: string]: unknown;
|
|
157
157
|
} | null;
|
|
158
|
-
startDate
|
|
159
|
-
endDate
|
|
160
|
-
telephones
|
|
161
|
-
primaryFlag
|
|
162
|
-
typeCode
|
|
163
|
-
areaCode
|
|
164
|
-
localNumber
|
|
165
|
-
ituCountryCode
|
|
166
|
-
}
|
|
167
|
-
addresses
|
|
158
|
+
startDate: string;
|
|
159
|
+
endDate: string;
|
|
160
|
+
telephones: Array<{
|
|
161
|
+
primaryFlag: boolean;
|
|
162
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
163
|
+
areaCode: string;
|
|
164
|
+
localNumber: string;
|
|
165
|
+
ituCountryCode: string;
|
|
166
|
+
}>;
|
|
167
|
+
addresses: Array<{
|
|
168
168
|
readonly extraProperties?: {
|
|
169
169
|
[key: string]: unknown;
|
|
170
170
|
} | null;
|
|
171
|
-
typeCode
|
|
172
|
-
addressLine
|
|
173
|
-
city
|
|
174
|
-
terriority
|
|
175
|
-
postalCode
|
|
176
|
-
country
|
|
177
|
-
fullAddress
|
|
178
|
-
primaryFlag
|
|
179
|
-
}
|
|
180
|
-
emails
|
|
171
|
+
typeCode: 0 | 1;
|
|
172
|
+
addressLine: string;
|
|
173
|
+
city: string;
|
|
174
|
+
terriority: string;
|
|
175
|
+
postalCode: string;
|
|
176
|
+
country: string;
|
|
177
|
+
fullAddress: string;
|
|
178
|
+
primaryFlag: boolean;
|
|
179
|
+
}>;
|
|
180
|
+
emails: Array<{
|
|
181
181
|
readonly extraProperties?: {
|
|
182
182
|
[key: string]: unknown;
|
|
183
183
|
} | null;
|
|
184
|
-
primaryFlag
|
|
185
|
-
typeCode
|
|
186
|
-
emailAddress
|
|
187
|
-
}
|
|
184
|
+
primaryFlag: boolean;
|
|
185
|
+
typeCode: 0 | 1;
|
|
186
|
+
emailAddress: string;
|
|
187
|
+
}>;
|
|
188
188
|
};
|
|
189
189
|
|
|
190
190
|
export type UpwithCrowd_FundraiserService_ContactInformationTypes_UpdateContactInformationTypeDto = {
|
|
191
191
|
readonly extraProperties?: {
|
|
192
192
|
[key: string]: unknown;
|
|
193
193
|
} | null;
|
|
194
|
-
startDate
|
|
195
|
-
endDate
|
|
196
|
-
telephones
|
|
194
|
+
startDate: string;
|
|
195
|
+
endDate: string;
|
|
196
|
+
telephones: Array<{
|
|
197
197
|
readonly extraProperties?: {
|
|
198
198
|
[key: string]: unknown;
|
|
199
199
|
} | null;
|
|
200
|
-
primaryFlag
|
|
201
|
-
typeCode
|
|
202
|
-
areaCode
|
|
203
|
-
localNumber
|
|
204
|
-
ituCountryCode
|
|
205
|
-
}
|
|
206
|
-
addresses
|
|
200
|
+
primaryFlag: boolean;
|
|
201
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
202
|
+
areaCode: string;
|
|
203
|
+
localNumber: string;
|
|
204
|
+
ituCountryCode: string;
|
|
205
|
+
}>;
|
|
206
|
+
addresses: Array<{
|
|
207
207
|
readonly extraProperties?: {
|
|
208
208
|
[key: string]: unknown;
|
|
209
209
|
} | null;
|
|
210
|
-
typeCode
|
|
211
|
-
addressLine
|
|
212
|
-
city
|
|
213
|
-
terriority
|
|
214
|
-
postalCode
|
|
215
|
-
country
|
|
216
|
-
fullAddress
|
|
217
|
-
primaryFlag
|
|
218
|
-
}
|
|
219
|
-
emails
|
|
210
|
+
typeCode: 0 | 1;
|
|
211
|
+
addressLine: string;
|
|
212
|
+
city: string;
|
|
213
|
+
terriority: string;
|
|
214
|
+
postalCode: string;
|
|
215
|
+
country: string;
|
|
216
|
+
fullAddress: string;
|
|
217
|
+
primaryFlag: boolean;
|
|
218
|
+
}>;
|
|
219
|
+
emails: Array<{
|
|
220
220
|
readonly extraProperties?: {
|
|
221
221
|
[key: string]: unknown;
|
|
222
222
|
} | null;
|
|
223
|
-
primaryFlag
|
|
224
|
-
typeCode
|
|
225
|
-
emailAddress
|
|
226
|
-
}
|
|
223
|
+
primaryFlag: boolean;
|
|
224
|
+
typeCode: 0 | 1;
|
|
225
|
+
emailAddress: string;
|
|
226
|
+
}>;
|
|
227
227
|
};
|
|
228
228
|
|
|
229
229
|
export type UpwithCrowd_FundraiserService_EmailCommonDatas_CreateEmailCommonDataDto = {
|
|
230
230
|
readonly extraProperties?: {
|
|
231
231
|
[key: string]: unknown;
|
|
232
232
|
} | null;
|
|
233
|
-
primaryFlag
|
|
234
|
-
typeCode
|
|
235
|
-
emailAddress
|
|
233
|
+
primaryFlag: boolean;
|
|
234
|
+
typeCode: 0 | 1;
|
|
235
|
+
emailAddress: string;
|
|
236
236
|
};
|
|
237
237
|
|
|
238
238
|
export type UpwithCrowd_FundraiserService_EmailCommonDatas_EmailCommonDataDto = {
|
|
@@ -254,112 +254,112 @@ export type UpwithCrowd_FundraiserService_EmailCommonDatas_UpdateEmailCommonData
|
|
|
254
254
|
readonly extraProperties?: {
|
|
255
255
|
[key: string]: unknown;
|
|
256
256
|
} | null;
|
|
257
|
-
primaryFlag
|
|
258
|
-
typeCode
|
|
259
|
-
emailAddress
|
|
257
|
+
primaryFlag: boolean;
|
|
258
|
+
typeCode: 0 | 1;
|
|
259
|
+
emailAddress: string;
|
|
260
260
|
};
|
|
261
261
|
|
|
262
262
|
export type UpwithCrowd_FundraiserService_EntityInformationTypes_CreateEntityInformationTypeDto = {
|
|
263
263
|
readonly extraProperties?: {
|
|
264
264
|
[key: string]: unknown;
|
|
265
265
|
} | null;
|
|
266
|
-
partyType
|
|
266
|
+
partyType: 0 | 1;
|
|
267
267
|
organizations?: Array<{
|
|
268
268
|
readonly extraProperties?: {
|
|
269
269
|
[key: string]: unknown;
|
|
270
270
|
} | null;
|
|
271
|
-
name
|
|
272
|
-
taxpayerId
|
|
273
|
-
legalStatusCode
|
|
274
|
-
contactInformation
|
|
271
|
+
name: string;
|
|
272
|
+
taxpayerId: string;
|
|
273
|
+
legalStatusCode: string;
|
|
274
|
+
contactInformation: {
|
|
275
275
|
readonly extraProperties?: {
|
|
276
276
|
[key: string]: unknown;
|
|
277
277
|
} | null;
|
|
278
|
-
startDate
|
|
279
|
-
endDate
|
|
280
|
-
telephones
|
|
281
|
-
primaryFlag
|
|
282
|
-
typeCode
|
|
283
|
-
areaCode
|
|
284
|
-
localNumber
|
|
285
|
-
ituCountryCode
|
|
286
|
-
}
|
|
287
|
-
addresses
|
|
278
|
+
startDate: string;
|
|
279
|
+
endDate: string;
|
|
280
|
+
telephones: Array<{
|
|
281
|
+
primaryFlag: boolean;
|
|
282
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
283
|
+
areaCode: string;
|
|
284
|
+
localNumber: string;
|
|
285
|
+
ituCountryCode: string;
|
|
286
|
+
}>;
|
|
287
|
+
addresses: Array<{
|
|
288
288
|
readonly extraProperties?: {
|
|
289
289
|
[key: string]: unknown;
|
|
290
290
|
} | null;
|
|
291
|
-
typeCode
|
|
292
|
-
addressLine
|
|
293
|
-
city
|
|
294
|
-
terriority
|
|
295
|
-
postalCode
|
|
296
|
-
country
|
|
297
|
-
fullAddress
|
|
298
|
-
primaryFlag
|
|
299
|
-
}
|
|
300
|
-
emails
|
|
291
|
+
typeCode: 0 | 1;
|
|
292
|
+
addressLine: string;
|
|
293
|
+
city: string;
|
|
294
|
+
terriority: string;
|
|
295
|
+
postalCode: string;
|
|
296
|
+
country: string;
|
|
297
|
+
fullAddress: string;
|
|
298
|
+
primaryFlag: boolean;
|
|
299
|
+
}>;
|
|
300
|
+
emails: Array<{
|
|
301
301
|
readonly extraProperties?: {
|
|
302
302
|
[key: string]: unknown;
|
|
303
303
|
} | null;
|
|
304
|
-
primaryFlag
|
|
305
|
-
typeCode
|
|
306
|
-
emailAddress
|
|
307
|
-
}
|
|
304
|
+
primaryFlag: boolean;
|
|
305
|
+
typeCode: 0 | 1;
|
|
306
|
+
emailAddress: string;
|
|
307
|
+
}>;
|
|
308
308
|
};
|
|
309
309
|
}> | null;
|
|
310
310
|
individuals?: Array<{
|
|
311
311
|
readonly extraProperties?: {
|
|
312
312
|
[key: string]: unknown;
|
|
313
313
|
} | null;
|
|
314
|
-
name
|
|
315
|
-
salutation
|
|
316
|
-
name
|
|
317
|
-
suffix
|
|
318
|
-
mailingName
|
|
319
|
-
officialName
|
|
314
|
+
name: {
|
|
315
|
+
salutation: string;
|
|
316
|
+
name: string;
|
|
317
|
+
suffix: string;
|
|
318
|
+
mailingName: string;
|
|
319
|
+
officialName: string;
|
|
320
320
|
};
|
|
321
|
-
contactInformation
|
|
321
|
+
contactInformation: {
|
|
322
322
|
readonly extraProperties?: {
|
|
323
323
|
[key: string]: unknown;
|
|
324
324
|
} | null;
|
|
325
|
-
startDate
|
|
326
|
-
endDate
|
|
327
|
-
telephones
|
|
328
|
-
primaryFlag
|
|
329
|
-
typeCode
|
|
330
|
-
areaCode
|
|
331
|
-
localNumber
|
|
332
|
-
ituCountryCode
|
|
333
|
-
}
|
|
334
|
-
addresses
|
|
325
|
+
startDate: string;
|
|
326
|
+
endDate: string;
|
|
327
|
+
telephones: Array<{
|
|
328
|
+
primaryFlag: boolean;
|
|
329
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
330
|
+
areaCode: string;
|
|
331
|
+
localNumber: string;
|
|
332
|
+
ituCountryCode: string;
|
|
333
|
+
}>;
|
|
334
|
+
addresses: Array<{
|
|
335
335
|
readonly extraProperties?: {
|
|
336
336
|
[key: string]: unknown;
|
|
337
337
|
} | null;
|
|
338
|
-
typeCode
|
|
339
|
-
addressLine
|
|
340
|
-
city
|
|
341
|
-
terriority
|
|
342
|
-
postalCode
|
|
343
|
-
country
|
|
344
|
-
fullAddress
|
|
345
|
-
primaryFlag
|
|
346
|
-
}
|
|
347
|
-
emails
|
|
338
|
+
typeCode: 0 | 1;
|
|
339
|
+
addressLine: string;
|
|
340
|
+
city: string;
|
|
341
|
+
terriority: string;
|
|
342
|
+
postalCode: string;
|
|
343
|
+
country: string;
|
|
344
|
+
fullAddress: string;
|
|
345
|
+
primaryFlag: boolean;
|
|
346
|
+
}>;
|
|
347
|
+
emails: Array<{
|
|
348
348
|
readonly extraProperties?: {
|
|
349
349
|
[key: string]: unknown;
|
|
350
350
|
} | null;
|
|
351
|
-
primaryFlag
|
|
352
|
-
typeCode
|
|
353
|
-
emailAddress
|
|
354
|
-
}
|
|
351
|
+
primaryFlag: boolean;
|
|
352
|
+
typeCode: 0 | 1;
|
|
353
|
+
emailAddress: string;
|
|
354
|
+
}>;
|
|
355
355
|
};
|
|
356
356
|
personalSummaries?: Array<{
|
|
357
|
-
genderType
|
|
358
|
-
date
|
|
359
|
-
birthDate
|
|
360
|
-
ethnicity
|
|
361
|
-
maritalStatusCode
|
|
362
|
-
religiousAffiliationName
|
|
357
|
+
genderType: 0 | 1;
|
|
358
|
+
date: string;
|
|
359
|
+
birthDate: string;
|
|
360
|
+
ethnicity: string;
|
|
361
|
+
maritalStatusCode: string;
|
|
362
|
+
religiousAffiliationName: string;
|
|
363
363
|
}> | null;
|
|
364
364
|
}> | null;
|
|
365
365
|
};
|
|
@@ -559,112 +559,112 @@ export type UpwithCrowd_FundraiserService_EntityInformationTypes_EntityInformati
|
|
|
559
559
|
};
|
|
560
560
|
|
|
561
561
|
export type UpwithCrowd_FundraiserService_EntityInformationTypes_UpdateEntityInformationTypeDto = {
|
|
562
|
-
partyType
|
|
562
|
+
partyType: 0 | 1;
|
|
563
563
|
organizations?: Array<{
|
|
564
|
-
name
|
|
565
|
-
taxpayerId
|
|
566
|
-
legalStatusCode
|
|
567
|
-
contactInformation
|
|
564
|
+
name: string;
|
|
565
|
+
taxpayerId: string;
|
|
566
|
+
legalStatusCode: string;
|
|
567
|
+
contactInformation: {
|
|
568
568
|
readonly extraProperties?: {
|
|
569
569
|
[key: string]: unknown;
|
|
570
570
|
} | null;
|
|
571
|
-
startDate
|
|
572
|
-
endDate
|
|
573
|
-
telephones
|
|
571
|
+
startDate: string;
|
|
572
|
+
endDate: string;
|
|
573
|
+
telephones: Array<{
|
|
574
574
|
readonly extraProperties?: {
|
|
575
575
|
[key: string]: unknown;
|
|
576
576
|
} | null;
|
|
577
|
-
primaryFlag
|
|
578
|
-
typeCode
|
|
579
|
-
areaCode
|
|
580
|
-
localNumber
|
|
581
|
-
ituCountryCode
|
|
582
|
-
}
|
|
583
|
-
addresses
|
|
577
|
+
primaryFlag: boolean;
|
|
578
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
579
|
+
areaCode: string;
|
|
580
|
+
localNumber: string;
|
|
581
|
+
ituCountryCode: string;
|
|
582
|
+
}>;
|
|
583
|
+
addresses: Array<{
|
|
584
584
|
readonly extraProperties?: {
|
|
585
585
|
[key: string]: unknown;
|
|
586
586
|
} | null;
|
|
587
|
-
typeCode
|
|
588
|
-
addressLine
|
|
589
|
-
city
|
|
590
|
-
terriority
|
|
591
|
-
postalCode
|
|
592
|
-
country
|
|
593
|
-
fullAddress
|
|
594
|
-
primaryFlag
|
|
595
|
-
}
|
|
596
|
-
emails
|
|
587
|
+
typeCode: 0 | 1;
|
|
588
|
+
addressLine: string;
|
|
589
|
+
city: string;
|
|
590
|
+
terriority: string;
|
|
591
|
+
postalCode: string;
|
|
592
|
+
country: string;
|
|
593
|
+
fullAddress: string;
|
|
594
|
+
primaryFlag: boolean;
|
|
595
|
+
}>;
|
|
596
|
+
emails: Array<{
|
|
597
597
|
readonly extraProperties?: {
|
|
598
598
|
[key: string]: unknown;
|
|
599
599
|
} | null;
|
|
600
|
-
primaryFlag
|
|
601
|
-
typeCode
|
|
602
|
-
emailAddress
|
|
603
|
-
}
|
|
600
|
+
primaryFlag: boolean;
|
|
601
|
+
typeCode: 0 | 1;
|
|
602
|
+
emailAddress: string;
|
|
603
|
+
}>;
|
|
604
604
|
};
|
|
605
605
|
}> | null;
|
|
606
606
|
individuals?: Array<{
|
|
607
607
|
readonly extraProperties?: {
|
|
608
608
|
[key: string]: unknown;
|
|
609
609
|
} | null;
|
|
610
|
-
name
|
|
611
|
-
individualId
|
|
612
|
-
salutation
|
|
613
|
-
name
|
|
614
|
-
suffix
|
|
615
|
-
mailingName
|
|
616
|
-
officialName
|
|
610
|
+
name: {
|
|
611
|
+
individualId: string;
|
|
612
|
+
salutation: string;
|
|
613
|
+
name: string;
|
|
614
|
+
suffix: string;
|
|
615
|
+
mailingName: string;
|
|
616
|
+
officialName: string;
|
|
617
617
|
};
|
|
618
|
-
contactInformation
|
|
618
|
+
contactInformation: {
|
|
619
619
|
readonly extraProperties?: {
|
|
620
620
|
[key: string]: unknown;
|
|
621
621
|
} | null;
|
|
622
|
-
startDate
|
|
623
|
-
endDate
|
|
624
|
-
telephones
|
|
622
|
+
startDate: string;
|
|
623
|
+
endDate: string;
|
|
624
|
+
telephones: Array<{
|
|
625
625
|
readonly extraProperties?: {
|
|
626
626
|
[key: string]: unknown;
|
|
627
627
|
} | null;
|
|
628
|
-
primaryFlag
|
|
629
|
-
typeCode
|
|
630
|
-
areaCode
|
|
631
|
-
localNumber
|
|
632
|
-
ituCountryCode
|
|
633
|
-
}
|
|
634
|
-
addresses
|
|
628
|
+
primaryFlag: boolean;
|
|
629
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
630
|
+
areaCode: string;
|
|
631
|
+
localNumber: string;
|
|
632
|
+
ituCountryCode: string;
|
|
633
|
+
}>;
|
|
634
|
+
addresses: Array<{
|
|
635
635
|
readonly extraProperties?: {
|
|
636
636
|
[key: string]: unknown;
|
|
637
637
|
} | null;
|
|
638
|
-
typeCode
|
|
639
|
-
addressLine
|
|
640
|
-
city
|
|
641
|
-
terriority
|
|
642
|
-
postalCode
|
|
643
|
-
country
|
|
644
|
-
fullAddress
|
|
645
|
-
primaryFlag
|
|
646
|
-
}
|
|
647
|
-
emails
|
|
638
|
+
typeCode: 0 | 1;
|
|
639
|
+
addressLine: string;
|
|
640
|
+
city: string;
|
|
641
|
+
terriority: string;
|
|
642
|
+
postalCode: string;
|
|
643
|
+
country: string;
|
|
644
|
+
fullAddress: string;
|
|
645
|
+
primaryFlag: boolean;
|
|
646
|
+
}>;
|
|
647
|
+
emails: Array<{
|
|
648
648
|
readonly extraProperties?: {
|
|
649
649
|
[key: string]: unknown;
|
|
650
650
|
} | null;
|
|
651
|
-
primaryFlag
|
|
652
|
-
typeCode
|
|
653
|
-
emailAddress
|
|
654
|
-
}
|
|
651
|
+
primaryFlag: boolean;
|
|
652
|
+
typeCode: 0 | 1;
|
|
653
|
+
emailAddress: string;
|
|
654
|
+
}>;
|
|
655
655
|
};
|
|
656
656
|
personalSummaries?: Array<{
|
|
657
657
|
id?: string;
|
|
658
|
-
genderType
|
|
659
|
-
individualId
|
|
660
|
-
date
|
|
661
|
-
birthDate
|
|
662
|
-
ethnicity
|
|
663
|
-
maritalStatusCode
|
|
664
|
-
religiousAffiliationName
|
|
658
|
+
genderType: 0 | 1;
|
|
659
|
+
individualId: string;
|
|
660
|
+
date: string;
|
|
661
|
+
birthDate: string;
|
|
662
|
+
ethnicity: string;
|
|
663
|
+
maritalStatusCode: string;
|
|
664
|
+
religiousAffiliationName: string;
|
|
665
665
|
}> | null;
|
|
666
|
-
entityInformationTypeId
|
|
667
|
-
contactInformationId
|
|
666
|
+
entityInformationTypeId: string;
|
|
667
|
+
contactInformationId: string;
|
|
668
668
|
}> | null;
|
|
669
669
|
};
|
|
670
670
|
|
|
@@ -672,10 +672,10 @@ export type UpwithCrowd_FundraiserService_Enums_AddressTypeCode = 0 | 1;
|
|
|
672
672
|
|
|
673
673
|
export type UpwithCrowd_FundraiserService_Enums_AffiliationTypeCode = 0 | 1 | 2;
|
|
674
674
|
|
|
675
|
-
export type UpwithCrowd_FundraiserService_Enums_BackerPartyType = 0 | 1;
|
|
676
|
-
|
|
677
675
|
export type UpwithCrowd_FundraiserService_Enums_EmailTypeCode = 0 | 1;
|
|
678
676
|
|
|
677
|
+
export type UpwithCrowd_FundraiserService_Enums_FundraiserPartyType = 0 | 1;
|
|
678
|
+
|
|
679
679
|
export type UpwithCrowd_FundraiserService_Enums_GenderTypeCode = 0 | 1;
|
|
680
680
|
|
|
681
681
|
export type UpwithCrowd_FundraiserService_Enums_TelephoneTypeCode = 0 | 1 | 2 | 3;
|
|
@@ -684,117 +684,117 @@ export type UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserDto = {
|
|
|
684
684
|
readonly extraProperties?: {
|
|
685
685
|
[key: string]: unknown;
|
|
686
686
|
} | null;
|
|
687
|
-
entityInformations
|
|
687
|
+
entityInformations: Array<{
|
|
688
688
|
readonly extraProperties?: {
|
|
689
689
|
[key: string]: unknown;
|
|
690
690
|
} | null;
|
|
691
|
-
partyType
|
|
691
|
+
partyType: 0 | 1;
|
|
692
692
|
organizations?: Array<{
|
|
693
693
|
readonly extraProperties?: {
|
|
694
694
|
[key: string]: unknown;
|
|
695
695
|
} | null;
|
|
696
|
-
name
|
|
697
|
-
taxpayerId
|
|
698
|
-
legalStatusCode
|
|
699
|
-
contactInformation
|
|
696
|
+
name: string;
|
|
697
|
+
taxpayerId: string;
|
|
698
|
+
legalStatusCode: string;
|
|
699
|
+
contactInformation: {
|
|
700
700
|
readonly extraProperties?: {
|
|
701
701
|
[key: string]: unknown;
|
|
702
702
|
} | null;
|
|
703
|
-
startDate
|
|
704
|
-
endDate
|
|
705
|
-
telephones
|
|
706
|
-
primaryFlag
|
|
707
|
-
typeCode
|
|
708
|
-
areaCode
|
|
709
|
-
localNumber
|
|
710
|
-
ituCountryCode
|
|
711
|
-
}
|
|
712
|
-
addresses
|
|
703
|
+
startDate: string;
|
|
704
|
+
endDate: string;
|
|
705
|
+
telephones: Array<{
|
|
706
|
+
primaryFlag: boolean;
|
|
707
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
708
|
+
areaCode: string;
|
|
709
|
+
localNumber: string;
|
|
710
|
+
ituCountryCode: string;
|
|
711
|
+
}>;
|
|
712
|
+
addresses: Array<{
|
|
713
713
|
readonly extraProperties?: {
|
|
714
714
|
[key: string]: unknown;
|
|
715
715
|
} | null;
|
|
716
|
-
typeCode
|
|
717
|
-
addressLine
|
|
718
|
-
city
|
|
719
|
-
terriority
|
|
720
|
-
postalCode
|
|
721
|
-
country
|
|
722
|
-
fullAddress
|
|
723
|
-
primaryFlag
|
|
724
|
-
}
|
|
725
|
-
emails
|
|
716
|
+
typeCode: 0 | 1;
|
|
717
|
+
addressLine: string;
|
|
718
|
+
city: string;
|
|
719
|
+
terriority: string;
|
|
720
|
+
postalCode: string;
|
|
721
|
+
country: string;
|
|
722
|
+
fullAddress: string;
|
|
723
|
+
primaryFlag: boolean;
|
|
724
|
+
}>;
|
|
725
|
+
emails: Array<{
|
|
726
726
|
readonly extraProperties?: {
|
|
727
727
|
[key: string]: unknown;
|
|
728
728
|
} | null;
|
|
729
|
-
primaryFlag
|
|
730
|
-
typeCode
|
|
731
|
-
emailAddress
|
|
732
|
-
}
|
|
729
|
+
primaryFlag: boolean;
|
|
730
|
+
typeCode: 0 | 1;
|
|
731
|
+
emailAddress: string;
|
|
732
|
+
}>;
|
|
733
733
|
};
|
|
734
734
|
}> | null;
|
|
735
735
|
individuals?: Array<{
|
|
736
736
|
readonly extraProperties?: {
|
|
737
737
|
[key: string]: unknown;
|
|
738
738
|
} | null;
|
|
739
|
-
name
|
|
740
|
-
salutation
|
|
741
|
-
name
|
|
742
|
-
suffix
|
|
743
|
-
mailingName
|
|
744
|
-
officialName
|
|
739
|
+
name: {
|
|
740
|
+
salutation: string;
|
|
741
|
+
name: string;
|
|
742
|
+
suffix: string;
|
|
743
|
+
mailingName: string;
|
|
744
|
+
officialName: string;
|
|
745
745
|
};
|
|
746
|
-
contactInformation
|
|
746
|
+
contactInformation: {
|
|
747
747
|
readonly extraProperties?: {
|
|
748
748
|
[key: string]: unknown;
|
|
749
749
|
} | null;
|
|
750
|
-
startDate
|
|
751
|
-
endDate
|
|
752
|
-
telephones
|
|
753
|
-
primaryFlag
|
|
754
|
-
typeCode
|
|
755
|
-
areaCode
|
|
756
|
-
localNumber
|
|
757
|
-
ituCountryCode
|
|
758
|
-
}
|
|
759
|
-
addresses
|
|
750
|
+
startDate: string;
|
|
751
|
+
endDate: string;
|
|
752
|
+
telephones: Array<{
|
|
753
|
+
primaryFlag: boolean;
|
|
754
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
755
|
+
areaCode: string;
|
|
756
|
+
localNumber: string;
|
|
757
|
+
ituCountryCode: string;
|
|
758
|
+
}>;
|
|
759
|
+
addresses: Array<{
|
|
760
760
|
readonly extraProperties?: {
|
|
761
761
|
[key: string]: unknown;
|
|
762
762
|
} | null;
|
|
763
|
-
typeCode
|
|
764
|
-
addressLine
|
|
765
|
-
city
|
|
766
|
-
terriority
|
|
767
|
-
postalCode
|
|
768
|
-
country
|
|
769
|
-
fullAddress
|
|
770
|
-
primaryFlag
|
|
771
|
-
}
|
|
772
|
-
emails
|
|
763
|
+
typeCode: 0 | 1;
|
|
764
|
+
addressLine: string;
|
|
765
|
+
city: string;
|
|
766
|
+
terriority: string;
|
|
767
|
+
postalCode: string;
|
|
768
|
+
country: string;
|
|
769
|
+
fullAddress: string;
|
|
770
|
+
primaryFlag: boolean;
|
|
771
|
+
}>;
|
|
772
|
+
emails: Array<{
|
|
773
773
|
readonly extraProperties?: {
|
|
774
774
|
[key: string]: unknown;
|
|
775
775
|
} | null;
|
|
776
|
-
primaryFlag
|
|
777
|
-
typeCode
|
|
778
|
-
emailAddress
|
|
779
|
-
}
|
|
776
|
+
primaryFlag: boolean;
|
|
777
|
+
typeCode: 0 | 1;
|
|
778
|
+
emailAddress: string;
|
|
779
|
+
}>;
|
|
780
780
|
};
|
|
781
781
|
personalSummaries?: Array<{
|
|
782
|
-
genderType
|
|
783
|
-
date
|
|
784
|
-
birthDate
|
|
785
|
-
ethnicity
|
|
786
|
-
maritalStatusCode
|
|
787
|
-
religiousAffiliationName
|
|
782
|
+
genderType: 0 | 1;
|
|
783
|
+
date: string;
|
|
784
|
+
birthDate: string;
|
|
785
|
+
ethnicity: string;
|
|
786
|
+
maritalStatusCode: string;
|
|
787
|
+
religiousAffiliationName: string;
|
|
788
788
|
}> | null;
|
|
789
789
|
}> | null;
|
|
790
|
-
}
|
|
790
|
+
}>;
|
|
791
791
|
affiliations?: Array<{
|
|
792
792
|
readonly extraProperties?: {
|
|
793
793
|
[key: string]: unknown;
|
|
794
794
|
} | null;
|
|
795
|
-
name
|
|
796
|
-
description
|
|
797
|
-
affiliationTypeCode
|
|
795
|
+
name: string;
|
|
796
|
+
description: string;
|
|
797
|
+
affiliationTypeCode: 0 | 1 | 2;
|
|
798
798
|
}> | null;
|
|
799
799
|
};
|
|
800
800
|
|
|
@@ -806,103 +806,103 @@ export type UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithCompon
|
|
|
806
806
|
readonly extraProperties?: {
|
|
807
807
|
[key: string]: unknown;
|
|
808
808
|
} | null;
|
|
809
|
-
partyType
|
|
809
|
+
partyType: 0 | 1;
|
|
810
810
|
organizations?: Array<{
|
|
811
811
|
readonly extraProperties?: {
|
|
812
812
|
[key: string]: unknown;
|
|
813
813
|
} | null;
|
|
814
|
-
name
|
|
815
|
-
taxpayerId
|
|
816
|
-
legalStatusCode
|
|
817
|
-
contactInformation
|
|
814
|
+
name: string;
|
|
815
|
+
taxpayerId: string;
|
|
816
|
+
legalStatusCode: string;
|
|
817
|
+
contactInformation: {
|
|
818
818
|
readonly extraProperties?: {
|
|
819
819
|
[key: string]: unknown;
|
|
820
820
|
} | null;
|
|
821
|
-
startDate
|
|
822
|
-
endDate
|
|
823
|
-
telephones
|
|
824
|
-
primaryFlag
|
|
825
|
-
typeCode
|
|
826
|
-
areaCode
|
|
827
|
-
localNumber
|
|
828
|
-
ituCountryCode
|
|
829
|
-
}
|
|
830
|
-
addresses
|
|
821
|
+
startDate: string;
|
|
822
|
+
endDate: string;
|
|
823
|
+
telephones: Array<{
|
|
824
|
+
primaryFlag: boolean;
|
|
825
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
826
|
+
areaCode: string;
|
|
827
|
+
localNumber: string;
|
|
828
|
+
ituCountryCode: string;
|
|
829
|
+
}>;
|
|
830
|
+
addresses: Array<{
|
|
831
831
|
readonly extraProperties?: {
|
|
832
832
|
[key: string]: unknown;
|
|
833
833
|
} | null;
|
|
834
|
-
typeCode
|
|
835
|
-
addressLine
|
|
836
|
-
city
|
|
837
|
-
terriority
|
|
838
|
-
postalCode
|
|
839
|
-
country
|
|
840
|
-
fullAddress
|
|
841
|
-
primaryFlag
|
|
842
|
-
}
|
|
843
|
-
emails
|
|
834
|
+
typeCode: 0 | 1;
|
|
835
|
+
addressLine: string;
|
|
836
|
+
city: string;
|
|
837
|
+
terriority: string;
|
|
838
|
+
postalCode: string;
|
|
839
|
+
country: string;
|
|
840
|
+
fullAddress: string;
|
|
841
|
+
primaryFlag: boolean;
|
|
842
|
+
}>;
|
|
843
|
+
emails: Array<{
|
|
844
844
|
readonly extraProperties?: {
|
|
845
845
|
[key: string]: unknown;
|
|
846
846
|
} | null;
|
|
847
|
-
primaryFlag
|
|
848
|
-
typeCode
|
|
849
|
-
emailAddress
|
|
850
|
-
}
|
|
847
|
+
primaryFlag: boolean;
|
|
848
|
+
typeCode: 0 | 1;
|
|
849
|
+
emailAddress: string;
|
|
850
|
+
}>;
|
|
851
851
|
};
|
|
852
852
|
}> | null;
|
|
853
853
|
individuals?: Array<{
|
|
854
854
|
readonly extraProperties?: {
|
|
855
855
|
[key: string]: unknown;
|
|
856
856
|
} | null;
|
|
857
|
-
name
|
|
858
|
-
salutation
|
|
859
|
-
name
|
|
860
|
-
suffix
|
|
861
|
-
mailingName
|
|
862
|
-
officialName
|
|
857
|
+
name: {
|
|
858
|
+
salutation: string;
|
|
859
|
+
name: string;
|
|
860
|
+
suffix: string;
|
|
861
|
+
mailingName: string;
|
|
862
|
+
officialName: string;
|
|
863
863
|
};
|
|
864
|
-
contactInformation
|
|
864
|
+
contactInformation: {
|
|
865
865
|
readonly extraProperties?: {
|
|
866
866
|
[key: string]: unknown;
|
|
867
867
|
} | null;
|
|
868
|
-
startDate
|
|
869
|
-
endDate
|
|
870
|
-
telephones
|
|
871
|
-
primaryFlag
|
|
872
|
-
typeCode
|
|
873
|
-
areaCode
|
|
874
|
-
localNumber
|
|
875
|
-
ituCountryCode
|
|
876
|
-
}
|
|
877
|
-
addresses
|
|
868
|
+
startDate: string;
|
|
869
|
+
endDate: string;
|
|
870
|
+
telephones: Array<{
|
|
871
|
+
primaryFlag: boolean;
|
|
872
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
873
|
+
areaCode: string;
|
|
874
|
+
localNumber: string;
|
|
875
|
+
ituCountryCode: string;
|
|
876
|
+
}>;
|
|
877
|
+
addresses: Array<{
|
|
878
878
|
readonly extraProperties?: {
|
|
879
879
|
[key: string]: unknown;
|
|
880
880
|
} | null;
|
|
881
|
-
typeCode
|
|
882
|
-
addressLine
|
|
883
|
-
city
|
|
884
|
-
terriority
|
|
885
|
-
postalCode
|
|
886
|
-
country
|
|
887
|
-
fullAddress
|
|
888
|
-
primaryFlag
|
|
889
|
-
}
|
|
890
|
-
emails
|
|
881
|
+
typeCode: 0 | 1;
|
|
882
|
+
addressLine: string;
|
|
883
|
+
city: string;
|
|
884
|
+
terriority: string;
|
|
885
|
+
postalCode: string;
|
|
886
|
+
country: string;
|
|
887
|
+
fullAddress: string;
|
|
888
|
+
primaryFlag: boolean;
|
|
889
|
+
}>;
|
|
890
|
+
emails: Array<{
|
|
891
891
|
readonly extraProperties?: {
|
|
892
892
|
[key: string]: unknown;
|
|
893
893
|
} | null;
|
|
894
|
-
primaryFlag
|
|
895
|
-
typeCode
|
|
896
|
-
emailAddress
|
|
897
|
-
}
|
|
894
|
+
primaryFlag: boolean;
|
|
895
|
+
typeCode: 0 | 1;
|
|
896
|
+
emailAddress: string;
|
|
897
|
+
}>;
|
|
898
898
|
};
|
|
899
899
|
personalSummaries?: Array<{
|
|
900
|
-
genderType
|
|
901
|
-
date
|
|
902
|
-
birthDate
|
|
903
|
-
ethnicity
|
|
904
|
-
maritalStatusCode
|
|
905
|
-
religiousAffiliationName
|
|
900
|
+
genderType: 0 | 1;
|
|
901
|
+
date: string;
|
|
902
|
+
birthDate: string;
|
|
903
|
+
ethnicity: string;
|
|
904
|
+
maritalStatusCode: string;
|
|
905
|
+
religiousAffiliationName: string;
|
|
906
906
|
}> | null;
|
|
907
907
|
}> | null;
|
|
908
908
|
}>;
|
|
@@ -910,9 +910,9 @@ export type UpwithCrowd_FundraiserService_Fundraisers_CreateFundraiserWithCompon
|
|
|
910
910
|
readonly extraProperties?: {
|
|
911
911
|
[key: string]: unknown;
|
|
912
912
|
} | null;
|
|
913
|
-
name
|
|
914
|
-
description
|
|
915
|
-
affiliationTypeCode
|
|
913
|
+
name: string;
|
|
914
|
+
description: string;
|
|
915
|
+
affiliationTypeCode: 0 | 1 | 2;
|
|
916
916
|
}> | null;
|
|
917
917
|
};
|
|
918
918
|
|
|
@@ -1133,124 +1133,143 @@ export type UpwithCrowd_FundraiserService_Fundraisers_FundraiserDto = {
|
|
|
1133
1133
|
}> | null;
|
|
1134
1134
|
};
|
|
1135
1135
|
|
|
1136
|
-
export type
|
|
1136
|
+
export type UpwithCrowd_FundraiserService_Fundraisers_FundraiserProfileDto = {
|
|
1137
1137
|
id?: string;
|
|
1138
1138
|
name?: string | null;
|
|
1139
|
+
fundraiserType?: 0 | 1;
|
|
1140
|
+
fundraiserTypeDescription?: string | null;
|
|
1141
|
+
affiliation?: {
|
|
1142
|
+
id?: string;
|
|
1143
|
+
creationTime?: string;
|
|
1144
|
+
creatorId?: string | null;
|
|
1145
|
+
lastModificationTime?: string | null;
|
|
1146
|
+
lastModifierId?: string | null;
|
|
1147
|
+
isDeleted?: boolean;
|
|
1148
|
+
deleterId?: string | null;
|
|
1149
|
+
deletionTime?: string | null;
|
|
1150
|
+
fundraiserId?: string;
|
|
1151
|
+
name?: string | null;
|
|
1152
|
+
description?: string | null;
|
|
1153
|
+
affiliationTypeCode?: 0 | 1 | 2;
|
|
1154
|
+
partyId?: string;
|
|
1155
|
+
};
|
|
1139
1156
|
};
|
|
1140
1157
|
|
|
1158
|
+
export type fundraiserType = 0 | 1;
|
|
1159
|
+
|
|
1141
1160
|
export type UpwithCrowd_FundraiserService_Fundraisers_UpdateFundraiserDto = {
|
|
1142
1161
|
readonly extraProperties?: {
|
|
1143
1162
|
[key: string]: unknown;
|
|
1144
1163
|
} | null;
|
|
1145
|
-
entityInformations
|
|
1146
|
-
partyType
|
|
1164
|
+
entityInformations: Array<{
|
|
1165
|
+
partyType: 0 | 1;
|
|
1147
1166
|
organizations?: Array<{
|
|
1148
|
-
name
|
|
1149
|
-
taxpayerId
|
|
1150
|
-
legalStatusCode
|
|
1151
|
-
contactInformation
|
|
1167
|
+
name: string;
|
|
1168
|
+
taxpayerId: string;
|
|
1169
|
+
legalStatusCode: string;
|
|
1170
|
+
contactInformation: {
|
|
1152
1171
|
readonly extraProperties?: {
|
|
1153
1172
|
[key: string]: unknown;
|
|
1154
1173
|
} | null;
|
|
1155
|
-
startDate
|
|
1156
|
-
endDate
|
|
1157
|
-
telephones
|
|
1174
|
+
startDate: string;
|
|
1175
|
+
endDate: string;
|
|
1176
|
+
telephones: Array<{
|
|
1158
1177
|
readonly extraProperties?: {
|
|
1159
1178
|
[key: string]: unknown;
|
|
1160
1179
|
} | null;
|
|
1161
|
-
primaryFlag
|
|
1162
|
-
typeCode
|
|
1163
|
-
areaCode
|
|
1164
|
-
localNumber
|
|
1165
|
-
ituCountryCode
|
|
1166
|
-
}
|
|
1167
|
-
addresses
|
|
1180
|
+
primaryFlag: boolean;
|
|
1181
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
1182
|
+
areaCode: string;
|
|
1183
|
+
localNumber: string;
|
|
1184
|
+
ituCountryCode: string;
|
|
1185
|
+
}>;
|
|
1186
|
+
addresses: Array<{
|
|
1168
1187
|
readonly extraProperties?: {
|
|
1169
1188
|
[key: string]: unknown;
|
|
1170
1189
|
} | null;
|
|
1171
|
-
typeCode
|
|
1172
|
-
addressLine
|
|
1173
|
-
city
|
|
1174
|
-
terriority
|
|
1175
|
-
postalCode
|
|
1176
|
-
country
|
|
1177
|
-
fullAddress
|
|
1178
|
-
primaryFlag
|
|
1179
|
-
}
|
|
1180
|
-
emails
|
|
1190
|
+
typeCode: 0 | 1;
|
|
1191
|
+
addressLine: string;
|
|
1192
|
+
city: string;
|
|
1193
|
+
terriority: string;
|
|
1194
|
+
postalCode: string;
|
|
1195
|
+
country: string;
|
|
1196
|
+
fullAddress: string;
|
|
1197
|
+
primaryFlag: boolean;
|
|
1198
|
+
}>;
|
|
1199
|
+
emails: Array<{
|
|
1181
1200
|
readonly extraProperties?: {
|
|
1182
1201
|
[key: string]: unknown;
|
|
1183
1202
|
} | null;
|
|
1184
|
-
primaryFlag
|
|
1185
|
-
typeCode
|
|
1186
|
-
emailAddress
|
|
1187
|
-
}
|
|
1203
|
+
primaryFlag: boolean;
|
|
1204
|
+
typeCode: 0 | 1;
|
|
1205
|
+
emailAddress: string;
|
|
1206
|
+
}>;
|
|
1188
1207
|
};
|
|
1189
1208
|
}> | null;
|
|
1190
1209
|
individuals?: Array<{
|
|
1191
1210
|
readonly extraProperties?: {
|
|
1192
1211
|
[key: string]: unknown;
|
|
1193
1212
|
} | null;
|
|
1194
|
-
name
|
|
1195
|
-
individualId
|
|
1196
|
-
salutation
|
|
1197
|
-
name
|
|
1198
|
-
suffix
|
|
1199
|
-
mailingName
|
|
1200
|
-
officialName
|
|
1213
|
+
name: {
|
|
1214
|
+
individualId: string;
|
|
1215
|
+
salutation: string;
|
|
1216
|
+
name: string;
|
|
1217
|
+
suffix: string;
|
|
1218
|
+
mailingName: string;
|
|
1219
|
+
officialName: string;
|
|
1201
1220
|
};
|
|
1202
|
-
contactInformation
|
|
1221
|
+
contactInformation: {
|
|
1203
1222
|
readonly extraProperties?: {
|
|
1204
1223
|
[key: string]: unknown;
|
|
1205
1224
|
} | null;
|
|
1206
|
-
startDate
|
|
1207
|
-
endDate
|
|
1208
|
-
telephones
|
|
1225
|
+
startDate: string;
|
|
1226
|
+
endDate: string;
|
|
1227
|
+
telephones: Array<{
|
|
1209
1228
|
readonly extraProperties?: {
|
|
1210
1229
|
[key: string]: unknown;
|
|
1211
1230
|
} | null;
|
|
1212
|
-
primaryFlag
|
|
1213
|
-
typeCode
|
|
1214
|
-
areaCode
|
|
1215
|
-
localNumber
|
|
1216
|
-
ituCountryCode
|
|
1217
|
-
}
|
|
1218
|
-
addresses
|
|
1231
|
+
primaryFlag: boolean;
|
|
1232
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
1233
|
+
areaCode: string;
|
|
1234
|
+
localNumber: string;
|
|
1235
|
+
ituCountryCode: string;
|
|
1236
|
+
}>;
|
|
1237
|
+
addresses: Array<{
|
|
1219
1238
|
readonly extraProperties?: {
|
|
1220
1239
|
[key: string]: unknown;
|
|
1221
1240
|
} | null;
|
|
1222
|
-
typeCode
|
|
1223
|
-
addressLine
|
|
1224
|
-
city
|
|
1225
|
-
terriority
|
|
1226
|
-
postalCode
|
|
1227
|
-
country
|
|
1228
|
-
fullAddress
|
|
1229
|
-
primaryFlag
|
|
1230
|
-
}
|
|
1231
|
-
emails
|
|
1241
|
+
typeCode: 0 | 1;
|
|
1242
|
+
addressLine: string;
|
|
1243
|
+
city: string;
|
|
1244
|
+
terriority: string;
|
|
1245
|
+
postalCode: string;
|
|
1246
|
+
country: string;
|
|
1247
|
+
fullAddress: string;
|
|
1248
|
+
primaryFlag: boolean;
|
|
1249
|
+
}>;
|
|
1250
|
+
emails: Array<{
|
|
1232
1251
|
readonly extraProperties?: {
|
|
1233
1252
|
[key: string]: unknown;
|
|
1234
1253
|
} | null;
|
|
1235
|
-
primaryFlag
|
|
1236
|
-
typeCode
|
|
1237
|
-
emailAddress
|
|
1238
|
-
}
|
|
1254
|
+
primaryFlag: boolean;
|
|
1255
|
+
typeCode: 0 | 1;
|
|
1256
|
+
emailAddress: string;
|
|
1257
|
+
}>;
|
|
1239
1258
|
};
|
|
1240
1259
|
personalSummaries?: Array<{
|
|
1241
1260
|
id?: string;
|
|
1242
|
-
genderType
|
|
1243
|
-
individualId
|
|
1244
|
-
date
|
|
1245
|
-
birthDate
|
|
1246
|
-
ethnicity
|
|
1247
|
-
maritalStatusCode
|
|
1248
|
-
religiousAffiliationName
|
|
1261
|
+
genderType: 0 | 1;
|
|
1262
|
+
individualId: string;
|
|
1263
|
+
date: string;
|
|
1264
|
+
birthDate: string;
|
|
1265
|
+
ethnicity: string;
|
|
1266
|
+
maritalStatusCode: string;
|
|
1267
|
+
religiousAffiliationName: string;
|
|
1249
1268
|
}> | null;
|
|
1250
|
-
entityInformationTypeId
|
|
1251
|
-
contactInformationId
|
|
1269
|
+
entityInformationTypeId: string;
|
|
1270
|
+
contactInformationId: string;
|
|
1252
1271
|
}> | null;
|
|
1253
|
-
}
|
|
1272
|
+
}>;
|
|
1254
1273
|
affiliations?: Array<{
|
|
1255
1274
|
readonly extraProperties?: {
|
|
1256
1275
|
[key: string]: unknown;
|
|
@@ -1268,55 +1287,55 @@ export type UpwithCrowd_FundraiserService_Individuals_CreateIndividualDto = {
|
|
|
1268
1287
|
readonly extraProperties?: {
|
|
1269
1288
|
[key: string]: unknown;
|
|
1270
1289
|
} | null;
|
|
1271
|
-
name
|
|
1272
|
-
salutation
|
|
1273
|
-
name
|
|
1274
|
-
suffix
|
|
1275
|
-
mailingName
|
|
1276
|
-
officialName
|
|
1290
|
+
name: {
|
|
1291
|
+
salutation: string;
|
|
1292
|
+
name: string;
|
|
1293
|
+
suffix: string;
|
|
1294
|
+
mailingName: string;
|
|
1295
|
+
officialName: string;
|
|
1277
1296
|
};
|
|
1278
|
-
contactInformation
|
|
1297
|
+
contactInformation: {
|
|
1279
1298
|
readonly extraProperties?: {
|
|
1280
1299
|
[key: string]: unknown;
|
|
1281
1300
|
} | null;
|
|
1282
|
-
startDate
|
|
1283
|
-
endDate
|
|
1284
|
-
telephones
|
|
1285
|
-
primaryFlag
|
|
1286
|
-
typeCode
|
|
1287
|
-
areaCode
|
|
1288
|
-
localNumber
|
|
1289
|
-
ituCountryCode
|
|
1290
|
-
}
|
|
1291
|
-
addresses
|
|
1301
|
+
startDate: string;
|
|
1302
|
+
endDate: string;
|
|
1303
|
+
telephones: Array<{
|
|
1304
|
+
primaryFlag: boolean;
|
|
1305
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
1306
|
+
areaCode: string;
|
|
1307
|
+
localNumber: string;
|
|
1308
|
+
ituCountryCode: string;
|
|
1309
|
+
}>;
|
|
1310
|
+
addresses: Array<{
|
|
1292
1311
|
readonly extraProperties?: {
|
|
1293
1312
|
[key: string]: unknown;
|
|
1294
1313
|
} | null;
|
|
1295
|
-
typeCode
|
|
1296
|
-
addressLine
|
|
1297
|
-
city
|
|
1298
|
-
terriority
|
|
1299
|
-
postalCode
|
|
1300
|
-
country
|
|
1301
|
-
fullAddress
|
|
1302
|
-
primaryFlag
|
|
1303
|
-
}
|
|
1304
|
-
emails
|
|
1314
|
+
typeCode: 0 | 1;
|
|
1315
|
+
addressLine: string;
|
|
1316
|
+
city: string;
|
|
1317
|
+
terriority: string;
|
|
1318
|
+
postalCode: string;
|
|
1319
|
+
country: string;
|
|
1320
|
+
fullAddress: string;
|
|
1321
|
+
primaryFlag: boolean;
|
|
1322
|
+
}>;
|
|
1323
|
+
emails: Array<{
|
|
1305
1324
|
readonly extraProperties?: {
|
|
1306
1325
|
[key: string]: unknown;
|
|
1307
1326
|
} | null;
|
|
1308
|
-
primaryFlag
|
|
1309
|
-
typeCode
|
|
1310
|
-
emailAddress
|
|
1311
|
-
}
|
|
1327
|
+
primaryFlag: boolean;
|
|
1328
|
+
typeCode: 0 | 1;
|
|
1329
|
+
emailAddress: string;
|
|
1330
|
+
}>;
|
|
1312
1331
|
};
|
|
1313
1332
|
personalSummaries?: Array<{
|
|
1314
|
-
genderType
|
|
1315
|
-
date
|
|
1316
|
-
birthDate
|
|
1317
|
-
ethnicity
|
|
1318
|
-
maritalStatusCode
|
|
1319
|
-
religiousAffiliationName
|
|
1333
|
+
genderType: 0 | 1;
|
|
1334
|
+
date: string;
|
|
1335
|
+
birthDate: string;
|
|
1336
|
+
ethnicity: string;
|
|
1337
|
+
maritalStatusCode: string;
|
|
1338
|
+
religiousAffiliationName: string;
|
|
1320
1339
|
}> | null;
|
|
1321
1340
|
};
|
|
1322
1341
|
|
|
@@ -1431,72 +1450,72 @@ export type UpwithCrowd_FundraiserService_Individuals_UpdateIndividualDto = {
|
|
|
1431
1450
|
readonly extraProperties?: {
|
|
1432
1451
|
[key: string]: unknown;
|
|
1433
1452
|
} | null;
|
|
1434
|
-
name
|
|
1435
|
-
individualId
|
|
1436
|
-
salutation
|
|
1437
|
-
name
|
|
1438
|
-
suffix
|
|
1439
|
-
mailingName
|
|
1440
|
-
officialName
|
|
1453
|
+
name: {
|
|
1454
|
+
individualId: string;
|
|
1455
|
+
salutation: string;
|
|
1456
|
+
name: string;
|
|
1457
|
+
suffix: string;
|
|
1458
|
+
mailingName: string;
|
|
1459
|
+
officialName: string;
|
|
1441
1460
|
};
|
|
1442
|
-
contactInformation
|
|
1461
|
+
contactInformation: {
|
|
1443
1462
|
readonly extraProperties?: {
|
|
1444
1463
|
[key: string]: unknown;
|
|
1445
1464
|
} | null;
|
|
1446
|
-
startDate
|
|
1447
|
-
endDate
|
|
1448
|
-
telephones
|
|
1465
|
+
startDate: string;
|
|
1466
|
+
endDate: string;
|
|
1467
|
+
telephones: Array<{
|
|
1449
1468
|
readonly extraProperties?: {
|
|
1450
1469
|
[key: string]: unknown;
|
|
1451
1470
|
} | null;
|
|
1452
|
-
primaryFlag
|
|
1453
|
-
typeCode
|
|
1454
|
-
areaCode
|
|
1455
|
-
localNumber
|
|
1456
|
-
ituCountryCode
|
|
1457
|
-
}
|
|
1458
|
-
addresses
|
|
1471
|
+
primaryFlag: boolean;
|
|
1472
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
1473
|
+
areaCode: string;
|
|
1474
|
+
localNumber: string;
|
|
1475
|
+
ituCountryCode: string;
|
|
1476
|
+
}>;
|
|
1477
|
+
addresses: Array<{
|
|
1459
1478
|
readonly extraProperties?: {
|
|
1460
1479
|
[key: string]: unknown;
|
|
1461
1480
|
} | null;
|
|
1462
|
-
typeCode
|
|
1463
|
-
addressLine
|
|
1464
|
-
city
|
|
1465
|
-
terriority
|
|
1466
|
-
postalCode
|
|
1467
|
-
country
|
|
1468
|
-
fullAddress
|
|
1469
|
-
primaryFlag
|
|
1470
|
-
}
|
|
1471
|
-
emails
|
|
1481
|
+
typeCode: 0 | 1;
|
|
1482
|
+
addressLine: string;
|
|
1483
|
+
city: string;
|
|
1484
|
+
terriority: string;
|
|
1485
|
+
postalCode: string;
|
|
1486
|
+
country: string;
|
|
1487
|
+
fullAddress: string;
|
|
1488
|
+
primaryFlag: boolean;
|
|
1489
|
+
}>;
|
|
1490
|
+
emails: Array<{
|
|
1472
1491
|
readonly extraProperties?: {
|
|
1473
1492
|
[key: string]: unknown;
|
|
1474
1493
|
} | null;
|
|
1475
|
-
primaryFlag
|
|
1476
|
-
typeCode
|
|
1477
|
-
emailAddress
|
|
1478
|
-
}
|
|
1494
|
+
primaryFlag: boolean;
|
|
1495
|
+
typeCode: 0 | 1;
|
|
1496
|
+
emailAddress: string;
|
|
1497
|
+
}>;
|
|
1479
1498
|
};
|
|
1480
1499
|
personalSummaries?: Array<{
|
|
1481
1500
|
id?: string;
|
|
1482
|
-
genderType
|
|
1483
|
-
individualId
|
|
1484
|
-
date
|
|
1485
|
-
birthDate
|
|
1486
|
-
ethnicity
|
|
1487
|
-
maritalStatusCode
|
|
1488
|
-
religiousAffiliationName
|
|
1501
|
+
genderType: 0 | 1;
|
|
1502
|
+
individualId: string;
|
|
1503
|
+
date: string;
|
|
1504
|
+
birthDate: string;
|
|
1505
|
+
ethnicity: string;
|
|
1506
|
+
maritalStatusCode: string;
|
|
1507
|
+
religiousAffiliationName: string;
|
|
1489
1508
|
}> | null;
|
|
1490
|
-
entityInformationTypeId
|
|
1491
|
-
contactInformationId
|
|
1509
|
+
entityInformationTypeId: string;
|
|
1510
|
+
contactInformationId: string;
|
|
1492
1511
|
};
|
|
1493
1512
|
|
|
1494
1513
|
export type UpwithCrowd_FundraiserService_NameCommonDatas_CreateNameCommonDataDto = {
|
|
1495
|
-
salutation
|
|
1496
|
-
name
|
|
1497
|
-
suffix
|
|
1498
|
-
mailingName
|
|
1499
|
-
officialName
|
|
1514
|
+
salutation: string;
|
|
1515
|
+
name: string;
|
|
1516
|
+
suffix: string;
|
|
1517
|
+
mailingName: string;
|
|
1518
|
+
officialName: string;
|
|
1500
1519
|
};
|
|
1501
1520
|
|
|
1502
1521
|
export type UpwithCrowd_FundraiserService_NameCommonDatas_NameCommonDataDto = {
|
|
@@ -1517,55 +1536,55 @@ export type UpwithCrowd_FundraiserService_NameCommonDatas_NameCommonDataDto = {
|
|
|
1517
1536
|
};
|
|
1518
1537
|
|
|
1519
1538
|
export type UpwithCrowd_FundraiserService_NameCommonDatas_UpdateNameCommonDataDto = {
|
|
1520
|
-
individualId
|
|
1521
|
-
salutation
|
|
1522
|
-
name
|
|
1523
|
-
suffix
|
|
1524
|
-
mailingName
|
|
1525
|
-
officialName
|
|
1539
|
+
individualId: string;
|
|
1540
|
+
salutation: string;
|
|
1541
|
+
name: string;
|
|
1542
|
+
suffix: string;
|
|
1543
|
+
mailingName: string;
|
|
1544
|
+
officialName: string;
|
|
1526
1545
|
};
|
|
1527
1546
|
|
|
1528
1547
|
export type UpwithCrowd_FundraiserService_Organizations_CreateOrganizationDto = {
|
|
1529
1548
|
readonly extraProperties?: {
|
|
1530
1549
|
[key: string]: unknown;
|
|
1531
1550
|
} | null;
|
|
1532
|
-
name
|
|
1533
|
-
taxpayerId
|
|
1534
|
-
legalStatusCode
|
|
1535
|
-
contactInformation
|
|
1551
|
+
name: string;
|
|
1552
|
+
taxpayerId: string;
|
|
1553
|
+
legalStatusCode: string;
|
|
1554
|
+
contactInformation: {
|
|
1536
1555
|
readonly extraProperties?: {
|
|
1537
1556
|
[key: string]: unknown;
|
|
1538
1557
|
} | null;
|
|
1539
|
-
startDate
|
|
1540
|
-
endDate
|
|
1541
|
-
telephones
|
|
1542
|
-
primaryFlag
|
|
1543
|
-
typeCode
|
|
1544
|
-
areaCode
|
|
1545
|
-
localNumber
|
|
1546
|
-
ituCountryCode
|
|
1547
|
-
}
|
|
1548
|
-
addresses
|
|
1558
|
+
startDate: string;
|
|
1559
|
+
endDate: string;
|
|
1560
|
+
telephones: Array<{
|
|
1561
|
+
primaryFlag: boolean;
|
|
1562
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
1563
|
+
areaCode: string;
|
|
1564
|
+
localNumber: string;
|
|
1565
|
+
ituCountryCode: string;
|
|
1566
|
+
}>;
|
|
1567
|
+
addresses: Array<{
|
|
1549
1568
|
readonly extraProperties?: {
|
|
1550
1569
|
[key: string]: unknown;
|
|
1551
1570
|
} | null;
|
|
1552
|
-
typeCode
|
|
1553
|
-
addressLine
|
|
1554
|
-
city
|
|
1555
|
-
terriority
|
|
1556
|
-
postalCode
|
|
1557
|
-
country
|
|
1558
|
-
fullAddress
|
|
1559
|
-
primaryFlag
|
|
1560
|
-
}
|
|
1561
|
-
emails
|
|
1571
|
+
typeCode: 0 | 1;
|
|
1572
|
+
addressLine: string;
|
|
1573
|
+
city: string;
|
|
1574
|
+
terriority: string;
|
|
1575
|
+
postalCode: string;
|
|
1576
|
+
country: string;
|
|
1577
|
+
fullAddress: string;
|
|
1578
|
+
primaryFlag: boolean;
|
|
1579
|
+
}>;
|
|
1580
|
+
emails: Array<{
|
|
1562
1581
|
readonly extraProperties?: {
|
|
1563
1582
|
[key: string]: unknown;
|
|
1564
1583
|
} | null;
|
|
1565
|
-
primaryFlag
|
|
1566
|
-
typeCode
|
|
1567
|
-
emailAddress
|
|
1568
|
-
}
|
|
1584
|
+
primaryFlag: boolean;
|
|
1585
|
+
typeCode: 0 | 1;
|
|
1586
|
+
emailAddress: string;
|
|
1587
|
+
}>;
|
|
1569
1588
|
};
|
|
1570
1589
|
};
|
|
1571
1590
|
|
|
@@ -1645,56 +1664,56 @@ export type UpwithCrowd_FundraiserService_Organizations_OrganizationDto = {
|
|
|
1645
1664
|
};
|
|
1646
1665
|
|
|
1647
1666
|
export type UpwithCrowd_FundraiserService_Organizations_UpdateOrganizationDto = {
|
|
1648
|
-
name
|
|
1649
|
-
taxpayerId
|
|
1650
|
-
legalStatusCode
|
|
1651
|
-
contactInformation
|
|
1667
|
+
name: string;
|
|
1668
|
+
taxpayerId: string;
|
|
1669
|
+
legalStatusCode: string;
|
|
1670
|
+
contactInformation: {
|
|
1652
1671
|
readonly extraProperties?: {
|
|
1653
1672
|
[key: string]: unknown;
|
|
1654
1673
|
} | null;
|
|
1655
|
-
startDate
|
|
1656
|
-
endDate
|
|
1657
|
-
telephones
|
|
1674
|
+
startDate: string;
|
|
1675
|
+
endDate: string;
|
|
1676
|
+
telephones: Array<{
|
|
1658
1677
|
readonly extraProperties?: {
|
|
1659
1678
|
[key: string]: unknown;
|
|
1660
1679
|
} | null;
|
|
1661
|
-
primaryFlag
|
|
1662
|
-
typeCode
|
|
1663
|
-
areaCode
|
|
1664
|
-
localNumber
|
|
1665
|
-
ituCountryCode
|
|
1666
|
-
}
|
|
1667
|
-
addresses
|
|
1680
|
+
primaryFlag: boolean;
|
|
1681
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
1682
|
+
areaCode: string;
|
|
1683
|
+
localNumber: string;
|
|
1684
|
+
ituCountryCode: string;
|
|
1685
|
+
}>;
|
|
1686
|
+
addresses: Array<{
|
|
1668
1687
|
readonly extraProperties?: {
|
|
1669
1688
|
[key: string]: unknown;
|
|
1670
1689
|
} | null;
|
|
1671
|
-
typeCode
|
|
1672
|
-
addressLine
|
|
1673
|
-
city
|
|
1674
|
-
terriority
|
|
1675
|
-
postalCode
|
|
1676
|
-
country
|
|
1677
|
-
fullAddress
|
|
1678
|
-
primaryFlag
|
|
1679
|
-
}
|
|
1680
|
-
emails
|
|
1690
|
+
typeCode: 0 | 1;
|
|
1691
|
+
addressLine: string;
|
|
1692
|
+
city: string;
|
|
1693
|
+
terriority: string;
|
|
1694
|
+
postalCode: string;
|
|
1695
|
+
country: string;
|
|
1696
|
+
fullAddress: string;
|
|
1697
|
+
primaryFlag: boolean;
|
|
1698
|
+
}>;
|
|
1699
|
+
emails: Array<{
|
|
1681
1700
|
readonly extraProperties?: {
|
|
1682
1701
|
[key: string]: unknown;
|
|
1683
1702
|
} | null;
|
|
1684
|
-
primaryFlag
|
|
1685
|
-
typeCode
|
|
1686
|
-
emailAddress
|
|
1687
|
-
}
|
|
1703
|
+
primaryFlag: boolean;
|
|
1704
|
+
typeCode: 0 | 1;
|
|
1705
|
+
emailAddress: string;
|
|
1706
|
+
}>;
|
|
1688
1707
|
};
|
|
1689
1708
|
};
|
|
1690
1709
|
|
|
1691
1710
|
export type UpwithCrowd_FundraiserService_PersonalSummaries_CreatePersonalSummaryDto = {
|
|
1692
|
-
genderType
|
|
1693
|
-
date
|
|
1694
|
-
birthDate
|
|
1695
|
-
ethnicity
|
|
1696
|
-
maritalStatusCode
|
|
1697
|
-
religiousAffiliationName
|
|
1711
|
+
genderType: 0 | 1;
|
|
1712
|
+
date: string;
|
|
1713
|
+
birthDate: string;
|
|
1714
|
+
ethnicity: string;
|
|
1715
|
+
maritalStatusCode: string;
|
|
1716
|
+
religiousAffiliationName: string;
|
|
1698
1717
|
};
|
|
1699
1718
|
|
|
1700
1719
|
export type genderType = 0 | 1;
|
|
@@ -1719,21 +1738,21 @@ export type UpwithCrowd_FundraiserService_PersonalSummaries_PersonalSummaryDto =
|
|
|
1719
1738
|
|
|
1720
1739
|
export type UpwithCrowd_FundraiserService_PersonalSummaries_UpdatePersonalSummaryDto = {
|
|
1721
1740
|
id?: string;
|
|
1722
|
-
genderType
|
|
1723
|
-
individualId
|
|
1724
|
-
date
|
|
1725
|
-
birthDate
|
|
1726
|
-
ethnicity
|
|
1727
|
-
maritalStatusCode
|
|
1728
|
-
religiousAffiliationName
|
|
1741
|
+
genderType: 0 | 1;
|
|
1742
|
+
individualId: string;
|
|
1743
|
+
date: string;
|
|
1744
|
+
birthDate: string;
|
|
1745
|
+
ethnicity: string;
|
|
1746
|
+
maritalStatusCode: string;
|
|
1747
|
+
religiousAffiliationName: string;
|
|
1729
1748
|
};
|
|
1730
1749
|
|
|
1731
1750
|
export type UpwithCrowd_FundraiserService_TelephoneTypes_CreateTelephoneTypeDto = {
|
|
1732
|
-
primaryFlag
|
|
1733
|
-
typeCode
|
|
1734
|
-
areaCode
|
|
1735
|
-
localNumber
|
|
1736
|
-
ituCountryCode
|
|
1751
|
+
primaryFlag: boolean;
|
|
1752
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
1753
|
+
areaCode: string;
|
|
1754
|
+
localNumber: string;
|
|
1755
|
+
ituCountryCode: string;
|
|
1737
1756
|
};
|
|
1738
1757
|
|
|
1739
1758
|
export type typeCode2 = 0 | 1 | 2 | 3;
|
|
@@ -1759,11 +1778,11 @@ export type UpwithCrowd_FundraiserService_TelephoneTypes_UpdateTelephoneTypeDto
|
|
|
1759
1778
|
readonly extraProperties?: {
|
|
1760
1779
|
[key: string]: unknown;
|
|
1761
1780
|
} | null;
|
|
1762
|
-
primaryFlag
|
|
1763
|
-
typeCode
|
|
1764
|
-
areaCode
|
|
1765
|
-
localNumber
|
|
1766
|
-
ituCountryCode
|
|
1781
|
+
primaryFlag: boolean;
|
|
1782
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
1783
|
+
areaCode: string;
|
|
1784
|
+
localNumber: string;
|
|
1785
|
+
ituCountryCode: string;
|
|
1767
1786
|
};
|
|
1768
1787
|
|
|
1769
1788
|
export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
|
|
@@ -3437,117 +3456,117 @@ export type PostApiFundraiserServiceFundraisersData = {
|
|
|
3437
3456
|
readonly extraProperties?: {
|
|
3438
3457
|
[key: string]: unknown;
|
|
3439
3458
|
} | null;
|
|
3440
|
-
entityInformations
|
|
3459
|
+
entityInformations: Array<{
|
|
3441
3460
|
readonly extraProperties?: {
|
|
3442
3461
|
[key: string]: unknown;
|
|
3443
3462
|
} | null;
|
|
3444
|
-
partyType
|
|
3463
|
+
partyType: 0 | 1;
|
|
3445
3464
|
organizations?: Array<{
|
|
3446
3465
|
readonly extraProperties?: {
|
|
3447
3466
|
[key: string]: unknown;
|
|
3448
3467
|
} | null;
|
|
3449
|
-
name
|
|
3450
|
-
taxpayerId
|
|
3451
|
-
legalStatusCode
|
|
3452
|
-
contactInformation
|
|
3468
|
+
name: string;
|
|
3469
|
+
taxpayerId: string;
|
|
3470
|
+
legalStatusCode: string;
|
|
3471
|
+
contactInformation: {
|
|
3453
3472
|
readonly extraProperties?: {
|
|
3454
3473
|
[key: string]: unknown;
|
|
3455
3474
|
} | null;
|
|
3456
|
-
startDate
|
|
3457
|
-
endDate
|
|
3458
|
-
telephones
|
|
3459
|
-
primaryFlag
|
|
3460
|
-
typeCode
|
|
3461
|
-
areaCode
|
|
3462
|
-
localNumber
|
|
3463
|
-
ituCountryCode
|
|
3464
|
-
}
|
|
3465
|
-
addresses
|
|
3475
|
+
startDate: string;
|
|
3476
|
+
endDate: string;
|
|
3477
|
+
telephones: Array<{
|
|
3478
|
+
primaryFlag: boolean;
|
|
3479
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
3480
|
+
areaCode: string;
|
|
3481
|
+
localNumber: string;
|
|
3482
|
+
ituCountryCode: string;
|
|
3483
|
+
}>;
|
|
3484
|
+
addresses: Array<{
|
|
3466
3485
|
readonly extraProperties?: {
|
|
3467
3486
|
[key: string]: unknown;
|
|
3468
3487
|
} | null;
|
|
3469
|
-
typeCode
|
|
3470
|
-
addressLine
|
|
3471
|
-
city
|
|
3472
|
-
terriority
|
|
3473
|
-
postalCode
|
|
3474
|
-
country
|
|
3475
|
-
fullAddress
|
|
3476
|
-
primaryFlag
|
|
3477
|
-
}
|
|
3478
|
-
emails
|
|
3488
|
+
typeCode: 0 | 1;
|
|
3489
|
+
addressLine: string;
|
|
3490
|
+
city: string;
|
|
3491
|
+
terriority: string;
|
|
3492
|
+
postalCode: string;
|
|
3493
|
+
country: string;
|
|
3494
|
+
fullAddress: string;
|
|
3495
|
+
primaryFlag: boolean;
|
|
3496
|
+
}>;
|
|
3497
|
+
emails: Array<{
|
|
3479
3498
|
readonly extraProperties?: {
|
|
3480
3499
|
[key: string]: unknown;
|
|
3481
3500
|
} | null;
|
|
3482
|
-
primaryFlag
|
|
3483
|
-
typeCode
|
|
3484
|
-
emailAddress
|
|
3485
|
-
}
|
|
3501
|
+
primaryFlag: boolean;
|
|
3502
|
+
typeCode: 0 | 1;
|
|
3503
|
+
emailAddress: string;
|
|
3504
|
+
}>;
|
|
3486
3505
|
};
|
|
3487
3506
|
}> | null;
|
|
3488
3507
|
individuals?: Array<{
|
|
3489
3508
|
readonly extraProperties?: {
|
|
3490
3509
|
[key: string]: unknown;
|
|
3491
3510
|
} | null;
|
|
3492
|
-
name
|
|
3493
|
-
salutation
|
|
3494
|
-
name
|
|
3495
|
-
suffix
|
|
3496
|
-
mailingName
|
|
3497
|
-
officialName
|
|
3498
|
-
};
|
|
3499
|
-
contactInformation
|
|
3511
|
+
name: {
|
|
3512
|
+
salutation: string;
|
|
3513
|
+
name: string;
|
|
3514
|
+
suffix: string;
|
|
3515
|
+
mailingName: string;
|
|
3516
|
+
officialName: string;
|
|
3517
|
+
};
|
|
3518
|
+
contactInformation: {
|
|
3500
3519
|
readonly extraProperties?: {
|
|
3501
3520
|
[key: string]: unknown;
|
|
3502
3521
|
} | null;
|
|
3503
|
-
startDate
|
|
3504
|
-
endDate
|
|
3505
|
-
telephones
|
|
3506
|
-
primaryFlag
|
|
3507
|
-
typeCode
|
|
3508
|
-
areaCode
|
|
3509
|
-
localNumber
|
|
3510
|
-
ituCountryCode
|
|
3511
|
-
}
|
|
3512
|
-
addresses
|
|
3522
|
+
startDate: string;
|
|
3523
|
+
endDate: string;
|
|
3524
|
+
telephones: Array<{
|
|
3525
|
+
primaryFlag: boolean;
|
|
3526
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
3527
|
+
areaCode: string;
|
|
3528
|
+
localNumber: string;
|
|
3529
|
+
ituCountryCode: string;
|
|
3530
|
+
}>;
|
|
3531
|
+
addresses: Array<{
|
|
3513
3532
|
readonly extraProperties?: {
|
|
3514
3533
|
[key: string]: unknown;
|
|
3515
3534
|
} | null;
|
|
3516
|
-
typeCode
|
|
3517
|
-
addressLine
|
|
3518
|
-
city
|
|
3519
|
-
terriority
|
|
3520
|
-
postalCode
|
|
3521
|
-
country
|
|
3522
|
-
fullAddress
|
|
3523
|
-
primaryFlag
|
|
3524
|
-
}
|
|
3525
|
-
emails
|
|
3535
|
+
typeCode: 0 | 1;
|
|
3536
|
+
addressLine: string;
|
|
3537
|
+
city: string;
|
|
3538
|
+
terriority: string;
|
|
3539
|
+
postalCode: string;
|
|
3540
|
+
country: string;
|
|
3541
|
+
fullAddress: string;
|
|
3542
|
+
primaryFlag: boolean;
|
|
3543
|
+
}>;
|
|
3544
|
+
emails: Array<{
|
|
3526
3545
|
readonly extraProperties?: {
|
|
3527
3546
|
[key: string]: unknown;
|
|
3528
3547
|
} | null;
|
|
3529
|
-
primaryFlag
|
|
3530
|
-
typeCode
|
|
3531
|
-
emailAddress
|
|
3532
|
-
}
|
|
3548
|
+
primaryFlag: boolean;
|
|
3549
|
+
typeCode: 0 | 1;
|
|
3550
|
+
emailAddress: string;
|
|
3551
|
+
}>;
|
|
3533
3552
|
};
|
|
3534
3553
|
personalSummaries?: Array<{
|
|
3535
|
-
genderType
|
|
3536
|
-
date
|
|
3537
|
-
birthDate
|
|
3538
|
-
ethnicity
|
|
3539
|
-
maritalStatusCode
|
|
3540
|
-
religiousAffiliationName
|
|
3554
|
+
genderType: 0 | 1;
|
|
3555
|
+
date: string;
|
|
3556
|
+
birthDate: string;
|
|
3557
|
+
ethnicity: string;
|
|
3558
|
+
maritalStatusCode: string;
|
|
3559
|
+
religiousAffiliationName: string;
|
|
3541
3560
|
}> | null;
|
|
3542
3561
|
}> | null;
|
|
3543
|
-
}
|
|
3562
|
+
}>;
|
|
3544
3563
|
affiliations?: Array<{
|
|
3545
3564
|
readonly extraProperties?: {
|
|
3546
3565
|
[key: string]: unknown;
|
|
3547
3566
|
} | null;
|
|
3548
|
-
name
|
|
3549
|
-
description
|
|
3550
|
-
affiliationTypeCode
|
|
3567
|
+
name: string;
|
|
3568
|
+
description: string;
|
|
3569
|
+
affiliationTypeCode: 0 | 1 | 2;
|
|
3551
3570
|
}> | null;
|
|
3552
3571
|
};
|
|
3553
3572
|
};
|
|
@@ -4000,115 +4019,115 @@ export type PutApiFundraiserServiceFundraisersData = {
|
|
|
4000
4019
|
readonly extraProperties?: {
|
|
4001
4020
|
[key: string]: unknown;
|
|
4002
4021
|
} | null;
|
|
4003
|
-
entityInformations
|
|
4004
|
-
partyType
|
|
4022
|
+
entityInformations: Array<{
|
|
4023
|
+
partyType: 0 | 1;
|
|
4005
4024
|
organizations?: Array<{
|
|
4006
|
-
name
|
|
4007
|
-
taxpayerId
|
|
4008
|
-
legalStatusCode
|
|
4009
|
-
contactInformation
|
|
4025
|
+
name: string;
|
|
4026
|
+
taxpayerId: string;
|
|
4027
|
+
legalStatusCode: string;
|
|
4028
|
+
contactInformation: {
|
|
4010
4029
|
readonly extraProperties?: {
|
|
4011
4030
|
[key: string]: unknown;
|
|
4012
4031
|
} | null;
|
|
4013
|
-
startDate
|
|
4014
|
-
endDate
|
|
4015
|
-
telephones
|
|
4032
|
+
startDate: string;
|
|
4033
|
+
endDate: string;
|
|
4034
|
+
telephones: Array<{
|
|
4016
4035
|
readonly extraProperties?: {
|
|
4017
4036
|
[key: string]: unknown;
|
|
4018
4037
|
} | null;
|
|
4019
|
-
primaryFlag
|
|
4020
|
-
typeCode
|
|
4021
|
-
areaCode
|
|
4022
|
-
localNumber
|
|
4023
|
-
ituCountryCode
|
|
4024
|
-
}
|
|
4025
|
-
addresses
|
|
4038
|
+
primaryFlag: boolean;
|
|
4039
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
4040
|
+
areaCode: string;
|
|
4041
|
+
localNumber: string;
|
|
4042
|
+
ituCountryCode: string;
|
|
4043
|
+
}>;
|
|
4044
|
+
addresses: Array<{
|
|
4026
4045
|
readonly extraProperties?: {
|
|
4027
4046
|
[key: string]: unknown;
|
|
4028
4047
|
} | null;
|
|
4029
|
-
typeCode
|
|
4030
|
-
addressLine
|
|
4031
|
-
city
|
|
4032
|
-
terriority
|
|
4033
|
-
postalCode
|
|
4034
|
-
country
|
|
4035
|
-
fullAddress
|
|
4036
|
-
primaryFlag
|
|
4037
|
-
}
|
|
4038
|
-
emails
|
|
4048
|
+
typeCode: 0 | 1;
|
|
4049
|
+
addressLine: string;
|
|
4050
|
+
city: string;
|
|
4051
|
+
terriority: string;
|
|
4052
|
+
postalCode: string;
|
|
4053
|
+
country: string;
|
|
4054
|
+
fullAddress: string;
|
|
4055
|
+
primaryFlag: boolean;
|
|
4056
|
+
}>;
|
|
4057
|
+
emails: Array<{
|
|
4039
4058
|
readonly extraProperties?: {
|
|
4040
4059
|
[key: string]: unknown;
|
|
4041
4060
|
} | null;
|
|
4042
|
-
primaryFlag
|
|
4043
|
-
typeCode
|
|
4044
|
-
emailAddress
|
|
4045
|
-
}
|
|
4061
|
+
primaryFlag: boolean;
|
|
4062
|
+
typeCode: 0 | 1;
|
|
4063
|
+
emailAddress: string;
|
|
4064
|
+
}>;
|
|
4046
4065
|
};
|
|
4047
4066
|
}> | null;
|
|
4048
4067
|
individuals?: Array<{
|
|
4049
4068
|
readonly extraProperties?: {
|
|
4050
4069
|
[key: string]: unknown;
|
|
4051
4070
|
} | null;
|
|
4052
|
-
name
|
|
4053
|
-
individualId
|
|
4054
|
-
salutation
|
|
4055
|
-
name
|
|
4056
|
-
suffix
|
|
4057
|
-
mailingName
|
|
4058
|
-
officialName
|
|
4059
|
-
};
|
|
4060
|
-
contactInformation
|
|
4071
|
+
name: {
|
|
4072
|
+
individualId: string;
|
|
4073
|
+
salutation: string;
|
|
4074
|
+
name: string;
|
|
4075
|
+
suffix: string;
|
|
4076
|
+
mailingName: string;
|
|
4077
|
+
officialName: string;
|
|
4078
|
+
};
|
|
4079
|
+
contactInformation: {
|
|
4061
4080
|
readonly extraProperties?: {
|
|
4062
4081
|
[key: string]: unknown;
|
|
4063
4082
|
} | null;
|
|
4064
|
-
startDate
|
|
4065
|
-
endDate
|
|
4066
|
-
telephones
|
|
4083
|
+
startDate: string;
|
|
4084
|
+
endDate: string;
|
|
4085
|
+
telephones: Array<{
|
|
4067
4086
|
readonly extraProperties?: {
|
|
4068
4087
|
[key: string]: unknown;
|
|
4069
4088
|
} | null;
|
|
4070
|
-
primaryFlag
|
|
4071
|
-
typeCode
|
|
4072
|
-
areaCode
|
|
4073
|
-
localNumber
|
|
4074
|
-
ituCountryCode
|
|
4075
|
-
}
|
|
4076
|
-
addresses
|
|
4089
|
+
primaryFlag: boolean;
|
|
4090
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
4091
|
+
areaCode: string;
|
|
4092
|
+
localNumber: string;
|
|
4093
|
+
ituCountryCode: string;
|
|
4094
|
+
}>;
|
|
4095
|
+
addresses: Array<{
|
|
4077
4096
|
readonly extraProperties?: {
|
|
4078
4097
|
[key: string]: unknown;
|
|
4079
4098
|
} | null;
|
|
4080
|
-
typeCode
|
|
4081
|
-
addressLine
|
|
4082
|
-
city
|
|
4083
|
-
terriority
|
|
4084
|
-
postalCode
|
|
4085
|
-
country
|
|
4086
|
-
fullAddress
|
|
4087
|
-
primaryFlag
|
|
4088
|
-
}
|
|
4089
|
-
emails
|
|
4099
|
+
typeCode: 0 | 1;
|
|
4100
|
+
addressLine: string;
|
|
4101
|
+
city: string;
|
|
4102
|
+
terriority: string;
|
|
4103
|
+
postalCode: string;
|
|
4104
|
+
country: string;
|
|
4105
|
+
fullAddress: string;
|
|
4106
|
+
primaryFlag: boolean;
|
|
4107
|
+
}>;
|
|
4108
|
+
emails: Array<{
|
|
4090
4109
|
readonly extraProperties?: {
|
|
4091
4110
|
[key: string]: unknown;
|
|
4092
4111
|
} | null;
|
|
4093
|
-
primaryFlag
|
|
4094
|
-
typeCode
|
|
4095
|
-
emailAddress
|
|
4096
|
-
}
|
|
4112
|
+
primaryFlag: boolean;
|
|
4113
|
+
typeCode: 0 | 1;
|
|
4114
|
+
emailAddress: string;
|
|
4115
|
+
}>;
|
|
4097
4116
|
};
|
|
4098
4117
|
personalSummaries?: Array<{
|
|
4099
4118
|
id?: string;
|
|
4100
|
-
genderType
|
|
4101
|
-
individualId
|
|
4102
|
-
date
|
|
4103
|
-
birthDate
|
|
4104
|
-
ethnicity
|
|
4105
|
-
maritalStatusCode
|
|
4106
|
-
religiousAffiliationName
|
|
4119
|
+
genderType: 0 | 1;
|
|
4120
|
+
individualId: string;
|
|
4121
|
+
date: string;
|
|
4122
|
+
birthDate: string;
|
|
4123
|
+
ethnicity: string;
|
|
4124
|
+
maritalStatusCode: string;
|
|
4125
|
+
religiousAffiliationName: string;
|
|
4107
4126
|
}> | null;
|
|
4108
|
-
entityInformationTypeId
|
|
4109
|
-
contactInformationId
|
|
4127
|
+
entityInformationTypeId: string;
|
|
4128
|
+
contactInformationId: string;
|
|
4110
4129
|
}> | null;
|
|
4111
|
-
}
|
|
4130
|
+
}>;
|
|
4112
4131
|
affiliations?: Array<{
|
|
4113
4132
|
readonly extraProperties?: {
|
|
4114
4133
|
[key: string]: unknown;
|
|
@@ -4573,14 +4592,14 @@ export type PostApiFundraiserServiceFundraisersEntityInformationTypeOrgIndContac
|
|
|
4573
4592
|
readonly extraProperties?: {
|
|
4574
4593
|
[key: string]: unknown;
|
|
4575
4594
|
} | null;
|
|
4576
|
-
typeCode
|
|
4577
|
-
addressLine
|
|
4578
|
-
city
|
|
4579
|
-
terriority
|
|
4580
|
-
postalCode
|
|
4581
|
-
country
|
|
4582
|
-
fullAddress
|
|
4583
|
-
primaryFlag
|
|
4595
|
+
typeCode: 0 | 1;
|
|
4596
|
+
addressLine: string;
|
|
4597
|
+
city: string;
|
|
4598
|
+
terriority: string;
|
|
4599
|
+
postalCode: string;
|
|
4600
|
+
country: string;
|
|
4601
|
+
fullAddress: string;
|
|
4602
|
+
primaryFlag: boolean;
|
|
4584
4603
|
}>;
|
|
4585
4604
|
};
|
|
4586
4605
|
|
|
@@ -4592,9 +4611,9 @@ export type PostApiFundraiserServiceFundraisersEntityInformationTypeOrgIndContac
|
|
|
4592
4611
|
readonly extraProperties?: {
|
|
4593
4612
|
[key: string]: unknown;
|
|
4594
4613
|
} | null;
|
|
4595
|
-
primaryFlag
|
|
4596
|
-
typeCode
|
|
4597
|
-
emailAddress
|
|
4614
|
+
primaryFlag: boolean;
|
|
4615
|
+
typeCode: 0 | 1;
|
|
4616
|
+
emailAddress: string;
|
|
4598
4617
|
}>;
|
|
4599
4618
|
};
|
|
4600
4619
|
|
|
@@ -4603,11 +4622,11 @@ export type PostApiFundraiserServiceFundraisersEntityInformationTypeOrgIndContac
|
|
|
4603
4622
|
export type PostApiFundraiserServiceFundraisersEntityInformationTypeOrgIndContactInformationTypeTelephoneByContactInformationTypeIdData = {
|
|
4604
4623
|
contactInformationTypeId: string;
|
|
4605
4624
|
requestBody?: Array<{
|
|
4606
|
-
primaryFlag
|
|
4607
|
-
typeCode
|
|
4608
|
-
areaCode
|
|
4609
|
-
localNumber
|
|
4610
|
-
ituCountryCode
|
|
4625
|
+
primaryFlag: boolean;
|
|
4626
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
4627
|
+
areaCode: string;
|
|
4628
|
+
localNumber: string;
|
|
4629
|
+
ituCountryCode: string;
|
|
4611
4630
|
}>;
|
|
4612
4631
|
};
|
|
4613
4632
|
|
|
@@ -4616,12 +4635,12 @@ export type PostApiFundraiserServiceFundraisersEntityInformationTypeOrgIndContac
|
|
|
4616
4635
|
export type PostApiFundraiserServiceFundraisersEntityInformationTypeIndividualPersonalSummaryByIndividualIdData = {
|
|
4617
4636
|
individualId: string;
|
|
4618
4637
|
requestBody?: {
|
|
4619
|
-
genderType
|
|
4620
|
-
date
|
|
4621
|
-
birthDate
|
|
4622
|
-
ethnicity
|
|
4623
|
-
maritalStatusCode
|
|
4624
|
-
religiousAffiliationName
|
|
4638
|
+
genderType: 0 | 1;
|
|
4639
|
+
date: string;
|
|
4640
|
+
birthDate: string;
|
|
4641
|
+
ethnicity: string;
|
|
4642
|
+
maritalStatusCode: string;
|
|
4643
|
+
religiousAffiliationName: string;
|
|
4625
4644
|
};
|
|
4626
4645
|
};
|
|
4627
4646
|
|
|
@@ -4649,55 +4668,55 @@ export type PostApiFundraiserServiceFundraisersEntityInformationTypeIndividualBy
|
|
|
4649
4668
|
readonly extraProperties?: {
|
|
4650
4669
|
[key: string]: unknown;
|
|
4651
4670
|
} | null;
|
|
4652
|
-
name
|
|
4653
|
-
salutation
|
|
4654
|
-
name
|
|
4655
|
-
suffix
|
|
4656
|
-
mailingName
|
|
4657
|
-
officialName
|
|
4671
|
+
name: {
|
|
4672
|
+
salutation: string;
|
|
4673
|
+
name: string;
|
|
4674
|
+
suffix: string;
|
|
4675
|
+
mailingName: string;
|
|
4676
|
+
officialName: string;
|
|
4658
4677
|
};
|
|
4659
|
-
contactInformation
|
|
4678
|
+
contactInformation: {
|
|
4660
4679
|
readonly extraProperties?: {
|
|
4661
4680
|
[key: string]: unknown;
|
|
4662
4681
|
} | null;
|
|
4663
|
-
startDate
|
|
4664
|
-
endDate
|
|
4665
|
-
telephones
|
|
4666
|
-
primaryFlag
|
|
4667
|
-
typeCode
|
|
4668
|
-
areaCode
|
|
4669
|
-
localNumber
|
|
4670
|
-
ituCountryCode
|
|
4671
|
-
}
|
|
4672
|
-
addresses
|
|
4682
|
+
startDate: string;
|
|
4683
|
+
endDate: string;
|
|
4684
|
+
telephones: Array<{
|
|
4685
|
+
primaryFlag: boolean;
|
|
4686
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
4687
|
+
areaCode: string;
|
|
4688
|
+
localNumber: string;
|
|
4689
|
+
ituCountryCode: string;
|
|
4690
|
+
}>;
|
|
4691
|
+
addresses: Array<{
|
|
4673
4692
|
readonly extraProperties?: {
|
|
4674
4693
|
[key: string]: unknown;
|
|
4675
4694
|
} | null;
|
|
4676
|
-
typeCode
|
|
4677
|
-
addressLine
|
|
4678
|
-
city
|
|
4679
|
-
terriority
|
|
4680
|
-
postalCode
|
|
4681
|
-
country
|
|
4682
|
-
fullAddress
|
|
4683
|
-
primaryFlag
|
|
4684
|
-
}
|
|
4685
|
-
emails
|
|
4695
|
+
typeCode: 0 | 1;
|
|
4696
|
+
addressLine: string;
|
|
4697
|
+
city: string;
|
|
4698
|
+
terriority: string;
|
|
4699
|
+
postalCode: string;
|
|
4700
|
+
country: string;
|
|
4701
|
+
fullAddress: string;
|
|
4702
|
+
primaryFlag: boolean;
|
|
4703
|
+
}>;
|
|
4704
|
+
emails: Array<{
|
|
4686
4705
|
readonly extraProperties?: {
|
|
4687
4706
|
[key: string]: unknown;
|
|
4688
4707
|
} | null;
|
|
4689
|
-
primaryFlag
|
|
4690
|
-
typeCode
|
|
4691
|
-
emailAddress
|
|
4692
|
-
}
|
|
4708
|
+
primaryFlag: boolean;
|
|
4709
|
+
typeCode: 0 | 1;
|
|
4710
|
+
emailAddress: string;
|
|
4711
|
+
}>;
|
|
4693
4712
|
};
|
|
4694
4713
|
personalSummaries?: Array<{
|
|
4695
|
-
genderType
|
|
4696
|
-
date
|
|
4697
|
-
birthDate
|
|
4698
|
-
ethnicity
|
|
4699
|
-
maritalStatusCode
|
|
4700
|
-
religiousAffiliationName
|
|
4714
|
+
genderType: 0 | 1;
|
|
4715
|
+
date: string;
|
|
4716
|
+
birthDate: string;
|
|
4717
|
+
ethnicity: string;
|
|
4718
|
+
maritalStatusCode: string;
|
|
4719
|
+
religiousAffiliationName: string;
|
|
4701
4720
|
}> | null;
|
|
4702
4721
|
};
|
|
4703
4722
|
};
|
|
@@ -4814,55 +4833,55 @@ export type PostApiFundraiserServiceFundraisersIndepentIndividualData = {
|
|
|
4814
4833
|
readonly extraProperties?: {
|
|
4815
4834
|
[key: string]: unknown;
|
|
4816
4835
|
} | null;
|
|
4817
|
-
name
|
|
4818
|
-
salutation
|
|
4819
|
-
name
|
|
4820
|
-
suffix
|
|
4821
|
-
mailingName
|
|
4822
|
-
officialName
|
|
4836
|
+
name: {
|
|
4837
|
+
salutation: string;
|
|
4838
|
+
name: string;
|
|
4839
|
+
suffix: string;
|
|
4840
|
+
mailingName: string;
|
|
4841
|
+
officialName: string;
|
|
4823
4842
|
};
|
|
4824
|
-
contactInformation
|
|
4843
|
+
contactInformation: {
|
|
4825
4844
|
readonly extraProperties?: {
|
|
4826
4845
|
[key: string]: unknown;
|
|
4827
4846
|
} | null;
|
|
4828
|
-
startDate
|
|
4829
|
-
endDate
|
|
4830
|
-
telephones
|
|
4831
|
-
primaryFlag
|
|
4832
|
-
typeCode
|
|
4833
|
-
areaCode
|
|
4834
|
-
localNumber
|
|
4835
|
-
ituCountryCode
|
|
4836
|
-
}
|
|
4837
|
-
addresses
|
|
4847
|
+
startDate: string;
|
|
4848
|
+
endDate: string;
|
|
4849
|
+
telephones: Array<{
|
|
4850
|
+
primaryFlag: boolean;
|
|
4851
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
4852
|
+
areaCode: string;
|
|
4853
|
+
localNumber: string;
|
|
4854
|
+
ituCountryCode: string;
|
|
4855
|
+
}>;
|
|
4856
|
+
addresses: Array<{
|
|
4838
4857
|
readonly extraProperties?: {
|
|
4839
4858
|
[key: string]: unknown;
|
|
4840
4859
|
} | null;
|
|
4841
|
-
typeCode
|
|
4842
|
-
addressLine
|
|
4843
|
-
city
|
|
4844
|
-
terriority
|
|
4845
|
-
postalCode
|
|
4846
|
-
country
|
|
4847
|
-
fullAddress
|
|
4848
|
-
primaryFlag
|
|
4849
|
-
}
|
|
4850
|
-
emails
|
|
4860
|
+
typeCode: 0 | 1;
|
|
4861
|
+
addressLine: string;
|
|
4862
|
+
city: string;
|
|
4863
|
+
terriority: string;
|
|
4864
|
+
postalCode: string;
|
|
4865
|
+
country: string;
|
|
4866
|
+
fullAddress: string;
|
|
4867
|
+
primaryFlag: boolean;
|
|
4868
|
+
}>;
|
|
4869
|
+
emails: Array<{
|
|
4851
4870
|
readonly extraProperties?: {
|
|
4852
4871
|
[key: string]: unknown;
|
|
4853
4872
|
} | null;
|
|
4854
|
-
primaryFlag
|
|
4855
|
-
typeCode
|
|
4856
|
-
emailAddress
|
|
4857
|
-
}
|
|
4873
|
+
primaryFlag: boolean;
|
|
4874
|
+
typeCode: 0 | 1;
|
|
4875
|
+
emailAddress: string;
|
|
4876
|
+
}>;
|
|
4858
4877
|
};
|
|
4859
4878
|
personalSummaries?: Array<{
|
|
4860
|
-
genderType
|
|
4861
|
-
date
|
|
4862
|
-
birthDate
|
|
4863
|
-
ethnicity
|
|
4864
|
-
maritalStatusCode
|
|
4865
|
-
religiousAffiliationName
|
|
4879
|
+
genderType: 0 | 1;
|
|
4880
|
+
date: string;
|
|
4881
|
+
birthDate: string;
|
|
4882
|
+
ethnicity: string;
|
|
4883
|
+
maritalStatusCode: string;
|
|
4884
|
+
religiousAffiliationName: string;
|
|
4866
4885
|
}> | null;
|
|
4867
4886
|
};
|
|
4868
4887
|
};
|
|
@@ -4980,43 +4999,43 @@ export type PostApiFundraiserServiceFundraisersEntityInformationTypeOrganization
|
|
|
4980
4999
|
readonly extraProperties?: {
|
|
4981
5000
|
[key: string]: unknown;
|
|
4982
5001
|
} | null;
|
|
4983
|
-
name
|
|
4984
|
-
taxpayerId
|
|
4985
|
-
legalStatusCode
|
|
4986
|
-
contactInformation
|
|
5002
|
+
name: string;
|
|
5003
|
+
taxpayerId: string;
|
|
5004
|
+
legalStatusCode: string;
|
|
5005
|
+
contactInformation: {
|
|
4987
5006
|
readonly extraProperties?: {
|
|
4988
5007
|
[key: string]: unknown;
|
|
4989
5008
|
} | null;
|
|
4990
|
-
startDate
|
|
4991
|
-
endDate
|
|
4992
|
-
telephones
|
|
4993
|
-
primaryFlag
|
|
4994
|
-
typeCode
|
|
4995
|
-
areaCode
|
|
4996
|
-
localNumber
|
|
4997
|
-
ituCountryCode
|
|
4998
|
-
}
|
|
4999
|
-
addresses
|
|
5009
|
+
startDate: string;
|
|
5010
|
+
endDate: string;
|
|
5011
|
+
telephones: Array<{
|
|
5012
|
+
primaryFlag: boolean;
|
|
5013
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
5014
|
+
areaCode: string;
|
|
5015
|
+
localNumber: string;
|
|
5016
|
+
ituCountryCode: string;
|
|
5017
|
+
}>;
|
|
5018
|
+
addresses: Array<{
|
|
5000
5019
|
readonly extraProperties?: {
|
|
5001
5020
|
[key: string]: unknown;
|
|
5002
5021
|
} | null;
|
|
5003
|
-
typeCode
|
|
5004
|
-
addressLine
|
|
5005
|
-
city
|
|
5006
|
-
terriority
|
|
5007
|
-
postalCode
|
|
5008
|
-
country
|
|
5009
|
-
fullAddress
|
|
5010
|
-
primaryFlag
|
|
5011
|
-
}
|
|
5012
|
-
emails
|
|
5022
|
+
typeCode: 0 | 1;
|
|
5023
|
+
addressLine: string;
|
|
5024
|
+
city: string;
|
|
5025
|
+
terriority: string;
|
|
5026
|
+
postalCode: string;
|
|
5027
|
+
country: string;
|
|
5028
|
+
fullAddress: string;
|
|
5029
|
+
primaryFlag: boolean;
|
|
5030
|
+
}>;
|
|
5031
|
+
emails: Array<{
|
|
5013
5032
|
readonly extraProperties?: {
|
|
5014
5033
|
[key: string]: unknown;
|
|
5015
5034
|
} | null;
|
|
5016
|
-
primaryFlag
|
|
5017
|
-
typeCode
|
|
5018
|
-
emailAddress
|
|
5019
|
-
}
|
|
5035
|
+
primaryFlag: boolean;
|
|
5036
|
+
typeCode: 0 | 1;
|
|
5037
|
+
emailAddress: string;
|
|
5038
|
+
}>;
|
|
5020
5039
|
};
|
|
5021
5040
|
};
|
|
5022
5041
|
};
|
|
@@ -5101,43 +5120,43 @@ export type PostApiFundraiserServiceFundraisersIndepentOrganizationData = {
|
|
|
5101
5120
|
readonly extraProperties?: {
|
|
5102
5121
|
[key: string]: unknown;
|
|
5103
5122
|
} | null;
|
|
5104
|
-
name
|
|
5105
|
-
taxpayerId
|
|
5106
|
-
legalStatusCode
|
|
5107
|
-
contactInformation
|
|
5123
|
+
name: string;
|
|
5124
|
+
taxpayerId: string;
|
|
5125
|
+
legalStatusCode: string;
|
|
5126
|
+
contactInformation: {
|
|
5108
5127
|
readonly extraProperties?: {
|
|
5109
5128
|
[key: string]: unknown;
|
|
5110
5129
|
} | null;
|
|
5111
|
-
startDate
|
|
5112
|
-
endDate
|
|
5113
|
-
telephones
|
|
5114
|
-
primaryFlag
|
|
5115
|
-
typeCode
|
|
5116
|
-
areaCode
|
|
5117
|
-
localNumber
|
|
5118
|
-
ituCountryCode
|
|
5119
|
-
}
|
|
5120
|
-
addresses
|
|
5130
|
+
startDate: string;
|
|
5131
|
+
endDate: string;
|
|
5132
|
+
telephones: Array<{
|
|
5133
|
+
primaryFlag: boolean;
|
|
5134
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
5135
|
+
areaCode: string;
|
|
5136
|
+
localNumber: string;
|
|
5137
|
+
ituCountryCode: string;
|
|
5138
|
+
}>;
|
|
5139
|
+
addresses: Array<{
|
|
5121
5140
|
readonly extraProperties?: {
|
|
5122
5141
|
[key: string]: unknown;
|
|
5123
5142
|
} | null;
|
|
5124
|
-
typeCode
|
|
5125
|
-
addressLine
|
|
5126
|
-
city
|
|
5127
|
-
terriority
|
|
5128
|
-
postalCode
|
|
5129
|
-
country
|
|
5130
|
-
fullAddress
|
|
5131
|
-
primaryFlag
|
|
5132
|
-
}
|
|
5133
|
-
emails
|
|
5143
|
+
typeCode: 0 | 1;
|
|
5144
|
+
addressLine: string;
|
|
5145
|
+
city: string;
|
|
5146
|
+
terriority: string;
|
|
5147
|
+
postalCode: string;
|
|
5148
|
+
country: string;
|
|
5149
|
+
fullAddress: string;
|
|
5150
|
+
primaryFlag: boolean;
|
|
5151
|
+
}>;
|
|
5152
|
+
emails: Array<{
|
|
5134
5153
|
readonly extraProperties?: {
|
|
5135
5154
|
[key: string]: unknown;
|
|
5136
5155
|
} | null;
|
|
5137
|
-
primaryFlag
|
|
5138
|
-
typeCode
|
|
5139
|
-
emailAddress
|
|
5140
|
-
}
|
|
5156
|
+
primaryFlag: boolean;
|
|
5157
|
+
typeCode: 0 | 1;
|
|
5158
|
+
emailAddress: string;
|
|
5159
|
+
}>;
|
|
5141
5160
|
};
|
|
5142
5161
|
};
|
|
5143
5162
|
};
|
|
@@ -5223,103 +5242,103 @@ export type PostApiFundraiserServiceFundraisersEntityInformationTypeByFundraiser
|
|
|
5223
5242
|
readonly extraProperties?: {
|
|
5224
5243
|
[key: string]: unknown;
|
|
5225
5244
|
} | null;
|
|
5226
|
-
partyType
|
|
5245
|
+
partyType: 0 | 1;
|
|
5227
5246
|
organizations?: Array<{
|
|
5228
5247
|
readonly extraProperties?: {
|
|
5229
5248
|
[key: string]: unknown;
|
|
5230
5249
|
} | null;
|
|
5231
|
-
name
|
|
5232
|
-
taxpayerId
|
|
5233
|
-
legalStatusCode
|
|
5234
|
-
contactInformation
|
|
5250
|
+
name: string;
|
|
5251
|
+
taxpayerId: string;
|
|
5252
|
+
legalStatusCode: string;
|
|
5253
|
+
contactInformation: {
|
|
5235
5254
|
readonly extraProperties?: {
|
|
5236
5255
|
[key: string]: unknown;
|
|
5237
5256
|
} | null;
|
|
5238
|
-
startDate
|
|
5239
|
-
endDate
|
|
5240
|
-
telephones
|
|
5241
|
-
primaryFlag
|
|
5242
|
-
typeCode
|
|
5243
|
-
areaCode
|
|
5244
|
-
localNumber
|
|
5245
|
-
ituCountryCode
|
|
5246
|
-
}
|
|
5247
|
-
addresses
|
|
5257
|
+
startDate: string;
|
|
5258
|
+
endDate: string;
|
|
5259
|
+
telephones: Array<{
|
|
5260
|
+
primaryFlag: boolean;
|
|
5261
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
5262
|
+
areaCode: string;
|
|
5263
|
+
localNumber: string;
|
|
5264
|
+
ituCountryCode: string;
|
|
5265
|
+
}>;
|
|
5266
|
+
addresses: Array<{
|
|
5248
5267
|
readonly extraProperties?: {
|
|
5249
5268
|
[key: string]: unknown;
|
|
5250
5269
|
} | null;
|
|
5251
|
-
typeCode
|
|
5252
|
-
addressLine
|
|
5253
|
-
city
|
|
5254
|
-
terriority
|
|
5255
|
-
postalCode
|
|
5256
|
-
country
|
|
5257
|
-
fullAddress
|
|
5258
|
-
primaryFlag
|
|
5259
|
-
}
|
|
5260
|
-
emails
|
|
5270
|
+
typeCode: 0 | 1;
|
|
5271
|
+
addressLine: string;
|
|
5272
|
+
city: string;
|
|
5273
|
+
terriority: string;
|
|
5274
|
+
postalCode: string;
|
|
5275
|
+
country: string;
|
|
5276
|
+
fullAddress: string;
|
|
5277
|
+
primaryFlag: boolean;
|
|
5278
|
+
}>;
|
|
5279
|
+
emails: Array<{
|
|
5261
5280
|
readonly extraProperties?: {
|
|
5262
5281
|
[key: string]: unknown;
|
|
5263
5282
|
} | null;
|
|
5264
|
-
primaryFlag
|
|
5265
|
-
typeCode
|
|
5266
|
-
emailAddress
|
|
5267
|
-
}
|
|
5283
|
+
primaryFlag: boolean;
|
|
5284
|
+
typeCode: 0 | 1;
|
|
5285
|
+
emailAddress: string;
|
|
5286
|
+
}>;
|
|
5268
5287
|
};
|
|
5269
5288
|
}> | null;
|
|
5270
5289
|
individuals?: Array<{
|
|
5271
5290
|
readonly extraProperties?: {
|
|
5272
5291
|
[key: string]: unknown;
|
|
5273
5292
|
} | null;
|
|
5274
|
-
name
|
|
5275
|
-
salutation
|
|
5276
|
-
name
|
|
5277
|
-
suffix
|
|
5278
|
-
mailingName
|
|
5279
|
-
officialName
|
|
5293
|
+
name: {
|
|
5294
|
+
salutation: string;
|
|
5295
|
+
name: string;
|
|
5296
|
+
suffix: string;
|
|
5297
|
+
mailingName: string;
|
|
5298
|
+
officialName: string;
|
|
5280
5299
|
};
|
|
5281
|
-
contactInformation
|
|
5300
|
+
contactInformation: {
|
|
5282
5301
|
readonly extraProperties?: {
|
|
5283
5302
|
[key: string]: unknown;
|
|
5284
5303
|
} | null;
|
|
5285
|
-
startDate
|
|
5286
|
-
endDate
|
|
5287
|
-
telephones
|
|
5288
|
-
primaryFlag
|
|
5289
|
-
typeCode
|
|
5290
|
-
areaCode
|
|
5291
|
-
localNumber
|
|
5292
|
-
ituCountryCode
|
|
5293
|
-
}
|
|
5294
|
-
addresses
|
|
5304
|
+
startDate: string;
|
|
5305
|
+
endDate: string;
|
|
5306
|
+
telephones: Array<{
|
|
5307
|
+
primaryFlag: boolean;
|
|
5308
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
5309
|
+
areaCode: string;
|
|
5310
|
+
localNumber: string;
|
|
5311
|
+
ituCountryCode: string;
|
|
5312
|
+
}>;
|
|
5313
|
+
addresses: Array<{
|
|
5295
5314
|
readonly extraProperties?: {
|
|
5296
5315
|
[key: string]: unknown;
|
|
5297
5316
|
} | null;
|
|
5298
|
-
typeCode
|
|
5299
|
-
addressLine
|
|
5300
|
-
city
|
|
5301
|
-
terriority
|
|
5302
|
-
postalCode
|
|
5303
|
-
country
|
|
5304
|
-
fullAddress
|
|
5305
|
-
primaryFlag
|
|
5306
|
-
}
|
|
5307
|
-
emails
|
|
5317
|
+
typeCode: 0 | 1;
|
|
5318
|
+
addressLine: string;
|
|
5319
|
+
city: string;
|
|
5320
|
+
terriority: string;
|
|
5321
|
+
postalCode: string;
|
|
5322
|
+
country: string;
|
|
5323
|
+
fullAddress: string;
|
|
5324
|
+
primaryFlag: boolean;
|
|
5325
|
+
}>;
|
|
5326
|
+
emails: Array<{
|
|
5308
5327
|
readonly extraProperties?: {
|
|
5309
5328
|
[key: string]: unknown;
|
|
5310
5329
|
} | null;
|
|
5311
|
-
primaryFlag
|
|
5312
|
-
typeCode
|
|
5313
|
-
emailAddress
|
|
5314
|
-
}
|
|
5330
|
+
primaryFlag: boolean;
|
|
5331
|
+
typeCode: 0 | 1;
|
|
5332
|
+
emailAddress: string;
|
|
5333
|
+
}>;
|
|
5315
5334
|
};
|
|
5316
5335
|
personalSummaries?: Array<{
|
|
5317
|
-
genderType
|
|
5318
|
-
date
|
|
5319
|
-
birthDate
|
|
5320
|
-
ethnicity
|
|
5321
|
-
maritalStatusCode
|
|
5322
|
-
religiousAffiliationName
|
|
5336
|
+
genderType: 0 | 1;
|
|
5337
|
+
date: string;
|
|
5338
|
+
birthDate: string;
|
|
5339
|
+
ethnicity: string;
|
|
5340
|
+
maritalStatusCode: string;
|
|
5341
|
+
religiousAffiliationName: string;
|
|
5323
5342
|
}> | null;
|
|
5324
5343
|
}> | null;
|
|
5325
5344
|
};
|
|
@@ -5523,9 +5542,9 @@ export type PostApiFundraiserServiceFundraisersAffiliationTypeByFundraiserIdData
|
|
|
5523
5542
|
readonly extraProperties?: {
|
|
5524
5543
|
[key: string]: unknown;
|
|
5525
5544
|
} | null;
|
|
5526
|
-
name
|
|
5527
|
-
description
|
|
5528
|
-
affiliationTypeCode
|
|
5545
|
+
name: string;
|
|
5546
|
+
description: string;
|
|
5547
|
+
affiliationTypeCode: 0 | 1 | 2;
|
|
5529
5548
|
};
|
|
5530
5549
|
};
|
|
5531
5550
|
|
|
@@ -5554,103 +5573,103 @@ export type PostApiFundraiserServiceFundraisersWithComponentsData = {
|
|
|
5554
5573
|
readonly extraProperties?: {
|
|
5555
5574
|
[key: string]: unknown;
|
|
5556
5575
|
} | null;
|
|
5557
|
-
partyType
|
|
5576
|
+
partyType: 0 | 1;
|
|
5558
5577
|
organizations?: Array<{
|
|
5559
5578
|
readonly extraProperties?: {
|
|
5560
5579
|
[key: string]: unknown;
|
|
5561
5580
|
} | null;
|
|
5562
|
-
name
|
|
5563
|
-
taxpayerId
|
|
5564
|
-
legalStatusCode
|
|
5565
|
-
contactInformation
|
|
5581
|
+
name: string;
|
|
5582
|
+
taxpayerId: string;
|
|
5583
|
+
legalStatusCode: string;
|
|
5584
|
+
contactInformation: {
|
|
5566
5585
|
readonly extraProperties?: {
|
|
5567
5586
|
[key: string]: unknown;
|
|
5568
5587
|
} | null;
|
|
5569
|
-
startDate
|
|
5570
|
-
endDate
|
|
5571
|
-
telephones
|
|
5572
|
-
primaryFlag
|
|
5573
|
-
typeCode
|
|
5574
|
-
areaCode
|
|
5575
|
-
localNumber
|
|
5576
|
-
ituCountryCode
|
|
5577
|
-
}
|
|
5578
|
-
addresses
|
|
5588
|
+
startDate: string;
|
|
5589
|
+
endDate: string;
|
|
5590
|
+
telephones: Array<{
|
|
5591
|
+
primaryFlag: boolean;
|
|
5592
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
5593
|
+
areaCode: string;
|
|
5594
|
+
localNumber: string;
|
|
5595
|
+
ituCountryCode: string;
|
|
5596
|
+
}>;
|
|
5597
|
+
addresses: Array<{
|
|
5579
5598
|
readonly extraProperties?: {
|
|
5580
5599
|
[key: string]: unknown;
|
|
5581
5600
|
} | null;
|
|
5582
|
-
typeCode
|
|
5583
|
-
addressLine
|
|
5584
|
-
city
|
|
5585
|
-
terriority
|
|
5586
|
-
postalCode
|
|
5587
|
-
country
|
|
5588
|
-
fullAddress
|
|
5589
|
-
primaryFlag
|
|
5590
|
-
}
|
|
5591
|
-
emails
|
|
5601
|
+
typeCode: 0 | 1;
|
|
5602
|
+
addressLine: string;
|
|
5603
|
+
city: string;
|
|
5604
|
+
terriority: string;
|
|
5605
|
+
postalCode: string;
|
|
5606
|
+
country: string;
|
|
5607
|
+
fullAddress: string;
|
|
5608
|
+
primaryFlag: boolean;
|
|
5609
|
+
}>;
|
|
5610
|
+
emails: Array<{
|
|
5592
5611
|
readonly extraProperties?: {
|
|
5593
5612
|
[key: string]: unknown;
|
|
5594
5613
|
} | null;
|
|
5595
|
-
primaryFlag
|
|
5596
|
-
typeCode
|
|
5597
|
-
emailAddress
|
|
5598
|
-
}
|
|
5614
|
+
primaryFlag: boolean;
|
|
5615
|
+
typeCode: 0 | 1;
|
|
5616
|
+
emailAddress: string;
|
|
5617
|
+
}>;
|
|
5599
5618
|
};
|
|
5600
5619
|
}> | null;
|
|
5601
5620
|
individuals?: Array<{
|
|
5602
5621
|
readonly extraProperties?: {
|
|
5603
5622
|
[key: string]: unknown;
|
|
5604
5623
|
} | null;
|
|
5605
|
-
name
|
|
5606
|
-
salutation
|
|
5607
|
-
name
|
|
5608
|
-
suffix
|
|
5609
|
-
mailingName
|
|
5610
|
-
officialName
|
|
5611
|
-
};
|
|
5612
|
-
contactInformation
|
|
5624
|
+
name: {
|
|
5625
|
+
salutation: string;
|
|
5626
|
+
name: string;
|
|
5627
|
+
suffix: string;
|
|
5628
|
+
mailingName: string;
|
|
5629
|
+
officialName: string;
|
|
5630
|
+
};
|
|
5631
|
+
contactInformation: {
|
|
5613
5632
|
readonly extraProperties?: {
|
|
5614
5633
|
[key: string]: unknown;
|
|
5615
5634
|
} | null;
|
|
5616
|
-
startDate
|
|
5617
|
-
endDate
|
|
5618
|
-
telephones
|
|
5619
|
-
primaryFlag
|
|
5620
|
-
typeCode
|
|
5621
|
-
areaCode
|
|
5622
|
-
localNumber
|
|
5623
|
-
ituCountryCode
|
|
5624
|
-
}
|
|
5625
|
-
addresses
|
|
5635
|
+
startDate: string;
|
|
5636
|
+
endDate: string;
|
|
5637
|
+
telephones: Array<{
|
|
5638
|
+
primaryFlag: boolean;
|
|
5639
|
+
typeCode: 0 | 1 | 2 | 3;
|
|
5640
|
+
areaCode: string;
|
|
5641
|
+
localNumber: string;
|
|
5642
|
+
ituCountryCode: string;
|
|
5643
|
+
}>;
|
|
5644
|
+
addresses: Array<{
|
|
5626
5645
|
readonly extraProperties?: {
|
|
5627
5646
|
[key: string]: unknown;
|
|
5628
5647
|
} | null;
|
|
5629
|
-
typeCode
|
|
5630
|
-
addressLine
|
|
5631
|
-
city
|
|
5632
|
-
terriority
|
|
5633
|
-
postalCode
|
|
5634
|
-
country
|
|
5635
|
-
fullAddress
|
|
5636
|
-
primaryFlag
|
|
5637
|
-
}
|
|
5638
|
-
emails
|
|
5648
|
+
typeCode: 0 | 1;
|
|
5649
|
+
addressLine: string;
|
|
5650
|
+
city: string;
|
|
5651
|
+
terriority: string;
|
|
5652
|
+
postalCode: string;
|
|
5653
|
+
country: string;
|
|
5654
|
+
fullAddress: string;
|
|
5655
|
+
primaryFlag: boolean;
|
|
5656
|
+
}>;
|
|
5657
|
+
emails: Array<{
|
|
5639
5658
|
readonly extraProperties?: {
|
|
5640
5659
|
[key: string]: unknown;
|
|
5641
5660
|
} | null;
|
|
5642
|
-
primaryFlag
|
|
5643
|
-
typeCode
|
|
5644
|
-
emailAddress
|
|
5645
|
-
}
|
|
5661
|
+
primaryFlag: boolean;
|
|
5662
|
+
typeCode: 0 | 1;
|
|
5663
|
+
emailAddress: string;
|
|
5664
|
+
}>;
|
|
5646
5665
|
};
|
|
5647
5666
|
personalSummaries?: Array<{
|
|
5648
|
-
genderType
|
|
5649
|
-
date
|
|
5650
|
-
birthDate
|
|
5651
|
-
ethnicity
|
|
5652
|
-
maritalStatusCode
|
|
5653
|
-
religiousAffiliationName
|
|
5667
|
+
genderType: 0 | 1;
|
|
5668
|
+
date: string;
|
|
5669
|
+
birthDate: string;
|
|
5670
|
+
ethnicity: string;
|
|
5671
|
+
maritalStatusCode: string;
|
|
5672
|
+
religiousAffiliationName: string;
|
|
5654
5673
|
}> | null;
|
|
5655
5674
|
}> | null;
|
|
5656
5675
|
}>;
|
|
@@ -5658,9 +5677,9 @@ export type PostApiFundraiserServiceFundraisersWithComponentsData = {
|
|
|
5658
5677
|
readonly extraProperties?: {
|
|
5659
5678
|
[key: string]: unknown;
|
|
5660
5679
|
} | null;
|
|
5661
|
-
name
|
|
5662
|
-
description
|
|
5663
|
-
affiliationTypeCode
|
|
5680
|
+
name: string;
|
|
5681
|
+
description: string;
|
|
5682
|
+
affiliationTypeCode: 0 | 1 | 2;
|
|
5664
5683
|
}> | null;
|
|
5665
5684
|
};
|
|
5666
5685
|
};
|
|
@@ -6103,16 +6122,12 @@ export type GetApiFundraiserServiceFundraisersDetailByIdResponse = {
|
|
|
6103
6122
|
}> | null;
|
|
6104
6123
|
};
|
|
6105
6124
|
|
|
6106
|
-
export type
|
|
6125
|
+
export type GetApiFundraiserServiceFundraisersMyFundraisersResponse = Array<{
|
|
6107
6126
|
id?: string;
|
|
6108
|
-
|
|
6109
|
-
|
|
6110
|
-
|
|
6111
|
-
|
|
6112
|
-
isDeleted?: boolean;
|
|
6113
|
-
deleterId?: string | null;
|
|
6114
|
-
deletionTime?: string | null;
|
|
6115
|
-
entityInformations?: Array<{
|
|
6127
|
+
name?: string | null;
|
|
6128
|
+
fundraiserType?: 0 | 1;
|
|
6129
|
+
fundraiserTypeDescription?: string | null;
|
|
6130
|
+
affiliation?: {
|
|
6116
6131
|
id?: string;
|
|
6117
6132
|
creationTime?: string;
|
|
6118
6133
|
creatorId?: string | null;
|
|
@@ -6122,639 +6137,23 @@ export type GetApiFundraiserServiceFundraisersListMyBackersResponse = Array<{
|
|
|
6122
6137
|
deleterId?: string | null;
|
|
6123
6138
|
deletionTime?: string | null;
|
|
6124
6139
|
fundraiserId?: string;
|
|
6125
|
-
|
|
6126
|
-
|
|
6127
|
-
|
|
6128
|
-
|
|
6129
|
-
|
|
6130
|
-
|
|
6131
|
-
|
|
6132
|
-
|
|
6133
|
-
|
|
6134
|
-
|
|
6135
|
-
|
|
6136
|
-
|
|
6137
|
-
|
|
6138
|
-
|
|
6139
|
-
|
|
6140
|
-
|
|
6141
|
-
|
|
6142
|
-
lastModifierId?: string | null;
|
|
6143
|
-
isDeleted?: boolean;
|
|
6144
|
-
deleterId?: string | null;
|
|
6145
|
-
deletionTime?: string | null;
|
|
6146
|
-
startDate?: string;
|
|
6147
|
-
endDate?: string;
|
|
6148
|
-
telephones?: Array<{
|
|
6149
|
-
id?: string;
|
|
6150
|
-
creationTime?: string;
|
|
6151
|
-
creatorId?: string | null;
|
|
6152
|
-
lastModificationTime?: string | null;
|
|
6153
|
-
lastModifierId?: string | null;
|
|
6154
|
-
isDeleted?: boolean;
|
|
6155
|
-
deleterId?: string | null;
|
|
6156
|
-
deletionTime?: string | null;
|
|
6157
|
-
primaryFlag?: boolean;
|
|
6158
|
-
typeCode?: 0 | 1 | 2 | 3;
|
|
6159
|
-
areaCode?: string | null;
|
|
6160
|
-
localNumber?: string | null;
|
|
6161
|
-
ituCountryCode?: string | null;
|
|
6162
|
-
contactInformationTypeId?: string;
|
|
6163
|
-
}> | null;
|
|
6164
|
-
addresses?: Array<{
|
|
6165
|
-
id?: string;
|
|
6166
|
-
creationTime?: string;
|
|
6167
|
-
creatorId?: string | null;
|
|
6168
|
-
lastModificationTime?: string | null;
|
|
6169
|
-
lastModifierId?: string | null;
|
|
6170
|
-
isDeleted?: boolean;
|
|
6171
|
-
deleterId?: string | null;
|
|
6172
|
-
deletionTime?: string | null;
|
|
6173
|
-
typeCode?: 0 | 1;
|
|
6174
|
-
addressLine?: string | null;
|
|
6175
|
-
city?: string | null;
|
|
6176
|
-
terriority?: string | null;
|
|
6177
|
-
postalCode?: string | null;
|
|
6178
|
-
country?: string | null;
|
|
6179
|
-
fullAddress?: string | null;
|
|
6180
|
-
primaryFlag?: boolean;
|
|
6181
|
-
contactInformationTypeId?: string;
|
|
6182
|
-
}> | null;
|
|
6183
|
-
emails?: Array<{
|
|
6184
|
-
id?: string;
|
|
6185
|
-
creationTime?: string;
|
|
6186
|
-
creatorId?: string | null;
|
|
6187
|
-
lastModificationTime?: string | null;
|
|
6188
|
-
lastModifierId?: string | null;
|
|
6189
|
-
isDeleted?: boolean;
|
|
6190
|
-
deleterId?: string | null;
|
|
6191
|
-
deletionTime?: string | null;
|
|
6192
|
-
primaryFlag?: boolean;
|
|
6193
|
-
typeCode?: 0 | 1;
|
|
6194
|
-
emailAddress?: string | null;
|
|
6195
|
-
contactInformationTypeId?: string;
|
|
6196
|
-
}> | null;
|
|
6197
|
-
};
|
|
6198
|
-
}> | null;
|
|
6199
|
-
individuals?: Array<{
|
|
6200
|
-
id?: string;
|
|
6201
|
-
creationTime?: string;
|
|
6202
|
-
creatorId?: string | null;
|
|
6203
|
-
lastModificationTime?: string | null;
|
|
6204
|
-
lastModifierId?: string | null;
|
|
6205
|
-
isDeleted?: boolean;
|
|
6206
|
-
deleterId?: string | null;
|
|
6207
|
-
deletionTime?: string | null;
|
|
6208
|
-
name?: {
|
|
6209
|
-
id?: string;
|
|
6210
|
-
creationTime?: string;
|
|
6211
|
-
creatorId?: string | null;
|
|
6212
|
-
lastModificationTime?: string | null;
|
|
6213
|
-
lastModifierId?: string | null;
|
|
6214
|
-
isDeleted?: boolean;
|
|
6215
|
-
deleterId?: string | null;
|
|
6216
|
-
deletionTime?: string | null;
|
|
6217
|
-
individualId?: string;
|
|
6218
|
-
salutation?: string | null;
|
|
6219
|
-
name?: string | null;
|
|
6220
|
-
suffix?: string | null;
|
|
6221
|
-
mailingName?: string | null;
|
|
6222
|
-
officialName?: string | null;
|
|
6223
|
-
};
|
|
6224
|
-
contactInformation?: {
|
|
6225
|
-
id?: string;
|
|
6226
|
-
creationTime?: string;
|
|
6227
|
-
creatorId?: string | null;
|
|
6228
|
-
lastModificationTime?: string | null;
|
|
6229
|
-
lastModifierId?: string | null;
|
|
6230
|
-
isDeleted?: boolean;
|
|
6231
|
-
deleterId?: string | null;
|
|
6232
|
-
deletionTime?: string | null;
|
|
6233
|
-
startDate?: string;
|
|
6234
|
-
endDate?: string;
|
|
6235
|
-
telephones?: Array<{
|
|
6236
|
-
id?: string;
|
|
6237
|
-
creationTime?: string;
|
|
6238
|
-
creatorId?: string | null;
|
|
6239
|
-
lastModificationTime?: string | null;
|
|
6240
|
-
lastModifierId?: string | null;
|
|
6241
|
-
isDeleted?: boolean;
|
|
6242
|
-
deleterId?: string | null;
|
|
6243
|
-
deletionTime?: string | null;
|
|
6244
|
-
primaryFlag?: boolean;
|
|
6245
|
-
typeCode?: 0 | 1 | 2 | 3;
|
|
6246
|
-
areaCode?: string | null;
|
|
6247
|
-
localNumber?: string | null;
|
|
6248
|
-
ituCountryCode?: string | null;
|
|
6249
|
-
contactInformationTypeId?: string;
|
|
6250
|
-
}> | null;
|
|
6251
|
-
addresses?: Array<{
|
|
6252
|
-
id?: string;
|
|
6253
|
-
creationTime?: string;
|
|
6254
|
-
creatorId?: string | null;
|
|
6255
|
-
lastModificationTime?: string | null;
|
|
6256
|
-
lastModifierId?: string | null;
|
|
6257
|
-
isDeleted?: boolean;
|
|
6258
|
-
deleterId?: string | null;
|
|
6259
|
-
deletionTime?: string | null;
|
|
6260
|
-
typeCode?: 0 | 1;
|
|
6261
|
-
addressLine?: string | null;
|
|
6262
|
-
city?: string | null;
|
|
6263
|
-
terriority?: string | null;
|
|
6264
|
-
postalCode?: string | null;
|
|
6265
|
-
country?: string | null;
|
|
6266
|
-
fullAddress?: string | null;
|
|
6267
|
-
primaryFlag?: boolean;
|
|
6268
|
-
contactInformationTypeId?: string;
|
|
6269
|
-
}> | null;
|
|
6270
|
-
emails?: Array<{
|
|
6271
|
-
id?: string;
|
|
6272
|
-
creationTime?: string;
|
|
6273
|
-
creatorId?: string | null;
|
|
6274
|
-
lastModificationTime?: string | null;
|
|
6275
|
-
lastModifierId?: string | null;
|
|
6276
|
-
isDeleted?: boolean;
|
|
6277
|
-
deleterId?: string | null;
|
|
6278
|
-
deletionTime?: string | null;
|
|
6279
|
-
primaryFlag?: boolean;
|
|
6280
|
-
typeCode?: 0 | 1;
|
|
6281
|
-
emailAddress?: string | null;
|
|
6282
|
-
contactInformationTypeId?: string;
|
|
6283
|
-
}> | null;
|
|
6284
|
-
};
|
|
6285
|
-
personalSummaries?: Array<{
|
|
6286
|
-
id?: string;
|
|
6287
|
-
creationTime?: string;
|
|
6288
|
-
creatorId?: string | null;
|
|
6289
|
-
lastModificationTime?: string | null;
|
|
6290
|
-
lastModifierId?: string | null;
|
|
6291
|
-
isDeleted?: boolean;
|
|
6292
|
-
deleterId?: string | null;
|
|
6293
|
-
deletionTime?: string | null;
|
|
6294
|
-
genderType?: 0 | 1;
|
|
6295
|
-
individualId?: string;
|
|
6296
|
-
date?: string;
|
|
6297
|
-
birthDate?: string;
|
|
6298
|
-
ethnicity?: string | null;
|
|
6299
|
-
maritalStatusCode?: string | null;
|
|
6300
|
-
religiousAffiliationName?: string | null;
|
|
6301
|
-
}> | null;
|
|
6302
|
-
entityInformationTypeId?: string;
|
|
6303
|
-
contactInformationId?: string;
|
|
6304
|
-
}> | null;
|
|
6305
|
-
}> | null;
|
|
6306
|
-
affiliations?: Array<{
|
|
6307
|
-
id?: string;
|
|
6308
|
-
creationTime?: string;
|
|
6309
|
-
creatorId?: string | null;
|
|
6310
|
-
lastModificationTime?: string | null;
|
|
6311
|
-
lastModifierId?: string | null;
|
|
6312
|
-
isDeleted?: boolean;
|
|
6313
|
-
deleterId?: string | null;
|
|
6314
|
-
deletionTime?: string | null;
|
|
6315
|
-
fundraiserId?: string;
|
|
6316
|
-
name?: string | null;
|
|
6317
|
-
description?: string | null;
|
|
6318
|
-
affiliationTypeCode?: 0 | 1 | 2;
|
|
6319
|
-
partyId?: string;
|
|
6320
|
-
}> | null;
|
|
6321
|
-
}>;
|
|
6322
|
-
|
|
6323
|
-
export type GetApiFundraiserServiceFundraisersProfileListByIdsData = {
|
|
6324
|
-
ids?: Array<(string)>;
|
|
6325
|
-
};
|
|
6326
|
-
|
|
6327
|
-
export type GetApiFundraiserServiceFundraisersProfileListByIdsResponse = Array<{
|
|
6328
|
-
id?: string;
|
|
6329
|
-
name?: string | null;
|
|
6330
|
-
}>;
|
|
6331
|
-
|
|
6332
|
-
export type GetApiFundraiserServicePublicFundraisersDetailByIdData = {
|
|
6333
|
-
id: string;
|
|
6334
|
-
};
|
|
6335
|
-
|
|
6336
|
-
export type GetApiFundraiserServicePublicFundraisersDetailByIdResponse = {
|
|
6337
|
-
id?: string;
|
|
6338
|
-
creationTime?: string;
|
|
6339
|
-
creatorId?: string | null;
|
|
6340
|
-
lastModificationTime?: string | null;
|
|
6341
|
-
lastModifierId?: string | null;
|
|
6342
|
-
isDeleted?: boolean;
|
|
6343
|
-
deleterId?: string | null;
|
|
6344
|
-
deletionTime?: string | null;
|
|
6345
|
-
entityInformations?: Array<{
|
|
6346
|
-
id?: string;
|
|
6347
|
-
creationTime?: string;
|
|
6348
|
-
creatorId?: string | null;
|
|
6349
|
-
lastModificationTime?: string | null;
|
|
6350
|
-
lastModifierId?: string | null;
|
|
6351
|
-
isDeleted?: boolean;
|
|
6352
|
-
deleterId?: string | null;
|
|
6353
|
-
deletionTime?: string | null;
|
|
6354
|
-
fundraiserId?: string;
|
|
6355
|
-
organizations?: Array<{
|
|
6356
|
-
id?: string;
|
|
6357
|
-
creationTime?: string;
|
|
6358
|
-
creatorId?: string | null;
|
|
6359
|
-
lastModificationTime?: string | null;
|
|
6360
|
-
lastModifierId?: string | null;
|
|
6361
|
-
isDeleted?: boolean;
|
|
6362
|
-
deleterId?: string | null;
|
|
6363
|
-
deletionTime?: string | null;
|
|
6364
|
-
name?: string | null;
|
|
6365
|
-
taxpayerId?: string | null;
|
|
6366
|
-
legalStatusCode?: string | null;
|
|
6367
|
-
contactInformation?: {
|
|
6368
|
-
id?: string;
|
|
6369
|
-
creationTime?: string;
|
|
6370
|
-
creatorId?: string | null;
|
|
6371
|
-
lastModificationTime?: string | null;
|
|
6372
|
-
lastModifierId?: string | null;
|
|
6373
|
-
isDeleted?: boolean;
|
|
6374
|
-
deleterId?: string | null;
|
|
6375
|
-
deletionTime?: string | null;
|
|
6376
|
-
startDate?: string;
|
|
6377
|
-
endDate?: string;
|
|
6378
|
-
telephones?: Array<{
|
|
6379
|
-
id?: string;
|
|
6380
|
-
creationTime?: string;
|
|
6381
|
-
creatorId?: string | null;
|
|
6382
|
-
lastModificationTime?: string | null;
|
|
6383
|
-
lastModifierId?: string | null;
|
|
6384
|
-
isDeleted?: boolean;
|
|
6385
|
-
deleterId?: string | null;
|
|
6386
|
-
deletionTime?: string | null;
|
|
6387
|
-
primaryFlag?: boolean;
|
|
6388
|
-
typeCode?: 0 | 1 | 2 | 3;
|
|
6389
|
-
areaCode?: string | null;
|
|
6390
|
-
localNumber?: string | null;
|
|
6391
|
-
ituCountryCode?: string | null;
|
|
6392
|
-
contactInformationTypeId?: string;
|
|
6393
|
-
}> | null;
|
|
6394
|
-
addresses?: Array<{
|
|
6395
|
-
id?: string;
|
|
6396
|
-
creationTime?: string;
|
|
6397
|
-
creatorId?: string | null;
|
|
6398
|
-
lastModificationTime?: string | null;
|
|
6399
|
-
lastModifierId?: string | null;
|
|
6400
|
-
isDeleted?: boolean;
|
|
6401
|
-
deleterId?: string | null;
|
|
6402
|
-
deletionTime?: string | null;
|
|
6403
|
-
typeCode?: 0 | 1;
|
|
6404
|
-
addressLine?: string | null;
|
|
6405
|
-
city?: string | null;
|
|
6406
|
-
terriority?: string | null;
|
|
6407
|
-
postalCode?: string | null;
|
|
6408
|
-
country?: string | null;
|
|
6409
|
-
fullAddress?: string | null;
|
|
6410
|
-
primaryFlag?: boolean;
|
|
6411
|
-
contactInformationTypeId?: string;
|
|
6412
|
-
}> | null;
|
|
6413
|
-
emails?: Array<{
|
|
6414
|
-
id?: string;
|
|
6415
|
-
creationTime?: string;
|
|
6416
|
-
creatorId?: string | null;
|
|
6417
|
-
lastModificationTime?: string | null;
|
|
6418
|
-
lastModifierId?: string | null;
|
|
6419
|
-
isDeleted?: boolean;
|
|
6420
|
-
deleterId?: string | null;
|
|
6421
|
-
deletionTime?: string | null;
|
|
6422
|
-
primaryFlag?: boolean;
|
|
6423
|
-
typeCode?: 0 | 1;
|
|
6424
|
-
emailAddress?: string | null;
|
|
6425
|
-
contactInformationTypeId?: string;
|
|
6426
|
-
}> | null;
|
|
6427
|
-
};
|
|
6428
|
-
}> | null;
|
|
6429
|
-
individuals?: Array<{
|
|
6430
|
-
id?: string;
|
|
6431
|
-
creationTime?: string;
|
|
6432
|
-
creatorId?: string | null;
|
|
6433
|
-
lastModificationTime?: string | null;
|
|
6434
|
-
lastModifierId?: string | null;
|
|
6435
|
-
isDeleted?: boolean;
|
|
6436
|
-
deleterId?: string | null;
|
|
6437
|
-
deletionTime?: string | null;
|
|
6438
|
-
name?: {
|
|
6439
|
-
id?: string;
|
|
6440
|
-
creationTime?: string;
|
|
6441
|
-
creatorId?: string | null;
|
|
6442
|
-
lastModificationTime?: string | null;
|
|
6443
|
-
lastModifierId?: string | null;
|
|
6444
|
-
isDeleted?: boolean;
|
|
6445
|
-
deleterId?: string | null;
|
|
6446
|
-
deletionTime?: string | null;
|
|
6447
|
-
individualId?: string;
|
|
6448
|
-
salutation?: string | null;
|
|
6449
|
-
name?: string | null;
|
|
6450
|
-
suffix?: string | null;
|
|
6451
|
-
mailingName?: string | null;
|
|
6452
|
-
officialName?: string | null;
|
|
6453
|
-
};
|
|
6454
|
-
contactInformation?: {
|
|
6455
|
-
id?: string;
|
|
6456
|
-
creationTime?: string;
|
|
6457
|
-
creatorId?: string | null;
|
|
6458
|
-
lastModificationTime?: string | null;
|
|
6459
|
-
lastModifierId?: string | null;
|
|
6460
|
-
isDeleted?: boolean;
|
|
6461
|
-
deleterId?: string | null;
|
|
6462
|
-
deletionTime?: string | null;
|
|
6463
|
-
startDate?: string;
|
|
6464
|
-
endDate?: string;
|
|
6465
|
-
telephones?: Array<{
|
|
6466
|
-
id?: string;
|
|
6467
|
-
creationTime?: string;
|
|
6468
|
-
creatorId?: string | null;
|
|
6469
|
-
lastModificationTime?: string | null;
|
|
6470
|
-
lastModifierId?: string | null;
|
|
6471
|
-
isDeleted?: boolean;
|
|
6472
|
-
deleterId?: string | null;
|
|
6473
|
-
deletionTime?: string | null;
|
|
6474
|
-
primaryFlag?: boolean;
|
|
6475
|
-
typeCode?: 0 | 1 | 2 | 3;
|
|
6476
|
-
areaCode?: string | null;
|
|
6477
|
-
localNumber?: string | null;
|
|
6478
|
-
ituCountryCode?: string | null;
|
|
6479
|
-
contactInformationTypeId?: string;
|
|
6480
|
-
}> | null;
|
|
6481
|
-
addresses?: Array<{
|
|
6482
|
-
id?: string;
|
|
6483
|
-
creationTime?: string;
|
|
6484
|
-
creatorId?: string | null;
|
|
6485
|
-
lastModificationTime?: string | null;
|
|
6486
|
-
lastModifierId?: string | null;
|
|
6487
|
-
isDeleted?: boolean;
|
|
6488
|
-
deleterId?: string | null;
|
|
6489
|
-
deletionTime?: string | null;
|
|
6490
|
-
typeCode?: 0 | 1;
|
|
6491
|
-
addressLine?: string | null;
|
|
6492
|
-
city?: string | null;
|
|
6493
|
-
terriority?: string | null;
|
|
6494
|
-
postalCode?: string | null;
|
|
6495
|
-
country?: string | null;
|
|
6496
|
-
fullAddress?: string | null;
|
|
6497
|
-
primaryFlag?: boolean;
|
|
6498
|
-
contactInformationTypeId?: string;
|
|
6499
|
-
}> | null;
|
|
6500
|
-
emails?: Array<{
|
|
6501
|
-
id?: string;
|
|
6502
|
-
creationTime?: string;
|
|
6503
|
-
creatorId?: string | null;
|
|
6504
|
-
lastModificationTime?: string | null;
|
|
6505
|
-
lastModifierId?: string | null;
|
|
6506
|
-
isDeleted?: boolean;
|
|
6507
|
-
deleterId?: string | null;
|
|
6508
|
-
deletionTime?: string | null;
|
|
6509
|
-
primaryFlag?: boolean;
|
|
6510
|
-
typeCode?: 0 | 1;
|
|
6511
|
-
emailAddress?: string | null;
|
|
6512
|
-
contactInformationTypeId?: string;
|
|
6513
|
-
}> | null;
|
|
6514
|
-
};
|
|
6515
|
-
personalSummaries?: Array<{
|
|
6516
|
-
id?: string;
|
|
6517
|
-
creationTime?: string;
|
|
6518
|
-
creatorId?: string | null;
|
|
6519
|
-
lastModificationTime?: string | null;
|
|
6520
|
-
lastModifierId?: string | null;
|
|
6521
|
-
isDeleted?: boolean;
|
|
6522
|
-
deleterId?: string | null;
|
|
6523
|
-
deletionTime?: string | null;
|
|
6524
|
-
genderType?: 0 | 1;
|
|
6525
|
-
individualId?: string;
|
|
6526
|
-
date?: string;
|
|
6527
|
-
birthDate?: string;
|
|
6528
|
-
ethnicity?: string | null;
|
|
6529
|
-
maritalStatusCode?: string | null;
|
|
6530
|
-
religiousAffiliationName?: string | null;
|
|
6531
|
-
}> | null;
|
|
6532
|
-
entityInformationTypeId?: string;
|
|
6533
|
-
contactInformationId?: string;
|
|
6534
|
-
}> | null;
|
|
6535
|
-
}> | null;
|
|
6536
|
-
affiliations?: Array<{
|
|
6537
|
-
id?: string;
|
|
6538
|
-
creationTime?: string;
|
|
6539
|
-
creatorId?: string | null;
|
|
6540
|
-
lastModificationTime?: string | null;
|
|
6541
|
-
lastModifierId?: string | null;
|
|
6542
|
-
isDeleted?: boolean;
|
|
6543
|
-
deleterId?: string | null;
|
|
6544
|
-
deletionTime?: string | null;
|
|
6545
|
-
fundraiserId?: string;
|
|
6546
|
-
name?: string | null;
|
|
6547
|
-
description?: string | null;
|
|
6548
|
-
affiliationTypeCode?: 0 | 1 | 2;
|
|
6549
|
-
partyId?: string;
|
|
6550
|
-
}> | null;
|
|
6551
|
-
};
|
|
6552
|
-
|
|
6553
|
-
export type GetApiFundraiserServicePublicFundraisersDetailListAbpUserIdsByIdsData = {
|
|
6554
|
-
ids: Array<(string)>;
|
|
6555
|
-
};
|
|
6556
|
-
|
|
6557
|
-
export type GetApiFundraiserServicePublicFundraisersDetailListAbpUserIdsByIdsResponse = Array<{
|
|
6558
|
-
id?: string;
|
|
6559
|
-
creationTime?: string;
|
|
6560
|
-
creatorId?: string | null;
|
|
6561
|
-
lastModificationTime?: string | null;
|
|
6562
|
-
lastModifierId?: string | null;
|
|
6563
|
-
isDeleted?: boolean;
|
|
6564
|
-
deleterId?: string | null;
|
|
6565
|
-
deletionTime?: string | null;
|
|
6566
|
-
entityInformations?: Array<{
|
|
6567
|
-
id?: string;
|
|
6568
|
-
creationTime?: string;
|
|
6569
|
-
creatorId?: string | null;
|
|
6570
|
-
lastModificationTime?: string | null;
|
|
6571
|
-
lastModifierId?: string | null;
|
|
6572
|
-
isDeleted?: boolean;
|
|
6573
|
-
deleterId?: string | null;
|
|
6574
|
-
deletionTime?: string | null;
|
|
6575
|
-
fundraiserId?: string;
|
|
6576
|
-
organizations?: Array<{
|
|
6577
|
-
id?: string;
|
|
6578
|
-
creationTime?: string;
|
|
6579
|
-
creatorId?: string | null;
|
|
6580
|
-
lastModificationTime?: string | null;
|
|
6581
|
-
lastModifierId?: string | null;
|
|
6582
|
-
isDeleted?: boolean;
|
|
6583
|
-
deleterId?: string | null;
|
|
6584
|
-
deletionTime?: string | null;
|
|
6585
|
-
name?: string | null;
|
|
6586
|
-
taxpayerId?: string | null;
|
|
6587
|
-
legalStatusCode?: string | null;
|
|
6588
|
-
contactInformation?: {
|
|
6589
|
-
id?: string;
|
|
6590
|
-
creationTime?: string;
|
|
6591
|
-
creatorId?: string | null;
|
|
6592
|
-
lastModificationTime?: string | null;
|
|
6593
|
-
lastModifierId?: string | null;
|
|
6594
|
-
isDeleted?: boolean;
|
|
6595
|
-
deleterId?: string | null;
|
|
6596
|
-
deletionTime?: string | null;
|
|
6597
|
-
startDate?: string;
|
|
6598
|
-
endDate?: string;
|
|
6599
|
-
telephones?: Array<{
|
|
6600
|
-
id?: string;
|
|
6601
|
-
creationTime?: string;
|
|
6602
|
-
creatorId?: string | null;
|
|
6603
|
-
lastModificationTime?: string | null;
|
|
6604
|
-
lastModifierId?: string | null;
|
|
6605
|
-
isDeleted?: boolean;
|
|
6606
|
-
deleterId?: string | null;
|
|
6607
|
-
deletionTime?: string | null;
|
|
6608
|
-
primaryFlag?: boolean;
|
|
6609
|
-
typeCode?: 0 | 1 | 2 | 3;
|
|
6610
|
-
areaCode?: string | null;
|
|
6611
|
-
localNumber?: string | null;
|
|
6612
|
-
ituCountryCode?: string | null;
|
|
6613
|
-
contactInformationTypeId?: string;
|
|
6614
|
-
}> | null;
|
|
6615
|
-
addresses?: Array<{
|
|
6616
|
-
id?: string;
|
|
6617
|
-
creationTime?: string;
|
|
6618
|
-
creatorId?: string | null;
|
|
6619
|
-
lastModificationTime?: string | null;
|
|
6620
|
-
lastModifierId?: string | null;
|
|
6621
|
-
isDeleted?: boolean;
|
|
6622
|
-
deleterId?: string | null;
|
|
6623
|
-
deletionTime?: string | null;
|
|
6624
|
-
typeCode?: 0 | 1;
|
|
6625
|
-
addressLine?: string | null;
|
|
6626
|
-
city?: string | null;
|
|
6627
|
-
terriority?: string | null;
|
|
6628
|
-
postalCode?: string | null;
|
|
6629
|
-
country?: string | null;
|
|
6630
|
-
fullAddress?: string | null;
|
|
6631
|
-
primaryFlag?: boolean;
|
|
6632
|
-
contactInformationTypeId?: string;
|
|
6633
|
-
}> | null;
|
|
6634
|
-
emails?: Array<{
|
|
6635
|
-
id?: string;
|
|
6636
|
-
creationTime?: string;
|
|
6637
|
-
creatorId?: string | null;
|
|
6638
|
-
lastModificationTime?: string | null;
|
|
6639
|
-
lastModifierId?: string | null;
|
|
6640
|
-
isDeleted?: boolean;
|
|
6641
|
-
deleterId?: string | null;
|
|
6642
|
-
deletionTime?: string | null;
|
|
6643
|
-
primaryFlag?: boolean;
|
|
6644
|
-
typeCode?: 0 | 1;
|
|
6645
|
-
emailAddress?: string | null;
|
|
6646
|
-
contactInformationTypeId?: string;
|
|
6647
|
-
}> | null;
|
|
6648
|
-
};
|
|
6649
|
-
}> | null;
|
|
6650
|
-
individuals?: Array<{
|
|
6651
|
-
id?: string;
|
|
6652
|
-
creationTime?: string;
|
|
6653
|
-
creatorId?: string | null;
|
|
6654
|
-
lastModificationTime?: string | null;
|
|
6655
|
-
lastModifierId?: string | null;
|
|
6656
|
-
isDeleted?: boolean;
|
|
6657
|
-
deleterId?: string | null;
|
|
6658
|
-
deletionTime?: string | null;
|
|
6659
|
-
name?: {
|
|
6660
|
-
id?: string;
|
|
6661
|
-
creationTime?: string;
|
|
6662
|
-
creatorId?: string | null;
|
|
6663
|
-
lastModificationTime?: string | null;
|
|
6664
|
-
lastModifierId?: string | null;
|
|
6665
|
-
isDeleted?: boolean;
|
|
6666
|
-
deleterId?: string | null;
|
|
6667
|
-
deletionTime?: string | null;
|
|
6668
|
-
individualId?: string;
|
|
6669
|
-
salutation?: string | null;
|
|
6670
|
-
name?: string | null;
|
|
6671
|
-
suffix?: string | null;
|
|
6672
|
-
mailingName?: string | null;
|
|
6673
|
-
officialName?: string | null;
|
|
6674
|
-
};
|
|
6675
|
-
contactInformation?: {
|
|
6676
|
-
id?: string;
|
|
6677
|
-
creationTime?: string;
|
|
6678
|
-
creatorId?: string | null;
|
|
6679
|
-
lastModificationTime?: string | null;
|
|
6680
|
-
lastModifierId?: string | null;
|
|
6681
|
-
isDeleted?: boolean;
|
|
6682
|
-
deleterId?: string | null;
|
|
6683
|
-
deletionTime?: string | null;
|
|
6684
|
-
startDate?: string;
|
|
6685
|
-
endDate?: string;
|
|
6686
|
-
telephones?: Array<{
|
|
6687
|
-
id?: string;
|
|
6688
|
-
creationTime?: string;
|
|
6689
|
-
creatorId?: string | null;
|
|
6690
|
-
lastModificationTime?: string | null;
|
|
6691
|
-
lastModifierId?: string | null;
|
|
6692
|
-
isDeleted?: boolean;
|
|
6693
|
-
deleterId?: string | null;
|
|
6694
|
-
deletionTime?: string | null;
|
|
6695
|
-
primaryFlag?: boolean;
|
|
6696
|
-
typeCode?: 0 | 1 | 2 | 3;
|
|
6697
|
-
areaCode?: string | null;
|
|
6698
|
-
localNumber?: string | null;
|
|
6699
|
-
ituCountryCode?: string | null;
|
|
6700
|
-
contactInformationTypeId?: string;
|
|
6701
|
-
}> | null;
|
|
6702
|
-
addresses?: Array<{
|
|
6703
|
-
id?: string;
|
|
6704
|
-
creationTime?: string;
|
|
6705
|
-
creatorId?: string | null;
|
|
6706
|
-
lastModificationTime?: string | null;
|
|
6707
|
-
lastModifierId?: string | null;
|
|
6708
|
-
isDeleted?: boolean;
|
|
6709
|
-
deleterId?: string | null;
|
|
6710
|
-
deletionTime?: string | null;
|
|
6711
|
-
typeCode?: 0 | 1;
|
|
6712
|
-
addressLine?: string | null;
|
|
6713
|
-
city?: string | null;
|
|
6714
|
-
terriority?: string | null;
|
|
6715
|
-
postalCode?: string | null;
|
|
6716
|
-
country?: string | null;
|
|
6717
|
-
fullAddress?: string | null;
|
|
6718
|
-
primaryFlag?: boolean;
|
|
6719
|
-
contactInformationTypeId?: string;
|
|
6720
|
-
}> | null;
|
|
6721
|
-
emails?: Array<{
|
|
6722
|
-
id?: string;
|
|
6723
|
-
creationTime?: string;
|
|
6724
|
-
creatorId?: string | null;
|
|
6725
|
-
lastModificationTime?: string | null;
|
|
6726
|
-
lastModifierId?: string | null;
|
|
6727
|
-
isDeleted?: boolean;
|
|
6728
|
-
deleterId?: string | null;
|
|
6729
|
-
deletionTime?: string | null;
|
|
6730
|
-
primaryFlag?: boolean;
|
|
6731
|
-
typeCode?: 0 | 1;
|
|
6732
|
-
emailAddress?: string | null;
|
|
6733
|
-
contactInformationTypeId?: string;
|
|
6734
|
-
}> | null;
|
|
6735
|
-
};
|
|
6736
|
-
personalSummaries?: Array<{
|
|
6737
|
-
id?: string;
|
|
6738
|
-
creationTime?: string;
|
|
6739
|
-
creatorId?: string | null;
|
|
6740
|
-
lastModificationTime?: string | null;
|
|
6741
|
-
lastModifierId?: string | null;
|
|
6742
|
-
isDeleted?: boolean;
|
|
6743
|
-
deleterId?: string | null;
|
|
6744
|
-
deletionTime?: string | null;
|
|
6745
|
-
genderType?: 0 | 1;
|
|
6746
|
-
individualId?: string;
|
|
6747
|
-
date?: string;
|
|
6748
|
-
birthDate?: string;
|
|
6749
|
-
ethnicity?: string | null;
|
|
6750
|
-
maritalStatusCode?: string | null;
|
|
6751
|
-
religiousAffiliationName?: string | null;
|
|
6752
|
-
}> | null;
|
|
6753
|
-
entityInformationTypeId?: string;
|
|
6754
|
-
contactInformationId?: string;
|
|
6755
|
-
}> | null;
|
|
6756
|
-
}> | null;
|
|
6757
|
-
affiliations?: Array<{
|
|
6140
|
+
name?: string | null;
|
|
6141
|
+
description?: string | null;
|
|
6142
|
+
affiliationTypeCode?: 0 | 1 | 2;
|
|
6143
|
+
partyId?: string;
|
|
6144
|
+
};
|
|
6145
|
+
}>;
|
|
6146
|
+
|
|
6147
|
+
export type GetApiFundraiserServiceFundraisersProfileListOfAssociatedByAbpUserIdData = {
|
|
6148
|
+
userId?: string;
|
|
6149
|
+
};
|
|
6150
|
+
|
|
6151
|
+
export type GetApiFundraiserServiceFundraisersProfileListOfAssociatedByAbpUserIdResponse = Array<{
|
|
6152
|
+
id?: string;
|
|
6153
|
+
name?: string | null;
|
|
6154
|
+
fundraiserType?: 0 | 1;
|
|
6155
|
+
fundraiserTypeDescription?: string | null;
|
|
6156
|
+
affiliation?: {
|
|
6758
6157
|
id?: string;
|
|
6759
6158
|
creationTime?: string;
|
|
6760
6159
|
creatorId?: string | null;
|
|
@@ -6768,16 +6167,59 @@ export type GetApiFundraiserServicePublicFundraisersDetailListAbpUserIdsByIdsRes
|
|
|
6768
6167
|
description?: string | null;
|
|
6769
6168
|
affiliationTypeCode?: 0 | 1 | 2;
|
|
6770
6169
|
partyId?: string;
|
|
6771
|
-
}
|
|
6170
|
+
};
|
|
6171
|
+
}>;
|
|
6172
|
+
|
|
6173
|
+
export type GetApiFundraiserServicePublicFundraisersProfileListByFundraiserIdsData = {
|
|
6174
|
+
ids?: Array<(string)>;
|
|
6175
|
+
};
|
|
6176
|
+
|
|
6177
|
+
export type GetApiFundraiserServicePublicFundraisersProfileListByFundraiserIdsResponse = Array<{
|
|
6178
|
+
id?: string;
|
|
6179
|
+
name?: string | null;
|
|
6180
|
+
fundraiserType?: 0 | 1;
|
|
6181
|
+
fundraiserTypeDescription?: string | null;
|
|
6182
|
+
affiliation?: {
|
|
6183
|
+
id?: string;
|
|
6184
|
+
creationTime?: string;
|
|
6185
|
+
creatorId?: string | null;
|
|
6186
|
+
lastModificationTime?: string | null;
|
|
6187
|
+
lastModifierId?: string | null;
|
|
6188
|
+
isDeleted?: boolean;
|
|
6189
|
+
deleterId?: string | null;
|
|
6190
|
+
deletionTime?: string | null;
|
|
6191
|
+
fundraiserId?: string;
|
|
6192
|
+
name?: string | null;
|
|
6193
|
+
description?: string | null;
|
|
6194
|
+
affiliationTypeCode?: 0 | 1 | 2;
|
|
6195
|
+
partyId?: string;
|
|
6196
|
+
};
|
|
6772
6197
|
}>;
|
|
6773
6198
|
|
|
6774
|
-
export type
|
|
6199
|
+
export type GetApiFundraiserServicePublicFundraisersProfileByFundraiserIdByIdData = {
|
|
6775
6200
|
id: string;
|
|
6776
6201
|
};
|
|
6777
6202
|
|
|
6778
|
-
export type
|
|
6203
|
+
export type GetApiFundraiserServicePublicFundraisersProfileByFundraiserIdByIdResponse = {
|
|
6779
6204
|
id?: string;
|
|
6780
6205
|
name?: string | null;
|
|
6206
|
+
fundraiserType?: 0 | 1;
|
|
6207
|
+
fundraiserTypeDescription?: string | null;
|
|
6208
|
+
affiliation?: {
|
|
6209
|
+
id?: string;
|
|
6210
|
+
creationTime?: string;
|
|
6211
|
+
creatorId?: string | null;
|
|
6212
|
+
lastModificationTime?: string | null;
|
|
6213
|
+
lastModifierId?: string | null;
|
|
6214
|
+
isDeleted?: boolean;
|
|
6215
|
+
deleterId?: string | null;
|
|
6216
|
+
deletionTime?: string | null;
|
|
6217
|
+
fundraiserId?: string;
|
|
6218
|
+
name?: string | null;
|
|
6219
|
+
description?: string | null;
|
|
6220
|
+
affiliationTypeCode?: 0 | 1 | 2;
|
|
6221
|
+
partyId?: string;
|
|
6222
|
+
};
|
|
6781
6223
|
};
|
|
6782
6224
|
|
|
6783
6225
|
export type $OpenApiTs = {
|
|
@@ -10307,149 +9749,22 @@ export type $OpenApiTs = {
|
|
|
10307
9749
|
id?: string;
|
|
10308
9750
|
creationTime?: string;
|
|
10309
9751
|
creatorId?: string | null;
|
|
10310
|
-
lastModificationTime?: string | null;
|
|
10311
|
-
lastModifierId?: string | null;
|
|
10312
|
-
isDeleted?: boolean;
|
|
10313
|
-
deleterId?: string | null;
|
|
10314
|
-
deletionTime?: string | null;
|
|
10315
|
-
genderType?: 0 | 1;
|
|
10316
|
-
individualId?: string;
|
|
10317
|
-
date?: string;
|
|
10318
|
-
birthDate?: string;
|
|
10319
|
-
ethnicity?: string | null;
|
|
10320
|
-
maritalStatusCode?: string | null;
|
|
10321
|
-
religiousAffiliationName?: string | null;
|
|
10322
|
-
}> | null;
|
|
10323
|
-
entityInformationTypeId?: string;
|
|
10324
|
-
contactInformationId?: string;
|
|
10325
|
-
}> | null;
|
|
10326
|
-
};
|
|
10327
|
-
/**
|
|
10328
|
-
* Bad Request
|
|
10329
|
-
*/
|
|
10330
|
-
400: {
|
|
10331
|
-
error?: {
|
|
10332
|
-
code?: string | null;
|
|
10333
|
-
message?: string | null;
|
|
10334
|
-
details?: string | null;
|
|
10335
|
-
data?: {
|
|
10336
|
-
[key: string]: unknown;
|
|
10337
|
-
} | null;
|
|
10338
|
-
validationErrors?: Array<{
|
|
10339
|
-
message?: string | null;
|
|
10340
|
-
members?: Array<(string)> | null;
|
|
10341
|
-
}> | null;
|
|
10342
|
-
};
|
|
10343
|
-
};
|
|
10344
|
-
/**
|
|
10345
|
-
* Unauthorized
|
|
10346
|
-
*/
|
|
10347
|
-
401: {
|
|
10348
|
-
error?: {
|
|
10349
|
-
code?: string | null;
|
|
10350
|
-
message?: string | null;
|
|
10351
|
-
details?: string | null;
|
|
10352
|
-
data?: {
|
|
10353
|
-
[key: string]: unknown;
|
|
10354
|
-
} | null;
|
|
10355
|
-
validationErrors?: Array<{
|
|
10356
|
-
message?: string | null;
|
|
10357
|
-
members?: Array<(string)> | null;
|
|
10358
|
-
}> | null;
|
|
10359
|
-
};
|
|
10360
|
-
};
|
|
10361
|
-
/**
|
|
10362
|
-
* Forbidden
|
|
10363
|
-
*/
|
|
10364
|
-
403: {
|
|
10365
|
-
error?: {
|
|
10366
|
-
code?: string | null;
|
|
10367
|
-
message?: string | null;
|
|
10368
|
-
details?: string | null;
|
|
10369
|
-
data?: {
|
|
10370
|
-
[key: string]: unknown;
|
|
10371
|
-
} | null;
|
|
10372
|
-
validationErrors?: Array<{
|
|
10373
|
-
message?: string | null;
|
|
10374
|
-
members?: Array<(string)> | null;
|
|
10375
|
-
}> | null;
|
|
10376
|
-
};
|
|
10377
|
-
};
|
|
10378
|
-
/**
|
|
10379
|
-
* Not Found
|
|
10380
|
-
*/
|
|
10381
|
-
404: {
|
|
10382
|
-
error?: {
|
|
10383
|
-
code?: string | null;
|
|
10384
|
-
message?: string | null;
|
|
10385
|
-
details?: string | null;
|
|
10386
|
-
data?: {
|
|
10387
|
-
[key: string]: unknown;
|
|
10388
|
-
} | null;
|
|
10389
|
-
validationErrors?: Array<{
|
|
10390
|
-
message?: string | null;
|
|
10391
|
-
members?: Array<(string)> | null;
|
|
10392
|
-
}> | null;
|
|
10393
|
-
};
|
|
10394
|
-
};
|
|
10395
|
-
/**
|
|
10396
|
-
* Server Error
|
|
10397
|
-
*/
|
|
10398
|
-
500: {
|
|
10399
|
-
error?: {
|
|
10400
|
-
code?: string | null;
|
|
10401
|
-
message?: string | null;
|
|
10402
|
-
details?: string | null;
|
|
10403
|
-
data?: {
|
|
10404
|
-
[key: string]: unknown;
|
|
10405
|
-
} | null;
|
|
10406
|
-
validationErrors?: Array<{
|
|
10407
|
-
message?: string | null;
|
|
10408
|
-
members?: Array<(string)> | null;
|
|
10409
|
-
}> | null;
|
|
10410
|
-
};
|
|
10411
|
-
};
|
|
10412
|
-
/**
|
|
10413
|
-
* Server Error
|
|
10414
|
-
*/
|
|
10415
|
-
501: {
|
|
10416
|
-
error?: {
|
|
10417
|
-
code?: string | null;
|
|
10418
|
-
message?: string | null;
|
|
10419
|
-
details?: string | null;
|
|
10420
|
-
data?: {
|
|
10421
|
-
[key: string]: unknown;
|
|
10422
|
-
} | null;
|
|
10423
|
-
validationErrors?: Array<{
|
|
10424
|
-
message?: string | null;
|
|
10425
|
-
members?: Array<(string)> | null;
|
|
9752
|
+
lastModificationTime?: string | null;
|
|
9753
|
+
lastModifierId?: string | null;
|
|
9754
|
+
isDeleted?: boolean;
|
|
9755
|
+
deleterId?: string | null;
|
|
9756
|
+
deletionTime?: string | null;
|
|
9757
|
+
genderType?: 0 | 1;
|
|
9758
|
+
individualId?: string;
|
|
9759
|
+
date?: string;
|
|
9760
|
+
birthDate?: string;
|
|
9761
|
+
ethnicity?: string | null;
|
|
9762
|
+
maritalStatusCode?: string | null;
|
|
9763
|
+
religiousAffiliationName?: string | null;
|
|
10426
9764
|
}> | null;
|
|
10427
|
-
|
|
10428
|
-
|
|
10429
|
-
|
|
10430
|
-
};
|
|
10431
|
-
};
|
|
10432
|
-
'/api/fundraiser-service/fundraisers/affiliation-type/{fundraiserId}': {
|
|
10433
|
-
post: {
|
|
10434
|
-
req: PostApiFundraiserServiceFundraisersAffiliationTypeByFundraiserIdData;
|
|
10435
|
-
res: {
|
|
10436
|
-
/**
|
|
10437
|
-
* Success
|
|
10438
|
-
*/
|
|
10439
|
-
200: {
|
|
10440
|
-
id?: string;
|
|
10441
|
-
creationTime?: string;
|
|
10442
|
-
creatorId?: string | null;
|
|
10443
|
-
lastModificationTime?: string | null;
|
|
10444
|
-
lastModifierId?: string | null;
|
|
10445
|
-
isDeleted?: boolean;
|
|
10446
|
-
deleterId?: string | null;
|
|
10447
|
-
deletionTime?: string | null;
|
|
10448
|
-
fundraiserId?: string;
|
|
10449
|
-
name?: string | null;
|
|
10450
|
-
description?: string | null;
|
|
10451
|
-
affiliationTypeCode?: 0 | 1 | 2;
|
|
10452
|
-
partyId?: string;
|
|
9765
|
+
entityInformationTypeId?: string;
|
|
9766
|
+
contactInformationId?: string;
|
|
9767
|
+
}> | null;
|
|
10453
9768
|
};
|
|
10454
9769
|
/**
|
|
10455
9770
|
* Bad Request
|
|
@@ -10556,9 +9871,9 @@ export type $OpenApiTs = {
|
|
|
10556
9871
|
};
|
|
10557
9872
|
};
|
|
10558
9873
|
};
|
|
10559
|
-
'/api/fundraiser-service/fundraisers/
|
|
9874
|
+
'/api/fundraiser-service/fundraisers/affiliation-type/{fundraiserId}': {
|
|
10560
9875
|
post: {
|
|
10561
|
-
req:
|
|
9876
|
+
req: PostApiFundraiserServiceFundraisersAffiliationTypeByFundraiserIdData;
|
|
10562
9877
|
res: {
|
|
10563
9878
|
/**
|
|
10564
9879
|
* Success
|
|
@@ -10572,212 +9887,11 @@ export type $OpenApiTs = {
|
|
|
10572
9887
|
isDeleted?: boolean;
|
|
10573
9888
|
deleterId?: string | null;
|
|
10574
9889
|
deletionTime?: string | null;
|
|
10575
|
-
|
|
10576
|
-
|
|
10577
|
-
|
|
10578
|
-
|
|
10579
|
-
|
|
10580
|
-
lastModifierId?: string | null;
|
|
10581
|
-
isDeleted?: boolean;
|
|
10582
|
-
deleterId?: string | null;
|
|
10583
|
-
deletionTime?: string | null;
|
|
10584
|
-
fundraiserId?: string;
|
|
10585
|
-
organizations?: Array<{
|
|
10586
|
-
id?: string;
|
|
10587
|
-
creationTime?: string;
|
|
10588
|
-
creatorId?: string | null;
|
|
10589
|
-
lastModificationTime?: string | null;
|
|
10590
|
-
lastModifierId?: string | null;
|
|
10591
|
-
isDeleted?: boolean;
|
|
10592
|
-
deleterId?: string | null;
|
|
10593
|
-
deletionTime?: string | null;
|
|
10594
|
-
name?: string | null;
|
|
10595
|
-
taxpayerId?: string | null;
|
|
10596
|
-
legalStatusCode?: string | null;
|
|
10597
|
-
contactInformation?: {
|
|
10598
|
-
id?: string;
|
|
10599
|
-
creationTime?: string;
|
|
10600
|
-
creatorId?: string | null;
|
|
10601
|
-
lastModificationTime?: string | null;
|
|
10602
|
-
lastModifierId?: string | null;
|
|
10603
|
-
isDeleted?: boolean;
|
|
10604
|
-
deleterId?: string | null;
|
|
10605
|
-
deletionTime?: string | null;
|
|
10606
|
-
startDate?: string;
|
|
10607
|
-
endDate?: string;
|
|
10608
|
-
telephones?: Array<{
|
|
10609
|
-
id?: string;
|
|
10610
|
-
creationTime?: string;
|
|
10611
|
-
creatorId?: string | null;
|
|
10612
|
-
lastModificationTime?: string | null;
|
|
10613
|
-
lastModifierId?: string | null;
|
|
10614
|
-
isDeleted?: boolean;
|
|
10615
|
-
deleterId?: string | null;
|
|
10616
|
-
deletionTime?: string | null;
|
|
10617
|
-
primaryFlag?: boolean;
|
|
10618
|
-
typeCode?: 0 | 1 | 2 | 3;
|
|
10619
|
-
areaCode?: string | null;
|
|
10620
|
-
localNumber?: string | null;
|
|
10621
|
-
ituCountryCode?: string | null;
|
|
10622
|
-
contactInformationTypeId?: string;
|
|
10623
|
-
}> | null;
|
|
10624
|
-
addresses?: Array<{
|
|
10625
|
-
id?: string;
|
|
10626
|
-
creationTime?: string;
|
|
10627
|
-
creatorId?: string | null;
|
|
10628
|
-
lastModificationTime?: string | null;
|
|
10629
|
-
lastModifierId?: string | null;
|
|
10630
|
-
isDeleted?: boolean;
|
|
10631
|
-
deleterId?: string | null;
|
|
10632
|
-
deletionTime?: string | null;
|
|
10633
|
-
typeCode?: 0 | 1;
|
|
10634
|
-
addressLine?: string | null;
|
|
10635
|
-
city?: string | null;
|
|
10636
|
-
terriority?: string | null;
|
|
10637
|
-
postalCode?: string | null;
|
|
10638
|
-
country?: string | null;
|
|
10639
|
-
fullAddress?: string | null;
|
|
10640
|
-
primaryFlag?: boolean;
|
|
10641
|
-
contactInformationTypeId?: string;
|
|
10642
|
-
}> | null;
|
|
10643
|
-
emails?: Array<{
|
|
10644
|
-
id?: string;
|
|
10645
|
-
creationTime?: string;
|
|
10646
|
-
creatorId?: string | null;
|
|
10647
|
-
lastModificationTime?: string | null;
|
|
10648
|
-
lastModifierId?: string | null;
|
|
10649
|
-
isDeleted?: boolean;
|
|
10650
|
-
deleterId?: string | null;
|
|
10651
|
-
deletionTime?: string | null;
|
|
10652
|
-
primaryFlag?: boolean;
|
|
10653
|
-
typeCode?: 0 | 1;
|
|
10654
|
-
emailAddress?: string | null;
|
|
10655
|
-
contactInformationTypeId?: string;
|
|
10656
|
-
}> | null;
|
|
10657
|
-
};
|
|
10658
|
-
}> | null;
|
|
10659
|
-
individuals?: Array<{
|
|
10660
|
-
id?: string;
|
|
10661
|
-
creationTime?: string;
|
|
10662
|
-
creatorId?: string | null;
|
|
10663
|
-
lastModificationTime?: string | null;
|
|
10664
|
-
lastModifierId?: string | null;
|
|
10665
|
-
isDeleted?: boolean;
|
|
10666
|
-
deleterId?: string | null;
|
|
10667
|
-
deletionTime?: string | null;
|
|
10668
|
-
name?: {
|
|
10669
|
-
id?: string;
|
|
10670
|
-
creationTime?: string;
|
|
10671
|
-
creatorId?: string | null;
|
|
10672
|
-
lastModificationTime?: string | null;
|
|
10673
|
-
lastModifierId?: string | null;
|
|
10674
|
-
isDeleted?: boolean;
|
|
10675
|
-
deleterId?: string | null;
|
|
10676
|
-
deletionTime?: string | null;
|
|
10677
|
-
individualId?: string;
|
|
10678
|
-
salutation?: string | null;
|
|
10679
|
-
name?: string | null;
|
|
10680
|
-
suffix?: string | null;
|
|
10681
|
-
mailingName?: string | null;
|
|
10682
|
-
officialName?: string | null;
|
|
10683
|
-
};
|
|
10684
|
-
contactInformation?: {
|
|
10685
|
-
id?: string;
|
|
10686
|
-
creationTime?: string;
|
|
10687
|
-
creatorId?: string | null;
|
|
10688
|
-
lastModificationTime?: string | null;
|
|
10689
|
-
lastModifierId?: string | null;
|
|
10690
|
-
isDeleted?: boolean;
|
|
10691
|
-
deleterId?: string | null;
|
|
10692
|
-
deletionTime?: string | null;
|
|
10693
|
-
startDate?: string;
|
|
10694
|
-
endDate?: string;
|
|
10695
|
-
telephones?: Array<{
|
|
10696
|
-
id?: string;
|
|
10697
|
-
creationTime?: string;
|
|
10698
|
-
creatorId?: string | null;
|
|
10699
|
-
lastModificationTime?: string | null;
|
|
10700
|
-
lastModifierId?: string | null;
|
|
10701
|
-
isDeleted?: boolean;
|
|
10702
|
-
deleterId?: string | null;
|
|
10703
|
-
deletionTime?: string | null;
|
|
10704
|
-
primaryFlag?: boolean;
|
|
10705
|
-
typeCode?: 0 | 1 | 2 | 3;
|
|
10706
|
-
areaCode?: string | null;
|
|
10707
|
-
localNumber?: string | null;
|
|
10708
|
-
ituCountryCode?: string | null;
|
|
10709
|
-
contactInformationTypeId?: string;
|
|
10710
|
-
}> | null;
|
|
10711
|
-
addresses?: Array<{
|
|
10712
|
-
id?: string;
|
|
10713
|
-
creationTime?: string;
|
|
10714
|
-
creatorId?: string | null;
|
|
10715
|
-
lastModificationTime?: string | null;
|
|
10716
|
-
lastModifierId?: string | null;
|
|
10717
|
-
isDeleted?: boolean;
|
|
10718
|
-
deleterId?: string | null;
|
|
10719
|
-
deletionTime?: string | null;
|
|
10720
|
-
typeCode?: 0 | 1;
|
|
10721
|
-
addressLine?: string | null;
|
|
10722
|
-
city?: string | null;
|
|
10723
|
-
terriority?: string | null;
|
|
10724
|
-
postalCode?: string | null;
|
|
10725
|
-
country?: string | null;
|
|
10726
|
-
fullAddress?: string | null;
|
|
10727
|
-
primaryFlag?: boolean;
|
|
10728
|
-
contactInformationTypeId?: string;
|
|
10729
|
-
}> | null;
|
|
10730
|
-
emails?: Array<{
|
|
10731
|
-
id?: string;
|
|
10732
|
-
creationTime?: string;
|
|
10733
|
-
creatorId?: string | null;
|
|
10734
|
-
lastModificationTime?: string | null;
|
|
10735
|
-
lastModifierId?: string | null;
|
|
10736
|
-
isDeleted?: boolean;
|
|
10737
|
-
deleterId?: string | null;
|
|
10738
|
-
deletionTime?: string | null;
|
|
10739
|
-
primaryFlag?: boolean;
|
|
10740
|
-
typeCode?: 0 | 1;
|
|
10741
|
-
emailAddress?: string | null;
|
|
10742
|
-
contactInformationTypeId?: string;
|
|
10743
|
-
}> | null;
|
|
10744
|
-
};
|
|
10745
|
-
personalSummaries?: Array<{
|
|
10746
|
-
id?: string;
|
|
10747
|
-
creationTime?: string;
|
|
10748
|
-
creatorId?: string | null;
|
|
10749
|
-
lastModificationTime?: string | null;
|
|
10750
|
-
lastModifierId?: string | null;
|
|
10751
|
-
isDeleted?: boolean;
|
|
10752
|
-
deleterId?: string | null;
|
|
10753
|
-
deletionTime?: string | null;
|
|
10754
|
-
genderType?: 0 | 1;
|
|
10755
|
-
individualId?: string;
|
|
10756
|
-
date?: string;
|
|
10757
|
-
birthDate?: string;
|
|
10758
|
-
ethnicity?: string | null;
|
|
10759
|
-
maritalStatusCode?: string | null;
|
|
10760
|
-
religiousAffiliationName?: string | null;
|
|
10761
|
-
}> | null;
|
|
10762
|
-
entityInformationTypeId?: string;
|
|
10763
|
-
contactInformationId?: string;
|
|
10764
|
-
}> | null;
|
|
10765
|
-
}> | null;
|
|
10766
|
-
affiliations?: Array<{
|
|
10767
|
-
id?: string;
|
|
10768
|
-
creationTime?: string;
|
|
10769
|
-
creatorId?: string | null;
|
|
10770
|
-
lastModificationTime?: string | null;
|
|
10771
|
-
lastModifierId?: string | null;
|
|
10772
|
-
isDeleted?: boolean;
|
|
10773
|
-
deleterId?: string | null;
|
|
10774
|
-
deletionTime?: string | null;
|
|
10775
|
-
fundraiserId?: string;
|
|
10776
|
-
name?: string | null;
|
|
10777
|
-
description?: string | null;
|
|
10778
|
-
affiliationTypeCode?: 0 | 1 | 2;
|
|
10779
|
-
partyId?: string;
|
|
10780
|
-
}> | null;
|
|
9890
|
+
fundraiserId?: string;
|
|
9891
|
+
name?: string | null;
|
|
9892
|
+
description?: string | null;
|
|
9893
|
+
affiliationTypeCode?: 0 | 1 | 2;
|
|
9894
|
+
partyId?: string;
|
|
10781
9895
|
};
|
|
10782
9896
|
/**
|
|
10783
9897
|
* Bad Request
|
|
@@ -10884,9 +9998,9 @@ export type $OpenApiTs = {
|
|
|
10884
9998
|
};
|
|
10885
9999
|
};
|
|
10886
10000
|
};
|
|
10887
|
-
'/api/fundraiser-service/fundraisers/
|
|
10888
|
-
|
|
10889
|
-
req:
|
|
10001
|
+
'/api/fundraiser-service/fundraisers/with-components': {
|
|
10002
|
+
post: {
|
|
10003
|
+
req: PostApiFundraiserServiceFundraisersWithComponentsData;
|
|
10890
10004
|
res: {
|
|
10891
10005
|
/**
|
|
10892
10006
|
* Success
|
|
@@ -11212,13 +10326,14 @@ export type $OpenApiTs = {
|
|
|
11212
10326
|
};
|
|
11213
10327
|
};
|
|
11214
10328
|
};
|
|
11215
|
-
'/api/fundraiser-service/fundraisers/
|
|
10329
|
+
'/api/fundraiser-service/fundraisers/detail/{id}': {
|
|
11216
10330
|
get: {
|
|
10331
|
+
req: GetApiFundraiserServiceFundraisersDetailByIdData;
|
|
11217
10332
|
res: {
|
|
11218
10333
|
/**
|
|
11219
10334
|
* Success
|
|
11220
10335
|
*/
|
|
11221
|
-
200:
|
|
10336
|
+
200: {
|
|
11222
10337
|
id?: string;
|
|
11223
10338
|
creationTime?: string;
|
|
11224
10339
|
creatorId?: string | null;
|
|
@@ -11433,7 +10548,7 @@ export type $OpenApiTs = {
|
|
|
11433
10548
|
affiliationTypeCode?: 0 | 1 | 2;
|
|
11434
10549
|
partyId?: string;
|
|
11435
10550
|
}> | null;
|
|
11436
|
-
}
|
|
10551
|
+
};
|
|
11437
10552
|
/**
|
|
11438
10553
|
* Bad Request
|
|
11439
10554
|
*/
|
|
@@ -11539,9 +10654,8 @@ export type $OpenApiTs = {
|
|
|
11539
10654
|
};
|
|
11540
10655
|
};
|
|
11541
10656
|
};
|
|
11542
|
-
'/api/fundraiser-service/fundraisers/
|
|
10657
|
+
'/api/fundraiser-service/fundraisers/my-fundraisers': {
|
|
11543
10658
|
get: {
|
|
11544
|
-
req: GetApiFundraiserServiceFundraisersProfileListByIdsData;
|
|
11545
10659
|
res: {
|
|
11546
10660
|
/**
|
|
11547
10661
|
* Success
|
|
@@ -11549,6 +10663,23 @@ export type $OpenApiTs = {
|
|
|
11549
10663
|
200: Array<{
|
|
11550
10664
|
id?: string;
|
|
11551
10665
|
name?: string | null;
|
|
10666
|
+
fundraiserType?: 0 | 1;
|
|
10667
|
+
fundraiserTypeDescription?: string | null;
|
|
10668
|
+
affiliation?: {
|
|
10669
|
+
id?: string;
|
|
10670
|
+
creationTime?: string;
|
|
10671
|
+
creatorId?: string | null;
|
|
10672
|
+
lastModificationTime?: string | null;
|
|
10673
|
+
lastModifierId?: string | null;
|
|
10674
|
+
isDeleted?: boolean;
|
|
10675
|
+
deleterId?: string | null;
|
|
10676
|
+
deletionTime?: string | null;
|
|
10677
|
+
fundraiserId?: string;
|
|
10678
|
+
name?: string | null;
|
|
10679
|
+
description?: string | null;
|
|
10680
|
+
affiliationTypeCode?: 0 | 1 | 2;
|
|
10681
|
+
partyId?: string;
|
|
10682
|
+
};
|
|
11552
10683
|
}>;
|
|
11553
10684
|
/**
|
|
11554
10685
|
* Bad Request
|
|
@@ -11628,241 +10759,46 @@ export type $OpenApiTs = {
|
|
|
11628
10759
|
details?: string | null;
|
|
11629
10760
|
data?: {
|
|
11630
10761
|
[key: string]: unknown;
|
|
11631
|
-
} | null;
|
|
11632
|
-
validationErrors?: Array<{
|
|
11633
|
-
message?: string | null;
|
|
11634
|
-
members?: Array<(string)> | null;
|
|
11635
|
-
}> | null;
|
|
11636
|
-
};
|
|
11637
|
-
};
|
|
11638
|
-
/**
|
|
11639
|
-
* Server Error
|
|
11640
|
-
*/
|
|
11641
|
-
501: {
|
|
11642
|
-
error?: {
|
|
11643
|
-
code?: string | null;
|
|
11644
|
-
message?: string | null;
|
|
11645
|
-
details?: string | null;
|
|
11646
|
-
data?: {
|
|
11647
|
-
[key: string]: unknown;
|
|
11648
|
-
} | null;
|
|
11649
|
-
validationErrors?: Array<{
|
|
11650
|
-
message?: string | null;
|
|
11651
|
-
members?: Array<(string)> | null;
|
|
11652
|
-
}> | null;
|
|
11653
|
-
};
|
|
11654
|
-
};
|
|
11655
|
-
};
|
|
11656
|
-
};
|
|
11657
|
-
};
|
|
11658
|
-
'/api/fundraiser-service/public/fundraisers/detail/{id}': {
|
|
11659
|
-
get: {
|
|
11660
|
-
req: GetApiFundraiserServicePublicFundraisersDetailByIdData;
|
|
11661
|
-
res: {
|
|
11662
|
-
/**
|
|
11663
|
-
* Success
|
|
11664
|
-
*/
|
|
11665
|
-
200: {
|
|
11666
|
-
id?: string;
|
|
11667
|
-
creationTime?: string;
|
|
11668
|
-
creatorId?: string | null;
|
|
11669
|
-
lastModificationTime?: string | null;
|
|
11670
|
-
lastModifierId?: string | null;
|
|
11671
|
-
isDeleted?: boolean;
|
|
11672
|
-
deleterId?: string | null;
|
|
11673
|
-
deletionTime?: string | null;
|
|
11674
|
-
entityInformations?: Array<{
|
|
11675
|
-
id?: string;
|
|
11676
|
-
creationTime?: string;
|
|
11677
|
-
creatorId?: string | null;
|
|
11678
|
-
lastModificationTime?: string | null;
|
|
11679
|
-
lastModifierId?: string | null;
|
|
11680
|
-
isDeleted?: boolean;
|
|
11681
|
-
deleterId?: string | null;
|
|
11682
|
-
deletionTime?: string | null;
|
|
11683
|
-
fundraiserId?: string;
|
|
11684
|
-
organizations?: Array<{
|
|
11685
|
-
id?: string;
|
|
11686
|
-
creationTime?: string;
|
|
11687
|
-
creatorId?: string | null;
|
|
11688
|
-
lastModificationTime?: string | null;
|
|
11689
|
-
lastModifierId?: string | null;
|
|
11690
|
-
isDeleted?: boolean;
|
|
11691
|
-
deleterId?: string | null;
|
|
11692
|
-
deletionTime?: string | null;
|
|
11693
|
-
name?: string | null;
|
|
11694
|
-
taxpayerId?: string | null;
|
|
11695
|
-
legalStatusCode?: string | null;
|
|
11696
|
-
contactInformation?: {
|
|
11697
|
-
id?: string;
|
|
11698
|
-
creationTime?: string;
|
|
11699
|
-
creatorId?: string | null;
|
|
11700
|
-
lastModificationTime?: string | null;
|
|
11701
|
-
lastModifierId?: string | null;
|
|
11702
|
-
isDeleted?: boolean;
|
|
11703
|
-
deleterId?: string | null;
|
|
11704
|
-
deletionTime?: string | null;
|
|
11705
|
-
startDate?: string;
|
|
11706
|
-
endDate?: string;
|
|
11707
|
-
telephones?: Array<{
|
|
11708
|
-
id?: string;
|
|
11709
|
-
creationTime?: string;
|
|
11710
|
-
creatorId?: string | null;
|
|
11711
|
-
lastModificationTime?: string | null;
|
|
11712
|
-
lastModifierId?: string | null;
|
|
11713
|
-
isDeleted?: boolean;
|
|
11714
|
-
deleterId?: string | null;
|
|
11715
|
-
deletionTime?: string | null;
|
|
11716
|
-
primaryFlag?: boolean;
|
|
11717
|
-
typeCode?: 0 | 1 | 2 | 3;
|
|
11718
|
-
areaCode?: string | null;
|
|
11719
|
-
localNumber?: string | null;
|
|
11720
|
-
ituCountryCode?: string | null;
|
|
11721
|
-
contactInformationTypeId?: string;
|
|
11722
|
-
}> | null;
|
|
11723
|
-
addresses?: Array<{
|
|
11724
|
-
id?: string;
|
|
11725
|
-
creationTime?: string;
|
|
11726
|
-
creatorId?: string | null;
|
|
11727
|
-
lastModificationTime?: string | null;
|
|
11728
|
-
lastModifierId?: string | null;
|
|
11729
|
-
isDeleted?: boolean;
|
|
11730
|
-
deleterId?: string | null;
|
|
11731
|
-
deletionTime?: string | null;
|
|
11732
|
-
typeCode?: 0 | 1;
|
|
11733
|
-
addressLine?: string | null;
|
|
11734
|
-
city?: string | null;
|
|
11735
|
-
terriority?: string | null;
|
|
11736
|
-
postalCode?: string | null;
|
|
11737
|
-
country?: string | null;
|
|
11738
|
-
fullAddress?: string | null;
|
|
11739
|
-
primaryFlag?: boolean;
|
|
11740
|
-
contactInformationTypeId?: string;
|
|
11741
|
-
}> | null;
|
|
11742
|
-
emails?: Array<{
|
|
11743
|
-
id?: string;
|
|
11744
|
-
creationTime?: string;
|
|
11745
|
-
creatorId?: string | null;
|
|
11746
|
-
lastModificationTime?: string | null;
|
|
11747
|
-
lastModifierId?: string | null;
|
|
11748
|
-
isDeleted?: boolean;
|
|
11749
|
-
deleterId?: string | null;
|
|
11750
|
-
deletionTime?: string | null;
|
|
11751
|
-
primaryFlag?: boolean;
|
|
11752
|
-
typeCode?: 0 | 1;
|
|
11753
|
-
emailAddress?: string | null;
|
|
11754
|
-
contactInformationTypeId?: string;
|
|
11755
|
-
}> | null;
|
|
11756
|
-
};
|
|
11757
|
-
}> | null;
|
|
11758
|
-
individuals?: Array<{
|
|
11759
|
-
id?: string;
|
|
11760
|
-
creationTime?: string;
|
|
11761
|
-
creatorId?: string | null;
|
|
11762
|
-
lastModificationTime?: string | null;
|
|
11763
|
-
lastModifierId?: string | null;
|
|
11764
|
-
isDeleted?: boolean;
|
|
11765
|
-
deleterId?: string | null;
|
|
11766
|
-
deletionTime?: string | null;
|
|
11767
|
-
name?: {
|
|
11768
|
-
id?: string;
|
|
11769
|
-
creationTime?: string;
|
|
11770
|
-
creatorId?: string | null;
|
|
11771
|
-
lastModificationTime?: string | null;
|
|
11772
|
-
lastModifierId?: string | null;
|
|
11773
|
-
isDeleted?: boolean;
|
|
11774
|
-
deleterId?: string | null;
|
|
11775
|
-
deletionTime?: string | null;
|
|
11776
|
-
individualId?: string;
|
|
11777
|
-
salutation?: string | null;
|
|
11778
|
-
name?: string | null;
|
|
11779
|
-
suffix?: string | null;
|
|
11780
|
-
mailingName?: string | null;
|
|
11781
|
-
officialName?: string | null;
|
|
11782
|
-
};
|
|
11783
|
-
contactInformation?: {
|
|
11784
|
-
id?: string;
|
|
11785
|
-
creationTime?: string;
|
|
11786
|
-
creatorId?: string | null;
|
|
11787
|
-
lastModificationTime?: string | null;
|
|
11788
|
-
lastModifierId?: string | null;
|
|
11789
|
-
isDeleted?: boolean;
|
|
11790
|
-
deleterId?: string | null;
|
|
11791
|
-
deletionTime?: string | null;
|
|
11792
|
-
startDate?: string;
|
|
11793
|
-
endDate?: string;
|
|
11794
|
-
telephones?: Array<{
|
|
11795
|
-
id?: string;
|
|
11796
|
-
creationTime?: string;
|
|
11797
|
-
creatorId?: string | null;
|
|
11798
|
-
lastModificationTime?: string | null;
|
|
11799
|
-
lastModifierId?: string | null;
|
|
11800
|
-
isDeleted?: boolean;
|
|
11801
|
-
deleterId?: string | null;
|
|
11802
|
-
deletionTime?: string | null;
|
|
11803
|
-
primaryFlag?: boolean;
|
|
11804
|
-
typeCode?: 0 | 1 | 2 | 3;
|
|
11805
|
-
areaCode?: string | null;
|
|
11806
|
-
localNumber?: string | null;
|
|
11807
|
-
ituCountryCode?: string | null;
|
|
11808
|
-
contactInformationTypeId?: string;
|
|
11809
|
-
}> | null;
|
|
11810
|
-
addresses?: Array<{
|
|
11811
|
-
id?: string;
|
|
11812
|
-
creationTime?: string;
|
|
11813
|
-
creatorId?: string | null;
|
|
11814
|
-
lastModificationTime?: string | null;
|
|
11815
|
-
lastModifierId?: string | null;
|
|
11816
|
-
isDeleted?: boolean;
|
|
11817
|
-
deleterId?: string | null;
|
|
11818
|
-
deletionTime?: string | null;
|
|
11819
|
-
typeCode?: 0 | 1;
|
|
11820
|
-
addressLine?: string | null;
|
|
11821
|
-
city?: string | null;
|
|
11822
|
-
terriority?: string | null;
|
|
11823
|
-
postalCode?: string | null;
|
|
11824
|
-
country?: string | null;
|
|
11825
|
-
fullAddress?: string | null;
|
|
11826
|
-
primaryFlag?: boolean;
|
|
11827
|
-
contactInformationTypeId?: string;
|
|
11828
|
-
}> | null;
|
|
11829
|
-
emails?: Array<{
|
|
11830
|
-
id?: string;
|
|
11831
|
-
creationTime?: string;
|
|
11832
|
-
creatorId?: string | null;
|
|
11833
|
-
lastModificationTime?: string | null;
|
|
11834
|
-
lastModifierId?: string | null;
|
|
11835
|
-
isDeleted?: boolean;
|
|
11836
|
-
deleterId?: string | null;
|
|
11837
|
-
deletionTime?: string | null;
|
|
11838
|
-
primaryFlag?: boolean;
|
|
11839
|
-
typeCode?: 0 | 1;
|
|
11840
|
-
emailAddress?: string | null;
|
|
11841
|
-
contactInformationTypeId?: string;
|
|
11842
|
-
}> | null;
|
|
11843
|
-
};
|
|
11844
|
-
personalSummaries?: Array<{
|
|
11845
|
-
id?: string;
|
|
11846
|
-
creationTime?: string;
|
|
11847
|
-
creatorId?: string | null;
|
|
11848
|
-
lastModificationTime?: string | null;
|
|
11849
|
-
lastModifierId?: string | null;
|
|
11850
|
-
isDeleted?: boolean;
|
|
11851
|
-
deleterId?: string | null;
|
|
11852
|
-
deletionTime?: string | null;
|
|
11853
|
-
genderType?: 0 | 1;
|
|
11854
|
-
individualId?: string;
|
|
11855
|
-
date?: string;
|
|
11856
|
-
birthDate?: string;
|
|
11857
|
-
ethnicity?: string | null;
|
|
11858
|
-
maritalStatusCode?: string | null;
|
|
11859
|
-
religiousAffiliationName?: string | null;
|
|
11860
|
-
}> | null;
|
|
11861
|
-
entityInformationTypeId?: string;
|
|
11862
|
-
contactInformationId?: string;
|
|
10762
|
+
} | null;
|
|
10763
|
+
validationErrors?: Array<{
|
|
10764
|
+
message?: string | null;
|
|
10765
|
+
members?: Array<(string)> | null;
|
|
11863
10766
|
}> | null;
|
|
11864
|
-
}
|
|
11865
|
-
|
|
10767
|
+
};
|
|
10768
|
+
};
|
|
10769
|
+
/**
|
|
10770
|
+
* Server Error
|
|
10771
|
+
*/
|
|
10772
|
+
501: {
|
|
10773
|
+
error?: {
|
|
10774
|
+
code?: string | null;
|
|
10775
|
+
message?: string | null;
|
|
10776
|
+
details?: string | null;
|
|
10777
|
+
data?: {
|
|
10778
|
+
[key: string]: unknown;
|
|
10779
|
+
} | null;
|
|
10780
|
+
validationErrors?: Array<{
|
|
10781
|
+
message?: string | null;
|
|
10782
|
+
members?: Array<(string)> | null;
|
|
10783
|
+
}> | null;
|
|
10784
|
+
};
|
|
10785
|
+
};
|
|
10786
|
+
};
|
|
10787
|
+
};
|
|
10788
|
+
};
|
|
10789
|
+
'/api/fundraiser-service/fundraisers/profile-list-of-associated-by-abp-user-id': {
|
|
10790
|
+
get: {
|
|
10791
|
+
req: GetApiFundraiserServiceFundraisersProfileListOfAssociatedByAbpUserIdData;
|
|
10792
|
+
res: {
|
|
10793
|
+
/**
|
|
10794
|
+
* Success
|
|
10795
|
+
*/
|
|
10796
|
+
200: Array<{
|
|
10797
|
+
id?: string;
|
|
10798
|
+
name?: string | null;
|
|
10799
|
+
fundraiserType?: 0 | 1;
|
|
10800
|
+
fundraiserTypeDescription?: string | null;
|
|
10801
|
+
affiliation?: {
|
|
11866
10802
|
id?: string;
|
|
11867
10803
|
creationTime?: string;
|
|
11868
10804
|
creatorId?: string | null;
|
|
@@ -11876,8 +10812,8 @@ export type $OpenApiTs = {
|
|
|
11876
10812
|
description?: string | null;
|
|
11877
10813
|
affiliationTypeCode?: 0 | 1 | 2;
|
|
11878
10814
|
partyId?: string;
|
|
11879
|
-
}
|
|
11880
|
-
}
|
|
10815
|
+
};
|
|
10816
|
+
}>;
|
|
11881
10817
|
/**
|
|
11882
10818
|
* Bad Request
|
|
11883
10819
|
*/
|
|
@@ -11983,214 +10919,19 @@ export type $OpenApiTs = {
|
|
|
11983
10919
|
};
|
|
11984
10920
|
};
|
|
11985
10921
|
};
|
|
11986
|
-
'/api/fundraiser-service/public/fundraisers/
|
|
10922
|
+
'/api/fundraiser-service/public/fundraisers/profile-list-by-fundraiser-ids': {
|
|
11987
10923
|
get: {
|
|
11988
|
-
req:
|
|
10924
|
+
req: GetApiFundraiserServicePublicFundraisersProfileListByFundraiserIdsData;
|
|
11989
10925
|
res: {
|
|
11990
10926
|
/**
|
|
11991
10927
|
* Success
|
|
11992
10928
|
*/
|
|
11993
10929
|
200: Array<{
|
|
11994
10930
|
id?: string;
|
|
11995
|
-
|
|
11996
|
-
|
|
11997
|
-
|
|
11998
|
-
|
|
11999
|
-
isDeleted?: boolean;
|
|
12000
|
-
deleterId?: string | null;
|
|
12001
|
-
deletionTime?: string | null;
|
|
12002
|
-
entityInformations?: Array<{
|
|
12003
|
-
id?: string;
|
|
12004
|
-
creationTime?: string;
|
|
12005
|
-
creatorId?: string | null;
|
|
12006
|
-
lastModificationTime?: string | null;
|
|
12007
|
-
lastModifierId?: string | null;
|
|
12008
|
-
isDeleted?: boolean;
|
|
12009
|
-
deleterId?: string | null;
|
|
12010
|
-
deletionTime?: string | null;
|
|
12011
|
-
fundraiserId?: string;
|
|
12012
|
-
organizations?: Array<{
|
|
12013
|
-
id?: string;
|
|
12014
|
-
creationTime?: string;
|
|
12015
|
-
creatorId?: string | null;
|
|
12016
|
-
lastModificationTime?: string | null;
|
|
12017
|
-
lastModifierId?: string | null;
|
|
12018
|
-
isDeleted?: boolean;
|
|
12019
|
-
deleterId?: string | null;
|
|
12020
|
-
deletionTime?: string | null;
|
|
12021
|
-
name?: string | null;
|
|
12022
|
-
taxpayerId?: string | null;
|
|
12023
|
-
legalStatusCode?: string | null;
|
|
12024
|
-
contactInformation?: {
|
|
12025
|
-
id?: string;
|
|
12026
|
-
creationTime?: string;
|
|
12027
|
-
creatorId?: string | null;
|
|
12028
|
-
lastModificationTime?: string | null;
|
|
12029
|
-
lastModifierId?: string | null;
|
|
12030
|
-
isDeleted?: boolean;
|
|
12031
|
-
deleterId?: string | null;
|
|
12032
|
-
deletionTime?: string | null;
|
|
12033
|
-
startDate?: string;
|
|
12034
|
-
endDate?: string;
|
|
12035
|
-
telephones?: Array<{
|
|
12036
|
-
id?: string;
|
|
12037
|
-
creationTime?: string;
|
|
12038
|
-
creatorId?: string | null;
|
|
12039
|
-
lastModificationTime?: string | null;
|
|
12040
|
-
lastModifierId?: string | null;
|
|
12041
|
-
isDeleted?: boolean;
|
|
12042
|
-
deleterId?: string | null;
|
|
12043
|
-
deletionTime?: string | null;
|
|
12044
|
-
primaryFlag?: boolean;
|
|
12045
|
-
typeCode?: 0 | 1 | 2 | 3;
|
|
12046
|
-
areaCode?: string | null;
|
|
12047
|
-
localNumber?: string | null;
|
|
12048
|
-
ituCountryCode?: string | null;
|
|
12049
|
-
contactInformationTypeId?: string;
|
|
12050
|
-
}> | null;
|
|
12051
|
-
addresses?: Array<{
|
|
12052
|
-
id?: string;
|
|
12053
|
-
creationTime?: string;
|
|
12054
|
-
creatorId?: string | null;
|
|
12055
|
-
lastModificationTime?: string | null;
|
|
12056
|
-
lastModifierId?: string | null;
|
|
12057
|
-
isDeleted?: boolean;
|
|
12058
|
-
deleterId?: string | null;
|
|
12059
|
-
deletionTime?: string | null;
|
|
12060
|
-
typeCode?: 0 | 1;
|
|
12061
|
-
addressLine?: string | null;
|
|
12062
|
-
city?: string | null;
|
|
12063
|
-
terriority?: string | null;
|
|
12064
|
-
postalCode?: string | null;
|
|
12065
|
-
country?: string | null;
|
|
12066
|
-
fullAddress?: string | null;
|
|
12067
|
-
primaryFlag?: boolean;
|
|
12068
|
-
contactInformationTypeId?: string;
|
|
12069
|
-
}> | null;
|
|
12070
|
-
emails?: Array<{
|
|
12071
|
-
id?: string;
|
|
12072
|
-
creationTime?: string;
|
|
12073
|
-
creatorId?: string | null;
|
|
12074
|
-
lastModificationTime?: string | null;
|
|
12075
|
-
lastModifierId?: string | null;
|
|
12076
|
-
isDeleted?: boolean;
|
|
12077
|
-
deleterId?: string | null;
|
|
12078
|
-
deletionTime?: string | null;
|
|
12079
|
-
primaryFlag?: boolean;
|
|
12080
|
-
typeCode?: 0 | 1;
|
|
12081
|
-
emailAddress?: string | null;
|
|
12082
|
-
contactInformationTypeId?: string;
|
|
12083
|
-
}> | null;
|
|
12084
|
-
};
|
|
12085
|
-
}> | null;
|
|
12086
|
-
individuals?: Array<{
|
|
12087
|
-
id?: string;
|
|
12088
|
-
creationTime?: string;
|
|
12089
|
-
creatorId?: string | null;
|
|
12090
|
-
lastModificationTime?: string | null;
|
|
12091
|
-
lastModifierId?: string | null;
|
|
12092
|
-
isDeleted?: boolean;
|
|
12093
|
-
deleterId?: string | null;
|
|
12094
|
-
deletionTime?: string | null;
|
|
12095
|
-
name?: {
|
|
12096
|
-
id?: string;
|
|
12097
|
-
creationTime?: string;
|
|
12098
|
-
creatorId?: string | null;
|
|
12099
|
-
lastModificationTime?: string | null;
|
|
12100
|
-
lastModifierId?: string | null;
|
|
12101
|
-
isDeleted?: boolean;
|
|
12102
|
-
deleterId?: string | null;
|
|
12103
|
-
deletionTime?: string | null;
|
|
12104
|
-
individualId?: string;
|
|
12105
|
-
salutation?: string | null;
|
|
12106
|
-
name?: string | null;
|
|
12107
|
-
suffix?: string | null;
|
|
12108
|
-
mailingName?: string | null;
|
|
12109
|
-
officialName?: string | null;
|
|
12110
|
-
};
|
|
12111
|
-
contactInformation?: {
|
|
12112
|
-
id?: string;
|
|
12113
|
-
creationTime?: string;
|
|
12114
|
-
creatorId?: string | null;
|
|
12115
|
-
lastModificationTime?: string | null;
|
|
12116
|
-
lastModifierId?: string | null;
|
|
12117
|
-
isDeleted?: boolean;
|
|
12118
|
-
deleterId?: string | null;
|
|
12119
|
-
deletionTime?: string | null;
|
|
12120
|
-
startDate?: string;
|
|
12121
|
-
endDate?: string;
|
|
12122
|
-
telephones?: Array<{
|
|
12123
|
-
id?: string;
|
|
12124
|
-
creationTime?: string;
|
|
12125
|
-
creatorId?: string | null;
|
|
12126
|
-
lastModificationTime?: string | null;
|
|
12127
|
-
lastModifierId?: string | null;
|
|
12128
|
-
isDeleted?: boolean;
|
|
12129
|
-
deleterId?: string | null;
|
|
12130
|
-
deletionTime?: string | null;
|
|
12131
|
-
primaryFlag?: boolean;
|
|
12132
|
-
typeCode?: 0 | 1 | 2 | 3;
|
|
12133
|
-
areaCode?: string | null;
|
|
12134
|
-
localNumber?: string | null;
|
|
12135
|
-
ituCountryCode?: string | null;
|
|
12136
|
-
contactInformationTypeId?: string;
|
|
12137
|
-
}> | null;
|
|
12138
|
-
addresses?: Array<{
|
|
12139
|
-
id?: string;
|
|
12140
|
-
creationTime?: string;
|
|
12141
|
-
creatorId?: string | null;
|
|
12142
|
-
lastModificationTime?: string | null;
|
|
12143
|
-
lastModifierId?: string | null;
|
|
12144
|
-
isDeleted?: boolean;
|
|
12145
|
-
deleterId?: string | null;
|
|
12146
|
-
deletionTime?: string | null;
|
|
12147
|
-
typeCode?: 0 | 1;
|
|
12148
|
-
addressLine?: string | null;
|
|
12149
|
-
city?: string | null;
|
|
12150
|
-
terriority?: string | null;
|
|
12151
|
-
postalCode?: string | null;
|
|
12152
|
-
country?: string | null;
|
|
12153
|
-
fullAddress?: string | null;
|
|
12154
|
-
primaryFlag?: boolean;
|
|
12155
|
-
contactInformationTypeId?: string;
|
|
12156
|
-
}> | null;
|
|
12157
|
-
emails?: Array<{
|
|
12158
|
-
id?: string;
|
|
12159
|
-
creationTime?: string;
|
|
12160
|
-
creatorId?: string | null;
|
|
12161
|
-
lastModificationTime?: string | null;
|
|
12162
|
-
lastModifierId?: string | null;
|
|
12163
|
-
isDeleted?: boolean;
|
|
12164
|
-
deleterId?: string | null;
|
|
12165
|
-
deletionTime?: string | null;
|
|
12166
|
-
primaryFlag?: boolean;
|
|
12167
|
-
typeCode?: 0 | 1;
|
|
12168
|
-
emailAddress?: string | null;
|
|
12169
|
-
contactInformationTypeId?: string;
|
|
12170
|
-
}> | null;
|
|
12171
|
-
};
|
|
12172
|
-
personalSummaries?: Array<{
|
|
12173
|
-
id?: string;
|
|
12174
|
-
creationTime?: string;
|
|
12175
|
-
creatorId?: string | null;
|
|
12176
|
-
lastModificationTime?: string | null;
|
|
12177
|
-
lastModifierId?: string | null;
|
|
12178
|
-
isDeleted?: boolean;
|
|
12179
|
-
deleterId?: string | null;
|
|
12180
|
-
deletionTime?: string | null;
|
|
12181
|
-
genderType?: 0 | 1;
|
|
12182
|
-
individualId?: string;
|
|
12183
|
-
date?: string;
|
|
12184
|
-
birthDate?: string;
|
|
12185
|
-
ethnicity?: string | null;
|
|
12186
|
-
maritalStatusCode?: string | null;
|
|
12187
|
-
religiousAffiliationName?: string | null;
|
|
12188
|
-
}> | null;
|
|
12189
|
-
entityInformationTypeId?: string;
|
|
12190
|
-
contactInformationId?: string;
|
|
12191
|
-
}> | null;
|
|
12192
|
-
}> | null;
|
|
12193
|
-
affiliations?: Array<{
|
|
10931
|
+
name?: string | null;
|
|
10932
|
+
fundraiserType?: 0 | 1;
|
|
10933
|
+
fundraiserTypeDescription?: string | null;
|
|
10934
|
+
affiliation?: {
|
|
12194
10935
|
id?: string;
|
|
12195
10936
|
creationTime?: string;
|
|
12196
10937
|
creatorId?: string | null;
|
|
@@ -12204,7 +10945,7 @@ export type $OpenApiTs = {
|
|
|
12204
10945
|
description?: string | null;
|
|
12205
10946
|
affiliationTypeCode?: 0 | 1 | 2;
|
|
12206
10947
|
partyId?: string;
|
|
12207
|
-
}
|
|
10948
|
+
};
|
|
12208
10949
|
}>;
|
|
12209
10950
|
/**
|
|
12210
10951
|
* Bad Request
|
|
@@ -12311,9 +11052,9 @@ export type $OpenApiTs = {
|
|
|
12311
11052
|
};
|
|
12312
11053
|
};
|
|
12313
11054
|
};
|
|
12314
|
-
'/api/fundraiser-service/public/fundraisers/profile/{id}': {
|
|
11055
|
+
'/api/fundraiser-service/public/fundraisers/profile-by-fundraiser-id/{id}': {
|
|
12315
11056
|
get: {
|
|
12316
|
-
req:
|
|
11057
|
+
req: GetApiFundraiserServicePublicFundraisersProfileByFundraiserIdByIdData;
|
|
12317
11058
|
res: {
|
|
12318
11059
|
/**
|
|
12319
11060
|
* Success
|
|
@@ -12321,6 +11062,23 @@ export type $OpenApiTs = {
|
|
|
12321
11062
|
200: {
|
|
12322
11063
|
id?: string;
|
|
12323
11064
|
name?: string | null;
|
|
11065
|
+
fundraiserType?: 0 | 1;
|
|
11066
|
+
fundraiserTypeDescription?: string | null;
|
|
11067
|
+
affiliation?: {
|
|
11068
|
+
id?: string;
|
|
11069
|
+
creationTime?: string;
|
|
11070
|
+
creatorId?: string | null;
|
|
11071
|
+
lastModificationTime?: string | null;
|
|
11072
|
+
lastModifierId?: string | null;
|
|
11073
|
+
isDeleted?: boolean;
|
|
11074
|
+
deleterId?: string | null;
|
|
11075
|
+
deletionTime?: string | null;
|
|
11076
|
+
fundraiserId?: string;
|
|
11077
|
+
name?: string | null;
|
|
11078
|
+
description?: string | null;
|
|
11079
|
+
affiliationTypeCode?: 0 | 1 | 2;
|
|
11080
|
+
partyId?: string;
|
|
11081
|
+
};
|
|
12324
11082
|
};
|
|
12325
11083
|
/**
|
|
12326
11084
|
* Bad Request
|