We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caa738d commit d14f4ffCopy full SHA for d14f4ff
2 files changed
src/common/paddle/recruiter/types.ts
@@ -7,6 +7,6 @@ export const recruiterPaddleCustomDataSchema = z.object({
7
8
export const recruiterPaddlePricingCustomDataSchema = z.object({
9
batch_size: z.coerce.number().nonnegative().max(10_000),
10
- reminders: z.boolean(),
11
- show_slack: z.boolean(),
+ reminders: z.boolean().nullish(),
+ show_slack: z.boolean().nullish(),
12
});
src/entity/opportunities/Opportunity.ts
@@ -31,8 +31,8 @@ export type OpportunityFlags = Partial<{
31
};
32
batchSize: number;
33
plan: string;
34
- reminders: boolean;
35
- showSlack: boolean;
+ reminders: boolean | null;
+ showSlack: boolean | null;
36
}>;
37
38
export type OpportunityFlagsPublic = Pick<
0 commit comments