lancer-shared 1.0.12 → 1.0.13
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/dist/types/job/job.d.ts +3 -2
- package/package.json +1 -1
package/dist/types/job/job.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
import { SavedSearch } from "../saved-search";
|
|
3
3
|
import { LeadNote } from "./job-note";
|
|
4
|
-
import { LeadAgentStatus } from "./job-status";
|
|
4
|
+
import { LeadAgentStatus, LeadStatus } from "./job-status";
|
|
5
5
|
import { QuestionAnswerPair } from "../ai";
|
|
6
6
|
import { clientInfoSchema, jobListItemSchema, leadResponseSchema, leadSchema, jobSkillsSchema, metadataSchema, upworkJobSchema, vendorQualificationSchema } from "../../schemas/lead/lead";
|
|
7
7
|
export interface UpworkJob extends z.infer<typeof upworkJobSchema> {
|
|
@@ -17,7 +17,8 @@ export interface Lead extends z.infer<typeof leadSchema> {
|
|
|
17
17
|
vendorQualifications: VendorQualifications | null;
|
|
18
18
|
notes: LeadNote[] | null;
|
|
19
19
|
questionAnswerPairs: QuestionAnswerPair[] | null;
|
|
20
|
-
|
|
20
|
+
agentStatus: LeadAgentStatus;
|
|
21
|
+
leadStatus: LeadStatus;
|
|
21
22
|
}
|
|
22
23
|
export interface LeadResponse extends z.infer<typeof leadResponseSchema> {
|
|
23
24
|
leads: Lead[];
|