b2m-utils 0.0.74 → 0.0.75
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 DomainApplication from "../DomainApplication";
|
|
2
3
|
import DomainTypeValue from "../DomainTypeValue";
|
|
3
4
|
import DomainUser from "../DomainUser";
|
|
4
5
|
export type Domain = {
|
|
@@ -12,5 +13,6 @@ export type Domain = {
|
|
|
12
13
|
deletedAt?: string;
|
|
13
14
|
DomainUser: DomainUser[];
|
|
14
15
|
DomainTypeValue: DomainTypeValue[];
|
|
16
|
+
DomainApplication?: DomainApplication[];
|
|
15
17
|
} & Dates;
|
|
16
18
|
export default Domain;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import Application from "../Application";
|
|
2
|
+
import Dates from "../Dates";
|
|
3
|
+
import Domain from "../Domain";
|
|
4
|
+
export type DomainApplication = {
|
|
5
|
+
id: number;
|
|
6
|
+
domainId: number;
|
|
7
|
+
applicationId: number;
|
|
8
|
+
application?: Application;
|
|
9
|
+
domain?: Domain;
|
|
10
|
+
} & Dates;
|
|
11
|
+
export default DomainApplication;
|
package/build/types/index.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ export * from './Dates';
|
|
|
14
14
|
export { default as Dates } from './Dates';
|
|
15
15
|
export * from './Domain';
|
|
16
16
|
export { default as Domain } from './Domain';
|
|
17
|
+
export * from './DomainApplication';
|
|
18
|
+
export { default as DomainApplication } from './DomainApplication';
|
|
17
19
|
export * from './DomainConfiguration';
|
|
18
20
|
export { default as DomainConfiguration } from './DomainConfiguration';
|
|
19
21
|
export * from './DomainDispatcher';
|