@valtrix/sdk 0.0.1

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.
Files changed (3) hide show
  1. package/README.md +13 -0
  2. package/index.js +1 -0
  3. package/package.json +17 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # valtrix
2
+
3
+ The Valtrix SDK: a typed client and codegen CLI for the Valtrix data plane.
4
+
5
+ This package is under active development. The first usable release will provide:
6
+
7
+ ```sh
8
+ export VALTRIX_API_KEY=vlt_live_...
9
+ npm install valtrix
10
+ npx valtrix generate
11
+ ```
12
+
13
+ `valtrix generate` reads your published table schemas and emits a client typed against your columns.
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@valtrix/sdk",
3
+ "version": "0.0.1",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "description": "Valtrix SDK - typed client and codegen CLI for the Valtrix data plane (coming soon)",
8
+ "license": "UNLICENSED",
9
+ "main": "index.js",
10
+ "files": [
11
+ "index.js",
12
+ "README.md"
13
+ ],
14
+ "keywords": [
15
+ "valtrix"
16
+ ]
17
+ }