oksy 0.1.26 → 0.1.28

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oksy",
3
- "version": "0.1.26",
3
+ "version": "0.1.28",
4
4
  "description": "The OKSY framework",
5
5
  "main": "library.js",
6
6
  "typings": "./types/src/library.pub.d.ts",
@@ -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, };