lancer-shared 1.0.5 → 1.0.7

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.
Files changed (44) hide show
  1. package/dist/schemas/job/job.d.ts +10 -2
  2. package/dist/schemas/job/job.js +5 -4
  3. package/dist/schemas/job/pipeline-job.d.ts +3 -9
  4. package/dist/schemas/job/pipeline-job.js +0 -1
  5. package/dist/schemas/scraper/scrape-result.d.ts +1 -1
  6. package/dist/schemas/scraper/scrape-result.js +1 -1
  7. package/dist/types/job/job.d.ts +5 -5
  8. package/dist/types/saved-search/index.d.ts +2 -2
  9. package/dist/types/user/index.d.ts +2 -2
  10. package/package.json +1 -1
  11. package/dist/constants/upwork-filters.d.ts +0 -5
  12. package/dist/constants/upwork-filters.js +0 -75
  13. package/dist/schemas/ai-config/ai-config.d.ts +0 -39
  14. package/dist/schemas/ai-config/ai-config.js +0 -12
  15. package/dist/schemas/ai-config/index.d.ts +0 -1
  16. package/dist/schemas/ai-config/index.js +0 -17
  17. package/dist/schemas/bidding/proposal-dto.d.ts +0 -26
  18. package/dist/schemas/bidding/proposal-dto.js +0 -18
  19. package/dist/schemas/job/job-pipeline.d.ts +0 -74
  20. package/dist/schemas/job/job-pipeline.js +0 -29
  21. package/dist/schemas/job/job-suitability.d.ts +0 -12
  22. package/dist/schemas/job/job-suitability.js +0 -13
  23. package/dist/schemas/knowledge-object/index.d.ts +0 -1
  24. package/dist/schemas/knowledge-object/index.js +0 -17
  25. package/dist/schemas/knowledge-object/knowledge-object.d.ts +0 -128
  26. package/dist/schemas/knowledge-object/knowledge-object.js +0 -47
  27. package/dist/schemas/scraper/scrape-response.d.ts +0 -345
  28. package/dist/schemas/scraper/scrape-response.js +0 -9
  29. package/dist/types/ai-config/ai-config.d.ts +0 -6
  30. package/dist/types/ai-config/ai-config.js +0 -2
  31. package/dist/types/ai-config/index.d.ts +0 -1
  32. package/dist/types/ai-config/index.js +0 -17
  33. package/dist/types/bidding/proposal-dto.d.ts +0 -3
  34. package/dist/types/bidding/proposal-dto.js +0 -2
  35. package/dist/types/job/job-pipeline.d.ts +0 -4
  36. package/dist/types/job/job-pipeline.js +0 -2
  37. package/dist/types/job/job-suitability.d.ts +0 -3
  38. package/dist/types/job/job-suitability.js +0 -2
  39. package/dist/types/knowledge-object/index.d.ts +0 -1
  40. package/dist/types/knowledge-object/index.js +0 -17
  41. package/dist/types/knowledge-object/knowledge-object.d.ts +0 -4
  42. package/dist/types/knowledge-object/knowledge-object.js +0 -2
  43. package/dist/types/scraper/scrape-response.d.ts +0 -4
  44. package/dist/types/scraper/scrape-response.js +0 -2
@@ -111,7 +111,7 @@ export declare const metadataSchema: z.ZodObject<{
111
111
  paymentType: string | null;
112
112
  fixedPrice: number | null;
113
113
  }>;
