fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -4,18 +4,21 @@ export declare const ClaimFileInputSchema: z.ZodObject<{
|
||||
claimId: z.ZodNumber;
|
||||
filename: z.ZodString;
|
||||
mimeType: z.ZodString;
|
||||
filePath: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
claim: z.ZodUnknown;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id: number;
|
||||
filename: string;
|
||||
id: number;
|
||||
mimeType: string;
|
||||
claimId: number;
|
||||
filePath?: string | null | undefined;
|
||||
claim?: unknown;
|
||||
}, {
|
||||
id: number;
|
||||
filename: string;
|
||||
id: number;
|
||||
mimeType: string;
|
||||
claimId: number;
|
||||
filePath?: string | null | undefined;
|
||||
claim?: unknown;
|
||||
}>;
|
||||
export type ClaimFileInputType = z.infer<typeof ClaimFileInputSchema>;
|
||||
|
||||
Reference in New Issue
Block a user