import { APIResource } from "../../resource.js"; import * as Core from "../../core.js"; import { ContentsPage, type ContentsPageParams } from "../../pagination.js"; export declare class Contents extends APIResource { /** * Get Document Contents */ list(datastoreId: string, query?: ContentListParams, options?: Core.RequestOptions): Core.PagePromise; list(datastoreId: string, options?: Core.RequestOptions): Core.PagePromise; /** * Get Content Metadata */ metadata(datastoreId: string, contentId: string, query?: ContentMetadataParams, options?: Core.RequestOptions): Core.APIPromise; metadata(datastoreId: string, contentId: string, options?: Core.RequestOptions): Core.APIPromise; } export declare class ContentListResponsesContentsPage extends ContentsPage { } /** * Content entry type */ export type ContentListResponse = ContentListResponse.DocumentContentEntry | ContentListResponse.StructuredContentEntry; export declare namespace ContentListResponse { interface DocumentContentEntry { /** * ID of the content */ content_id: string; /** * Page number of the content */ page_number: number; content_type?: 'unstructured'; } /** * Tabular content entry used in query retrieval. */ interface StructuredContentEntry { /** * ID of the content */ content_id: string; /** * Name of the table */ table_name: string; content_type?: 'structured'; /** * Name of the schema of the table */ schema?: string | null; } } /** * Content type */ export type ContentMetadataResponse = ContentMetadataResponse.UnstructuredContentMetadata | ContentMetadataResponse.StructuredContentMetadata | ContentMetadataResponse.FileAnalysisContentMetadata; export declare namespace ContentMetadataResponse { interface UnstructuredContentMetadata { /** * Id of the content. */ content_id: string; /** * Text of the content. */ content_text: string; /** * Id of the document which the content belongs to. */ document_id: string; /** * Height of the image. */ height: number; /** * Page number of the content. */ page: number; /** * Image of the page on which the content occurs. */ page_img: string; /** * Width of the image. */ width: number; /** * X coordinate of the top left corner on the bounding box. */ x0: number; /** * X coordinate of the bottom right corner on the bounding box. */ x1: number; /** * Y coordinate of the top left corner on the bounding box. */ y0: number; /** * Y coordinate of the bottom right corner on the bounding box. */ y1: number; content_type?: 'unstructured'; } interface StructuredContentMetadata { /** * Id of the content. */ content_id: string; /** * Text of the content. */ content_text: unknown; content_type?: 'structured'; } interface FileAnalysisContentMetadata { /** * Id of the content. */ content_id: string; /** * Format of the file. */ file_format: string; /** * GCP location of the file. */ gcp_location: string; content_type?: 'file_analysis'; } } export interface ContentListParams extends ContentsPageParams { /** * Document ID of the document to retrieve details for */ document_id?: string; /** * The query to search keywords for */ search?: string; } export interface ContentMetadataParams { cursor?: string; } export declare namespace Contents { export { type ContentListResponse as ContentListResponse, type ContentMetadataResponse as ContentMetadataResponse, ContentListResponsesContentsPage as ContentListResponsesContentsPage, type ContentListParams as ContentListParams, type ContentMetadataParams as ContentMetadataParams, }; } //# sourceMappingURL=contents.d.ts.map