114
- export declare const upworkJobSchema: z.ZodObject<{
114
+ export declare const jobSchema: z.ZodObject<{
115
115
  id: z.ZodNullable<z.ZodString>;
116
116
  createdAt: z.ZodNullable<z.ZodNumber>;
117
117
  title: z.ZodNullable<z.ZodString>;
@@ -342,7 +342,7 @@ export declare const upworkJobSchema: z.ZodObject<{
342
342
  } | null;
343
343
  processed: boolean | null;
344
344
  }>;
345
- export declare const jobSchema: z.ZodObject<z.objectUtil.extendShape<{
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: {
@@ -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: {
@@ -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: {
@@ -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: {
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.jobResponseSchema = exports.jobListItemSchema = exports.jobSchema = exports.upworkJobSchema = exports.metadataSchema = exports.clientInfoSchema = exports.vendorQualificationSchema = exports.jobSkillsSchema = void 0;
3
+ exports.jobResponseSchema = exports.jobListItemSchema = exports.leadSchema = exports.jobSchema = 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");
@@ -45,7 +45,7 @@ exports.metadataSchema = zod_1.z.object({
45
45
  paymentType: zod_1.z.string().nullable(),
46
46
  fixedPrice: zod_1.z.number().nullable(),
47
47
  });
48
- exports.upworkJobSchema = zod_1.z.object({
48
+ exports.jobSchema = zod_1.z.object({
49
49
  id: zod_1.z.string().nullable(),
50
50
  createdAt: zod_1.z.number().nullable(),
51
51
  title: zod_1.z.string().nullable(),
@@ -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.jobSchema = exports.upworkJobSchema.extend({
67
+ exports.leadSchema = exports.jobSchema.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
- jobs: zod_1.z.array(exports.jobSchema),
87
+ jobs: 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 'zod';
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" | "questions" | "clientInfo" | "addedAt" | "suitabilityRating" | "suitabilityReason" | "suitabilityStatus" | "biddingAmount" | "boosted" | "boostingAmount">, "strip", z.ZodTypeAny, {
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" | "questions" | "clientInfo" | "addedAt" | "suitabilityRating" | "suitabilityReason" | "suitabilityStatus" | "biddingAmount" | "boosted" | "boostingAmount">, "strip", z.ZodTypeAny, {
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),
@@ -1,4 +1,4 @@
1
- import { z } from 'zod';
1
+ import { z } from "zod";
2
2
  export declare const scrapeResultSchema: z.ZodObject<{
3
3
  jobs: z.ZodArray<z.ZodObject<{
4
4
  id: z.ZodNullable<z.ZodString>;
@@ -4,6 +4,6 @@ exports.scrapeResultSchema = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const job_1 = require("../job");
6
6
  exports.scrapeResultSchema = zod_1.z.object({
7
- jobs: zod_1.z.array(job_1.upworkJobSchema),
7
+ jobs: zod_1.z.array(job_1.jobSchema),
8
8
  cookies: zod_1.z.array(zod_1.z.any()),
9
9
  });
@@ -3,14 +3,14 @@ import { SavedSearch } from "../saved-search";
3
3
  import { JobNote } from "./job-note";
4
4
  import { JobStatus } from "./job-status";
5
5
  import { QuestionAnswerPair } from "../ai";
6
- import { clientInfoSchema, jobListItemSchema, jobResponseSchema, jobSchema, jobSkillsSchema, metadataSchema, upworkJobSchema, vendorQualificationSchema } from "../../schemas/job/job";
7
- export interface UpworkJob extends z.infer<typeof upworkJobSchema> {
6
+ import { clientInfoSchema, jobListItemSchema, jobResponseSchema, leadSchema, jobSkillsSchema, metadataSchema, jobSchema, vendorQualificationSchema } from "../../schemas/job/job";
7
+ export interface Job extends z.infer<typeof jobSchema> {
8
8
  clientInfo: ClientInfo | null;
9
9
  metadata: JobMetadata | null;
10
10
  skills: JobSkill[] | null;
11
11
  vendorQualifications: VendorQualifications | null;
12
12
  }
13
- export interface Job extends z.infer<typeof jobSchema> {
13
+ export interface Lead extends z.infer<typeof leadSchema> {
14
14
  clientInfo: ClientInfo | null;
15
15
  metadata: JobMetadata | null;
16
16
  skills: JobSkill[] | null;
@@ -20,9 +20,9 @@ export interface Job extends z.infer<typeof jobSchema> {
20
20
  status: JobStatus;
21
21
  }
22
22
  export interface JobResponse extends z.infer<typeof jobResponseSchema> {
23
- jobs: Job[];
23
+ jobs: Lead[];
24
24
  }
25
- export type JobWithSavedSearch = Job & {
25
+ export type JobWithSavedSearch = Lead & {
26
26
  savedSearch?: SavedSearch | null;
27
27
  };
28
28
  export type JobListItem = z.infer<typeof jobListItemSchema>;
@@ -1,6 +1,6 @@
1
1
  import { z } from "zod";
2
2
  import { savedSearchSchema } from "../../schemas";
3
- import { Job } from "../job";
3
+ import { Lead } from "../job";
4
4
  export interface SavedSearch extends z.infer<typeof savedSearchSchema> {
5
- jobs: Job[];
5
+ jobs: Lead[];
6
6
  }
@@ -1,9 +1,9 @@
1
1
  import { z } from "zod";
2
2
  import { loginSchema, registerSchema, userSchema } from "../../schemas";
3
- import { Job } from "../job";
3
+ import { Lead } from "../job";
4
4
  import { SavedSearch } from "../saved-search";
5
5
  export interface User extends z.infer<typeof userSchema> {
6
- jobs?: Job[];
6
+ jobs?: Lead[];
7
7
  savedSearches?: SavedSearch[];
8
8
  }
9
9
  export interface RegisterSchema extends z.infer<typeof registerSchema> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "lancer-shared",
4
- "version": "1.0.5",
4
+ "version": "1.0.7",
5
5
  "description": "This package contains shared stuff.",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",
@@ -1,5 +0,0 @@
1
- import { KnowledgeObject } from '../types/knowledge-object';
2
- export declare const CATEGORIES: string[];
3
- export declare const EXPERIENCE_LEVELS: string[];
4
- export declare const CLIENT_HISTORY: string[];
5
- export declare const emptyKnowledgeObject: KnowledgeObject;
@@ -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
- ]);
@@ -1,74 +0,0 @@
1
- import { z } from 'zod';
2
- export declare const jobPipelineSchema: z.ZodObject<{
3
- jobId: z.ZodString;
4
- addedAt: z.ZodString;
5
- country: z.ZodOptional<z.ZodString>;
6
- description: z.ZodString;
7
- fixedPrice: z.ZodOptional<z.ZodString>;
8
- hourlyRate: z.ZodOptional<z.ZodObject<{
9
- min: z.ZodOptional<z.ZodString>;
10
- max: z.ZodOptional<z.ZodString>;
11
- }, "strip", z.ZodTypeAny, {
12
- max?: string | undefined;
13
- min?: string | undefined;
14
- }, {
15
- max?: string | undefined;
16
- min?: string | undefined;
17
- }>>;
18
- status: z.ZodString;
19
- suitabilityRating: z.ZodOptional<z.ZodNumber>;
20
- suitabilityReason: z.ZodOptional<z.ZodString>;
21
- suitabilityStatus: z.ZodOptional<z.ZodString>;
22
- title: z.ZodString;
23
- suitabilityProposal: z.ZodOptional<z.ZodString>;
24
- suitabilityQuestionAnswerPairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
25
- question: z.ZodString;
26
- answer: z.ZodString;
27
- }, "strip", z.ZodTypeAny, {
28
- answer: string;
29
- question: string;
30
- }, {
31
- answer: string;
32
- question: string;
33
- }>, "many">>;
34
- }, "strip", z.ZodTypeAny, {
35
- title: string;
36
- description: string;
37
- status: string;
38
- jobId: string;
39
- addedAt: string;
40
- country?: string | undefined;
41
- fixedPrice?: string | undefined;
42
- hourlyRate?: {
43
- max?: string | undefined;
44
- min?: string | undefined;
45
- } | undefined;
46
- suitabilityRating?: number | undefined;
47
- suitabilityReason?: string | undefined;
48
- suitabilityStatus?: string | undefined;
49
- suitabilityProposal?: string | undefined;
50
- suitabilityQuestionAnswerPairs?: {
51
- answer: string;
52
- question: string;
53
- }[] | undefined;
54
- }, {
55
- title: string;
56
- description: string;
57
- status: string;
58
- jobId: string;
59
- addedAt: string;
60
- country?: string | undefined;
61
- fixedPrice?: string | undefined;
62
- hourlyRate?: {
63
- max?: string | undefined;
64
- min?: string | undefined;
65
- } | undefined;
66
- suitabilityRating?: number | undefined;
67
- suitabilityReason?: string | undefined;
68
- suitabilityStatus?: string | undefined;
69
- suitabilityProposal?: string | undefined;
70
- suitabilityQuestionAnswerPairs?: {
71
- answer: string;
72
- question: string;
73
- }[] | undefined;
74
- }>;
@@ -1,29 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.jobPipelineSchema = void 0;
4
- const zod_1 = require("zod");
5
- exports.jobPipelineSchema = zod_1.z.object({
6
- jobId: zod_1.z.string(),
7
- addedAt: zod_1.z.string(),
8
- country: zod_1.z.string().optional(),
9
- description: zod_1.z.string(),
10
- fixedPrice: zod_1.z.string().optional(),
11
- hourlyRate: zod_1.z
12
- .object({
13
- min: zod_1.z.string().optional(),
14
- max: zod_1.z.string().optional(),
15
- })
16
- .optional(),
17
- status: zod_1.z.string(),
18
- suitabilityRating: zod_1.z.number().optional(),
19
- suitabilityReason: zod_1.z.string().optional(),
20
- suitabilityStatus: zod_1.z.string().optional(),
21
- title: zod_1.z.string(),
22
- suitabilityProposal: zod_1.z.string().optional(),
23
- suitabilityQuestionAnswerPairs: zod_1.z
24
- .array(zod_1.z.object({
25
- question: zod_1.z.string(),
26
- answer: zod_1.z.string(),
27
- }))
28
- .optional(),
29
- });
@@ -1,12 +0,0 @@
1
- import { z } from 'zod';
2
- export declare const jobSuitabilityStatusSchema: z.ZodEnum<["completed", "pending", "failed"]>;
3
- export declare const questionAnswerPairSchema: z.ZodObject<{
4
- question: z.ZodString;
5
- answer: z.ZodString;
6
- }, "strip", z.ZodTypeAny, {
7
- answer: string;
8
- question: string;
9
- }, {
10
- answer: string;
11
- question: string;
12
- }>;
@@ -1,13 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.questionAnswerPairSchema = exports.jobSuitabilityStatusSchema = void 0;
4
- const zod_1 = require("zod");
5
- exports.jobSuitabilityStatusSchema = zod_1.z.enum([
6
- 'completed',
7
- 'pending',
8
- 'failed',
9
- ]);
10
- exports.questionAnswerPairSchema = zod_1.z.object({
11
- question: zod_1.z.string(),
12
- answer: zod_1.z.string(),
13
- });
@@ -1 +0,0 @@
1
- export * from './knowledge-object';
@@ -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("./knowledge-object"), exports);