@spytecgps/nova-orm 1.2.14 → 1.2.15-rc2

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.
@@ -0,0 +1,7 @@
1
+ export declare abstract class HapnBaseEntity<T> {
2
+ /**
3
+ * A reusable constructor to initialize entity properties from a partial object.
4
+ * @param partial - Partial object containing properties to assign to the entity.
5
+ */
6
+ constructor(partial?: Partial<T>);
7
+ }
@@ -1,7 +1,5 @@
1
- /// <reference types="node" />
2
- /// <reference types="node" />
3
1
  export declare class LiveLink {
4
- id: Buffer;
2
+ id: string;
5
3
  name: string;
6
4
  clientId: number;
7
5
  status: string;
@@ -14,4 +12,6 @@ export declare class LiveLink {
14
12
  modifiedAt: Date | null;
15
13
  modifiedBy: string | null;
16
14
  historyAccess: boolean;
15
+ generateDefaults(): void;
16
+ updateModifiedAt(): void;
17
17
  }