lancer-shared 1.2.96 → 1.2.97
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 -0
- package/dist/schemas/system/index.d.ts +16 -0
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -13249,6 +13249,8 @@ const upworkProfileSchema = objectType({
|
|
|
13249
13249
|
const systemPromptSchema = objectType({
|
|
13250
13250
|
suitability: stringType(),
|
|
13251
13251
|
proposal: stringType(),
|
|
13252
|
+
proposalQuestions: stringType(),
|
|
13253
|
+
proposalNoQuestions: stringType(),
|
|
13252
13254
|
questionHandlingGuidelines: stringType(),
|
|
13253
13255
|
});
|
|
13254
13256
|
const systemSchema = objectType({
|
|
@@ -2,40 +2,56 @@ import { infer } from "zod";
|
|
|
2
2
|
export declare const systemPromptSchema: import("zod").ZodObject<{
|
|
3
3
|
suitability: import("zod").ZodString;
|
|
4
4
|
proposal: import("zod").ZodString;
|
|
5
|
+
proposalQuestions: import("zod").ZodString;
|
|
6
|
+
proposalNoQuestions: import("zod").ZodString;
|
|
5
7
|
questionHandlingGuidelines: import("zod").ZodString;
|
|
6
8
|
}, "strip", import("zod").ZodTypeAny, {
|
|
7
9
|
suitability: string;
|
|
8
10
|
proposal: string;
|
|
11
|
+
proposalQuestions: string;
|
|
12
|
+
proposalNoQuestions: string;
|
|
9
13
|
questionHandlingGuidelines: string;
|
|
10
14
|
}, {
|
|
11
15
|
suitability: string;
|
|
12
16
|
proposal: string;
|
|
17
|
+
proposalQuestions: string;
|
|
18
|
+
proposalNoQuestions: string;
|
|
13
19
|
questionHandlingGuidelines: string;
|
|
14
20
|
}>;
|
|
15
21
|
export declare const systemSchema: import("zod").ZodObject<{
|
|
16
22
|
prompts: import("zod").ZodObject<{
|
|
17
23
|
suitability: import("zod").ZodString;
|
|
18
24
|
proposal: import("zod").ZodString;
|
|
25
|
+
proposalQuestions: import("zod").ZodString;
|
|
26
|
+
proposalNoQuestions: import("zod").ZodString;
|
|
19
27
|
questionHandlingGuidelines: import("zod").ZodString;
|
|
20
28
|
}, "strip", import("zod").ZodTypeAny, {
|
|
21
29
|
suitability: string;
|
|
22
30
|
proposal: string;
|
|
31
|
+
proposalQuestions: string;
|
|
32
|
+
proposalNoQuestions: string;
|
|
23
33
|
questionHandlingGuidelines: string;
|
|
24
34
|
}, {
|
|
25
35
|
suitability: string;
|
|
26
36
|
proposal: string;
|
|
37
|
+
proposalQuestions: string;
|
|
38
|
+
proposalNoQuestions: string;
|
|
27
39
|
questionHandlingGuidelines: string;
|
|
28
40
|
}>;
|
|
29
41
|
}, "strip", import("zod").ZodTypeAny, {
|
|
30
42
|
prompts: {
|
|
31
43
|
suitability: string;
|
|
32
44
|
proposal: string;
|
|
45
|
+
proposalQuestions: string;
|
|
46
|
+
proposalNoQuestions: string;
|
|
33
47
|
questionHandlingGuidelines: string;
|
|
34
48
|
};
|
|
35
49
|
}, {
|
|
36
50
|
prompts: {
|
|
37
51
|
suitability: string;
|
|
38
52
|
proposal: string;
|
|
53
|
+
proposalQuestions: string;
|
|
54
|
+
proposalNoQuestions: string;
|
|
39
55
|
questionHandlingGuidelines: string;
|
|
40
56
|
};
|
|
41
57
|
}>;
|