b2m-utils 0.0.72 → 0.0.73

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.
@@ -1,4 +1,5 @@
1
1
  import Dates from "../Dates";
2
+ import DomainTypeValue from "../DomainTypeValue";
2
3
  import DomainUser from "../DomainUser";
3
4
  export type Domain = {
4
5
  id: number;
@@ -10,5 +11,6 @@ export type Domain = {
10
11
  logo?: string;
11
12
  deletedAt?: string;
12
13
  DomainUser: DomainUser[];
14
+ DomainTypeValue: DomainTypeValue[];
13
15
  } & Dates;
14
16
  export default Domain;
@@ -0,0 +1,10 @@
1
+ import Dates from "../Dates";
2
+ import Domain from "../Domain";
3
+ import DomainType from "../DomainType";
4
+ export type DomainTypeValue = {
5
+ domainId: number;
6
+ domainTypeId: number;
7
+ domainType?: DomainType;
8
+ domain?: Domain;
9
+ } & Dates;
10
+ export default DomainTypeValue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.72",
3
+ "version": "0.0.73",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",