lancer-shared 1.2.265 → 1.2.266
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.
|
@@ -3691,22 +3691,22 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3691
3691
|
lastMonthTotal?: number | undefined;
|
|
3692
3692
|
lastMonthTotalWithEmptyFilters?: number | undefined;
|
|
3693
3693
|
}>;
|
|
3694
|
-
export declare const getCampaignLeadsStatusEnum: z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied"]>;
|
|
3694
|
+
export declare const getCampaignLeadsStatusEnum: z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied", "rejected"]>;
|
|
3695
3695
|
export declare const getCampaignLeadsRequestQuerySchema: z.ZodObject<{
|
|
3696
3696
|
cursor: z.ZodOptional<z.ZodString>;
|
|
3697
3697
|
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
3698
|
-
status: z.ZodOptional<z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied"]>>;
|
|
3698
|
+
status: z.ZodOptional<z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied", "rejected"]>>;
|
|
3699
3699
|
campaignId: z.ZodOptional<z.ZodString>;
|
|
3700
3700
|
inQueue: z.ZodOptional<z.ZodBoolean>;
|
|
3701
3701
|
}, "strip", z.ZodTypeAny, {
|
|
3702
3702
|
cursor?: string | undefined;
|
|
3703
|
-
status?: "all" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
3703
|
+
status?: "all" | "rejected" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
3704
3704
|
campaignId?: string | undefined;
|
|
3705
3705
|
limit?: number | undefined;
|
|
3706
3706
|
inQueue?: boolean | undefined;
|
|
3707
3707
|
}, {
|
|
3708
3708
|
cursor?: string | undefined;
|
|
3709
|
-
status?: "all" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
3709
|
+
status?: "all" | "rejected" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
3710
3710
|
campaignId?: string | undefined;
|
|
3711
3711
|
limit?: number | undefined;
|
|
3712
3712
|
inQueue?: boolean | undefined;
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const getOrganizationLeadsStatusEnum: z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied"]>;
|
|
2
|
+
export declare const getOrganizationLeadsStatusEnum: z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied", "rejected"]>;
|
|
3
3
|
export declare const getOrganizationLeadsRequestQuerySchema: z.ZodObject<{
|
|
4
4
|
cursor: z.ZodOptional<z.ZodString>;
|
|
5
5
|
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
6
|
-
status: z.ZodOptional<z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied"]>>;
|
|
6
|
+
status: z.ZodOptional<z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied", "rejected"]>>;
|
|
7
7
|
campaignId: z.ZodOptional<z.ZodString>;
|
|
8
8
|
inQueue: z.ZodOptional<z.ZodBoolean>;
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
10
|
cursor?: string | undefined;
|
|
11
|
-
status?: "all" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
11
|
+
status?: "all" | "rejected" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
12
12
|
campaignId?: string | undefined;
|
|
13
13
|
limit?: number | undefined;
|
|
14
14
|
inQueue?: boolean | undefined;
|
|
15
15
|
}, {
|
|
16
16
|
cursor?: string | undefined;
|
|
17
|
-
status?: "all" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
17
|
+
status?: "all" | "rejected" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
18
18
|
campaignId?: string | undefined;
|
|
19
19
|
limit?: number | undefined;
|
|
20
20
|
inQueue?: boolean | undefined;
|