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.
Files changed (3) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
  3. 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: string;
685
- recursive: boolean;
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
@@ -2,7 +2,7 @@
2
2
  "name": "spooder",
3
3
  "author": "Kruithne <kruithne@gmail.com>",
4
4
  "type": "module",
5
- "version": "6.1.0",
5
+ "version": "6.1.1",
6
6
  "module": "./src/api.ts",
7
7
  "bin": {
8
8
  "spooder": "./src/cli.ts"
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: string;
2118
- recursive: boolean;
2119
- throw_on_skip: boolean;
2117
+ schema_table?: string;
2118
+ recursive?: boolean;
2120
2119
  };
2121
2120
 
2122
2121
  type TableRevision = {