drizzle-kit 0.20.17-92ad3af → 0.20.17-94708c5

Sign up to get free protection for your applications and to get access to all the features.
@@ -13,13 +13,15 @@ type CustomDefault = {
13
13
  func: () => unknown;
14
14
  };
15
15
  export type Setup = {
16
- dialect: "pg" | "mysql" | "sqlite";
16
+ dialect: "postgresql" | "mysql" | "sqlite";
17
+ driver?: "aws-data-api";
17
18
  proxy: (params: ProxyParams) => Promise<any[] | any>;
18
19
  customDefaults: CustomDefault[];
19
20
  };
20
21
  export type ProxyParams = {
21
22
  sql: string;
22
23
  params: any[];
24
+ typings?: any[];
23
25
  mode: "array" | "object";
24
26
  method: "values" | "get" | "all" | "run" | "execute";
25
27
  };
@@ -47,5 +49,5 @@ export type Server = {
47
49
  cb: (err: Error | null, address: string) => void;
48
50
  }) => void;
49
51
  };
50
- export declare const prepareServer: ({ dialect, proxy, customDefaults }: Setup, app?: Hono) => Promise<Server>;
52
+ export declare const prepareServer: ({ dialect, driver, proxy, customDefaults }: Setup, app?: Hono) => Promise<Server>;
51
53
  export {};