fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -10,6 +10,7 @@ export declare const CloudFileFindFirstSelectZodSchema: z.ZodObject<{
|
||||
folderId: z.ZodOptional<z.ZodBoolean>;
|
||||
isComplete: z.ZodOptional<z.ZodBoolean>;
|
||||
totalChunks: z.ZodOptional<z.ZodBoolean>;
|
||||
diskPath: z.ZodOptional<z.ZodBoolean>;
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
@@ -17,31 +18,33 @@ export declare const CloudFileFindFirstSelectZodSchema: z.ZodObject<{
|
||||
chunks: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
name?: boolean | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
fileSize?: boolean | undefined;
|
||||
isComplete?: boolean | undefined;
|
||||
totalChunks?: boolean | undefined;
|
||||
diskPath?: boolean | undefined;
|
||||
chunks?: boolean | undefined;
|
||||
folderId?: boolean | undefined;
|
||||
folder?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
name?: boolean | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
fileSize?: boolean | undefined;
|
||||
isComplete?: boolean | undefined;
|
||||
totalChunks?: boolean | undefined;
|
||||
diskPath?: boolean | undefined;
|
||||
chunks?: boolean | undefined;
|
||||
folderId?: boolean | undefined;
|
||||
folder?: boolean | undefined;
|
||||
@@ -56,7 +59,7 @@ export declare const CloudFileFindFirstZodSchema: z.ZodObject<{
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.CloudFileWhereUniqueInput, z.ZodTypeDef, Prisma.CloudFileWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "createdAt", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "createdAt", "updatedAt"]>, "many">]>>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "diskPath", "createdAt", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "diskPath", "createdAt", "updatedAt"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.CloudFileWhereInput | undefined;
|
||||
include?: Prisma.CloudFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -65,7 +68,7 @@ export declare const CloudFileFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CloudFileWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId" | ("createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId" | ("id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.CloudFileWhereInput | undefined;
|
||||
include?: Prisma.CloudFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -74,6 +77,6 @@ export declare const CloudFileFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CloudFileWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId" | ("createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId" | ("id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstCloudFile.schema.d.ts.map
|
||||
Reference in New Issue
Block a user