@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/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 the boot audit flags a wire-reachable query whose
351
- * `source` table carries a serverOnly column that its output declares.
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.