lancer-shared 1.2.248 → 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.
|
@@ -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";
|
|
@@ -189,6 +188,9 @@ export declare const ROUTES: {
|
|
|
189
188
|
};
|
|
190
189
|
readonly CHECK_LEAD_STATUS: (organizationId: string, campaignId: string, leadId: string) => string;
|
|
191
190
|
};
|
|
191
|
+
readonly LEADS: {
|
|
192
|
+
readonly BASE: (organizationId: string) => string;
|
|
193
|
+
};
|
|
192
194
|
readonly USAGE_SUMMARIES: {
|
|
193
195
|
readonly DAILY: {
|
|
194
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';
|