b2m-utils 0.0.58 → 0.0.60

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
+ import Dates from "../Dates";
2
+ export type Application = {
3
+ id: number;
4
+ name: string;
5
+ description: string;
6
+ } & Dates;
7
+ export default Application;
@@ -0,0 +1,10 @@
1
+ import { Application } from "../Application";
2
+ import Dates from "../Dates";
3
+ export type ApplicationColumn = {
4
+ id: number;
5
+ applicationId: number;
6
+ name: string;
7
+ title: string;
8
+ application?: Application;
9
+ } & Dates;
10
+ export default ApplicationColumn;
@@ -1,5 +1,6 @@
1
1
  import Dates from "../Dates";
2
2
  import DomainUser from "../DomainUser";
3
+ import UserPermission from "../UserPermission";
3
4
  export type User = {
4
5
  id?: number;
5
6
  email: string;
@@ -8,5 +9,6 @@ export type User = {
8
9
  phone?: string;
9
10
  photo?: string;
10
11
  DomainUser?: DomainUser[];
12
+ UserPermission?: UserPermission[];
11
13
  } & Dates;
12
14
  export default User;
@@ -1,5 +1,9 @@
1
1
  export * from './AnyObject';
2
2
  export { default as AnyObject } from './AnyObject';
3
+ export * from './Application';
4
+ export { default as Application } from './Application';
5
+ export * from './ApplicationColumn';
6
+ export { default as ApplicationColumn } from './ApplicationColumn';
3
7
  export * from './Auth';
4
8
  export { default as Auth } from './Auth';
5
9
  export * from './ContainerType';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.58",
3
+ "version": "0.0.60",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",