@ayasofyazilim/saas 0.0.21 → 0.0.23

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.
@@ -1,10 +1,15 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
 
3
+ export type UpwithCrowd_FundraiserService_Fundraisers_ProfileDto = {
4
+ id?: string;
5
+ name?: string | null;
6
+ };
7
+
3
8
  export type UpwithCrowd_ProjectService_ProjectSectionRelations_CreateProjectSectionRelationDto = {
4
- projectId?: string;
5
- projectSectionId?: string;
6
- value?: string | null;
7
- order?: number;
9
+ projectId: string;
10
+ projectSectionId: string;
11
+ value: string;
12
+ order: number;
8
13
  };
9
14
 
10
15
  export type UpwithCrowd_ProjectService_ProjectSectionRelations_ProjectSectionRelationDetailDto = {
@@ -25,25 +30,20 @@ export type UpwithCrowd_ProjectService_ProjectSectionRelations_ProjectSectionRel
25
30
  isDeleted?: boolean;
26
31
  deleterId?: string | null;
27
32
  deletionTime?: string | null;
28
- projectId?: string;
29
- projectSectionId?: string;
30
- value?: string | null;
31
- order?: number;
33
+ projectId: string;
34
+ projectSectionId: string;
35
+ value: string;
36
+ order: number;
32
37
  };
33
38
 
34
39
  export type UpwithCrowd_ProjectService_ProjectSectionRelations_UpdateProjectSectionRelationDto = {
35
- id?: string;
36
- projectId?: string;
37
- projectSectionId?: string;
38
- value?: string | null;
39
- order?: number;
40
+ value: string;
41
+ order: number;
40
42
  };
41
43
 
42
44
  export type UpwithCrowd_ProjectService_ProjectSections_CreateProjectSectionDto = {
43
- projectId?: string;
44
- name?: string | null;
45
- isDefault?: boolean;
46
- isOptional?: boolean;
45
+ projectId: string;
46
+ name: string;
47
47
  };
48
48
 
