@ayasofyazilim/saas 0.0.24 → 0.0.26

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.
Files changed (37) hide show
  1. package/AccountService/AccountServiceClient.ts +65 -65
  2. package/AccountService/schemas.gen.ts +5103 -5103
  3. package/AccountService/services.gen.ts +1452 -1452
  4. package/AccountService/types.gen.ts +9896 -9896
  5. package/AdministrationService/AdministrationServiceClient.ts +74 -74
  6. package/AdministrationService/schemas.gen.ts +5897 -5897
  7. package/AdministrationService/services.gen.ts +1332 -1332
  8. package/AdministrationService/types.gen.ts +9024 -9024
  9. package/BackerService/BackerServiceClient.ts +50 -50
  10. package/BackerService/schemas.gen.ts +12444 -12401
  11. package/BackerService/services.gen.ts +866 -866
  12. package/BackerService/types.gen.ts +14936 -14936
  13. package/FundraiserService/schemas.gen.ts +795 -661
  14. package/FundraiserService/services.gen.ts +12 -36
  15. package/FundraiserService/types.gen.ts +1229 -2471
  16. package/IdentityService/IdentityServiceClient.ts +77 -77
  17. package/IdentityService/schemas.gen.ts +6573 -6573
  18. package/IdentityService/services.gen.ts +2839 -2839
  19. package/IdentityService/types.gen.ts +17446 -17446
  20. package/MerchantService/MerchantServiceClient.ts +77 -77
  21. package/MerchantService/schemas.gen.ts +14764 -14697
  22. package/MerchantService/services.gen.ts +1602 -1602
  23. package/MerchantService/types.gen.ts +18875 -18819
  24. package/ProjectService/ProjectServiceClient.ts +47 -47
  25. package/ProjectService/schemas.gen.ts +365 -1
  26. package/ProjectService/types.gen.ts +161 -1
  27. package/ProjectService.json +2937 -2937
  28. package/SaasService/schemas.gen.ts +5278 -5278
  29. package/SaasService/services.gen.ts +1325 -1325
  30. package/SaasService/types.gen.ts +9052 -9052
  31. package/SettingService/SettingServiceClient.ts +9 -0
  32. package/SettingService/schemas.gen.ts +516 -4
  33. package/SettingService/services.gen.ts +472 -1
  34. package/SettingService/types.gen.ts +896 -14
  35. package/generator.mjs +2 -2
  36. package/package.json +1 -1
  37. package/swagger.json +4794 -4794
@@ -1,10 +1,51 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
 
