An inventory management app demonstratingDocumentation Index
Fetch the complete documentation index at: https://docs.usehasp.com/llms.txt
Use this file to discover all available pages before exploring further.
number and boolean fields, category filtering, and bulkUpdateRecords for stocktake adjustments.
Schema
Entity: Items — key:items
| Field | Type | Notes |
|---|---|---|
name | text | required |
sku | text | required |
category | select | electronics / furniture / supplies / other — required |
quantity | number | required, min: 0 |
unit_price | number | min: 0 |
location | text | |
is_low_stock | boolean | |
last_restocked | date | |
notes | textarea |
Key Patterns
Boolean Filter
Number Field Handling
Always convert form input strings to numbers before sending to the SDK — form inputs return strings even fortype="number":
Bulk Stocktake Adjustment
Update multiple items at once after a stocktake. Checkresult.error per batch to handle partial failures: