@tstdl/base 0.92.56 → 0.92.57

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/orm/types.d.ts CHANGED
@@ -3,7 +3,7 @@ import type { boolean, date, doublePrecision, integer, jsonb, PgColumnBuilder, P
3
3
  import { Array, Integer } from '../schema/index.js';
4
4
  import type { AbstractConstructor, EnumerationObject, EnumerationValue, ObjectLiteral, UnionToTuple } from '../types.js';
5
5
  import type { GetTagMetadata, HasTag, Tagged, UnwrapTagged } from '../types/index.js';
6
- import { Column, Embedded, Index, PrimaryKey, References, Unique } from './decorators.js';
6
+ import { Column, Embedded, Encrypted, Index, PrimaryKey, References, Unique } from './decorators.js';
7
7
  import { Json, NumericDate, Timestamp, Uuid } from './schemas/index.js';
8
8
  import type { bytea } from './server/data-types/index.js';
9
9
  export type ColumnTypeTag = 'column';
@@ -27,4 +27,4 @@ export type NumericDate = Tagged<number, ColumnTypeTag, ReturnType<typeof date>>
27
27
  export type Timestamp = Tagged<number, ColumnTypeTag, ReturnType<typeof timestamp>>;
28
28
  export type Bytea = Tagged<Uint8Array, ColumnTypeTag, ReturnType<typeof bytea>>;
29
29
  export type Encrypted<T> = Tagged<T, ColumnTypeTag, ReturnType<typeof bytea>>;
30
- export { Array, Column, Embedded, Index, Integer, Json, NumericDate, PrimaryKey, References, Timestamp, Unique, Uuid };
30
+ export { Array, Column, Embedded, Encrypted, Index, Integer, Json, NumericDate, PrimaryKey, References, Timestamp, Unique, Uuid };
package/orm/types.js CHANGED
@@ -1,4 +1,4 @@
1
1
  import { Array, Integer } from '../schema/index.js';
2
- import { Column, Embedded, Index, PrimaryKey, References, Unique } from './decorators.js';
2
+ import { Column, Embedded, Encrypted, Index, PrimaryKey, References, Unique } from './decorators.js';
3
3
  import { Json, NumericDate, Timestamp, Uuid } from './schemas/index.js';
4
- export { Array, Column, Embedded, Index, Integer, Json, NumericDate, PrimaryKey, References, Timestamp, Unique, Uuid };
4
+ export { Array, Column, Embedded, Encrypted, Index, Integer, Json, NumericDate, PrimaryKey, References, Timestamp, Unique, Uuid };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tstdl/base",
3
- "version": "0.92.56",
3
+ "version": "0.92.57",
4
4
  "author": "Patrick Hein",
5
5
  "publishConfig": {
6
6
  "access": "public"