3
- export type UpwithCrowd_FundraiserService_Fundraisers_ProfileDto = {
3
+ export type UpwithCrowd_FundraiserService_AffiliationTypes_AffiliationTypeDto = {
4
+ id?: string;
5
+ creationTime?: string;
6
+ creatorId?: string | null;
7
+ lastModificationTime?: string | null;
8
+ lastModifierId?: string | null;
9
+ isDeleted?: boolean;
10
+ deleterId?: string | null;
11
+ deletionTime?: string | null;
12
+ fundraiserId?: string;
13
+ name?: string | null;
14
+ description?: string | null;
15
+ affiliationTypeCode?: 0 | 1 | 2;
16
+ partyId?: string;
17
+ };
18
+
19
+ export type affiliationTypeCode = 0 | 1 | 2;
20
+
21
+ export type UpwithCrowd_FundraiserService_Enums_AffiliationTypeCode = 0 | 1 | 2;
22
+
23
+ export type UpwithCrowd_FundraiserService_Enums_FundraiserPartyType = 0 | 1;
24
+
25
+ export type UpwithCrowd_FundraiserService_Fundraisers_FundraiserProfileDto = {
4
26
  id?: string;
5
27
  name?: string | null;
28
+ fundraiserType?: 0 | 1;
29
+ fundraiserTypeDescription?: string | null;
30
+ affiliation?: {
31
+ id?: string;
32
+ creationTime?: string;
33
+ creatorId?: string | null;
34
+ lastModificationTime?: string | null;
35
+ lastModifierId?: string | null;
36
+ isDeleted?: boolean;
37
+ deleterId?: string | null;
38
+ deletionTime?: string | null;
39
+ fundraiserId?: string;
40
+ name?: string | null;
41
+ description?: string | null;
42
+ affiliationTypeCode?: 0 | 1 | 2;
43
+ partyId?: string;
44
+ };
6
45
  };
7
46
 
47
+ export type fundraiserType = 0 | 1;
48
+
8
49
  export type UpwithCrowd_ProjectService_ProjectSectionRelations_CreateProjectSectionRelationDto = {
9
50
  projectId: string;
10
51
  projectSectionId: string;
@@ -94,6 +135,23 @@ export type UpwithCrowd_ProjectService_Projects_ProjectDetailDto = {
94
135
  fundraiser?: {
95
136
  id?: string;
96
137
  name?: string | null;
138
+ fundraiserType?: 0 | 1;
139
+ fundraiserTypeDescription?: string | null;
140
+ affiliation?: {
141
+ id?: string;
142
+ creationTime?: string;
143
+ creatorId?: string | null;
144
+ lastModificationTime?: string | null;
145
+ lastModifierId?: string | null;
146
+ isDeleted?: boolean;
147
+ deleterId?: string | null;
148
+ deletionTime?: string | null;
149
+ fundraiserId?: string;
150
+ name?: string | null;
151
+ description?: string | null;
152
+ affiliationTypeCode?: 0 | 1 | 2;
153
+ partyId?: string;
154
+ };
97
155
  };
98
156
  projectSectionRelations?: Array<{
99
157
  projectId?: string;
@@ -168,6 +226,23 @@ export type UpwithCrowd_ProjectService_Projects_ProjectWithFundraiserDto = {
168
226
  fundraiser?: {
169
227
  id?: string;
170
228
  name?: string | null;
229
+ fundraiserType?: 0 | 1;
230
+ fundraiserTypeDescription?: string | null;
231
+ affiliation?: {
232
+ id?: string;
233
+ creationTime?: string;
234
+ creatorId?: string | null;
235
+ lastModificationTime?: string | null;
236
+ lastModifierId?: string | null;
237
+ isDeleted?: boolean;
238
+ deleterId?: string | null;
239
+ deletionTime?: string | null;
240
+ fundraiserId?: string;
241
+ name?: string | null;
242
+ description?: string | null;
243
+ affiliationTypeCode?: 0 | 1 | 2;
244
+ partyId?: string;
245
+ };
171
246
  };
172
247
  };
173
248
 
@@ -264,6 +339,23 @@ export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
264
339
  fundraiser?: {
265
340
  id?: string;
266
341
  name?: string | null;
342
+ fundraiserType?: 0 | 1;
343
+ fundraiserTypeDescription?: string | null;
344
+ affiliation?: {
345
+ id?: string;
346
+ creationTime?: string;
347
+ creatorId?: string | null;
348
+ lastModificationTime?: string | null;
349
+ lastModifierId?: string | null;
350
+ isDeleted?: boolean;
351
+ deleterId?: string | null;
352
+ deletionTime?: string | null;
353
+ fundraiserId?: string;
354
+ name?: string | null;
355
+ description?: string | null;
356
+ affiliationTypeCode?: 0 | 1 | 2;
357
+ partyId?: string;
358
+ };
267
359
  };
268
360
  }> | null;
269
361
  totalCount?: number;
@@ -1948,6 +2040,23 @@ export type GetApiProjectServiceProjectsWithFundraiserListAsyncResponse = {
1948
2040
  fundraiser?: {
1949
2041
  id?: string;
1950
2042
  name?: string | null;
2043
+ fundraiserType?: 0 | 1;
2044
+ fundraiserTypeDescription?: string | null;
2045
+ affiliation?: {
2046
+ id?: string;
2047
+ creationTime?: string;
2048
+ creatorId?: string | null;
2049
+ lastModificationTime?: string | null;
2050
+ lastModifierId?: string | null;
2051
+ isDeleted?: boolean;
2052
+ deleterId?: string | null;
2053
+ deletionTime?: string | null;
2054
+ fundraiserId?: string;
2055
+ name?: string | null;
2056
+ description?: string | null;
2057
+ affiliationTypeCode?: 0 | 1 | 2;
2058
+ partyId?: string;
2059
+ };
1951
2060
  };
1952
2061
  }> | null;
1953
2062
  totalCount?: number;
@@ -2159,6 +2268,23 @@ export type GetApiProjectServicePublicProjectsDetailByIdResponse = {
2159
2268
  fundraiser?: {
2160
2269
  id?: string;
2161
2270
  name?: string | null;
2271
+ fundraiserType?: 0 | 1;
2272
+ fundraiserTypeDescription?: string | null;
2273
+ affiliation?: {
2274
+ id?: string;
2275
+ creationTime?: string;
2276
+ creatorId?: string | null;
2277
+ lastModificationTime?: string | null;
2278
+ lastModifierId?: string | null;
2279
+ isDeleted?: boolean;
2280
+ deleterId?: string | null;
2281
+ deletionTime?: string | null;
2282
+ fundraiserId?: string;
2283
+ name?: string | null;
2284
+ description?: string | null;
2285
+ affiliationTypeCode?: 0 | 1 | 2;
2286
+ partyId?: string;
2287
+ };
2162
2288
  };
2163
2289
  projectSectionRelations?: Array<{
2164
2290
  projectId?: string;
@@ -3650,6 +3776,23 @@ export type $OpenApiTs = {
3650
3776
  fundraiser?: {
3651
3777
  id?: string;
3652
3778
  name?: string | null;
3779
+ fundraiserType?: 0 | 1;
3780
+ fundraiserTypeDescription?: string | null;
3781
+ affiliation?: {
3782
+ id?: string;
3783
+ creationTime?: string;
3784
+ creatorId?: string | null;
3785
+ lastModificationTime?: string | null;
3786
+ lastModifierId?: string | null;
3787
+ isDeleted?: boolean;
3788
+ deleterId?: string | null;
3789
+ deletionTime?: string | null;
3790
+ fundraiserId?: string;
3791
+ name?: string | null;
3792
+ description?: string | null;
3793
+ affiliationTypeCode?: 0 | 1 | 2;
3794
+ partyId?: string;
3795
+ };
3653
3796
  };
3654
3797
  }> | null;
3655
3798
  totalCount?: number;
@@ -4701,6 +4844,23 @@ export type $OpenApiTs = {
4701
4844
  fundraiser?: {
4702
4845
  id?: string;
4703
4846
  name?: string | null;
4847
+ fundraiserType?: 0 | 1;
4848
+ fundraiserTypeDescription?: string | null;
4849
+ affiliation?: {
4850
+ id?: string;
4851
+ creationTime?: string;
4852
+ creatorId?: string | null;
4853
+ lastModificationTime?: string | null;
4854
+ lastModifierId?: string | null;
4855
+ isDeleted?: boolean;
4856
+ deleterId?: string | null;
4857
+ deletionTime?: string | null;
4858
+ fundraiserId?: string;
4859
+ name?: string | null;
4860
+ description?: string | null;
4861
+ affiliationTypeCode?: 0 | 1 | 2;
4862
+ partyId?: string;
4863
+ };
4704
4864
  };
4705
4865
  projectSectionRelations?: Array<{
4706
4866
  projectId?: string;