schema regen

This commit is contained in:
Roy Han
2026-04-01 13:17:29 -07:00
parent 26cca3ac99
commit 6071ffd3f0
7 changed files with 94 additions and 2 deletions

View File

@@ -3367,6 +3367,19 @@
},
"TurnCompletedNotification": {
"properties": {
"completedAt": {
"description": "Unix timestamp (in seconds) when the turn completed.",
"format": "int64",
"type": "integer"
},
"durationMs": {
"description": "Duration between turn start and completion in milliseconds, if known.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"threadId": {
"type": "string"
},
@@ -3375,6 +3388,7 @@
}
},
"required": [
"completedAt",
"threadId",
"turn"
],
@@ -3481,6 +3495,11 @@
},
"TurnStartedNotification": {
"properties": {
"createdAt": {
"description": "Unix timestamp (in seconds) when the turn started.",
"format": "int64",
"type": "integer"
},
"threadId": {
"type": "string"
},
@@ -3489,6 +3508,7 @@
}
},
"required": [
"createdAt",
"threadId",
"turn"
],

View File

@@ -14174,6 +14174,19 @@
"TurnCompletedNotification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"completedAt": {
"description": "Unix timestamp (in seconds) when the turn completed.",
"format": "int64",
"type": "integer"
},
"durationMs": {
"description": "Duration between turn start and completion in milliseconds, if known.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"threadId": {
"type": "string"
},
@@ -14182,6 +14195,7 @@
}
},
"required": [
"completedAt",
"threadId",
"turn"
],
@@ -14450,6 +14464,11 @@
"TurnStartedNotification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"createdAt": {
"description": "Unix timestamp (in seconds) when the turn started.",
"format": "int64",
"type": "integer"
},
"threadId": {
"type": "string"
},
@@ -14458,6 +14477,7 @@
}
},
"required": [
"createdAt",
"threadId",
"turn"
],

View File

@@ -12020,6 +12020,19 @@
"TurnCompletedNotification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"completedAt": {
"description": "Unix timestamp (in seconds) when the turn completed.",
"format": "int64",
"type": "integer"
},
"durationMs": {
"description": "Duration between turn start and completion in milliseconds, if known.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"threadId": {
"type": "string"
},
@@ -12028,6 +12041,7 @@
}
},
"required": [
"completedAt",
"threadId",
"turn"
],
@@ -12296,6 +12310,11 @@
"TurnStartedNotification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"createdAt": {
"description": "Unix timestamp (in seconds) when the turn started.",
"format": "int64",
"type": "integer"
},
"threadId": {
"type": "string"
},
@@ -12304,6 +12323,7 @@
}
},
"required": [
"createdAt",
"threadId",
"turn"
],

View File

@@ -1559,6 +1559,19 @@
}
},
"properties": {
"completedAt": {
"description": "Unix timestamp (in seconds) when the turn completed.",
"format": "int64",
"type": "integer"
},
"durationMs": {
"description": "Duration between turn start and completion in milliseconds, if known.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"threadId": {
"type": "string"
},
@@ -1567,6 +1580,7 @@
}
},
"required": [
"completedAt",
"threadId",
"turn"
],

View File

@@ -1559,6 +1559,11 @@
}
},
"properties": {
"createdAt": {
"description": "Unix timestamp (in seconds) when the turn started.",
"format": "int64",
"type": "integer"
},
"threadId": {
"type": "string"
},
@@ -1567,6 +1572,7 @@
}
},
"required": [
"createdAt",
"threadId",
"turn"
],

View File

@@ -3,4 +3,12 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { Turn } from "./Turn";
export type TurnCompletedNotification = { threadId: string, turn: Turn, };
export type TurnCompletedNotification = { threadId: string, turn: Turn,
/**
* Unix timestamp (in seconds) when the turn completed.
*/
completedAt: number,
/**
* Duration between turn start and completion in milliseconds, if known.
*/
durationMs: number | null, };

View File

@@ -3,4 +3,8 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { Turn } from "./Turn";
export type TurnStartedNotification = { threadId: string, turn: Turn, };
export type TurnStartedNotification = { threadId: string, turn: Turn,
/**
* Unix timestamp (in seconds) when the turn started.
*/
createdAt: number, };