@modelhealth/sdk 0.1.0
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 +40 -0
- package/dist/index.d.ts +850 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1016 -0
- package/dist/index.js.map +1 -0
- package/dist/types.d.ts +458 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +204 -0
- package/dist/types.js.map +1 -0
- package/model_health_wasm.d.ts +112 -0
- package/model_health_wasm.js +1110 -0
- package/model_health_wasm_bg.wasm +0 -0
- package/model_health_wasm_bg.wasm.d.ts +45 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Model Health SDK
|
|
2
|
+
|
|
3
|
+
TypeScript/JavaScript SDK for biomechanical analysis from smartphone videos.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
```bash
|
|
7
|
+
npm install @modelhealth/sdk
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Quick Start
|
|
11
|
+
```typescript
|
|
12
|
+
import { ModelHealthService } from '@modelhealth/sdk';
|
|
13
|
+
|
|
14
|
+
const service = new ModelHealthService();
|
|
15
|
+
await service.login('user@example.com', 'password');
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Documentation
|
|
19
|
+
|
|
20
|
+
**Full API Documentation**: [docs.modelhealth.io](https://docs.modelhealth.io/typescript)
|
|
21
|
+
|
|
22
|
+
## Examples
|
|
23
|
+
|
|
24
|
+
See the [examples directory](https://github.com/model-health/model-health/tree/main/examples) in the GitHub repository for complete working implementations.
|
|
25
|
+
|
|
26
|
+
To run examples locally:
|
|
27
|
+
```bash
|
|
28
|
+
git clone https://github.com/model-health/model-health.git
|
|
29
|
+
cd model-health/examples
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Swift SDK
|
|
33
|
+
|
|
34
|
+
Looking for the Swift/iOS SDK? See the [main repository](https://github.com/model-health/model-health) for Swift Package Manager installation.
|
|
35
|
+
|
|
36
|
+
## Support
|
|
37
|
+
|
|
38
|
+
- **Issues**: [GitHub Issues](https://github.com/model-health/model-health/issues)
|
|
39
|
+
- **Documentation**: [docs.modelhealth.io](https://docs.modelhealth.io)
|
|
40
|
+
- **Email**: support@modelhealth.io
|