@eigenpal/sdk 0.5.2 → 0.5.4
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/CHANGELOG.md +1 -1
- package/package.json +1 -1
- package/src/generated/types.gen.ts +4 -0
- package/src/telemetry.ts +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -185,6 +185,9 @@ export type AgentSummary = {
|
|
|
185
185
|
slug: string;
|
|
186
186
|
name: string;
|
|
187
187
|
description?: string | null;
|
|
188
|
+
sourceIntegrity?: 'healthy' | 'source_missing' | 'unregistered';
|
|
189
|
+
latestVersion?: string | null;
|
|
190
|
+
latestCommit?: string | null;
|
|
188
191
|
config?: {
|
|
189
192
|
[key: string]: unknown;
|
|
190
193
|
};
|
|
@@ -1497,6 +1500,7 @@ export type AgentsListData = {
|
|
|
1497
1500
|
search?: string;
|
|
1498
1501
|
limit?: number;
|
|
1499
1502
|
offset?: number;
|
|
1503
|
+
includeArchived?: boolean;
|
|
1500
1504
|
};
|
|
1501
1505
|
url: '/api/v1/agents';
|
|
1502
1506
|
};
|
package/src/telemetry.ts
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
export const SDK_LANGUAGE = 'typescript';
|
|
20
20
|
// Rewritten at publish time by scripts/render-sdk-versions.sh.
|
|
21
21
|
// Keep this string literal exactly stable — sed matches on it.
|
|
22
|
-
export const SDK_VERSION = '0.5.
|
|
22
|
+
export const SDK_VERSION = '0.5.4';
|
|
23
23
|
|
|
24
24
|
function detectRuntime(): string {
|
|
25
25
|
const g = globalThis as unknown as {
|