49
49
  export type UpwithCrowd_ProjectService_ProjectSections_ProjectSectionDto = {
@@ -55,22 +55,18 @@ export type UpwithCrowd_ProjectService_ProjectSections_ProjectSectionDto = {
55
55
  isDeleted?: boolean;
56
56
  deleterId?: string | null;
57
57
  deletionTime?: string | null;
58
- name?: string | null;
59
- isDefault?: boolean;
60
- isOptional?: boolean;
58
+ name: string;
59
+ isDefault: boolean;
60
+ isOptional: boolean;
61
61
  projectId?: string | null;
62
62
  };
63
63
 
64
64
  export type UpwithCrowd_ProjectService_ProjectSections_UpdateProjectSectionDto = {
65
- id: string;
66
- name?: string | null;
67
- isDefault?: boolean | null;
68
- isOptional?: boolean | null;
65
+ name: string;
69
66
  };
70
67
 
71
68
  export type UpwithCrowd_ProjectService_Projects_ProjectDetailDto = {
72
69
  project?: {
73
- id?: string;
74
70
  creationTime?: string;
75
71
  creatorId?: string | null;
76
72
  lastModificationTime?: string | null;
@@ -78,20 +74,26 @@ export type UpwithCrowd_ProjectService_Projects_ProjectDetailDto = {
78
74
  isDeleted?: boolean;
79
75
  deleterId?: string | null;
80
76
  deletionTime?: string | null;
81
- projectName?: string | null;
82
- projectDefinition?: string | null;
83
- cashValue?: number;
84
- fundCollectionType?: string | null;
85
- additionalFundRate?: string | null;
77
+ id: string;
78
+ name: string;
79
+ definition: string;
80
+ cashValue: number;
81
+ fundCollectionType: string;
82
+ additionalFundRate: string;
86
83
  qualifiedFundRate?: string | null;
87
- fundNominalAmount?: number;
88
- fundableAmount?: number;
89
- overFunding?: string;
84
+ fundNominalAmount: number;
85
+ fundableAmount: number;
86
+ overFunding: string;
90
87
  privilege?: string | null;
91
- projectStartDate?: string;
92
- projectEndDate?: string;
93
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
94
- type?: 0 | 1 | 2 | 3;
88
+ startDate?: string | null;
89
+ endDate?: string | null;
90
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
91
+ type: 0 | 1 | 2 | 3;
92
+ fundraiserId: string;
93
+ };
94
+ fundraiser?: {
95
+ id?: string;
96
+ name?: string | null;
95
97
  };
96
98
  projectSectionRelations?: Array<{
97
99
  projectId?: string;
@@ -108,7 +110,6 @@ export type status = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
108
110
  export type type = 0 | 1 | 2 | 3;
109
111
 
110
112
  export type UpwithCrowd_ProjectService_Projects_ProjectDto = {
111
- id?: string;
112
113
  creationTime?: string;
113
114
  creatorId?: string | null;
114
115
  lastModificationTime?: string | null;
@@ -116,64 +117,96 @@ export type UpwithCrowd_ProjectService_Projects_ProjectDto = {
116
117
  isDeleted?: boolean;
117
118
  deleterId?: string | null;
118
119
  deletionTime?: string | null;
119
- projectName?: string | null;
120
- projectDefinition?: string | null;
121
- cashValue?: number;
122
- fundCollectionType?: string | null;
123
- additionalFundRate?: string | null;
120
+ id: string;
121
+ name: string;
122
+ definition: string;
123
+ cashValue: number;
124
+ fundCollectionType: string;
125
+ additionalFundRate: string;
124
126
  qualifiedFundRate?: string | null;
125
- fundNominalAmount?: number;
126
- fundableAmount?: number;
127
- overFunding?: string;
127
+ fundNominalAmount: number;
128
+ fundableAmount: number;
129
+ overFunding: string;
128
130
  privilege?: string | null;
129
- projectStartDate?: string;
130
- projectEndDate?: string;
131
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
132
- type?: 0 | 1 | 2 | 3;
131
+ startDate?: string | null;
132
+ endDate?: string | null;
133
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
134
+ type: 0 | 1 | 2 | 3;
135
+ fundraiserId: string;
133
136
  };
134
137
 
135
138
  export type UpwithCrowd_ProjectService_Projects_ProjectStatusCode = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
136
139
 
137
140
  export type UpwithCrowd_ProjectService_Projects_ProjectTypeCode = 0 | 1 | 2 | 3;
138
141
 
142
+ export type UpwithCrowd_ProjectService_Projects_ProjectWithFundraiserDto = {
143
+ project?: {
144
+ creationTime?: string;
145
+ creatorId?: string | null;
146
+ lastModificationTime?: string | null;
147
+ lastModifierId?: string | null;
148
+ isDeleted?: boolean;
149
+ deleterId?: string | null;
150
+ deletionTime?: string | null;
151
+ id: string;
152
+ name: string;
153
+ definition: string;
154
+ cashValue: number;
155
+ fundCollectionType: string;
156
+ additionalFundRate: string;
157
+ qualifiedFundRate?: string | null;
158
+ fundNominalAmount: number;
159
+ fundableAmount: number;
160
+ overFunding: string;
161
+ privilege?: string | null;
162
+ startDate?: string | null;
163
+ endDate?: string | null;
164
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
165
+ type: 0 | 1 | 2 | 3;
166
+ fundraiserId: string;
167
+ };
168
+ fundraiser?: {
169
+ id?: string;
170
+ name?: string | null;
171
+ };
172
+ };
173
+
139
174
  export type UpwithCrowd_ProjectService_ProjectsDto_CreateProjectDto = {
140
- projectName?: string | null;
141
- projectDefinition?: string | null;
142
- cashValue?: number;
143
- additionalFundRate?: string | null;
175
+ name: string;
176
+ definition: string;
177
+ cashValue: number;
178
+ additionalFundRate: string;
144
179
  qualifiedFundRate?: string | null;
145
- fundNominalAmount?: number;
146
- fundableAmount?: number;
147
- overFunding?: string;
180
+ fundNominalAmount: number;
181
+ fundableAmount: number;
182
+ overFunding: string;
148
183
  privilege?: string | null;
149
- projectStartDate?: string;
150
- projectEndDate?: string;
151
- fundCollectionType?: string | null;
152
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
153
- type?: 0 | 1 | 2 | 3;
184
+ startDate?: string | null;
185
+ endDate?: string | null;
186
+ fundCollectionType: string;
187
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
188
+ type: 0 | 1 | 2 | 3;
189
+ fundraiserId: string;
154
190
  };
155
191
 
156
192
  export type UpwithCrowd_ProjectService_ProjectsDto_UpdateProjectDto = {
157
- id?: string;
158
- projectName?: string | null;
159
- projectDefinition?: string | null;
160
- cashValue?: number;
161
- additionalFundRate?: string | null;
193
+ name: string;
194
+ definition: string;
195
+ cashValue: number;
196
+ additionalFundRate: string;
162
197
  qualifiedFundRate?: string | null;
163
- fundNominalAmount?: number;
164
- fundableAmount?: number;
165
- overFunding?: string;
198
+ fundNominalAmount: number;
199
+ fundableAmount: number;
200
+ overFunding: string;
166
201
  privilege?: string | null;
167
- projectStartDate?: string;
168
- projectEndDate?: string;
169
- fundCollectionType?: string | null;
170
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
171
- type?: 0 | 1 | 2 | 3;
202
+ startDate: string;
203
+ fundCollectionType: string;
204
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
205
+ type: 0 | 1 | 2 | 3;
172
206
  };
173
207
 
174
208
  export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
175
209
  items?: Array<{
176
- id?: string;
177
210
  creationTime?: string;
178
211
  creatorId?: string | null;
179
212
  lastModificationTime?: string | null;
@@ -181,20 +214,57 @@ export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
181
214
  isDeleted?: boolean;
182
215
  deleterId?: string | null;
183
216
  deletionTime?: string | null;
184
- projectName?: string | null;
185
- projectDefinition?: string | null;
186
- cashValue?: number;
187
- fundCollectionType?: string | null;
188
- additionalFundRate?: string | null;
217
+ id: string;
218
+ name: string;
219
+ definition: string;
220
+ cashValue: number;
221
+ fundCollectionType: string;
222
+ additionalFundRate: string;
189
223
  qualifiedFundRate?: string | null;
190
- fundNominalAmount?: number;
191
- fundableAmount?: number;
192
- overFunding?: string;
224
+ fundNominalAmount: number;
225
+ fundableAmount: number;
226
+ overFunding: string;
193
227
  privilege?: string | null;
194
- projectStartDate?: string;
195
- projectEndDate?: string;
196
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
197
- type?: 0 | 1 | 2 | 3;
228
+ startDate?: string | null;
229
+ endDate?: string | null;
230
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
231
+ type: 0 | 1 | 2 | 3;
232
+ fundraiserId: string;
233
+ }> | null;
234
+ totalCount?: number;
235
+ };
236
+
237
+ export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
238
+ items?: Array<{
239
+ project?: {
240
+ creationTime?: string;
241
+ creatorId?: string | null;
242
+ lastModificationTime?: string | null;
243
+ lastModifierId?: string | null;
244
+ isDeleted?: boolean;
245
+ deleterId?: string | null;
246
+ deletionTime?: string | null;
247
+ id: string;
248
+ name: string;
249
+ definition: string;
250
+ cashValue: number;
251
+ fundCollectionType: string;
252
+ additionalFundRate: string;
253
+ qualifiedFundRate?: string | null;
254
+ fundNominalAmount: number;
255
+ fundableAmount: number;
256
+ overFunding: string;
257
+ privilege?: string | null;
258
+ startDate?: string | null;
259
+ endDate?: string | null;
260
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
261
+ type: 0 | 1 | 2 | 3;
262
+ fundraiserId: string;
263
+ };
264
+ fundraiser?: {
265
+ id?: string;
266
+ name?: string | null;
267
+ };
198
268
  }> | null;
199
269
  totalCount?: number;
200
270
  };
@@ -1647,25 +1717,25 @@ export type GetApiAbpApplicationLocalizationResponse = {
1647
1717
 
1648
1718
  export type PostApiProjectServiceProjectsData = {
1649
1719
  requestBody?: {
1650
- projectName?: string | null;
1651
- projectDefinition?: string | null;
1652
- cashValue?: number;
1653
- additionalFundRate?: string | null;
1720
+ name: string;
1721
+ definition: string;
1722
+ cashValue: number;
1723
+ additionalFundRate: string;
1654
1724
  qualifiedFundRate?: string | null;
1655
- fundNominalAmount?: number;
1656
- fundableAmount?: number;
1657
- overFunding?: string;
1725
+ fundNominalAmount: number;
1726
+ fundableAmount: number;
1727
+ overFunding: string;
1658
1728
  privilege?: string | null;
1659
- projectStartDate?: string;
1660
- projectEndDate?: string;
1661
- fundCollectionType?: string | null;
1662
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1663
- type?: 0 | 1 | 2 | 3;
1729
+ startDate?: string | null;
1730
+ endDate?: string | null;
1731
+ fundCollectionType: string;
1732
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1733
+ type: 0 | 1 | 2 | 3;
1734
+ fundraiserId: string;
1664
1735
  };
1665
1736
  };
1666
1737
 
1667
1738
  export type PostApiProjectServiceProjectsResponse = {
1668
- id?: string;
1669
1739
  creationTime?: string;
1670
1740
  creatorId?: string | null;
1671
1741
  lastModificationTime?: string | null;
@@ -1673,20 +1743,22 @@ export type PostApiProjectServiceProjectsResponse = {
1673
1743
  isDeleted?: boolean;
1674
1744
  deleterId?: string | null;
1675
1745
  deletionTime?: string | null;
1676
- projectName?: string | null;
1677
- projectDefinition?: string | null;
1678
- cashValue?: number;
1679
- fundCollectionType?: string | null;
1680
- additionalFundRate?: string | null;
1746
+ id: string;
1747
+ name: string;
1748
+ definition: string;
1749
+ cashValue: number;
1750
+ fundCollectionType: string;
1751
+ additionalFundRate: string;
1681
1752
  qualifiedFundRate?: string | null;
1682
- fundNominalAmount?: number;
1683
- fundableAmount?: number;
1684
- overFunding?: string;
1753
+ fundNominalAmount: number;
1754
+ fundableAmount: number;
1755
+ overFunding: string;
1685
1756
  privilege?: string | null;
1686
- projectStartDate?: string;
1687
- projectEndDate?: string;
1688
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1689
- type?: 0 | 1 | 2 | 3;
1757
+ startDate?: string | null;
1758
+ endDate?: string | null;
1759
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1760
+ type: 0 | 1 | 2 | 3;
1761
+ fundraiserId: string;
1690
1762
  };
1691
1763
 
1692
1764
  export type GetApiProjectServiceProjectsData = {
@@ -1699,7 +1771,6 @@ export type GetApiProjectServiceProjectsData = {
1699
1771
 
1700
1772
  export type GetApiProjectServiceProjectsResponse = {
1701
1773
  items?: Array<{
1702
- id?: string;
1703
1774
  creationTime?: string;
1704
1775
  creatorId?: string | null;
1705
1776
  lastModificationTime?: string | null;
@@ -1707,36 +1778,31 @@ export type GetApiProjectServiceProjectsResponse = {
1707
1778
  isDeleted?: boolean;
1708
1779
  deleterId?: string | null;
1709
1780
  deletionTime?: string | null;
1710
- projectName?: string | null;
1711
- projectDefinition?: string | null;
1712
- cashValue?: number;
1713
- fundCollectionType?: string | null;
1714
- additionalFundRate?: string | null;
1781
+ id: string;
1782
+ name: string;
1783
+ definition: string;
1784
+ cashValue: number;
1785
+ fundCollectionType: string;
1786
+ additionalFundRate: string;
1715
1787
  qualifiedFundRate?: string | null;
1716
- fundNominalAmount?: number;
1717
- fundableAmount?: number;
1718
- overFunding?: string;
1788
+ fundNominalAmount: number;
1789
+ fundableAmount: number;
1790
+ overFunding: string;
1719
1791
  privilege?: string | null;
1720
- projectStartDate?: string;
1721
- projectEndDate?: string;
1722
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1723
- type?: 0 | 1 | 2 | 3;
1792
+ startDate?: string | null;
1793
+ endDate?: string | null;
1794
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1795
+ type: 0 | 1 | 2 | 3;
1796
+ fundraiserId: string;
1724
1797
  }> | null;
1725
1798
  totalCount?: number;
1726
1799
  };
1727
1800
 
1728
- export type DeleteApiProjectServiceProjectsByIdData = {
1729
- id: string;
1730
- };
1731
-
1732
- export type DeleteApiProjectServiceProjectsByIdResponse = unknown;
1733
-
1734
1801
  export type GetApiProjectServiceProjectsByIdData = {
1735
1802
  id: string;
1736
1803
  };
1737
1804
 
1738
1805
  export type GetApiProjectServiceProjectsByIdResponse = {
1739
- id?: string;
1740
1806
  creationTime?: string;
1741
1807
  creatorId?: string | null;
1742
1808
  lastModificationTime?: string | null;
@@ -1744,45 +1810,50 @@ export type GetApiProjectServiceProjectsByIdResponse = {
1744
1810
  isDeleted?: boolean;
1745
1811
  deleterId?: string | null;
1746
1812
  deletionTime?: string | null;
1747
- projectName?: string | null;
1748
- projectDefinition?: string | null;
1749
- cashValue?: number;
1750
- fundCollectionType?: string | null;
1751
- additionalFundRate?: string | null;
1813
+ id: string;
1814
+ name: string;
1815
+ definition: string;
1816
+ cashValue: number;
1817
+ fundCollectionType: string;
1818
+ additionalFundRate: string;
1752
1819
  qualifiedFundRate?: string | null;
1753
- fundNominalAmount?: number;
1754
- fundableAmount?: number;
1755
- overFunding?: string;
1820
+ fundNominalAmount: number;
1821
+ fundableAmount: number;
1822
+ overFunding: string;
1756
1823
  privilege?: string | null;
1757
- projectStartDate?: string;
1758
- projectEndDate?: string;
1759
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1760
- type?: 0 | 1 | 2 | 3;
1824
+ startDate?: string | null;
1825
+ endDate?: string | null;
1826
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1827
+ type: 0 | 1 | 2 | 3;
1828
+ fundraiserId: string;
1761
1829
  };
1762
1830
 
1831
+ export type DeleteApiProjectServiceProjectsByIdData = {
1832
+ id: string;
1833
+ };
1834
+
1835
+ export type DeleteApiProjectServiceProjectsByIdResponse = unknown;
1836
+
1763
1837
  export type PutApiProjectServiceProjectsByIdData = {
1764
1838
  id: string;
1765
1839
  requestBody?: {
1766
- id?: string;
1767
- projectName?: string | null;
1768
- projectDefinition?: string | null;
1769
- cashValue?: number;
1770
- additionalFundRate?: string | null;
1840
+ name: string;
1841
+ definition: string;
1842
+ cashValue: number;
1843
+ additionalFundRate: string;
1771
1844
  qualifiedFundRate?: string | null;
1772
- fundNominalAmount?: number;
1773
- fundableAmount?: number;
1774
- overFunding?: string;
1845
+ fundNominalAmount: number;
1846
+ fundableAmount: number;
1847
+ overFunding: string;
1775
1848
  privilege?: string | null;
1776
- projectStartDate?: string;
1777
- projectEndDate?: string;
1778
- fundCollectionType?: string | null;
1779
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1780
- type?: 0 | 1 | 2 | 3;
1849
+ startDate: string;
1850
+ fundCollectionType: string;
1851
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1852
+ type: 0 | 1 | 2 | 3;
1781
1853
  };
1782
1854
  };
1783
1855
 
1784
1856
  export type PutApiProjectServiceProjectsByIdResponse = {
1785
- id?: string;
1786
1857
  creationTime?: string;
1787
1858
  creatorId?: string | null;
1788
1859
  lastModificationTime?: string | null;
@@ -1790,67 +1861,30 @@ export type PutApiProjectServiceProjectsByIdResponse = {
1790
1861
  isDeleted?: boolean;
1791
1862
  deleterId?: string | null;
1792
1863
  deletionTime?: string | null;
1793
- projectName?: string | null;
1794
- projectDefinition?: string | null;
1795
- cashValue?: number;
1796
- fundCollectionType?: string | null;
1797
- additionalFundRate?: string | null;
1864
+ id: string;
1865
+ name: string;
1866
+ definition: string;
1867
+ cashValue: number;
1868
+ fundCollectionType: string;
1869
+ additionalFundRate: string;
1798
1870
  qualifiedFundRate?: string | null;
1799
- fundNominalAmount?: number;
1800
- fundableAmount?: number;
1801
- overFunding?: string;
1871
+ fundNominalAmount: number;
1872
+ fundableAmount: number;
1873
+ overFunding: string;
1802
1874
  privilege?: string | null;
1803
- projectStartDate?: string;
1804
- projectEndDate?: string;
1805
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1806
- type?: 0 | 1 | 2 | 3;
1807
- };
1808
-
1809
- export type GetApiProjectServiceProjectsDetailByIdData = {
1810
- id: string;
1811
- };
1812
-
1813
- export type GetApiProjectServiceProjectsDetailByIdResponse = {
1814
- project?: {
1815
- id?: string;
1816
- creationTime?: string;
1817
- creatorId?: string | null;
1818
- lastModificationTime?: string | null;
1819
- lastModifierId?: string | null;
1820
- isDeleted?: boolean;
1821
- deleterId?: string | null;
1822
- deletionTime?: string | null;
1823
- projectName?: string | null;
1824
- projectDefinition?: string | null;
1825
- cashValue?: number;
1826
- fundCollectionType?: string | null;
1827
- additionalFundRate?: string | null;
1828
- qualifiedFundRate?: string | null;
1829
- fundNominalAmount?: number;
1830
- fundableAmount?: number;
1831
- overFunding?: string;
1832
- privilege?: string | null;
1833
- projectStartDate?: string;
1834
- projectEndDate?: string;
1835
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1836
- type?: 0 | 1 | 2 | 3;
1837
- };
1838
- projectSectionRelations?: Array<{
1839
- projectId?: string;
1840
- sectionId?: string;
1841
- sectionRelationId?: string;
1842
- sectionName?: string | null;
1843
- sectionRelationValue?: string | null;
1844
- order?: number;
1845
- }> | null;
1875
+ startDate?: string | null;
1876
+ endDate?: string | null;
1877
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1878
+ type: 0 | 1 | 2 | 3;
1879
+ fundraiserId: string;
1846
1880
  };
1847
1881
 
1848
- export type GetApiProjectServiceProjectsSectionListByProjectIdData = {
1882
+ export type PutApiProjectServiceProjectsStatusByProjectIdData = {
1849
1883
  projectId: string;
1884
+ status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1850
1885
  };
1851
1886
 
1852
- export type GetApiProjectServiceProjectsSectionListByProjectIdResponse = Array<{
1853
- id?: string;
1887
+ export type PutApiProjectServiceProjectsStatusByProjectIdResponse = {
1854
1888
  creationTime?: string;
1855
1889
  creatorId?: string | null;
1856
1890
  lastModificationTime?: string | null;
@@ -1858,14 +1892,68 @@ export type GetApiProjectServiceProjectsSectionListByProjectIdResponse = Array<{
1858
1892
  isDeleted?: boolean;
1859
1893
  deleterId?: string | null;
1860
1894
  deletionTime?: string | null;
1861
- name?: string | null;
1862
- isDefault?: boolean;
1863
- isOptional?: boolean;
1864
- projectId?: string | null;
1865
- }>;
1895
+ id: string;
1896
+ name: string;
1897
+ definition: string;
1898
+ cashValue: number;
1899
+ fundCollectionType: string;
1900
+ additionalFundRate: string;
1901
+ qualifiedFundRate?: string | null;
1902
+ fundNominalAmount: number;
1903
+ fundableAmount: number;
1904
+ overFunding: string;
1905
+ privilege?: string | null;
1906
+ startDate?: string | null;
1907
+ endDate?: string | null;
1908
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1909
+ type: 0 | 1 | 2 | 3;
1910
+ fundraiserId: string;
1911
+ };
1912
+
1913
+ export type GetApiProjectServiceProjectsWithFundraiserListAsyncData = {
1914
+ maxResultCount?: number;
1915
+ skipCount?: number;
1916
+ sorting?: string;
1917
+ status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1918
+ type?: 0 | 1 | 2 | 3;
1919
+ };
1920
+
1921
+ export type GetApiProjectServiceProjectsWithFundraiserListAsyncResponse = {
1922
+ items?: Array<{
1923
+ project?: {
1924
+ creationTime?: string;
1925
+ creatorId?: string | null;
1926
+ lastModificationTime?: string | null;
1927
+ lastModifierId?: string | null;
1928
+ isDeleted?: boolean;
1929
+ deleterId?: string | null;
1930
+ deletionTime?: string | null;
1931
+ id: string;
1932
+ name: string;
1933
+ definition: string;
1934
+ cashValue: number;
1935
+ fundCollectionType: string;
1936
+ additionalFundRate: string;
1937
+ qualifiedFundRate?: string | null;
1938
+ fundNominalAmount: number;
1939
+ fundableAmount: number;
1940
+ overFunding: string;
1941
+ privilege?: string | null;
1942
+ startDate?: string | null;
1943
+ endDate?: string | null;
1944
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1945
+ type: 0 | 1 | 2 | 3;
1946
+ fundraiserId: string;
1947
+ };
1948
+ fundraiser?: {
1949
+ id?: string;
1950
+ name?: string | null;
1951
+ };
1952
+ }> | null;
1953
+ totalCount?: number;
1954
+ };
1866
1955
 
1867
1956
  export type GetApiProjectServiceProjectsMyProjectsResponse = Array<{
1868
- id?: string;
1869
1957
  creationTime?: string;
1870
1958
  creatorId?: string | null;
1871
1959
  lastModificationTime?: string | null;
@@ -1873,28 +1961,28 @@ export type GetApiProjectServiceProjectsMyProjectsResponse = Array<{
1873
1961
  isDeleted?: boolean;
1874
1962
  deleterId?: string | null;
1875
1963
  deletionTime?: string | null;
1876
- projectName?: string | null;
1877
- projectDefinition?: string | null;
1878
- cashValue?: number;
1879
- fundCollectionType?: string | null;
1880
- additionalFundRate?: string | null;
1964
+ id: string;
1965
+ name: string;
1966
+ definition: string;
1967
+ cashValue: number;
1968
+ fundCollectionType: string;
1969
+ additionalFundRate: string;
1881
1970
  qualifiedFundRate?: string | null;
1882
- fundNominalAmount?: number;
1883
- fundableAmount?: number;
1884
- overFunding?: string;
1971
+ fundNominalAmount: number;
1972
+ fundableAmount: number;
1973
+ overFunding: string;
1885
1974
  privilege?: string | null;
1886
- projectStartDate?: string;
1887
- projectEndDate?: string;
1888
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1889
- type?: 0 | 1 | 2 | 3;
1975
+ startDate?: string | null;
1976
+ endDate?: string | null;
1977
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1978
+ type: 0 | 1 | 2 | 3;
1979
+ fundraiserId: string;
1890
1980
  }>;
1891
1981
 
1892
1982
  export type PostApiProjectServiceProjectsSectionData = {
1893
1983
  requestBody?: {
1894
- projectId?: string;
1895
- name?: string | null;
1896
- isDefault?: boolean;
1897
- isOptional?: boolean;
1984
+ projectId: string;
1985
+ name: string;
1898
1986
  };
1899
1987
  };
1900
1988
 
@@ -1907,22 +1995,20 @@ export type PostApiProjectServiceProjectsSectionResponse = {
1907
1995
  isDeleted?: boolean;
1908
1996
  deleterId?: string | null;
1909
1997
  deletionTime?: string | null;
1910
- name?: string | null;
1911
- isDefault?: boolean;
1912
- isOptional?: boolean;
1998
+ name: string;
1999
+ isDefault: boolean;
2000
+ isOptional: boolean;
1913
2001
  projectId?: string | null;
1914
2002
  };
1915
2003
 
1916
- export type PostApiProjectServiceProjectsSectionRelationData = {
2004
+ export type PutApiProjectServiceProjectsSectionByIdData = {
2005
+ id: string;
1917
2006
  requestBody?: {
1918
- projectId?: string;
1919
- projectSectionId?: string;
1920
- value?: string | null;
1921
- order?: number;
2007
+ name: string;
1922
2008
  };
1923
2009
  };
1924
2010
 
1925
- export type PostApiProjectServiceProjectsSectionRelationResponse = {
2011
+ export type PutApiProjectServiceProjectsSectionByIdResponse = {
1926
2012
  id?: string;
1927
2013
  creationTime?: string;
1928
2014
  creatorId?: string | null;
@@ -1931,23 +2017,17 @@ export type PostApiProjectServiceProjectsSectionRelationResponse = {
1931
2017
  isDeleted?: boolean;
1932
2018
  deleterId?: string | null;
1933
2019
  deletionTime?: string | null;
1934
- projectId?: string;
1935
- projectSectionId?: string;
1936
- value?: string | null;
1937
- order?: number;
2020
+ name: string;
2021
+ isDefault: boolean;
2022
+ isOptional: boolean;
2023
+ projectId?: string | null;
1938
2024
  };
1939
2025
 
1940
- export type PutApiProjectServiceProjectsSectionByIdData = {
1941
- id: string;
1942
- requestBody?: {
1943
- id: string;
1944
- name?: string | null;
1945
- isDefault?: boolean | null;
1946
- isOptional?: boolean | null;
1947
- };
2026
+ export type GetApiProjectServiceProjectsSectionListByProjectIdData = {
2027
+ projectId: string;
1948
2028
  };
1949
2029
 
1950
- export type PutApiProjectServiceProjectsSectionByIdResponse = {
2030
+ export type GetApiProjectServiceProjectsSectionListByProjectIdResponse = Array<{
1951
2031
  id?: string;
1952
2032
  creationTime?: string;
1953
2033
  creatorId?: string | null;
@@ -1956,24 +2036,22 @@ export type PutApiProjectServiceProjectsSectionByIdResponse = {
1956
2036
  isDeleted?: boolean;
1957
2037
  deleterId?: string | null;
1958
2038
  deletionTime?: string | null;
1959
- name?: string | null;
1960
- isDefault?: boolean;
1961
- isOptional?: boolean;
2039
+ name: string;
2040
+ isDefault: boolean;
2041
+ isOptional: boolean;
1962
2042
  projectId?: string | null;
1963
- };
2043
+ }>;
1964
2044
 
1965
- export type PutApiProjectServiceProjectsSectionRelationByIdData = {
1966
- id: string;
2045
+ export type PostApiProjectServiceProjectsSectionRelationData = {
1967
2046
  requestBody?: {
1968
- id?: string;
1969
- projectId?: string;
1970
- projectSectionId?: string;
1971
- value?: string | null;
1972
- order?: number;
2047
+ projectId: string;
2048
+ projectSectionId: string;
2049
+ value: string;
2050
+ order: number;
1973
2051
  };
1974
2052
  };
1975
2053
 
1976
- export type PutApiProjectServiceProjectsSectionRelationByIdResponse = {
2054
+ export type PostApiProjectServiceProjectsSectionRelationResponse = {
1977
2055
  id?: string;
1978
2056
  creationTime?: string;
1979
2057
  creatorId?: string | null;
@@ -1982,18 +2060,21 @@ export type PutApiProjectServiceProjectsSectionRelationByIdResponse = {
1982
2060
  isDeleted?: boolean;
1983
2061
  deleterId?: string | null;
1984
2062
  deletionTime?: string | null;
1985
- projectId?: string;
1986
- projectSectionId?: string;
1987
- value?: string | null;
1988
- order?: number;
2063
+ projectId: string;
2064
+ projectSectionId: string;
2065
+ value: string;
2066
+ order: number;
1989
2067
  };
1990
2068
 
1991
- export type PutApiProjectServiceProjectsStatusByProjectIdData = {
1992
- projectId: string;
1993
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
2069
+ export type PutApiProjectServiceProjectsSectionRelationByIdData = {
2070
+ id: string;
2071
+ requestBody?: {
2072
+ value: string;
2073
+ order: number;
2074
+ };
1994
2075
  };
1995
2076
 
1996
- export type PutApiProjectServiceProjectsStatusByProjectIdResponse = {
2077
+ export type PutApiProjectServiceProjectsSectionRelationByIdResponse = {
1997
2078
  id?: string;
1998
2079
  creationTime?: string;
1999
2080
  creatorId?: string | null;
@@ -2002,20 +2083,10 @@ export type PutApiProjectServiceProjectsStatusByProjectIdResponse = {
2002
2083
  isDeleted?: boolean;
2003
2084
  deleterId?: string | null;
2004
2085
  deletionTime?: string | null;
2005
- projectName?: string | null;
2006
- projectDefinition?: string | null;
2007
- cashValue?: number;
2008
- fundCollectionType?: string | null;
2009
- additionalFundRate?: string | null;
2010
- qualifiedFundRate?: string | null;
2011
- fundNominalAmount?: number;
2012
- fundableAmount?: number;
2013
- overFunding?: string;
2014
- privilege?: string | null;
2015
- projectStartDate?: string;
2016
- projectEndDate?: string;
2017
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
2018
- type?: 0 | 1 | 2 | 3;
2086
+ projectId: string;
2087
+ projectSectionId: string;
2088
+ value: string;
2089
+ order: number;
2019
2090
  };
2020
2091
 
2021
2092
  export type GetApiProjectServicePublicProjectsData = {
@@ -2028,7 +2099,6 @@ export type GetApiProjectServicePublicProjectsData = {
2028
2099
 
2029
2100
  export type GetApiProjectServicePublicProjectsResponse = {
2030
2101
  items?: Array<{
2031
- id?: string;
2032
2102
  creationTime?: string;
2033
2103
  creatorId?: string | null;
2034
2104
  lastModificationTime?: string | null;
@@ -2036,24 +2106,70 @@ export type GetApiProjectServicePublicProjectsResponse = {
2036
2106
  isDeleted?: boolean;
2037
2107
  deleterId?: string | null;
2038
2108
  deletionTime?: string | null;
2039
- projectName?: string | null;
2040
- projectDefinition?: string | null;
2041
- cashValue?: number;
2042
- fundCollectionType?: string | null;
2043
- additionalFundRate?: string | null;
2109
+ id: string;
2110
+ name: string;
2111
+ definition: string;
2112
+ cashValue: number;
2113
+ fundCollectionType: string;
2114
+ additionalFundRate: string;
2044
2115
  qualifiedFundRate?: string | null;
2045
- fundNominalAmount?: number;
2046
- fundableAmount?: number;
2047
- overFunding?: string;
2116
+ fundNominalAmount: number;
2117
+ fundableAmount: number;
2118
+ overFunding: string;
2048
2119
  privilege?: string | null;
2049
- projectStartDate?: string;
2050
- projectEndDate?: string;
2051
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
2052
- type?: 0 | 1 | 2 | 3;
2120
+ startDate?: string | null;
2121
+ endDate?: string | null;
2122
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
2123
+ type: 0 | 1 | 2 | 3;
2124
+ fundraiserId: string;
2053
2125
  }> | null;
2054
2126
  totalCount?: number;
2055
2127
  };
2056
2128
 
2129
+ export type GetApiProjectServicePublicProjectsDetailByIdData = {
2130
+ id: string;
2131
+ };
2132
+
2133
+ export type GetApiProjectServicePublicProjectsDetailByIdResponse = {
2134
+ project?: {
2135
+ creationTime?: string;
2136
+ creatorId?: string | null;
2137
+ lastModificationTime?: string | null;
2138
+ lastModifierId?: string | null;
2139
+ isDeleted?: boolean;
2140
+ deleterId?: string | null;
2141
+ deletionTime?: string | null;
2142
+ id: string;
2143
+ name: string;
2144
+ definition: string;
2145
+ cashValue: number;
2146
+ fundCollectionType: string;
2147
+ additionalFundRate: string;
2148
+ qualifiedFundRate?: string | null;
2149
+ fundNominalAmount: number;
2150
+ fundableAmount: number;
2151
+ overFunding: string;
2152
+ privilege?: string | null;
2153
+ startDate?: string | null;
2154
+ endDate?: string | null;
2155
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
2156
+ type: 0 | 1 | 2 | 3;
2157
+ fundraiserId: string;
2158
+ };
2159
+ fundraiser?: {
2160
+ id?: string;
2161
+ name?: string | null;
2162
+ };
2163
+ projectSectionRelations?: Array<{
2164
+ projectId?: string;
2165
+ sectionId?: string;
2166
+ sectionRelationId?: string;
2167
+ sectionName?: string | null;
2168
+ sectionRelationValue?: string | null;
2169
+ order?: number;
2170
+ }> | null;
2171
+ };
2172
+
2057
2173
  export type $OpenApiTs = {
2058
2174
  '/api/abp/api-definition': {
2059
2175
  get: {
@@ -2710,7 +2826,6 @@ export type $OpenApiTs = {
2710
2826
  * Success
2711
2827
  */
2712
2828
  200: {
2713
- id?: string;
2714
2829
  creationTime?: string;
2715
2830
  creatorId?: string | null;
2716
2831
  lastModificationTime?: string | null;
@@ -2718,20 +2833,22 @@ export type $OpenApiTs = {
2718
2833
  isDeleted?: boolean;
2719
2834
  deleterId?: string | null;
2720
2835
  deletionTime?: string | null;
2721
- projectName?: string | null;
2722
- projectDefinition?: string | null;
2723
- cashValue?: number;
2724
- fundCollectionType?: string | null;
2725
- additionalFundRate?: string | null;
2836
+ id: string;
2837
+ name: string;
2838
+ definition: string;
2839
+ cashValue: number;
2840
+ fundCollectionType: string;
2841
+ additionalFundRate: string;
2726
2842
  qualifiedFundRate?: string | null;
2727
- fundNominalAmount?: number;
2728
- fundableAmount?: number;
2729
- overFunding?: string;
2843
+ fundNominalAmount: number;
2844
+ fundableAmount: number;
2845
+ overFunding: string;
2730
2846
  privilege?: string | null;
2731
- projectStartDate?: string;
2732
- projectEndDate?: string;
2733
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
2734
- type?: 0 | 1 | 2 | 3;
2847
+ startDate?: string | null;
2848
+ endDate?: string | null;
2849
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
2850
+ type: 0 | 1 | 2 | 3;
2851
+ fundraiserId: string;
2735
2852
  };
2736
2853
  /**
2737
2854
  * Bad Request
@@ -2845,7 +2962,6 @@ export type $OpenApiTs = {
2845
2962
  */
2846
2963
  200: {
2847
2964
  items?: Array<{
2848
- id?: string;
2849
2965
  creationTime?: string;
2850
2966
  creatorId?: string | null;
2851
2967
  lastModificationTime?: string | null;
@@ -2853,20 +2969,22 @@ export type $OpenApiTs = {
2853
2969
  isDeleted?: boolean;
2854
2970
  deleterId?: string | null;
2855
2971
  deletionTime?: string | null;
2856
- projectName?: string | null;
2857
- projectDefinition?: string | null;
2858
- cashValue?: number;
2859
- fundCollectionType?: string | null;
2860
- additionalFundRate?: string | null;
2972
+ id: string;
2973
+ name: string;
2974
+ definition: string;
2975
+ cashValue: number;
2976
+ fundCollectionType: string;
2977
+ additionalFundRate: string;
2861
2978
  qualifiedFundRate?: string | null;
2862
- fundNominalAmount?: number;
2863
- fundableAmount?: number;
2864
- overFunding?: string;
2979
+ fundNominalAmount: number;
2980
+ fundableAmount: number;
2981
+ overFunding: string;
2865
2982
  privilege?: string | null;
2866
- projectStartDate?: string;
2867
- projectEndDate?: string;
2868
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
2869
- type?: 0 | 1 | 2 | 3;
2983
+ startDate?: string | null;
2984
+ endDate?: string | null;
2985
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
2986
+ type: 0 | 1 | 2 | 3;
2987
+ fundraiserId: string;
2870
2988
  }> | null;
2871
2989
  totalCount?: number;
2872
2990
  };
@@ -2976,6 +3094,141 @@ export type $OpenApiTs = {
2976
3094
  };
2977
3095
  };
2978
3096
  '/api/project-service/projects/{id}': {
3097
+ get: {
3098
+ req: GetApiProjectServiceProjectsByIdData;
3099
+ res: {
3100
+ /**
3101
+ * Success
3102
+ */
3103
+ 200: {
3104
+ creationTime?: string;
3105
+ creatorId?: string | null;
3106
+ lastModificationTime?: string | null;
3107
+ lastModifierId?: string | null;
3108
+ isDeleted?: boolean;
3109
+ deleterId?: string | null;
3110
+ deletionTime?: string | null;
3111
+ id: string;
3112
+ name: string;
3113
+ definition: string;
3114
+ cashValue: number;
3115
+ fundCollectionType: string;
3116
+ additionalFundRate: string;
3117
+ qualifiedFundRate?: string | null;
3118
+ fundNominalAmount: number;
3119
+ fundableAmount: number;
3120
+ overFunding: string;
3121
+ privilege?: string | null;
3122
+ startDate?: string | null;
3123
+ endDate?: string | null;
3124
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
3125
+ type: 0 | 1 | 2 | 3;
3126
+ fundraiserId: string;
3127
+ };
3128
+ /**
3129
+ * Bad Request
3130
+ */
3131
+ 400: {
3132
+ error?: {
3133
+ code?: string | null;
3134
+ message?: string | null;
3135
+ details?: string | null;
3136
+ data?: {
3137
+ [key: string]: unknown;
3138
+ } | null;
3139
+ validationErrors?: Array<{
3140
+ message?: string | null;
3141
+ members?: Array<(string)> | null;
3142
+ }> | null;
3143
+ };
3144
+ };
3145
+ /**
3146
+ * Unauthorized
3147
+ */
3148
+ 401: {
3149
+ error?: {
3150
+ code?: string | null;
3151
+ message?: string | null;
3152
+ details?: string | null;
3153
+ data?: {
3154
+ [key: string]: unknown;
3155
+ } | null;
3156
+ validationErrors?: Array<{
3157
+ message?: string | null;
3158
+ members?: Array<(string)> | null;
3159
+ }> | null;
3160
+ };
3161
+ };
3162
+ /**
3163
+ * Forbidden
3164
+ */
3165
+ 403: {
3166
+ error?: {
3167
+ code?: string | null;
3168
+ message?: string | null;
3169
+ details?: string | null;
3170
+ data?: {
3171
+ [key: string]: unknown;
3172
+ } | null;
3173
+ validationErrors?: Array<{
3174
+ message?: string | null;
3175
+ members?: Array<(string)> | null;
3176
+ }> | null;
3177
+ };
3178
+ };
3179
+ /**
3180
+ * Not Found
3181
+ */
3182
+ 404: {
3183
+ error?: {
3184
+ code?: string | null;
3185
+ message?: string | null;
3186
+ details?: string | null;
3187
+ data?: {
3188
+ [key: string]: unknown;
3189
+ } | null;
3190
+ validationErrors?: Array<{
3191
+ message?: string | null;
3192
+ members?: Array<(string)> | null;
3193
+ }> | null;
3194
+ };
3195
+ };
3196
+ /**
3197
+ * Server Error
3198
+ */
3199
+ 500: {
3200
+ error?: {
3201
+ code?: string | null;
3202
+ message?: string | null;
3203
+ details?: string | null;
3204
+ data?: {
3205
+ [key: string]: unknown;
3206
+ } | null;
3207
+ validationErrors?: Array<{
3208
+ message?: string | null;
3209
+ members?: Array<(string)> | null;
3210
+ }> | null;
3211
+ };
3212
+ };
3213
+ /**
3214
+ * Server Error
3215
+ */
3216
+ 501: {
3217
+ error?: {
3218
+ code?: string | null;
3219
+ message?: string | null;
3220
+ details?: string | null;
3221
+ data?: {
3222
+ [key: string]: unknown;
3223
+ } | null;
3224
+ validationErrors?: Array<{
3225
+ message?: string | null;
3226
+ members?: Array<(string)> | null;
3227
+ }> | null;
3228
+ };
3229
+ };
3230
+ };
3231
+ };
2979
3232
  delete: {
2980
3233
  req: DeleteApiProjectServiceProjectsByIdData;
2981
3234
  res: {
@@ -3087,14 +3340,13 @@ export type $OpenApiTs = {
3087
3340
  };
3088
3341
  };
3089
3342
  };
3090
- get: {
3091
- req: GetApiProjectServiceProjectsByIdData;
3343
+ put: {
3344
+ req: PutApiProjectServiceProjectsByIdData;
3092
3345
  res: {
3093
3346
  /**
3094
3347
  * Success
3095
3348
  */
3096
3349
  200: {
3097
- id?: string;
3098
3350
  creationTime?: string;
3099
3351
  creatorId?: string | null;
3100
3352
  lastModificationTime?: string | null;
@@ -3102,20 +3354,22 @@ export type $OpenApiTs = {
3102
3354
  isDeleted?: boolean;
3103
3355
  deleterId?: string | null;
3104
3356
  deletionTime?: string | null;
3105
- projectName?: string | null;
3106
- projectDefinition?: string | null;
3107
- cashValue?: number;
3108
- fundCollectionType?: string | null;
3109
- additionalFundRate?: string | null;
3357
+ id: string;
3358
+ name: string;
3359
+ definition: string;
3360
+ cashValue: number;
3361
+ fundCollectionType: string;
3362
+ additionalFundRate: string;
3110
3363
  qualifiedFundRate?: string | null;
3111
- fundNominalAmount?: number;
3112
- fundableAmount?: number;
3113
- overFunding?: string;
3364
+ fundNominalAmount: number;
3365
+ fundableAmount: number;
3366
+ overFunding: string;
3114
3367
  privilege?: string | null;
3115
- projectStartDate?: string;
3116
- projectEndDate?: string;
3117
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
3118
- type?: 0 | 1 | 2 | 3;
3368
+ startDate?: string | null;
3369
+ endDate?: string | null;
3370
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
3371
+ type: 0 | 1 | 2 | 3;
3372
+ fundraiserId: string;
3119
3373
  };
3120
3374
  /**
3121
3375
  * Bad Request
@@ -3221,14 +3475,15 @@ export type $OpenApiTs = {
3221
3475
  };
3222
3476
  };
3223
3477
  };
3478
+ };
3479
+ '/api/project-service/projects/status/{projectId}': {
3224
3480
  put: {
3225
- req: PutApiProjectServiceProjectsByIdData;
3481
+ req: PutApiProjectServiceProjectsStatusByProjectIdData;
3226
3482
  res: {
3227
3483
  /**
3228
3484
  * Success
3229
3485
  */
3230
3486
  200: {
3231
- id?: string;
3232
3487
  creationTime?: string;
3233
3488
  creatorId?: string | null;
3234
3489
  lastModificationTime?: string | null;
@@ -3236,20 +3491,22 @@ export type $OpenApiTs = {
3236
3491
  isDeleted?: boolean;
3237
3492
  deleterId?: string | null;
3238
3493
  deletionTime?: string | null;
3239
- projectName?: string | null;
3240
- projectDefinition?: string | null;
3241
- cashValue?: number;
3242
- fundCollectionType?: string | null;
3243
- additionalFundRate?: string | null;
3494
+ id: string;
3495
+ name: string;
3496
+ definition: string;
3497
+ cashValue: number;
3498
+ fundCollectionType: string;
3499
+ additionalFundRate: string;
3244
3500
  qualifiedFundRate?: string | null;
3245
- fundNominalAmount?: number;
3246
- fundableAmount?: number;
3247
- overFunding?: string;
3501
+ fundNominalAmount: number;
3502
+ fundableAmount: number;
3503
+ overFunding: string;
3248
3504
  privilege?: string | null;
3249
- projectStartDate?: string;
3250
- projectEndDate?: string;
3251
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
3252
- type?: 0 | 1 | 2 | 3;
3505
+ startDate?: string | null;
3506
+ endDate?: string | null;
3507
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
3508
+ type: 0 | 1 | 2 | 3;
3509
+ fundraiserId: string;
3253
3510
  };
3254
3511
  /**
3255
3512
  * Bad Request
@@ -3356,46 +3613,46 @@ export type $OpenApiTs = {
3356
3613
  };
3357
3614
  };
3358
3615
  };
3359
- '/api/project-service/projects/detail/{id}': {
3616
+ '/api/project-service/projects/with-fundraiser-list-async': {
3360
3617
  get: {
3361
- req: GetApiProjectServiceProjectsDetailByIdData;
3618
+ req: GetApiProjectServiceProjectsWithFundraiserListAsyncData;
3362
3619
  res: {
3363
3620
  /**
3364
3621
  * Success
3365
3622
  */
3366
3623
  200: {
3367
- project?: {
3368
- id?: string;
3369
- creationTime?: string;
3370
- creatorId?: string | null;
3371
- lastModificationTime?: string | null;
3372
- lastModifierId?: string | null;
3373
- isDeleted?: boolean;
3374
- deleterId?: string | null;
3375
- deletionTime?: string | null;
3376
- projectName?: string | null;
3377
- projectDefinition?: string | null;
3378
- cashValue?: number;
3379
- fundCollectionType?: string | null;
3380
- additionalFundRate?: string | null;
3381
- qualifiedFundRate?: string | null;
3382
- fundNominalAmount?: number;
3383
- fundableAmount?: number;
3384
- overFunding?: string;
3385
- privilege?: string | null;
3386
- projectStartDate?: string;
3387
- projectEndDate?: string;
3388
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
3389
- type?: 0 | 1 | 2 | 3;
3390
- };
3391
- projectSectionRelations?: Array<{
3392
- projectId?: string;
3393
- sectionId?: string;
3394
- sectionRelationId?: string;
3395
- sectionName?: string | null;
3396
- sectionRelationValue?: string | null;
3397
- order?: number;
3624
+ items?: Array<{
3625
+ project?: {
3626
+ creationTime?: string;
3627
+ creatorId?: string | null;
3628
+ lastModificationTime?: string | null;
3629
+ lastModifierId?: string | null;
3630
+ isDeleted?: boolean;
3631
+ deleterId?: string | null;
3632
+ deletionTime?: string | null;
3633
+ id: string;
3634
+ name: string;
3635
+ definition: string;
3636
+ cashValue: number;
3637
+ fundCollectionType: string;
3638
+ additionalFundRate: string;
3639
+ qualifiedFundRate?: string | null;
3640
+ fundNominalAmount: number;
3641
+ fundableAmount: number;
3642
+ overFunding: string;
3643
+ privilege?: string | null;
3644
+ startDate?: string | null;
3645
+ endDate?: string | null;
3646
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
3647
+ type: 0 | 1 | 2 | 3;
3648
+ fundraiserId: string;
3649
+ };
3650
+ fundraiser?: {
3651
+ id?: string;
3652
+ name?: string | null;
3653
+ };
3398
3654
  }> | null;
3655
+ totalCount?: number;
3399
3656
  };
3400
3657
  /**
3401
3658
  * Bad Request
@@ -3502,15 +3759,13 @@ export type $OpenApiTs = {
3502
3759
  };
3503
3760
  };
3504
3761
  };
3505
- '/api/project-service/projects/section-list/{projectId}': {
3762
+ '/api/project-service/projects/my-projects': {
3506
3763
  get: {
3507
- req: GetApiProjectServiceProjectsSectionListByProjectIdData;
3508
3764
  res: {
3509
3765
  /**
3510
3766
  * Success
3511
3767
  */
3512
3768
  200: Array<{
3513
- id?: string;
3514
3769
  creationTime?: string;
3515
3770
  creatorId?: string | null;
3516
3771
  lastModificationTime?: string | null;
@@ -3518,10 +3773,22 @@ export type $OpenApiTs = {
3518
3773
  isDeleted?: boolean;
3519
3774
  deleterId?: string | null;
3520
3775
  deletionTime?: string | null;
3521
- name?: string | null;
3522
- isDefault?: boolean;
3523
- isOptional?: boolean;
3524
- projectId?: string | null;
3776
+ id: string;
3777
+ name: string;
3778
+ definition: string;
3779
+ cashValue: number;
3780
+ fundCollectionType: string;
3781
+ additionalFundRate: string;
3782
+ qualifiedFundRate?: string | null;
3783
+ fundNominalAmount: number;
3784
+ fundableAmount: number;
3785
+ overFunding: string;
3786
+ privilege?: string | null;
3787
+ startDate?: string | null;
3788
+ endDate?: string | null;
3789
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
3790
+ type: 0 | 1 | 2 | 3;
3791
+ fundraiserId: string;
3525
3792
  }>;
3526
3793
  /**
3527
3794
  * Bad Request
@@ -3628,13 +3895,14 @@ export type $OpenApiTs = {
3628
3895
  };
3629
3896
  };
3630
3897
  };
3631
- '/api/project-service/projects/my-projects': {
3632
- get: {
3898
+ '/api/project-service/projects/section': {
3899
+ post: {
3900
+ req: PostApiProjectServiceProjectsSectionData;
3633
3901
  res: {
3634
3902
  /**
3635
3903
  * Success
3636
3904
  */
3637
- 200: Array<{
3905
+ 200: {
3638
3906
  id?: string;
3639
3907
  creationTime?: string;
3640
3908
  creatorId?: string | null;
@@ -3643,21 +3911,11 @@ export type $OpenApiTs = {
3643
3911
  isDeleted?: boolean;
3644
3912
  deleterId?: string | null;
3645
3913
  deletionTime?: string | null;
3646
- projectName?: string | null;
3647
- projectDefinition?: string | null;
3648
- cashValue?: number;
3649
- fundCollectionType?: string | null;
3650
- additionalFundRate?: string | null;
3651
- qualifiedFundRate?: string | null;
3652
- fundNominalAmount?: number;
3653
- fundableAmount?: number;
3654
- overFunding?: string;
3655
- privilege?: string | null;
3656
- projectStartDate?: string;
3657
- projectEndDate?: string;
3658
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
3659
- type?: 0 | 1 | 2 | 3;
3660
- }>;
3914
+ name: string;
3915
+ isDefault: boolean;
3916
+ isOptional: boolean;
3917
+ projectId?: string | null;
3918
+ };
3661
3919
  /**
3662
3920
  * Bad Request
3663
3921
  */
@@ -3763,9 +4021,9 @@ export type $OpenApiTs = {
3763
4021
  };
3764
4022
  };
3765
4023
  };
3766
- '/api/project-service/projects/section': {
3767
- post: {
3768
- req: PostApiProjectServiceProjectsSectionData;
4024
+ '/api/project-service/projects/section/{id}': {
4025
+ put: {
4026
+ req: PutApiProjectServiceProjectsSectionByIdData;
3769
4027
  res: {
3770
4028
  /**
3771
4029
  * Success
@@ -3779,9 +4037,9 @@ export type $OpenApiTs = {
3779
4037
  isDeleted?: boolean;
3780
4038
  deleterId?: string | null;
3781
4039
  deletionTime?: string | null;
3782
- name?: string | null;
3783
- isDefault?: boolean;
3784
- isOptional?: boolean;
4040
+ name: string;
4041
+ isDefault: boolean;
4042
+ isOptional: boolean;
3785
4043
  projectId?: string | null;
3786
4044
  };
3787
4045
  /**
@@ -3889,14 +4147,14 @@ export type $OpenApiTs = {
3889
4147
  };
3890
4148
  };
3891
4149
  };
3892
- '/api/project-service/projects/section-relation': {
3893
- post: {
3894
- req: PostApiProjectServiceProjectsSectionRelationData;
4150
+ '/api/project-service/projects/section-list/{projectId}': {
4151
+ get: {
4152
+ req: GetApiProjectServiceProjectsSectionListByProjectIdData;
3895
4153
  res: {
3896
4154
  /**
3897
4155
  * Success
3898
4156
  */
3899
- 200: {
4157
+ 200: Array<{
3900
4158
  id?: string;
3901
4159
  creationTime?: string;
3902
4160
  creatorId?: string | null;
@@ -3905,11 +4163,11 @@ export type $OpenApiTs = {
3905
4163
  isDeleted?: boolean;
3906
4164
  deleterId?: string | null;
3907
4165
  deletionTime?: string | null;
3908
- projectId?: string;
3909
- projectSectionId?: string;
3910
- value?: string | null;
3911
- order?: number;
3912
- };
4166
+ name: string;
4167
+ isDefault: boolean;
4168
+ isOptional: boolean;
4169
+ projectId?: string | null;
4170
+ }>;
3913
4171
  /**
3914
4172
  * Bad Request
3915
4173
  */
@@ -4015,9 +4273,9 @@ export type $OpenApiTs = {
4015
4273
  };
4016
4274
  };
4017
4275
  };
4018
- '/api/project-service/projects/section/{id}': {
4019
- put: {
4020
- req: PutApiProjectServiceProjectsSectionByIdData;
4276
+ '/api/project-service/projects/section-relation': {
4277
+ post: {
4278
+ req: PostApiProjectServiceProjectsSectionRelationData;
4021
4279
  res: {
4022
4280
  /**
4023
4281
  * Success
@@ -4031,10 +4289,10 @@ export type $OpenApiTs = {
4031
4289
  isDeleted?: boolean;
4032
4290
  deleterId?: string | null;
4033
4291
  deletionTime?: string | null;
4034
- name?: string | null;
4035
- isDefault?: boolean;
4036
- isOptional?: boolean;
4037
- projectId?: string | null;
4292
+ projectId: string;
4293
+ projectSectionId: string;
4294
+ value: string;
4295
+ order: number;
4038
4296
  };
4039
4297
  /**
4040
4298
  * Bad Request
@@ -4157,10 +4415,10 @@ export type $OpenApiTs = {
4157
4415
  isDeleted?: boolean;
4158
4416
  deleterId?: string | null;
4159
4417
  deletionTime?: string | null;
4160
- projectId?: string;
4161
- projectSectionId?: string;
4162
- value?: string | null;
4163
- order?: number;
4418
+ projectId: string;
4419
+ projectSectionId: string;
4420
+ value: string;
4421
+ order: number;
4164
4422
  };
4165
4423
  /**
4166
4424
  * Bad Request
@@ -4267,36 +4525,40 @@ export type $OpenApiTs = {
4267
4525
  };
4268
4526
  };
4269
4527
  };
4270
- '/api/project-service/projects/status/{projectId}': {
4271
- put: {
4272
- req: PutApiProjectServiceProjectsStatusByProjectIdData;
4528
+ '/api/project-service/public/projects': {
4529
+ get: {
4530
+ req: GetApiProjectServicePublicProjectsData;
4273
4531
  res: {
4274
4532
  /**
4275
4533
  * Success
4276
4534
  */
4277
4535
  200: {
4278
- id?: string;
4279
- creationTime?: string;
4280
- creatorId?: string | null;
4281
- lastModificationTime?: string | null;
4282
- lastModifierId?: string | null;
4283
- isDeleted?: boolean;
4284
- deleterId?: string | null;
4285
- deletionTime?: string | null;
4286
- projectName?: string | null;
4287
- projectDefinition?: string | null;
4288
- cashValue?: number;
4289
- fundCollectionType?: string | null;
4290
- additionalFundRate?: string | null;
4291
- qualifiedFundRate?: string | null;
4292
- fundNominalAmount?: number;
4293
- fundableAmount?: number;
4294
- overFunding?: string;
4295
- privilege?: string | null;
4296
- projectStartDate?: string;
4297
- projectEndDate?: string;
4298
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
4299
- type?: 0 | 1 | 2 | 3;
4536
+ items?: Array<{
4537
+ creationTime?: string;
4538
+ creatorId?: string | null;
4539
+ lastModificationTime?: string | null;
4540
+ lastModifierId?: string | null;
4541
+ isDeleted?: boolean;
4542
+ deleterId?: string | null;
4543
+ deletionTime?: string | null;
4544
+ id: string;
4545
+ name: string;
4546
+ definition: string;
4547
+ cashValue: number;
4548
+ fundCollectionType: string;
4549
+ additionalFundRate: string;
4550
+ qualifiedFundRate?: string | null;
4551
+ fundNominalAmount: number;
4552
+ fundableAmount: number;
4553
+ overFunding: string;
4554
+ privilege?: string | null;
4555
+ startDate?: string | null;
4556
+ endDate?: string | null;
4557
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
4558
+ type: 0 | 1 | 2 | 3;
4559
+ fundraiserId: string;
4560
+ }> | null;
4561
+ totalCount?: number;
4300
4562
  };
4301
4563
  /**
4302
4564
  * Bad Request
@@ -4403,16 +4665,15 @@ export type $OpenApiTs = {
4403
4665
  };
4404
4666
  };
4405
4667
  };
4406
- '/api/project-service/public/projects': {
4668
+ '/api/project-service/public/projects/detail/{id}': {
4407
4669
  get: {
4408
- req: GetApiProjectServicePublicProjectsData;
4670
+ req: GetApiProjectServicePublicProjectsDetailByIdData;
4409
4671
  res: {
4410
4672
  /**
4411
4673
  * Success
4412
4674
  */
4413
4675
  200: {
4414
- items?: Array<{
4415
- id?: string;
4676
+ project?: {
4416
4677
  creationTime?: string;
4417
4678
  creatorId?: string | null;
4418
4679
  lastModificationTime?: string | null;
@@ -4420,22 +4681,35 @@ export type $OpenApiTs = {
4420
4681
  isDeleted?: boolean;
4421
4682
  deleterId?: string | null;
4422
4683
  deletionTime?: string | null;
4423
- projectName?: string | null;
4424
- projectDefinition?: string | null;
4425
- cashValue?: number;
4426
- fundCollectionType?: string | null;
4427
- additionalFundRate?: string | null;
4684
+ id: string;
4685
+ name: string;
4686
+ definition: string;
4687
+ cashValue: number;
4688
+ fundCollectionType: string;
4689
+ additionalFundRate: string;
4428
4690
  qualifiedFundRate?: string | null;
4429
- fundNominalAmount?: number;
4430
- fundableAmount?: number;
4431
- overFunding?: string;
4691
+ fundNominalAmount: number;
4692
+ fundableAmount: number;
4693
+ overFunding: string;
4432
4694
  privilege?: string | null;
4433
- projectStartDate?: string;
4434
- projectEndDate?: string;
4435
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
4436
- type?: 0 | 1 | 2 | 3;
4695
+ startDate?: string | null;
4696
+ endDate?: string | null;
4697
+ status: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
4698
+ type: 0 | 1 | 2 | 3;
4699
+ fundraiserId: string;
4700
+ };
4701
+ fundraiser?: {
4702
+ id?: string;
4703
+ name?: string | null;
4704
+ };
4705
+ projectSectionRelations?: Array<{
4706
+ projectId?: string;
4707
+ sectionId?: string;
4708
+ sectionRelationId?: string;
4709
+ sectionName?: string | null;
4710
+ sectionRelationValue?: string | null;
4711
+ order?: number;
4437
4712
  }> | null;
4438
- totalCount?: number;
4439
4713
  };
4440
4714
  /**
4441
4715
  * Bad Request