@hapl/api-queries 0.2.46 → 0.2.47
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.
|
@@ -4,6 +4,7 @@ import { Realty, RealtyType } from './Realty';
|
|
|
4
4
|
import { RealtyType as RealtyTypeV2 } from '../../v2/types/Realty';
|
|
5
5
|
import { Task } from './Task';
|
|
6
6
|
import { User } from './User';
|
|
7
|
+
import { CallTaskDirection } from './CallTask';
|
|
7
8
|
export declare enum ServiceRequestCategory {
|
|
8
9
|
Depublished = "depublished",
|
|
9
10
|
Discounted = "discounted",
|
|
@@ -137,5 +138,5 @@ export declare type ServiceRequest = {
|
|
|
137
138
|
id: number;
|
|
138
139
|
};
|
|
139
140
|
valuationProblems?: string[];
|
|
140
|
-
parentCallTaskDirection?:
|
|
141
|
+
parentCallTaskDirection?: CallTaskDirection;
|
|
141
142
|
};
|
package/package.json
CHANGED
|
@@ -4,6 +4,7 @@ import { Realty, RealtyType } from './Realty';
|
|
|
4
4
|
import { RealtyType as RealtyTypeV2 } from '../../v2/types/Realty';
|
|
5
5
|
import { Task } from './Task';
|
|
6
6
|
import { User } from './User';
|
|
7
|
+
import { CallTaskDirection } from './CallTask';
|
|
7
8
|
|
|
8
9
|
export enum ServiceRequestCategory {
|
|
9
10
|
Depublished = 'depublished',
|
|
@@ -129,5 +130,5 @@ export type ServiceRequest = {
|
|
|
129
130
|
task?: Partial<Task> & { id: number };
|
|
130
131
|
teamLeadTask?: Partial<Task> & { id: number };
|
|
131
132
|
valuationProblems?: string[];
|
|
132
|
-
parentCallTaskDirection?:
|
|
133
|
+
parentCallTaskDirection?: CallTaskDirection;
|
|
133
134
|
};
|