@eigenpal/sdk 0.6.1 → 0.6.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/package.json +1 -1
- package/src/generated/types.gen.ts +8 -0
- package/src/telemetry.ts +1 -1
package/package.json
CHANGED
|
@@ -216,6 +216,14 @@ export type ListAgentRunsResponse = {
|
|
|
216
216
|
export type AgentExecutionSummary = {
|
|
217
217
|
id: string;
|
|
218
218
|
status: ExecutionStatus;
|
|
219
|
+
triggerType?: string | null;
|
|
220
|
+
triggeredBy?: {
|
|
221
|
+
id: string;
|
|
222
|
+
name?: string | null;
|
|
223
|
+
email: string;
|
|
224
|
+
} | null;
|
|
225
|
+
emailSubject?: string | null;
|
|
226
|
+
emailFrom?: string | null;
|
|
219
227
|
model?: string | null;
|
|
220
228
|
output?: unknown | null;
|
|
221
229
|
schemaValid?: boolean | null;
|
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.6.
|
|
22
|
+
export const SDK_VERSION = '0.6.2';
|
|
23
23
|
|
|
24
24
|
function detectRuntime(): string {
|
|
25
25
|
const g = globalThis as unknown as {
|