lancer-shared 1.2.249 → 1.2.250

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.
@@ -188,6 +188,9 @@ export declare const ROUTES: {
188
188
  };
189
189
  readonly CHECK_LEAD_STATUS: (organizationId: string, campaignId: string, leadId: string) => string;
190
190
  };
191
+ readonly LEADS: {
192
+ readonly BASE: (organizationId: string) => string;
193
+ };
191
194
  readonly USAGE_SUMMARIES: {
192
195
  readonly DAILY: {
193
196
  readonly BASE: (organizationId: string) => string;
@@ -3141,6 +3141,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
3141
3141
  lastMonthTotal?: number | undefined;
3142
3142
  lastMonthTotalWithEmptyFilters?: number | undefined;
3143
3143
  }>;
3144
+ export declare const getCampaignLeadsStatusEnum: z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied"]>;
3144
3145
  export declare const getCampaignLeadsRequestQuerySchema: z.ZodObject<{
3145
3146
  cursor: z.ZodOptional<z.ZodString>;
3146
3147
  limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
@@ -4080,4 +4081,5 @@ export type FindLeadsResponse = z.infer<typeof findLeadsResponseSchema>;
4080
4081
  export type GetCampaignLeadsRequestQuery = z.infer<typeof getCampaignLeadsRequestQuerySchema>;
4081
4082
  export type GenerateLeadCountsRequest = z.infer<typeof generateLeadCountsRequestSchema>;
4082
4083
  export type GetCampaignLeadsResponse = z.infer<typeof getCampaignLeadsResponseSchema>;
4084
+ export type GetCampaignLeadsStatus = z.infer<typeof getCampaignLeadsStatusEnum>;
4083
4085
  export * from './lead-status';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.249",
3
+ "version": "1.2.250",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",