feat: Upgrade to Astro with full PDPA compliance
PDPA Features: ✅ Cookie consent banner ✅ Consent logging API ✅ Admin dashboard ✅ Privacy Policy ✅ Terms & Conditions Technical: ✅ Astro 5.x + Tailwind v4 ✅ Docker on port 80 ✅ SQLite database ✅ 15 pages built Ready for Easypanel deployment.
This commit is contained in:
33
node_modules/@libsql/hrana-client/lib-esm/http/client.d.ts
generated
vendored
Normal file
33
node_modules/@libsql/hrana-client/lib-esm/http/client.d.ts
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
import type { ProtocolVersion, ProtocolEncoding } from "../client.js";
|
||||
import { Client } from "../client.js";
|
||||
import { HttpStream } from "./stream.js";
|
||||
export type Endpoint = {
|
||||
versionPath: string;
|
||||
pipelinePath: string;
|
||||
cursorPath: string | undefined;
|
||||
version: ProtocolVersion;
|
||||
encoding: ProtocolEncoding;
|
||||
};
|
||||
export declare const checkEndpoints: Array<Endpoint>;
|
||||
/** A client for the Hrana protocol over HTTP. */
|
||||
export declare class HttpClient extends Client {
|
||||
#private;
|
||||
/** @private */
|
||||
_endpointPromise: Promise<Endpoint>;
|
||||
/** @private */
|
||||
_endpoint: Endpoint | undefined;
|
||||
/** @private */
|
||||
constructor(url: URL, jwt: string | undefined, customFetch: unknown | undefined, remoteEncryptionKey?: string, protocolVersion?: ProtocolVersion);
|
||||
/** Get the protocol version supported by the server. */
|
||||
getVersion(): Promise<ProtocolVersion>;
|
||||
/** @private */
|
||||
_ensureVersion(minVersion: ProtocolVersion, feature: string): void;
|
||||
/** Open a {@link HttpStream}, a stream for executing SQL statements. */
|
||||
openStream(): HttpStream;
|
||||
/** @private */
|
||||
_streamClosed(stream: HttpStream): void;
|
||||
/** Close the client and all its streams. */
|
||||
close(): void;
|
||||
/** True if the client is closed. */
|
||||
get closed(): boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user