vintrace-sdk 0.0.6 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -17
- package/dist/index.cjs +1223 -186
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +186 -330
- package/dist/index.d.ts +186 -330
- package/dist/index.js +1224 -187
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
A TypeScript SDK for the Vintrace API.
|
|
4
4
|
|
|
5
5
|
> **Disclaimer**: This SDK is not affiliated with or endorsed by Vintrace. It is an independent, third-party project. Use at your own risk. Always refer to the official Vintrace API documentation. Provided as-is without warranties. Test thoroughly before using in production.
|
|
6
|
+
>
|
|
7
|
+
> **GitHub**: https://github.com/anomalyco/vintrace-sdk
|
|
6
8
|
|
|
7
9
|
---
|
|
8
10
|
|
|
@@ -193,23 +195,26 @@ type VintraceResult<T> =
|
|
|
193
195
|
|
|
194
196
|
### v7 Endpoints
|
|
195
197
|
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
|
199
|
-
|
|
200
|
-
|
|
|
201
|
-
|
|
|
202
|
-
|
|
|
203
|
-
|
|
|
204
|
-
|
|
|
205
|
-
|
|
|
206
|
-
|
|
|
207
|
-
|
|
|
208
|
-
|
|
|
209
|
-
|
|
|
210
|
-
|
|
|
211
|
-
|
|
|
212
|
-
|
|
|
198
|
+
> **Note**: v7 is still under development. Only a subset of endpoints are currently implemented. More coming soon.
|
|
199
|
+
|
|
200
|
+
| Module | Status | Methods |
|
|
201
|
+
|--------|--------|---------|
|
|
202
|
+
| Blocks | Partial | `getAll`, `get`, `post`, `patch` |
|
|
203
|
+
| Bookings | Ready | `post`, `deactivate` |
|
|
204
|
+
| VesselDetailsReport | Ready | `get` |
|
|
205
|
+
| Costs | Not started | `businessUnitTransactions` |
|
|
206
|
+
| Assessments | Not started | `getAll` |
|
|
207
|
+
| Vineyards | Not started | `post` |
|
|
208
|
+
| MaturitySamples | Not started | `post` |
|
|
209
|
+
| Parties | Not started | `getAll`, `post` |
|
|
210
|
+
| Shipments | Not started | `getAll` |
|
|
211
|
+
| BarrelTreatments | Not started | `getAll` |
|
|
212
|
+
| FruitIntakes | Not started | `post`, `updatePricing`, `updateMetrics` |
|
|
213
|
+
| BulkIntakes | Not started | `getAll`, `post`, `patch` |
|
|
214
|
+
| TrialBlends | Not started | `getAll` |
|
|
215
|
+
| WorkOrders | Not started | `getAll` |
|
|
216
|
+
| Tirage | Not started | `get`, `patch` |
|
|
217
|
+
| BarrelsMovements | Not started | `post` |
|
|
213
218
|
|
|
214
219
|
---
|
|
215
220
|
|