@lcdp/api-react-rest-client 2.13.6-LDS-4623-admin-cherche-tri-pub.16596394489 → 2.13.6-LDS-4623-admin-cherche-tri-pub.16596601707

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": "2.13.6-LDS-4623-admin-cherche-tri-pub.16596394489",
3
+ "version": "2.13.6-LDS-4623-admin-cherche-tri-pub.16596601707",
4
4
  "scripts": {
5
5
  "build": "tsc"
6
6
  },
@@ -29,6 +29,7 @@ export interface GetPubsRequest {
29
29
  scheduleDeactivationDateGte?: Date;
30
30
  timecardActivationDateGte?: Date;
31
31
  timecardActivationDateLte?: Date;
32
+ timecardDeactivationDateGte?: Date;
32
33
  createdAtGte?: Date;
33
34
  createdAtLte?: Date;
34
35
  tagsCo?: Array<string>;
@@ -276,6 +276,9 @@ var SearchPubApi = /** @class */ (function (_super) {
276
276
  if (requestParameters['timecardActivationDateLte'] != null) {
277
277
  queryParameters['timecardActivationDate[lte]'] = requestParameters['timecardActivationDateLte'].toISOString();
278
278
  }
279
+ if (requestParameters['timecardDeactivationDateGte'] != null) {
280
+ queryParameters['timecardDeactivationDate[gte]'] = requestParameters['timecardDeactivationDateGte'].toISOString();
281
+ }
279
282
  if (requestParameters['createdAtGte'] != null) {
280
283
  queryParameters['createdAt[gte]'] = requestParameters['createdAtGte'].toISOString();
281
284
  }