@dinanathdash/envault-sdk 1.0.2

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 ADDED
@@ -0,0 +1,43 @@
1
+ # Envault TypeScript SDK
2
+
3
+ `@dinanathdash/envault-sdk` provides the Envault agent interception client for secure mutation workflows with human approval gates.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @dinanathdash/envault-sdk
9
+ ```
10
+
11
+ ## Build (package-local)
12
+
13
+ ```bash
14
+ npm ci
15
+ npm run build
16
+ ```
17
+
18
+ ## Version and update commands
19
+
20
+ Check installed SDK version:
21
+
22
+ ```bash
23
+ npm ls @dinanathdash/envault-sdk
24
+ ```
25
+
26
+ Check latest published SDK version:
27
+
28
+ ```bash
29
+ npm view @dinanathdash/envault-sdk version
30
+ ```
31
+
32
+ Update SDK:
33
+
34
+ ```bash
35
+ npm install @dinanathdash/envault-sdk@latest
36
+ ```
37
+
38
+ Runtime behavior:
39
+ - SDK warns when a newer version is available.
40
+ - SDK can enforce a minimum supported version returned by the Envault server.
41
+
42
+ Release note:
43
+ - Package versioning and npm publication are managed by semantic-release workflows.