feat/FE/US-34/TASK-54-51-slicing-ui-client-side-validation-stock-adjustment

This commit is contained in:
randy-ar
2025-10-11 02:03:10 +07:00
parent 94a5ce5604
commit aa7b6581d9
12 changed files with 1094 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import {
InventoryAdjustment,
CreateInventoryAdjustmentPayload,
} from '@/types/api/inventory/adjustment';
import { BaseApiService } from './base';
export const inventoryAdjustmentApi = new BaseApiService<
InventoryAdjustment,
CreateInventoryAdjustmentPayload,
unknown
>('/inventory/adjustments');