@ayasofyazilim/saas 0.0.12 → 0.0.14
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/AccountService/schemas.gen.ts +11 -4
- package/AccountService/types.gen.ts +8 -0
- package/AdministrationService/schemas.gen.ts +11 -7
- package/AdministrationService/types.gen.ts +5 -0
- package/BackerService/BackerServiceClient.ts +44 -0
- package/BackerService/core/ApiError.ts +21 -0
- package/BackerService/core/ApiRequestOptions.ts +13 -0
- package/BackerService/core/ApiResult.ts +7 -0
- package/BackerService/core/BaseHttpRequest.ts +10 -0
- package/BackerService/core/CancelablePromise.ts +126 -0
- package/BackerService/core/FetchHttpRequest.ts +22 -0
- package/BackerService/core/OpenAPI.ts +56 -0
- package/BackerService/core/request.ts +341 -0
- package/BackerService/index.ts +9 -0
- package/BackerService/schemas.gen.ts +8991 -0
- package/BackerService/services.gen.ts +270 -0
- package/BackerService/types.gen.ts +6611 -0
- package/IdentityService/schemas.gen.ts +28 -10
- package/IdentityService/types.gen.ts +30 -0
- package/ProjectService/ProjectServiceClient.ts +3 -9
- package/ProjectService/schemas.gen.ts +26 -723
- package/ProjectService/services.gen.ts +8 -348
- package/ProjectService/types.gen.ts +36 -2252
- package/ProjectService.json +2937 -2937
- package/SaasService/schemas.gen.ts +5 -5
- package/SettingService/SettingServiceClient.ts +53 -0
- package/SettingService/core/ApiError.ts +21 -0
- package/SettingService/core/ApiRequestOptions.ts +13 -0
- package/SettingService/core/ApiResult.ts +7 -0
- package/SettingService/core/BaseHttpRequest.ts +10 -0
- package/SettingService/core/CancelablePromise.ts +126 -0
- package/SettingService/core/FetchHttpRequest.ts +22 -0
- package/SettingService/core/OpenAPI.ts +56 -0
- package/SettingService/core/request.ts +341 -0
- package/SettingService/index.ts +9 -0
- package/SettingService/schemas.gen.ts +1522 -0
- package/SettingService/services.gen.ts +317 -0
- package/SettingService/types.gen.ts +981 -0
- package/generator.mjs +55 -25
- package/package.json +4 -2
- package/swagger.json +4794 -4794
|
@@ -1,189 +1,5 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
|
|
3
|
-
export type AbpForDeploy_ProjectService_ProjectSectionRelations_CreateUpdateProjectSectionRelationDto = {
|
|
4
|
-
id?: string;
|
|
5
|
-
creationTime?: string;
|
|
6
|
-
creatorId?: string | null;
|
|
7
|
-
lastModificationTime?: string | null;
|
|
8
|
-
lastModifierId?: string | null;
|
|
9
|
-
isDeleted?: boolean;
|
|
10
|
-
deleterId?: string | null;
|
|
11
|
-
deletionTime?: string | null;
|
|
12
|
-
projectId?: string;
|
|
13
|
-
projectSectionId?: string;
|
|
14
|
-
value?: string | null;
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
export type AbpForDeploy_ProjectService_ProjectSectionRelations_ProjectSectionRelationDto = {
|
|
18
|
-
id?: string;
|
|
19
|
-
creationTime?: string;
|
|
20
|
-
creatorId?: string | null;
|
|
21
|
-
lastModificationTime?: string | null;
|
|
22
|
-
lastModifierId?: string | null;
|
|
23
|
-
isDeleted?: boolean;
|
|
24
|
-
deleterId?: string | null;
|
|
25
|
-
deletionTime?: string | null;
|
|
26
|
-
projectId?: string;
|
|
27
|
-
projectSectionId?: string;
|
|
28
|
-
value?: string | null;
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
export type AbpForDeploy_ProjectService_ProjectSections_CreateUpdateProjectSectionDto = {
|
|
32
|
-
id?: string;
|
|
33
|
-
creationTime?: string;
|
|
34
|
-
creatorId?: string | null;
|
|
35
|
-
lastModificationTime?: string | null;
|
|
36
|
-
lastModifierId?: string | null;
|
|
37
|
-
isDeleted?: boolean;
|
|
38
|
-
deleterId?: string | null;
|
|
39
|
-
deletionTime?: string | null;
|
|
40
|
-
name?: string | null;
|
|
41
|
-
isDefault?: boolean;
|
|
42
|
-
isOptional?: boolean;
|
|
43
|
-
};
|
|
44
|
-
|
|
45
|
-
export type AbpForDeploy_ProjectService_ProjectSections_ProjectSectionDto = {
|
|
46
|
-
id?: string;
|
|
47
|
-
creationTime?: string;
|
|
48
|
-
creatorId?: string | null;
|
|
49
|
-
lastModificationTime?: string | null;
|
|
50
|
-
lastModifierId?: string | null;
|
|
51
|
-
isDeleted?: boolean;
|
|
52
|
-
deleterId?: string | null;
|
|
53
|
-
deletionTime?: string | null;
|
|
54
|
-
name?: string | null;
|
|
55
|
-
isDefault?: boolean;
|
|
56
|
-
isOptional?: boolean;
|
|
57
|
-
};
|
|
58
|
-
|
|
59
|
-
export type AbpForDeploy_ProjectService_ProjectSections_ProjectSectionRelationDetailDto = {
|
|
60
|
-
id?: string;
|
|
61
|
-
sectionId?: string;
|
|
62
|
-
name?: string | null;
|
|
63
|
-
value?: string | null;
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
export type AbpForDeploy_ProjectService_Projects_ProjectDto = {
|
|
67
|
-
id?: string;
|
|
68
|
-
creationTime?: string;
|
|
69
|
-
creatorId?: string | null;
|
|
70
|
-
lastModificationTime?: string | null;
|
|
71
|
-
lastModifierId?: string | null;
|
|
72
|
-
isDeleted?: boolean;
|
|
73
|
-
deleterId?: string | null;
|
|
74
|
-
deletionTime?: string | null;
|
|
75
|
-
projectName?: string | null;
|
|
76
|
-
projectDefinition?: string | null;
|
|
77
|
-
cashValue?: number;
|
|
78
|
-
fundCollectionType?: string | null;
|
|
79
|
-
additionalFundRate?: string | null;
|
|
80
|
-
qualifiedFundRate?: string | null;
|
|
81
|
-
fundNominalAmount?: number;
|
|
82
|
-
fundableAmount?: number;
|
|
83
|
-
overFunding?: string;
|
|
84
|
-
privilege?: string | null;
|
|
85
|
-
projectStartDate?: string;
|
|
86
|
-
projectEndDate?: string;
|
|
87
|
-
organizationId?: string;
|
|
88
|
-
projectSectionRelationDetails?: Array<{
|
|
89
|
-
id?: string;
|
|
90
|
-
sectionId?: string;
|
|
91
|
-
name?: string | null;
|
|
92
|
-
value?: string | null;
|
|
93
|
-
}> | null;
|
|
94
|
-
};
|
|
95
|
-
|
|
96
|
-
export type AbpForDeploy_ProjectService_ProjectsDto_CreateUpdateProjectDto = {
|
|
97
|
-
id?: string;
|
|
98
|
-
creationTime?: string;
|
|
99
|
-
creatorId?: string | null;
|
|
100
|
-
lastModificationTime?: string | null;
|
|
101
|
-
lastModifierId?: string | null;
|
|
102
|
-
isDeleted?: boolean;
|
|
103
|
-
deleterId?: string | null;
|
|
104
|
-
deletionTime?: string | null;
|
|
105
|
-
projectName?: string | null;
|
|
106
|
-
projectDefinition?: string | null;
|
|
107
|
-
cashValue?: number;
|
|
108
|
-
additionalFundRate?: string | null;
|
|
109
|
-
qualifiedFundRate?: string | null;
|
|
110
|
-
fundNominalAmount?: number;
|
|
111
|
-
fundableAmount?: number;
|
|
112
|
-
overFunding?: string;
|
|
113
|
-
privilege?: string | null;
|
|
114
|
-
projectStartDate?: string;
|
|
115
|
-
projectEndDate?: string;
|
|
116
|
-
fundCollectionType?: string | null;
|
|
117
|
-
organizationId?: string;
|
|
118
|
-
};
|
|
119
|
-
|
|
120
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
|
|
121
|
-
items?: Array<{
|
|
122
|
-
id?: string;
|
|
123
|
-
creationTime?: string;
|
|
124
|
-
creatorId?: string | null;
|
|
125
|
-
lastModificationTime?: string | null;
|
|
126
|
-
lastModifierId?: string | null;
|
|
127
|
-
isDeleted?: boolean;
|
|
128
|
-
deleterId?: string | null;
|
|
129
|
-
deletionTime?: string | null;
|
|
130
|
-
projectId?: string;
|
|
131
|
-
projectSectionId?: string;
|
|
132
|
-
value?: string | null;
|
|
133
|
-
}> | null;
|
|
134
|
-
totalCount?: number;
|
|
135
|
-
};
|
|
136
|
-
|
|
137
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
|
|
138
|
-
items?: Array<{
|
|
139
|
-
id?: string;
|
|
140
|
-
creationTime?: string;
|
|
141
|
-
creatorId?: string | null;
|
|
142
|
-
lastModificationTime?: string | null;
|
|
143
|
-
lastModifierId?: string | null;
|
|
144
|
-
isDeleted?: boolean;
|
|
145
|
-
deleterId?: string | null;
|
|
146
|
-
deletionTime?: string | null;
|
|
147
|
-
name?: string | null;
|
|
148
|
-
isDefault?: boolean;
|
|
149
|
-
isOptional?: boolean;
|
|
150
|
-
}> | null;
|
|
151
|
-
totalCount?: number;
|
|
152
|
-
};
|
|
153
|
-
|
|
154
|
-
export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
|
|
155
|
-
items?: Array<{
|
|
156
|
-
id?: string;
|
|
157
|
-
creationTime?: string;
|
|
158
|
-
creatorId?: string | null;
|
|
159
|
-
lastModificationTime?: string | null;
|
|
160
|
-
lastModifierId?: string | null;
|
|
161
|
-
isDeleted?: boolean;
|
|
162
|
-
deleterId?: string | null;
|
|
163
|
-
deletionTime?: string | null;
|
|
164
|
-
projectName?: string | null;
|
|
165
|
-
projectDefinition?: string | null;
|
|
166
|
-
cashValue?: number;
|
|
167
|
-
fundCollectionType?: string | null;
|
|
168
|
-
additionalFundRate?: string | null;
|
|
169
|
-
qualifiedFundRate?: string | null;
|
|
170
|
-
fundNominalAmount?: number;
|
|
171
|
-
fundableAmount?: number;
|
|
172
|
-
overFunding?: string;
|
|
173
|
-
privilege?: string | null;
|
|
174
|
-
projectStartDate?: string;
|
|
175
|
-
projectEndDate?: string;
|
|
176
|
-
organizationId?: string;
|
|
177
|
-
projectSectionRelationDetails?: Array<{
|
|
178
|
-
id?: string;
|
|
179
|
-
sectionId?: string;
|
|
180
|
-
name?: string | null;
|
|
181
|
-
value?: string | null;
|
|
182
|
-
}> | null;
|
|
183
|
-
}> | null;
|
|
184
|
-
totalCount?: number;
|
|
185
|
-
};
|
|
186
|
-
|
|
187
3
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
|
|
188
4
|
grantedPolicies?: {
|
|
189
5
|
[key: string]: (boolean);
|
|
@@ -879,6 +695,14 @@ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
|
|
|
879
695
|
isAvailable?: boolean;
|
|
880
696
|
};
|
|
881
697
|
|
|
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
|
+
|
|
882
706
|
export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
|
|
883
707
|
isEnabled?: boolean;
|
|
884
708
|
};
|
|
@@ -1593,412 +1417,28 @@ export type GetApiAbpApplicationLocalizationResponse = {
|
|
|
1593
1417
|
} | null;
|
|
1594
1418
|
};
|
|
1595
1419
|
|
|
1596
|
-
export type
|
|
1597
|
-
|
|
1598
|
-
id?: string;
|
|
1599
|
-
creationTime?: string;
|
|
1600
|
-
creatorId?: string | null;
|
|
1601
|
-
lastModificationTime?: string | null;
|
|
1602
|
-
lastModifierId?: string | null;
|
|
1603
|
-
isDeleted?: boolean;
|
|
1604
|
-
deleterId?: string | null;
|
|
1605
|
-
deletionTime?: string | null;
|
|
1606
|
-
projectName?: string | null;
|
|
1607
|
-
projectDefinition?: string | null;
|
|
1608
|
-
cashValue?: number;
|
|
1609
|
-
additionalFundRate?: string | null;
|
|
1610
|
-
qualifiedFundRate?: string | null;
|
|
1611
|
-
fundNominalAmount?: number;
|
|
1612
|
-
fundableAmount?: number;
|
|
1613
|
-
overFunding?: string;
|
|
1614
|
-
privilege?: string | null;
|
|
1615
|
-
projectStartDate?: string;
|
|
1616
|
-
projectEndDate?: string;
|
|
1617
|
-
fundCollectionType?: string | null;
|
|
1618
|
-
organizationId?: string;
|
|
1619
|
-
};
|
|
1620
|
-
};
|
|
1621
|
-
|
|
1622
|
-
export type PostApiProjectServiceProjectsResponse = {
|
|
1623
|
-
id?: string;
|
|
1624
|
-
creationTime?: string;
|
|
1625
|
-
creatorId?: string | null;
|
|
1626
|
-
lastModificationTime?: string | null;
|
|
1627
|
-
lastModifierId?: string | null;
|
|
1628
|
-
isDeleted?: boolean;
|
|
1629
|
-
deleterId?: string | null;
|
|
1630
|
-
deletionTime?: string | null;
|
|
1631
|
-
projectName?: string | null;
|
|
1632
|
-
projectDefinition?: string | null;
|
|
1633
|
-
cashValue?: number;
|
|
1634
|
-
fundCollectionType?: string | null;
|
|
1635
|
-
additionalFundRate?: string | null;
|
|
1636
|
-
qualifiedFundRate?: string | null;
|
|
1637
|
-
fundNominalAmount?: number;
|
|
1638
|
-
fundableAmount?: number;
|
|
1639
|
-
overFunding?: string;
|
|
1640
|
-
privilege?: string | null;
|
|
1641
|
-
projectStartDate?: string;
|
|
1642
|
-
projectEndDate?: string;
|
|
1643
|
-
organizationId?: string;
|
|
1644
|
-
projectSectionRelationDetails?: Array<{
|
|
1645
|
-
id?: string;
|
|
1646
|
-
sectionId?: string;
|
|
1647
|
-
name?: string | null;
|
|
1648
|
-
value?: string | null;
|
|
1649
|
-
}> | null;
|
|
1650
|
-
};
|
|
1651
|
-
|
|
1652
|
-
export type GetApiProjectServiceProjectsData = {
|
|
1653
|
-
maxResultCount?: number;
|
|
1654
|
-
skipCount?: number;
|
|
1655
|
-
sorting?: string;
|
|
1656
|
-
};
|
|
1657
|
-
|
|
1658
|
-
export type GetApiProjectServiceProjectsResponse = {
|
|
1659
|
-
items?: Array<{
|
|
1660
|
-
id?: string;
|
|
1661
|
-
creationTime?: string;
|
|
1662
|
-
creatorId?: string | null;
|
|
1663
|
-
lastModificationTime?: string | null;
|
|
1664
|
-
lastModifierId?: string | null;
|
|
1665
|
-
isDeleted?: boolean;
|
|
1666
|
-
deleterId?: string | null;
|
|
1667
|
-
deletionTime?: string | null;
|
|
1668
|
-
projectName?: string | null;
|
|
1669
|
-
projectDefinition?: string | null;
|
|
1670
|
-
cashValue?: number;
|
|
1671
|
-
fundCollectionType?: string | null;
|
|
1672
|
-
additionalFundRate?: string | null;
|
|
1673
|
-
qualifiedFundRate?: string | null;
|
|
1674
|
-
fundNominalAmount?: number;
|
|
1675
|
-
fundableAmount?: number;
|
|
1676
|
-
overFunding?: string;
|
|
1677
|
-
privilege?: string | null;
|
|
1678
|
-
projectStartDate?: string;
|
|
1679
|
-
projectEndDate?: string;
|
|
1680
|
-
organizationId?: string;
|
|
1681
|
-
projectSectionRelationDetails?: Array<{
|
|
1682
|
-
id?: string;
|
|
1683
|
-
sectionId?: string;
|
|
1684
|
-
name?: string | null;
|
|
1685
|
-
value?: string | null;
|
|
1686
|
-
}> | null;
|
|
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
|
-
organizationId?: string;
|
|
1723
|
-
projectSectionRelationDetails?: Array<{
|
|
1724
|
-
id?: string;
|
|
1725
|
-
sectionId?: string;
|
|
1726
|
-
name?: string | null;
|
|
1727
|
-
value?: string | null;
|
|
1728
|
-
}> | null;
|
|
1729
|
-
};
|
|
1730
|
-
|
|
1731
|
-
export type PutApiProjectServiceProjectsByIdData = {
|
|
1732
|
-
id: string;
|
|
1733
|
-
requestBody?: {
|
|
1734
|
-
id?: string;
|
|
1735
|
-
creationTime?: string;
|
|
1736
|
-
creatorId?: string | null;
|
|
1737
|
-
lastModificationTime?: string | null;
|
|
1738
|
-
lastModifierId?: string | null;
|
|
1739
|
-
isDeleted?: boolean;
|
|
1740
|
-
deleterId?: string | null;
|
|
1741
|
-
deletionTime?: string | null;
|
|
1742
|
-
projectName?: string | null;
|
|
1743
|
-
projectDefinition?: string | null;
|
|
1744
|
-
cashValue?: number;
|
|
1745
|
-
additionalFundRate?: string | null;
|
|
1746
|
-
qualifiedFundRate?: string | null;
|
|
1747
|
-
fundNominalAmount?: number;
|
|
1748
|
-
fundableAmount?: number;
|
|
1749
|
-
overFunding?: string;
|
|
1750
|
-
privilege?: string | null;
|
|
1751
|
-
projectStartDate?: string;
|
|
1752
|
-
projectEndDate?: string;
|
|
1753
|
-
fundCollectionType?: string | null;
|
|
1754
|
-
organizationId?: string;
|
|
1755
|
-
};
|
|
1756
|
-
};
|
|
1757
|
-
|
|
1758
|
-
export type PutApiProjectServiceProjectsByIdResponse = {
|
|
1759
|
-
id?: string;
|
|
1760
|
-
creationTime?: string;
|
|
1761
|
-
creatorId?: string | null;
|
|
1762
|
-
lastModificationTime?: string | null;
|
|
1763
|
-
lastModifierId?: string | null;
|
|
1764
|
-
isDeleted?: boolean;
|
|
1765
|
-
deleterId?: string | null;
|
|
1766
|
-
deletionTime?: string | null;
|
|
1767
|
-
projectName?: string | null;
|
|
1768
|
-
projectDefinition?: string | null;
|
|
1769
|
-
cashValue?: number;
|
|
1770
|
-
fundCollectionType?: string | null;
|
|
1771
|
-
additionalFundRate?: string | null;
|
|
1772
|
-
qualifiedFundRate?: string | null;
|
|
1773
|
-
fundNominalAmount?: number;
|
|
1774
|
-
fundableAmount?: number;
|
|
1775
|
-
overFunding?: string;
|
|
1776
|
-
privilege?: string | null;
|
|
1777
|
-
projectStartDate?: string;
|
|
1778
|
-
projectEndDate?: string;
|
|
1779
|
-
organizationId?: string;
|
|
1780
|
-
projectSectionRelationDetails?: Array<{
|
|
1781
|
-
id?: string;
|
|
1782
|
-
sectionId?: string;
|
|
1783
|
-
name?: string | null;
|
|
1784
|
-
value?: string | null;
|
|
1785
|
-
}> | null;
|
|
1786
|
-
};
|
|
1787
|
-
|
|
1788
|
-
export type PostApiProjectSectionServiceProjectSectionData = {
|
|
1789
|
-
requestBody?: {
|
|
1790
|
-
id?: string;
|
|
1791
|
-
creationTime?: string;
|
|
1792
|
-
creatorId?: string | null;
|
|
1793
|
-
lastModificationTime?: string | null;
|
|
1794
|
-
lastModifierId?: string | null;
|
|
1795
|
-
isDeleted?: boolean;
|
|
1796
|
-
deleterId?: string | null;
|
|
1797
|
-
deletionTime?: string | null;
|
|
1798
|
-
name?: string | null;
|
|
1799
|
-
isDefault?: boolean;
|
|
1800
|
-
isOptional?: boolean;
|
|
1801
|
-
};
|
|
1802
|
-
};
|
|
1803
|
-
|
|
1804
|
-
export type PostApiProjectSectionServiceProjectSectionResponse = {
|
|
1805
|
-
id?: string;
|
|
1806
|
-
creationTime?: string;
|
|
1807
|
-
creatorId?: string | null;
|
|
1808
|
-
lastModificationTime?: string | null;
|
|
1809
|
-
lastModifierId?: string | null;
|
|
1810
|
-
isDeleted?: boolean;
|
|
1811
|
-
deleterId?: string | null;
|
|
1812
|
-
deletionTime?: string | null;
|
|
1813
|
-
name?: string | null;
|
|
1814
|
-
isDefault?: boolean;
|
|
1815
|
-
isOptional?: boolean;
|
|
1816
|
-
};
|
|
1817
|
-
|
|
1818
|
-
export type DeleteApiProjectSectionServiceProjectSectionData = {
|
|
1819
|
-
id?: string;
|
|
1820
|
-
};
|
|
1821
|
-
|
|
1822
|
-
export type DeleteApiProjectSectionServiceProjectSectionResponse = unknown;
|
|
1823
|
-
|
|
1824
|
-
export type GetApiProjectSectionServiceProjectSectionData = {
|
|
1825
|
-
maxResultCount?: number;
|
|
1826
|
-
skipCount?: number;
|
|
1827
|
-
sorting?: string;
|
|
1828
|
-
};
|
|
1829
|
-
|
|
1830
|
-
export type GetApiProjectSectionServiceProjectSectionResponse = {
|
|
1831
|
-
items?: Array<{
|
|
1832
|
-
id?: string;
|
|
1833
|
-
creationTime?: string;
|
|
1834
|
-
creatorId?: string | null;
|
|
1835
|
-
lastModificationTime?: string | null;
|
|
1836
|
-
lastModifierId?: string | null;
|
|
1837
|
-
isDeleted?: boolean;
|
|
1838
|
-
deleterId?: string | null;
|
|
1839
|
-
deletionTime?: string | null;
|
|
1840
|
-
name?: string | null;
|
|
1841
|
-
isDefault?: boolean;
|
|
1842
|
-
isOptional?: boolean;
|
|
1843
|
-
}> | null;
|
|
1844
|
-
totalCount?: number;
|
|
1845
|
-
};
|
|
1846
|
-
|
|
1847
|
-
export type PutApiProjectSectionServiceProjectSectionData = {
|
|
1848
|
-
id?: string;
|
|
1849
|
-
requestBody?: {
|
|
1850
|
-
id?: string;
|
|
1851
|
-
creationTime?: string;
|
|
1852
|
-
creatorId?: string | null;
|
|
1853
|
-
lastModificationTime?: string | null;
|
|
1854
|
-
lastModifierId?: string | null;
|
|
1855
|
-
isDeleted?: boolean;
|
|
1856
|
-
deleterId?: string | null;
|
|
1857
|
-
deletionTime?: string | null;
|
|
1858
|
-
name?: string | null;
|
|
1859
|
-
isDefault?: boolean;
|
|
1860
|
-
isOptional?: boolean;
|
|
1861
|
-
};
|
|
1420
|
+
export type GetApiAbpMultiTenancyTenantsByNameByNameData = {
|
|
1421
|
+
name: string;
|
|
1862
1422
|
};
|
|
1863
1423
|
|
|
1864
|
-
export type
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
creatorId?: string | null;
|
|
1868
|
-
lastModificationTime?: string | null;
|
|
1869
|
-
lastModifierId?: string | null;
|
|
1870
|
-
isDeleted?: boolean;
|
|
1871
|
-
deleterId?: string | null;
|
|
1872
|
-
deletionTime?: string | null;
|
|
1424
|
+
export type GetApiAbpMultiTenancyTenantsByNameByNameResponse = {
|
|
1425
|
+
success?: boolean;
|
|
1426
|
+
tenantId?: string | null;
|
|
1873
1427
|
name?: string | null;
|
|
1874
|
-
|
|
1875
|
-
|
|
1428
|
+
normalizedName?: string | null;
|
|
1429
|
+
isActive?: boolean;
|
|
1876
1430
|
};
|
|
1877
1431
|
|
|
1878
|
-
export type
|
|
1432
|
+
export type GetApiAbpMultiTenancyTenantsByIdByIdData = {
|
|
1879
1433
|
id: string;
|
|
1880
1434
|
};
|
|
1881
1435
|
|
|
1882
|
-
export type
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
creatorId?: string | null;
|
|
1886
|
-
lastModificationTime?: string | null;
|
|
1887
|
-
lastModifierId?: string | null;
|
|
1888
|
-
isDeleted?: boolean;
|
|
1889
|
-
deleterId?: string | null;
|
|
1890
|
-
deletionTime?: string | null;
|
|
1436
|
+
export type GetApiAbpMultiTenancyTenantsByIdByIdResponse = {
|
|
1437
|
+
success?: boolean;
|
|
1438
|
+
tenantId?: string | null;
|
|
1891
1439
|
name?: string | null;
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
};
|
|
1895
|
-
|
|
1896
|
-
export type PostApiProjectSectionRelationServiceProjectSectionRelationData = {
|
|
1897
|
-
requestBody?: {
|
|
1898
|
-
id?: string;
|
|
1899
|
-
creationTime?: string;
|
|
1900
|
-
creatorId?: string | null;
|
|
1901
|
-
lastModificationTime?: string | null;
|
|
1902
|
-
lastModifierId?: string | null;
|
|
1903
|
-
isDeleted?: boolean;
|
|
1904
|
-
deleterId?: string | null;
|
|
1905
|
-
deletionTime?: string | null;
|
|
1906
|
-
projectId?: string;
|
|
1907
|
-
projectSectionId?: string;
|
|
1908
|
-
value?: string | null;
|
|
1909
|
-
};
|
|
1910
|
-
};
|
|
1911
|
-
|
|
1912
|
-
export type PostApiProjectSectionRelationServiceProjectSectionRelationResponse = {
|
|
1913
|
-
id?: string;
|
|
1914
|
-
creationTime?: string;
|
|
1915
|
-
creatorId?: string | null;
|
|
1916
|
-
lastModificationTime?: string | null;
|
|
1917
|
-
lastModifierId?: string | null;
|
|
1918
|
-
isDeleted?: boolean;
|
|
1919
|
-
deleterId?: string | null;
|
|
1920
|
-
deletionTime?: string | null;
|
|
1921
|
-
projectId?: string;
|
|
1922
|
-
projectSectionId?: string;
|
|
1923
|
-
value?: string | null;
|
|
1924
|
-
};
|
|
1925
|
-
|
|
1926
|
-
export type DeleteApiProjectSectionRelationServiceProjectSectionRelationData = {
|
|
1927
|
-
id?: string;
|
|
1928
|
-
};
|
|
1929
|
-
|
|
1930
|
-
export type DeleteApiProjectSectionRelationServiceProjectSectionRelationResponse = unknown;
|
|
1931
|
-
|
|
1932
|
-
export type GetApiProjectSectionRelationServiceProjectSectionRelationData = {
|
|
1933
|
-
maxResultCount?: number;
|
|
1934
|
-
skipCount?: number;
|
|
1935
|
-
sorting?: string;
|
|
1936
|
-
};
|
|
1937
|
-
|
|
1938
|
-
export type GetApiProjectSectionRelationServiceProjectSectionRelationResponse = {
|
|
1939
|
-
items?: Array<{
|
|
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
|
-
}> | null;
|
|
1952
|
-
totalCount?: number;
|
|
1953
|
-
};
|
|
1954
|
-
|
|
1955
|
-
export type GetApiProjectSectionRelationServiceProjectSectionRelationByIdData = {
|
|
1956
|
-
id: string;
|
|
1957
|
-
};
|
|
1958
|
-
|
|
1959
|
-
export type GetApiProjectSectionRelationServiceProjectSectionRelationByIdResponse = {
|
|
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
|
-
projectId?: string;
|
|
1969
|
-
projectSectionId?: string;
|
|
1970
|
-
value?: string | null;
|
|
1971
|
-
};
|
|
1972
|
-
|
|
1973
|
-
export type PutApiProjectSectionRelationServiceProjectSectionRelationByIdData = {
|
|
1974
|
-
id: string;
|
|
1975
|
-
requestBody?: {
|
|
1976
|
-
id?: string;
|
|
1977
|
-
creationTime?: string;
|
|
1978
|
-
creatorId?: string | null;
|
|
1979
|
-
lastModificationTime?: string | null;
|
|
1980
|
-
lastModifierId?: string | null;
|
|
1981
|
-
isDeleted?: boolean;
|
|
1982
|
-
deleterId?: string | null;
|
|
1983
|
-
deletionTime?: string | null;
|
|
1984
|
-
projectId?: string;
|
|
1985
|
-
projectSectionId?: string;
|
|
1986
|
-
value?: string | null;
|
|
1987
|
-
};
|
|
1988
|
-
};
|
|
1989
|
-
|
|
1990
|
-
export type PutApiProjectSectionRelationServiceProjectSectionRelationByIdResponse = {
|
|
1991
|
-
id?: string;
|
|
1992
|
-
creationTime?: string;
|
|
1993
|
-
creatorId?: string | null;
|
|
1994
|
-
lastModificationTime?: string | null;
|
|
1995
|
-
lastModifierId?: string | null;
|
|
1996
|
-
isDeleted?: boolean;
|
|
1997
|
-
deleterId?: string | null;
|
|
1998
|
-
deletionTime?: string | null;
|
|
1999
|
-
projectId?: string;
|
|
2000
|
-
projectSectionId?: string;
|
|
2001
|
-
value?: string | null;
|
|
1440
|
+
normalizedName?: string | null;
|
|
1441
|
+
isActive?: boolean;
|
|
2002
1442
|
};
|
|
2003
1443
|
|
|
2004
1444
|
export type $OpenApiTs = {
|
|
@@ -2630,183 +2070,19 @@ export type $OpenApiTs = {
|
|
|
2630
2070
|
};
|
|
2631
2071
|
};
|
|
2632
2072
|
};
|
|
2633
|
-
'/api/
|
|
2634
|
-
post: {
|
|
2635
|
-
req: PostApiProjectServiceProjectsData;
|
|
2636
|
-
res: {
|
|
2637
|
-
/**
|
|
2638
|
-
* Success
|
|
2639
|
-
*/
|
|
2640
|
-
200: {
|
|
2641
|
-
id?: string;
|
|
2642
|
-
creationTime?: string;
|
|
2643
|
-
creatorId?: string | null;
|
|
2644
|
-
lastModificationTime?: string | null;
|
|
2645
|
-
lastModifierId?: string | null;
|
|
2646
|
-
isDeleted?: boolean;
|
|
2647
|
-
deleterId?: string | null;
|
|
2648
|
-
deletionTime?: string | null;
|
|
2649
|
-
projectName?: string | null;
|
|
2650
|
-
projectDefinition?: string | null;
|
|
2651
|
-
cashValue?: number;
|
|
2652
|
-
fundCollectionType?: string | null;
|
|
2653
|
-
additionalFundRate?: string | null;
|
|
2654
|
-
qualifiedFundRate?: string | null;
|
|
2655
|
-
fundNominalAmount?: number;
|
|
2656
|
-
fundableAmount?: number;
|
|
2657
|
-
overFunding?: string;
|
|
2658
|
-
privilege?: string | null;
|
|
2659
|
-
projectStartDate?: string;
|
|
2660
|
-
projectEndDate?: string;
|
|
2661
|
-
organizationId?: string;
|
|
2662
|
-
projectSectionRelationDetails?: Array<{
|
|
2663
|
-
id?: string;
|
|
2664
|
-
sectionId?: string;
|
|
2665
|
-
name?: string | null;
|
|
2666
|
-
value?: string | null;
|
|
2667
|
-
}> | null;
|
|
2668
|
-
};
|
|
2669
|
-
/**
|
|
2670
|
-
* Bad Request
|
|
2671
|
-
*/
|
|
2672
|
-
400: {
|
|
2673
|
-
error?: {
|
|
2674
|
-
code?: string | null;
|
|
2675
|
-
message?: string | null;
|
|
2676
|
-
details?: string | null;
|
|
2677
|
-
data?: {
|
|
2678
|
-
[key: string]: unknown;
|
|
2679
|
-
} | null;
|
|
2680
|
-
validationErrors?: Array<{
|
|
2681
|
-
message?: string | null;
|
|
2682
|
-
members?: Array<(string)> | null;
|
|
2683
|
-
}> | null;
|
|
2684
|
-
};
|
|
2685
|
-
};
|
|
2686
|
-
/**
|
|
2687
|
-
* Unauthorized
|
|
2688
|
-
*/
|
|
2689
|
-
401: {
|
|
2690
|
-
error?: {
|
|
2691
|
-
code?: string | null;
|
|
2692
|
-
message?: string | null;
|
|
2693
|
-
details?: string | null;
|
|
2694
|
-
data?: {
|
|
2695
|
-
[key: string]: unknown;
|
|
2696
|
-
} | null;
|
|
2697
|
-
validationErrors?: Array<{
|
|
2698
|
-
message?: string | null;
|
|
2699
|
-
members?: Array<(string)> | null;
|
|
2700
|
-
}> | null;
|
|
2701
|
-
};
|
|
2702
|
-
};
|
|
2703
|
-
/**
|
|
2704
|
-
* Forbidden
|
|
2705
|
-
*/
|
|
2706
|
-
403: {
|
|
2707
|
-
error?: {
|
|
2708
|
-
code?: string | null;
|
|
2709
|
-
message?: string | null;
|
|
2710
|
-
details?: string | null;
|
|
2711
|
-
data?: {
|
|
2712
|
-
[key: string]: unknown;
|
|
2713
|
-
} | null;
|
|
2714
|
-
validationErrors?: Array<{
|
|
2715
|
-
message?: string | null;
|
|
2716
|
-
members?: Array<(string)> | null;
|
|
2717
|
-
}> | null;
|
|
2718
|
-
};
|
|
2719
|
-
};
|
|
2720
|
-
/**
|
|
2721
|
-
* Not Found
|
|
2722
|
-
*/
|
|
2723
|
-
404: {
|
|
2724
|
-
error?: {
|
|
2725
|
-
code?: string | null;
|
|
2726
|
-
message?: string | null;
|
|
2727
|
-
details?: string | null;
|
|
2728
|
-
data?: {
|
|
2729
|
-
[key: string]: unknown;
|
|
2730
|
-
} | null;
|
|
2731
|
-
validationErrors?: Array<{
|
|
2732
|
-
message?: string | null;
|
|
2733
|
-
members?: Array<(string)> | null;
|
|
2734
|
-
}> | null;
|
|
2735
|
-
};
|
|
2736
|
-
};
|
|
2737
|
-
/**
|
|
2738
|
-
* Server Error
|
|
2739
|
-
*/
|
|
2740
|
-
500: {
|
|
2741
|
-
error?: {
|
|
2742
|
-
code?: string | null;
|
|
2743
|
-
message?: string | null;
|
|
2744
|
-
details?: string | null;
|
|
2745
|
-
data?: {
|
|
2746
|
-
[key: string]: unknown;
|
|
2747
|
-
} | null;
|
|
2748
|
-
validationErrors?: Array<{
|
|
2749
|
-
message?: string | null;
|
|
2750
|
-
members?: Array<(string)> | null;
|
|
2751
|
-
}> | null;
|
|
2752
|
-
};
|
|
2753
|
-
};
|
|
2754
|
-
/**
|
|
2755
|
-
* Server Error
|
|
2756
|
-
*/
|
|
2757
|
-
501: {
|
|
2758
|
-
error?: {
|
|
2759
|
-
code?: string | null;
|
|
2760
|
-
message?: string | null;
|
|
2761
|
-
details?: string | null;
|
|
2762
|
-
data?: {
|
|
2763
|
-
[key: string]: unknown;
|
|
2764
|
-
} | null;
|
|
2765
|
-
validationErrors?: Array<{
|
|
2766
|
-
message?: string | null;
|
|
2767
|
-
members?: Array<(string)> | null;
|
|
2768
|
-
}> | null;
|
|
2769
|
-
};
|
|
2770
|
-
};
|
|
2771
|
-
};
|
|
2772
|
-
};
|
|
2073
|
+
'/api/abp/multi-tenancy/tenants/by-name/{name}': {
|
|
2773
2074
|
get: {
|
|
2774
|
-
req:
|
|
2075
|
+
req: GetApiAbpMultiTenancyTenantsByNameByNameData;
|
|
2775
2076
|
res: {
|
|
2776
2077
|
/**
|
|
2777
2078
|
* Success
|
|
2778
2079
|
*/
|
|
2779
2080
|
200: {
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
lastModifierId?: string | null;
|
|
2786
|
-
isDeleted?: boolean;
|
|
2787
|
-
deleterId?: string | null;
|
|
2788
|
-
deletionTime?: string | null;
|
|
2789
|
-
projectName?: string | null;
|
|
2790
|
-
projectDefinition?: string | null;
|
|
2791
|
-
cashValue?: number;
|
|
2792
|
-
fundCollectionType?: string | null;
|
|
2793
|
-
additionalFundRate?: string | null;
|
|
2794
|
-
qualifiedFundRate?: string | null;
|
|
2795
|
-
fundNominalAmount?: number;
|
|
2796
|
-
fundableAmount?: number;
|
|
2797
|
-
overFunding?: string;
|
|
2798
|
-
privilege?: string | null;
|
|
2799
|
-
projectStartDate?: string;
|
|
2800
|
-
projectEndDate?: string;
|
|
2801
|
-
organizationId?: string;
|
|
2802
|
-
projectSectionRelationDetails?: Array<{
|
|
2803
|
-
id?: string;
|
|
2804
|
-
sectionId?: string;
|
|
2805
|
-
name?: string | null;
|
|
2806
|
-
value?: string | null;
|
|
2807
|
-
}> | null;
|
|
2808
|
-
}> | null;
|
|
2809
|
-
totalCount?: number;
|
|
2081
|
+
success?: boolean;
|
|
2082
|
+
tenantId?: string | null;
|
|
2083
|
+
name?: string | null;
|
|
2084
|
+
normalizedName?: string | null;
|
|
2085
|
+
isActive?: boolean;
|
|
2810
2086
|
};
|
|
2811
2087
|
/**
|
|
2812
2088
|
* Bad Request
|
|
@@ -2913,1511 +2189,19 @@ export type $OpenApiTs = {
|
|
|
2913
2189
|
};
|
|
2914
2190
|
};
|
|
2915
2191
|
};
|
|
2916
|
-
'/api/
|
|
2917
|
-
|
|
2918
|
-
req:
|
|
2919
|
-
res: {
|
|
2920
|
-
/**
|
|
2921
|
-
* Success
|
|
2922
|
-
*/
|
|
2923
|
-
200: unknown;
|
|
2924
|
-
/**
|
|
2925
|
-
* Bad Request
|
|
2926
|
-
*/
|
|
2927
|
-
400: {
|
|
2928
|
-
error?: {
|
|
2929
|
-
code?: string | null;
|
|
2930
|
-
message?: string | null;
|
|
2931
|
-
details?: string | null;
|
|
2932
|
-
data?: {
|
|
2933
|
-
[key: string]: unknown;
|
|
2934
|
-
} | null;
|
|
2935
|
-
validationErrors?: Array<{
|
|
2936
|
-
message?: string | null;
|
|
2937
|
-
members?: Array<(string)> | null;
|
|
2938
|
-
}> | null;
|
|
2939
|
-
};
|
|
2940
|
-
};
|
|
2941
|
-
/**
|
|
2942
|
-
* Unauthorized
|
|
2943
|
-
*/
|
|
2944
|
-
401: {
|
|
2945
|
-
error?: {
|
|
2946
|
-
code?: string | null;
|
|
2947
|
-
message?: string | null;
|
|
2948
|
-
details?: string | null;
|
|
2949
|
-
data?: {
|
|
2950
|
-
[key: string]: unknown;
|
|
2951
|
-
} | null;
|
|
2952
|
-
validationErrors?: Array<{
|
|
2953
|
-
message?: string | null;
|
|
2954
|
-
members?: Array<(string)> | null;
|
|
2955
|
-
}> | null;
|
|
2956
|
-
};
|
|
2957
|
-
};
|
|
2958
|
-
/**
|
|
2959
|
-
* Forbidden
|
|
2960
|
-
*/
|
|
2961
|
-
403: {
|
|
2962
|
-
error?: {
|
|
2963
|
-
code?: string | null;
|
|
2964
|
-
message?: string | null;
|
|
2965
|
-
details?: string | null;
|
|
2966
|
-
data?: {
|
|
2967
|
-
[key: string]: unknown;
|
|
2968
|
-
} | null;
|
|
2969
|
-
validationErrors?: Array<{
|
|
2970
|
-
message?: string | null;
|
|
2971
|
-
members?: Array<(string)> | null;
|
|
2972
|
-
}> | null;
|
|
2973
|
-
};
|
|
2974
|
-
};
|
|
2975
|
-
/**
|
|
2976
|
-
* Not Found
|
|
2977
|
-
*/
|
|
2978
|
-
404: {
|
|
2979
|
-
error?: {
|
|
2980
|
-
code?: string | null;
|
|
2981
|
-
message?: string | null;
|
|
2982
|
-
details?: string | null;
|
|
2983
|
-
data?: {
|
|
2984
|
-
[key: string]: unknown;
|
|
2985
|
-
} | null;
|
|
2986
|
-
validationErrors?: Array<{
|
|
2987
|
-
message?: string | null;
|
|
2988
|
-
members?: Array<(string)> | null;
|
|
2989
|
-
}> | null;
|
|
2990
|
-
};
|
|
2991
|
-
};
|
|
2992
|
-
/**
|
|
2993
|
-
* Server Error
|
|
2994
|
-
*/
|
|
2995
|
-
500: {
|
|
2996
|
-
error?: {
|
|
2997
|
-
code?: string | null;
|
|
2998
|
-
message?: string | null;
|
|
2999
|
-
details?: string | null;
|
|
3000
|
-
data?: {
|
|
3001
|
-
[key: string]: unknown;
|
|
3002
|
-
} | null;
|
|
3003
|
-
validationErrors?: Array<{
|
|
3004
|
-
message?: string | null;
|
|
3005
|
-
members?: Array<(string)> | null;
|
|
3006
|
-
}> | null;
|
|
3007
|
-
};
|
|
3008
|
-
};
|
|
3009
|
-
/**
|
|
3010
|
-
* Server Error
|
|
3011
|
-
*/
|
|
3012
|
-
501: {
|
|
3013
|
-
error?: {
|
|
3014
|
-
code?: string | null;
|
|
3015
|
-
message?: string | null;
|
|
3016
|
-
details?: string | null;
|
|
3017
|
-
data?: {
|
|
3018
|
-
[key: string]: unknown;
|
|
3019
|
-
} | null;
|
|
3020
|
-
validationErrors?: Array<{
|
|
3021
|
-
message?: string | null;
|
|
3022
|
-
members?: Array<(string)> | null;
|
|
3023
|
-
}> | null;
|
|
3024
|
-
};
|
|
3025
|
-
};
|
|
3026
|
-
};
|
|
3027
|
-
};
|
|
3028
|
-
get: {
|
|
3029
|
-
req: GetApiProjectServiceProjectsByIdData;
|
|
3030
|
-
res: {
|
|
3031
|
-
/**
|
|
3032
|
-
* Success
|
|
3033
|
-
*/
|
|
3034
|
-
200: {
|
|
3035
|
-
id?: string;
|
|
3036
|
-
creationTime?: string;
|
|
3037
|
-
creatorId?: string | null;
|
|
3038
|
-
lastModificationTime?: string | null;
|
|
3039
|
-
lastModifierId?: string | null;
|
|
3040
|
-
isDeleted?: boolean;
|
|
3041
|
-
deleterId?: string | null;
|
|
3042
|
-
deletionTime?: string | null;
|
|
3043
|
-
projectName?: string | null;
|
|
3044
|
-
projectDefinition?: string | null;
|
|
3045
|
-
cashValue?: number;
|
|
3046
|
-
fundCollectionType?: string | null;
|
|
3047
|
-
additionalFundRate?: string | null;
|
|
3048
|
-
qualifiedFundRate?: string | null;
|
|
3049
|
-
fundNominalAmount?: number;
|
|
3050
|
-
fundableAmount?: number;
|
|
3051
|
-
overFunding?: string;
|
|
3052
|
-
privilege?: string | null;
|
|
3053
|
-
projectStartDate?: string;
|
|
3054
|
-
projectEndDate?: string;
|
|
3055
|
-
organizationId?: string;
|
|
3056
|
-
projectSectionRelationDetails?: Array<{
|
|
3057
|
-
id?: string;
|
|
3058
|
-
sectionId?: string;
|
|
3059
|
-
name?: string | null;
|
|
3060
|
-
value?: string | null;
|
|
3061
|
-
}> | null;
|
|
3062
|
-
};
|
|
3063
|
-
/**
|
|
3064
|
-
* Bad Request
|
|
3065
|
-
*/
|
|
3066
|
-
400: {
|
|
3067
|
-
error?: {
|
|
3068
|
-
code?: string | null;
|
|
3069
|
-
message?: string | null;
|
|
3070
|
-
details?: string | null;
|
|
3071
|
-
data?: {
|
|
3072
|
-
[key: string]: unknown;
|
|
3073
|
-
} | null;
|
|
3074
|
-
validationErrors?: Array<{
|
|
3075
|
-
message?: string | null;
|
|
3076
|
-
members?: Array<(string)> | null;
|
|
3077
|
-
}> | null;
|
|
3078
|
-
};
|
|
3079
|
-
};
|
|
3080
|
-
/**
|
|
3081
|
-
* Unauthorized
|
|
3082
|
-
*/
|
|
3083
|
-
401: {
|
|
3084
|
-
error?: {
|
|
3085
|
-
code?: string | null;
|
|
3086
|
-
message?: string | null;
|
|
3087
|
-
details?: string | null;
|
|
3088
|
-
data?: {
|
|
3089
|
-
[key: string]: unknown;
|
|
3090
|
-
} | null;
|
|
3091
|
-
validationErrors?: Array<{
|
|
3092
|
-
message?: string | null;
|
|
3093
|
-
members?: Array<(string)> | null;
|
|
3094
|
-
}> | null;
|
|
3095
|
-
};
|
|
3096
|
-
};
|
|
3097
|
-
/**
|
|
3098
|
-
* Forbidden
|
|
3099
|
-
*/
|
|
3100
|
-
403: {
|
|
3101
|
-
error?: {
|
|
3102
|
-
code?: string | null;
|
|
3103
|
-
message?: string | null;
|
|
3104
|
-
details?: string | null;
|
|
3105
|
-
data?: {
|
|
3106
|
-
[key: string]: unknown;
|
|
3107
|
-
} | null;
|
|
3108
|
-
validationErrors?: Array<{
|
|
3109
|
-
message?: string | null;
|
|
3110
|
-
members?: Array<(string)> | null;
|
|
3111
|
-
}> | null;
|
|
3112
|
-
};
|
|
3113
|
-
};
|
|
3114
|
-
/**
|
|
3115
|
-
* Not Found
|
|
3116
|
-
*/
|
|
3117
|
-
404: {
|
|
3118
|
-
error?: {
|
|
3119
|
-
code?: string | null;
|
|
3120
|
-
message?: string | null;
|
|
3121
|
-
details?: string | null;
|
|
3122
|
-
data?: {
|
|
3123
|
-
[key: string]: unknown;
|
|
3124
|
-
} | null;
|
|
3125
|
-
validationErrors?: Array<{
|
|
3126
|
-
message?: string | null;
|
|
3127
|
-
members?: Array<(string)> | null;
|
|
3128
|
-
}> | null;
|
|
3129
|
-
};
|
|
3130
|
-
};
|
|
3131
|
-
/**
|
|
3132
|
-
* Server Error
|
|
3133
|
-
*/
|
|
3134
|
-
500: {
|
|
3135
|
-
error?: {
|
|
3136
|
-
code?: string | null;
|
|
3137
|
-
message?: string | null;
|
|
3138
|
-
details?: string | null;
|
|
3139
|
-
data?: {
|
|
3140
|
-
[key: string]: unknown;
|
|
3141
|
-
} | null;
|
|
3142
|
-
validationErrors?: Array<{
|
|
3143
|
-
message?: string | null;
|
|
3144
|
-
members?: Array<(string)> | null;
|
|
3145
|
-
}> | null;
|
|
3146
|
-
};
|
|
3147
|
-
};
|
|
3148
|
-
/**
|
|
3149
|
-
* Server Error
|
|
3150
|
-
*/
|
|
3151
|
-
501: {
|
|
3152
|
-
error?: {
|
|
3153
|
-
code?: string | null;
|
|
3154
|
-
message?: string | null;
|
|
3155
|
-
details?: string | null;
|
|
3156
|
-
data?: {
|
|
3157
|
-
[key: string]: unknown;
|
|
3158
|
-
} | null;
|
|
3159
|
-
validationErrors?: Array<{
|
|
3160
|
-
message?: string | null;
|
|
3161
|
-
members?: Array<(string)> | null;
|
|
3162
|
-
}> | null;
|
|
3163
|
-
};
|
|
3164
|
-
};
|
|
3165
|
-
};
|
|
3166
|
-
};
|
|
3167
|
-
put: {
|
|
3168
|
-
req: PutApiProjectServiceProjectsByIdData;
|
|
3169
|
-
res: {
|
|
3170
|
-
/**
|
|
3171
|
-
* Success
|
|
3172
|
-
*/
|
|
3173
|
-
200: {
|
|
3174
|
-
id?: string;
|
|
3175
|
-
creationTime?: string;
|
|
3176
|
-
creatorId?: string | null;
|
|
3177
|
-
lastModificationTime?: string | null;
|
|
3178
|
-
lastModifierId?: string | null;
|
|
3179
|
-
isDeleted?: boolean;
|
|
3180
|
-
deleterId?: string | null;
|
|
3181
|
-
deletionTime?: string | null;
|
|
3182
|
-
projectName?: string | null;
|
|
3183
|
-
projectDefinition?: string | null;
|
|
3184
|
-
cashValue?: number;
|
|
3185
|
-
fundCollectionType?: string | null;
|
|
3186
|
-
additionalFundRate?: string | null;
|
|
3187
|
-
qualifiedFundRate?: string | null;
|
|
3188
|
-
fundNominalAmount?: number;
|
|
3189
|
-
fundableAmount?: number;
|
|
3190
|
-
overFunding?: string;
|
|
3191
|
-
privilege?: string | null;
|
|
3192
|
-
projectStartDate?: string;
|
|
3193
|
-
projectEndDate?: string;
|
|
3194
|
-
organizationId?: string;
|
|
3195
|
-
projectSectionRelationDetails?: Array<{
|
|
3196
|
-
id?: string;
|
|
3197
|
-
sectionId?: string;
|
|
3198
|
-
name?: string | null;
|
|
3199
|
-
value?: string | null;
|
|
3200
|
-
}> | null;
|
|
3201
|
-
};
|
|
3202
|
-
/**
|
|
3203
|
-
* Bad Request
|
|
3204
|
-
*/
|
|
3205
|
-
400: {
|
|
3206
|
-
error?: {
|
|
3207
|
-
code?: string | null;
|
|
3208
|
-
message?: string | null;
|
|
3209
|
-
details?: string | null;
|
|
3210
|
-
data?: {
|
|
3211
|
-
[key: string]: unknown;
|
|
3212
|
-
} | null;
|
|
3213
|
-
validationErrors?: Array<{
|
|
3214
|
-
message?: string | null;
|
|
3215
|
-
members?: Array<(string)> | null;
|
|
3216
|
-
}> | null;
|
|
3217
|
-
};
|
|
3218
|
-
};
|
|
3219
|
-
/**
|
|
3220
|
-
* Unauthorized
|
|
3221
|
-
*/
|
|
3222
|
-
401: {
|
|
3223
|
-
error?: {
|
|
3224
|
-
code?: string | null;
|
|
3225
|
-
message?: string | null;
|
|
3226
|
-
details?: string | null;
|
|
3227
|
-
data?: {
|
|
3228
|
-
[key: string]: unknown;
|
|
3229
|
-
} | null;
|
|
3230
|
-
validationErrors?: Array<{
|
|
3231
|
-
message?: string | null;
|
|
3232
|
-
members?: Array<(string)> | null;
|
|
3233
|
-
}> | null;
|
|
3234
|
-
};
|
|
3235
|
-
};
|
|
3236
|
-
/**
|
|
3237
|
-
* Forbidden
|
|
3238
|
-
*/
|
|
3239
|
-
403: {
|
|
3240
|
-
error?: {
|
|
3241
|
-
code?: string | null;
|
|
3242
|
-
message?: string | null;
|
|
3243
|
-
details?: string | null;
|
|
3244
|
-
data?: {
|
|
3245
|
-
[key: string]: unknown;
|
|
3246
|
-
} | null;
|
|
3247
|
-
validationErrors?: Array<{
|
|
3248
|
-
message?: string | null;
|
|
3249
|
-
members?: Array<(string)> | null;
|
|
3250
|
-
}> | null;
|
|
3251
|
-
};
|
|
3252
|
-
};
|
|
3253
|
-
/**
|
|
3254
|
-
* Not Found
|
|
3255
|
-
*/
|
|
3256
|
-
404: {
|
|
3257
|
-
error?: {
|
|
3258
|
-
code?: string | null;
|
|
3259
|
-
message?: string | null;
|
|
3260
|
-
details?: string | null;
|
|
3261
|
-
data?: {
|
|
3262
|
-
[key: string]: unknown;
|
|
3263
|
-
} | null;
|
|
3264
|
-
validationErrors?: Array<{
|
|
3265
|
-
message?: string | null;
|
|
3266
|
-
members?: Array<(string)> | null;
|
|
3267
|
-
}> | null;
|
|
3268
|
-
};
|
|
3269
|
-
};
|
|
3270
|
-
/**
|
|
3271
|
-
* Server Error
|
|
3272
|
-
*/
|
|
3273
|
-
500: {
|
|
3274
|
-
error?: {
|
|
3275
|
-
code?: string | null;
|
|
3276
|
-
message?: string | null;
|
|
3277
|
-
details?: string | null;
|
|
3278
|
-
data?: {
|
|
3279
|
-
[key: string]: unknown;
|
|
3280
|
-
} | null;
|
|
3281
|
-
validationErrors?: Array<{
|
|
3282
|
-
message?: string | null;
|
|
3283
|
-
members?: Array<(string)> | null;
|
|
3284
|
-
}> | null;
|
|
3285
|
-
};
|
|
3286
|
-
};
|
|
3287
|
-
/**
|
|
3288
|
-
* Server Error
|
|
3289
|
-
*/
|
|
3290
|
-
501: {
|
|
3291
|
-
error?: {
|
|
3292
|
-
code?: string | null;
|
|
3293
|
-
message?: string | null;
|
|
3294
|
-
details?: string | null;
|
|
3295
|
-
data?: {
|
|
3296
|
-
[key: string]: unknown;
|
|
3297
|
-
} | null;
|
|
3298
|
-
validationErrors?: Array<{
|
|
3299
|
-
message?: string | null;
|
|
3300
|
-
members?: Array<(string)> | null;
|
|
3301
|
-
}> | null;
|
|
3302
|
-
};
|
|
3303
|
-
};
|
|
3304
|
-
};
|
|
3305
|
-
};
|
|
3306
|
-
};
|
|
3307
|
-
'/api/ProjectSectionService/projectSection': {
|
|
3308
|
-
post: {
|
|
3309
|
-
req: PostApiProjectSectionServiceProjectSectionData;
|
|
3310
|
-
res: {
|
|
3311
|
-
/**
|
|
3312
|
-
* Success
|
|
3313
|
-
*/
|
|
3314
|
-
200: {
|
|
3315
|
-
id?: string;
|
|
3316
|
-
creationTime?: string;
|
|
3317
|
-
creatorId?: string | null;
|
|
3318
|
-
lastModificationTime?: string | null;
|
|
3319
|
-
lastModifierId?: string | null;
|
|
3320
|
-
isDeleted?: boolean;
|
|
3321
|
-
deleterId?: string | null;
|
|
3322
|
-
deletionTime?: string | null;
|
|
3323
|
-
name?: string | null;
|
|
3324
|
-
isDefault?: boolean;
|
|
3325
|
-
isOptional?: boolean;
|
|
3326
|
-
};
|
|
3327
|
-
/**
|
|
3328
|
-
* Bad Request
|
|
3329
|
-
*/
|
|
3330
|
-
400: {
|
|
3331
|
-
error?: {
|
|
3332
|
-
code?: string | null;
|
|
3333
|
-
message?: string | null;
|
|
3334
|
-
details?: string | null;
|
|
3335
|
-
data?: {
|
|
3336
|
-
[key: string]: unknown;
|
|
3337
|
-
} | null;
|
|
3338
|
-
validationErrors?: Array<{
|
|
3339
|
-
message?: string | null;
|
|
3340
|
-
members?: Array<(string)> | null;
|
|
3341
|
-
}> | null;
|
|
3342
|
-
};
|
|
3343
|
-
};
|
|
3344
|
-
/**
|
|
3345
|
-
* Unauthorized
|
|
3346
|
-
*/
|
|
3347
|
-
401: {
|
|
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
|
-
* Forbidden
|
|
3363
|
-
*/
|
|
3364
|
-
403: {
|
|
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
|
-
* Not Found
|
|
3380
|
-
*/
|
|
3381
|
-
404: {
|
|
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
|
-
* Server Error
|
|
3397
|
-
*/
|
|
3398
|
-
500: {
|
|
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
|
-
501: {
|
|
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
|
-
};
|
|
3431
|
-
delete: {
|
|
3432
|
-
req: DeleteApiProjectSectionServiceProjectSectionData;
|
|
3433
|
-
res: {
|
|
3434
|
-
/**
|
|
3435
|
-
* Success
|
|
3436
|
-
*/
|
|
3437
|
-
200: unknown;
|
|
3438
|
-
/**
|
|
3439
|
-
* Bad Request
|
|
3440
|
-
*/
|
|
3441
|
-
400: {
|
|
3442
|
-
error?: {
|
|
3443
|
-
code?: string | null;
|
|
3444
|
-
message?: string | null;
|
|
3445
|
-
details?: string | null;
|
|
3446
|
-
data?: {
|
|
3447
|
-
[key: string]: unknown;
|
|
3448
|
-
} | null;
|
|
3449
|
-
validationErrors?: Array<{
|
|
3450
|
-
message?: string | null;
|
|
3451
|
-
members?: Array<(string)> | null;
|
|
3452
|
-
}> | null;
|
|
3453
|
-
};
|
|
3454
|
-
};
|
|
3455
|
-
/**
|
|
3456
|
-
* Unauthorized
|
|
3457
|
-
*/
|
|
3458
|
-
401: {
|
|
3459
|
-
error?: {
|
|
3460
|
-
code?: string | null;
|
|
3461
|
-
message?: string | null;
|
|
3462
|
-
details?: string | null;
|
|
3463
|
-
data?: {
|
|
3464
|
-
[key: string]: unknown;
|
|
3465
|
-
} | null;
|
|
3466
|
-
validationErrors?: Array<{
|
|
3467
|
-
message?: string | null;
|
|
3468
|
-
members?: Array<(string)> | null;
|
|
3469
|
-
}> | null;
|
|
3470
|
-
};
|
|
3471
|
-
};
|
|
3472
|
-
/**
|
|
3473
|
-
* Forbidden
|
|
3474
|
-
*/
|
|
3475
|
-
403: {
|
|
3476
|
-
error?: {
|
|
3477
|
-
code?: string | null;
|
|
3478
|
-
message?: string | null;
|
|
3479
|
-
details?: string | null;
|
|
3480
|
-
data?: {
|
|
3481
|
-
[key: string]: unknown;
|
|
3482
|
-
} | null;
|
|
3483
|
-
validationErrors?: Array<{
|
|
3484
|
-
message?: string | null;
|
|
3485
|
-
members?: Array<(string)> | null;
|
|
3486
|
-
}> | null;
|
|
3487
|
-
};
|
|
3488
|
-
};
|
|
3489
|
-
/**
|
|
3490
|
-
* Not Found
|
|
3491
|
-
*/
|
|
3492
|
-
404: {
|
|
3493
|
-
error?: {
|
|
3494
|
-
code?: string | null;
|
|
3495
|
-
message?: string | null;
|
|
3496
|
-
details?: string | null;
|
|
3497
|
-
data?: {
|
|
3498
|
-
[key: string]: unknown;
|
|
3499
|
-
} | null;
|
|
3500
|
-
validationErrors?: Array<{
|
|
3501
|
-
message?: string | null;
|
|
3502
|
-
members?: Array<(string)> | null;
|
|
3503
|
-
}> | null;
|
|
3504
|
-
};
|
|
3505
|
-
};
|
|
3506
|
-
/**
|
|
3507
|
-
* Server Error
|
|
3508
|
-
*/
|
|
3509
|
-
500: {
|
|
3510
|
-
error?: {
|
|
3511
|
-
code?: string | null;
|
|
3512
|
-
message?: string | null;
|
|
3513
|
-
details?: string | null;
|
|
3514
|
-
data?: {
|
|
3515
|
-
[key: string]: unknown;
|
|
3516
|
-
} | null;
|
|
3517
|
-
validationErrors?: Array<{
|
|
3518
|
-
message?: string | null;
|
|
3519
|
-
members?: Array<(string)> | null;
|
|
3520
|
-
}> | null;
|
|
3521
|
-
};
|
|
3522
|
-
};
|
|
3523
|
-
/**
|
|
3524
|
-
* Server Error
|
|
3525
|
-
*/
|
|
3526
|
-
501: {
|
|
3527
|
-
error?: {
|
|
3528
|
-
code?: string | null;
|
|
3529
|
-
message?: string | null;
|
|
3530
|
-
details?: string | null;
|
|
3531
|
-
data?: {
|
|
3532
|
-
[key: string]: unknown;
|
|
3533
|
-
} | null;
|
|
3534
|
-
validationErrors?: Array<{
|
|
3535
|
-
message?: string | null;
|
|
3536
|
-
members?: Array<(string)> | null;
|
|
3537
|
-
}> | null;
|
|
3538
|
-
};
|
|
3539
|
-
};
|
|
3540
|
-
};
|
|
3541
|
-
};
|
|
3542
|
-
get: {
|
|
3543
|
-
req: GetApiProjectSectionServiceProjectSectionData;
|
|
3544
|
-
res: {
|
|
3545
|
-
/**
|
|
3546
|
-
* Success
|
|
3547
|
-
*/
|
|
3548
|
-
200: {
|
|
3549
|
-
items?: Array<{
|
|
3550
|
-
id?: string;
|
|
3551
|
-
creationTime?: string;
|
|
3552
|
-
creatorId?: string | null;
|
|
3553
|
-
lastModificationTime?: string | null;
|
|
3554
|
-
lastModifierId?: string | null;
|
|
3555
|
-
isDeleted?: boolean;
|
|
3556
|
-
deleterId?: string | null;
|
|
3557
|
-
deletionTime?: string | null;
|
|
3558
|
-
name?: string | null;
|
|
3559
|
-
isDefault?: boolean;
|
|
3560
|
-
isOptional?: boolean;
|
|
3561
|
-
}> | null;
|
|
3562
|
-
totalCount?: number;
|
|
3563
|
-
};
|
|
3564
|
-
/**
|
|
3565
|
-
* Bad Request
|
|
3566
|
-
*/
|
|
3567
|
-
400: {
|
|
3568
|
-
error?: {
|
|
3569
|
-
code?: string | null;
|
|
3570
|
-
message?: string | null;
|
|
3571
|
-
details?: string | null;
|
|
3572
|
-
data?: {
|
|
3573
|
-
[key: string]: unknown;
|
|
3574
|
-
} | null;
|
|
3575
|
-
validationErrors?: Array<{
|
|
3576
|
-
message?: string | null;
|
|
3577
|
-
members?: Array<(string)> | null;
|
|
3578
|
-
}> | null;
|
|
3579
|
-
};
|
|
3580
|
-
};
|
|
3581
|
-
/**
|
|
3582
|
-
* Unauthorized
|
|
3583
|
-
*/
|
|
3584
|
-
401: {
|
|
3585
|
-
error?: {
|
|
3586
|
-
code?: string | null;
|
|
3587
|
-
message?: string | null;
|
|
3588
|
-
details?: string | null;
|
|
3589
|
-
data?: {
|
|
3590
|
-
[key: string]: unknown;
|
|
3591
|
-
} | null;
|
|
3592
|
-
validationErrors?: Array<{
|
|
3593
|
-
message?: string | null;
|
|
3594
|
-
members?: Array<(string)> | null;
|
|
3595
|
-
}> | null;
|
|
3596
|
-
};
|
|
3597
|
-
};
|
|
3598
|
-
/**
|
|
3599
|
-
* Forbidden
|
|
3600
|
-
*/
|
|
3601
|
-
403: {
|
|
3602
|
-
error?: {
|
|
3603
|
-
code?: string | null;
|
|
3604
|
-
message?: string | null;
|
|
3605
|
-
details?: string | null;
|
|
3606
|
-
data?: {
|
|
3607
|
-
[key: string]: unknown;
|
|
3608
|
-
} | null;
|
|
3609
|
-
validationErrors?: Array<{
|
|
3610
|
-
message?: string | null;
|
|
3611
|
-
members?: Array<(string)> | null;
|
|
3612
|
-
}> | null;
|
|
3613
|
-
};
|
|
3614
|
-
};
|
|
3615
|
-
/**
|
|
3616
|
-
* Not Found
|
|
3617
|
-
*/
|
|
3618
|
-
404: {
|
|
3619
|
-
error?: {
|
|
3620
|
-
code?: string | null;
|
|
3621
|
-
message?: string | null;
|
|
3622
|
-
details?: string | null;
|
|
3623
|
-
data?: {
|
|
3624
|
-
[key: string]: unknown;
|
|
3625
|
-
} | null;
|
|
3626
|
-
validationErrors?: Array<{
|
|
3627
|
-
message?: string | null;
|
|
3628
|
-
members?: Array<(string)> | null;
|
|
3629
|
-
}> | null;
|
|
3630
|
-
};
|
|
3631
|
-
};
|
|
3632
|
-
/**
|
|
3633
|
-
* Server Error
|
|
3634
|
-
*/
|
|
3635
|
-
500: {
|
|
3636
|
-
error?: {
|
|
3637
|
-
code?: string | null;
|
|
3638
|
-
message?: string | null;
|
|
3639
|
-
details?: string | null;
|
|
3640
|
-
data?: {
|
|
3641
|
-
[key: string]: unknown;
|
|
3642
|
-
} | null;
|
|
3643
|
-
validationErrors?: Array<{
|
|
3644
|
-
message?: string | null;
|
|
3645
|
-
members?: Array<(string)> | null;
|
|
3646
|
-
}> | null;
|
|
3647
|
-
};
|
|
3648
|
-
};
|
|
3649
|
-
/**
|
|
3650
|
-
* Server Error
|
|
3651
|
-
*/
|
|
3652
|
-
501: {
|
|
3653
|
-
error?: {
|
|
3654
|
-
code?: string | null;
|
|
3655
|
-
message?: string | null;
|
|
3656
|
-
details?: string | null;
|
|
3657
|
-
data?: {
|
|
3658
|
-
[key: string]: unknown;
|
|
3659
|
-
} | null;
|
|
3660
|
-
validationErrors?: Array<{
|
|
3661
|
-
message?: string | null;
|
|
3662
|
-
members?: Array<(string)> | null;
|
|
3663
|
-
}> | null;
|
|
3664
|
-
};
|
|
3665
|
-
};
|
|
3666
|
-
};
|
|
3667
|
-
};
|
|
3668
|
-
put: {
|
|
3669
|
-
req: PutApiProjectSectionServiceProjectSectionData;
|
|
3670
|
-
res: {
|
|
3671
|
-
/**
|
|
3672
|
-
* Success
|
|
3673
|
-
*/
|
|
3674
|
-
200: {
|
|
3675
|
-
id?: string;
|
|
3676
|
-
creationTime?: string;
|
|
3677
|
-
creatorId?: string | null;
|
|
3678
|
-
lastModificationTime?: string | null;
|
|
3679
|
-
lastModifierId?: string | null;
|
|
3680
|
-
isDeleted?: boolean;
|
|
3681
|
-
deleterId?: string | null;
|
|
3682
|
-
deletionTime?: string | null;
|
|
3683
|
-
name?: string | null;
|
|
3684
|
-
isDefault?: boolean;
|
|
3685
|
-
isOptional?: boolean;
|
|
3686
|
-
};
|
|
3687
|
-
/**
|
|
3688
|
-
* Bad Request
|
|
3689
|
-
*/
|
|
3690
|
-
400: {
|
|
3691
|
-
error?: {
|
|
3692
|
-
code?: string | null;
|
|
3693
|
-
message?: string | null;
|
|
3694
|
-
details?: string | null;
|
|
3695
|
-
data?: {
|
|
3696
|
-
[key: string]: unknown;
|
|
3697
|
-
} | null;
|
|
3698
|
-
validationErrors?: Array<{
|
|
3699
|
-
message?: string | null;
|
|
3700
|
-
members?: Array<(string)> | null;
|
|
3701
|
-
}> | null;
|
|
3702
|
-
};
|
|
3703
|
-
};
|
|
3704
|
-
/**
|
|
3705
|
-
* Unauthorized
|
|
3706
|
-
*/
|
|
3707
|
-
401: {
|
|
3708
|
-
error?: {
|
|
3709
|
-
code?: string | null;
|
|
3710
|
-
message?: string | null;
|
|
3711
|
-
details?: string | null;
|
|
3712
|
-
data?: {
|
|
3713
|
-
[key: string]: unknown;
|
|
3714
|
-
} | null;
|
|
3715
|
-
validationErrors?: Array<{
|
|
3716
|
-
message?: string | null;
|
|
3717
|
-
members?: Array<(string)> | null;
|
|
3718
|
-
}> | null;
|
|
3719
|
-
};
|
|
3720
|
-
};
|
|
3721
|
-
/**
|
|
3722
|
-
* Forbidden
|
|
3723
|
-
*/
|
|
3724
|
-
403: {
|
|
3725
|
-
error?: {
|
|
3726
|
-
code?: string | null;
|
|
3727
|
-
message?: string | null;
|
|
3728
|
-
details?: string | null;
|
|
3729
|
-
data?: {
|
|
3730
|
-
[key: string]: unknown;
|
|
3731
|
-
} | null;
|
|
3732
|
-
validationErrors?: Array<{
|
|
3733
|
-
message?: string | null;
|
|
3734
|
-
members?: Array<(string)> | null;
|
|
3735
|
-
}> | null;
|
|
3736
|
-
};
|
|
3737
|
-
};
|
|
3738
|
-
/**
|
|
3739
|
-
* Not Found
|
|
3740
|
-
*/
|
|
3741
|
-
404: {
|
|
3742
|
-
error?: {
|
|
3743
|
-
code?: string | null;
|
|
3744
|
-
message?: string | null;
|
|
3745
|
-
details?: string | null;
|
|
3746
|
-
data?: {
|
|
3747
|
-
[key: string]: unknown;
|
|
3748
|
-
} | null;
|
|
3749
|
-
validationErrors?: Array<{
|
|
3750
|
-
message?: string | null;
|
|
3751
|
-
members?: Array<(string)> | null;
|
|
3752
|
-
}> | null;
|
|
3753
|
-
};
|
|
3754
|
-
};
|
|
3755
|
-
/**
|
|
3756
|
-
* Server Error
|
|
3757
|
-
*/
|
|
3758
|
-
500: {
|
|
3759
|
-
error?: {
|
|
3760
|
-
code?: string | null;
|
|
3761
|
-
message?: string | null;
|
|
3762
|
-
details?: string | null;
|
|
3763
|
-
data?: {
|
|
3764
|
-
[key: string]: unknown;
|
|
3765
|
-
} | null;
|
|
3766
|
-
validationErrors?: Array<{
|
|
3767
|
-
message?: string | null;
|
|
3768
|
-
members?: Array<(string)> | null;
|
|
3769
|
-
}> | null;
|
|
3770
|
-
};
|
|
3771
|
-
};
|
|
3772
|
-
/**
|
|
3773
|
-
* Server Error
|
|
3774
|
-
*/
|
|
3775
|
-
501: {
|
|
3776
|
-
error?: {
|
|
3777
|
-
code?: string | null;
|
|
3778
|
-
message?: string | null;
|
|
3779
|
-
details?: string | null;
|
|
3780
|
-
data?: {
|
|
3781
|
-
[key: string]: unknown;
|
|
3782
|
-
} | null;
|
|
3783
|
-
validationErrors?: Array<{
|
|
3784
|
-
message?: string | null;
|
|
3785
|
-
members?: Array<(string)> | null;
|
|
3786
|
-
}> | null;
|
|
3787
|
-
};
|
|
3788
|
-
};
|
|
3789
|
-
};
|
|
3790
|
-
};
|
|
3791
|
-
};
|
|
3792
|
-
'/api/ProjectSectionService/projectSection/{id}': {
|
|
3793
|
-
get: {
|
|
3794
|
-
req: GetApiProjectSectionServiceProjectSectionByIdData;
|
|
3795
|
-
res: {
|
|
3796
|
-
/**
|
|
3797
|
-
* Success
|
|
3798
|
-
*/
|
|
3799
|
-
200: {
|
|
3800
|
-
id?: string;
|
|
3801
|
-
creationTime?: string;
|
|
3802
|
-
creatorId?: string | null;
|
|
3803
|
-
lastModificationTime?: string | null;
|
|
3804
|
-
lastModifierId?: string | null;
|
|
3805
|
-
isDeleted?: boolean;
|
|
3806
|
-
deleterId?: string | null;
|
|
3807
|
-
deletionTime?: string | null;
|
|
3808
|
-
name?: string | null;
|
|
3809
|
-
isDefault?: boolean;
|
|
3810
|
-
isOptional?: boolean;
|
|
3811
|
-
};
|
|
3812
|
-
/**
|
|
3813
|
-
* Bad Request
|
|
3814
|
-
*/
|
|
3815
|
-
400: {
|
|
3816
|
-
error?: {
|
|
3817
|
-
code?: string | null;
|
|
3818
|
-
message?: string | null;
|
|
3819
|
-
details?: string | null;
|
|
3820
|
-
data?: {
|
|
3821
|
-
[key: string]: unknown;
|
|
3822
|
-
} | null;
|
|
3823
|
-
validationErrors?: Array<{
|
|
3824
|
-
message?: string | null;
|
|
3825
|
-
members?: Array<(string)> | null;
|
|
3826
|
-
}> | null;
|
|
3827
|
-
};
|
|
3828
|
-
};
|
|
3829
|
-
/**
|
|
3830
|
-
* Unauthorized
|
|
3831
|
-
*/
|
|
3832
|
-
401: {
|
|
3833
|
-
error?: {
|
|
3834
|
-
code?: string | null;
|
|
3835
|
-
message?: string | null;
|
|
3836
|
-
details?: string | null;
|
|
3837
|
-
data?: {
|
|
3838
|
-
[key: string]: unknown;
|
|
3839
|
-
} | null;
|
|
3840
|
-
validationErrors?: Array<{
|
|
3841
|
-
message?: string | null;
|
|
3842
|
-
members?: Array<(string)> | null;
|
|
3843
|
-
}> | null;
|
|
3844
|
-
};
|
|
3845
|
-
};
|
|
3846
|
-
/**
|
|
3847
|
-
* Forbidden
|
|
3848
|
-
*/
|
|
3849
|
-
403: {
|
|
3850
|
-
error?: {
|
|
3851
|
-
code?: string | null;
|
|
3852
|
-
message?: string | null;
|
|
3853
|
-
details?: string | null;
|
|
3854
|
-
data?: {
|
|
3855
|
-
[key: string]: unknown;
|
|
3856
|
-
} | null;
|
|
3857
|
-
validationErrors?: Array<{
|
|
3858
|
-
message?: string | null;
|
|
3859
|
-
members?: Array<(string)> | null;
|
|
3860
|
-
}> | null;
|
|
3861
|
-
};
|
|
3862
|
-
};
|
|
3863
|
-
/**
|
|
3864
|
-
* Not Found
|
|
3865
|
-
*/
|
|
3866
|
-
404: {
|
|
3867
|
-
error?: {
|
|
3868
|
-
code?: string | null;
|
|
3869
|
-
message?: string | null;
|
|
3870
|
-
details?: string | null;
|
|
3871
|
-
data?: {
|
|
3872
|
-
[key: string]: unknown;
|
|
3873
|
-
} | null;
|
|
3874
|
-
validationErrors?: Array<{
|
|
3875
|
-
message?: string | null;
|
|
3876
|
-
members?: Array<(string)> | null;
|
|
3877
|
-
}> | null;
|
|
3878
|
-
};
|
|
3879
|
-
};
|
|
3880
|
-
/**
|
|
3881
|
-
* Server Error
|
|
3882
|
-
*/
|
|
3883
|
-
500: {
|
|
3884
|
-
error?: {
|
|
3885
|
-
code?: string | null;
|
|
3886
|
-
message?: string | null;
|
|
3887
|
-
details?: string | null;
|
|
3888
|
-
data?: {
|
|
3889
|
-
[key: string]: unknown;
|
|
3890
|
-
} | null;
|
|
3891
|
-
validationErrors?: Array<{
|
|
3892
|
-
message?: string | null;
|
|
3893
|
-
members?: Array<(string)> | null;
|
|
3894
|
-
}> | null;
|
|
3895
|
-
};
|
|
3896
|
-
};
|
|
3897
|
-
/**
|
|
3898
|
-
* Server Error
|
|
3899
|
-
*/
|
|
3900
|
-
501: {
|
|
3901
|
-
error?: {
|
|
3902
|
-
code?: string | null;
|
|
3903
|
-
message?: string | null;
|
|
3904
|
-
details?: string | null;
|
|
3905
|
-
data?: {
|
|
3906
|
-
[key: string]: unknown;
|
|
3907
|
-
} | null;
|
|
3908
|
-
validationErrors?: Array<{
|
|
3909
|
-
message?: string | null;
|
|
3910
|
-
members?: Array<(string)> | null;
|
|
3911
|
-
}> | null;
|
|
3912
|
-
};
|
|
3913
|
-
};
|
|
3914
|
-
};
|
|
3915
|
-
};
|
|
3916
|
-
};
|
|
3917
|
-
'/api/ProjectSectionRelationService/projectSectionRelation': {
|
|
3918
|
-
post: {
|
|
3919
|
-
req: PostApiProjectSectionRelationServiceProjectSectionRelationData;
|
|
3920
|
-
res: {
|
|
3921
|
-
/**
|
|
3922
|
-
* Success
|
|
3923
|
-
*/
|
|
3924
|
-
200: {
|
|
3925
|
-
id?: string;
|
|
3926
|
-
creationTime?: string;
|
|
3927
|
-
creatorId?: string | null;
|
|
3928
|
-
lastModificationTime?: string | null;
|
|
3929
|
-
lastModifierId?: string | null;
|
|
3930
|
-
isDeleted?: boolean;
|
|
3931
|
-
deleterId?: string | null;
|
|
3932
|
-
deletionTime?: string | null;
|
|
3933
|
-
projectId?: string;
|
|
3934
|
-
projectSectionId?: string;
|
|
3935
|
-
value?: string | null;
|
|
3936
|
-
};
|
|
3937
|
-
/**
|
|
3938
|
-
* Bad Request
|
|
3939
|
-
*/
|
|
3940
|
-
400: {
|
|
3941
|
-
error?: {
|
|
3942
|
-
code?: string | null;
|
|
3943
|
-
message?: string | null;
|
|
3944
|
-
details?: string | null;
|
|
3945
|
-
data?: {
|
|
3946
|
-
[key: string]: unknown;
|
|
3947
|
-
} | null;
|
|
3948
|
-
validationErrors?: Array<{
|
|
3949
|
-
message?: string | null;
|
|
3950
|
-
members?: Array<(string)> | null;
|
|
3951
|
-
}> | null;
|
|
3952
|
-
};
|
|
3953
|
-
};
|
|
3954
|
-
/**
|
|
3955
|
-
* Unauthorized
|
|
3956
|
-
*/
|
|
3957
|
-
401: {
|
|
3958
|
-
error?: {
|
|
3959
|
-
code?: string | null;
|
|
3960
|
-
message?: string | null;
|
|
3961
|
-
details?: string | null;
|
|
3962
|
-
data?: {
|
|
3963
|
-
[key: string]: unknown;
|
|
3964
|
-
} | null;
|
|
3965
|
-
validationErrors?: Array<{
|
|
3966
|
-
message?: string | null;
|
|
3967
|
-
members?: Array<(string)> | null;
|
|
3968
|
-
}> | null;
|
|
3969
|
-
};
|
|
3970
|
-
};
|
|
3971
|
-
/**
|
|
3972
|
-
* Forbidden
|
|
3973
|
-
*/
|
|
3974
|
-
403: {
|
|
3975
|
-
error?: {
|
|
3976
|
-
code?: string | null;
|
|
3977
|
-
message?: string | null;
|
|
3978
|
-
details?: string | null;
|
|
3979
|
-
data?: {
|
|
3980
|
-
[key: string]: unknown;
|
|
3981
|
-
} | null;
|
|
3982
|
-
validationErrors?: Array<{
|
|
3983
|
-
message?: string | null;
|
|
3984
|
-
members?: Array<(string)> | null;
|
|
3985
|
-
}> | null;
|
|
3986
|
-
};
|
|
3987
|
-
};
|
|
3988
|
-
/**
|
|
3989
|
-
* Not Found
|
|
3990
|
-
*/
|
|
3991
|
-
404: {
|
|
3992
|
-
error?: {
|
|
3993
|
-
code?: string | null;
|
|
3994
|
-
message?: string | null;
|
|
3995
|
-
details?: string | null;
|
|
3996
|
-
data?: {
|
|
3997
|
-
[key: string]: unknown;
|
|
3998
|
-
} | null;
|
|
3999
|
-
validationErrors?: Array<{
|
|
4000
|
-
message?: string | null;
|
|
4001
|
-
members?: Array<(string)> | null;
|
|
4002
|
-
}> | null;
|
|
4003
|
-
};
|
|
4004
|
-
};
|
|
4005
|
-
/**
|
|
4006
|
-
* Server Error
|
|
4007
|
-
*/
|
|
4008
|
-
500: {
|
|
4009
|
-
error?: {
|
|
4010
|
-
code?: string | null;
|
|
4011
|
-
message?: string | null;
|
|
4012
|
-
details?: string | null;
|
|
4013
|
-
data?: {
|
|
4014
|
-
[key: string]: unknown;
|
|
4015
|
-
} | null;
|
|
4016
|
-
validationErrors?: Array<{
|
|
4017
|
-
message?: string | null;
|
|
4018
|
-
members?: Array<(string)> | null;
|
|
4019
|
-
}> | null;
|
|
4020
|
-
};
|
|
4021
|
-
};
|
|
4022
|
-
/**
|
|
4023
|
-
* Server Error
|
|
4024
|
-
*/
|
|
4025
|
-
501: {
|
|
4026
|
-
error?: {
|
|
4027
|
-
code?: string | null;
|
|
4028
|
-
message?: string | null;
|
|
4029
|
-
details?: string | null;
|
|
4030
|
-
data?: {
|
|
4031
|
-
[key: string]: unknown;
|
|
4032
|
-
} | null;
|
|
4033
|
-
validationErrors?: Array<{
|
|
4034
|
-
message?: string | null;
|
|
4035
|
-
members?: Array<(string)> | null;
|
|
4036
|
-
}> | null;
|
|
4037
|
-
};
|
|
4038
|
-
};
|
|
4039
|
-
};
|
|
4040
|
-
};
|
|
4041
|
-
delete: {
|
|
4042
|
-
req: DeleteApiProjectSectionRelationServiceProjectSectionRelationData;
|
|
4043
|
-
res: {
|
|
4044
|
-
/**
|
|
4045
|
-
* Success
|
|
4046
|
-
*/
|
|
4047
|
-
200: unknown;
|
|
4048
|
-
/**
|
|
4049
|
-
* Bad Request
|
|
4050
|
-
*/
|
|
4051
|
-
400: {
|
|
4052
|
-
error?: {
|
|
4053
|
-
code?: string | null;
|
|
4054
|
-
message?: string | null;
|
|
4055
|
-
details?: string | null;
|
|
4056
|
-
data?: {
|
|
4057
|
-
[key: string]: unknown;
|
|
4058
|
-
} | null;
|
|
4059
|
-
validationErrors?: Array<{
|
|
4060
|
-
message?: string | null;
|
|
4061
|
-
members?: Array<(string)> | null;
|
|
4062
|
-
}> | null;
|
|
4063
|
-
};
|
|
4064
|
-
};
|
|
4065
|
-
/**
|
|
4066
|
-
* Unauthorized
|
|
4067
|
-
*/
|
|
4068
|
-
401: {
|
|
4069
|
-
error?: {
|
|
4070
|
-
code?: string | null;
|
|
4071
|
-
message?: string | null;
|
|
4072
|
-
details?: string | null;
|
|
4073
|
-
data?: {
|
|
4074
|
-
[key: string]: unknown;
|
|
4075
|
-
} | null;
|
|
4076
|
-
validationErrors?: Array<{
|
|
4077
|
-
message?: string | null;
|
|
4078
|
-
members?: Array<(string)> | null;
|
|
4079
|
-
}> | null;
|
|
4080
|
-
};
|
|
4081
|
-
};
|
|
4082
|
-
/**
|
|
4083
|
-
* Forbidden
|
|
4084
|
-
*/
|
|
4085
|
-
403: {
|
|
4086
|
-
error?: {
|
|
4087
|
-
code?: string | null;
|
|
4088
|
-
message?: string | null;
|
|
4089
|
-
details?: string | null;
|
|
4090
|
-
data?: {
|
|
4091
|
-
[key: string]: unknown;
|
|
4092
|
-
} | null;
|
|
4093
|
-
validationErrors?: Array<{
|
|
4094
|
-
message?: string | null;
|
|
4095
|
-
members?: Array<(string)> | null;
|
|
4096
|
-
}> | null;
|
|
4097
|
-
};
|
|
4098
|
-
};
|
|
4099
|
-
/**
|
|
4100
|
-
* Not Found
|
|
4101
|
-
*/
|
|
4102
|
-
404: {
|
|
4103
|
-
error?: {
|
|
4104
|
-
code?: string | null;
|
|
4105
|
-
message?: string | null;
|
|
4106
|
-
details?: string | null;
|
|
4107
|
-
data?: {
|
|
4108
|
-
[key: string]: unknown;
|
|
4109
|
-
} | null;
|
|
4110
|
-
validationErrors?: Array<{
|
|
4111
|
-
message?: string | null;
|
|
4112
|
-
members?: Array<(string)> | null;
|
|
4113
|
-
}> | null;
|
|
4114
|
-
};
|
|
4115
|
-
};
|
|
4116
|
-
/**
|
|
4117
|
-
* Server Error
|
|
4118
|
-
*/
|
|
4119
|
-
500: {
|
|
4120
|
-
error?: {
|
|
4121
|
-
code?: string | null;
|
|
4122
|
-
message?: string | null;
|
|
4123
|
-
details?: string | null;
|
|
4124
|
-
data?: {
|
|
4125
|
-
[key: string]: unknown;
|
|
4126
|
-
} | null;
|
|
4127
|
-
validationErrors?: Array<{
|
|
4128
|
-
message?: string | null;
|
|
4129
|
-
members?: Array<(string)> | null;
|
|
4130
|
-
}> | null;
|
|
4131
|
-
};
|
|
4132
|
-
};
|
|
4133
|
-
/**
|
|
4134
|
-
* Server Error
|
|
4135
|
-
*/
|
|
4136
|
-
501: {
|
|
4137
|
-
error?: {
|
|
4138
|
-
code?: string | null;
|
|
4139
|
-
message?: string | null;
|
|
4140
|
-
details?: string | null;
|
|
4141
|
-
data?: {
|
|
4142
|
-
[key: string]: unknown;
|
|
4143
|
-
} | null;
|
|
4144
|
-
validationErrors?: Array<{
|
|
4145
|
-
message?: string | null;
|
|
4146
|
-
members?: Array<(string)> | null;
|
|
4147
|
-
}> | null;
|
|
4148
|
-
};
|
|
4149
|
-
};
|
|
4150
|
-
};
|
|
4151
|
-
};
|
|
4152
|
-
get: {
|
|
4153
|
-
req: GetApiProjectSectionRelationServiceProjectSectionRelationData;
|
|
4154
|
-
res: {
|
|
4155
|
-
/**
|
|
4156
|
-
* Success
|
|
4157
|
-
*/
|
|
4158
|
-
200: {
|
|
4159
|
-
items?: Array<{
|
|
4160
|
-
id?: string;
|
|
4161
|
-
creationTime?: string;
|
|
4162
|
-
creatorId?: string | null;
|
|
4163
|
-
lastModificationTime?: string | null;
|
|
4164
|
-
lastModifierId?: string | null;
|
|
4165
|
-
isDeleted?: boolean;
|
|
4166
|
-
deleterId?: string | null;
|
|
4167
|
-
deletionTime?: string | null;
|
|
4168
|
-
projectId?: string;
|
|
4169
|
-
projectSectionId?: string;
|
|
4170
|
-
value?: string | null;
|
|
4171
|
-
}> | null;
|
|
4172
|
-
totalCount?: number;
|
|
4173
|
-
};
|
|
4174
|
-
/**
|
|
4175
|
-
* Bad Request
|
|
4176
|
-
*/
|
|
4177
|
-
400: {
|
|
4178
|
-
error?: {
|
|
4179
|
-
code?: string | null;
|
|
4180
|
-
message?: string | null;
|
|
4181
|
-
details?: string | null;
|
|
4182
|
-
data?: {
|
|
4183
|
-
[key: string]: unknown;
|
|
4184
|
-
} | null;
|
|
4185
|
-
validationErrors?: Array<{
|
|
4186
|
-
message?: string | null;
|
|
4187
|
-
members?: Array<(string)> | null;
|
|
4188
|
-
}> | null;
|
|
4189
|
-
};
|
|
4190
|
-
};
|
|
4191
|
-
/**
|
|
4192
|
-
* Unauthorized
|
|
4193
|
-
*/
|
|
4194
|
-
401: {
|
|
4195
|
-
error?: {
|
|
4196
|
-
code?: string | null;
|
|
4197
|
-
message?: string | null;
|
|
4198
|
-
details?: string | null;
|
|
4199
|
-
data?: {
|
|
4200
|
-
[key: string]: unknown;
|
|
4201
|
-
} | null;
|
|
4202
|
-
validationErrors?: Array<{
|
|
4203
|
-
message?: string | null;
|
|
4204
|
-
members?: Array<(string)> | null;
|
|
4205
|
-
}> | null;
|
|
4206
|
-
};
|
|
4207
|
-
};
|
|
4208
|
-
/**
|
|
4209
|
-
* Forbidden
|
|
4210
|
-
*/
|
|
4211
|
-
403: {
|
|
4212
|
-
error?: {
|
|
4213
|
-
code?: string | null;
|
|
4214
|
-
message?: string | null;
|
|
4215
|
-
details?: string | null;
|
|
4216
|
-
data?: {
|
|
4217
|
-
[key: string]: unknown;
|
|
4218
|
-
} | null;
|
|
4219
|
-
validationErrors?: Array<{
|
|
4220
|
-
message?: string | null;
|
|
4221
|
-
members?: Array<(string)> | null;
|
|
4222
|
-
}> | null;
|
|
4223
|
-
};
|
|
4224
|
-
};
|
|
4225
|
-
/**
|
|
4226
|
-
* Not Found
|
|
4227
|
-
*/
|
|
4228
|
-
404: {
|
|
4229
|
-
error?: {
|
|
4230
|
-
code?: string | null;
|
|
4231
|
-
message?: string | null;
|
|
4232
|
-
details?: string | null;
|
|
4233
|
-
data?: {
|
|
4234
|
-
[key: string]: unknown;
|
|
4235
|
-
} | null;
|
|
4236
|
-
validationErrors?: Array<{
|
|
4237
|
-
message?: string | null;
|
|
4238
|
-
members?: Array<(string)> | null;
|
|
4239
|
-
}> | null;
|
|
4240
|
-
};
|
|
4241
|
-
};
|
|
4242
|
-
/**
|
|
4243
|
-
* Server Error
|
|
4244
|
-
*/
|
|
4245
|
-
500: {
|
|
4246
|
-
error?: {
|
|
4247
|
-
code?: string | null;
|
|
4248
|
-
message?: string | null;
|
|
4249
|
-
details?: string | null;
|
|
4250
|
-
data?: {
|
|
4251
|
-
[key: string]: unknown;
|
|
4252
|
-
} | null;
|
|
4253
|
-
validationErrors?: Array<{
|
|
4254
|
-
message?: string | null;
|
|
4255
|
-
members?: Array<(string)> | null;
|
|
4256
|
-
}> | null;
|
|
4257
|
-
};
|
|
4258
|
-
};
|
|
4259
|
-
/**
|
|
4260
|
-
* Server Error
|
|
4261
|
-
*/
|
|
4262
|
-
501: {
|
|
4263
|
-
error?: {
|
|
4264
|
-
code?: string | null;
|
|
4265
|
-
message?: string | null;
|
|
4266
|
-
details?: string | null;
|
|
4267
|
-
data?: {
|
|
4268
|
-
[key: string]: unknown;
|
|
4269
|
-
} | null;
|
|
4270
|
-
validationErrors?: Array<{
|
|
4271
|
-
message?: string | null;
|
|
4272
|
-
members?: Array<(string)> | null;
|
|
4273
|
-
}> | null;
|
|
4274
|
-
};
|
|
4275
|
-
};
|
|
4276
|
-
};
|
|
4277
|
-
};
|
|
4278
|
-
};
|
|
4279
|
-
'/api/ProjectSectionRelationService/projectSectionRelation/{id}': {
|
|
4280
|
-
get: {
|
|
4281
|
-
req: GetApiProjectSectionRelationServiceProjectSectionRelationByIdData;
|
|
4282
|
-
res: {
|
|
4283
|
-
/**
|
|
4284
|
-
* Success
|
|
4285
|
-
*/
|
|
4286
|
-
200: {
|
|
4287
|
-
id?: string;
|
|
4288
|
-
creationTime?: string;
|
|
4289
|
-
creatorId?: string | null;
|
|
4290
|
-
lastModificationTime?: string | null;
|
|
4291
|
-
lastModifierId?: string | null;
|
|
4292
|
-
isDeleted?: boolean;
|
|
4293
|
-
deleterId?: string | null;
|
|
4294
|
-
deletionTime?: string | null;
|
|
4295
|
-
projectId?: string;
|
|
4296
|
-
projectSectionId?: string;
|
|
4297
|
-
value?: string | null;
|
|
4298
|
-
};
|
|
4299
|
-
/**
|
|
4300
|
-
* Bad Request
|
|
4301
|
-
*/
|
|
4302
|
-
400: {
|
|
4303
|
-
error?: {
|
|
4304
|
-
code?: string | null;
|
|
4305
|
-
message?: string | null;
|
|
4306
|
-
details?: string | null;
|
|
4307
|
-
data?: {
|
|
4308
|
-
[key: string]: unknown;
|
|
4309
|
-
} | null;
|
|
4310
|
-
validationErrors?: Array<{
|
|
4311
|
-
message?: string | null;
|
|
4312
|
-
members?: Array<(string)> | null;
|
|
4313
|
-
}> | null;
|
|
4314
|
-
};
|
|
4315
|
-
};
|
|
4316
|
-
/**
|
|
4317
|
-
* Unauthorized
|
|
4318
|
-
*/
|
|
4319
|
-
401: {
|
|
4320
|
-
error?: {
|
|
4321
|
-
code?: string | null;
|
|
4322
|
-
message?: string | null;
|
|
4323
|
-
details?: string | null;
|
|
4324
|
-
data?: {
|
|
4325
|
-
[key: string]: unknown;
|
|
4326
|
-
} | null;
|
|
4327
|
-
validationErrors?: Array<{
|
|
4328
|
-
message?: string | null;
|
|
4329
|
-
members?: Array<(string)> | null;
|
|
4330
|
-
}> | null;
|
|
4331
|
-
};
|
|
4332
|
-
};
|
|
4333
|
-
/**
|
|
4334
|
-
* Forbidden
|
|
4335
|
-
*/
|
|
4336
|
-
403: {
|
|
4337
|
-
error?: {
|
|
4338
|
-
code?: string | null;
|
|
4339
|
-
message?: string | null;
|
|
4340
|
-
details?: string | null;
|
|
4341
|
-
data?: {
|
|
4342
|
-
[key: string]: unknown;
|
|
4343
|
-
} | null;
|
|
4344
|
-
validationErrors?: Array<{
|
|
4345
|
-
message?: string | null;
|
|
4346
|
-
members?: Array<(string)> | null;
|
|
4347
|
-
}> | null;
|
|
4348
|
-
};
|
|
4349
|
-
};
|
|
4350
|
-
/**
|
|
4351
|
-
* Not Found
|
|
4352
|
-
*/
|
|
4353
|
-
404: {
|
|
4354
|
-
error?: {
|
|
4355
|
-
code?: string | null;
|
|
4356
|
-
message?: string | null;
|
|
4357
|
-
details?: string | null;
|
|
4358
|
-
data?: {
|
|
4359
|
-
[key: string]: unknown;
|
|
4360
|
-
} | null;
|
|
4361
|
-
validationErrors?: Array<{
|
|
4362
|
-
message?: string | null;
|
|
4363
|
-
members?: Array<(string)> | null;
|
|
4364
|
-
}> | null;
|
|
4365
|
-
};
|
|
4366
|
-
};
|
|
4367
|
-
/**
|
|
4368
|
-
* Server Error
|
|
4369
|
-
*/
|
|
4370
|
-
500: {
|
|
4371
|
-
error?: {
|
|
4372
|
-
code?: string | null;
|
|
4373
|
-
message?: string | null;
|
|
4374
|
-
details?: string | null;
|
|
4375
|
-
data?: {
|
|
4376
|
-
[key: string]: unknown;
|
|
4377
|
-
} | null;
|
|
4378
|
-
validationErrors?: Array<{
|
|
4379
|
-
message?: string | null;
|
|
4380
|
-
members?: Array<(string)> | null;
|
|
4381
|
-
}> | null;
|
|
4382
|
-
};
|
|
4383
|
-
};
|
|
4384
|
-
/**
|
|
4385
|
-
* Server Error
|
|
4386
|
-
*/
|
|
4387
|
-
501: {
|
|
4388
|
-
error?: {
|
|
4389
|
-
code?: string | null;
|
|
4390
|
-
message?: string | null;
|
|
4391
|
-
details?: string | null;
|
|
4392
|
-
data?: {
|
|
4393
|
-
[key: string]: unknown;
|
|
4394
|
-
} | null;
|
|
4395
|
-
validationErrors?: Array<{
|
|
4396
|
-
message?: string | null;
|
|
4397
|
-
members?: Array<(string)> | null;
|
|
4398
|
-
}> | null;
|
|
4399
|
-
};
|
|
4400
|
-
};
|
|
4401
|
-
};
|
|
4402
|
-
};
|
|
4403
|
-
put: {
|
|
4404
|
-
req: PutApiProjectSectionRelationServiceProjectSectionRelationByIdData;
|
|
2192
|
+
'/api/abp/multi-tenancy/tenants/by-id/{id}': {
|
|
2193
|
+
get: {
|
|
2194
|
+
req: GetApiAbpMultiTenancyTenantsByIdByIdData;
|
|
4405
2195
|
res: {
|
|
4406
2196
|
/**
|
|
4407
2197
|
* Success
|
|
4408
2198
|
*/
|
|
4409
2199
|
200: {
|
|
4410
|
-
|
|
4411
|
-
|
|
4412
|
-
|
|
4413
|
-
|
|
4414
|
-
|
|
4415
|
-
isDeleted?: boolean;
|
|
4416
|
-
deleterId?: string | null;
|
|
4417
|
-
deletionTime?: string | null;
|
|
4418
|
-
projectId?: string;
|
|
4419
|
-
projectSectionId?: string;
|
|
4420
|
-
value?: string | null;
|
|
2200
|
+
success?: boolean;
|
|
2201
|
+
tenantId?: string | null;
|
|
2202
|
+
name?: string | null;
|
|
2203
|
+
normalizedName?: string | null;
|
|
2204
|
+
isActive?: boolean;
|
|
4421
2205
|
};
|
|
4422
2206
|
/**
|
|
4423
2207
|
* Bad Request
|