@domu-ai/kiban-sdk 1.177.0 → 1.178.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/internal/client.d.ts +11 -0
- package/internal/schemas.d.ts +997 -942
- package/internal/schemas.js +8 -1
- package/package.json +1 -1
package/internal/client.d.ts
CHANGED
|
@@ -522,11 +522,22 @@ export type InternalToolsPostBodyMessageToolCallsItem = {
|
|
|
522
522
|
function: InternalToolsPostBodyMessageToolCallsItemFunction;
|
|
523
523
|
[key: string]: unknown;
|
|
524
524
|
};
|
|
525
|
+
export type InternalToolsPostBodyMessageArtifactMessagesItem = {
|
|
526
|
+
role: string;
|
|
527
|
+
message?: string;
|
|
528
|
+
content?: string;
|
|
529
|
+
[key: string]: unknown;
|
|
530
|
+
};
|
|
531
|
+
export type InternalToolsPostBodyMessageArtifact = {
|
|
532
|
+
messages?: InternalToolsPostBodyMessageArtifactMessagesItem[];
|
|
533
|
+
[key: string]: unknown;
|
|
534
|
+
};
|
|
525
535
|
export type InternalToolsPostBodyMessage = {
|
|
526
536
|
type: string;
|
|
527
537
|
call?: InternalToolsPostBodyMessageCall;
|
|
528
538
|
toolCallList?: InternalToolsPostBodyMessageToolCallListItem[];
|
|
529
539
|
toolCalls?: InternalToolsPostBodyMessageToolCallsItem[];
|
|
540
|
+
artifact?: InternalToolsPostBodyMessageArtifact;
|
|
530
541
|
[key: string]: unknown;
|
|
531
542
|
};
|
|
532
543
|
export type InternalToolsPostBody = {
|