@metorial-services/shuttle-client 1.0.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 +21 -0
- package/dist/clients/typescript/src/controller.d.ts +4826 -0
- package/dist/clients/typescript/src/controller.d.ts.map +1 -0
- package/dist/clients/typescript/src/index.d.ts +3 -0
- package/dist/clients/typescript/src/index.d.ts.map +1 -0
- package/dist/clients/typescript/src/live.d.ts +17 -0
- package/dist/clients/typescript/src/live.d.ts.map +1 -0
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +5100 -0
- package/dist/index.module.js +2 -0
- package/dist/index.module.js.map +1 -0
- package/dist/index.umd.js +2 -0
- package/dist/index.umd.js.map +1 -0
- package/package.json +45 -0
- package/src/controller.ts +5 -0
- package/src/index.ts +2 -0
- package/src/live.ts +47 -0
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Metorial Shuttle Client
|
|
2
|
+
|
|
3
|
+
A client library for interacting with the Metorial Shuttle platform using TypeScript.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```ts
|
|
8
|
+
import { createShuttleClient } from '@lowerdeck/Shuttle-client';
|
|
9
|
+
|
|
10
|
+
let Shuttle = createShuttleClient({
|
|
11
|
+
endpoint: '...'
|
|
12
|
+
});
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
This project is licensed under the Apache License 2.0.
|
|
18
|
+
|
|
19
|
+
<div align="center">
|
|
20
|
+
<sub>Built with ❤️ by <a href="https://metorial.com">Metorial</a></sub>
|
|
21
|
+
</div>
|