@milaboratories/pl-client 3.8.0 → 3.9.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/dist/core/capabilities.cjs.map +1 -1
- package/dist/core/capabilities.d.ts +1 -1
- package/dist/core/capabilities.js.map +1 -1
- package/dist/core/client.cjs +9 -0
- package/dist/core/client.cjs.map +1 -1
- package/dist/core/client.d.ts +6 -0
- package/dist/core/client.d.ts.map +1 -1
- package/dist/core/client.js +9 -0
- package/dist/core/client.js.map +1 -1
- package/dist/core/ll_client.cjs +28 -0
- package/dist/core/ll_client.cjs.map +1 -1
- package/dist/core/ll_client.d.ts +10 -0
- package/dist/core/ll_client.d.ts.map +1 -1
- package/dist/core/ll_client.js +28 -0
- package/dist/core/ll_client.js.map +1 -1
- package/dist/proto-grpc/github.com/milaboratory/pl/plapi/plapiproto/api.cjs.map +1 -1
- package/dist/proto-grpc/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts +3 -3
- package/dist/proto-grpc/github.com/milaboratory/pl/plapi/plapiproto/api.js.map +1 -1
- package/package.json +3 -3
- package/src/core/capabilities.ts +1 -1
- package/src/core/client.ts +10 -0
- package/src/core/ll_client.ts +36 -0
- package/src/core/unauth_client_branch.test.ts +1 -1
- package/src/proto-grpc/github.com/milaboratory/pl/plapi/plapiproto/api.ts +3 -3
|
@@ -1454,7 +1454,7 @@ interface ResourceAPI_Tree_Request {
|
|
|
1454
1454
|
/**
|
|
1455
1455
|
* Optional per-(resource, field) filter. Unset / nil means
|
|
1456
1456
|
* "keep all fields" (current Tree behavior). Servers advertise
|
|
1457
|
-
* support via "treeFilter:
|
|
1457
|
+
* support via "treeFilter:v2" in
|
|
1458
1458
|
* MaintenanceAPI.Ping.Response.capabilities; old servers ignore this
|
|
1459
1459
|
* field.
|
|
1460
1460
|
*
|
|
@@ -3547,13 +3547,13 @@ interface MaintenanceAPI_Ping_Response {
|
|
|
3547
3547
|
* per-token by the client:
|
|
3548
3548
|
* - Optimization hint. Client picks between a fast path and a
|
|
3549
3549
|
* fallback without probing by trial-and-error; missing tokens
|
|
3550
|
-
* just cause the fallback to run (e.g. "treeFilter:
|
|
3550
|
+
* just cause the fallback to run (e.g. "treeFilter:v2").
|
|
3551
3551
|
* - Install-time gate. Client refuses to install a block whose
|
|
3552
3552
|
* manifest declares a required capability the server doesn't
|
|
3553
3553
|
* advertise; missing tokens fail closed (e.g. "wasm:v1").
|
|
3554
3554
|
*
|
|
3555
3555
|
* Each entry is an opaque token "<feature>:<version>" (e.g.
|
|
3556
|
-
* "treeFilter:
|
|
3556
|
+
* "treeFilter:v2"). The field is unset on servers predating this
|
|
3557
3557
|
* mechanism, which the client treats as "no optional capabilities
|
|
3558
3558
|
* advertised" — fallback for hints, fail-closed for gates.
|
|
3559
3559
|
*
|