law-common 8.8.2-beta.1 → 9.0.0
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.
|
@@ -8,19 +8,17 @@ export type IBillingEntityResponse = {
|
|
|
8
8
|
billing: IBillingApiEntity;
|
|
9
9
|
billingTimesheets: IBillingTimesheetApiEntity[];
|
|
10
10
|
};
|
|
11
|
-
export interface
|
|
11
|
+
export interface IUserEntityRelation {
|
|
12
12
|
users?: IUserApiEntity[];
|
|
13
13
|
}
|
|
14
|
-
export interface
|
|
14
|
+
export interface IProjectEntityRelation {
|
|
15
15
|
projects?: IProjectApiEntity[];
|
|
16
16
|
}
|
|
17
|
-
export interface
|
|
17
|
+
export interface IBillingRelatedEntities extends IUserEntityRelation, IProjectEntityRelation {
|
|
18
18
|
}
|
|
19
|
-
export interface IBillingEntitySearchResponse extends
|
|
19
|
+
export interface IBillingEntitySearchResponse extends IBillingRelatedEntities {
|
|
20
20
|
billings: IBillingEntityResponse[];
|
|
21
21
|
}
|
|
22
|
-
export interface IBillingEntitySearchResponseInclude extends IBillingRelationEntity {
|
|
23
|
-
}
|
|
24
22
|
export type IBillingFlowConfig = {
|
|
25
23
|
[key in BillingStatusEnum]?: {
|
|
26
24
|
actions: {
|