@saritasa/crm-delmar-core-sdk 0.1.33 → 0.1.35
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/export-project-status-reports-api.serviceInterface.d.ts +1 -0
- package/api/month-closures-api.service.d.ts +20 -0
- package/api/month-closures-api.serviceInterface.d.ts +5 -0
- package/api/projects-api.service.d.ts +3 -3
- package/api/projects-api.serviceInterface.d.ts +1 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +67 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +1 -0
- package/model/projects-status-report-list-error.dto.d.ts +2 -1
- package/model/projects-status-report-list-period-error-component.dto.d.ts +28 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -26,6 +26,7 @@ export interface ExportProjectStatusReportsRetrieveRequestParams {
|
|
|
26
26
|
id: number;
|
|
27
27
|
}
|
|
28
28
|
export interface ExportProjectStatusReportsStartCreateRequestParams {
|
|
29
|
+
period: string;
|
|
29
30
|
projectStatusReportResourceCreateExportJobRequestDto: ProjectStatusReportResourceCreateExportJobRequestDto;
|
|
30
31
|
billingType?: "fixed" | "hourly" | "investment" | "sla";
|
|
31
32
|
billingTypeIn?: Array<string>;
|
|
@@ -30,6 +30,26 @@ export declare class MonthClosuresApiService extends BaseService implements Mont
|
|
|
30
30
|
context?: HttpContext;
|
|
31
31
|
transferCache?: boolean;
|
|
32
32
|
}): Observable<HttpEvent<MonthClosureDto>>;
|
|
33
|
+
/**
|
|
34
|
+
* Get latest closed month.
|
|
35
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
36
|
+
* @param reportProgress flag to report request and response progress.
|
|
37
|
+
*/
|
|
38
|
+
monthClosuresLatestRetrieve(observe?: "body", reportProgress?: boolean, options?: {
|
|
39
|
+
httpHeaderAccept?: "application/json";
|
|
40
|
+
context?: HttpContext;
|
|
41
|
+
transferCache?: boolean;
|
|
42
|
+
}): Observable<MonthClosureDto>;
|
|
43
|
+
monthClosuresLatestRetrieve(observe?: "response", reportProgress?: boolean, options?: {
|
|
44
|
+
httpHeaderAccept?: "application/json";
|
|
45
|
+
context?: HttpContext;
|
|
46
|
+
transferCache?: boolean;
|
|
47
|
+
}): Observable<HttpResponse<MonthClosureDto>>;
|
|
48
|
+
monthClosuresLatestRetrieve(observe?: "events", reportProgress?: boolean, options?: {
|
|
49
|
+
httpHeaderAccept?: "application/json";
|
|
50
|
+
context?: HttpContext;
|
|
51
|
+
transferCache?: boolean;
|
|
52
|
+
}): Observable<HttpEvent<MonthClosureDto>>;
|
|
33
53
|
/**
|
|
34
54
|
* View set api for `MonthClosure` model.
|
|
35
55
|
* @param requestParameters
|
|
@@ -40,6 +40,11 @@ export interface MonthClosuresApiServiceInterface {
|
|
|
40
40
|
* @param requestParameters
|
|
41
41
|
*/
|
|
42
42
|
monthClosuresCreate(requestParameters: MonthClosuresCreateRequestParams, extraHttpRequestParams?: any): Observable<MonthClosureDto>;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* Get latest closed month.
|
|
46
|
+
*/
|
|
47
|
+
monthClosuresLatestRetrieve(extraHttpRequestParams?: any): Observable<MonthClosureDto>;
|
|
43
48
|
/**
|
|
44
49
|
*
|
|
45
50
|
* View set api for `MonthClosure` model.
|
|
@@ -105,17 +105,17 @@ export declare class ProjectsApiService extends BaseService implements ProjectsA
|
|
|
105
105
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
106
106
|
* @param reportProgress flag to report request and response progress.
|
|
107
107
|
*/
|
|
108
|
-
projectsStatusReportList(requestParameters
|
|
108
|
+
projectsStatusReportList(requestParameters: ProjectsStatusReportListRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
109
109
|
httpHeaderAccept?: "application/json";
|
|
110
110
|
context?: HttpContext;
|
|
111
111
|
transferCache?: boolean;
|
|
112
112
|
}): Observable<PaginatedProjectStatusReportListDto>;
|
|
113
|
-
projectsStatusReportList(requestParameters
|
|
113
|
+
projectsStatusReportList(requestParameters: ProjectsStatusReportListRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
114
114
|
httpHeaderAccept?: "application/json";
|
|
115
115
|
context?: HttpContext;
|
|
116
116
|
transferCache?: boolean;
|
|
117
117
|
}): Observable<HttpResponse<PaginatedProjectStatusReportListDto>>;
|
|
118
|
-
projectsStatusReportList(requestParameters
|
|
118
|
+
projectsStatusReportList(requestParameters: ProjectsStatusReportListRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
119
119
|
httpHeaderAccept?: "application/json";
|
|
120
120
|
context?: HttpContext;
|
|
121
121
|
transferCache?: boolean;
|