@stacksjs/database 0.72.98 → 0.72.99

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.
@@ -1,5 +1,6 @@
1
1
  import { indexSqlForDialect } from './dialect';
2
2
  import { sqlHelpers } from './sql-helpers';
3
+ import type { TraitTableName } from '@stacksjs/types';
3
4
  /**
4
5
  * The tables {@link migrateTraitTables} owns.
5
6
  *
@@ -7,7 +8,7 @@ import { sqlHelpers } from './sql-helpers';
7
8
  * `drivers/defaults/traits.ts` drop exactly these, so a table added here is
8
9
  * dropped by `migrate:fresh` without a second list to remember.
9
10
  */
10
- export declare function traitTableNames(): string[];
11
+ export declare function traitTableNames(): TraitTableName[];
11
12
  /**
12
13
  * `commentables` — comments attached polymorphically to an owning model.
13
14
  * `commentables_id` + `commentables_type` identify the owner (e.g. 123 /
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@stacksjs/database",
3
3
  "type": "module",
4
4
  "sideEffects": false,
5
- "version": "0.72.98",
5
+ "version": "0.72.99",
6
6
  "description": "The Stacks database integration.",
7
7
  "author": "Chris Breuer",
8
8
  "contributors": [
@@ -60,22 +60,22 @@
60
60
  "prepublishOnly": "bun run build"
61
61
  },
62
62
  "dependencies": {
63
- "@stacksjs/faker": "^0.72.98",
64
- "@stacksjs/query-builder": "^0.72.98",
63
+ "@stacksjs/faker": "^0.72.99",
64
+ "@stacksjs/query-builder": "^0.72.99",
65
65
  "@stacksjs/ts-validation": "^0.5.6",
66
66
  "bun-query-builder": "^0.2.53",
67
67
  "dynamodb-tooling": "^0.3.2"
68
68
  },
69
69
  "devDependencies": {
70
- "@stacksjs/cli": "0.72.98",
71
- "@stacksjs/config": "0.72.98",
72
- "@stacksjs/logging": "0.72.98",
73
- "@stacksjs/router": "0.72.98",
70
+ "@stacksjs/cli": "0.72.99",
71
+ "@stacksjs/config": "0.72.99",
72
+ "@stacksjs/logging": "0.72.99",
73
+ "@stacksjs/router": "0.72.99",
74
74
  "better-dx": "^0.2.24",
75
- "@stacksjs/path": "0.72.98",
76
- "@stacksjs/query-builder": "0.72.98",
77
- "@stacksjs/storage": "0.72.98",
78
- "@stacksjs/strings": "0.72.98",
79
- "@stacksjs/utils": "0.72.98"
75
+ "@stacksjs/path": "0.72.99",
76
+ "@stacksjs/query-builder": "0.72.99",
77
+ "@stacksjs/storage": "0.72.99",
78
+ "@stacksjs/strings": "0.72.99",
79
+ "@stacksjs/utils": "0.72.99"
80
80
  }
81
81
  }