b2m-utils 0.0.42 → 0.0.43

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,10 @@
1
+ import Dates from "../Dates";
2
+ import Domain from "../Domain";
3
+ export type DomainDispatcher = {
4
+ id: number;
5
+ domainId: number;
6
+ dispatcherId: number;
7
+ domain?: Domain;
8
+ dispatcher?: Domain;
9
+ } & Dates;
10
+ export default DomainDispatcher;
@@ -10,6 +10,8 @@ export * from './Dates';
10
10
  export { default as Dates } from './Dates';
11
11
  export * from './Domain';
12
12
  export { default as Domain } from './Domain';
13
+ export * from './DomainDispatcher';
14
+ export { default as DomainDispatcher } from './DomainDispatcher';
13
15
  export * from './DomainDivision';
14
16
  export { default as DomainDivision } from './DomainDivision';
15
17
  export * from './DomainPriority';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.42",
3
+ "version": "0.0.43",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",