@saritasa/renewaire-frontend-sdk 0.161.0 → 0.162.0

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/renewaire-frontend-sdk@0.161.0
1
+ # @@saritasa/renewaire-frontend-sdk@0.162.0
2
2
 
3
3
  ```bash
4
- npm install @saritasa/renewaire-frontend-sdk@0.161.0 --save
4
+ npm install @saritasa/renewaire-frontend-sdk@0.162.0 --save
5
5
  ```
@@ -4027,7 +4027,15 @@ class ProjectSoldToApiService extends BaseService {
4027
4027
  this.httpClient = httpClient;
4028
4028
  }
4029
4029
  projectSoldToSearchSoldTo(requestParameters, observe = "body", reportProgress = false, options) {
4030
- const searchSoldToQueryFilter = requestParameters?.searchSoldToQueryFilter;
4030
+ const name = requestParameters?.name;
4031
+ const orderBy = requestParameters?.orderBy;
4032
+ const page = requestParameters?.page;
4033
+ const pageSize = requestParameters?.pageSize;
4034
+ let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
4035
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, name, "Name");
4036
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, orderBy, "OrderBy");
4037
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, page, "Page");
4038
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, pageSize, "PageSize");
4031
4039
  let localVarHeaders = this.defaultHeaders;
4032
4040
  // authentication (Bearer) required
4033
4041
  localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
@@ -4042,17 +4050,6 @@ class ProjectSoldToApiService extends BaseService {
4042
4050
  }
4043
4051
  const localVarHttpContext = options?.context ?? new HttpContext();
4044
4052
  const localVarTransferCache = options?.transferCache ?? true;
4045
- // to determine the Content-Type header
4046
- const consumes = [
4047
- "application/json-patch+json",
4048
- "application/json",
4049
- "text/json",
4050
- "application/*+json",
4051
- ];
4052
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
4053
- if (httpContentTypeSelected !== undefined) {
4054
- localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
4055
- }
4056
4053
  let responseType_ = "json";
4057
4054
  if (localVarHttpHeaderAcceptSelected) {
4058
4055
  if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
@@ -4069,7 +4066,7 @@ class ProjectSoldToApiService extends BaseService {
4069
4066
  const { basePath, withCredentials } = this.configuration;
4070
4067
  return this.httpClient.request("get", `${basePath}${localVarPath}`, {
4071
4068
  context: localVarHttpContext,
4072
- body: searchSoldToQueryFilter,
4069
+ params: localVarQueryParameters,
4073
4070
  responseType: responseType_,
4074
4071
  ...(withCredentials ? { withCredentials } : {}),
4075
4072
  headers: localVarHeaders,
@@ -10666,16 +10663,6 @@ var RegistrationStatus;
10666
10663
  * Do not edit the class manually.
10667
10664
  */
10668
10665
 
10669
- /**
10670
- * RenewAire CORES API
10671
- *
10672
- * Contact: renewaire@saritasa.com
10673
- *
10674
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10675
- * https://openapi-generator.tech
10676
- * Do not edit the class manually.
10677
- */
10678
-
10679
10666
  /**
10680
10667
  * RenewAire CORES API
10681
10668
  *