lancer-shared 1.2.242 → 1.2.244
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.
|
@@ -2634,6 +2634,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2634
2634
|
wonAmount?: number | undefined;
|
|
2635
2635
|
}>]>, "many">;
|
|
2636
2636
|
lastMonthTotal: z.ZodOptional<z.ZodNumber>;
|
|
2637
|
+
lastMonthTotalWithEmptyFilters: z.ZodOptional<z.ZodNumber>;
|
|
2637
2638
|
error: z.ZodOptional<z.ZodString>;
|
|
2638
2639
|
}, "strip", z.ZodTypeAny, {
|
|
2639
2640
|
data: ({
|
|
@@ -2886,6 +2887,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2886
2887
|
total: number;
|
|
2887
2888
|
error?: string | undefined;
|
|
2888
2889
|
lastMonthTotal?: number | undefined;
|
|
2890
|
+
lastMonthTotalWithEmptyFilters?: number | undefined;
|
|
2889
2891
|
}, {
|
|
2890
2892
|
data: ({
|
|
2891
2893
|
id: string | null;
|
|
@@ -3137,6 +3139,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3137
3139
|
total: number;
|
|
3138
3140
|
error?: string | undefined;
|
|
3139
3141
|
lastMonthTotal?: number | undefined;
|
|
3142
|
+
lastMonthTotalWithEmptyFilters?: number | undefined;
|
|
3140
3143
|
}>;
|
|
3141
3144
|
export declare const getCampaignLeadsRequestQuerySchema: z.ZodObject<{
|
|
3142
3145
|
cursor: z.ZodOptional<z.ZodString>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lancer-shared",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.244",
|
|
4
4
|
"description": "This package contains shared stuff.",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "dist/bundle.cjs.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
20
20
|
"prepublishOnly": "npm run build",
|
|
21
21
|
"build": "tsc",
|
|
22
|
-
"dev": "
|
|
22
|
+
"dev": "rollup -c -w --bundleConfigAsCjs"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [],
|
|
25
25
|
"author": "MVP Masters",
|