lancer-shared 1.2.275 → 1.2.276
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,6 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const campaignAnalyticsSchema: z.ZodObject<{
|
|
3
3
|
contacted: z.ZodOptional<z.ZodNumber>;
|
|
4
|
+
contactedSync: z.ZodOptional<z.ZodNumber>;
|
|
4
5
|
viewed: z.ZodOptional<z.ZodNumber>;
|
|
5
6
|
replied: z.ZodOptional<z.ZodNumber>;
|
|
6
7
|
won: z.ZodOptional<z.ZodNumber>;
|
|
@@ -17,6 +18,7 @@ export declare const campaignAnalyticsSchema: z.ZodObject<{
|
|
|
17
18
|
won?: number | undefined;
|
|
18
19
|
wonAmount?: number | undefined;
|
|
19
20
|
leadsAnalyzed?: number | undefined;
|
|
21
|
+
contactedSync?: number | undefined;
|
|
20
22
|
proposalsGenerated?: number | undefined;
|
|
21
23
|
leadsFailed?: number | undefined;
|
|
22
24
|
suitableJobs?: number | undefined;
|
|
@@ -28,6 +30,7 @@ export declare const campaignAnalyticsSchema: z.ZodObject<{
|
|
|
28
30
|
won?: number | undefined;
|
|
29
31
|
wonAmount?: number | undefined;
|
|
30
32
|
leadsAnalyzed?: number | undefined;
|
|
33
|
+
contactedSync?: number | undefined;
|
|
31
34
|
proposalsGenerated?: number | undefined;
|
|
32
35
|
leadsFailed?: number | undefined;
|
|
33
36
|
suitableJobs?: number | undefined;
|
|
@@ -36,6 +39,7 @@ export declare const campaignAnalyticsSchema: z.ZodObject<{
|
|
|
36
39
|
export declare const campaignAnalyticsStatsSchema: z.ZodObject<{
|
|
37
40
|
totalStats: z.ZodObject<{
|
|
38
41
|
contacted: z.ZodOptional<z.ZodNumber>;
|
|
42
|
+
contactedSync: z.ZodOptional<z.ZodNumber>;
|
|
39
43
|
viewed: z.ZodOptional<z.ZodNumber>;
|
|
40
44
|
replied: z.ZodOptional<z.ZodNumber>;
|
|
41
45
|
won: z.ZodOptional<z.ZodNumber>;
|
|
@@ -52,6 +56,7 @@ export declare const campaignAnalyticsStatsSchema: z.ZodObject<{
|
|
|
52
56
|
won?: number | undefined;
|
|
53
57
|
wonAmount?: number | undefined;
|
|
54
58
|
leadsAnalyzed?: number | undefined;
|
|
59
|
+
contactedSync?: number | undefined;
|
|
55
60
|
proposalsGenerated?: number | undefined;
|
|
56
61
|
leadsFailed?: number | undefined;
|
|
57
62
|
suitableJobs?: number | undefined;
|
|
@@ -63,6 +68,7 @@ export declare const campaignAnalyticsStatsSchema: z.ZodObject<{
|
|
|
63
68
|
won?: number | undefined;
|
|
64
69
|
wonAmount?: number | undefined;
|
|
65
70
|
leadsAnalyzed?: number | undefined;
|
|
71
|
+
contactedSync?: number | undefined;
|
|
66
72
|
proposalsGenerated?: number | undefined;
|
|
67
73
|
leadsFailed?: number | undefined;
|
|
68
74
|
suitableJobs?: number | undefined;
|
|
@@ -71,6 +77,7 @@ export declare const campaignAnalyticsStatsSchema: z.ZodObject<{
|
|
|
71
77
|
statsByDate: z.ZodArray<z.ZodObject<{
|
|
72
78
|
label: z.ZodString;
|
|
73
79
|
contacted: z.ZodNumber;
|
|
80
|
+
contactedSync: z.ZodNumber;
|
|
74
81
|
viewed: z.ZodNumber;
|
|
75
82
|
replied: z.ZodNumber;
|
|
76
83
|
won: z.ZodNumber;
|
|
@@ -82,6 +89,7 @@ export declare const campaignAnalyticsStatsSchema: z.ZodObject<{
|
|
|
82
89
|
replied: number;
|
|
83
90
|
won: number;
|
|
84
91
|
leadsAnalyzed: number;
|
|
92
|
+
contactedSync: number;
|
|
85
93
|
}, {
|
|
86
94
|
label: string;
|
|
87
95
|
contacted: number;
|
|
@@ -89,6 +97,7 @@ export declare const campaignAnalyticsStatsSchema: z.ZodObject<{
|
|
|
89
97
|
replied: number;
|
|
90
98
|
won: number;
|
|
91
99
|
leadsAnalyzed: number;
|
|
100
|
+
contactedSync: number;
|
|
92
101
|
}>, "many">;
|
|
93
102
|
}, "strip", z.ZodTypeAny, {
|
|
94
103
|
totalStats: {
|
|
@@ -98,6 +107,7 @@ export declare const campaignAnalyticsStatsSchema: z.ZodObject<{
|
|
|
98
107
|
won?: number | undefined;
|
|
99
108
|
wonAmount?: number | undefined;
|
|
100
109
|
leadsAnalyzed?: number | undefined;
|
|
110
|
+
contactedSync?: number | undefined;
|
|
101
111
|
proposalsGenerated?: number | undefined;
|
|
102
112
|
leadsFailed?: number | undefined;
|
|
103
113
|
suitableJobs?: number | undefined;
|
|
@@ -110,6 +120,7 @@ export declare const campaignAnalyticsStatsSchema: z.ZodObject<{
|
|
|
110
120
|
replied: number;
|
|
111
121
|
won: number;
|
|
112
122
|
leadsAnalyzed: number;
|
|
123
|
+
contactedSync: number;
|
|
113
124
|
}[];
|
|
114
125
|
}, {
|
|
115
126
|
totalStats: {
|
|
@@ -119,6 +130,7 @@ export declare const campaignAnalyticsStatsSchema: z.ZodObject<{
|
|
|
119
130
|
won?: number | undefined;
|
|
120
131
|
wonAmount?: number | undefined;
|
|
121
132
|
leadsAnalyzed?: number | undefined;
|
|
133
|
+
contactedSync?: number | undefined;
|
|
122
134
|
proposalsGenerated?: number | undefined;
|
|
123
135
|
leadsFailed?: number | undefined;
|
|
124
136
|
suitableJobs?: number | undefined;
|
|
@@ -131,11 +143,13 @@ export declare const campaignAnalyticsStatsSchema: z.ZodObject<{
|
|
|
131
143
|
replied: number;
|
|
132
144
|
won: number;
|
|
133
145
|
leadsAnalyzed: number;
|
|
146
|
+
contactedSync: number;
|
|
134
147
|
}[];
|
|
135
148
|
}>;
|
|
136
149
|
export declare const campaignAnalyticsResponseSchema: z.ZodObject<{
|
|
137
150
|
jobsAnalyzed: z.ZodNumber;
|
|
138
151
|
contacted: z.ZodNumber;
|
|
152
|
+
contactedSync: z.ZodNumber;
|
|
139
153
|
viewed: z.ZodNumber;
|
|
140
154
|
replied: z.ZodNumber;
|
|
141
155
|
won: z.ZodNumber;
|
|
@@ -144,12 +158,14 @@ export declare const campaignAnalyticsResponseSchema: z.ZodObject<{
|
|
|
144
158
|
viewed: number;
|
|
145
159
|
replied: number;
|
|
146
160
|
won: number;
|
|
161
|
+
contactedSync: number;
|
|
147
162
|
jobsAnalyzed: number;
|
|
148
163
|
}, {
|
|
149
164
|
contacted: number;
|
|
150
165
|
viewed: number;
|
|
151
166
|
replied: number;
|
|
152
167
|
won: number;
|
|
168
|
+
contactedSync: number;
|
|
153
169
|
jobsAnalyzed: number;
|
|
154
170
|
}>;
|
|
155
171
|
export declare const campaignActivityTypeSchema: z.ZodEnum<["campaign_status", "lead_analysis", "lead_status", "proposal_sent"]>;
|