zhengyiming
23 小时以前 5df1e0cdf6bfd9ee9eeeebf2f04887442964efd4
packages/services/apiV2/user.ts
@@ -112,3 +112,18 @@
    ...(options || {}),
  });
}
/** 同步运营用户 POST /api/user/user/syncOperationUser */
export async function syncOperationUser(
  body: API.SyncOperationUserCommand,
  options?: API.RequestConfig
) {
  return request<string>('/api/user/user/syncOperationUser', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json-patch+json',
    },
    data: body,
    ...(options || {}),
  });
}