chore(web): generate API functions with a single argument (#2568)

This commit is contained in:
Sergey Kondrikov 2023-05-28 04:52:22 +03:00 committed by GitHub
parent a460940430
commit 6c6c5ef651
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
65 changed files with 1913 additions and 491 deletions

View file

@ -10,7 +10,7 @@
const deleteUser = async () => {
try {
const deletedUser = await api.userApi.deleteUser(user.id);
const deletedUser = await api.userApi.deleteUser({ userId: user.id });
if (deletedUser.data.deletedAt != null) {
dispatch('user-delete-success');
} else {

View file

@ -102,7 +102,7 @@
const title = jobDetails[jobId]?.title;
try {
const { data } = await api.jobApi.sendJobCommand(jobId, jobCommand);
const { data } = await api.jobApi.sendJobCommand({ jobId, jobCommandDto: jobCommand });
jobs[jobId] = data;
switch (jobCommand.command) {

View file

@ -8,7 +8,7 @@
const dispatch = createEventDispatcher();
const restoreUser = async () => {
const restoredUser = await api.userApi.restoreUser(user.id);
const restoredUser = await api.userApi.restoreUser({ userId: user.id });
if (restoredUser.data.deletedAt == null) dispatch('user-restore-success');
else dispatch('user-restore-fail');
};

View file

@ -28,8 +28,10 @@
const { data: configs } = await api.systemConfigApi.getConfig();
const result = await api.systemConfigApi.updateConfig({
...configs,
ffmpeg: ffmpegConfig
systemConfigDto: {
...configs,
ffmpeg: ffmpegConfig
}
});
ffmpegConfig = { ...result.data.ffmpeg };

View file

@ -73,8 +73,10 @@
}
const { data: updated } = await api.systemConfigApi.updateConfig({
...current,
oauth: oauthConfig
systemConfigDto: {
...current,
oauth: oauthConfig
}
});
oauthConfig = { ...updated.oauth };

View file

@ -48,8 +48,10 @@
}
const { data: updated } = await api.systemConfigApi.updateConfig({
...current,
passwordLogin: passwordLoginConfig
systemConfigDto: {
...current,
passwordLogin: passwordLoginConfig
}
});
passwordLoginConfig = { ...updated.passwordLogin };

View file

@ -97,8 +97,10 @@
const { data: currentConfig } = await api.systemConfigApi.getConfig();
const result = await api.systemConfigApi.updateConfig({
...currentConfig,
storageTemplate: storageConfig
systemConfigDto: {
...currentConfig,
storageTemplate: storageConfig
}
});
storageConfig.template = result.data.storageTemplate.template;