@saritasa/crm-delmar-core-sdk 0.2.322 → 0.2.326
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/README.md +2 -2
- package/api/api.d.ts +4 -1
- package/api/project-financial-milestones-api.service.d.ts +129 -0
- package/api/project-financial-milestones-api.serviceInterface.d.ts +86 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +325 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/create-project-financial-milestone-request.dto.d.ts +18 -0
- package/model/models.d.ts +4 -0
- package/model/paginated-project-financial-milestone-list.dto.d.ts +16 -0
- package/model/project-financial-milestone.dto.d.ts +24 -0
- package/model/update-project-financial-milestone-request.dto.d.ts +17 -0
- package/package.json +1 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Delmar Api
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Serializer for creating ProjectFinancialMilestone model.
|
|
12
|
+
*/
|
|
13
|
+
export interface CreateProjectFinancialMilestoneRequestDto {
|
|
14
|
+
name: string;
|
|
15
|
+
percent_of_project: string;
|
|
16
|
+
project: number;
|
|
17
|
+
scheduled_phase_done_date?: string | null;
|
|
18
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ export * from "./component.dto";
|
|
|
46
46
|
export * from "./component-hourly-report.dto";
|
|
47
47
|
export * from "./config-enum.dto";
|
|
48
48
|
export * from "./create-jira-project-request.dto";
|
|
49
|
+
export * from "./create-project-financial-milestone-request.dto";
|
|
49
50
|
export * from "./custom-xlsx-file-format-enum.dto";
|
|
50
51
|
export * from "./daily-job.dto";
|
|
51
52
|
export * from "./date-range-field.dto";
|
|
@@ -142,6 +143,7 @@ export * from "./paginated-job-report-hourly-list.dto";
|
|
|
142
143
|
export * from "./paginated-location-list.dto";
|
|
143
144
|
export * from "./paginated-month-closure-list.dto";
|
|
144
145
|
export * from "./paginated-notification-list.dto";
|
|
146
|
+
export * from "./paginated-project-financial-milestone-list.dto";
|
|
145
147
|
export * from "./paginated-project-list.dto";
|
|
146
148
|
export * from "./paginated-project-margin-report-list.dto";
|
|
147
149
|
export * from "./paginated-project-note-list.dto";
|
|
@@ -186,6 +188,7 @@ export * from "./progress-info.dto";
|
|
|
186
188
|
export * from "./project-component-hourly-report-export-resource-create-export-job-request.dto";
|
|
187
189
|
export * from "./project-department-hourly-report-export-resource-create-export-job-request.dto";
|
|
188
190
|
export * from "./project.dto";
|
|
191
|
+
export * from "./project-financial-milestone.dto";
|
|
189
192
|
export * from "./project-job-hourly-report-export-resource-create-export-job-request.dto";
|
|
190
193
|
export * from "./project-margin-report.dto";
|
|
191
194
|
export * from "./project-note.dto";
|
|
@@ -280,6 +283,7 @@ export * from "./update-client-note-request.dto";
|
|
|
280
283
|
export * from "./update-client-project-note-file-request.dto";
|
|
281
284
|
export * from "./update-job.dto";
|
|
282
285
|
export * from "./update-job-request.dto";
|
|
286
|
+
export * from "./update-project-financial-milestone-request.dto";
|
|
283
287
|
export * from "./update-project-note-request.dto";
|
|
284
288
|
export * from "./update-task.dto";
|
|
285
289
|
export * from "./update-task-request.dto";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Delmar Api
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { ProjectFinancialMilestoneDto } from "./project-financial-milestone.dto";
|
|
11
|
+
export interface PaginatedProjectFinancialMilestoneListDto {
|
|
12
|
+
count: number;
|
|
13
|
+
results: Array<ProjectFinancialMilestoneDto>;
|
|
14
|
+
next?: string | null;
|
|
15
|
+
previous?: string | null;
|
|
16
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Delmar Api
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Serializer for ProjectFinancialMilestone model.
|
|
12
|
+
*/
|
|
13
|
+
export interface ProjectFinancialMilestoneDto {
|
|
14
|
+
readonly id: number;
|
|
15
|
+
readonly created: string;
|
|
16
|
+
readonly modified: string;
|
|
17
|
+
name: string;
|
|
18
|
+
percent_of_project: string;
|
|
19
|
+
project: number;
|
|
20
|
+
phase_done?: boolean;
|
|
21
|
+
payment_done?: boolean;
|
|
22
|
+
scheduled_phase_done_date?: string | null;
|
|
23
|
+
actual_phase_done_date?: string | null;
|
|
24
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Delmar Api
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Serializer for updating ProjectFinancialMilestone model.
|
|
12
|
+
*/
|
|
13
|
+
export interface UpdateProjectFinancialMilestoneRequestDto {
|
|
14
|
+
percent_of_project: string;
|
|
15
|
+
phase_done?: boolean;
|
|
16
|
+
payment_done?: boolean;
|
|
17
|
+
}
|
package/package.json
CHANGED