spooder 6.1.0 → 6.1.1
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/README.md +2 -2
- package/package.json +1 -1
- package/src/api.ts +2 -3
package/README.md
CHANGED
|
@@ -681,8 +681,8 @@ db_set_serialize<T extends string>(set: Iterable<T> | null): string;
|
|
|
681
681
|
|
|
682
682
|
// database schema
|
|
683
683
|
type SchemaOptions = {
|
|
684
|
-
schema_table
|
|
685
|
-
recursive
|
|
684
|
+
schema_table?: string;
|
|
685
|
+
recursive?: boolean;
|
|
686
686
|
};
|
|
687
687
|
|
|
688
688
|
db_get_schema_revision(db: SQL): Promise<number|null>;
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -2114,9 +2114,8 @@ export function http_serve(port: number, hostname?: string) {
|
|
|
2114
2114
|
|
|
2115
2115
|
// region db
|
|
2116
2116
|
type SchemaOptions = {
|
|
2117
|
-
schema_table
|
|
2118
|
-
recursive
|
|
2119
|
-
throw_on_skip: boolean;
|
|
2117
|
+
schema_table?: string;
|
|
2118
|
+
recursive?: boolean;
|
|
2120
2119
|
};
|
|
2121
2120
|
|
|
2122
2121
|
type TableRevision = {
|