@elyx-code/project-logic-tree 0.0.6160 → 0.0.6161
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.
|
@@ -11,7 +11,7 @@ export interface IModuleInjection {
|
|
|
11
11
|
export interface IChangeSet<TSelf extends {
|
|
12
12
|
id: string;
|
|
13
13
|
type: EntityType;
|
|
14
|
-
} = EntityState, TGeneric extends {
|
|
14
|
+
} | null = EntityState, TGeneric extends {
|
|
15
15
|
id: string;
|
|
16
16
|
type: EntityType;
|
|
17
17
|
} = EntityState> {
|
|
@@ -23,7 +23,7 @@ export interface IChangeSet<TSelf extends {
|
|
|
23
23
|
export interface IRecordChangeSet<TSelf extends {
|
|
24
24
|
id: string;
|
|
25
25
|
type: EntityType;
|
|
26
|
-
} = EntityState, TGeneric extends {
|
|
26
|
+
} | null = EntityState, TGeneric extends {
|
|
27
27
|
id: string;
|
|
28
28
|
type: EntityType;
|
|
29
29
|
} = EntityState> {
|
|
@@ -277,7 +277,7 @@ export declare function getStateClassFromType(entityType: EntityType): typeof Bu
|
|
|
277
277
|
export declare function fromChangeSetToRecordChangeSet<TSelf extends {
|
|
278
278
|
id: string;
|
|
279
279
|
type: EntityType;
|
|
280
|
-
} = EntityState, TGeneric extends {
|
|
280
|
+
} | null = EntityState, TGeneric extends {
|
|
281
281
|
id: string;
|
|
282
282
|
type: EntityType;
|
|
283
283
|
} = EntityState>(changeSet: IChangeSet<TSelf, TGeneric>): IRecordChangeSet<TSelf, TGeneric>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6161",
|
|
4
4
|
"author": "Sergio Herrero",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",
|