Update subscription.ts

This commit is contained in:
Egor
2026-01-31 20:31:01 +03:00
committed by GitHub
parent 562376bb11
commit 01e3c7b042

View File

@@ -98,6 +98,11 @@ export const subscriptionApi = {
return response.data;
},
// Save devices cart for later purchase after top-up
saveDevicesCart: async (devices: number): Promise<void> => {
await apiClient.post('/cabinet/subscription/devices/save-cart', { devices });
},
// Update autopay settings
updateAutopay: async (
enabled: boolean,