@hapl/api-queries 1.0.26 → 1.0.27--canary.264.c514f04.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.
@@ -16,19 +16,24 @@ export declare type FindCallTasksParams = {
16
16
  'serviceRequest.id'?: string;
17
17
  'curator.id'?: string;
18
18
  actualAt?: string | {
19
- from: string;
20
- to: string;
19
+ from?: string;
20
+ to?: string;
21
21
  };
22
22
  createdAt?: string | {
23
- from: string;
24
- to: string;
23
+ from?: string;
24
+ to?: string;
25
25
  };
26
26
  hasAccessTags?: string[];
27
27
  hasNoAccessTags?: string[];
28
28
  id?: number | number[];
29
29
  isObjectRequest?: boolean;
30
+ lastBookingAt?: string | {
31
+ from?: string;
32
+ to?: string;
33
+ };
30
34
  qualityAssurance?: boolean;
31
35
  query?: string;
36
+ source?: string;
32
37
  status?: CallTaskStatus | CallTaskStatus[];
33
38
  triggeredByEvent?: CallTaskTriggeredByEvent;
34
39
  };
@@ -15,19 +15,24 @@ export declare type FindCallTasksCountParams = {
15
15
  filter?: {
16
16
  'serviceRequest.id'?: string;
17
17
  actualAt?: string | {
18
- from: string;
19
- to: string;
18
+ from?: string;
19
+ to?: string;
20
20
  };
21
21
  createdAt?: string | {
22
- from: string;
23
- to: string;
22
+ from?: string;
23
+ to?: string;
24
24
  };
25
25
  hasAccessTags?: string[];
26
26
  hasNoAccessTags?: string[];
27
27
  id?: number | number[];
28
28
  isObjectRequest?: boolean;
29
+ lastBookingAt?: string | {
30
+ from?: string;
31
+ to?: string;
32
+ };
29
33
  qualityAssurance?: boolean;
30
34
  query?: string;
35
+ source?: string;
31
36
  status?: CallTaskStatus | CallTaskStatus[];
32
37
  triggeredByEvent?: CallTaskTriggeredByEvent;
33
38
  lastRequestDate?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hapl/api-queries",
3
- "version": "1.0.26",
3
+ "version": "1.0.27--canary.264.c514f04.0",
4
4
  "author": "Homeapp",
5
5
  "license": "MIT",
6
6
  "module": "dist/api-queries.esm.js",
@@ -14,14 +14,16 @@ export type FindCallTasksParams = {
14
14
  filter?: {
15
15
  'serviceRequest.id'?: string;
16
16
  'curator.id'?: string;
17
- actualAt?: string | { from: string; to: string };
18
- createdAt?: string | { from: string; to: string };
17
+ actualAt?: string | { from?: string; to?: string };
18
+ createdAt?: string | { from?: string; to?: string };
19
19
  hasAccessTags?: string[];
20
20
  hasNoAccessTags?: string[];
21
21
  id?: number | number[];
22
22
  isObjectRequest?: boolean;
23
+ lastBookingAt?: string | { from?: string; to?: string };
23
24
  qualityAssurance?: boolean;
24
25
  query?: string;
26
+ source?: string;
25
27
  status?: CallTaskStatus | CallTaskStatus[];
26
28
  triggeredByEvent?: CallTaskTriggeredByEvent;
27
29
  };
@@ -13,14 +13,16 @@ export type FindCallTasksCountHeaders = { 'x-auth-hc': string };
13
13
  export type FindCallTasksCountParams = {
14
14
  filter?: {
15
15
  'serviceRequest.id'?: string;
16
- actualAt?: string | { from: string; to: string };
17
- createdAt?: string | { from: string; to: string };
16
+ actualAt?: string | { from?: string; to?: string };
17
+ createdAt?: string | { from?: string; to?: string };
18
18
  hasAccessTags?: string[];
19
19
  hasNoAccessTags?: string[];
20
20
  id?: number | number[];
21
21
  isObjectRequest?: boolean;
22
+ lastBookingAt?: string | { from?: string; to?: string };
22
23
  qualityAssurance?: boolean;
23
24
  query?: string;
25
+ source?: string;
24
26
  status?: CallTaskStatus | CallTaskStatus[];
25
27
  triggeredByEvent?: CallTaskTriggeredByEvent;
26
28
  lastRequestDate?: string;