lancer-shared 1.2.170 → 1.2.171

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.
@@ -1,4 +1,3 @@
1
- import { Lead } from 'lancer-shared';
2
1
  import { z } from 'zod';
3
2
  import { proposalSchema } from './proposal';
4
3
  export declare const agentGenerateProposalRequestSchema: z.ZodObject<{
@@ -1027,9 +1026,7 @@ export declare const agentPickSpecialisedProfileResponseSchema: z.ZodObject<{
1027
1026
  profile: string;
1028
1027
  reason: string;
1029
1028
  }>;
1030
- export interface AgentCalculateSuitabilityRequest extends z.infer<typeof agentCalculateSuitabilityRequestSchema> {
1031
- lead: Lead;
1032
- }
1029
+ export type AgentCalculateSuitabilityRequest = z.infer<typeof agentCalculateSuitabilityRequestSchema>;
1033
1030
  export interface AgentGenerateProposalRequest extends z.infer<typeof agentGenerateProposalRequestSchema> {
1034
1031
  }
1035
1032
  export interface AgentGenerateProposalResponse extends z.infer<typeof agentGenerateProposalResponseSchema> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.170",
3
+ "version": "1.2.171",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",