@mitralab.io/sdk-core 0.2.0-beta.1 → 0.2.0-beta.3
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/contracts/README.md +5 -0
- package/contracts/manifest.json +6 -1
- package/contracts/v0.2.0-beta.3/sdk-parity.json +2902 -0
- package/dist/index.cjs +81 -0
- package/dist/index.d.cts +45 -1
- package/dist/index.d.ts +45 -1
- package/dist/index.js +74 -0
- package/package.json +1 -1
package/contracts/README.md
CHANGED
|
@@ -24,6 +24,11 @@ publishes.
|
|
|
24
24
|
|
|
25
25
|
## Versions
|
|
26
26
|
|
|
27
|
+
- `0.2.0-beta.3` carries the same parity surface as `0.2.0-beta.1`. It exists so a
|
|
28
|
+
consumer that pins the package version can pin a corpus with the same number:
|
|
29
|
+
the api key exchange contract added in that release is authentication, not a new
|
|
30
|
+
SDK operation, so no parity case changed.
|
|
31
|
+
|
|
27
32
|
- `0.1.0` covers the runtime surface: current user, entities, custom queries,
|
|
28
33
|
Function execution, and integration proxying.
|
|
29
34
|
- `0.2.0-beta.0` adds the builder tier: SQL batches and table listing, Data Source
|
package/contracts/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"contract": "SDK-PARITY-001",
|
|
3
|
-
"current": "0.2.0-beta.
|
|
3
|
+
"current": "0.2.0-beta.3",
|
|
4
4
|
"versions": [
|
|
5
5
|
{
|
|
6
6
|
"version": "0.1.0",
|
|
@@ -20,6 +20,11 @@
|
|
|
20
20
|
"version": "0.2.0-beta.1",
|
|
21
21
|
"path": "v0.2.0-beta.1/sdk-parity.json",
|
|
22
22
|
"sha256": "eb9515241cd092727ddb8cde3e3062df041a4c91f8226da04dc987b7c1053f05"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"version": "0.2.0-beta.3",
|
|
26
|
+
"path": "v0.2.0-beta.3/sdk-parity.json",
|
|
27
|
+
"sha256": "61b49a71457190173ee749e9603f5a7f8f226caabf6ad0a8fa94a66b683c4ec9"
|
|
23
28
|
}
|
|
24
29
|
]
|
|
25
30
|
}
|