@lcdp/api-react-rest-client 2.4.0-develop.5647169712 → 2.4.0-develop.5667184163

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.
@@ -16,6 +16,7 @@ export interface GetProductInsightRequest {
16
16
  }
17
17
  export interface GetProductInsightsRequest {
18
18
  signaturesAnyeq?: Array<string>;
19
+ jUpdatedAtGte?: Date;
19
20
  orderBy?: GetProductInsightsOrderByEnum;
20
21
  p?: number;
21
22
  pp?: number;
@@ -161,6 +161,9 @@ var SearchProductInsightApi = /** @class */ (function (_super) {
161
161
  if (requestParameters.signaturesAnyeq) {
162
162
  queryParameters['signatures[anyeq]'] = requestParameters.signaturesAnyeq;
163
163
  }
164
+ if (requestParameters.jUpdatedAtGte !== undefined) {
165
+ queryParameters['jUpdatedAt[gte]'] = requestParameters.jUpdatedAtGte.toISOString();
166
+ }
164
167
  if (requestParameters.orderBy !== undefined) {
165
168
  queryParameters['orderBy'] = requestParameters.orderBy;
166
169
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lcdp/api-react-rest-client",
3
- "version": "2.4.0-develop.5647169712",
3
+ "version": "2.4.0-develop.5667184163",
4
4
  "scripts": {
5
5
  "build": "tsc"
6
6
  },