2025-09-01 10:24:46 +08:00
|
|
|
class ApiPath {
|
2025-09-01 18:20:05 +08:00
|
|
|
static const String sendValidationCode = "/v1/common/sendValidationCode";
|
2025-09-02 11:45:38 +08:00
|
|
|
static const String validationCodeLogin = "/v1/user/codeLogin";
|
|
|
|
|
static const String passwordLogin = "/v1/user/pwdLogin";
|
2025-09-10 17:58:07 +08:00
|
|
|
static const String allTeamList = "/v1/team/teamListAll";
|
|
|
|
|
static const String sceneList = "/v1/team/sceneList";
|
|
|
|
|
static const String createTeam = "/v1/team/createTeam";
|
2025-09-12 10:35:07 +08:00
|
|
|
static const String changeTeam = "/v1/team/changeTeam";
|
|
|
|
|
static const String bindTeamStarCloudAccount = "/v1/team/bindStarCloudAccount";
|
2025-09-12 15:25:36 +08:00
|
|
|
static const String updateTeamInfo = "/v1/team/updateTeam";
|
2025-09-25 11:53:48 +08:00
|
|
|
static const String getInviteInfo = "/v1/team/getInviteInfo";
|
2025-09-01 10:24:46 +08:00
|
|
|
}
|