lancer-shared 1.0.49 → 1.0.50
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/schemas/job/job.d.ts +12 -4
- package/dist/schemas/job/job.js +4 -3
- package/dist/schemas/job/pipeline-job.d.ts +3 -9
- package/dist/schemas/job/pipeline-job.js +0 -1
- package/dist/schemas/lead/lead.d.ts +4 -10
- package/dist/schemas/lead/lead.js +5 -1
- package/dist/schemas/logger/log-event.d.ts +5 -5
- package/dist/schemas/logger/log-event.js +29 -29
- package/package.json +1 -1
- package/dist/constants/upwork-filters.d.ts +0 -5
- package/dist/constants/upwork-filters.js +0 -75
- package/dist/schemas/ai-config/ai-config.d.ts +0 -39
- package/dist/schemas/ai-config/ai-config.js +0 -12
- package/dist/schemas/ai-config/index.d.ts +0 -1
- package/dist/schemas/ai-config/index.js +0 -17
- package/dist/schemas/bidding/proposal-dto.d.ts +0 -26
- package/dist/schemas/bidding/proposal-dto.js +0 -18
- package/dist/schemas/job/job-pipeline.d.ts +0 -74
- package/dist/schemas/job/job-pipeline.js +0 -29
- package/dist/schemas/job/job-suitability.d.ts +0 -12
- package/dist/schemas/job/job-suitability.js +0 -13
- package/dist/schemas/knowledge-object/index.d.ts +0 -1
- package/dist/schemas/knowledge-object/index.js +0 -17
- package/dist/schemas/knowledge-object/knowledge-object.d.ts +0 -128
- package/dist/schemas/knowledge-object/knowledge-object.js +0 -47
- package/dist/schemas/scraper/scrape-response.d.ts +0 -345
- package/dist/schemas/scraper/scrape-response.js +0 -9
- package/dist/types/ai-config/ai-config.d.ts +0 -6
- package/dist/types/ai-config/ai-config.js +0 -2
- package/dist/types/ai-config/index.d.ts +0 -1
- package/dist/types/ai-config/index.js +0 -17
- package/dist/types/bidding/proposal-dto.d.ts +0 -3
- package/dist/types/bidding/proposal-dto.js +0 -2
- package/dist/types/job/job-pipeline.d.ts +0 -4
- package/dist/types/job/job-pipeline.js +0 -2
- package/dist/types/job/job-suitability.d.ts +0 -3
- package/dist/types/job/job-suitability.js +0 -2
- package/dist/types/knowledge-object/index.d.ts +0 -1
- package/dist/types/knowledge-object/index.js +0 -17
- package/dist/types/knowledge-object/knowledge-object.d.ts +0 -4
- package/dist/types/knowledge-object/knowledge-object.js +0 -2
- package/dist/types/scraper/scrape-response.d.ts +0 -4
- package/dist/types/scraper/scrape-response.js +0 -2
|
@@ -342,7 +342,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
342
342
|
} | null;
|
|
343
343
|
processed: boolean | null;
|
|
344
344
|
}>;
|
|
345
|
-
export declare const
|
|
345
|
+
export declare const leadSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
346
346
|
id: z.ZodNullable<z.ZodString>;
|
|
347
347
|
createdAt: z.ZodNullable<z.ZodNumber>;
|
|
348
348
|
title: z.ZodNullable<z.ZodString>;
|
|
@@ -469,6 +469,7 @@ export declare const jobSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
469
469
|
}>>;
|
|
470
470
|
processed: z.ZodNullable<z.ZodBoolean>;
|
|
471
471
|
}, {
|
|
472
|
+
jobId: z.ZodString;
|
|
472
473
|
updatedAt: z.ZodNullable<z.ZodNumber>;
|
|
473
474
|
suitabilityRating: z.ZodNullable<z.ZodNumber>;
|
|
474
475
|
suitabilityReason: z.ZodNullable<z.ZodString>;
|
|
@@ -530,6 +531,7 @@ export declare const jobSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
530
531
|
description: string | null;
|
|
531
532
|
status: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalPending" | "proposalProcessing" | "proposalComplete" | "biddingPending" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
532
533
|
datetime: number | null;
|
|
534
|
+
jobId: string;
|
|
533
535
|
createdAt: number | null;
|
|
534
536
|
updatedAt: number | null;
|
|
535
537
|
questionAnswerPairs: {
|
|
@@ -604,6 +606,7 @@ export declare const jobSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
604
606
|
description: string | null;
|
|
605
607
|
status: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalPending" | "proposalProcessing" | "proposalComplete" | "biddingPending" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
606
608
|
datetime: number | null;
|
|
609
|
+
jobId: string;
|
|
607
610
|
createdAt: number | null;
|
|
608
611
|
updatedAt: number | null;
|
|
609
612
|
questionAnswerPairs: {
|
|
@@ -676,7 +679,7 @@ export declare const jobListItemSchema: z.ZodObject<{
|
|
|
676
679
|
jobUrl: string | null;
|
|
677
680
|
}>;
|
|
678
681
|
export declare const jobResponseSchema: z.ZodObject<{
|
|
679
|
-
|
|
682
|
+
leads: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
680
683
|
id: z.ZodNullable<z.ZodString>;
|
|
681
684
|
createdAt: z.ZodNullable<z.ZodNumber>;
|
|
682
685
|
title: z.ZodNullable<z.ZodString>;
|
|
@@ -803,6 +806,7 @@ export declare const jobResponseSchema: z.ZodObject<{
|
|
|
803
806
|
}>>;
|
|
804
807
|
processed: z.ZodNullable<z.ZodBoolean>;
|
|
805
808
|
}, {
|
|
809
|
+
jobId: z.ZodString;
|
|
806
810
|
updatedAt: z.ZodNullable<z.ZodNumber>;
|
|
807
811
|
suitabilityRating: z.ZodNullable<z.ZodNumber>;
|
|
808
812
|
suitabilityReason: z.ZodNullable<z.ZodString>;
|
|
@@ -864,6 +868,7 @@ export declare const jobResponseSchema: z.ZodObject<{
|
|
|
864
868
|
description: string | null;
|
|
865
869
|
status: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalPending" | "proposalProcessing" | "proposalComplete" | "biddingPending" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
866
870
|
datetime: number | null;
|
|
871
|
+
jobId: string;
|
|
867
872
|
createdAt: number | null;
|
|
868
873
|
updatedAt: number | null;
|
|
869
874
|
questionAnswerPairs: {
|
|
@@ -938,6 +943,7 @@ export declare const jobResponseSchema: z.ZodObject<{
|
|
|
938
943
|
description: string | null;
|
|
939
944
|
status: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalPending" | "proposalProcessing" | "proposalComplete" | "biddingPending" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
940
945
|
datetime: number | null;
|
|
946
|
+
jobId: string;
|
|
941
947
|
createdAt: number | null;
|
|
942
948
|
updatedAt: number | null;
|
|
943
949
|
questionAnswerPairs: {
|
|
@@ -1000,7 +1006,7 @@ export declare const jobResponseSchema: z.ZodObject<{
|
|
|
1000
1006
|
hasMore: z.ZodBoolean;
|
|
1001
1007
|
jobCounts: z.ZodNullable<z.ZodNumber>;
|
|
1002
1008
|
}, "strip", z.ZodTypeAny, {
|
|
1003
|
-
|
|
1009
|
+
leads: {
|
|
1004
1010
|
id: string | null;
|
|
1005
1011
|
title: string | null;
|
|
1006
1012
|
metadata: {
|
|
@@ -1017,6 +1023,7 @@ export declare const jobResponseSchema: z.ZodObject<{
|
|
|
1017
1023
|
description: string | null;
|
|
1018
1024
|
status: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalPending" | "proposalProcessing" | "proposalComplete" | "biddingPending" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
1019
1025
|
datetime: number | null;
|
|
1026
|
+
jobId: string;
|
|
1020
1027
|
createdAt: number | null;
|
|
1021
1028
|
updatedAt: number | null;
|
|
1022
1029
|
questionAnswerPairs: {
|
|
@@ -1079,7 +1086,7 @@ export declare const jobResponseSchema: z.ZodObject<{
|
|
|
1079
1086
|
hasMore: boolean;
|
|
1080
1087
|
jobCounts: number | null;
|
|
1081
1088
|
}, {
|
|
1082
|
-
|
|
1089
|
+
leads: {
|
|
1083
1090
|
id: string | null;
|
|
1084
1091
|
title: string | null;
|
|
1085
1092
|
metadata: {
|
|
@@ -1096,6 +1103,7 @@ export declare const jobResponseSchema: z.ZodObject<{
|
|
|
1096
1103
|
description: string | null;
|
|
1097
1104
|
status: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalPending" | "proposalProcessing" | "proposalComplete" | "biddingPending" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
1098
1105
|
datetime: number | null;
|
|
1106
|
+
jobId: string;
|
|
1099
1107
|
createdAt: number | null;
|
|
1100
1108
|
updatedAt: number | null;
|
|
1101
1109
|
questionAnswerPairs: {
|
package/dist/schemas/job/job.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.jobResponseSchema = exports.jobListItemSchema = exports.
|
|
3
|
+
exports.jobResponseSchema = exports.jobListItemSchema = exports.leadSchema = exports.upworkJobSchema = exports.metadataSchema = exports.clientInfoSchema = exports.vendorQualificationSchema = exports.jobSkillsSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const job_note_1 = require("./job-note");
|
|
6
6
|
const job_status_1 = require("./job-status");
|
|
@@ -64,7 +64,8 @@ exports.upworkJobSchema = zod_1.z.object({
|
|
|
64
64
|
vendorQualifications: exports.vendorQualificationSchema.nullable(),
|
|
65
65
|
processed: (0, zod_1.boolean)().nullable(),
|
|
66
66
|
});
|
|
67
|
-
exports.
|
|
67
|
+
exports.leadSchema = exports.upworkJobSchema.extend({
|
|
68
|
+
jobId: zod_1.z.string(),
|
|
68
69
|
updatedAt: zod_1.z.number().nullable(),
|
|
69
70
|
suitabilityRating: zod_1.z.number().nullable(),
|
|
70
71
|
suitabilityReason: zod_1.z.string().nullable(),
|
|
@@ -83,7 +84,7 @@ exports.jobListItemSchema = zod_1.z.object({
|
|
|
83
84
|
datetime: zod_1.z.string().nullable(),
|
|
84
85
|
});
|
|
85
86
|
exports.jobResponseSchema = zod_1.z.object({
|
|
86
|
-
|
|
87
|
+
leads: zod_1.z.array(exports.leadSchema),
|
|
87
88
|
nextCursor: zod_1.z.string().nullable(),
|
|
88
89
|
hasMore: zod_1.z.boolean(),
|
|
89
90
|
jobCounts: zod_1.z.number().nullable(),
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { z } from
|
|
1
|
+
import { z } from "zod";
|
|
2
2
|
export declare const jobPipelineDetailsSchema: z.ZodObject<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3
3
|
id: z.ZodNullable<z.ZodString>;
|
|
4
4
|
createdAt: z.ZodNullable<z.ZodNumber>;
|
|
@@ -222,7 +222,7 @@ export declare const jobPipelineDetailsSchema: z.ZodObject<Pick<z.objectUtil.ext
|
|
|
222
222
|
biddingAmount: z.ZodOptional<z.ZodNumber>;
|
|
223
223
|
boosted: z.ZodOptional<z.ZodBoolean>;
|
|
224
224
|
boostingAmount: z.ZodOptional<z.ZodNumber>;
|
|
225
|
-
}>, "title" | "metadata" | "description" | "status" | "jobId" | "updatedAt" | "
|
|
225
|
+
}>, "title" | "metadata" | "description" | "status" | "jobId" | "updatedAt" | "clientInfo" | "addedAt" | "suitabilityRating" | "suitabilityReason" | "suitabilityStatus" | "biddingAmount" | "boosted" | "boostingAmount">, "strip", z.ZodTypeAny, {
|
|
226
226
|
title: string | null;
|
|
227
227
|
metadata: {
|
|
228
228
|
hourlyRate: {
|
|
@@ -233,7 +233,6 @@ export declare const jobPipelineDetailsSchema: z.ZodObject<Pick<z.objectUtil.ext
|
|
|
233
233
|
};
|
|
234
234
|
description: string | null;
|
|
235
235
|
jobId: string;
|
|
236
|
-
questions: string[] | null;
|
|
237
236
|
clientInfo: {
|
|
238
237
|
country: string | null;
|
|
239
238
|
};
|
|
@@ -257,7 +256,6 @@ export declare const jobPipelineDetailsSchema: z.ZodObject<Pick<z.objectUtil.ext
|
|
|
257
256
|
};
|
|
258
257
|
description: string | null;
|
|
259
258
|
jobId: string;
|
|
260
|
-
questions: string[] | null;
|
|
261
259
|
clientInfo: {
|
|
262
260
|
country: string | null;
|
|
263
261
|
};
|
|
@@ -495,7 +493,7 @@ export declare const jobPipelineResponseSchema: z.ZodObject<{
|
|
|
495
493
|
biddingAmount: z.ZodOptional<z.ZodNumber>;
|
|
496
494
|
boosted: z.ZodOptional<z.ZodBoolean>;
|
|
497
495
|
boostingAmount: z.ZodOptional<z.ZodNumber>;
|
|
498
|
-
}>, "title" | "metadata" | "description" | "status" | "jobId" | "updatedAt" | "
|
|
496
|
+
}>, "title" | "metadata" | "description" | "status" | "jobId" | "updatedAt" | "clientInfo" | "addedAt" | "suitabilityRating" | "suitabilityReason" | "suitabilityStatus" | "biddingAmount" | "boosted" | "boostingAmount">, "strip", z.ZodTypeAny, {
|
|
499
497
|
title: string | null;
|
|
500
498
|
metadata: {
|
|
501
499
|
hourlyRate: {
|
|
@@ -506,7 +504,6 @@ export declare const jobPipelineResponseSchema: z.ZodObject<{
|
|
|
506
504
|
};
|
|
507
505
|
description: string | null;
|
|
508
506
|
jobId: string;
|
|
509
|
-
questions: string[] | null;
|
|
510
507
|
clientInfo: {
|
|
511
508
|
country: string | null;
|
|
512
509
|
};
|
|
@@ -530,7 +527,6 @@ export declare const jobPipelineResponseSchema: z.ZodObject<{
|
|
|
530
527
|
};
|
|
531
528
|
description: string | null;
|
|
532
529
|
jobId: string;
|
|
533
|
-
questions: string[] | null;
|
|
534
530
|
clientInfo: {
|
|
535
531
|
country: string | null;
|
|
536
532
|
};
|
|
@@ -559,7 +555,6 @@ export declare const jobPipelineResponseSchema: z.ZodObject<{
|
|
|
559
555
|
};
|
|
560
556
|
description: string | null;
|
|
561
557
|
jobId: string;
|
|
562
|
-
questions: string[] | null;
|
|
563
558
|
clientInfo: {
|
|
564
559
|
country: string | null;
|
|
565
560
|
};
|
|
@@ -588,7 +583,6 @@ export declare const jobPipelineResponseSchema: z.ZodObject<{
|
|
|
588
583
|
};
|
|
589
584
|
description: string | null;
|
|
590
585
|
jobId: string;
|
|
591
|
-
questions: string[] | null;
|
|
592
586
|
clientInfo: {
|
|
593
587
|
country: string | null;
|
|
594
588
|
};
|
|
@@ -33,7 +33,6 @@ exports.jobPipelineDetailsSchema = job_details_1.jobDetailsSchema
|
|
|
33
33
|
biddingAmount: true,
|
|
34
34
|
boostingAmount: true,
|
|
35
35
|
boosted: true,
|
|
36
|
-
questions: true,
|
|
37
36
|
});
|
|
38
37
|
exports.jobPipelineResponseSchema = zod_1.z.object({
|
|
39
38
|
jobs: zod_1.z.array(exports.jobPipelineDetailsSchema),
|
|
@@ -472,7 +472,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
472
472
|
totalBilled: number | null;
|
|
473
473
|
}[] | null;
|
|
474
474
|
}>;
|
|
475
|
-
export declare const leadSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
475
|
+
export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
476
476
|
id: z.ZodNullable<z.ZodString>;
|
|
477
477
|
createdAt: z.ZodNullable<z.ZodNumber>;
|
|
478
478
|
title: z.ZodNullable<z.ZodString>;
|
|
@@ -694,7 +694,7 @@ export declare const leadSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
694
694
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
695
695
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
696
696
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
697
|
-
}>, "strip", z.ZodTypeAny, {
|
|
697
|
+
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
698
698
|
id: string | null;
|
|
699
699
|
title: string | null;
|
|
700
700
|
metadata: {
|
|
@@ -755,7 +755,6 @@ export declare const leadSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
755
755
|
jobSuccessScore: string | null;
|
|
756
756
|
includeRisingTalent: string | null;
|
|
757
757
|
} | null;
|
|
758
|
-
processed: boolean | null;
|
|
759
758
|
isFeatured: boolean | null;
|
|
760
759
|
clientReviews: {
|
|
761
760
|
hourlyRate: number | null;
|
|
@@ -850,7 +849,6 @@ export declare const leadSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
850
849
|
jobSuccessScore: string | null;
|
|
851
850
|
includeRisingTalent: string | null;
|
|
852
851
|
} | null;
|
|
853
|
-
processed: boolean | null;
|
|
854
852
|
isFeatured: boolean | null;
|
|
855
853
|
clientReviews: {
|
|
856
854
|
hourlyRate: number | null;
|
|
@@ -905,7 +903,7 @@ export declare const jobListItemSchema: z.ZodObject<{
|
|
|
905
903
|
isFeatured: boolean | null;
|
|
906
904
|
}>;
|
|
907
905
|
export declare const leadResponseSchema: z.ZodObject<{
|
|
908
|
-
leads: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
906
|
+
leads: z.ZodArray<z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
909
907
|
id: z.ZodNullable<z.ZodString>;
|
|
910
908
|
createdAt: z.ZodNullable<z.ZodNumber>;
|
|
911
909
|
title: z.ZodNullable<z.ZodString>;
|
|
@@ -1127,7 +1125,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1127
1125
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1128
1126
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
1129
1127
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
1130
|
-
}>, "strip", z.ZodTypeAny, {
|
|
1128
|
+
}>, "processed">, "strip", z.ZodTypeAny, {
|
|
1131
1129
|
id: string | null;
|
|
1132
1130
|
title: string | null;
|
|
1133
1131
|
metadata: {
|
|
@@ -1188,7 +1186,6 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1188
1186
|
jobSuccessScore: string | null;
|
|
1189
1187
|
includeRisingTalent: string | null;
|
|
1190
1188
|
} | null;
|
|
1191
|
-
processed: boolean | null;
|
|
1192
1189
|
isFeatured: boolean | null;
|
|
1193
1190
|
clientReviews: {
|
|
1194
1191
|
hourlyRate: number | null;
|
|
@@ -1283,7 +1280,6 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1283
1280
|
jobSuccessScore: string | null;
|
|
1284
1281
|
includeRisingTalent: string | null;
|
|
1285
1282
|
} | null;
|
|
1286
|
-
processed: boolean | null;
|
|
1287
1283
|
isFeatured: boolean | null;
|
|
1288
1284
|
clientReviews: {
|
|
1289
1285
|
hourlyRate: number | null;
|
|
@@ -1383,7 +1379,6 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1383
1379
|
jobSuccessScore: string | null;
|
|
1384
1380
|
includeRisingTalent: string | null;
|
|
1385
1381
|
} | null;
|
|
1386
|
-
processed: boolean | null;
|
|
1387
1382
|
isFeatured: boolean | null;
|
|
1388
1383
|
clientReviews: {
|
|
1389
1384
|
hourlyRate: number | null;
|
|
@@ -1483,7 +1478,6 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1483
1478
|
jobSuccessScore: string | null;
|
|
1484
1479
|
includeRisingTalent: string | null;
|
|
1485
1480
|
} | null;
|
|
1486
|
-
processed: boolean | null;
|
|
1487
1481
|
isFeatured: boolean | null;
|
|
1488
1482
|
clientReviews: {
|
|
1489
1483
|
hourlyRate: number | null;
|
|
@@ -84,7 +84,8 @@ exports.upworkJobSchema = zod_1.z.object({
|
|
|
84
84
|
clientReviews: zod_1.z.array(exports.clientReviewSchema).nullable(),
|
|
85
85
|
region: scraper_1.regionSchema.nullable(),
|
|
86
86
|
});
|
|
87
|
-
exports.leadSchema = exports.upworkJobSchema
|
|
87
|
+
exports.leadSchema = exports.upworkJobSchema
|
|
88
|
+
.extend({
|
|
88
89
|
jobId: zod_1.z.string(),
|
|
89
90
|
updatedAt: zod_1.z.number().nullable(),
|
|
90
91
|
suitabilityRating: zod_1.z.number().nullable(),
|
|
@@ -99,6 +100,9 @@ exports.leadSchema = exports.upworkJobSchema.extend({
|
|
|
99
100
|
boostingAmount: (0, zod_1.number)().nullable(),
|
|
100
101
|
biddingTaskScheduled: (0, zod_1.boolean)().nullable(),
|
|
101
102
|
scheduledBiddingTime: (0, zod_1.number)().nullable(),
|
|
103
|
+
})
|
|
104
|
+
.omit({
|
|
105
|
+
processed: true,
|
|
102
106
|
});
|
|
103
107
|
exports.jobListItemSchema = zod_1.z.object({
|
|
104
108
|
title: zod_1.z.string().nullable(),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { z } from
|
|
2
|
-
export declare const LogEventTypeEnum: z.ZodEnum<["scraperStarted", "scraperCompleted", "
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const LogEventTypeEnum: z.ZodEnum<["scraperStarted", "scraperCompleted", "jobScraped", "jobsIndexed", "jobDuplicateSkipped", "scraperFailed", "jobSyncPublished", "jobSyncReceived", "leadsCreatedAndSynced", "suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "manualSuitabilityAnalyzed", "proposalProcessing", "proposalComplete", "proposalFailed", "manualProposalGenerated", "biddingProcessing", "biddingComplete", "biddingFailed", "biddingSkipped", "biddingPending", "errorLogged", "cloudTaskRetry", "manualLeadEdited", "leadArchived", "auditTrailLogged"]>;
|
|
3
3
|
export declare const logEventSchema: z.ZodObject<{
|
|
4
|
-
type: z.ZodEnum<["scraperStarted", "scraperCompleted", "
|
|
4
|
+
type: z.ZodEnum<["scraperStarted", "scraperCompleted", "jobScraped", "jobsIndexed", "jobDuplicateSkipped", "scraperFailed", "jobSyncPublished", "jobSyncReceived", "leadsCreatedAndSynced", "suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "manualSuitabilityAnalyzed", "proposalProcessing", "proposalComplete", "proposalFailed", "manualProposalGenerated", "biddingProcessing", "biddingComplete", "biddingFailed", "biddingSkipped", "biddingPending", "errorLogged", "cloudTaskRetry", "manualLeadEdited", "leadArchived", "auditTrailLogged"]>;
|
|
5
5
|
source: z.ZodString;
|
|
6
6
|
resourceType: z.ZodDefault<z.ZodString>;
|
|
7
7
|
resourceId: z.ZodNullable<z.ZodString>;
|
|
@@ -12,7 +12,7 @@ export declare const logEventSchema: z.ZodObject<{
|
|
|
12
12
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13
13
|
timestamp: z.ZodNumber;
|
|
14
14
|
}, "strip", z.ZodTypeAny, {
|
|
15
|
-
type: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "scraperStarted" | "scraperCompleted" | "
|
|
15
|
+
type: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "scraperStarted" | "scraperCompleted" | "jobScraped" | "jobsIndexed" | "jobDuplicateSkipped" | "scraperFailed" | "jobSyncPublished" | "jobSyncReceived" | "leadsCreatedAndSynced" | "manualSuitabilityAnalyzed" | "manualProposalGenerated" | "biddingSkipped" | "biddingPending" | "errorLogged" | "cloudTaskRetry" | "manualLeadEdited" | "leadArchived" | "auditTrailLogged";
|
|
16
16
|
reason: string | null;
|
|
17
17
|
source: string;
|
|
18
18
|
metadata: Record<string, unknown> | null;
|
|
@@ -23,7 +23,7 @@ export declare const logEventSchema: z.ZodObject<{
|
|
|
23
23
|
campaignId: string | null;
|
|
24
24
|
userId: string | null;
|
|
25
25
|
}, {
|
|
26
|
-
type: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "scraperStarted" | "scraperCompleted" | "
|
|
26
|
+
type: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "scraperStarted" | "scraperCompleted" | "jobScraped" | "jobsIndexed" | "jobDuplicateSkipped" | "scraperFailed" | "jobSyncPublished" | "jobSyncReceived" | "leadsCreatedAndSynced" | "manualSuitabilityAnalyzed" | "manualProposalGenerated" | "biddingSkipped" | "biddingPending" | "errorLogged" | "cloudTaskRetry" | "manualLeadEdited" | "leadArchived" | "auditTrailLogged";
|
|
27
27
|
reason: string | null;
|
|
28
28
|
source: string;
|
|
29
29
|
metadata: Record<string, unknown> | null;
|
|
@@ -4,39 +4,39 @@ exports.logEventSchema = exports.LogEventTypeEnum = void 0;
|
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
exports.LogEventTypeEnum = zod_1.z.enum([
|
|
6
6
|
// Scraper Events
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
"scraperStarted",
|
|
8
|
+
"scraperCompleted",
|
|
9
|
+
"jobScraped",
|
|
10
|
+
"jobsIndexed",
|
|
11
|
+
"jobDuplicateSkipped",
|
|
12
|
+
"scraperFailed",
|
|
13
13
|
// Job Sync & Campaign Matching
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
"jobSyncPublished",
|
|
15
|
+
"jobSyncReceived",
|
|
16
|
+
"leadsCreatedAndSynced",
|
|
17
17
|
// Suitability Events
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
18
|
+
"suitabilityPending",
|
|
19
|
+
"suitabilityProcessing",
|
|
20
|
+
"suitabilityComplete",
|
|
21
|
+
"suitabilityFailed",
|
|
22
|
+
"manualSuitabilityAnalyzed",
|
|
23
23
|
// Proposal Events
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
"proposalProcessing",
|
|
25
|
+
"proposalComplete",
|
|
26
|
+
"proposalFailed",
|
|
27
|
+
"manualProposalGenerated",
|
|
28
28
|
// Bidding Events
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
29
|
+
"biddingProcessing",
|
|
30
|
+
"biddingComplete",
|
|
31
|
+
"biddingFailed",
|
|
32
|
+
"biddingSkipped",
|
|
33
|
+
"biddingPending",
|
|
34
34
|
// System/Generic Events
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
35
|
+
"errorLogged",
|
|
36
|
+
"cloudTaskRetry",
|
|
37
|
+
"manualLeadEdited",
|
|
38
|
+
"leadArchived",
|
|
39
|
+
"auditTrailLogged",
|
|
40
40
|
]);
|
|
41
41
|
exports.logEventSchema = zod_1.z.object({
|
|
42
42
|
// The type of event (use a z.enum if possible)
|
|
@@ -44,7 +44,7 @@ exports.logEventSchema = zod_1.z.object({
|
|
|
44
44
|
// The service that triggered the event
|
|
45
45
|
source: zod_1.z.string(), // e.g. "lancer-agents", "lancer-bidding"
|
|
46
46
|
// Optional: Allow logging non-lead events in the future
|
|
47
|
-
resourceType: zod_1.z.string().default(
|
|
47
|
+
resourceType: zod_1.z.string().default("lead"), // e.g. "lead", "campaign", "user"
|
|
48
48
|
// ID of the resource (primary entity affected)
|
|
49
49
|
resourceId: zod_1.z.string().nullable(), // fallback if leadId is not applicable
|
|
50
50
|
// Lead-level metadata
|
package/package.json
CHANGED
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.emptyKnowledgeObject = exports.CLIENT_HISTORY = exports.EXPERIENCE_LEVELS = exports.CATEGORIES = void 0;
|
|
4
|
-
exports.CATEGORIES = [
|
|
5
|
-
'Accounting',
|
|
6
|
-
'Business Analysis & Strategy',
|
|
7
|
-
'Financial Analysis & Modeling',
|
|
8
|
-
'HR Administration',
|
|
9
|
-
'Management Consulting',
|
|
10
|
-
'Tax Preparation',
|
|
11
|
-
'Data Entry',
|
|
12
|
-
'Personal/Virtual Assistance',
|
|
13
|
-
'Project Management',
|
|
14
|
-
'Research',
|
|
15
|
-
'Customer Service',
|
|
16
|
-
'Technical Support',
|
|
17
|
-
'Data Analytics',
|
|
18
|
-
'Data Processing',
|
|
19
|
-
'Data Engineering',
|
|
20
|
-
'Machine Learning',
|
|
21
|
-
'AI Development',
|
|
22
|
-
'Art & Illustration',
|
|
23
|
-
'Audio Production',
|
|
24
|
-
'Brand Design',
|
|
25
|
-
'Logo Design',
|
|
26
|
-
'Graphics Design',
|
|
27
|
-
'Video Production',
|
|
28
|
-
'Voice Acting',
|
|
29
|
-
'Architecture',
|
|
30
|
-
'Chemical Engineering',
|
|
31
|
-
'Civil Engineering',
|
|
32
|
-
'Electrical Engineering',
|
|
33
|
-
'Interior Design',
|
|
34
|
-
'Mechanical Engineering',
|
|
35
|
-
'Database Administration',
|
|
36
|
-
'Information Security',
|
|
37
|
-
'Network Administration',
|
|
38
|
-
'Systems Administration',
|
|
39
|
-
'DevOps Engineering',
|
|
40
|
-
'Business Law',
|
|
41
|
-
'Immigration Law',
|
|
42
|
-
'Tax Law',
|
|
43
|
-
'Regulatory Law',
|
|
44
|
-
'Paralegal Services',
|
|
45
|
-
'Digital Marketing',
|
|
46
|
-
'Lead Generation',
|
|
47
|
-
'Marketing Strategy',
|
|
48
|
-
'Social Media Marketing',
|
|
49
|
-
'SEO',
|
|
50
|
-
'Language Translation',
|
|
51
|
-
'Legal Translation',
|
|
52
|
-
'Technical Translation',
|
|
53
|
-
'Medical Translation',
|
|
54
|
-
'Desktop Development',
|
|
55
|
-
'Mobile Development',
|
|
56
|
-
'Web Development',
|
|
57
|
-
'Game Development',
|
|
58
|
-
'QA & Testing',
|
|
59
|
-
'Content Writing',
|
|
60
|
-
'Copywriting',
|
|
61
|
-
'Technical Writing',
|
|
62
|
-
'Creative Writing',
|
|
63
|
-
'Editing',
|
|
64
|
-
];
|
|
65
|
-
exports.EXPERIENCE_LEVELS = ['Entry Level', 'Mid Level', 'Senior Level'];
|
|
66
|
-
exports.CLIENT_HISTORY = ['No hires', '1-9 hires', '10+ hires'];
|
|
67
|
-
// Default knowledge object with all null values
|
|
68
|
-
exports.emptyKnowledgeObject = {
|
|
69
|
-
categories: exports.CATEGORIES.reduce((acc, category) => (Object.assign(Object.assign({}, acc), { [category]: null })), {}),
|
|
70
|
-
experienceLevels: exports.EXPERIENCE_LEVELS.reduce((acc, level) => (Object.assign(Object.assign({}, acc), { [level]: null })), {}),
|
|
71
|
-
minHourlyRate: null,
|
|
72
|
-
fixedPriceMin: null,
|
|
73
|
-
clientHistory: exports.CLIENT_HISTORY.reduce((acc, history) => (Object.assign(Object.assign({}, acc), { [history]: null })), {}),
|
|
74
|
-
keywords: [],
|
|
75
|
-
};
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
export declare const aiConfigSchema: z.ZodObject<{
|
|
3
|
-
id: z.ZodString;
|
|
4
|
-
suitabilityPrompt: z.ZodOptional<z.ZodString>;
|
|
5
|
-
proposalPrompt: z.ZodOptional<z.ZodString>;
|
|
6
|
-
questionProposalPrompt: z.ZodOptional<z.ZodString>;
|
|
7
|
-
knowledgeBase: z.ZodOptional<z.ZodString>;
|
|
8
|
-
}, "strip", z.ZodTypeAny, {
|
|
9
|
-
id: string;
|
|
10
|
-
suitabilityPrompt?: string | undefined;
|
|
11
|
-
proposalPrompt?: string | undefined;
|
|
12
|
-
questionProposalPrompt?: string | undefined;
|
|
13
|
-
knowledgeBase?: string | undefined;
|
|
14
|
-
}, {
|
|
15
|
-
id: string;
|
|
16
|
-
suitabilityPrompt?: string | undefined;
|
|
17
|
-
proposalPrompt?: string | undefined;
|
|
18
|
-
questionProposalPrompt?: string | undefined;
|
|
19
|
-
knowledgeBase?: string | undefined;
|
|
20
|
-
}>;
|
|
21
|
-
export declare const updateAiConfigSchema: z.ZodObject<{
|
|
22
|
-
id: z.ZodOptional<z.ZodString>;
|
|
23
|
-
suitabilityPrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
24
|
-
proposalPrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
25
|
-
questionProposalPrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
26
|
-
knowledgeBase: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
27
|
-
}, "strip", z.ZodTypeAny, {
|
|
28
|
-
id?: string | undefined;
|
|
29
|
-
suitabilityPrompt?: string | undefined;
|
|
30
|
-
proposalPrompt?: string | undefined;
|
|
31
|
-
questionProposalPrompt?: string | undefined;
|
|
32
|
-
knowledgeBase?: string | undefined;
|
|
33
|
-
}, {
|
|
34
|
-
id?: string | undefined;
|
|
35
|
-
suitabilityPrompt?: string | undefined;
|
|
36
|
-
proposalPrompt?: string | undefined;
|
|
37
|
-
questionProposalPrompt?: string | undefined;
|
|
38
|
-
knowledgeBase?: string | undefined;
|
|
39
|
-
}>;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.updateAiConfigSchema = exports.aiConfigSchema = void 0;
|
|
4
|
-
const zod_1 = require("zod");
|
|
5
|
-
exports.aiConfigSchema = zod_1.z.object({
|
|
6
|
-
id: zod_1.z.string(),
|
|
7
|
-
suitabilityPrompt: zod_1.z.string().optional(),
|
|
8
|
-
proposalPrompt: zod_1.z.string().optional(),
|
|
9
|
-
questionProposalPrompt: zod_1.z.string().optional(),
|
|
10
|
-
knowledgeBase: zod_1.z.string().optional(),
|
|
11
|
-
});
|
|
12
|
-
exports.updateAiConfigSchema = exports.aiConfigSchema.partial();
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './ai-config';
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./ai-config"), exports);
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
export declare const proposalDtoSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
|
|
3
|
-
status: z.ZodLiteral<"success">;
|
|
4
|
-
biddingAmount: z.ZodNumber;
|
|
5
|
-
boosted: z.ZodBoolean;
|
|
6
|
-
boostingAmount: z.ZodNumber;
|
|
7
|
-
}, "strip", z.ZodTypeAny, {
|
|
8
|
-
status: "success";
|
|
9
|
-
biddingAmount: number;
|
|
10
|
-
boosted: boolean;
|
|
11
|
-
boostingAmount: number;
|
|
12
|
-
}, {
|
|
13
|
-
status: "success";
|
|
14
|
-
biddingAmount: number;
|
|
15
|
-
boosted: boolean;
|
|
16
|
-
boostingAmount: number;
|
|
17
|
-
}>, z.ZodObject<{
|
|
18
|
-
status: z.ZodLiteral<"failed">;
|
|
19
|
-
errorMessage: z.ZodString;
|
|
20
|
-
}, "strip", z.ZodTypeAny, {
|
|
21
|
-
status: "failed";
|
|
22
|
-
errorMessage: string;
|
|
23
|
-
}, {
|
|
24
|
-
status: "failed";
|
|
25
|
-
errorMessage: string;
|
|
26
|
-
}>]>;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.proposalDtoSchema = void 0;
|
|
4
|
-
const zod_1 = require("zod");
|
|
5
|
-
exports.proposalDtoSchema = zod_1.z.discriminatedUnion('status', [
|
|
6
|
-
// Success case
|
|
7
|
-
zod_1.z.object({
|
|
8
|
-
status: zod_1.z.literal('success'),
|
|
9
|
-
biddingAmount: zod_1.z.number(),
|
|
10
|
-
boosted: zod_1.z.boolean(),
|
|
11
|
-
boostingAmount: zod_1.z.number(),
|
|
12
|
-
}),
|
|
13
|
-
// Failed case
|
|
14
|
-
zod_1.z.object({
|
|
15
|
-
status: zod_1.z.literal('failed'),
|
|
16
|
-
errorMessage: zod_1.z.string(),
|
|
17
|
-
}),
|
|
18
|
-
]);
|