@voltro/database 0.18.0 → 0.20.0
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/CHANGELOG.md +245 -3
- package/dist/index.d.ts +209 -4
- package/dist/index.js +490 -441
- package/dist/sql.d.ts +3 -2
- package/dist/sql.js +327 -327
- package/package.json +2 -2
package/dist/sql.d.ts
CHANGED
|
@@ -347,8 +347,9 @@ declare interface ColumnDefinition<TsType, Type extends ColumnType = ColumnType,
|
|
|
347
347
|
* but not encrypted; a private note the owner may read is encrypted but not
|
|
348
348
|
* serverOnly. The default is exposed to BOTH server and client; `.serverOnly()`
|
|
349
349
|
* opts a column OUT of the client. The table-aware read paths (`crud.*`) strip
|
|
350
|
-
* it automatically, and
|
|
351
|
-
*
|
|
350
|
+
* it automatically, and an audit flags a wire-reachable query whose `source`
|
|
351
|
+
* table carries a serverOnly column that its output declares. What that audit
|
|
352
|
+
* COSTS is per command — see `serverOnly()` below for the matrix.
|
|
352
353
|
*/
|
|
353
354
|
readonly serverOnly?: boolean;
|
|
354
355
|
/**
|