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
| /* eslint-disable */
| // @ts-ignore
| import { request } from '@/utils/request';
|
| /** 获取阿里云OSS授权信息 GET /api/user/auth/getAliyunOSSAcs */
| export async function getAliyunOSSAcs(
| // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
| params: API.APIgetAliyunOSSAcsParams,
| options?: API.RequestConfig
| ) {
| return request<API.GetAliyunOSSAcsQueryResult>('/api/user/auth/getAliyunOSSAcs', {
| method: 'GET',
| params: {
| ...params,
| query: undefined,
| ...params['query'],
| },
| ...(options || {}),
| });
| }
|
| /** 密码登录 POST /api/user/auth/passwordLogin */
| export async function passwordLogin(body: API.PasswordLoginCommand, options?: API.RequestConfig) {
| return request<API.PasswordLoginCommandCallback>('/api/user/auth/passwordLogin', {
| method: 'POST',
| headers: {
| 'Content-Type': 'application/json-patch+json',
| },
| data: body,
| ...(options || {}),
| });
| }
|
|