@saritasa/crm-delmar-core-sdk 0.1.59 → 0.1.60

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.59
1
+ # @@saritasa/crm-delmar-core-sdk@0.1.60
2
2
 
3
3
  ```bash
4
- npm install @saritasa/crm-delmar-core-sdk@0.1.59 --save
4
+ npm install @saritasa/crm-delmar-core-sdk@0.1.60 --save
5
5
  ```
@@ -88,6 +88,7 @@ export interface ClientsMarginReportRetrieveRequestParams {
88
88
  roundingType: "none" | "round_half" | "round_zero";
89
89
  accountManagerIn?: Array<number>;
90
90
  idIn?: Array<number>;
91
+ includeHostedProjects?: boolean;
91
92
  ordering?: string;
92
93
  projectsBillingType?: "fixed" | "hourly" | "investment" | "sla";
93
94
  projectsBillingTypeIn?: Array<string>;
@@ -31,6 +31,7 @@ export interface ExportMarginReportStartCreateRequestParams {
31
31
  marginReportResourceCreateExportJobRequestDto: MarginReportResourceCreateExportJobRequestDto;
32
32
  accountManagerIn?: Array<number>;
33
33
  idIn?: Array<number>;
34
+ includeHostedProjects?: boolean;
34
35
  ordering?: string;
35
36
  projectOrdering?: string;
36
37
  projectsBillingType?: "fixed" | "hourly" | "investment" | "sla";
@@ -51,6 +51,7 @@ export interface ProjectsMarginReportListRequestParams {
51
51
  clientAccountManagerIn?: Array<number>;
52
52
  clientIn?: Array<number>;
53
53
  idIn?: Array<number>;
54
+ includeHostedProjects?: boolean;
54
55
  isUtilized?: boolean;
55
56
  limit?: number;
56
57
  offset?: number;
@@ -1493,6 +1493,7 @@ class ClientsApiService extends BaseService {
1493
1493
  }
1494
1494
  const accountManagerIn = requestParameters?.accountManagerIn;
1495
1495
  const idIn = requestParameters?.idIn;
1496
+ const includeHostedProjects = requestParameters?.includeHostedProjects;
1496
1497
  const ordering = requestParameters?.ordering;
1497
1498
  const projectsBillingType = requestParameters?.projectsBillingType;
1498
1499
  const projectsBillingTypeIn = requestParameters?.projectsBillingTypeIn;
@@ -1506,6 +1507,7 @@ class ClientsApiService extends BaseService {
1506
1507
  if (idIn) {
1507
1508
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...idIn].join(COLLECTION_FORMATS["csv"]), "id__in");
1508
1509
  }
1510
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, includeHostedProjects, "include_hosted_projects");
1509
1511
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, ordering, "ordering");
1510
1512
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, period, "period");
1511
1513
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, projectsBillingType, "projects__billing_type");
@@ -6108,6 +6110,7 @@ class ExportMarginReportApiService extends BaseService {
6108
6110
  }
6109
6111
  const accountManagerIn = requestParameters?.accountManagerIn;
6110
6112
  const idIn = requestParameters?.idIn;
6113
+ const includeHostedProjects = requestParameters?.includeHostedProjects;
6111
6114
  const ordering = requestParameters?.ordering;
6112
6115
  const projectOrdering = requestParameters?.projectOrdering;
6113
6116
  const projectsBillingType = requestParameters?.projectsBillingType;
@@ -6122,6 +6125,7 @@ class ExportMarginReportApiService extends BaseService {
6122
6125
  if (idIn) {
6123
6126
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...idIn].join(COLLECTION_FORMATS["csv"]), "id__in");
6124
6127
  }
6128
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, includeHostedProjects, "include_hosted_projects");
6125
6129
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, ordering, "ordering");
6126
6130
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, period, "period");
6127
6131
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, projectOrdering, "project_ordering");
@@ -13283,6 +13287,7 @@ class ProjectsApiService extends BaseService {
13283
13287
  const clientAccountManagerIn = requestParameters?.clientAccountManagerIn;
13284
13288
  const clientIn = requestParameters?.clientIn;
13285
13289
  const idIn = requestParameters?.idIn;
13290
+ const includeHostedProjects = requestParameters?.includeHostedProjects;
13286
13291
  const isUtilized = requestParameters?.isUtilized;
13287
13292
  const limit = requestParameters?.limit;
13288
13293
  const offset = requestParameters?.offset;
@@ -13305,6 +13310,7 @@ class ProjectsApiService extends BaseService {
13305
13310
  if (idIn) {
13306
13311
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...idIn].join(COLLECTION_FORMATS["csv"]), "id__in");
13307
13312
  }
13313
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, includeHostedProjects, "include_hosted_projects");
13308
13314
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, isUtilized, "is_utilized");
13309
13315
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, limit, "limit");
13310
13316
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, offset, "offset");