lancer-shared 1.0.47 → 1.0.48

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 (40) hide show
  1. package/dist/constants/upwork-filters.d.ts +5 -0
  2. package/dist/constants/upwork-filters.js +75 -0
  3. package/dist/schemas/ai-config/ai-config.d.ts +39 -0
  4. package/dist/schemas/ai-config/ai-config.js +12 -0
  5. package/dist/schemas/ai-config/index.d.ts +1 -0
  6. package/dist/schemas/ai-config/index.js +17 -0
  7. package/dist/schemas/bidding/proposal-dto.d.ts +26 -0
  8. package/dist/schemas/bidding/proposal-dto.js +18 -0
  9. package/dist/schemas/campaign/campaign.d.ts +10 -10
  10. package/dist/schemas/campaign/campaign.js +1 -1
  11. package/dist/schemas/job/job-pipeline.d.ts +74 -0
  12. package/dist/schemas/job/job-pipeline.js +29 -0
  13. package/dist/schemas/job/job-suitability.d.ts +12 -0
  14. package/dist/schemas/job/job-suitability.js +13 -0
  15. package/dist/schemas/job/job.d.ts +16 -16
  16. package/dist/schemas/job/pipeline-job.d.ts +9 -3
  17. package/dist/schemas/job/pipeline-job.js +1 -0
  18. package/dist/schemas/knowledge-object/index.d.ts +1 -0
  19. package/dist/schemas/knowledge-object/index.js +17 -0
  20. package/dist/schemas/knowledge-object/knowledge-object.d.ts +128 -0
  21. package/dist/schemas/knowledge-object/knowledge-object.js +47 -0
  22. package/dist/schemas/scraper/scrape-response.d.ts +345 -0
  23. package/dist/schemas/scraper/scrape-response.js +9 -0
  24. package/dist/types/ai-config/ai-config.d.ts +6 -0
  25. package/dist/types/ai-config/ai-config.js +2 -0
  26. package/dist/types/ai-config/index.d.ts +1 -0
  27. package/dist/types/ai-config/index.js +17 -0
  28. package/dist/types/bidding/proposal-dto.d.ts +3 -0
  29. package/dist/types/bidding/proposal-dto.js +2 -0
  30. package/dist/types/job/job-pipeline.d.ts +4 -0
  31. package/dist/types/job/job-pipeline.js +2 -0
  32. package/dist/types/job/job-suitability.d.ts +3 -0
  33. package/dist/types/job/job-suitability.js +2 -0
  34. package/dist/types/knowledge-object/index.d.ts +1 -0
  35. package/dist/types/knowledge-object/index.js +17 -0
  36. package/dist/types/knowledge-object/knowledge-object.d.ts +4 -0
  37. package/dist/types/knowledge-object/knowledge-object.js +2 -0
  38. package/dist/types/scraper/scrape-response.d.ts +4 -0
  39. package/dist/types/scraper/scrape-response.js +2 -0
  40. package/package.json +1 -1
@@ -0,0 +1,3 @@
1
+ import { z } from 'zod';
2
+ import { questionAnswerPairSchema } from '../../schemas';
3
+ export type QuestionAnswerPair = z.infer<typeof questionAnswerPairSchema>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export * from './knowledge-object';
@@ -0,0 +1,17 @@
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);
@@ -0,0 +1,4 @@
1
+ import { chatResponseSchema, KnowledgeObjectSchema } from '../../schemas/knowledge-object';
2
+ import { z } from 'zod';
3
+ export type KnowledgeObject = z.infer<typeof KnowledgeObjectSchema>;
4
+ export type ChatResponse = z.infer<typeof chatResponseSchema>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ import { z } from 'zod';
2
+ import { scrapeResponseSchema } from '../../schemas';
3
+ export interface ScrapeResponse extends z.infer<typeof scrapeResponseSchema> {
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "lancer-shared",
4
- "version": "1.0.47",
4
+ "version": "1.0.48",
5
5
  "description": "This package contains shared stuff.",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",