again
All checks were successful
Deploy to Test Environment / deploy-to-test (push) Successful in 18m59s

This commit is contained in:
2025-12-31 00:27:56 -08:00
parent d9034563d6
commit 3e41130c69

View File

@@ -43,7 +43,7 @@ const ExtractedFlyerItemSchema = z.object({
});
export const AiFlyerDataSchema = z.object({
store_name: requiredString('Store name cannot be empty'),
store_name: z.string().nullable(),
valid_from: z.string().nullable(),
valid_to: z.string().nullable(),
store_address: z.string().nullable(),
@@ -507,7 +507,7 @@ export class AIService {
userProfileAddress?: string,
logger: Logger = this.logger,
): Promise<{
store_name: string;
store_name: string | null;
valid_from: string | null;
valid_to: string | null;
store_address: string | null;