@saritasa/crm-delmar-core-sdk 0.1.348 → 0.1.352
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 +0 -1
- package/api/projects-api.service.d.ts +3 -3
- package/api/projects-api.serviceInterface.d.ts +0 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +0 -10
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/project-status-report.dto.d.ts +2 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,7 +26,6 @@ export interface ExportProjectStatusReportsRetrieveRequestParams {
|
|
|
26
26
|
id: number;
|
|
27
27
|
}
|
|
28
28
|
export interface ExportProjectStatusReportsStartCreateRequestParams {
|
|
29
|
-
period: string;
|
|
30
29
|
projectStatusReportResourceCreateExportJobRequestDto: ProjectStatusReportResourceCreateExportJobRequestDto;
|
|
31
30
|
billingType?: "fixed" | "hourly" | "investment" | "sla";
|
|
32
31
|
billingTypeIn?: Array<string>;
|
|
@@ -135,17 +135,17 @@ export declare class ProjectsApiService extends BaseService implements ProjectsA
|
|
|
135
135
|
* @param reportProgress flag to report request and response progress.
|
|
136
136
|
* @param options additional options
|
|
137
137
|
*/
|
|
138
|
-
projectsStatusReportList(requestParameters
|
|
138
|
+
projectsStatusReportList(requestParameters?: ProjectsStatusReportListRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
139
139
|
httpHeaderAccept?: "application/json";
|
|
140
140
|
context?: HttpContext;
|
|
141
141
|
transferCache?: boolean;
|
|
142
142
|
}): Observable<PaginatedProjectStatusReportListDto>;
|
|
143
|
-
projectsStatusReportList(requestParameters
|
|
143
|
+
projectsStatusReportList(requestParameters?: ProjectsStatusReportListRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
144
144
|
httpHeaderAccept?: "application/json";
|
|
145
145
|
context?: HttpContext;
|
|
146
146
|
transferCache?: boolean;
|
|
147
147
|
}): Observable<HttpResponse<PaginatedProjectStatusReportListDto>>;
|
|
148
|
-
projectsStatusReportList(requestParameters
|
|
148
|
+
projectsStatusReportList(requestParameters?: ProjectsStatusReportListRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
149
149
|
httpHeaderAccept?: "application/json";
|
|
150
150
|
context?: HttpContext;
|
|
151
151
|
transferCache?: boolean;
|
|
@@ -85,7 +85,6 @@ export interface ProjectsSearchListRequestParams {
|
|
|
85
85
|
statusIn?: Array<string>;
|
|
86
86
|
}
|
|
87
87
|
export interface ProjectsStatusReportListRequestParams {
|
|
88
|
-
period: string;
|
|
89
88
|
billingType?: "fixed" | "hourly" | "investment" | "sla";
|
|
90
89
|
billingTypeIn?: Array<string>;
|
|
91
90
|
client?: number;
|
|
@@ -6828,10 +6828,6 @@ class ExportProjectStatusReportsApiService extends BaseService {
|
|
|
6828
6828
|
});
|
|
6829
6829
|
}
|
|
6830
6830
|
exportProjectStatusReportsStartCreate(requestParameters, observe = "body", reportProgress = false, options) {
|
|
6831
|
-
const period = requestParameters?.period;
|
|
6832
|
-
if (period === null || period === undefined) {
|
|
6833
|
-
throw new Error("Required parameter period was null or undefined when calling exportProjectStatusReportsStartCreate.");
|
|
6834
|
-
}
|
|
6835
6831
|
const projectStatusReportResourceCreateExportJobRequestDto = requestParameters?.projectStatusReportResourceCreateExportJobRequestDto;
|
|
6836
6832
|
if (projectStatusReportResourceCreateExportJobRequestDto === null ||
|
|
6837
6833
|
projectStatusReportResourceCreateExportJobRequestDto === undefined) {
|
|
@@ -6878,7 +6874,6 @@ class ExportProjectStatusReportsApiService extends BaseService {
|
|
|
6878
6874
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, "include_tm", includeTm, QueryParamStyle.Form, true);
|
|
6879
6875
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, "is_billable", isBillable, QueryParamStyle.Form, true);
|
|
6880
6876
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, "ordering", ordering, QueryParamStyle.Form, true);
|
|
6881
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, "period", period, QueryParamStyle.Form, true);
|
|
6882
6877
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, "project_managers__id__in", projectManagersIdIn, QueryParamStyle.Form, false);
|
|
6883
6878
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, "search", search, QueryParamStyle.Form, true);
|
|
6884
6879
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, "status", status, QueryParamStyle.Form, true);
|
|
@@ -13955,10 +13950,6 @@ class ProjectsApiService extends BaseService {
|
|
|
13955
13950
|
});
|
|
13956
13951
|
}
|
|
13957
13952
|
projectsStatusReportList(requestParameters, observe = "body", reportProgress = false, options) {
|
|
13958
|
-
const period = requestParameters?.period;
|
|
13959
|
-
if (period === null || period === undefined) {
|
|
13960
|
-
throw new Error("Required parameter period was null or undefined when calling projectsStatusReportList.");
|
|
13961
|
-
}
|
|
13962
13953
|
const billingType = requestParameters?.billingType;
|
|
13963
13954
|
const billingTypeIn = requestParameters?.billingTypeIn;
|
|
13964
13955
|
const client = requestParameters?.client;
|
|
@@ -14004,7 +13995,6 @@ class ProjectsApiService extends BaseService {
|
|
|
14004
13995
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, "limit", limit, QueryParamStyle.Form, true);
|
|
14005
13996
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, "offset", offset, QueryParamStyle.Form, true);
|
|
14006
13997
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, "ordering", ordering, QueryParamStyle.Form, true);
|
|
14007
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, "period", period, QueryParamStyle.Form, true);
|
|
14008
13998
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, "project_managers__id__in", projectManagersIdIn, QueryParamStyle.Form, false);
|
|
14009
13999
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, "search", search, QueryParamStyle.Form, true);
|
|
14010
14000
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, "status", status, QueryParamStyle.Form, true);
|