@ayasofyazilim/saas 0.0.17 → 0.0.19
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/BackerServiceClient.ts +6 -0
- package/BackerService/schemas.gen.ts +3652 -759
- package/BackerService/services.gen.ts +610 -13
- package/BackerService/types.gen.ts +9782 -1823
- package/MerchantService/schemas.gen.ts +6386 -1236
- package/MerchantService/services.gen.ts +369 -23
- package/MerchantService/types.gen.ts +8370 -3337
- package/ProjectService/ProjectServiceClient.ts +6 -3
- package/ProjectService/schemas.gen.ts +745 -26
- package/ProjectService/services.gen.ts +322 -8
- package/ProjectService/types.gen.ts +2215 -37
- package/SettingService/SettingServiceClient.ts +53 -53
- package/SettingService/services.gen.ts +316 -316
- package/generator.mjs +89 -85
- package/package.json +1 -1
|
@@ -1,5 +1,204 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
|
|
3
|
+
export type UpwithCrowd_ProjectService_ProjectSectionRelations_CreateProjectSectionRelationDto = {
|
|
4
|
+
projectId?: string;
|
|
5
|
+
projectSectionId?: string;
|
|
6
|
+
value?: string | null;
|
|
7
|
+
order?: number;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export type UpwithCrowd_ProjectService_ProjectSectionRelations_ProjectSectionRelationDetailDto = {
|
|
11
|
+
projectId?: string;
|
|
12
|
+
sectionId?: string;
|
|
13
|
+
sectionRelationId?: string;
|
|
14
|
+
sectionName?: string | null;
|
|
15
|
+
sectionRelationValue?: string | null;
|
|
16
|
+
order?: number;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export type UpwithCrowd_ProjectService_ProjectSectionRelations_ProjectSectionRelationDto = {
|
|
20
|
+
id?: string;
|
|
21
|
+
creationTime?: string;
|
|
22
|
+
creatorId?: string | null;
|
|
23
|
+
lastModificationTime?: string | null;
|
|
24
|
+
lastModifierId?: string | null;
|
|
25
|
+
isDeleted?: boolean;
|
|
26
|
+
deleterId?: string | null;
|
|
27
|
+
deletionTime?: string | null;
|
|
28
|
+
projectId?: string;
|
|
29
|
+
projectSectionId?: string;
|
|
30
|
+
value?: string | null;
|
|
31
|
+
order?: number;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export type UpwithCrowd_ProjectService_ProjectSectionRelations_UpdateProjectSectionRelationDto = {
|
|
35
|
+
id?: string;
|
|
36
|
+
projectId?: string;
|
|
37
|
+
projectSectionId?: string;
|
|
38
|
+
value?: string | null;
|
|
39
|
+
order?: number;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
export type UpwithCrowd_ProjectService_ProjectSections_CreateProjectSectionDto = {
|
|
43
|
+
projectId?: string;
|
|
44
|
+
name?: string | null;
|
|
45
|
+
isDefault?: boolean;
|
|
46
|
+
isOptional?: boolean;
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
export type UpwithCrowd_ProjectService_ProjectSections_ProjectSectionDto = {
|
|
50
|
+
id?: string;
|
|
51
|
+
creationTime?: string;
|
|
52
|
+
creatorId?: string | null;
|
|
53
|
+
lastModificationTime?: string | null;
|
|
54
|
+
lastModifierId?: string | null;
|
|
55
|
+
isDeleted?: boolean;
|
|
56
|
+
deleterId?: string | null;
|
|
57
|
+
deletionTime?: string | null;
|
|
58
|
+
name?: string | null;
|
|
59
|
+
isDefault?: boolean;
|
|
60
|
+
isOptional?: boolean;
|
|
61
|
+
projectId?: string | null;
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
export type UpwithCrowd_ProjectService_ProjectSections_UpdateProjectSectionDto = {
|
|
65
|
+
id: string;
|
|
66
|
+
name?: string | null;
|
|
67
|
+
isDefault?: boolean | null;
|
|
68
|
+
isOptional?: boolean | null;
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export type UpwithCrowd_ProjectService_Projects_ProjectDetailDto = {
|
|
72
|
+
project?: {
|
|
73
|
+
id?: string;
|
|
74
|
+
creationTime?: string;
|
|
75
|
+
creatorId?: string | null;
|
|
76
|
+
lastModificationTime?: string | null;
|
|
77
|
+
lastModifierId?: string | null;
|
|
78
|
+
isDeleted?: boolean;
|
|
79
|
+
deleterId?: string | null;
|
|
80
|
+
deletionTime?: string | null;
|
|
81
|
+
projectName?: string | null;
|
|
82
|
+
projectDefinition?: string | null;
|
|
83
|
+
cashValue?: number;
|
|
84
|
+
fundCollectionType?: string | null;
|
|
85
|
+
additionalFundRate?: string | null;
|
|
86
|
+
qualifiedFundRate?: string | null;
|
|
87
|
+
fundNominalAmount?: number;
|
|
88
|
+
fundableAmount?: number;
|
|
89
|
+
overFunding?: string;
|
|
90
|
+
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;
|
|
95
|
+
};
|
|
96
|
+
projectSectionRelations?: Array<{
|
|
97
|
+
projectId?: string;
|
|
98
|
+
sectionId?: string;
|
|
99
|
+
sectionRelationId?: string;
|
|
100
|
+
sectionName?: string | null;
|
|
101
|
+
sectionRelationValue?: string | null;
|
|
102
|
+
order?: number;
|
|
103
|
+
}> | null;
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
export type status = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
107
|
+
|
|
108
|
+
export type type = 0 | 1 | 2 | 3;
|
|
109
|
+
|
|
110
|
+
export type UpwithCrowd_ProjectService_Projects_ProjectDto = {
|
|
111
|
+
id?: string;
|
|
112
|
+
creationTime?: string;
|
|
113
|
+
creatorId?: string | null;
|
|
114
|
+
lastModificationTime?: string | null;
|
|
115
|
+
lastModifierId?: string | null;
|
|
116
|
+
isDeleted?: boolean;
|
|
117
|
+
deleterId?: string | null;
|
|
118
|
+
deletionTime?: string | null;
|
|
119
|
+
projectName?: string | null;
|
|
120
|
+
projectDefinition?: string | null;
|
|
121
|
+
cashValue?: number;
|
|
122
|
+
fundCollectionType?: string | null;
|
|
123
|
+
additionalFundRate?: string | null;
|
|
124
|
+
qualifiedFundRate?: string | null;
|
|
125
|
+
fundNominalAmount?: number;
|
|
126
|
+
fundableAmount?: number;
|
|
127
|
+
overFunding?: string;
|
|
128
|
+
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;
|
|
133
|
+
};
|
|
134
|
+
|
|
135
|
+
export type UpwithCrowd_ProjectService_Projects_ProjectStatusCode = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
136
|
+
|
|
137
|
+
export type UpwithCrowd_ProjectService_Projects_ProjectTypeCode = 0 | 1 | 2 | 3;
|
|
138
|
+
|
|
139
|
+
export type UpwithCrowd_ProjectService_ProjectsDto_CreateProjectDto = {
|
|
140
|
+
projectName?: string | null;
|
|
141
|
+
projectDefinition?: string | null;
|
|
142
|
+
cashValue?: number;
|
|
143
|
+
additionalFundRate?: string | null;
|
|
144
|
+
qualifiedFundRate?: string | null;
|
|
145
|
+
fundNominalAmount?: number;
|
|
146
|
+
fundableAmount?: number;
|
|
147
|
+
overFunding?: string;
|
|
148
|
+
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;
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
export type UpwithCrowd_ProjectService_ProjectsDto_UpdateProjectDto = {
|
|
157
|
+
id?: string;
|
|
158
|
+
projectName?: string | null;
|
|
159
|
+
projectDefinition?: string | null;
|
|
160
|
+
cashValue?: number;
|
|
161
|
+
additionalFundRate?: string | null;
|
|
162
|
+
qualifiedFundRate?: string | null;
|
|
163
|
+
fundNominalAmount?: number;
|
|
164
|
+
fundableAmount?: number;
|
|
165
|
+
overFunding?: string;
|
|
166
|
+
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;
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
|
|
175
|
+
items?: Array<{
|
|
176
|
+
id?: string;
|
|
177
|
+
creationTime?: string;
|
|
178
|
+
creatorId?: string | null;
|
|
179
|
+
lastModificationTime?: string | null;
|
|
180
|
+
lastModifierId?: string | null;
|
|
181
|
+
isDeleted?: boolean;
|
|
182
|
+
deleterId?: string | null;
|
|
183
|
+
deletionTime?: string | null;
|
|
184
|
+
projectName?: string | null;
|
|
185
|
+
projectDefinition?: string | null;
|
|
186
|
+
cashValue?: number;
|
|
187
|
+
fundCollectionType?: string | null;
|
|
188
|
+
additionalFundRate?: string | null;
|
|
189
|
+
qualifiedFundRate?: string | null;
|
|
190
|
+
fundNominalAmount?: number;
|
|
191
|
+
fundableAmount?: number;
|
|
192
|
+
overFunding?: string;
|
|
193
|
+
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;
|
|
198
|
+
}> | null;
|
|
199
|
+
totalCount?: number;
|
|
200
|
+
};
|
|
201
|
+
|
|
3
202
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
|
|
4
203
|
grantedPolicies?: {
|
|
5
204
|
[key: string]: (boolean);
|
|
@@ -695,14 +894,6 @@ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
|
|
|
695
894
|
isAvailable?: boolean;
|
|
696
895
|
};
|
|
697
896
|
|
|
698
|
-
export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto = {
|
|
699
|
-
success?: boolean;
|
|
700
|
-
tenantId?: string | null;
|
|
701
|
-
name?: string | null;
|
|
702
|
-
normalizedName?: string | null;
|
|
703
|
-
isActive?: boolean;
|
|
704
|
-
};
|
|
705
|
-
|
|
706
897
|
export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
|
|
707
898
|
isEnabled?: boolean;
|
|
708
899
|
};
|
|
@@ -1417,28 +1608,413 @@ export type GetApiAbpApplicationLocalizationResponse = {
|
|
|
1417
1608
|
} | null;
|
|
1418
1609
|
};
|
|
1419
1610
|
|
|
1420
|
-
export type
|
|
1421
|
-
|
|
1611
|
+
export type PostApiProjectServiceProjectsData = {
|
|
1612
|
+
requestBody?: {
|
|
1613
|
+
projectName?: string | null;
|
|
1614
|
+
projectDefinition?: string | null;
|
|
1615
|
+
cashValue?: number;
|
|
1616
|
+
additionalFundRate?: string | null;
|
|
1617
|
+
qualifiedFundRate?: string | null;
|
|
1618
|
+
fundNominalAmount?: number;
|
|
1619
|
+
fundableAmount?: number;
|
|
1620
|
+
overFunding?: string;
|
|
1621
|
+
privilege?: string | null;
|
|
1622
|
+
projectStartDate?: string;
|
|
1623
|
+
projectEndDate?: string;
|
|
1624
|
+
fundCollectionType?: string | null;
|
|
1625
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1626
|
+
type?: 0 | 1 | 2 | 3;
|
|
1627
|
+
};
|
|
1422
1628
|
};
|
|
1423
1629
|
|
|
1424
|
-
export type
|
|
1425
|
-
|
|
1426
|
-
|
|
1630
|
+
export type PostApiProjectServiceProjectsResponse = {
|
|
1631
|
+
id?: string;
|
|
1632
|
+
creationTime?: string;
|
|
1633
|
+
creatorId?: string | null;
|
|
1634
|
+
lastModificationTime?: string | null;
|
|
1635
|
+
lastModifierId?: string | null;
|
|
1636
|
+
isDeleted?: boolean;
|
|
1637
|
+
deleterId?: string | null;
|
|
1638
|
+
deletionTime?: string | null;
|
|
1639
|
+
projectName?: string | null;
|
|
1640
|
+
projectDefinition?: string | null;
|
|
1641
|
+
cashValue?: number;
|
|
1642
|
+
fundCollectionType?: string | null;
|
|
1643
|
+
additionalFundRate?: string | null;
|
|
1644
|
+
qualifiedFundRate?: string | null;
|
|
1645
|
+
fundNominalAmount?: number;
|
|
1646
|
+
fundableAmount?: number;
|
|
1647
|
+
overFunding?: string;
|
|
1648
|
+
privilege?: string | null;
|
|
1649
|
+
projectStartDate?: string;
|
|
1650
|
+
projectEndDate?: string;
|
|
1651
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1652
|
+
type?: 0 | 1 | 2 | 3;
|
|
1653
|
+
};
|
|
1654
|
+
|
|
1655
|
+
export type GetApiProjectServiceProjectsData = {
|
|
1656
|
+
maxResultCount?: number;
|
|
1657
|
+
skipCount?: number;
|
|
1658
|
+
sorting?: string;
|
|
1659
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1660
|
+
type?: 0 | 1 | 2 | 3;
|
|
1661
|
+
};
|
|
1662
|
+
|
|
1663
|
+
export type GetApiProjectServiceProjectsResponse = {
|
|
1664
|
+
items?: Array<{
|
|
1665
|
+
id?: string;
|
|
1666
|
+
creationTime?: string;
|
|
1667
|
+
creatorId?: string | null;
|
|
1668
|
+
lastModificationTime?: string | null;
|
|
1669
|
+
lastModifierId?: string | null;
|
|
1670
|
+
isDeleted?: boolean;
|
|
1671
|
+
deleterId?: string | null;
|
|
1672
|
+
deletionTime?: string | null;
|
|
1673
|
+
projectName?: string | null;
|
|
1674
|
+
projectDefinition?: string | null;
|
|
1675
|
+
cashValue?: number;
|
|
1676
|
+
fundCollectionType?: string | null;
|
|
1677
|
+
additionalFundRate?: string | null;
|
|
1678
|
+
qualifiedFundRate?: string | null;
|
|
1679
|
+
fundNominalAmount?: number;
|
|
1680
|
+
fundableAmount?: number;
|
|
1681
|
+
overFunding?: string;
|
|
1682
|
+
privilege?: string | null;
|
|
1683
|
+
projectStartDate?: string;
|
|
1684
|
+
projectEndDate?: string;
|
|
1685
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1686
|
+
type?: 0 | 1 | 2 | 3;
|
|
1687
|
+
}> | null;
|
|
1688
|
+
totalCount?: number;
|
|
1689
|
+
};
|
|
1690
|
+
|
|
1691
|
+
export type DeleteApiProjectServiceProjectsByIdData = {
|
|
1692
|
+
id: string;
|
|
1693
|
+
};
|
|
1694
|
+
|
|
1695
|
+
export type DeleteApiProjectServiceProjectsByIdResponse = unknown;
|
|
1696
|
+
|
|
1697
|
+
export type GetApiProjectServiceProjectsByIdData = {
|
|
1698
|
+
id: string;
|
|
1699
|
+
};
|
|
1700
|
+
|
|
1701
|
+
export type GetApiProjectServiceProjectsByIdResponse = {
|
|
1702
|
+
id?: string;
|
|
1703
|
+
creationTime?: string;
|
|
1704
|
+
creatorId?: string | null;
|
|
1705
|
+
lastModificationTime?: string | null;
|
|
1706
|
+
lastModifierId?: string | null;
|
|
1707
|
+
isDeleted?: boolean;
|
|
1708
|
+
deleterId?: string | null;
|
|
1709
|
+
deletionTime?: string | null;
|
|
1710
|
+
projectName?: string | null;
|
|
1711
|
+
projectDefinition?: string | null;
|
|
1712
|
+
cashValue?: number;
|
|
1713
|
+
fundCollectionType?: string | null;
|
|
1714
|
+
additionalFundRate?: string | null;
|
|
1715
|
+
qualifiedFundRate?: string | null;
|
|
1716
|
+
fundNominalAmount?: number;
|
|
1717
|
+
fundableAmount?: number;
|
|
1718
|
+
overFunding?: string;
|
|
1719
|
+
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;
|
|
1724
|
+
};
|
|
1725
|
+
|
|
1726
|
+
export type PutApiProjectServiceProjectsByIdData = {
|
|
1727
|
+
id: string;
|
|
1728
|
+
requestBody?: {
|
|
1729
|
+
id?: string;
|
|
1730
|
+
projectName?: string | null;
|
|
1731
|
+
projectDefinition?: string | null;
|
|
1732
|
+
cashValue?: number;
|
|
1733
|
+
additionalFundRate?: string | null;
|
|
1734
|
+
qualifiedFundRate?: string | null;
|
|
1735
|
+
fundNominalAmount?: number;
|
|
1736
|
+
fundableAmount?: number;
|
|
1737
|
+
overFunding?: string;
|
|
1738
|
+
privilege?: string | null;
|
|
1739
|
+
projectStartDate?: string;
|
|
1740
|
+
projectEndDate?: string;
|
|
1741
|
+
fundCollectionType?: string | null;
|
|
1742
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1743
|
+
type?: 0 | 1 | 2 | 3;
|
|
1744
|
+
};
|
|
1745
|
+
};
|
|
1746
|
+
|
|
1747
|
+
export type PutApiProjectServiceProjectsByIdResponse = {
|
|
1748
|
+
id?: string;
|
|
1749
|
+
creationTime?: string;
|
|
1750
|
+
creatorId?: string | null;
|
|
1751
|
+
lastModificationTime?: string | null;
|
|
1752
|
+
lastModifierId?: string | null;
|
|
1753
|
+
isDeleted?: boolean;
|
|
1754
|
+
deleterId?: string | null;
|
|
1755
|
+
deletionTime?: string | null;
|
|
1756
|
+
projectName?: string | null;
|
|
1757
|
+
projectDefinition?: string | null;
|
|
1758
|
+
cashValue?: number;
|
|
1759
|
+
fundCollectionType?: string | null;
|
|
1760
|
+
additionalFundRate?: string | null;
|
|
1761
|
+
qualifiedFundRate?: string | null;
|
|
1762
|
+
fundNominalAmount?: number;
|
|
1763
|
+
fundableAmount?: number;
|
|
1764
|
+
overFunding?: string;
|
|
1765
|
+
privilege?: string | null;
|
|
1766
|
+
projectStartDate?: string;
|
|
1767
|
+
projectEndDate?: string;
|
|
1768
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1769
|
+
type?: 0 | 1 | 2 | 3;
|
|
1770
|
+
};
|
|
1771
|
+
|
|
1772
|
+
export type GetApiProjectServiceProjectsDetailByIdData = {
|
|
1773
|
+
id: string;
|
|
1774
|
+
};
|
|
1775
|
+
|
|
1776
|
+
export type GetApiProjectServiceProjectsDetailByIdResponse = {
|
|
1777
|
+
project?: {
|
|
1778
|
+
id?: string;
|
|
1779
|
+
creationTime?: string;
|
|
1780
|
+
creatorId?: string | null;
|
|
1781
|
+
lastModificationTime?: string | null;
|
|
1782
|
+
lastModifierId?: string | null;
|
|
1783
|
+
isDeleted?: boolean;
|
|
1784
|
+
deleterId?: string | null;
|
|
1785
|
+
deletionTime?: string | null;
|
|
1786
|
+
projectName?: string | null;
|
|
1787
|
+
projectDefinition?: string | null;
|
|
1788
|
+
cashValue?: number;
|
|
1789
|
+
fundCollectionType?: string | null;
|
|
1790
|
+
additionalFundRate?: string | null;
|
|
1791
|
+
qualifiedFundRate?: string | null;
|
|
1792
|
+
fundNominalAmount?: number;
|
|
1793
|
+
fundableAmount?: number;
|
|
1794
|
+
overFunding?: string;
|
|
1795
|
+
privilege?: string | null;
|
|
1796
|
+
projectStartDate?: string;
|
|
1797
|
+
projectEndDate?: string;
|
|
1798
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1799
|
+
type?: 0 | 1 | 2 | 3;
|
|
1800
|
+
};
|
|
1801
|
+
projectSectionRelations?: Array<{
|
|
1802
|
+
projectId?: string;
|
|
1803
|
+
sectionId?: string;
|
|
1804
|
+
sectionRelationId?: string;
|
|
1805
|
+
sectionName?: string | null;
|
|
1806
|
+
sectionRelationValue?: string | null;
|
|
1807
|
+
order?: number;
|
|
1808
|
+
}> | null;
|
|
1809
|
+
};
|
|
1810
|
+
|
|
1811
|
+
export type GetApiProjectServiceProjectsSectionListByProjectIdData = {
|
|
1812
|
+
projectId: string;
|
|
1813
|
+
};
|
|
1814
|
+
|
|
1815
|
+
export type GetApiProjectServiceProjectsSectionListByProjectIdResponse = Array<{
|
|
1816
|
+
id?: string;
|
|
1817
|
+
creationTime?: string;
|
|
1818
|
+
creatorId?: string | null;
|
|
1819
|
+
lastModificationTime?: string | null;
|
|
1820
|
+
lastModifierId?: string | null;
|
|
1821
|
+
isDeleted?: boolean;
|
|
1822
|
+
deleterId?: string | null;
|
|
1823
|
+
deletionTime?: string | null;
|
|
1824
|
+
name?: string | null;
|
|
1825
|
+
isDefault?: boolean;
|
|
1826
|
+
isOptional?: boolean;
|
|
1827
|
+
projectId?: string | null;
|
|
1828
|
+
}>;
|
|
1829
|
+
|
|
1830
|
+
export type GetApiProjectServiceProjectsMyProjectsResponse = Array<{
|
|
1831
|
+
id?: string;
|
|
1832
|
+
creationTime?: string;
|
|
1833
|
+
creatorId?: string | null;
|
|
1834
|
+
lastModificationTime?: string | null;
|
|
1835
|
+
lastModifierId?: string | null;
|
|
1836
|
+
isDeleted?: boolean;
|
|
1837
|
+
deleterId?: string | null;
|
|
1838
|
+
deletionTime?: string | null;
|
|
1839
|
+
projectName?: string | null;
|
|
1840
|
+
projectDefinition?: string | null;
|
|
1841
|
+
cashValue?: number;
|
|
1842
|
+
fundCollectionType?: string | null;
|
|
1843
|
+
additionalFundRate?: string | null;
|
|
1844
|
+
qualifiedFundRate?: string | null;
|
|
1845
|
+
fundNominalAmount?: number;
|
|
1846
|
+
fundableAmount?: number;
|
|
1847
|
+
overFunding?: string;
|
|
1848
|
+
privilege?: string | null;
|
|
1849
|
+
projectStartDate?: string;
|
|
1850
|
+
projectEndDate?: string;
|
|
1851
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1852
|
+
type?: 0 | 1 | 2 | 3;
|
|
1853
|
+
}>;
|
|
1854
|
+
|
|
1855
|
+
export type PostApiProjectServiceProjectsSectionData = {
|
|
1856
|
+
requestBody?: {
|
|
1857
|
+
projectId?: string;
|
|
1858
|
+
name?: string | null;
|
|
1859
|
+
isDefault?: boolean;
|
|
1860
|
+
isOptional?: boolean;
|
|
1861
|
+
};
|
|
1862
|
+
};
|
|
1863
|
+
|
|
1864
|
+
export type PostApiProjectServiceProjectsSectionResponse = {
|
|
1865
|
+
id?: string;
|
|
1866
|
+
creationTime?: string;
|
|
1867
|
+
creatorId?: string | null;
|
|
1868
|
+
lastModificationTime?: string | null;
|
|
1869
|
+
lastModifierId?: string | null;
|
|
1870
|
+
isDeleted?: boolean;
|
|
1871
|
+
deleterId?: string | null;
|
|
1872
|
+
deletionTime?: string | null;
|
|
1427
1873
|
name?: string | null;
|
|
1428
|
-
|
|
1429
|
-
|
|
1874
|
+
isDefault?: boolean;
|
|
1875
|
+
isOptional?: boolean;
|
|
1876
|
+
projectId?: string | null;
|
|
1877
|
+
};
|
|
1878
|
+
|
|
1879
|
+
export type PostApiProjectServiceProjectsSectionRelationData = {
|
|
1880
|
+
requestBody?: {
|
|
1881
|
+
projectId?: string;
|
|
1882
|
+
projectSectionId?: string;
|
|
1883
|
+
value?: string | null;
|
|
1884
|
+
order?: number;
|
|
1885
|
+
};
|
|
1886
|
+
};
|
|
1887
|
+
|
|
1888
|
+
export type PostApiProjectServiceProjectsSectionRelationResponse = {
|
|
1889
|
+
id?: string;
|
|
1890
|
+
creationTime?: string;
|
|
1891
|
+
creatorId?: string | null;
|
|
1892
|
+
lastModificationTime?: string | null;
|
|
1893
|
+
lastModifierId?: string | null;
|
|
1894
|
+
isDeleted?: boolean;
|
|
1895
|
+
deleterId?: string | null;
|
|
1896
|
+
deletionTime?: string | null;
|
|
1897
|
+
projectId?: string;
|
|
1898
|
+
projectSectionId?: string;
|
|
1899
|
+
value?: string | null;
|
|
1900
|
+
order?: number;
|
|
1430
1901
|
};
|
|
1431
1902
|
|
|
1432
|
-
export type
|
|
1903
|
+
export type PutApiProjectServiceProjectsSectionByIdData = {
|
|
1433
1904
|
id: string;
|
|
1905
|
+
requestBody?: {
|
|
1906
|
+
id: string;
|
|
1907
|
+
name?: string | null;
|
|
1908
|
+
isDefault?: boolean | null;
|
|
1909
|
+
isOptional?: boolean | null;
|
|
1910
|
+
};
|
|
1434
1911
|
};
|
|
1435
1912
|
|
|
1436
|
-
export type
|
|
1437
|
-
|
|
1438
|
-
|
|
1913
|
+
export type PutApiProjectServiceProjectsSectionByIdResponse = {
|
|
1914
|
+
id?: string;
|
|
1915
|
+
creationTime?: string;
|
|
1916
|
+
creatorId?: string | null;
|
|
1917
|
+
lastModificationTime?: string | null;
|
|
1918
|
+
lastModifierId?: string | null;
|
|
1919
|
+
isDeleted?: boolean;
|
|
1920
|
+
deleterId?: string | null;
|
|
1921
|
+
deletionTime?: string | null;
|
|
1439
1922
|
name?: string | null;
|
|
1440
|
-
|
|
1441
|
-
|
|
1923
|
+
isDefault?: boolean;
|
|
1924
|
+
isOptional?: boolean;
|
|
1925
|
+
projectId?: string | null;
|
|
1926
|
+
};
|
|
1927
|
+
|
|
1928
|
+
export type PutApiProjectServiceProjectsSectionRelationByIdData = {
|
|
1929
|
+
id: string;
|
|
1930
|
+
requestBody?: {
|
|
1931
|
+
id?: string;
|
|
1932
|
+
projectId?: string;
|
|
1933
|
+
projectSectionId?: string;
|
|
1934
|
+
value?: string | null;
|
|
1935
|
+
order?: number;
|
|
1936
|
+
};
|
|
1937
|
+
};
|
|
1938
|
+
|
|
1939
|
+
export type PutApiProjectServiceProjectsSectionRelationByIdResponse = {
|
|
1940
|
+
id?: string;
|
|
1941
|
+
creationTime?: string;
|
|
1942
|
+
creatorId?: string | null;
|
|
1943
|
+
lastModificationTime?: string | null;
|
|
1944
|
+
lastModifierId?: string | null;
|
|
1945
|
+
isDeleted?: boolean;
|
|
1946
|
+
deleterId?: string | null;
|
|
1947
|
+
deletionTime?: string | null;
|
|
1948
|
+
projectId?: string;
|
|
1949
|
+
projectSectionId?: string;
|
|
1950
|
+
value?: string | null;
|
|
1951
|
+
order?: number;
|
|
1952
|
+
};
|
|
1953
|
+
|
|
1954
|
+
export type PutApiProjectServiceProjectsStatusByProjectIdData = {
|
|
1955
|
+
projectId: string;
|
|
1956
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1957
|
+
};
|
|
1958
|
+
|
|
1959
|
+
export type PutApiProjectServiceProjectsStatusByProjectIdResponse = {
|
|
1960
|
+
id?: string;
|
|
1961
|
+
creationTime?: string;
|
|
1962
|
+
creatorId?: string | null;
|
|
1963
|
+
lastModificationTime?: string | null;
|
|
1964
|
+
lastModifierId?: string | null;
|
|
1965
|
+
isDeleted?: boolean;
|
|
1966
|
+
deleterId?: string | null;
|
|
1967
|
+
deletionTime?: string | null;
|
|
1968
|
+
projectName?: string | null;
|
|
1969
|
+
projectDefinition?: string | null;
|
|
1970
|
+
cashValue?: number;
|
|
1971
|
+
fundCollectionType?: string | null;
|
|
1972
|
+
additionalFundRate?: string | null;
|
|
1973
|
+
qualifiedFundRate?: string | null;
|
|
1974
|
+
fundNominalAmount?: number;
|
|
1975
|
+
fundableAmount?: number;
|
|
1976
|
+
overFunding?: string;
|
|
1977
|
+
privilege?: string | null;
|
|
1978
|
+
projectStartDate?: string;
|
|
1979
|
+
projectEndDate?: string;
|
|
1980
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1981
|
+
type?: 0 | 1 | 2 | 3;
|
|
1982
|
+
};
|
|
1983
|
+
|
|
1984
|
+
export type GetApiProjectServicePublicProjectsData = {
|
|
1985
|
+
maxResultCount?: number;
|
|
1986
|
+
skipCount?: number;
|
|
1987
|
+
sorting?: string;
|
|
1988
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1989
|
+
type?: 0 | 1 | 2 | 3;
|
|
1990
|
+
};
|
|
1991
|
+
|
|
1992
|
+
export type GetApiProjectServicePublicProjectsResponse = {
|
|
1993
|
+
items?: Array<{
|
|
1994
|
+
id?: string;
|
|
1995
|
+
creationTime?: string;
|
|
1996
|
+
creatorId?: string | null;
|
|
1997
|
+
lastModificationTime?: string | null;
|
|
1998
|
+
lastModifierId?: string | null;
|
|
1999
|
+
isDeleted?: boolean;
|
|
2000
|
+
deleterId?: string | null;
|
|
2001
|
+
deletionTime?: string | null;
|
|
2002
|
+
projectName?: string | null;
|
|
2003
|
+
projectDefinition?: string | null;
|
|
2004
|
+
cashValue?: number;
|
|
2005
|
+
fundCollectionType?: string | null;
|
|
2006
|
+
additionalFundRate?: string | null;
|
|
2007
|
+
qualifiedFundRate?: string | null;
|
|
2008
|
+
fundNominalAmount?: number;
|
|
2009
|
+
fundableAmount?: number;
|
|
2010
|
+
overFunding?: string;
|
|
2011
|
+
privilege?: string | null;
|
|
2012
|
+
projectStartDate?: string;
|
|
2013
|
+
projectEndDate?: string;
|
|
2014
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
2015
|
+
type?: 0 | 1 | 2 | 3;
|
|
2016
|
+
}> | null;
|
|
2017
|
+
totalCount?: number;
|
|
1442
2018
|
};
|
|
1443
2019
|
|
|
1444
2020
|
export type $OpenApiTs = {
|
|
@@ -2070,19 +2646,36 @@ export type $OpenApiTs = {
|
|
|
2070
2646
|
};
|
|
2071
2647
|
};
|
|
2072
2648
|
};
|
|
2073
|
-
'/api/
|
|
2074
|
-
|
|
2075
|
-
req:
|
|
2649
|
+
'/api/project-service/projects': {
|
|
2650
|
+
post: {
|
|
2651
|
+
req: PostApiProjectServiceProjectsData;
|
|
2076
2652
|
res: {
|
|
2077
2653
|
/**
|
|
2078
2654
|
* Success
|
|
2079
2655
|
*/
|
|
2080
2656
|
200: {
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2657
|
+
id?: string;
|
|
2658
|
+
creationTime?: string;
|
|
2659
|
+
creatorId?: string | null;
|
|
2660
|
+
lastModificationTime?: string | null;
|
|
2661
|
+
lastModifierId?: string | null;
|
|
2662
|
+
isDeleted?: boolean;
|
|
2663
|
+
deleterId?: string | null;
|
|
2664
|
+
deletionTime?: string | null;
|
|
2665
|
+
projectName?: string | null;
|
|
2666
|
+
projectDefinition?: string | null;
|
|
2667
|
+
cashValue?: number;
|
|
2668
|
+
fundCollectionType?: string | null;
|
|
2669
|
+
additionalFundRate?: string | null;
|
|
2670
|
+
qualifiedFundRate?: string | null;
|
|
2671
|
+
fundNominalAmount?: number;
|
|
2672
|
+
fundableAmount?: number;
|
|
2673
|
+
overFunding?: string;
|
|
2674
|
+
privilege?: string | null;
|
|
2675
|
+
projectStartDate?: string;
|
|
2676
|
+
projectEndDate?: string;
|
|
2677
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
2678
|
+
type?: 0 | 1 | 2 | 3;
|
|
2086
2679
|
};
|
|
2087
2680
|
/**
|
|
2088
2681
|
* Bad Request
|
|
@@ -2188,20 +2781,1605 @@ export type $OpenApiTs = {
|
|
|
2188
2781
|
};
|
|
2189
2782
|
};
|
|
2190
2783
|
};
|
|
2191
|
-
};
|
|
2192
|
-
'/api/abp/multi-tenancy/tenants/by-id/{id}': {
|
|
2193
2784
|
get: {
|
|
2194
|
-
req:
|
|
2785
|
+
req: GetApiProjectServiceProjectsData;
|
|
2195
2786
|
res: {
|
|
2196
2787
|
/**
|
|
2197
2788
|
* Success
|
|
2198
2789
|
*/
|
|
2199
2790
|
200: {
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2791
|
+
items?: Array<{
|
|
2792
|
+
id?: string;
|
|
2793
|
+
creationTime?: string;
|
|
2794
|
+
creatorId?: string | null;
|
|
2795
|
+
lastModificationTime?: string | null;
|
|
2796
|
+
lastModifierId?: string | null;
|
|
2797
|
+
isDeleted?: boolean;
|
|
2798
|
+
deleterId?: string | null;
|
|
2799
|
+
deletionTime?: string | null;
|
|
2800
|
+
projectName?: string | null;
|
|
2801
|
+
projectDefinition?: string | null;
|
|
2802
|
+
cashValue?: number;
|
|
2803
|
+
fundCollectionType?: string | null;
|
|
2804
|
+
additionalFundRate?: string | null;
|
|
2805
|
+
qualifiedFundRate?: string | null;
|
|
2806
|
+
fundNominalAmount?: number;
|
|
2807
|
+
fundableAmount?: number;
|
|
2808
|
+
overFunding?: string;
|
|
2809
|
+
privilege?: string | null;
|
|
2810
|
+
projectStartDate?: string;
|
|
2811
|
+
projectEndDate?: string;
|
|
2812
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
2813
|
+
type?: 0 | 1 | 2 | 3;
|
|
2814
|
+
}> | null;
|
|
2815
|
+
totalCount?: number;
|
|
2816
|
+
};
|
|
2817
|
+
/**
|
|
2818
|
+
* Bad Request
|
|
2819
|
+
*/
|
|
2820
|
+
400: {
|
|
2821
|
+
error?: {
|
|
2822
|
+
code?: string | null;
|
|
2823
|
+
message?: string | null;
|
|
2824
|
+
details?: string | null;
|
|
2825
|
+
data?: {
|
|
2826
|
+
[key: string]: unknown;
|
|
2827
|
+
} | null;
|
|
2828
|
+
validationErrors?: Array<{
|
|
2829
|
+
message?: string | null;
|
|
2830
|
+
members?: Array<(string)> | null;
|
|
2831
|
+
}> | null;
|
|
2832
|
+
};
|
|
2833
|
+
};
|
|
2834
|
+
/**
|
|
2835
|
+
* Unauthorized
|
|
2836
|
+
*/
|
|
2837
|
+
401: {
|
|
2838
|
+
error?: {
|
|
2839
|
+
code?: string | null;
|
|
2840
|
+
message?: string | null;
|
|
2841
|
+
details?: string | null;
|
|
2842
|
+
data?: {
|
|
2843
|
+
[key: string]: unknown;
|
|
2844
|
+
} | null;
|
|
2845
|
+
validationErrors?: Array<{
|
|
2846
|
+
message?: string | null;
|
|
2847
|
+
members?: Array<(string)> | null;
|
|
2848
|
+
}> | null;
|
|
2849
|
+
};
|
|
2850
|
+
};
|
|
2851
|
+
/**
|
|
2852
|
+
* Forbidden
|
|
2853
|
+
*/
|
|
2854
|
+
403: {
|
|
2855
|
+
error?: {
|
|
2856
|
+
code?: string | null;
|
|
2857
|
+
message?: string | null;
|
|
2858
|
+
details?: string | null;
|
|
2859
|
+
data?: {
|
|
2860
|
+
[key: string]: unknown;
|
|
2861
|
+
} | null;
|
|
2862
|
+
validationErrors?: Array<{
|
|
2863
|
+
message?: string | null;
|
|
2864
|
+
members?: Array<(string)> | null;
|
|
2865
|
+
}> | null;
|
|
2866
|
+
};
|
|
2867
|
+
};
|
|
2868
|
+
/**
|
|
2869
|
+
* Not Found
|
|
2870
|
+
*/
|
|
2871
|
+
404: {
|
|
2872
|
+
error?: {
|
|
2873
|
+
code?: string | null;
|
|
2874
|
+
message?: string | null;
|
|
2875
|
+
details?: string | null;
|
|
2876
|
+
data?: {
|
|
2877
|
+
[key: string]: unknown;
|
|
2878
|
+
} | null;
|
|
2879
|
+
validationErrors?: Array<{
|
|
2880
|
+
message?: string | null;
|
|
2881
|
+
members?: Array<(string)> | null;
|
|
2882
|
+
}> | null;
|
|
2883
|
+
};
|
|
2884
|
+
};
|
|
2885
|
+
/**
|
|
2886
|
+
* Server Error
|
|
2887
|
+
*/
|
|
2888
|
+
500: {
|
|
2889
|
+
error?: {
|
|
2890
|
+
code?: string | null;
|
|
2891
|
+
message?: string | null;
|
|
2892
|
+
details?: string | null;
|
|
2893
|
+
data?: {
|
|
2894
|
+
[key: string]: unknown;
|
|
2895
|
+
} | null;
|
|
2896
|
+
validationErrors?: Array<{
|
|
2897
|
+
message?: string | null;
|
|
2898
|
+
members?: Array<(string)> | null;
|
|
2899
|
+
}> | null;
|
|
2900
|
+
};
|
|
2901
|
+
};
|
|
2902
|
+
/**
|
|
2903
|
+
* Server Error
|
|
2904
|
+
*/
|
|
2905
|
+
501: {
|
|
2906
|
+
error?: {
|
|
2907
|
+
code?: string | null;
|
|
2908
|
+
message?: string | null;
|
|
2909
|
+
details?: string | null;
|
|
2910
|
+
data?: {
|
|
2911
|
+
[key: string]: unknown;
|
|
2912
|
+
} | null;
|
|
2913
|
+
validationErrors?: Array<{
|
|
2914
|
+
message?: string | null;
|
|
2915
|
+
members?: Array<(string)> | null;
|
|
2916
|
+
}> | null;
|
|
2917
|
+
};
|
|
2918
|
+
};
|
|
2919
|
+
};
|
|
2920
|
+
};
|
|
2921
|
+
};
|
|
2922
|
+
'/api/project-service/projects/{id}': {
|
|
2923
|
+
delete: {
|
|
2924
|
+
req: DeleteApiProjectServiceProjectsByIdData;
|
|
2925
|
+
res: {
|
|
2926
|
+
/**
|
|
2927
|
+
* Success
|
|
2928
|
+
*/
|
|
2929
|
+
200: unknown;
|
|
2930
|
+
/**
|
|
2931
|
+
* Bad Request
|
|
2932
|
+
*/
|
|
2933
|
+
400: {
|
|
2934
|
+
error?: {
|
|
2935
|
+
code?: string | null;
|
|
2936
|
+
message?: string | null;
|
|
2937
|
+
details?: string | null;
|
|
2938
|
+
data?: {
|
|
2939
|
+
[key: string]: unknown;
|
|
2940
|
+
} | null;
|
|
2941
|
+
validationErrors?: Array<{
|
|
2942
|
+
message?: string | null;
|
|
2943
|
+
members?: Array<(string)> | null;
|
|
2944
|
+
}> | null;
|
|
2945
|
+
};
|
|
2946
|
+
};
|
|
2947
|
+
/**
|
|
2948
|
+
* Unauthorized
|
|
2949
|
+
*/
|
|
2950
|
+
401: {
|
|
2951
|
+
error?: {
|
|
2952
|
+
code?: string | null;
|
|
2953
|
+
message?: string | null;
|
|
2954
|
+
details?: string | null;
|
|
2955
|
+
data?: {
|
|
2956
|
+
[key: string]: unknown;
|
|
2957
|
+
} | null;
|
|
2958
|
+
validationErrors?: Array<{
|
|
2959
|
+
message?: string | null;
|
|
2960
|
+
members?: Array<(string)> | null;
|
|
2961
|
+
}> | null;
|
|
2962
|
+
};
|
|
2963
|
+
};
|
|
2964
|
+
/**
|
|
2965
|
+
* Forbidden
|
|
2966
|
+
*/
|
|
2967
|
+
403: {
|
|
2968
|
+
error?: {
|
|
2969
|
+
code?: string | null;
|
|
2970
|
+
message?: string | null;
|
|
2971
|
+
details?: string | null;
|
|
2972
|
+
data?: {
|
|
2973
|
+
[key: string]: unknown;
|
|
2974
|
+
} | null;
|
|
2975
|
+
validationErrors?: Array<{
|
|
2976
|
+
message?: string | null;
|
|
2977
|
+
members?: Array<(string)> | null;
|
|
2978
|
+
}> | null;
|
|
2979
|
+
};
|
|
2980
|
+
};
|
|
2981
|
+
/**
|
|
2982
|
+
* Not Found
|
|
2983
|
+
*/
|
|
2984
|
+
404: {
|
|
2985
|
+
error?: {
|
|
2986
|
+
code?: string | null;
|
|
2987
|
+
message?: string | null;
|
|
2988
|
+
details?: string | null;
|
|
2989
|
+
data?: {
|
|
2990
|
+
[key: string]: unknown;
|
|
2991
|
+
} | null;
|
|
2992
|
+
validationErrors?: Array<{
|
|
2993
|
+
message?: string | null;
|
|
2994
|
+
members?: Array<(string)> | null;
|
|
2995
|
+
}> | null;
|
|
2996
|
+
};
|
|
2997
|
+
};
|
|
2998
|
+
/**
|
|
2999
|
+
* Server Error
|
|
3000
|
+
*/
|
|
3001
|
+
500: {
|
|
3002
|
+
error?: {
|
|
3003
|
+
code?: string | null;
|
|
3004
|
+
message?: string | null;
|
|
3005
|
+
details?: string | null;
|
|
3006
|
+
data?: {
|
|
3007
|
+
[key: string]: unknown;
|
|
3008
|
+
} | null;
|
|
3009
|
+
validationErrors?: Array<{
|
|
3010
|
+
message?: string | null;
|
|
3011
|
+
members?: Array<(string)> | null;
|
|
3012
|
+
}> | null;
|
|
3013
|
+
};
|
|
3014
|
+
};
|
|
3015
|
+
/**
|
|
3016
|
+
* Server Error
|
|
3017
|
+
*/
|
|
3018
|
+
501: {
|
|
3019
|
+
error?: {
|
|
3020
|
+
code?: string | null;
|
|
3021
|
+
message?: string | null;
|
|
3022
|
+
details?: string | null;
|
|
3023
|
+
data?: {
|
|
3024
|
+
[key: string]: unknown;
|
|
3025
|
+
} | null;
|
|
3026
|
+
validationErrors?: Array<{
|
|
3027
|
+
message?: string | null;
|
|
3028
|
+
members?: Array<(string)> | null;
|
|
3029
|
+
}> | null;
|
|
3030
|
+
};
|
|
3031
|
+
};
|
|
3032
|
+
};
|
|
3033
|
+
};
|
|
3034
|
+
get: {
|
|
3035
|
+
req: GetApiProjectServiceProjectsByIdData;
|
|
3036
|
+
res: {
|
|
3037
|
+
/**
|
|
3038
|
+
* Success
|
|
3039
|
+
*/
|
|
3040
|
+
200: {
|
|
3041
|
+
id?: string;
|
|
3042
|
+
creationTime?: string;
|
|
3043
|
+
creatorId?: string | null;
|
|
3044
|
+
lastModificationTime?: string | null;
|
|
3045
|
+
lastModifierId?: string | null;
|
|
3046
|
+
isDeleted?: boolean;
|
|
3047
|
+
deleterId?: string | null;
|
|
3048
|
+
deletionTime?: string | null;
|
|
3049
|
+
projectName?: string | null;
|
|
3050
|
+
projectDefinition?: string | null;
|
|
3051
|
+
cashValue?: number;
|
|
3052
|
+
fundCollectionType?: string | null;
|
|
3053
|
+
additionalFundRate?: string | null;
|
|
3054
|
+
qualifiedFundRate?: string | null;
|
|
3055
|
+
fundNominalAmount?: number;
|
|
3056
|
+
fundableAmount?: number;
|
|
3057
|
+
overFunding?: string;
|
|
3058
|
+
privilege?: string | null;
|
|
3059
|
+
projectStartDate?: string;
|
|
3060
|
+
projectEndDate?: string;
|
|
3061
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
3062
|
+
type?: 0 | 1 | 2 | 3;
|
|
3063
|
+
};
|
|
3064
|
+
/**
|
|
3065
|
+
* Bad Request
|
|
3066
|
+
*/
|
|
3067
|
+
400: {
|
|
3068
|
+
error?: {
|
|
3069
|
+
code?: string | null;
|
|
3070
|
+
message?: string | null;
|
|
3071
|
+
details?: string | null;
|
|
3072
|
+
data?: {
|
|
3073
|
+
[key: string]: unknown;
|
|
3074
|
+
} | null;
|
|
3075
|
+
validationErrors?: Array<{
|
|
3076
|
+
message?: string | null;
|
|
3077
|
+
members?: Array<(string)> | null;
|
|
3078
|
+
}> | null;
|
|
3079
|
+
};
|
|
3080
|
+
};
|
|
3081
|
+
/**
|
|
3082
|
+
* Unauthorized
|
|
3083
|
+
*/
|
|
3084
|
+
401: {
|
|
3085
|
+
error?: {
|
|
3086
|
+
code?: string | null;
|
|
3087
|
+
message?: string | null;
|
|
3088
|
+
details?: string | null;
|
|
3089
|
+
data?: {
|
|
3090
|
+
[key: string]: unknown;
|
|
3091
|
+
} | null;
|
|
3092
|
+
validationErrors?: Array<{
|
|
3093
|
+
message?: string | null;
|
|
3094
|
+
members?: Array<(string)> | null;
|
|
3095
|
+
}> | null;
|
|
3096
|
+
};
|
|
3097
|
+
};
|
|
3098
|
+
/**
|
|
3099
|
+
* Forbidden
|
|
3100
|
+
*/
|
|
3101
|
+
403: {
|
|
3102
|
+
error?: {
|
|
3103
|
+
code?: string | null;
|
|
3104
|
+
message?: string | null;
|
|
3105
|
+
details?: string | null;
|
|
3106
|
+
data?: {
|
|
3107
|
+
[key: string]: unknown;
|
|
3108
|
+
} | null;
|
|
3109
|
+
validationErrors?: Array<{
|
|
3110
|
+
message?: string | null;
|
|
3111
|
+
members?: Array<(string)> | null;
|
|
3112
|
+
}> | null;
|
|
3113
|
+
};
|
|
3114
|
+
};
|
|
3115
|
+
/**
|
|
3116
|
+
* Not Found
|
|
3117
|
+
*/
|
|
3118
|
+
404: {
|
|
3119
|
+
error?: {
|
|
3120
|
+
code?: string | null;
|
|
3121
|
+
message?: string | null;
|
|
3122
|
+
details?: string | null;
|
|
3123
|
+
data?: {
|
|
3124
|
+
[key: string]: unknown;
|
|
3125
|
+
} | null;
|
|
3126
|
+
validationErrors?: Array<{
|
|
3127
|
+
message?: string | null;
|
|
3128
|
+
members?: Array<(string)> | null;
|
|
3129
|
+
}> | null;
|
|
3130
|
+
};
|
|
3131
|
+
};
|
|
3132
|
+
/**
|
|
3133
|
+
* Server Error
|
|
3134
|
+
*/
|
|
3135
|
+
500: {
|
|
3136
|
+
error?: {
|
|
3137
|
+
code?: string | null;
|
|
3138
|
+
message?: string | null;
|
|
3139
|
+
details?: string | null;
|
|
3140
|
+
data?: {
|
|
3141
|
+
[key: string]: unknown;
|
|
3142
|
+
} | null;
|
|
3143
|
+
validationErrors?: Array<{
|
|
3144
|
+
message?: string | null;
|
|
3145
|
+
members?: Array<(string)> | null;
|
|
3146
|
+
}> | null;
|
|
3147
|
+
};
|
|
3148
|
+
};
|
|
3149
|
+
/**
|
|
3150
|
+
* Server Error
|
|
3151
|
+
*/
|
|
3152
|
+
501: {
|
|
3153
|
+
error?: {
|
|
3154
|
+
code?: string | null;
|
|
3155
|
+
message?: string | null;
|
|
3156
|
+
details?: string | null;
|
|
3157
|
+
data?: {
|
|
3158
|
+
[key: string]: unknown;
|
|
3159
|
+
} | null;
|
|
3160
|
+
validationErrors?: Array<{
|
|
3161
|
+
message?: string | null;
|
|
3162
|
+
members?: Array<(string)> | null;
|
|
3163
|
+
}> | null;
|
|
3164
|
+
};
|
|
3165
|
+
};
|
|
3166
|
+
};
|
|
3167
|
+
};
|
|
3168
|
+
put: {
|
|
3169
|
+
req: PutApiProjectServiceProjectsByIdData;
|
|
3170
|
+
res: {
|
|
3171
|
+
/**
|
|
3172
|
+
* Success
|
|
3173
|
+
*/
|
|
3174
|
+
200: {
|
|
3175
|
+
id?: string;
|
|
3176
|
+
creationTime?: string;
|
|
3177
|
+
creatorId?: string | null;
|
|
3178
|
+
lastModificationTime?: string | null;
|
|
3179
|
+
lastModifierId?: string | null;
|
|
3180
|
+
isDeleted?: boolean;
|
|
3181
|
+
deleterId?: string | null;
|
|
3182
|
+
deletionTime?: string | null;
|
|
3183
|
+
projectName?: string | null;
|
|
3184
|
+
projectDefinition?: string | null;
|
|
3185
|
+
cashValue?: number;
|
|
3186
|
+
fundCollectionType?: string | null;
|
|
3187
|
+
additionalFundRate?: string | null;
|
|
3188
|
+
qualifiedFundRate?: string | null;
|
|
3189
|
+
fundNominalAmount?: number;
|
|
3190
|
+
fundableAmount?: number;
|
|
3191
|
+
overFunding?: string;
|
|
3192
|
+
privilege?: string | null;
|
|
3193
|
+
projectStartDate?: string;
|
|
3194
|
+
projectEndDate?: string;
|
|
3195
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
3196
|
+
type?: 0 | 1 | 2 | 3;
|
|
3197
|
+
};
|
|
3198
|
+
/**
|
|
3199
|
+
* Bad Request
|
|
3200
|
+
*/
|
|
3201
|
+
400: {
|
|
3202
|
+
error?: {
|
|
3203
|
+
code?: string | null;
|
|
3204
|
+
message?: string | null;
|
|
3205
|
+
details?: string | null;
|
|
3206
|
+
data?: {
|
|
3207
|
+
[key: string]: unknown;
|
|
3208
|
+
} | null;
|
|
3209
|
+
validationErrors?: Array<{
|
|
3210
|
+
message?: string | null;
|
|
3211
|
+
members?: Array<(string)> | null;
|
|
3212
|
+
}> | null;
|
|
3213
|
+
};
|
|
3214
|
+
};
|
|
3215
|
+
/**
|
|
3216
|
+
* Unauthorized
|
|
3217
|
+
*/
|
|
3218
|
+
401: {
|
|
3219
|
+
error?: {
|
|
3220
|
+
code?: string | null;
|
|
3221
|
+
message?: string | null;
|
|
3222
|
+
details?: string | null;
|
|
3223
|
+
data?: {
|
|
3224
|
+
[key: string]: unknown;
|
|
3225
|
+
} | null;
|
|
3226
|
+
validationErrors?: Array<{
|
|
3227
|
+
message?: string | null;
|
|
3228
|
+
members?: Array<(string)> | null;
|
|
3229
|
+
}> | null;
|
|
3230
|
+
};
|
|
3231
|
+
};
|
|
3232
|
+
/**
|
|
3233
|
+
* Forbidden
|
|
3234
|
+
*/
|
|
3235
|
+
403: {
|
|
3236
|
+
error?: {
|
|
3237
|
+
code?: string | null;
|
|
3238
|
+
message?: string | null;
|
|
3239
|
+
details?: string | null;
|
|
3240
|
+
data?: {
|
|
3241
|
+
[key: string]: unknown;
|
|
3242
|
+
} | null;
|
|
3243
|
+
validationErrors?: Array<{
|
|
3244
|
+
message?: string | null;
|
|
3245
|
+
members?: Array<(string)> | null;
|
|
3246
|
+
}> | null;
|
|
3247
|
+
};
|
|
3248
|
+
};
|
|
3249
|
+
/**
|
|
3250
|
+
* Not Found
|
|
3251
|
+
*/
|
|
3252
|
+
404: {
|
|
3253
|
+
error?: {
|
|
3254
|
+
code?: string | null;
|
|
3255
|
+
message?: string | null;
|
|
3256
|
+
details?: string | null;
|
|
3257
|
+
data?: {
|
|
3258
|
+
[key: string]: unknown;
|
|
3259
|
+
} | null;
|
|
3260
|
+
validationErrors?: Array<{
|
|
3261
|
+
message?: string | null;
|
|
3262
|
+
members?: Array<(string)> | null;
|
|
3263
|
+
}> | null;
|
|
3264
|
+
};
|
|
3265
|
+
};
|
|
3266
|
+
/**
|
|
3267
|
+
* Server Error
|
|
3268
|
+
*/
|
|
3269
|
+
500: {
|
|
3270
|
+
error?: {
|
|
3271
|
+
code?: string | null;
|
|
3272
|
+
message?: string | null;
|
|
3273
|
+
details?: string | null;
|
|
3274
|
+
data?: {
|
|
3275
|
+
[key: string]: unknown;
|
|
3276
|
+
} | null;
|
|
3277
|
+
validationErrors?: Array<{
|
|
3278
|
+
message?: string | null;
|
|
3279
|
+
members?: Array<(string)> | null;
|
|
3280
|
+
}> | null;
|
|
3281
|
+
};
|
|
3282
|
+
};
|
|
3283
|
+
/**
|
|
3284
|
+
* Server Error
|
|
3285
|
+
*/
|
|
3286
|
+
501: {
|
|
3287
|
+
error?: {
|
|
3288
|
+
code?: string | null;
|
|
3289
|
+
message?: string | null;
|
|
3290
|
+
details?: string | null;
|
|
3291
|
+
data?: {
|
|
3292
|
+
[key: string]: unknown;
|
|
3293
|
+
} | null;
|
|
3294
|
+
validationErrors?: Array<{
|
|
3295
|
+
message?: string | null;
|
|
3296
|
+
members?: Array<(string)> | null;
|
|
3297
|
+
}> | null;
|
|
3298
|
+
};
|
|
3299
|
+
};
|
|
3300
|
+
};
|
|
3301
|
+
};
|
|
3302
|
+
};
|
|
3303
|
+
'/api/project-service/projects/detail/{id}': {
|
|
3304
|
+
get: {
|
|
3305
|
+
req: GetApiProjectServiceProjectsDetailByIdData;
|
|
3306
|
+
res: {
|
|
3307
|
+
/**
|
|
3308
|
+
* Success
|
|
3309
|
+
*/
|
|
3310
|
+
200: {
|
|
3311
|
+
project?: {
|
|
3312
|
+
id?: string;
|
|
3313
|
+
creationTime?: string;
|
|
3314
|
+
creatorId?: string | null;
|
|
3315
|
+
lastModificationTime?: string | null;
|
|
3316
|
+
lastModifierId?: string | null;
|
|
3317
|
+
isDeleted?: boolean;
|
|
3318
|
+
deleterId?: string | null;
|
|
3319
|
+
deletionTime?: string | null;
|
|
3320
|
+
projectName?: string | null;
|
|
3321
|
+
projectDefinition?: string | null;
|
|
3322
|
+
cashValue?: number;
|
|
3323
|
+
fundCollectionType?: string | null;
|
|
3324
|
+
additionalFundRate?: string | null;
|
|
3325
|
+
qualifiedFundRate?: string | null;
|
|
3326
|
+
fundNominalAmount?: number;
|
|
3327
|
+
fundableAmount?: number;
|
|
3328
|
+
overFunding?: string;
|
|
3329
|
+
privilege?: string | null;
|
|
3330
|
+
projectStartDate?: string;
|
|
3331
|
+
projectEndDate?: string;
|
|
3332
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
3333
|
+
type?: 0 | 1 | 2 | 3;
|
|
3334
|
+
};
|
|
3335
|
+
projectSectionRelations?: Array<{
|
|
3336
|
+
projectId?: string;
|
|
3337
|
+
sectionId?: string;
|
|
3338
|
+
sectionRelationId?: string;
|
|
3339
|
+
sectionName?: string | null;
|
|
3340
|
+
sectionRelationValue?: string | null;
|
|
3341
|
+
order?: number;
|
|
3342
|
+
}> | null;
|
|
3343
|
+
};
|
|
3344
|
+
/**
|
|
3345
|
+
* Bad Request
|
|
3346
|
+
*/
|
|
3347
|
+
400: {
|
|
3348
|
+
error?: {
|
|
3349
|
+
code?: string | null;
|
|
3350
|
+
message?: string | null;
|
|
3351
|
+
details?: string | null;
|
|
3352
|
+
data?: {
|
|
3353
|
+
[key: string]: unknown;
|
|
3354
|
+
} | null;
|
|
3355
|
+
validationErrors?: Array<{
|
|
3356
|
+
message?: string | null;
|
|
3357
|
+
members?: Array<(string)> | null;
|
|
3358
|
+
}> | null;
|
|
3359
|
+
};
|
|
3360
|
+
};
|
|
3361
|
+
/**
|
|
3362
|
+
* Unauthorized
|
|
3363
|
+
*/
|
|
3364
|
+
401: {
|
|
3365
|
+
error?: {
|
|
3366
|
+
code?: string | null;
|
|
3367
|
+
message?: string | null;
|
|
3368
|
+
details?: string | null;
|
|
3369
|
+
data?: {
|
|
3370
|
+
[key: string]: unknown;
|
|
3371
|
+
} | null;
|
|
3372
|
+
validationErrors?: Array<{
|
|
3373
|
+
message?: string | null;
|
|
3374
|
+
members?: Array<(string)> | null;
|
|
3375
|
+
}> | null;
|
|
3376
|
+
};
|
|
3377
|
+
};
|
|
3378
|
+
/**
|
|
3379
|
+
* Forbidden
|
|
3380
|
+
*/
|
|
3381
|
+
403: {
|
|
3382
|
+
error?: {
|
|
3383
|
+
code?: string | null;
|
|
3384
|
+
message?: string | null;
|
|
3385
|
+
details?: string | null;
|
|
3386
|
+
data?: {
|
|
3387
|
+
[key: string]: unknown;
|
|
3388
|
+
} | null;
|
|
3389
|
+
validationErrors?: Array<{
|
|
3390
|
+
message?: string | null;
|
|
3391
|
+
members?: Array<(string)> | null;
|
|
3392
|
+
}> | null;
|
|
3393
|
+
};
|
|
3394
|
+
};
|
|
3395
|
+
/**
|
|
3396
|
+
* Not Found
|
|
3397
|
+
*/
|
|
3398
|
+
404: {
|
|
3399
|
+
error?: {
|
|
3400
|
+
code?: string | null;
|
|
3401
|
+
message?: string | null;
|
|
3402
|
+
details?: string | null;
|
|
3403
|
+
data?: {
|
|
3404
|
+
[key: string]: unknown;
|
|
3405
|
+
} | null;
|
|
3406
|
+
validationErrors?: Array<{
|
|
3407
|
+
message?: string | null;
|
|
3408
|
+
members?: Array<(string)> | null;
|
|
3409
|
+
}> | null;
|
|
3410
|
+
};
|
|
3411
|
+
};
|
|
3412
|
+
/**
|
|
3413
|
+
* Server Error
|
|
3414
|
+
*/
|
|
3415
|
+
500: {
|
|
3416
|
+
error?: {
|
|
3417
|
+
code?: string | null;
|
|
3418
|
+
message?: string | null;
|
|
3419
|
+
details?: string | null;
|
|
3420
|
+
data?: {
|
|
3421
|
+
[key: string]: unknown;
|
|
3422
|
+
} | null;
|
|
3423
|
+
validationErrors?: Array<{
|
|
3424
|
+
message?: string | null;
|
|
3425
|
+
members?: Array<(string)> | null;
|
|
3426
|
+
}> | null;
|
|
3427
|
+
};
|
|
3428
|
+
};
|
|
3429
|
+
/**
|
|
3430
|
+
* Server Error
|
|
3431
|
+
*/
|
|
3432
|
+
501: {
|
|
3433
|
+
error?: {
|
|
3434
|
+
code?: string | null;
|
|
3435
|
+
message?: string | null;
|
|
3436
|
+
details?: string | null;
|
|
3437
|
+
data?: {
|
|
3438
|
+
[key: string]: unknown;
|
|
3439
|
+
} | null;
|
|
3440
|
+
validationErrors?: Array<{
|
|
3441
|
+
message?: string | null;
|
|
3442
|
+
members?: Array<(string)> | null;
|
|
3443
|
+
}> | null;
|
|
3444
|
+
};
|
|
3445
|
+
};
|
|
3446
|
+
};
|
|
3447
|
+
};
|
|
3448
|
+
};
|
|
3449
|
+
'/api/project-service/projects/section-list/{projectId}': {
|
|
3450
|
+
get: {
|
|
3451
|
+
req: GetApiProjectServiceProjectsSectionListByProjectIdData;
|
|
3452
|
+
res: {
|
|
3453
|
+
/**
|
|
3454
|
+
* Success
|
|
3455
|
+
*/
|
|
3456
|
+
200: Array<{
|
|
3457
|
+
id?: string;
|
|
3458
|
+
creationTime?: string;
|
|
3459
|
+
creatorId?: string | null;
|
|
3460
|
+
lastModificationTime?: string | null;
|
|
3461
|
+
lastModifierId?: string | null;
|
|
3462
|
+
isDeleted?: boolean;
|
|
3463
|
+
deleterId?: string | null;
|
|
3464
|
+
deletionTime?: string | null;
|
|
3465
|
+
name?: string | null;
|
|
3466
|
+
isDefault?: boolean;
|
|
3467
|
+
isOptional?: boolean;
|
|
3468
|
+
projectId?: string | null;
|
|
3469
|
+
}>;
|
|
3470
|
+
/**
|
|
3471
|
+
* Bad Request
|
|
3472
|
+
*/
|
|
3473
|
+
400: {
|
|
3474
|
+
error?: {
|
|
3475
|
+
code?: string | null;
|
|
3476
|
+
message?: string | null;
|
|
3477
|
+
details?: string | null;
|
|
3478
|
+
data?: {
|
|
3479
|
+
[key: string]: unknown;
|
|
3480
|
+
} | null;
|
|
3481
|
+
validationErrors?: Array<{
|
|
3482
|
+
message?: string | null;
|
|
3483
|
+
members?: Array<(string)> | null;
|
|
3484
|
+
}> | null;
|
|
3485
|
+
};
|
|
3486
|
+
};
|
|
3487
|
+
/**
|
|
3488
|
+
* Unauthorized
|
|
3489
|
+
*/
|
|
3490
|
+
401: {
|
|
3491
|
+
error?: {
|
|
3492
|
+
code?: string | null;
|
|
3493
|
+
message?: string | null;
|
|
3494
|
+
details?: string | null;
|
|
3495
|
+
data?: {
|
|
3496
|
+
[key: string]: unknown;
|
|
3497
|
+
} | null;
|
|
3498
|
+
validationErrors?: Array<{
|
|
3499
|
+
message?: string | null;
|
|
3500
|
+
members?: Array<(string)> | null;
|
|
3501
|
+
}> | null;
|
|
3502
|
+
};
|
|
3503
|
+
};
|
|
3504
|
+
/**
|
|
3505
|
+
* Forbidden
|
|
3506
|
+
*/
|
|
3507
|
+
403: {
|
|
3508
|
+
error?: {
|
|
3509
|
+
code?: string | null;
|
|
3510
|
+
message?: string | null;
|
|
3511
|
+
details?: string | null;
|
|
3512
|
+
data?: {
|
|
3513
|
+
[key: string]: unknown;
|
|
3514
|
+
} | null;
|
|
3515
|
+
validationErrors?: Array<{
|
|
3516
|
+
message?: string | null;
|
|
3517
|
+
members?: Array<(string)> | null;
|
|
3518
|
+
}> | null;
|
|
3519
|
+
};
|
|
3520
|
+
};
|
|
3521
|
+
/**
|
|
3522
|
+
* Not Found
|
|
3523
|
+
*/
|
|
3524
|
+
404: {
|
|
3525
|
+
error?: {
|
|
3526
|
+
code?: string | null;
|
|
3527
|
+
message?: string | null;
|
|
3528
|
+
details?: string | null;
|
|
3529
|
+
data?: {
|
|
3530
|
+
[key: string]: unknown;
|
|
3531
|
+
} | null;
|
|
3532
|
+
validationErrors?: Array<{
|
|
3533
|
+
message?: string | null;
|
|
3534
|
+
members?: Array<(string)> | null;
|
|
3535
|
+
}> | null;
|
|
3536
|
+
};
|
|
3537
|
+
};
|
|
3538
|
+
/**
|
|
3539
|
+
* Server Error
|
|
3540
|
+
*/
|
|
3541
|
+
500: {
|
|
3542
|
+
error?: {
|
|
3543
|
+
code?: string | null;
|
|
3544
|
+
message?: string | null;
|
|
3545
|
+
details?: string | null;
|
|
3546
|
+
data?: {
|
|
3547
|
+
[key: string]: unknown;
|
|
3548
|
+
} | null;
|
|
3549
|
+
validationErrors?: Array<{
|
|
3550
|
+
message?: string | null;
|
|
3551
|
+
members?: Array<(string)> | null;
|
|
3552
|
+
}> | null;
|
|
3553
|
+
};
|
|
3554
|
+
};
|
|
3555
|
+
/**
|
|
3556
|
+
* Server Error
|
|
3557
|
+
*/
|
|
3558
|
+
501: {
|
|
3559
|
+
error?: {
|
|
3560
|
+
code?: string | null;
|
|
3561
|
+
message?: string | null;
|
|
3562
|
+
details?: string | null;
|
|
3563
|
+
data?: {
|
|
3564
|
+
[key: string]: unknown;
|
|
3565
|
+
} | null;
|
|
3566
|
+
validationErrors?: Array<{
|
|
3567
|
+
message?: string | null;
|
|
3568
|
+
members?: Array<(string)> | null;
|
|
3569
|
+
}> | null;
|
|
3570
|
+
};
|
|
3571
|
+
};
|
|
3572
|
+
};
|
|
3573
|
+
};
|
|
3574
|
+
};
|
|
3575
|
+
'/api/project-service/projects/my-projects': {
|
|
3576
|
+
get: {
|
|
3577
|
+
res: {
|
|
3578
|
+
/**
|
|
3579
|
+
* Success
|
|
3580
|
+
*/
|
|
3581
|
+
200: Array<{
|
|
3582
|
+
id?: string;
|
|
3583
|
+
creationTime?: string;
|
|
3584
|
+
creatorId?: string | null;
|
|
3585
|
+
lastModificationTime?: string | null;
|
|
3586
|
+
lastModifierId?: string | null;
|
|
3587
|
+
isDeleted?: boolean;
|
|
3588
|
+
deleterId?: string | null;
|
|
3589
|
+
deletionTime?: string | null;
|
|
3590
|
+
projectName?: string | null;
|
|
3591
|
+
projectDefinition?: string | null;
|
|
3592
|
+
cashValue?: number;
|
|
3593
|
+
fundCollectionType?: string | null;
|
|
3594
|
+
additionalFundRate?: string | null;
|
|
3595
|
+
qualifiedFundRate?: string | null;
|
|
3596
|
+
fundNominalAmount?: number;
|
|
3597
|
+
fundableAmount?: number;
|
|
3598
|
+
overFunding?: string;
|
|
3599
|
+
privilege?: string | null;
|
|
3600
|
+
projectStartDate?: string;
|
|
3601
|
+
projectEndDate?: string;
|
|
3602
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
3603
|
+
type?: 0 | 1 | 2 | 3;
|
|
3604
|
+
}>;
|
|
3605
|
+
/**
|
|
3606
|
+
* Bad Request
|
|
3607
|
+
*/
|
|
3608
|
+
400: {
|
|
3609
|
+
error?: {
|
|
3610
|
+
code?: string | null;
|
|
3611
|
+
message?: string | null;
|
|
3612
|
+
details?: string | null;
|
|
3613
|
+
data?: {
|
|
3614
|
+
[key: string]: unknown;
|
|
3615
|
+
} | null;
|
|
3616
|
+
validationErrors?: Array<{
|
|
3617
|
+
message?: string | null;
|
|
3618
|
+
members?: Array<(string)> | null;
|
|
3619
|
+
}> | null;
|
|
3620
|
+
};
|
|
3621
|
+
};
|
|
3622
|
+
/**
|
|
3623
|
+
* Unauthorized
|
|
3624
|
+
*/
|
|
3625
|
+
401: {
|
|
3626
|
+
error?: {
|
|
3627
|
+
code?: string | null;
|
|
3628
|
+
message?: string | null;
|
|
3629
|
+
details?: string | null;
|
|
3630
|
+
data?: {
|
|
3631
|
+
[key: string]: unknown;
|
|
3632
|
+
} | null;
|
|
3633
|
+
validationErrors?: Array<{
|
|
3634
|
+
message?: string | null;
|
|
3635
|
+
members?: Array<(string)> | null;
|
|
3636
|
+
}> | null;
|
|
3637
|
+
};
|
|
3638
|
+
};
|
|
3639
|
+
/**
|
|
3640
|
+
* Forbidden
|
|
3641
|
+
*/
|
|
3642
|
+
403: {
|
|
3643
|
+
error?: {
|
|
3644
|
+
code?: string | null;
|
|
3645
|
+
message?: string | null;
|
|
3646
|
+
details?: string | null;
|
|
3647
|
+
data?: {
|
|
3648
|
+
[key: string]: unknown;
|
|
3649
|
+
} | null;
|
|
3650
|
+
validationErrors?: Array<{
|
|
3651
|
+
message?: string | null;
|
|
3652
|
+
members?: Array<(string)> | null;
|
|
3653
|
+
}> | null;
|
|
3654
|
+
};
|
|
3655
|
+
};
|
|
3656
|
+
/**
|
|
3657
|
+
* Not Found
|
|
3658
|
+
*/
|
|
3659
|
+
404: {
|
|
3660
|
+
error?: {
|
|
3661
|
+
code?: string | null;
|
|
3662
|
+
message?: string | null;
|
|
3663
|
+
details?: string | null;
|
|
3664
|
+
data?: {
|
|
3665
|
+
[key: string]: unknown;
|
|
3666
|
+
} | null;
|
|
3667
|
+
validationErrors?: Array<{
|
|
3668
|
+
message?: string | null;
|
|
3669
|
+
members?: Array<(string)> | null;
|
|
3670
|
+
}> | null;
|
|
3671
|
+
};
|
|
3672
|
+
};
|
|
3673
|
+
/**
|
|
3674
|
+
* Server Error
|
|
3675
|
+
*/
|
|
3676
|
+
500: {
|
|
3677
|
+
error?: {
|
|
3678
|
+
code?: string | null;
|
|
3679
|
+
message?: string | null;
|
|
3680
|
+
details?: string | null;
|
|
3681
|
+
data?: {
|
|
3682
|
+
[key: string]: unknown;
|
|
3683
|
+
} | null;
|
|
3684
|
+
validationErrors?: Array<{
|
|
3685
|
+
message?: string | null;
|
|
3686
|
+
members?: Array<(string)> | null;
|
|
3687
|
+
}> | null;
|
|
3688
|
+
};
|
|
3689
|
+
};
|
|
3690
|
+
/**
|
|
3691
|
+
* Server Error
|
|
3692
|
+
*/
|
|
3693
|
+
501: {
|
|
3694
|
+
error?: {
|
|
3695
|
+
code?: string | null;
|
|
3696
|
+
message?: string | null;
|
|
3697
|
+
details?: string | null;
|
|
3698
|
+
data?: {
|
|
3699
|
+
[key: string]: unknown;
|
|
3700
|
+
} | null;
|
|
3701
|
+
validationErrors?: Array<{
|
|
3702
|
+
message?: string | null;
|
|
3703
|
+
members?: Array<(string)> | null;
|
|
3704
|
+
}> | null;
|
|
3705
|
+
};
|
|
3706
|
+
};
|
|
3707
|
+
};
|
|
3708
|
+
};
|
|
3709
|
+
};
|
|
3710
|
+
'/api/project-service/projects/section': {
|
|
3711
|
+
post: {
|
|
3712
|
+
req: PostApiProjectServiceProjectsSectionData;
|
|
3713
|
+
res: {
|
|
3714
|
+
/**
|
|
3715
|
+
* Success
|
|
3716
|
+
*/
|
|
3717
|
+
200: {
|
|
3718
|
+
id?: string;
|
|
3719
|
+
creationTime?: string;
|
|
3720
|
+
creatorId?: string | null;
|
|
3721
|
+
lastModificationTime?: string | null;
|
|
3722
|
+
lastModifierId?: string | null;
|
|
3723
|
+
isDeleted?: boolean;
|
|
3724
|
+
deleterId?: string | null;
|
|
3725
|
+
deletionTime?: string | null;
|
|
3726
|
+
name?: string | null;
|
|
3727
|
+
isDefault?: boolean;
|
|
3728
|
+
isOptional?: boolean;
|
|
3729
|
+
projectId?: string | null;
|
|
3730
|
+
};
|
|
3731
|
+
/**
|
|
3732
|
+
* Bad Request
|
|
3733
|
+
*/
|
|
3734
|
+
400: {
|
|
3735
|
+
error?: {
|
|
3736
|
+
code?: string | null;
|
|
3737
|
+
message?: string | null;
|
|
3738
|
+
details?: string | null;
|
|
3739
|
+
data?: {
|
|
3740
|
+
[key: string]: unknown;
|
|
3741
|
+
} | null;
|
|
3742
|
+
validationErrors?: Array<{
|
|
3743
|
+
message?: string | null;
|
|
3744
|
+
members?: Array<(string)> | null;
|
|
3745
|
+
}> | null;
|
|
3746
|
+
};
|
|
3747
|
+
};
|
|
3748
|
+
/**
|
|
3749
|
+
* Unauthorized
|
|
3750
|
+
*/
|
|
3751
|
+
401: {
|
|
3752
|
+
error?: {
|
|
3753
|
+
code?: string | null;
|
|
3754
|
+
message?: string | null;
|
|
3755
|
+
details?: string | null;
|
|
3756
|
+
data?: {
|
|
3757
|
+
[key: string]: unknown;
|
|
3758
|
+
} | null;
|
|
3759
|
+
validationErrors?: Array<{
|
|
3760
|
+
message?: string | null;
|
|
3761
|
+
members?: Array<(string)> | null;
|
|
3762
|
+
}> | null;
|
|
3763
|
+
};
|
|
3764
|
+
};
|
|
3765
|
+
/**
|
|
3766
|
+
* Forbidden
|
|
3767
|
+
*/
|
|
3768
|
+
403: {
|
|
3769
|
+
error?: {
|
|
3770
|
+
code?: string | null;
|
|
3771
|
+
message?: string | null;
|
|
3772
|
+
details?: string | null;
|
|
3773
|
+
data?: {
|
|
3774
|
+
[key: string]: unknown;
|
|
3775
|
+
} | null;
|
|
3776
|
+
validationErrors?: Array<{
|
|
3777
|
+
message?: string | null;
|
|
3778
|
+
members?: Array<(string)> | null;
|
|
3779
|
+
}> | null;
|
|
3780
|
+
};
|
|
3781
|
+
};
|
|
3782
|
+
/**
|
|
3783
|
+
* Not Found
|
|
3784
|
+
*/
|
|
3785
|
+
404: {
|
|
3786
|
+
error?: {
|
|
3787
|
+
code?: string | null;
|
|
3788
|
+
message?: string | null;
|
|
3789
|
+
details?: string | null;
|
|
3790
|
+
data?: {
|
|
3791
|
+
[key: string]: unknown;
|
|
3792
|
+
} | null;
|
|
3793
|
+
validationErrors?: Array<{
|
|
3794
|
+
message?: string | null;
|
|
3795
|
+
members?: Array<(string)> | null;
|
|
3796
|
+
}> | null;
|
|
3797
|
+
};
|
|
3798
|
+
};
|
|
3799
|
+
/**
|
|
3800
|
+
* Server Error
|
|
3801
|
+
*/
|
|
3802
|
+
500: {
|
|
3803
|
+
error?: {
|
|
3804
|
+
code?: string | null;
|
|
3805
|
+
message?: string | null;
|
|
3806
|
+
details?: string | null;
|
|
3807
|
+
data?: {
|
|
3808
|
+
[key: string]: unknown;
|
|
3809
|
+
} | null;
|
|
3810
|
+
validationErrors?: Array<{
|
|
3811
|
+
message?: string | null;
|
|
3812
|
+
members?: Array<(string)> | null;
|
|
3813
|
+
}> | null;
|
|
3814
|
+
};
|
|
3815
|
+
};
|
|
3816
|
+
/**
|
|
3817
|
+
* Server Error
|
|
3818
|
+
*/
|
|
3819
|
+
501: {
|
|
3820
|
+
error?: {
|
|
3821
|
+
code?: string | null;
|
|
3822
|
+
message?: string | null;
|
|
3823
|
+
details?: string | null;
|
|
3824
|
+
data?: {
|
|
3825
|
+
[key: string]: unknown;
|
|
3826
|
+
} | null;
|
|
3827
|
+
validationErrors?: Array<{
|
|
3828
|
+
message?: string | null;
|
|
3829
|
+
members?: Array<(string)> | null;
|
|
3830
|
+
}> | null;
|
|
3831
|
+
};
|
|
3832
|
+
};
|
|
3833
|
+
};
|
|
3834
|
+
};
|
|
3835
|
+
};
|
|
3836
|
+
'/api/project-service/projects/section-relation': {
|
|
3837
|
+
post: {
|
|
3838
|
+
req: PostApiProjectServiceProjectsSectionRelationData;
|
|
3839
|
+
res: {
|
|
3840
|
+
/**
|
|
3841
|
+
* Success
|
|
3842
|
+
*/
|
|
3843
|
+
200: {
|
|
3844
|
+
id?: string;
|
|
3845
|
+
creationTime?: string;
|
|
3846
|
+
creatorId?: string | null;
|
|
3847
|
+
lastModificationTime?: string | null;
|
|
3848
|
+
lastModifierId?: string | null;
|
|
3849
|
+
isDeleted?: boolean;
|
|
3850
|
+
deleterId?: string | null;
|
|
3851
|
+
deletionTime?: string | null;
|
|
3852
|
+
projectId?: string;
|
|
3853
|
+
projectSectionId?: string;
|
|
3854
|
+
value?: string | null;
|
|
3855
|
+
order?: number;
|
|
3856
|
+
};
|
|
3857
|
+
/**
|
|
3858
|
+
* Bad Request
|
|
3859
|
+
*/
|
|
3860
|
+
400: {
|
|
3861
|
+
error?: {
|
|
3862
|
+
code?: string | null;
|
|
3863
|
+
message?: string | null;
|
|
3864
|
+
details?: string | null;
|
|
3865
|
+
data?: {
|
|
3866
|
+
[key: string]: unknown;
|
|
3867
|
+
} | null;
|
|
3868
|
+
validationErrors?: Array<{
|
|
3869
|
+
message?: string | null;
|
|
3870
|
+
members?: Array<(string)> | null;
|
|
3871
|
+
}> | null;
|
|
3872
|
+
};
|
|
3873
|
+
};
|
|
3874
|
+
/**
|
|
3875
|
+
* Unauthorized
|
|
3876
|
+
*/
|
|
3877
|
+
401: {
|
|
3878
|
+
error?: {
|
|
3879
|
+
code?: string | null;
|
|
3880
|
+
message?: string | null;
|
|
3881
|
+
details?: string | null;
|
|
3882
|
+
data?: {
|
|
3883
|
+
[key: string]: unknown;
|
|
3884
|
+
} | null;
|
|
3885
|
+
validationErrors?: Array<{
|
|
3886
|
+
message?: string | null;
|
|
3887
|
+
members?: Array<(string)> | null;
|
|
3888
|
+
}> | null;
|
|
3889
|
+
};
|
|
3890
|
+
};
|
|
3891
|
+
/**
|
|
3892
|
+
* Forbidden
|
|
3893
|
+
*/
|
|
3894
|
+
403: {
|
|
3895
|
+
error?: {
|
|
3896
|
+
code?: string | null;
|
|
3897
|
+
message?: string | null;
|
|
3898
|
+
details?: string | null;
|
|
3899
|
+
data?: {
|
|
3900
|
+
[key: string]: unknown;
|
|
3901
|
+
} | null;
|
|
3902
|
+
validationErrors?: Array<{
|
|
3903
|
+
message?: string | null;
|
|
3904
|
+
members?: Array<(string)> | null;
|
|
3905
|
+
}> | null;
|
|
3906
|
+
};
|
|
3907
|
+
};
|
|
3908
|
+
/**
|
|
3909
|
+
* Not Found
|
|
3910
|
+
*/
|
|
3911
|
+
404: {
|
|
3912
|
+
error?: {
|
|
3913
|
+
code?: string | null;
|
|
3914
|
+
message?: string | null;
|
|
3915
|
+
details?: string | null;
|
|
3916
|
+
data?: {
|
|
3917
|
+
[key: string]: unknown;
|
|
3918
|
+
} | null;
|
|
3919
|
+
validationErrors?: Array<{
|
|
3920
|
+
message?: string | null;
|
|
3921
|
+
members?: Array<(string)> | null;
|
|
3922
|
+
}> | null;
|
|
3923
|
+
};
|
|
3924
|
+
};
|
|
3925
|
+
/**
|
|
3926
|
+
* Server Error
|
|
3927
|
+
*/
|
|
3928
|
+
500: {
|
|
3929
|
+
error?: {
|
|
3930
|
+
code?: string | null;
|
|
3931
|
+
message?: string | null;
|
|
3932
|
+
details?: string | null;
|
|
3933
|
+
data?: {
|
|
3934
|
+
[key: string]: unknown;
|
|
3935
|
+
} | null;
|
|
3936
|
+
validationErrors?: Array<{
|
|
3937
|
+
message?: string | null;
|
|
3938
|
+
members?: Array<(string)> | null;
|
|
3939
|
+
}> | null;
|
|
3940
|
+
};
|
|
3941
|
+
};
|
|
3942
|
+
/**
|
|
3943
|
+
* Server Error
|
|
3944
|
+
*/
|
|
3945
|
+
501: {
|
|
3946
|
+
error?: {
|
|
3947
|
+
code?: string | null;
|
|
3948
|
+
message?: string | null;
|
|
3949
|
+
details?: string | null;
|
|
3950
|
+
data?: {
|
|
3951
|
+
[key: string]: unknown;
|
|
3952
|
+
} | null;
|
|
3953
|
+
validationErrors?: Array<{
|
|
3954
|
+
message?: string | null;
|
|
3955
|
+
members?: Array<(string)> | null;
|
|
3956
|
+
}> | null;
|
|
3957
|
+
};
|
|
3958
|
+
};
|
|
3959
|
+
};
|
|
3960
|
+
};
|
|
3961
|
+
};
|
|
3962
|
+
'/api/project-service/projects/section/{id}': {
|
|
3963
|
+
put: {
|
|
3964
|
+
req: PutApiProjectServiceProjectsSectionByIdData;
|
|
3965
|
+
res: {
|
|
3966
|
+
/**
|
|
3967
|
+
* Success
|
|
3968
|
+
*/
|
|
3969
|
+
200: {
|
|
3970
|
+
id?: string;
|
|
3971
|
+
creationTime?: string;
|
|
3972
|
+
creatorId?: string | null;
|
|
3973
|
+
lastModificationTime?: string | null;
|
|
3974
|
+
lastModifierId?: string | null;
|
|
3975
|
+
isDeleted?: boolean;
|
|
3976
|
+
deleterId?: string | null;
|
|
3977
|
+
deletionTime?: string | null;
|
|
3978
|
+
name?: string | null;
|
|
3979
|
+
isDefault?: boolean;
|
|
3980
|
+
isOptional?: boolean;
|
|
3981
|
+
projectId?: string | null;
|
|
3982
|
+
};
|
|
3983
|
+
/**
|
|
3984
|
+
* Bad Request
|
|
3985
|
+
*/
|
|
3986
|
+
400: {
|
|
3987
|
+
error?: {
|
|
3988
|
+
code?: string | null;
|
|
3989
|
+
message?: string | null;
|
|
3990
|
+
details?: string | null;
|
|
3991
|
+
data?: {
|
|
3992
|
+
[key: string]: unknown;
|
|
3993
|
+
} | null;
|
|
3994
|
+
validationErrors?: Array<{
|
|
3995
|
+
message?: string | null;
|
|
3996
|
+
members?: Array<(string)> | null;
|
|
3997
|
+
}> | null;
|
|
3998
|
+
};
|
|
3999
|
+
};
|
|
4000
|
+
/**
|
|
4001
|
+
* Unauthorized
|
|
4002
|
+
*/
|
|
4003
|
+
401: {
|
|
4004
|
+
error?: {
|
|
4005
|
+
code?: string | null;
|
|
4006
|
+
message?: string | null;
|
|
4007
|
+
details?: string | null;
|
|
4008
|
+
data?: {
|
|
4009
|
+
[key: string]: unknown;
|
|
4010
|
+
} | null;
|
|
4011
|
+
validationErrors?: Array<{
|
|
4012
|
+
message?: string | null;
|
|
4013
|
+
members?: Array<(string)> | null;
|
|
4014
|
+
}> | null;
|
|
4015
|
+
};
|
|
4016
|
+
};
|
|
4017
|
+
/**
|
|
4018
|
+
* Forbidden
|
|
4019
|
+
*/
|
|
4020
|
+
403: {
|
|
4021
|
+
error?: {
|
|
4022
|
+
code?: string | null;
|
|
4023
|
+
message?: string | null;
|
|
4024
|
+
details?: string | null;
|
|
4025
|
+
data?: {
|
|
4026
|
+
[key: string]: unknown;
|
|
4027
|
+
} | null;
|
|
4028
|
+
validationErrors?: Array<{
|
|
4029
|
+
message?: string | null;
|
|
4030
|
+
members?: Array<(string)> | null;
|
|
4031
|
+
}> | null;
|
|
4032
|
+
};
|
|
4033
|
+
};
|
|
4034
|
+
/**
|
|
4035
|
+
* Not Found
|
|
4036
|
+
*/
|
|
4037
|
+
404: {
|
|
4038
|
+
error?: {
|
|
4039
|
+
code?: string | null;
|
|
4040
|
+
message?: string | null;
|
|
4041
|
+
details?: string | null;
|
|
4042
|
+
data?: {
|
|
4043
|
+
[key: string]: unknown;
|
|
4044
|
+
} | null;
|
|
4045
|
+
validationErrors?: Array<{
|
|
4046
|
+
message?: string | null;
|
|
4047
|
+
members?: Array<(string)> | null;
|
|
4048
|
+
}> | null;
|
|
4049
|
+
};
|
|
4050
|
+
};
|
|
4051
|
+
/**
|
|
4052
|
+
* Server Error
|
|
4053
|
+
*/
|
|
4054
|
+
500: {
|
|
4055
|
+
error?: {
|
|
4056
|
+
code?: string | null;
|
|
4057
|
+
message?: string | null;
|
|
4058
|
+
details?: string | null;
|
|
4059
|
+
data?: {
|
|
4060
|
+
[key: string]: unknown;
|
|
4061
|
+
} | null;
|
|
4062
|
+
validationErrors?: Array<{
|
|
4063
|
+
message?: string | null;
|
|
4064
|
+
members?: Array<(string)> | null;
|
|
4065
|
+
}> | null;
|
|
4066
|
+
};
|
|
4067
|
+
};
|
|
4068
|
+
/**
|
|
4069
|
+
* Server Error
|
|
4070
|
+
*/
|
|
4071
|
+
501: {
|
|
4072
|
+
error?: {
|
|
4073
|
+
code?: string | null;
|
|
4074
|
+
message?: string | null;
|
|
4075
|
+
details?: string | null;
|
|
4076
|
+
data?: {
|
|
4077
|
+
[key: string]: unknown;
|
|
4078
|
+
} | null;
|
|
4079
|
+
validationErrors?: Array<{
|
|
4080
|
+
message?: string | null;
|
|
4081
|
+
members?: Array<(string)> | null;
|
|
4082
|
+
}> | null;
|
|
4083
|
+
};
|
|
4084
|
+
};
|
|
4085
|
+
};
|
|
4086
|
+
};
|
|
4087
|
+
};
|
|
4088
|
+
'/api/project-service/projects/section-relation/{id}': {
|
|
4089
|
+
put: {
|
|
4090
|
+
req: PutApiProjectServiceProjectsSectionRelationByIdData;
|
|
4091
|
+
res: {
|
|
4092
|
+
/**
|
|
4093
|
+
* Success
|
|
4094
|
+
*/
|
|
4095
|
+
200: {
|
|
4096
|
+
id?: string;
|
|
4097
|
+
creationTime?: string;
|
|
4098
|
+
creatorId?: string | null;
|
|
4099
|
+
lastModificationTime?: string | null;
|
|
4100
|
+
lastModifierId?: string | null;
|
|
4101
|
+
isDeleted?: boolean;
|
|
4102
|
+
deleterId?: string | null;
|
|
4103
|
+
deletionTime?: string | null;
|
|
4104
|
+
projectId?: string;
|
|
4105
|
+
projectSectionId?: string;
|
|
4106
|
+
value?: string | null;
|
|
4107
|
+
order?: number;
|
|
4108
|
+
};
|
|
4109
|
+
/**
|
|
4110
|
+
* Bad Request
|
|
4111
|
+
*/
|
|
4112
|
+
400: {
|
|
4113
|
+
error?: {
|
|
4114
|
+
code?: string | null;
|
|
4115
|
+
message?: string | null;
|
|
4116
|
+
details?: string | null;
|
|
4117
|
+
data?: {
|
|
4118
|
+
[key: string]: unknown;
|
|
4119
|
+
} | null;
|
|
4120
|
+
validationErrors?: Array<{
|
|
4121
|
+
message?: string | null;
|
|
4122
|
+
members?: Array<(string)> | null;
|
|
4123
|
+
}> | null;
|
|
4124
|
+
};
|
|
4125
|
+
};
|
|
4126
|
+
/**
|
|
4127
|
+
* Unauthorized
|
|
4128
|
+
*/
|
|
4129
|
+
401: {
|
|
4130
|
+
error?: {
|
|
4131
|
+
code?: string | null;
|
|
4132
|
+
message?: string | null;
|
|
4133
|
+
details?: string | null;
|
|
4134
|
+
data?: {
|
|
4135
|
+
[key: string]: unknown;
|
|
4136
|
+
} | null;
|
|
4137
|
+
validationErrors?: Array<{
|
|
4138
|
+
message?: string | null;
|
|
4139
|
+
members?: Array<(string)> | null;
|
|
4140
|
+
}> | null;
|
|
4141
|
+
};
|
|
4142
|
+
};
|
|
4143
|
+
/**
|
|
4144
|
+
* Forbidden
|
|
4145
|
+
*/
|
|
4146
|
+
403: {
|
|
4147
|
+
error?: {
|
|
4148
|
+
code?: string | null;
|
|
4149
|
+
message?: string | null;
|
|
4150
|
+
details?: string | null;
|
|
4151
|
+
data?: {
|
|
4152
|
+
[key: string]: unknown;
|
|
4153
|
+
} | null;
|
|
4154
|
+
validationErrors?: Array<{
|
|
4155
|
+
message?: string | null;
|
|
4156
|
+
members?: Array<(string)> | null;
|
|
4157
|
+
}> | null;
|
|
4158
|
+
};
|
|
4159
|
+
};
|
|
4160
|
+
/**
|
|
4161
|
+
* Not Found
|
|
4162
|
+
*/
|
|
4163
|
+
404: {
|
|
4164
|
+
error?: {
|
|
4165
|
+
code?: string | null;
|
|
4166
|
+
message?: string | null;
|
|
4167
|
+
details?: string | null;
|
|
4168
|
+
data?: {
|
|
4169
|
+
[key: string]: unknown;
|
|
4170
|
+
} | null;
|
|
4171
|
+
validationErrors?: Array<{
|
|
4172
|
+
message?: string | null;
|
|
4173
|
+
members?: Array<(string)> | null;
|
|
4174
|
+
}> | null;
|
|
4175
|
+
};
|
|
4176
|
+
};
|
|
4177
|
+
/**
|
|
4178
|
+
* Server Error
|
|
4179
|
+
*/
|
|
4180
|
+
500: {
|
|
4181
|
+
error?: {
|
|
4182
|
+
code?: string | null;
|
|
4183
|
+
message?: string | null;
|
|
4184
|
+
details?: string | null;
|
|
4185
|
+
data?: {
|
|
4186
|
+
[key: string]: unknown;
|
|
4187
|
+
} | null;
|
|
4188
|
+
validationErrors?: Array<{
|
|
4189
|
+
message?: string | null;
|
|
4190
|
+
members?: Array<(string)> | null;
|
|
4191
|
+
}> | null;
|
|
4192
|
+
};
|
|
4193
|
+
};
|
|
4194
|
+
/**
|
|
4195
|
+
* Server Error
|
|
4196
|
+
*/
|
|
4197
|
+
501: {
|
|
4198
|
+
error?: {
|
|
4199
|
+
code?: string | null;
|
|
4200
|
+
message?: string | null;
|
|
4201
|
+
details?: string | null;
|
|
4202
|
+
data?: {
|
|
4203
|
+
[key: string]: unknown;
|
|
4204
|
+
} | null;
|
|
4205
|
+
validationErrors?: Array<{
|
|
4206
|
+
message?: string | null;
|
|
4207
|
+
members?: Array<(string)> | null;
|
|
4208
|
+
}> | null;
|
|
4209
|
+
};
|
|
4210
|
+
};
|
|
4211
|
+
};
|
|
4212
|
+
};
|
|
4213
|
+
};
|
|
4214
|
+
'/api/project-service/projects/status/{projectId}': {
|
|
4215
|
+
put: {
|
|
4216
|
+
req: PutApiProjectServiceProjectsStatusByProjectIdData;
|
|
4217
|
+
res: {
|
|
4218
|
+
/**
|
|
4219
|
+
* Success
|
|
4220
|
+
*/
|
|
4221
|
+
200: {
|
|
4222
|
+
id?: string;
|
|
4223
|
+
creationTime?: string;
|
|
4224
|
+
creatorId?: string | null;
|
|
4225
|
+
lastModificationTime?: string | null;
|
|
4226
|
+
lastModifierId?: string | null;
|
|
4227
|
+
isDeleted?: boolean;
|
|
4228
|
+
deleterId?: string | null;
|
|
4229
|
+
deletionTime?: string | null;
|
|
4230
|
+
projectName?: string | null;
|
|
4231
|
+
projectDefinition?: string | null;
|
|
4232
|
+
cashValue?: number;
|
|
4233
|
+
fundCollectionType?: string | null;
|
|
4234
|
+
additionalFundRate?: string | null;
|
|
4235
|
+
qualifiedFundRate?: string | null;
|
|
4236
|
+
fundNominalAmount?: number;
|
|
4237
|
+
fundableAmount?: number;
|
|
4238
|
+
overFunding?: string;
|
|
4239
|
+
privilege?: string | null;
|
|
4240
|
+
projectStartDate?: string;
|
|
4241
|
+
projectEndDate?: string;
|
|
4242
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
4243
|
+
type?: 0 | 1 | 2 | 3;
|
|
4244
|
+
};
|
|
4245
|
+
/**
|
|
4246
|
+
* Bad Request
|
|
4247
|
+
*/
|
|
4248
|
+
400: {
|
|
4249
|
+
error?: {
|
|
4250
|
+
code?: string | null;
|
|
4251
|
+
message?: string | null;
|
|
4252
|
+
details?: string | null;
|
|
4253
|
+
data?: {
|
|
4254
|
+
[key: string]: unknown;
|
|
4255
|
+
} | null;
|
|
4256
|
+
validationErrors?: Array<{
|
|
4257
|
+
message?: string | null;
|
|
4258
|
+
members?: Array<(string)> | null;
|
|
4259
|
+
}> | null;
|
|
4260
|
+
};
|
|
4261
|
+
};
|
|
4262
|
+
/**
|
|
4263
|
+
* Unauthorized
|
|
4264
|
+
*/
|
|
4265
|
+
401: {
|
|
4266
|
+
error?: {
|
|
4267
|
+
code?: string | null;
|
|
4268
|
+
message?: string | null;
|
|
4269
|
+
details?: string | null;
|
|
4270
|
+
data?: {
|
|
4271
|
+
[key: string]: unknown;
|
|
4272
|
+
} | null;
|
|
4273
|
+
validationErrors?: Array<{
|
|
4274
|
+
message?: string | null;
|
|
4275
|
+
members?: Array<(string)> | null;
|
|
4276
|
+
}> | null;
|
|
4277
|
+
};
|
|
4278
|
+
};
|
|
4279
|
+
/**
|
|
4280
|
+
* Forbidden
|
|
4281
|
+
*/
|
|
4282
|
+
403: {
|
|
4283
|
+
error?: {
|
|
4284
|
+
code?: string | null;
|
|
4285
|
+
message?: string | null;
|
|
4286
|
+
details?: string | null;
|
|
4287
|
+
data?: {
|
|
4288
|
+
[key: string]: unknown;
|
|
4289
|
+
} | null;
|
|
4290
|
+
validationErrors?: Array<{
|
|
4291
|
+
message?: string | null;
|
|
4292
|
+
members?: Array<(string)> | null;
|
|
4293
|
+
}> | null;
|
|
4294
|
+
};
|
|
4295
|
+
};
|
|
4296
|
+
/**
|
|
4297
|
+
* Not Found
|
|
4298
|
+
*/
|
|
4299
|
+
404: {
|
|
4300
|
+
error?: {
|
|
4301
|
+
code?: string | null;
|
|
4302
|
+
message?: string | null;
|
|
4303
|
+
details?: string | null;
|
|
4304
|
+
data?: {
|
|
4305
|
+
[key: string]: unknown;
|
|
4306
|
+
} | null;
|
|
4307
|
+
validationErrors?: Array<{
|
|
4308
|
+
message?: string | null;
|
|
4309
|
+
members?: Array<(string)> | null;
|
|
4310
|
+
}> | null;
|
|
4311
|
+
};
|
|
4312
|
+
};
|
|
4313
|
+
/**
|
|
4314
|
+
* Server Error
|
|
4315
|
+
*/
|
|
4316
|
+
500: {
|
|
4317
|
+
error?: {
|
|
4318
|
+
code?: string | null;
|
|
4319
|
+
message?: string | null;
|
|
4320
|
+
details?: string | null;
|
|
4321
|
+
data?: {
|
|
4322
|
+
[key: string]: unknown;
|
|
4323
|
+
} | null;
|
|
4324
|
+
validationErrors?: Array<{
|
|
4325
|
+
message?: string | null;
|
|
4326
|
+
members?: Array<(string)> | null;
|
|
4327
|
+
}> | null;
|
|
4328
|
+
};
|
|
4329
|
+
};
|
|
4330
|
+
/**
|
|
4331
|
+
* Server Error
|
|
4332
|
+
*/
|
|
4333
|
+
501: {
|
|
4334
|
+
error?: {
|
|
4335
|
+
code?: string | null;
|
|
4336
|
+
message?: string | null;
|
|
4337
|
+
details?: string | null;
|
|
4338
|
+
data?: {
|
|
4339
|
+
[key: string]: unknown;
|
|
4340
|
+
} | null;
|
|
4341
|
+
validationErrors?: Array<{
|
|
4342
|
+
message?: string | null;
|
|
4343
|
+
members?: Array<(string)> | null;
|
|
4344
|
+
}> | null;
|
|
4345
|
+
};
|
|
4346
|
+
};
|
|
4347
|
+
};
|
|
4348
|
+
};
|
|
4349
|
+
};
|
|
4350
|
+
'/api/project-service/public/projects': {
|
|
4351
|
+
get: {
|
|
4352
|
+
req: GetApiProjectServicePublicProjectsData;
|
|
4353
|
+
res: {
|
|
4354
|
+
/**
|
|
4355
|
+
* Success
|
|
4356
|
+
*/
|
|
4357
|
+
200: {
|
|
4358
|
+
items?: Array<{
|
|
4359
|
+
id?: string;
|
|
4360
|
+
creationTime?: string;
|
|
4361
|
+
creatorId?: string | null;
|
|
4362
|
+
lastModificationTime?: string | null;
|
|
4363
|
+
lastModifierId?: string | null;
|
|
4364
|
+
isDeleted?: boolean;
|
|
4365
|
+
deleterId?: string | null;
|
|
4366
|
+
deletionTime?: string | null;
|
|
4367
|
+
projectName?: string | null;
|
|
4368
|
+
projectDefinition?: string | null;
|
|
4369
|
+
cashValue?: number;
|
|
4370
|
+
fundCollectionType?: string | null;
|
|
4371
|
+
additionalFundRate?: string | null;
|
|
4372
|
+
qualifiedFundRate?: string | null;
|
|
4373
|
+
fundNominalAmount?: number;
|
|
4374
|
+
fundableAmount?: number;
|
|
4375
|
+
overFunding?: string;
|
|
4376
|
+
privilege?: string | null;
|
|
4377
|
+
projectStartDate?: string;
|
|
4378
|
+
projectEndDate?: string;
|
|
4379
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
4380
|
+
type?: 0 | 1 | 2 | 3;
|
|
4381
|
+
}> | null;
|
|
4382
|
+
totalCount?: number;
|
|
2205
4383
|
};
|
|
2206
4384
|
/**
|
|
2207
4385
|
* Bad Request
|