lancer-shared 1.2.12 → 1.2.13
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/bundle.cjs.js
CHANGED
|
@@ -5678,7 +5678,7 @@ const onboardingProgressSchema = z.object({
|
|
|
5678
5678
|
profileSetup: z.boolean(),
|
|
5679
5679
|
campaignCreated: z.boolean(),
|
|
5680
5680
|
filtersAdded: z.boolean(),
|
|
5681
|
-
rulesConfigured: z.
|
|
5681
|
+
rulesConfigured: z.number(), // 2 is completed, 1 is when the system generates ai config
|
|
5682
5682
|
automationEnabled: z.boolean(),
|
|
5683
5683
|
});
|
|
5684
5684
|
|
|
@@ -3,19 +3,19 @@ export declare const onboardingProgressSchema: z.ZodObject<{
|
|
|
3
3
|
profileSetup: z.ZodBoolean;
|
|
4
4
|
campaignCreated: z.ZodBoolean;
|
|
5
5
|
filtersAdded: z.ZodBoolean;
|
|
6
|
-
rulesConfigured: z.
|
|
6
|
+
rulesConfigured: z.ZodNumber;
|
|
7
7
|
automationEnabled: z.ZodBoolean;
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
9
|
profileSetup: boolean;
|
|
10
10
|
campaignCreated: boolean;
|
|
11
11
|
filtersAdded: boolean;
|
|
12
|
-
rulesConfigured:
|
|
12
|
+
rulesConfigured: number;
|
|
13
13
|
automationEnabled: boolean;
|
|
14
14
|
}, {
|
|
15
15
|
profileSetup: boolean;
|
|
16
16
|
campaignCreated: boolean;
|
|
17
17
|
filtersAdded: boolean;
|
|
18
|
-
rulesConfigured:
|
|
18
|
+
rulesConfigured: number;
|
|
19
19
|
automationEnabled: boolean;
|
|
20
20
|
}>;
|
|
21
21
|
export type OnboardingProgress = z.infer<typeof onboardingProgressSchema>;
|