@lcdp/api-react-rest-client 2.13.6-LDS-4623-admin-cherche-tri-pub.16522355237 → 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.16522355237",
3
+ "version": "2.13.6-LDS-4623-admin-cherche-tri-pub.16596601707",
4
4
  "scripts": {
5
5
  "build": "tsc"
6
6
  },
@@ -26,10 +26,12 @@ export interface GetPubsRequest {
26
26
  activeEq?: boolean;
27
27
  scheduleActivationDateGte?: Date;
28
28
  scheduleActivationDateLte?: Date;
29
+ scheduleDeactivationDateGte?: Date;
29
30
  timecardActivationDateGte?: Date;
30
31
  timecardActivationDateLte?: Date;
31
- createdDateGte?: Date;
32
- createdDateLte?: Date;
32
+ timecardDeactivationDateGte?: Date;
33
+ createdAtGte?: Date;
34
+ createdAtLte?: Date;
33
35
  tagsCo?: Array<string>;
34
36
  orderBy?: GetPubsOrderByEnum;
35
37
  p?: number;
@@ -267,17 +267,23 @@ var SearchPubApi = /** @class */ (function (_super) {
267
267
  if (requestParameters['scheduleActivationDateLte'] != null) {
268
268
  queryParameters['scheduleActivationDate[lte]'] = requestParameters['scheduleActivationDateLte'].toISOString();
269
269
  }
270
+ if (requestParameters['scheduleDeactivationDateGte'] != null) {
271
+ queryParameters['scheduleDeactivationDate[gte]'] = requestParameters['scheduleDeactivationDateGte'].toISOString();
272
+ }
270
273
  if (requestParameters['timecardActivationDateGte'] != null) {
271
274
  queryParameters['timecardActivationDate[gte]'] = requestParameters['timecardActivationDateGte'].toISOString();
272
275
  }
273
276
  if (requestParameters['timecardActivationDateLte'] != null) {
274
277
  queryParameters['timecardActivationDate[lte]'] = requestParameters['timecardActivationDateLte'].toISOString();
275
278
  }
276
- if (requestParameters['createdDateGte'] != null) {
277
- queryParameters['createdDate[gte]'] = requestParameters['createdDateGte'].toISOString();
279
+ if (requestParameters['timecardDeactivationDateGte'] != null) {
280
+ queryParameters['timecardDeactivationDate[gte]'] = requestParameters['timecardDeactivationDateGte'].toISOString();
281
+ }
282
+ if (requestParameters['createdAtGte'] != null) {
283
+ queryParameters['createdAt[gte]'] = requestParameters['createdAtGte'].toISOString();
278
284
  }
279
- if (requestParameters['createdDateLte'] != null) {
280
- queryParameters['createdDate[lte]'] = requestParameters['createdDateLte'].toISOString();
285
+ if (requestParameters['createdAtLte'] != null) {
286
+ queryParameters['createdAt[lte]'] = requestParameters['createdAtLte'].toISOString();
281
287
  }
282
288
  if (requestParameters['tagsCo'] != null) {
283
289
  queryParameters['tags[co]'] = requestParameters['tagsCo'];