lancer-shared 1.2.126 → 1.2.127
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/bundle.cjs.js +2 -1
- package/dist/schemas/agent/index.d.ts +18 -13
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -13558,7 +13558,8 @@ const agentGenerateProposalRequestSchema = z.object({
|
|
|
13558
13558
|
organizationId: z.string(),
|
|
13559
13559
|
campaignId: z.string(),
|
|
13560
13560
|
job: z.object({
|
|
13561
|
-
|
|
13561
|
+
leadId: z.string(),
|
|
13562
|
+
jobId: z.string(),
|
|
13562
13563
|
title: z.string(),
|
|
13563
13564
|
description: z.string(),
|
|
13564
13565
|
questions: z.array(z.string()),
|
|
@@ -5,19 +5,22 @@ export declare const agentGenerateProposalRequestSchema: z.ZodObject<{
|
|
|
5
5
|
organizationId: z.ZodString;
|
|
6
6
|
campaignId: z.ZodString;
|
|
7
7
|
job: z.ZodObject<{
|
|
8
|
-
|
|
8
|
+
leadId: z.ZodString;
|
|
9
|
+
jobId: z.ZodString;
|
|
9
10
|
title: z.ZodString;
|
|
10
11
|
description: z.ZodString;
|
|
11
12
|
questions: z.ZodArray<z.ZodString, "many">;
|
|
12
13
|
clientCountry: z.ZodString;
|
|
13
14
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
|
|
15
|
+
leadId: string;
|
|
16
|
+
jobId: string;
|
|
15
17
|
title: string;
|
|
16
18
|
description: string;
|
|
17
19
|
questions: string[];
|
|
18
20
|
clientCountry: string;
|
|
19
21
|
}, {
|
|
20
|
-
|
|
22
|
+
leadId: string;
|
|
23
|
+
jobId: string;
|
|
21
24
|
title: string;
|
|
22
25
|
description: string;
|
|
23
26
|
questions: string[];
|
|
@@ -39,7 +42,8 @@ export declare const agentGenerateProposalRequestSchema: z.ZodObject<{
|
|
|
39
42
|
organizationId: string;
|
|
40
43
|
campaignId: string;
|
|
41
44
|
job: {
|
|
42
|
-
|
|
45
|
+
leadId: string;
|
|
46
|
+
jobId: string;
|
|
43
47
|
title: string;
|
|
44
48
|
description: string;
|
|
45
49
|
questions: string[];
|
|
@@ -55,7 +59,8 @@ export declare const agentGenerateProposalRequestSchema: z.ZodObject<{
|
|
|
55
59
|
organizationId: string;
|
|
56
60
|
campaignId: string;
|
|
57
61
|
job: {
|
|
58
|
-
|
|
62
|
+
leadId: string;
|
|
63
|
+
jobId: string;
|
|
59
64
|
title: string;
|
|
60
65
|
description: string;
|
|
61
66
|
questions: string[];
|
|
@@ -427,7 +432,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
427
432
|
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
428
433
|
organizationId: string;
|
|
429
434
|
campaignId: string;
|
|
430
|
-
|
|
435
|
+
jobId: string;
|
|
431
436
|
title: string | null;
|
|
432
437
|
description: string | null;
|
|
433
438
|
questions: string[] | null;
|
|
@@ -435,6 +440,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
435
440
|
question: string;
|
|
436
441
|
answer: string;
|
|
437
442
|
}[] | null;
|
|
443
|
+
id: string | null;
|
|
438
444
|
uid: string | null;
|
|
439
445
|
createdAt: number | null;
|
|
440
446
|
category: string | null;
|
|
@@ -521,7 +527,6 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
521
527
|
updatedAt: number | null;
|
|
522
528
|
} | null;
|
|
523
529
|
activityUpdates: 1 | 2 | 3 | null;
|
|
524
|
-
jobId: string;
|
|
525
530
|
scrapedAt: number | null;
|
|
526
531
|
suitabilityRating: number | null;
|
|
527
532
|
suitabilityReason: string | null;
|
|
@@ -561,7 +566,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
561
566
|
}, {
|
|
562
567
|
organizationId: string;
|
|
563
568
|
campaignId: string;
|
|
564
|
-
|
|
569
|
+
jobId: string;
|
|
565
570
|
title: string | null;
|
|
566
571
|
description: string | null;
|
|
567
572
|
questions: string[] | null;
|
|
@@ -569,6 +574,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
569
574
|
question: string;
|
|
570
575
|
answer: string;
|
|
571
576
|
}[] | null;
|
|
577
|
+
id: string | null;
|
|
572
578
|
uid: string | null;
|
|
573
579
|
createdAt: number | null;
|
|
574
580
|
category: string | null;
|
|
@@ -655,7 +661,6 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
655
661
|
updatedAt: number | null;
|
|
656
662
|
} | null;
|
|
657
663
|
activityUpdates: 1 | 2 | 3 | null;
|
|
658
|
-
jobId: string;
|
|
659
664
|
scrapedAt: number | null;
|
|
660
665
|
suitabilityRating: number | null;
|
|
661
666
|
suitabilityReason: string | null;
|
|
@@ -711,7 +716,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
711
716
|
lead: {
|
|
712
717
|
organizationId: string;
|
|
713
718
|
campaignId: string;
|
|
714
|
-
|
|
719
|
+
jobId: string;
|
|
715
720
|
title: string | null;
|
|
716
721
|
description: string | null;
|
|
717
722
|
questions: string[] | null;
|
|
@@ -719,6 +724,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
719
724
|
question: string;
|
|
720
725
|
answer: string;
|
|
721
726
|
}[] | null;
|
|
727
|
+
id: string | null;
|
|
722
728
|
uid: string | null;
|
|
723
729
|
createdAt: number | null;
|
|
724
730
|
category: string | null;
|
|
@@ -805,7 +811,6 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
805
811
|
updatedAt: number | null;
|
|
806
812
|
} | null;
|
|
807
813
|
activityUpdates: 1 | 2 | 3 | null;
|
|
808
|
-
jobId: string;
|
|
809
814
|
scrapedAt: number | null;
|
|
810
815
|
suitabilityRating: number | null;
|
|
811
816
|
suitabilityReason: string | null;
|
|
@@ -855,7 +860,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
855
860
|
lead: {
|
|
856
861
|
organizationId: string;
|
|
857
862
|
campaignId: string;
|
|
858
|
-
|
|
863
|
+
jobId: string;
|
|
859
864
|
title: string | null;
|
|
860
865
|
description: string | null;
|
|
861
866
|
questions: string[] | null;
|
|
@@ -863,6 +868,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
863
868
|
question: string;
|
|
864
869
|
answer: string;
|
|
865
870
|
}[] | null;
|
|
871
|
+
id: string | null;
|
|
866
872
|
uid: string | null;
|
|
867
873
|
createdAt: number | null;
|
|
868
874
|
category: string | null;
|
|
@@ -949,7 +955,6 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
949
955
|
updatedAt: number | null;
|
|
950
956
|
} | null;
|
|
951
957
|
activityUpdates: 1 | 2 | 3 | null;
|
|
952
|
-
jobId: string;
|
|
953
958
|
scrapedAt: number | null;
|
|
954
959
|
suitabilityRating: number | null;
|
|
955
960
|
suitabilityReason: string | null;
|