feat: Add complete PDPA compliance pages
- Admin dashboard (/admin/consent-logs) with password auth - Consent API (/api/consent) with SQLite + IP hashing - Privacy Policy (Thai) - PDPA Section 36 compliant - Terms & Conditions (Thai) - 9 standard clauses - .env.example template with Umami placeholder All pages preserve current design system.
This commit is contained in:
32
dealplustech-astro/node_modules/drizzle-orm/errors.js
generated
vendored
Normal file
32
dealplustech-astro/node_modules/drizzle-orm/errors.js
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
import { entityKind } from "./entity.js";
|
||||
class DrizzleError extends Error {
|
||||
static [entityKind] = "DrizzleError";
|
||||
constructor({ message, cause }) {
|
||||
super(message);
|
||||
this.name = "DrizzleError";
|
||||
this.cause = cause;
|
||||
}
|
||||
}
|
||||
class DrizzleQueryError extends Error {
|
||||
constructor(query, params, cause) {
|
||||
super(`Failed query: ${query}
|
||||
params: ${params}`);
|
||||
this.query = query;
|
||||
this.params = params;
|
||||
this.cause = cause;
|
||||
Error.captureStackTrace(this, DrizzleQueryError);
|
||||
if (cause) this.cause = cause;
|
||||
}
|
||||
}
|
||||
class TransactionRollbackError extends DrizzleError {
|
||||
static [entityKind] = "TransactionRollbackError";
|
||||
constructor() {
|
||||
super({ message: "Rollback" });
|
||||
}
|
||||
}
|
||||
export {
|
||||
DrizzleError,
|
||||
DrizzleQueryError,
|
||||
TransactionRollbackError
|
||||
};
|
||||
//# sourceMappingURL=errors.js.map
|
||||
Reference in New Issue
Block a user