import { APIResource } from "../../resource.js"; import * as Core from "../../core.js"; import * as D1API from "./d1.js"; import { SinglePage, V4PagePaginationArray, type V4PagePaginationArrayParams } from "../../pagination.js"; export declare class Database extends APIResource { /** * Returns the created D1 database. * * @example * ```ts * const d1 = await client.d1.database.create({ * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * name: 'my-database', * }); * ``` */ create(params: DatabaseCreateParams, options?: Core.RequestOptions): Core.APIPromise; /** * Updates the specified D1 database. * * @example * ```ts * const d1 = await client.d1.database.update( * 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx', * { * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * read_replication: { mode: 'auto' }, * }, * ); * ``` */ update(databaseId: string, params: DatabaseUpdateParams, options?: Core.RequestOptions): Core.APIPromise; /** * Returns a list of D1 databases. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const databaseListResponse of client.d1.database.list( * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * )) { * // ... * } * ``` */ list(params: DatabaseListParams, options?: Core.RequestOptions): Core.PagePromise; /** * Deletes the specified D1 database. * * @example * ```ts * const database = await client.d1.database.delete( * 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx', * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * ); * ``` */ delete(databaseId: string, params: DatabaseDeleteParams, options?: Core.RequestOptions): Core.APIPromise; /** * Updates partially the specified D1 database. * * @example * ```ts * const d1 = await client.d1.database.edit( * 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx', * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * ); * ``` */ edit(databaseId: string, params: DatabaseEditParams, options?: Core.RequestOptions): Core.APIPromise; /** * Returns a URL where the SQL contents of your D1 can be downloaded. Note: this * process may take some time for larger DBs, during which your D1 will be * unavailable to serve queries. To avoid blocking your DB unnecessarily, an * in-progress export must be continually polled or will automatically cancel. * * @example * ```ts * const response = await client.d1.database.export( * 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx', * { * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * output_format: 'polling', * }, * ); * ``` */ export(databaseId: string, params: DatabaseExportParams, options?: Core.RequestOptions): Core.APIPromise; /** * Returns the specified D1 database. * * @example * ```ts * const d1 = await client.d1.database.get( * 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx', * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * ); * ``` */ get(databaseId: string, params: DatabaseGetParams, options?: Core.RequestOptions): Core.APIPromise; /** * Generates a temporary URL for uploading an SQL file to, then instructing the D1 * to import it and polling it for status updates. Imports block the D1 for their * duration. * * @example * ```ts * const response = await client.d1.database.import( * 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx', * { * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * action: 'init', * etag: 'etag', * }, * ); * ``` */ import(databaseId: string, params: DatabaseImportParams, options?: Core.RequestOptions): Core.APIPromise; /** * Returns the query result as an object. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const queryResult of client.d1.database.query( * 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx', * { * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * sql: 'SELECT * FROM myTable WHERE field = ? OR field = ?;', * }, * )) { * // ... * } * ``` */ query(databaseId: string, params: DatabaseQueryParams, options?: Core.RequestOptions): Core.PagePromise; /** * Returns the query result rows as arrays rather than objects. This is a * performance-optimized version of the /query endpoint. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const databaseRawResponse of client.d1.database.raw( * 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx', * { * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * sql: 'SELECT * FROM myTable WHERE field = ? OR field = ?;', * }, * )) { * // ... * } * ``` */ raw(databaseId: string, params: DatabaseRawParams, options?: Core.RequestOptions): Core.PagePromise; } export declare class DatabaseListResponsesV4PagePaginationArray extends V4PagePaginationArray { } export declare class QueryResultsSinglePage extends SinglePage { } export declare class DatabaseRawResponsesSinglePage extends SinglePage { } export interface QueryResult { meta?: QueryResult.Meta; results?: Array; success?: boolean; } export declare namespace QueryResult { interface Meta { /** * Denotes if the database has been altered in some way, like deleting rows. */ changed_db?: boolean; /** * Rough indication of how many rows were modified by the query, as provided by * SQLite's `sqlite3_total_changes()`. */ changes?: number; /** * The duration of the SQL query execution inside the database. Does not include * any network communication. */ duration?: number; /** * The row ID of the last inserted row in a table with an `INTEGER PRIMARY KEY` as * provided by SQLite. Tables created with `WITHOUT ROWID` do not populate this. */ last_row_id?: number; /** * Number of rows read during the SQL query execution, including indices (not all * rows are necessarily returned). */ rows_read?: number; /** * Number of rows written during the SQL query execution, including indices. */ rows_written?: number; /** * Denotes if the query has been handled by the database primary instance. */ served_by_primary?: boolean; /** * Region location hint of the database instance that handled the query. */ served_by_region?: 'WNAM' | 'ENAM' | 'WEUR' | 'EEUR' | 'APAC' | 'OC'; /** * Size of the database after the query committed, in bytes. */ size_after?: number; /** * Various durations for the query. */ timings?: Meta.Timings; } namespace Meta { /** * Various durations for the query. */ interface Timings { /** * The duration of the SQL query execution inside the database. Does not include * any network communication. */ sql_duration_ms?: number; } } } export interface DatabaseListResponse { /** * Specifies the timestamp the resource was created as an ISO8601 string. */ created_at?: string; /** * D1 database name. */ name?: string; /** * D1 database identifier (UUID). */ uuid?: string; version?: string; } export type DatabaseDeleteResponse = unknown; export interface DatabaseExportResponse { /** * The current time-travel bookmark for your D1, used to poll for updates. Will not * change for the duration of the export task. */ at_bookmark?: string; /** * Only present when status = 'error'. Contains the error message. */ error?: string; /** * Logs since the last time you polled */ messages?: Array; /** * Only present when status = 'complete' */ result?: DatabaseExportResponse.Result; status?: 'complete' | 'error'; success?: boolean; type?: 'export'; } export declare namespace DatabaseExportResponse { /** * Only present when status = 'complete' */ interface Result { /** * The generated SQL filename. */ filename?: string; /** * The URL to download the exported SQL. Available for one hour. */ signed_url?: string; } } export interface DatabaseImportResponse { /** * The current time-travel bookmark for your D1, used to poll for updates. Will not * change for the duration of the import. Only returned if an import process is * currently running or recently finished. */ at_bookmark?: string; /** * Only present when status = 'error'. Contains the error message that prevented * the import from succeeding. */ error?: string; /** * Derived from the database ID and etag, to use in avoiding repeated uploads. Only * returned when for the 'init' action. */ filename?: string; /** * Logs since the last time you polled */ messages?: Array; /** * Only present when status = 'complete' */ result?: DatabaseImportResponse.Result; status?: 'complete' | 'error'; success?: boolean; type?: 'import'; /** * The R2 presigned URL to use for uploading. Only returned when for the 'init' * action. */ upload_url?: string; } export declare namespace DatabaseImportResponse { /** * Only present when status = 'complete' */ interface Result { /** * The time-travel bookmark if you need restore your D1 to directly after the * import succeeded. */ final_bookmark?: string; meta?: Result.Meta; /** * The total number of queries that were executed during the import. */ num_queries?: number; } namespace Result { interface Meta { /** * Denotes if the database has been altered in some way, like deleting rows. */ changed_db?: boolean; /** * Rough indication of how many rows were modified by the query, as provided by * SQLite's `sqlite3_total_changes()`. */ changes?: number; /** * The duration of the SQL query execution inside the database. Does not include * any network communication. */ duration?: number; /** * The row ID of the last inserted row in a table with an `INTEGER PRIMARY KEY` as * provided by SQLite. Tables created with `WITHOUT ROWID` do not populate this. */ last_row_id?: number; /** * Number of rows read during the SQL query execution, including indices (not all * rows are necessarily returned). */ rows_read?: number; /** * Number of rows written during the SQL query execution, including indices. */ rows_written?: number; /** * Denotes if the query has been handled by the database primary instance. */ served_by_primary?: boolean; /** * Region location hint of the database instance that handled the query. */ served_by_region?: 'WNAM' | 'ENAM' | 'WEUR' | 'EEUR' | 'APAC' | 'OC'; /** * Size of the database after the query committed, in bytes. */ size_after?: number; /** * Various durations for the query. */ timings?: Meta.Timings; } namespace Meta { /** * Various durations for the query. */ interface Timings { /** * The duration of the SQL query execution inside the database. Does not include * any network communication. */ sql_duration_ms?: number; } } } } export interface DatabaseRawResponse { meta?: DatabaseRawResponse.Meta; results?: DatabaseRawResponse.Results; success?: boolean; } export declare namespace DatabaseRawResponse { interface Meta { /** * Denotes if the database has been altered in some way, like deleting rows. */ changed_db?: boolean; /** * Rough indication of how many rows were modified by the query, as provided by * SQLite's `sqlite3_total_changes()`. */ changes?: number; /** * The duration of the SQL query execution inside the database. Does not include * any network communication. */ duration?: number; /** * The row ID of the last inserted row in a table with an `INTEGER PRIMARY KEY` as * provided by SQLite. Tables created with `WITHOUT ROWID` do not populate this. */ last_row_id?: number; /** * Number of rows read during the SQL query execution, including indices (not all * rows are necessarily returned). */ rows_read?: number; /** * Number of rows written during the SQL query execution, including indices. */ rows_written?: number; /** * Denotes if the query has been handled by the database primary instance. */ served_by_primary?: boolean; /** * Region location hint of the database instance that handled the query. */ served_by_region?: 'WNAM' | 'ENAM' | 'WEUR' | 'EEUR' | 'APAC' | 'OC'; /** * Size of the database after the query committed, in bytes. */ size_after?: number; /** * Various durations for the query. */ timings?: Meta.Timings; } namespace Meta { /** * Various durations for the query. */ interface Timings { /** * The duration of the SQL query execution inside the database. Does not include * any network communication. */ sql_duration_ms?: number; } } interface Results { columns?: Array; rows?: Array>; } } export interface DatabaseCreateParams { /** * Path param: Account identifier tag. */ account_id: string; /** * Body param: D1 database name. */ name: string; /** * Body param: Specify the region to create the D1 primary, if available. If this * option is omitted, the D1 will be created as close as possible to the current * user. */ primary_location_hint?: 'wnam' | 'enam' | 'weur' | 'eeur' | 'apac' | 'oc'; } export interface DatabaseUpdateParams { /** * Path param: Account identifier tag. */ account_id: string; /** * Body param: Configuration for D1 read replication. */ read_replication: DatabaseUpdateParams.ReadReplication; } export declare namespace DatabaseUpdateParams { /** * Configuration for D1 read replication. */ interface ReadReplication { /** * The read replication mode for the database. Use 'auto' to create replicas and * allow D1 automatically place them around the world, or 'disabled' to not use any * database replicas (it can take a few hours for all replicas to be deleted). */ mode: 'auto' | 'disabled'; } } export interface DatabaseListParams extends V4PagePaginationArrayParams { /** * Path param: Account identifier tag. */ account_id: string; /** * Query param: a database name to search for. */ name?: string; } export interface DatabaseDeleteParams { /** * Account identifier tag. */ account_id: string; } export interface DatabaseEditParams { /** * Path param: Account identifier tag. */ account_id: string; /** * Body param: Configuration for D1 read replication. */ read_replication?: DatabaseEditParams.ReadReplication; } export declare namespace DatabaseEditParams { /** * Configuration for D1 read replication. */ interface ReadReplication { /** * The read replication mode for the database. Use 'auto' to create replicas and * allow D1 automatically place them around the world, or 'disabled' to not use any * database replicas (it can take a few hours for all replicas to be deleted). */ mode: 'auto' | 'disabled'; } } export interface DatabaseExportParams { /** * Path param: Account identifier tag. */ account_id: string; /** * Body param: Specifies that you will poll this endpoint until the export * completes */ output_format: 'polling'; /** * Body param: To poll an in-progress export, provide the current bookmark * (returned by your first polling response) */ current_bookmark?: string; /** * Body param: */ dump_options?: DatabaseExportParams.DumpOptions; } export declare namespace DatabaseExportParams { interface DumpOptions { /** * Export only the table definitions, not their contents */ no_data?: boolean; /** * Export only each table's contents, not its definition */ no_schema?: boolean; /** * Filter the export to just one or more tables. Passing an empty array is the same * as not passing anything and means: export all tables. */ tables?: Array; } } export interface DatabaseGetParams { /** * Account identifier tag. */ account_id: string; } export type DatabaseImportParams = DatabaseImportParams.Init | DatabaseImportParams.Ingest | DatabaseImportParams.Poll; export declare namespace DatabaseImportParams { interface Init { /** * Path param: Account identifier tag. */ account_id: string; /** * Body param: Indicates you have a new SQL file to upload. */ action: 'init'; /** * Body param: Required when action is 'init' or 'ingest'. An md5 hash of the file * you're uploading. Used to check if it already exists, and validate its contents * before ingesting. */ etag: string; } interface Ingest { /** * Path param: Account identifier tag. */ account_id: string; /** * Body param: Indicates you've finished uploading to tell the D1 to start * consuming it */ action: 'ingest'; /** * Body param: An md5 hash of the file you're uploading. Used to check if it * already exists, and validate its contents before ingesting. */ etag: string; /** * Body param: The filename you have successfully uploaded. */ filename: string; } interface Poll { /** * Path param: Account identifier tag. */ account_id: string; /** * Body param: Indicates you've finished uploading to tell the D1 to start * consuming it */ action: 'poll'; /** * Body param: This identifies the currently-running import, checking its status. */ current_bookmark: string; } } export interface DatabaseQueryParams { /** * Path param: Account identifier tag. */ account_id: string; /** * Body param: Your SQL query. Supports multiple statements, joined by semicolons, * which will be executed as a batch. */ sql: string; /** * Body param: */ params?: Array; } export interface DatabaseRawParams { /** * Path param: Account identifier tag. */ account_id: string; /** * Body param: Your SQL query. Supports multiple statements, joined by semicolons, * which will be executed as a batch. */ sql: string; /** * Body param: */ params?: Array; } export declare namespace Database { export { type QueryResult as QueryResult, type DatabaseListResponse as DatabaseListResponse, type DatabaseDeleteResponse as DatabaseDeleteResponse, type DatabaseExportResponse as DatabaseExportResponse, type DatabaseImportResponse as DatabaseImportResponse, type DatabaseRawResponse as DatabaseRawResponse, DatabaseListResponsesV4PagePaginationArray as DatabaseListResponsesV4PagePaginationArray, QueryResultsSinglePage as QueryResultsSinglePage, DatabaseRawResponsesSinglePage as DatabaseRawResponsesSinglePage, type DatabaseCreateParams as DatabaseCreateParams, type DatabaseUpdateParams as DatabaseUpdateParams, type DatabaseListParams as DatabaseListParams, type DatabaseDeleteParams as DatabaseDeleteParams, type DatabaseEditParams as DatabaseEditParams, type DatabaseExportParams as DatabaseExportParams, type DatabaseGetParams as DatabaseGetParams, type DatabaseImportParams as DatabaseImportParams, type DatabaseQueryParams as DatabaseQueryParams, type DatabaseRawParams as DatabaseRawParams, }; } //# sourceMappingURL=database.d.ts.map