@stigmer/sdk 3.12.9 → 3.13.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/node.d.ts +1 -1
- package/package.json +2 -2
- package/provider-standing.d.ts +1 -1
- package/provider-standing.js +1 -1
- package/src/node.ts +1 -1
- package/src/provider-standing.ts +1 -1
package/node.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ export interface NodeClientConfig {
|
|
|
25
25
|
* - `"grpc"` is native gRPC over HTTP/2. Use it for in-cluster,
|
|
26
26
|
* server-to-server callers that dial a gRPC endpoint directly — a
|
|
27
27
|
* Java gRPC server (like stigmer-service on its internal address)
|
|
28
|
-
* rejects gRPC-Web content types with HTTP 415, and the OSS
|
|
28
|
+
* rejects gRPC-Web content types with HTTP 415, and the OSS server
|
|
29
29
|
* serves native gRPC on the same listener, so `"grpc"` is correct
|
|
30
30
|
* against both. This mirrors the runner's own backend client
|
|
31
31
|
* (`backend/services/runner/src/client/stigmer-client.ts`), the other
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stigmer/sdk",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.0",
|
|
4
4
|
"description": "Stigmer TypeScript SDK — typed API client for all Stigmer platform resources",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"@bufbuild/protobuf": "^2.0.0",
|
|
47
47
|
"@connectrpc/connect-node": "^2.0.0",
|
|
48
|
-
"@stigmer/protos": "3.
|
|
48
|
+
"@stigmer/protos": "3.13.0"
|
|
49
49
|
}
|
|
50
50
|
}
|
package/provider-standing.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { type ProviderStandingView } from "@stigmer/protos/ai/stigmer/platform/p
|
|
|
7
7
|
* account health: the latest canary-probe verdict per provider (status,
|
|
8
8
|
* HTTP status, latency, bounded error summary, probe time) recorded by
|
|
9
9
|
* the hourly standing probe. Requires `can_view_provider_standing` on
|
|
10
|
-
* `platform:stigmer`. Cloud-only — the OSS
|
|
10
|
+
* `platform:stigmer`. Cloud-only — the OSS server does not implement
|
|
11
11
|
* this controller.
|
|
12
12
|
*/
|
|
13
13
|
export declare class ProviderStandingClient {
|
package/provider-standing.js
CHANGED
|
@@ -10,7 +10,7 @@ import { wrapError } from "./gen/errors.js";
|
|
|
10
10
|
* account health: the latest canary-probe verdict per provider (status,
|
|
11
11
|
* HTTP status, latency, bounded error summary, probe time) recorded by
|
|
12
12
|
* the hourly standing probe. Requires `can_view_provider_standing` on
|
|
13
|
-
* `platform:stigmer`. Cloud-only — the OSS
|
|
13
|
+
* `platform:stigmer`. Cloud-only — the OSS server does not implement
|
|
14
14
|
* this controller.
|
|
15
15
|
*/
|
|
16
16
|
export class ProviderStandingClient {
|
package/src/node.ts
CHANGED
|
@@ -42,7 +42,7 @@ export interface NodeClientConfig {
|
|
|
42
42
|
* - `"grpc"` is native gRPC over HTTP/2. Use it for in-cluster,
|
|
43
43
|
* server-to-server callers that dial a gRPC endpoint directly — a
|
|
44
44
|
* Java gRPC server (like stigmer-service on its internal address)
|
|
45
|
-
* rejects gRPC-Web content types with HTTP 415, and the OSS
|
|
45
|
+
* rejects gRPC-Web content types with HTTP 415, and the OSS server
|
|
46
46
|
* serves native gRPC on the same listener, so `"grpc"` is correct
|
|
47
47
|
* against both. This mirrors the runner's own backend client
|
|
48
48
|
* (`backend/services/runner/src/client/stigmer-client.ts`), the other
|
package/src/provider-standing.ts
CHANGED
|
@@ -14,7 +14,7 @@ import { wrapError } from "./gen/errors.js";
|
|
|
14
14
|
* account health: the latest canary-probe verdict per provider (status,
|
|
15
15
|
* HTTP status, latency, bounded error summary, probe time) recorded by
|
|
16
16
|
* the hourly standing probe. Requires `can_view_provider_standing` on
|
|
17
|
-
* `platform:stigmer`. Cloud-only — the OSS
|
|
17
|
+
* `platform:stigmer`. Cloud-only — the OSS server does not implement
|
|
18
18
|
* this controller.
|
|
19
19
|
*/
|
|
20
20
|
export class ProviderStandingClient {
|