postgresdk 0.15.1 → 0.15.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3220,7 +3220,7 @@ function emitClientIndex(tables, useJsExtensions) {
|
|
|
3220
3220
|
* To make changes, modify your schema or configuration and regenerate.
|
|
3221
3221
|
*/
|
|
3222
3222
|
`;
|
|
3223
|
-
out += `import {
|
|
3223
|
+
out += `import type { AuthConfig } from "./base-client${ext}";
|
|
3224
3224
|
`;
|
|
3225
3225
|
for (const t of tables) {
|
|
3226
3226
|
out += `import { ${pascal(t.name)}Client } from "./${t.name}${ext}";
|
package/dist/index.js
CHANGED
|
@@ -2394,7 +2394,7 @@ function emitClientIndex(tables, useJsExtensions) {
|
|
|
2394
2394
|
* To make changes, modify your schema or configuration and regenerate.
|
|
2395
2395
|
*/
|
|
2396
2396
|
`;
|
|
2397
|
-
out += `import {
|
|
2397
|
+
out += `import type { AuthConfig } from "./base-client${ext}";
|
|
2398
2398
|
`;
|
|
2399
2399
|
for (const t of tables) {
|
|
2400
2400
|
out += `import { ${pascal(t.name)}Client } from "./${t.name}${ext}";
|