feat: 新增单点登录回调页面

This commit is contained in:
xlsea
2025-04-24 17:36:38 +08:00
parent b31edb5f8c
commit c2818257dc
17 changed files with 207 additions and 10 deletions

View File

@ -594,5 +594,23 @@ declare namespace Api {
/** client list */
type ClientList = Api.Common.PaginatingQueryRecord<Client>;
/** social source */
type SocialSource =
| 'maxkey'
| 'topiam'
| 'qq'
| 'weibo'
| 'gitee'
| 'dingtalk'
| 'baidu'
| 'csdn'
| 'coding'
| 'oschina'
| 'alipay_wallet'
| 'wechat_open'
| 'wechat_mp'
| 'wechat_enterprise'
| 'gitlab';
}
}