@voltro/database 0.17.0 → 0.19.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 +423 -0
- package/dist/index.d.ts +183 -5
- package/dist/index.js +424 -386
- package/dist/sql.d.ts +3 -8
- package/dist/sql.js +221 -221
- 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
|
/**
|
|
@@ -1073,12 +1074,6 @@ export declare interface IndexSnapshot {
|
|
|
1073
1074
|
readonly expression?: boolean;
|
|
1074
1075
|
}
|
|
1075
1076
|
|
|
1076
|
-
export declare const _internalCmp: (name: string) => (a: {
|
|
1077
|
-
name: string;
|
|
1078
|
-
}, b: {
|
|
1079
|
-
name: string;
|
|
1080
|
-
}) => number;
|
|
1081
|
-
|
|
1082
1077
|
/**
|
|
1083
1078
|
* Read the current shape of the connected database. Dispatched per
|
|
1084
1079
|
* dialect; supports postgres only.
|