@hapl/api-queries 1.0.3 → 1.1.0--canary.234.01aa882.0

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.
@@ -54,6 +54,10 @@ export declare type FindServiceRequestsParams = {
54
54
  onlyTeamLeaderExpiredTask?: boolean;
55
55
  realtyExtId?: number;
56
56
  scoring?: number | number[];
57
+ sentToDepublishAt?: string | {
58
+ from?: string;
59
+ to?: string;
60
+ };
57
61
  showTrainees?: boolean;
58
62
  source?: string;
59
63
  status?: ServiceRequestStatus | ServiceRequestStatus[];
@@ -156,6 +156,7 @@ export declare type ServiceRequest = {
156
156
  };
157
157
  realtyExtId?: number;
158
158
  realtyType?: RealtyTypeV2;
159
+ sentToDepublishAt?: string;
159
160
  sentToVerifyAt?: string;
160
161
  task?: Partial<Omit<Task, 'serviceRequest'>> & Required<Pick<Task, 'id'>>;
161
162
  teamLeadTask?: Partial<Omit<Task, 'serviceRequest'>> & Required<Pick<Task, 'id'>>;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.3",
2
+ "version": "1.1.0--canary.234.01aa882.0",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -50,6 +50,7 @@ export type FindServiceRequestsParams = {
50
50
  onlyTeamLeaderExpiredTask?: boolean;
51
51
  realtyExtId?: number;
52
52
  scoring?: number | number[];
53
+ sentToDepublishAt?: string | { from?: string; to?: string };
53
54
  showTrainees?: boolean;
54
55
  source?: string;
55
56
  status?: ServiceRequestStatus | ServiceRequestStatus[];
@@ -152,6 +152,7 @@ export type ServiceRequest = {
152
152
  realty?: Partial<Realty> & { id: number };
153
153
  realtyExtId?: number;
154
154
  realtyType?: RealtyTypeV2;
155
+ sentToDepublishAt?: string;
155
156
  sentToVerifyAt?: string;
156
157
  task?: Partial<Omit<Task, 'serviceRequest'>> & Required<Pick<Task, 'id'>>;
157
158
  teamLeadTask?: Partial<Omit<Task, 'serviceRequest'>> & Required<Pick<Task, 'id'>>;