@lcdp/api-react-rest-client 3.1.1 → 3.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lcdp/api-react-rest-client",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "scripts": {
5
5
  "build": "tsc"
6
6
  },
@@ -28,6 +28,7 @@ export interface DeleteSaleOffersRequest {
28
28
  pEq?: Array<number>;
29
29
  refEq?: Array<string>;
30
30
  refNeq?: Array<string>;
31
+ tagsCo?: Array<string>;
31
32
  }
32
33
  export interface UpdateSaleOfferRequest {
33
34
  saleOfferReference: string;
@@ -337,6 +337,9 @@ var ManageSaleOfferApi = /** @class */ (function (_super) {
337
337
  if (requestParameters['refNeq'] != null) {
338
338
  queryParameters['ref[neq]'] = requestParameters['refNeq'];
339
339
  }
340
+ if (requestParameters['tagsCo'] != null) {
341
+ queryParameters['tags[co]'] = requestParameters['tagsCo'];
342
+ }
340
343
  headerParameters = {};
341
344
  if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
342
345
  _a = headerParameters;