@trudb/tru-common-lib 0.2.507 → 0.2.508
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.
|
@@ -25,8 +25,7 @@ export declare class TruDataChangeParser {
|
|
|
25
25
|
private dataChanged$;
|
|
26
26
|
onDataChanged(): Subject<TruDataChange>;
|
|
27
27
|
dataChanged(change: TruDataChange): void;
|
|
28
|
-
|
|
29
|
-
constructor(connection: any, appEnviroment: TruAppEnvironment, user: TruUser, dataContext: TruDataContext, globalDataContext: TruDataContext | null, entity: typeof TruEntityBase, tableName: string, addEntity: any, getLatestResults: any, getLatestQuery: any, contextFilters: [], expandPaths: Array<string>, isLoaded: () => boolean, modelTypeLookup: TruModelTypeLookup, modelPropertyLookup: TruModelPropertyLookup, destroyParser?: (() => void) | null);
|
|
28
|
+
constructor(connection: any, appEnviroment: TruAppEnvironment, user: TruUser, dataContext: TruDataContext, globalDataContext: TruDataContext | null, entity: typeof TruEntityBase, tableName: string, addEntity: any, getLatestResults: any, getLatestQuery: any, contextFilters: [], expandPaths: Array<string>, isLoaded: () => boolean, modelTypeLookup: TruModelTypeLookup, modelPropertyLookup: TruModelPropertyLookup);
|
|
30
29
|
private findEntityInCache;
|
|
31
30
|
private findEntityInGlobalCache;
|
|
32
31
|
private checkIfDateTime;
|
|
@@ -14,12 +14,11 @@ export declare class TruConnectionHub {
|
|
|
14
14
|
private modelTypeLookup;
|
|
15
15
|
private modelPropertyLookup;
|
|
16
16
|
private connection;
|
|
17
|
-
private parser;
|
|
18
17
|
constructor(dataContext: TruDataContext, appEnvironment: TruAppEnvironment, user: TruUser, modelTypeLookup: TruModelTypeLookup, modelPropertyLookup: TruModelPropertyLookup);
|
|
19
18
|
disconnect: () => void;
|
|
20
19
|
connect: () => void;
|
|
21
20
|
start: () => void;
|
|
22
|
-
subscribe: (dataContext: TruDataContext, entity: typeof TruEntityBase, tableName: string, addEntity: (newEntity: any) => void, getLatestResults: () => any, getLatestQuery: () => any, contextFilters: [], expandPaths: Array<string>, isLoaded: () => boolean
|
|
21
|
+
subscribe: (dataContext: TruDataContext, entity: typeof TruEntityBase, tableName: string, addEntity: (newEntity: any) => void, getLatestResults: () => any, getLatestQuery: () => any, contextFilters: [], expandPaths: Array<string>, isLoaded: () => boolean) => Subject<TruDataChange>;
|
|
23
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<TruConnectionHub, never>;
|
|
24
23
|
static ɵprov: i0.ɵɵInjectableDeclaration<TruConnectionHub>;
|
|
25
24
|
}
|