1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
pub mod add_customer_address;
pub mod change_password;
pub mod check_company_order_authorization;
pub mod check_user;
pub mod confirm_account;
pub mod create_customer;
pub mod create_menu_group;
pub mod create_menu_subscriber;
pub mod create_user;
pub mod delete_customer;
pub mod delete_menu_group;
pub mod delete_menu_subscriber;
pub mod delete_user;
pub mod disable_user_device;
pub mod edit_customer_address;
pub mod enable_user_device;
pub mod forget_password;
pub mod get_account_steps;
pub mod get_authorized_ad_count;
pub mod get_authorized_menu_count;
pub mod get_company_informations;
pub mod get_list_customers;
pub mod get_list_menu_groups;
pub mod get_list_menu_subscribers;
pub mod get_list_users;
pub mod get_my_account;
pub mod get_my_account_settings;
pub mod get_user_by_email;
pub mod remove_customer_address;
pub mod reset_password;
pub mod send_email_newsletter;
pub mod signin;
pub mod signup_customer;
pub mod social_authentication;
pub mod update_customer;
pub mod update_menu_group;
pub mod update_menu_subscriber;
pub mod update_my_account;
pub mod update_my_account_settings;
pub mod update_user;
pub mod update_user_password;