react-luminus-components 1.5.6 → 1.5.7

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,10 +1,9 @@
1
- import { NameIdIntModel } from 'react-luminus-components/types';
2
- import { default as EmployeeSmallModel } from '../employee/EmployeeSmallModel';
1
+ import { default as NameIdIntModel } from '../../types/NameIdIntModel';
3
2
 
4
3
  export default interface ApprovalDelegationModel {
5
4
  id: number | null;
6
- employee: EmployeeSmallModel | null;
7
- delegate: EmployeeSmallModel | null;
5
+ employee: NameIdIntModel | null;
6
+ delegate: NameIdIntModel | null;
8
7
  dateFrom: string | null;
9
8
  dateTo: string | null;
10
9
  approval: NameIdIntModel | null;
@@ -1,10 +1,10 @@
1
- import { default as EmployeeSmallModel } from '../employee/EmployeeSmallModel';
1
+ import { default as NameIdIntModel } from '../../types/NameIdIntModel';
2
2
  import { default as ApprovalState } from './ApprovalState';
3
3
 
4
4
  export default interface ApprovalPersonModel {
5
5
  id: number;
6
- approver: EmployeeSmallModel;
7
- delegatedApprover: EmployeeSmallModel;
6
+ approver: NameIdIntModel;
7
+ delegatedApprover: NameIdIntModel;
8
8
  state: ApprovalState;
9
9
  responseDate: string | null;
10
10
  automaticApproval: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-luminus-components",
3
- "version": "1.5.6",
3
+ "version": "1.5.7",
4
4
  "description": "Library of React Components reusable in Luminus projects (Fleetman, CAFM)",
5
5
  "type": "module",
6
6
  "repository": {