oksy 0.1.26 → 0.1.27
Sign up to get free protection for your applications and to get access to all the features.
- package/boot.js +20 -20
- package/library.js +1 -1
- package/package.json +1 -1
- package/types/src/library.d.ts +2 -2
- package/types/src/library.pub.d.ts +1 -1
package/package.json
CHANGED
package/types/src/library.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { BaseFile, BaseMembership, BaseUser, BaseWorkspace, Entity, One, GlobalEntity, isValid } from './ReactiveStore/BaseEntity';
|
1
|
+
import { BaseFile, BaseMembership, BaseUser, BaseWorkspace, Entity, One, GlobalEntity, isValid, Draft } from './ReactiveStore/BaseEntity';
|
2
2
|
import { Config } from './../types/config';
|
3
3
|
import { Many } from './ReactiveStore/Many';
|
4
4
|
import { Database } from './ReactiveStore/ReactiveStore';
|
@@ -8,4 +8,4 @@ import { hash } from './Helper/Hash';
|
|
8
8
|
import { googleIcons, type GoogleIconType } from './Frontend/GoogleIcons';
|
9
9
|
import { IValidator } from './ReactiveStore/Validators/IValidator';
|
10
10
|
import { sort } from './Helper/Sort';
|
11
|
-
export { Config, GlobalEntity, Entity, One, Many, BaseUser, BaseWorkspace, BaseMembership, BaseFile, BasePage, Database, seed, hash, googleIcons, GoogleIconType, IValidator, sort, isValid, };
|
11
|
+
export { Config, GlobalEntity, Entity, One, Many, BaseUser, BaseWorkspace, BaseMembership, BaseFile, BasePage, Database, seed, hash, googleIcons, GoogleIconType, IValidator, sort, isValid, Draft, };
|
@@ -53,4 +53,4 @@ declare class Database {
|
|
53
53
|
create<T extends MODULE_KEY>(moduleName: T): Draft<MODEL<T>>;
|
54
54
|
delete(model: any): void;
|
55
55
|
}
|
56
|
-
export { Config, GlobalEntity, Entity, One, Many, BaseUser, BaseWorkspace, BaseMembership, BaseFile, BasePage, Database, seed, hash, googleIcons, GoogleIconType, IValidator, sort, isValid, };
|
56
|
+
export { Config, GlobalEntity, Entity, One, Many, BaseUser, BaseWorkspace, BaseMembership, BaseFile, BasePage, Database, seed, hash, googleIcons, GoogleIconType, IValidator, sort, isValid, Draft, };
|