lancer-shared 1.2.247 → 1.2.249
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.
|
@@ -94,7 +94,6 @@ export declare const ROUTES: {
|
|
|
94
94
|
readonly SAMPLE: (id: string) => string;
|
|
95
95
|
readonly CREATE_SAMPLE: "admin/golden-dataset/create";
|
|
96
96
|
readonly GET_SAMPLES: "admin/golden-dataset/get-samples";
|
|
97
|
-
readonly UPDATE_SAMPLE: "admin/golden-dataset/update";
|
|
98
97
|
};
|
|
99
98
|
readonly AGENT: {
|
|
100
99
|
readonly BASE: "admin/agent";
|
|
@@ -67,13 +67,10 @@ export declare const getSamplesRequestSchema: z.ZodObject<{
|
|
|
67
67
|
leadIds: string[];
|
|
68
68
|
}>;
|
|
69
69
|
export declare const updateSampleSchema: z.ZodObject<{
|
|
70
|
-
id: z.ZodString;
|
|
71
70
|
label: z.ZodEnum<["suitable", "unsuitable"]>;
|
|
72
71
|
}, "strip", z.ZodTypeAny, {
|
|
73
|
-
id: string;
|
|
74
72
|
label: "suitable" | "unsuitable";
|
|
75
73
|
}, {
|
|
76
|
-
id: string;
|
|
77
74
|
label: "suitable" | "unsuitable";
|
|
78
75
|
}>;
|
|
79
76
|
export type Sample = z.infer<typeof sampleSchema>;
|