@supabase/lite 0.6.1-next.3 → 0.6.1-next.5
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/STATUS.md +2 -0
- package/dist/cli/index.js +111 -108
- package/dist/cli/lib.js +38 -35
- package/dist/index.d.ts +6 -0
- package/dist/index.js +38 -38
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -146,6 +146,12 @@ interface DeparseOptions extends DeparserOptions {
|
|
|
146
146
|
/** Current DB introspection. Required for ALTER TABLE ops that need 12-step rebuild. */
|
|
147
147
|
introspection?: IntrospectResult;
|
|
148
148
|
functionResolution?: FunctionResolutionMode;
|
|
149
|
+
/**
|
|
150
|
+
* ColumnDef nodes whose `nextval(...)` default was stripped by `normalize.ts`
|
|
151
|
+
* (pg-delta serial/identity columns). Flagged here because the underlying
|
|
152
|
+
* type is plain `integer`/`bigint` — nothing else marks them serial.
|
|
153
|
+
*/
|
|
154
|
+
serialColumns?: WeakSet<object>;
|
|
149
155
|
}
|
|
150
156
|
|
|
151
157
|
declare function translatePostgresDdl(pgSql: string, options?: DeparseOptions): Promise<string>;
|