1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pub mod create_role;
pub mod create_staff_member;
pub mod create_permission;
pub mod create_user;
pub mod delete_staff_member;
pub mod delete_role;
pub mod get_company_owner;
pub mod get_company_informations;
pub mod get_list_permissions;
pub mod get_list_roles;
pub mod get_list_users;
pub mod get_menu_staff;
pub mod get_unassigned_staff;
pub mod get_staff_information;
pub mod get_my_account;
pub mod remove_assignment;
pub mod update_staff_member_role;
pub mod update_user;
pub mod update_my_account;
pub mod update_role;
pub mod export_customers;
pub mod import_customers;