mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
Introduced a new timestamps plugin that allows the addition of `created_at` and `updated_at` fields to specified entities. Included tests to verify functionality, ensuring timestamps are correctly set on entity creation and updates. Updated the plugin index to export the new timestamps functionality.
11 lines
578 B
TypeScript
11 lines
578 B
TypeScript
export {
|
|
cloudflareImageOptimization,
|
|
type CloudflareImageOptimizationSchema,
|
|
type CloudflareImageOptimizationOptions,
|
|
} from "./cloudflare/image-optimization.plugin";
|
|
export { showRoutes, type ShowRoutesOptions } from "./dev/show-routes.plugin";
|
|
export { syncConfig, type SyncConfigOptions } from "./dev/sync-config.plugin";
|
|
export { syncTypes, type SyncTypesOptions } from "./dev/sync-types.plugin";
|
|
export { syncSecrets, type SyncSecretsOptions } from "./dev/sync-secrets.plugin";
|
|
export { timestamps, type TimestampsPluginOptions } from "./data/timestamps.plugin";
|