@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 CHANGED
@@ -1,5 +1,5 @@
1
- # @@saritasa/crm-delmar-core-sdk@0.1.33
1
+ # @@saritasa/crm-delmar-core-sdk@0.1.35
2
2
 
3
3
  ```bash
4
- npm install @saritasa/crm-delmar-core-sdk@0.1.33 --save
4
+ npm install @saritasa/crm-delmar-core-sdk@0.1.35 --save
5
5
  ```
@@ -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 &#x60;MonthClosure&#x60; 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 &#x60;MonthClosure&#x60; 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?: ProjectsStatusReportListRequestParams, observe?: "body", reportProgress?: boolean, options?: {
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?: ProjectsStatusReportListRequestParams, observe?: "response", reportProgress?: boolean, options?: {
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?: ProjectsStatusReportListRequestParams, observe?: "events", reportProgress?: boolean, options?: {
118
+ projectsStatusReportList(requestParameters: ProjectsStatusReportListRequestParams, observe?: "events", reportProgress?: boolean, options?: {
119
119
  httpHeaderAccept?: "application/json";
120
120
  context?: HttpContext;
121
121
  transferCache?: boolean;
@@ -66,6 +66,7 @@ export interface ProjectsRetrieveRequestParams {
66
66
  id: number;
67
67
  }
68
68
  export interface ProjectsStatusReportListRequestParams {
69
+ period: string;
69
70
  billingType?: "fixed" | "hourly" | "investment" | "sla";
70
71
  billingTypeIn?: Array<string>;
71
72
  client?: number;