@revxui/api-clients-ts 3.0.1 → 3.0.2

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,4 +1,4 @@
1
- # @revxui/api-clients-ts@3.0.1
1
+ # @revxui/api-clients-ts@3.0.2
2
2
 
3
3
  No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
 
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
24
24
  _published:_
25
25
 
26
26
  ```console
27
- npm install @revxui/api-clients-ts@3.0.1 --save
27
+ npm install @revxui/api-clients-ts@3.0.2 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -4260,8 +4260,6 @@ class ClickDestinationControllerService extends BaseService {
4260
4260
  if (id === null || id === undefined) {
4261
4261
  throw new Error('Required parameter id was null or undefined when calling getClickDestinationById.');
4262
4262
  }
4263
- let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
4264
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'id', id, QueryParamStyle.Form, true);
4265
4263
  let localVarHeaders = this.defaultHeaders;
4266
4264
  const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
4267
4265
  'application/json'
@@ -4283,11 +4281,10 @@ class ClickDestinationControllerService extends BaseService {
4283
4281
  responseType_ = 'blob';
4284
4282
  }
4285
4283
  }
4286
- let localVarPath = `/v2/api/clickdestinations/`;
4284
+ let localVarPath = `/v2/api/clickdestinations/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
4287
4285
  const { basePath, withCredentials } = this.configuration;
4288
4286
  return this.httpClient.request('get', `${basePath}${localVarPath}`, {
4289
4287
  context: localVarHttpContext,
4290
- params: localVarQueryParameters.toHttpParams(),
4291
4288
  responseType: responseType_,
4292
4289
  ...(withCredentials ? { withCredentials } : {}),
4293
4290
  headers: localVarHeaders,