import { z } from 'zod'; /** * Zod schema for REST node * Used for validating API responses from getNode and similar endpoints */ export declare const RestNodeSchema: z.ZodObject<{ /** Activities */ Activities: z.ZodOptional, "many">>; /** Content hash */ ContentHash: z.ZodOptional; /** Content lock information */ ContentLock: z.ZodOptional; Owner: z.ZodOptional; }, "strip", z.ZodTypeAny, { IsLocked?: boolean | undefined; Owner?: string | undefined; }, { IsLocked?: boolean | undefined; Owner?: string | undefined; }>>; /** Content type */ ContentType: z.ZodOptional; /** Context workspace */ ContextWorkspace: z.ZodOptional; IsRoot: z.ZodOptional; IsVirtualRoot: z.ZodOptional; Label: z.ZodOptional; Permissions: z.ZodOptional; Quota: z.ZodOptional; QuotaUsage: z.ZodOptional; Scope: z.ZodOptional; SkipRecycle: z.ZodOptional; Slug: z.ZodString; Syncable: z.ZodOptional; Uuid: z.ZodString; }, "strip", z.ZodTypeAny, { Slug: string; Uuid: string; Description?: string | undefined; IsRoot?: boolean | undefined; IsVirtualRoot?: boolean | undefined; Label?: string | undefined; Permissions?: string | undefined; Quota?: string | undefined; QuotaUsage?: string | undefined; Scope?: string | undefined; SkipRecycle?: boolean | undefined; Syncable?: boolean | undefined; }, { Slug: string; Uuid: string; Description?: string | undefined; IsRoot?: boolean | undefined; IsVirtualRoot?: boolean | undefined; Label?: string | undefined; Permissions?: string | undefined; Quota?: string | undefined; QuotaUsage?: string | undefined; Scope?: string | undefined; SkipRecycle?: boolean | undefined; Syncable?: boolean | undefined; }>>; /** Data source features */ DataSourceFeatures: z.ZodOptional; Versioned: z.ZodOptional; }, "strip", z.ZodTypeAny, { Encrypted?: boolean | undefined; Versioned?: boolean | undefined; }, { Encrypted?: boolean | undefined; Versioned?: boolean | undefined; }>>; /** Editor URLs */ EditorURLs: z.ZodOptional; Url: z.ZodOptional; }, "strip", z.ZodTypeAny, { ExpiresAt?: string | undefined; Url?: string | undefined; }, { ExpiresAt?: string | undefined; Url?: string | undefined; }>>>; /** Editor URLs keys */ EditorURLsKeys: z.ZodOptional>; /** Folder metadata */ FolderMeta: z.ZodOptional, "many">>; /** Hashing method */ HashingMethod: z.ZodOptional; /** Image metadata */ ImageMeta: z.ZodOptional; JsonEXIF: z.ZodOptional; Orientation: z.ZodOptional; Width: z.ZodOptional; }, "strip", z.ZodTypeAny, { Height?: number | undefined; JsonEXIF?: string | undefined; Orientation?: number | undefined; Width?: number | undefined; }, { Height?: number | undefined; JsonEXIF?: string | undefined; Orientation?: number | undefined; Width?: number | undefined; }>>; /** Is bookmarked flag */ IsBookmarked: z.ZodOptional; /** Is draft flag */ IsDraft: z.ZodOptional; /** Is recycle bin flag */ IsRecycleBin: z.ZodOptional; /** Is recycled flag */ IsRecycled: z.ZodOptional; /** Metadata */ Metadata: z.ZodOptional, "many">>; /** Node mode/permissions */ Mode: z.ZodOptional>; /** Modification timestamp */ Modified: z.ZodOptional; /** Node path */ Path: z.ZodString; /** Pre-signed GET URL */ PreSignedGET: z.ZodOptional; Url: z.ZodOptional; }, "strip", z.ZodTypeAny, { ExpiresAt?: string | undefined; Url?: string | undefined; }, { ExpiresAt?: string | undefined; Url?: string | undefined; }>>; /** File previews */ Previews: z.ZodOptional; ContentType: z.ZodOptional; Dimension: z.ZodOptional; Error: z.ZodOptional; Key: z.ZodOptional; PreSignedURL: z.ZodOptional; Url: z.ZodOptional; }, "strip", z.ZodTypeAny, { ExpiresAt?: string | undefined; Url?: string | undefined; }, { ExpiresAt?: string | undefined; Url?: string | undefined; }>>; PreSignedGET: z.ZodOptional; Url: z.ZodOptional; }, "strip", z.ZodTypeAny, { ExpiresAt?: string | undefined; Url?: string | undefined; }, { ExpiresAt?: string | undefined; Url?: string | undefined; }>>; Processing: z.ZodOptional; }, "strip", z.ZodTypeAny, { Bucket?: string | undefined; ContentType?: string | undefined; Dimension?: number | undefined; Error?: boolean | undefined; Key?: string | undefined; PreSignedURL?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; Processing?: boolean | undefined; }, { Bucket?: string | undefined; ContentType?: string | undefined; Dimension?: number | undefined; Error?: boolean | undefined; Key?: string | undefined; PreSignedURL?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; Processing?: boolean | undefined; }>, "many">>; /** Share links */ Shares: z.ZodOptional; AccessStart: z.ZodOptional; CurrentDownloads: z.ZodOptional; Description: z.ZodOptional; Label: z.ZodOptional; LinkHash: z.ZodOptional; LinkUrl: z.ZodOptional; MaxDownloads: z.ZodOptional; PasswordRequired: z.ZodOptional; Permissions: z.ZodOptional, "many">>; Policies: z.ZodOptional>; PoliciesContextEditable: z.ZodOptional; }, "strip", z.ZodTypeAny, { Description?: string | undefined; Label?: string | undefined; Permissions?: ("NoAccess" | "Preview" | "Download" | "Upload")[] | undefined; AccessEnd?: string | undefined; AccessStart?: string | undefined; CurrentDownloads?: string | undefined; LinkHash?: string | undefined; LinkUrl?: string | undefined; MaxDownloads?: string | undefined; PasswordRequired?: boolean | undefined; Policies?: unknown[] | undefined; PoliciesContextEditable?: boolean | undefined; }, { Description?: string | undefined; Label?: string | undefined; Permissions?: ("NoAccess" | "Preview" | "Download" | "Upload")[] | undefined; AccessEnd?: string | undefined; AccessStart?: string | undefined; CurrentDownloads?: string | undefined; LinkHash?: string | undefined; LinkUrl?: string | undefined; MaxDownloads?: string | undefined; PasswordRequired?: boolean | undefined; Policies?: unknown[] | undefined; PoliciesContextEditable?: boolean | undefined; }>, "many">>; /** Node size in bytes */ Size: z.ZodOptional; /** Storage ETag */ StorageETag: z.ZodOptional; /** Subscriptions */ Subscriptions: z.ZodOptional>; ObjectId: z.ZodOptional; ObjectType: z.ZodOptional; UserId: z.ZodOptional; }, "strip", z.ZodTypeAny, { Events?: string[] | undefined; ObjectId?: string | undefined; ObjectType?: string | undefined; UserId?: string | undefined; }, { Events?: string[] | undefined; ObjectId?: string | undefined; ObjectType?: string | undefined; UserId?: string | undefined; }>, "many">>; Type: z.ZodOptional>; /** User metadata */ UserMetadata: z.ZodOptional; JsonValue: z.ZodString; Namespace: z.ZodString; NodeUuid: z.ZodOptional; }, "strip", z.ZodTypeAny, { Namespace: string; JsonValue: string; Editable?: boolean | undefined; NodeUuid?: string | undefined; }, { Namespace: string; JsonValue: string; Editable?: boolean | undefined; NodeUuid?: string | undefined; }>, "many">>; /** Node UUID */ Uuid: z.ZodString; /** Version metadata */ VersionMeta: z.ZodOptional; IsDraft: z.ZodOptional; IsHead: z.ZodOptional; OwnerUuid: z.ZodOptional; VersionId: z.ZodString; }, "strip", z.ZodTypeAny, { VersionId: string; Description?: string | undefined; IsDraft?: boolean | undefined; IsHead?: boolean | undefined; OwnerUuid?: string | undefined; }, { VersionId: string; Description?: string | undefined; IsDraft?: boolean | undefined; IsHead?: boolean | undefined; OwnerUuid?: string | undefined; }>>; /** Versions */ Versions: z.ZodOptional; Description: z.ZodOptional; Draft: z.ZodOptional; ETag: z.ZodOptional; EditorURLs: z.ZodOptional; Url: z.ZodOptional; }, "strip", z.ZodTypeAny, { ExpiresAt?: string | undefined; Url?: string | undefined; }, { ExpiresAt?: string | undefined; Url?: string | undefined; }>>>; EditorURLsKeys: z.ZodOptional>; FilePreviews: z.ZodOptional; ContentType: z.ZodOptional; Dimension: z.ZodOptional; Error: z.ZodOptional; Key: z.ZodOptional; PreSignedURL: z.ZodOptional; Url: z.ZodOptional; }, "strip", z.ZodTypeAny, { ExpiresAt?: string | undefined; Url?: string | undefined; }, { ExpiresAt?: string | undefined; Url?: string | undefined; }>>; PreSignedGET: z.ZodOptional; Url: z.ZodOptional; }, "strip", z.ZodTypeAny, { ExpiresAt?: string | undefined; Url?: string | undefined; }, { ExpiresAt?: string | undefined; Url?: string | undefined; }>>; Processing: z.ZodOptional; }, "strip", z.ZodTypeAny, { Bucket?: string | undefined; ContentType?: string | undefined; Dimension?: number | undefined; Error?: boolean | undefined; Key?: string | undefined; PreSignedURL?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; Processing?: boolean | undefined; }, { Bucket?: string | undefined; ContentType?: string | undefined; Dimension?: number | undefined; Error?: boolean | undefined; Key?: string | undefined; PreSignedURL?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; Processing?: boolean | undefined; }>, "many">>; IsHead: z.ZodOptional; MTime: z.ZodOptional; OwnerName: z.ZodOptional; OwnerUuid: z.ZodOptional; PreSignedGET: z.ZodOptional; Url: z.ZodOptional; }, "strip", z.ZodTypeAny, { ExpiresAt?: string | undefined; Url?: string | undefined; }, { ExpiresAt?: string | undefined; Url?: string | undefined; }>>; Size: z.ZodOptional; VersionId: z.ZodString; }, "strip", z.ZodTypeAny, { VersionId: string; Description?: string | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; IsHead?: boolean | undefined; OwnerUuid?: string | undefined; ContentHash?: string | undefined; Draft?: boolean | undefined; ETag?: string | undefined; EditorURLs?: Record | undefined; EditorURLsKeys?: string[] | undefined; FilePreviews?: { Bucket?: string | undefined; ContentType?: string | undefined; Dimension?: number | undefined; Error?: boolean | undefined; Key?: string | undefined; PreSignedURL?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; Processing?: boolean | undefined; }[] | undefined; MTime?: string | undefined; OwnerName?: string | undefined; Size?: string | undefined; }, { VersionId: string; Description?: string | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; IsHead?: boolean | undefined; OwnerUuid?: string | undefined; ContentHash?: string | undefined; Draft?: boolean | undefined; ETag?: string | undefined; EditorURLs?: Record | undefined; EditorURLsKeys?: string[] | undefined; FilePreviews?: { Bucket?: string | undefined; ContentType?: string | undefined; Dimension?: number | undefined; Error?: boolean | undefined; Key?: string | undefined; PreSignedURL?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; Processing?: boolean | undefined; }[] | undefined; MTime?: string | undefined; OwnerName?: string | undefined; Size?: string | undefined; }>, "many">>; }, "strip", z.ZodTypeAny, { Uuid: string; Path: string; ContentType?: string | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; IsDraft?: boolean | undefined; ContentHash?: string | undefined; EditorURLs?: Record | undefined; EditorURLsKeys?: string[] | undefined; Size?: string | undefined; Activities?: any[] | undefined; ContentLock?: { IsLocked?: boolean | undefined; Owner?: string | undefined; } | undefined; ContextWorkspace?: { Slug: string; Uuid: string; Description?: string | undefined; IsRoot?: boolean | undefined; IsVirtualRoot?: boolean | undefined; Label?: string | undefined; Permissions?: string | undefined; Quota?: string | undefined; QuotaUsage?: string | undefined; Scope?: string | undefined; SkipRecycle?: boolean | undefined; Syncable?: boolean | undefined; } | undefined; DataSourceFeatures?: { Encrypted?: boolean | undefined; Versioned?: boolean | undefined; } | undefined; FolderMeta?: { Namespace: string; Value: number; }[] | undefined; HashingMethod?: string | undefined; ImageMeta?: { Height?: number | undefined; JsonEXIF?: string | undefined; Orientation?: number | undefined; Width?: number | undefined; } | undefined; IsBookmarked?: boolean | undefined; IsRecycleBin?: boolean | undefined; IsRecycled?: boolean | undefined; Metadata?: { Namespace: string; Value: string; }[] | undefined; Mode?: "Default" | "NodeReadOnly" | "NodeWriteOnly" | "LevelReadOnly" | undefined; Modified?: string | undefined; Previews?: { Bucket?: string | undefined; ContentType?: string | undefined; Dimension?: number | undefined; Error?: boolean | undefined; Key?: string | undefined; PreSignedURL?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; Processing?: boolean | undefined; }[] | undefined; Shares?: { Description?: string | undefined; Label?: string | undefined; Permissions?: ("NoAccess" | "Preview" | "Download" | "Upload")[] | undefined; AccessEnd?: string | undefined; AccessStart?: string | undefined; CurrentDownloads?: string | undefined; LinkHash?: string | undefined; LinkUrl?: string | undefined; MaxDownloads?: string | undefined; PasswordRequired?: boolean | undefined; Policies?: unknown[] | undefined; PoliciesContextEditable?: boolean | undefined; }[] | undefined; StorageETag?: string | undefined; Subscriptions?: { Events?: string[] | undefined; ObjectId?: string | undefined; ObjectType?: string | undefined; UserId?: string | undefined; }[] | undefined; Type?: "UNKNOWN" | "LEAF" | "COLLECTION" | undefined; UserMetadata?: { Namespace: string; JsonValue: string; Editable?: boolean | undefined; NodeUuid?: string | undefined; }[] | undefined; VersionMeta?: { VersionId: string; Description?: string | undefined; IsDraft?: boolean | undefined; IsHead?: boolean | undefined; OwnerUuid?: string | undefined; } | undefined; Versions?: { VersionId: string; Description?: string | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; IsHead?: boolean | undefined; OwnerUuid?: string | undefined; ContentHash?: string | undefined; Draft?: boolean | undefined; ETag?: string | undefined; EditorURLs?: Record | undefined; EditorURLsKeys?: string[] | undefined; FilePreviews?: { Bucket?: string | undefined; ContentType?: string | undefined; Dimension?: number | undefined; Error?: boolean | undefined; Key?: string | undefined; PreSignedURL?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; Processing?: boolean | undefined; }[] | undefined; MTime?: string | undefined; OwnerName?: string | undefined; Size?: string | undefined; }[] | undefined; }, { Uuid: string; Path: string; ContentType?: string | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; IsDraft?: boolean | undefined; ContentHash?: string | undefined; EditorURLs?: Record | undefined; EditorURLsKeys?: string[] | undefined; Size?: string | undefined; Activities?: any[] | undefined; ContentLock?: { IsLocked?: boolean | undefined; Owner?: string | undefined; } | undefined; ContextWorkspace?: { Slug: string; Uuid: string; Description?: string | undefined; IsRoot?: boolean | undefined; IsVirtualRoot?: boolean | undefined; Label?: string | undefined; Permissions?: string | undefined; Quota?: string | undefined; QuotaUsage?: string | undefined; Scope?: string | undefined; SkipRecycle?: boolean | undefined; Syncable?: boolean | undefined; } | undefined; DataSourceFeatures?: { Encrypted?: boolean | undefined; Versioned?: boolean | undefined; } | undefined; FolderMeta?: { Namespace: string; Value: number; }[] | undefined; HashingMethod?: string | undefined; ImageMeta?: { Height?: number | undefined; JsonEXIF?: string | undefined; Orientation?: number | undefined; Width?: number | undefined; } | undefined; IsBookmarked?: boolean | undefined; IsRecycleBin?: boolean | undefined; IsRecycled?: boolean | undefined; Metadata?: { Namespace: string; Value: string; }[] | undefined; Mode?: "Default" | "NodeReadOnly" | "NodeWriteOnly" | "LevelReadOnly" | undefined; Modified?: string | undefined; Previews?: { Bucket?: string | undefined; ContentType?: string | undefined; Dimension?: number | undefined; Error?: boolean | undefined; Key?: string | undefined; PreSignedURL?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; Processing?: boolean | undefined; }[] | undefined; Shares?: { Description?: string | undefined; Label?: string | undefined; Permissions?: ("NoAccess" | "Preview" | "Download" | "Upload")[] | undefined; AccessEnd?: string | undefined; AccessStart?: string | undefined; CurrentDownloads?: string | undefined; LinkHash?: string | undefined; LinkUrl?: string | undefined; MaxDownloads?: string | undefined; PasswordRequired?: boolean | undefined; Policies?: unknown[] | undefined; PoliciesContextEditable?: boolean | undefined; }[] | undefined; StorageETag?: string | undefined; Subscriptions?: { Events?: string[] | undefined; ObjectId?: string | undefined; ObjectType?: string | undefined; UserId?: string | undefined; }[] | undefined; Type?: "UNKNOWN" | "LEAF" | "COLLECTION" | undefined; UserMetadata?: { Namespace: string; JsonValue: string; Editable?: boolean | undefined; NodeUuid?: string | undefined; }[] | undefined; VersionMeta?: { VersionId: string; Description?: string | undefined; IsDraft?: boolean | undefined; IsHead?: boolean | undefined; OwnerUuid?: string | undefined; } | undefined; Versions?: { VersionId: string; Description?: string | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; IsHead?: boolean | undefined; OwnerUuid?: string | undefined; ContentHash?: string | undefined; Draft?: boolean | undefined; ETag?: string | undefined; EditorURLs?: Record | undefined; EditorURLsKeys?: string[] | undefined; FilePreviews?: { Bucket?: string | undefined; ContentType?: string | undefined; Dimension?: number | undefined; Error?: boolean | undefined; Key?: string | undefined; PreSignedURL?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; Processing?: boolean | undefined; }[] | undefined; MTime?: string | undefined; OwnerName?: string | undefined; Size?: string | undefined; }[] | undefined; }>; export type Node = z.infer; export declare const RestNodeVersionsSchema: z.ZodArray; Description: z.ZodOptional; Draft: z.ZodOptional; ETag: z.ZodOptional; EditorURLs: z.ZodOptional; Url: z.ZodOptional; }, "strip", z.ZodTypeAny, { ExpiresAt?: string | undefined; Url?: string | undefined; }, { ExpiresAt?: string | undefined; Url?: string | undefined; }>>>; EditorURLsKeys: z.ZodOptional>; FilePreviews: z.ZodOptional; ContentType: z.ZodOptional; Dimension: z.ZodOptional; Error: z.ZodOptional; Key: z.ZodOptional; PreSignedURL: z.ZodOptional; Url: z.ZodOptional; }, "strip", z.ZodTypeAny, { ExpiresAt?: string | undefined; Url?: string | undefined; }, { ExpiresAt?: string | undefined; Url?: string | undefined; }>>; PreSignedGET: z.ZodOptional; Url: z.ZodOptional; }, "strip", z.ZodTypeAny, { ExpiresAt?: string | undefined; Url?: string | undefined; }, { ExpiresAt?: string | undefined; Url?: string | undefined; }>>; Processing: z.ZodOptional; }, "strip", z.ZodTypeAny, { Bucket?: string | undefined; ContentType?: string | undefined; Dimension?: number | undefined; Error?: boolean | undefined; Key?: string | undefined; PreSignedURL?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; Processing?: boolean | undefined; }, { Bucket?: string | undefined; ContentType?: string | undefined; Dimension?: number | undefined; Error?: boolean | undefined; Key?: string | undefined; PreSignedURL?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; Processing?: boolean | undefined; }>, "many">>; IsHead: z.ZodOptional; MTime: z.ZodOptional; OwnerName: z.ZodOptional; OwnerUuid: z.ZodOptional; PreSignedGET: z.ZodOptional; Url: z.ZodOptional; }, "strip", z.ZodTypeAny, { ExpiresAt?: string | undefined; Url?: string | undefined; }, { ExpiresAt?: string | undefined; Url?: string | undefined; }>>; Size: z.ZodOptional; VersionId: z.ZodString; }, "strip", z.ZodTypeAny, { VersionId: string; Description?: string | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; IsHead?: boolean | undefined; OwnerUuid?: string | undefined; ContentHash?: string | undefined; Draft?: boolean | undefined; ETag?: string | undefined; EditorURLs?: Record | undefined; EditorURLsKeys?: string[] | undefined; FilePreviews?: { Bucket?: string | undefined; ContentType?: string | undefined; Dimension?: number | undefined; Error?: boolean | undefined; Key?: string | undefined; PreSignedURL?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; Processing?: boolean | undefined; }[] | undefined; MTime?: string | undefined; OwnerName?: string | undefined; Size?: string | undefined; }, { VersionId: string; Description?: string | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; IsHead?: boolean | undefined; OwnerUuid?: string | undefined; ContentHash?: string | undefined; Draft?: boolean | undefined; ETag?: string | undefined; EditorURLs?: Record | undefined; EditorURLsKeys?: string[] | undefined; FilePreviews?: { Bucket?: string | undefined; ContentType?: string | undefined; Dimension?: number | undefined; Error?: boolean | undefined; Key?: string | undefined; PreSignedURL?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; PreSignedGET?: { ExpiresAt?: string | undefined; Url?: string | undefined; } | undefined; Processing?: boolean | undefined; }[] | undefined; MTime?: string | undefined; OwnerName?: string | undefined; Size?: string | undefined; }>, "many">; export type NodeVersions = z.infer; //# sourceMappingURL=CellsAPI.schema.d.ts.map