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:
30
node_modules/unstorage/drivers/azure-app-configuration.d.ts
generated
vendored
Normal file
30
node_modules/unstorage/drivers/azure-app-configuration.d.ts
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
import { AppConfigurationClient } from "@azure/app-configuration";
|
||||
export interface AzureAppConfigurationOptions {
|
||||
/**
|
||||
* Optional prefix for keys. This can be used to isolate keys from different applications in the same Azure App Configuration instance. E.g. "app01" results in keys like "app01:foo" and "app01:bar".
|
||||
* @default null
|
||||
*/
|
||||
prefix?: string;
|
||||
/**
|
||||
* Optional label for keys. If not provided, all keys will be created and listed without labels. This can be used to isolate keys from different environments in the same Azure App Configuration instance. E.g. "dev" results in keys like "foo" and "bar" with the label "dev".
|
||||
* @default '\0'
|
||||
*/
|
||||
label?: string;
|
||||
/**
|
||||
* Optional endpoint to use when connecting to Azure App Configuration. If not provided, the appConfigName option must be provided. If both are provided, the endpoint option takes precedence.
|
||||
* @default null
|
||||
*/
|
||||
endpoint?: string;
|
||||
/**
|
||||
* Optional name of the Azure App Configuration instance to connect to. If not provided, the endpoint option must be provided. If both are provided, the endpoint option takes precedence.
|
||||
* @default null
|
||||
*/
|
||||
appConfigName?: string;
|
||||
/**
|
||||
* Optional connection string to use when connecting to Azure App Configuration. If not provided, the endpoint option must be provided. If both are provided, the endpoint option takes precedence.
|
||||
* @default null
|
||||
*/
|
||||
connectionString?: string;
|
||||
}
|
||||
declare const _default: (opts: AzureAppConfigurationOptions | undefined) => import("..").Driver<AzureAppConfigurationOptions | undefined, AppConfigurationClient>;
|
||||
export default _default;
|
||||
Reference in New Issue
Block a user