again
All checks were successful
Deploy to Test Environment / deploy-to-test (push) Successful in 18m59s
All checks were successful
Deploy to Test Environment / deploy-to-test (push) Successful in 18m59s
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user