@saritasa/crm-delmar-core-sdk 0.1.16 → 0.1.17
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.
- package/README.md +2 -2
- package/model/who-am-i.dto.d.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/model/who-am-i.dto.d.ts
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
10
|
import { RoleEditPermissionDto } from "./role-edit-permission.dto";
|
|
11
|
+
import { SimpleBranchDto } from "./simple-branch.dto";
|
|
11
12
|
/**
|
|
12
13
|
* Serializer for user to get information about themselves.
|
|
13
14
|
*/
|
|
@@ -19,6 +20,7 @@ export interface WhoAmIDto {
|
|
|
19
20
|
department: number;
|
|
20
21
|
branch: number;
|
|
21
22
|
permissions: Array<RoleEditPermissionDto>;
|
|
23
|
+
readonly ceo_branches_data: Array<SimpleBranchDto>;
|
|
22
24
|
/**
|
|
23
25
|
* Designates whether the user can log into this admin site.
|
|
24
26
|
*/
|
package/package.json
CHANGED