@dakkitor/api-contracts 1.1.142 → 1.1.144
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.
- package/dist/actives/actives.contract.d.ts +64 -64
- package/dist/bookings/bookings.contract.d.ts +104 -104
- package/dist/dashboards/dashboard.contract.d.ts +12 -12
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +217 -217
- package/dist/lead-distribution/agent-lead-distribution.contract.js +2 -2
- package/dist/workers/workers.contract.d.ts +44 -44
- package/dist/workers/workers.contract.d.ts.map +1 -1
- package/dist/workers/workers.contract.js +8 -2
- package/package.json +1 -1
|
@@ -44,9 +44,8 @@ export declare const DashboardMetricsSchema: z.ZodObject<{
|
|
|
44
44
|
activesToday: z.ZodNumber;
|
|
45
45
|
activesTodayByStatus: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
46
46
|
}, "strip", z.ZodTypeAny, {
|
|
47
|
-
totalBookings: number;
|
|
48
47
|
totalJobs: number;
|
|
49
|
-
|
|
48
|
+
totalBookings: number;
|
|
50
49
|
bookingsByStatus: Record<string, number>;
|
|
51
50
|
totalClients: number;
|
|
52
51
|
totalCollaborationCheckings: number;
|
|
@@ -57,14 +56,14 @@ export declare const DashboardMetricsSchema: z.ZodObject<{
|
|
|
57
56
|
tier: string;
|
|
58
57
|
conversionRate: number;
|
|
59
58
|
} | null;
|
|
59
|
+
totalCollaborations: number;
|
|
60
60
|
collaborationsByStatus: Record<string, number>;
|
|
61
61
|
totalClientContacts: number;
|
|
62
62
|
activesToday: number;
|
|
63
63
|
activesTodayByStatus: Record<string, number>;
|
|
64
64
|
}, {
|
|
65
|
-
totalBookings: number;
|
|
66
65
|
totalJobs: number;
|
|
67
|
-
|
|
66
|
+
totalBookings: number;
|
|
68
67
|
bookingsByStatus: Record<string, number>;
|
|
69
68
|
totalClients: number;
|
|
70
69
|
totalCollaborationCheckings: number;
|
|
@@ -75,6 +74,7 @@ export declare const DashboardMetricsSchema: z.ZodObject<{
|
|
|
75
74
|
tier: string;
|
|
76
75
|
conversionRate: number;
|
|
77
76
|
} | null;
|
|
77
|
+
totalCollaborations: number;
|
|
78
78
|
collaborationsByStatus: Record<string, number>;
|
|
79
79
|
totalClientContacts: number;
|
|
80
80
|
activesToday: number;
|
|
@@ -116,17 +116,17 @@ export declare const AgentCallPerformanceMetricsSchema: z.ZodObject<{
|
|
|
116
116
|
performanceTier: z.ZodEnum<["high", "medium", "low", "new"]>;
|
|
117
117
|
}, "strip", z.ZodTypeAny, {
|
|
118
118
|
date: string;
|
|
119
|
+
conversionRate: number;
|
|
119
120
|
totalCalls: number;
|
|
120
121
|
averageRatingWeight: number;
|
|
121
|
-
conversionRate: number;
|
|
122
122
|
successVariance: number;
|
|
123
123
|
performanceScore: number;
|
|
124
124
|
performanceTier: "high" | "medium" | "low" | "new";
|
|
125
125
|
}, {
|
|
126
126
|
date: string;
|
|
127
|
+
conversionRate: number;
|
|
127
128
|
totalCalls: number;
|
|
128
129
|
averageRatingWeight: number;
|
|
129
|
-
conversionRate: number;
|
|
130
130
|
successVariance: number;
|
|
131
131
|
performanceScore: number;
|
|
132
132
|
performanceTier: "high" | "medium" | "low" | "new";
|
|
@@ -186,9 +186,8 @@ export declare const dashboardContract: {
|
|
|
186
186
|
activesToday: z.ZodNumber;
|
|
187
187
|
activesTodayByStatus: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
188
188
|
}, "strip", z.ZodTypeAny, {
|
|
189
|
-
totalBookings: number;
|
|
190
189
|
totalJobs: number;
|
|
191
|
-
|
|
190
|
+
totalBookings: number;
|
|
192
191
|
bookingsByStatus: Record<string, number>;
|
|
193
192
|
totalClients: number;
|
|
194
193
|
totalCollaborationCheckings: number;
|
|
@@ -199,14 +198,14 @@ export declare const dashboardContract: {
|
|
|
199
198
|
tier: string;
|
|
200
199
|
conversionRate: number;
|
|
201
200
|
} | null;
|
|
201
|
+
totalCollaborations: number;
|
|
202
202
|
collaborationsByStatus: Record<string, number>;
|
|
203
203
|
totalClientContacts: number;
|
|
204
204
|
activesToday: number;
|
|
205
205
|
activesTodayByStatus: Record<string, number>;
|
|
206
206
|
}, {
|
|
207
|
-
totalBookings: number;
|
|
208
207
|
totalJobs: number;
|
|
209
|
-
|
|
208
|
+
totalBookings: number;
|
|
210
209
|
bookingsByStatus: Record<string, number>;
|
|
211
210
|
totalClients: number;
|
|
212
211
|
totalCollaborationCheckings: number;
|
|
@@ -217,6 +216,7 @@ export declare const dashboardContract: {
|
|
|
217
216
|
tier: string;
|
|
218
217
|
conversionRate: number;
|
|
219
218
|
} | null;
|
|
219
|
+
totalCollaborations: number;
|
|
220
220
|
collaborationsByStatus: Record<string, number>;
|
|
221
221
|
totalClientContacts: number;
|
|
222
222
|
activesToday: number;
|
|
@@ -279,17 +279,17 @@ export declare const dashboardContract: {
|
|
|
279
279
|
performanceTier: z.ZodEnum<["high", "medium", "low", "new"]>;
|
|
280
280
|
}, "strip", z.ZodTypeAny, {
|
|
281
281
|
date: string;
|
|
282
|
+
conversionRate: number;
|
|
282
283
|
totalCalls: number;
|
|
283
284
|
averageRatingWeight: number;
|
|
284
|
-
conversionRate: number;
|
|
285
285
|
successVariance: number;
|
|
286
286
|
performanceScore: number;
|
|
287
287
|
performanceTier: "high" | "medium" | "low" | "new";
|
|
288
288
|
}, {
|
|
289
289
|
date: string;
|
|
290
|
+
conversionRate: number;
|
|
290
291
|
totalCalls: number;
|
|
291
292
|
averageRatingWeight: number;
|
|
292
|
-
conversionRate: number;
|
|
293
293
|
successVariance: number;
|
|
294
294
|
performanceScore: number;
|
|
295
295
|
performanceTier: "high" | "medium" | "low" | "new";
|