@nikcli-ai/sdk 1.169.0 → 1.171.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/dist/v2/gen/types.gen.d.ts +19 -0
- package/package.json +1 -1
|
@@ -3449,6 +3449,24 @@ export type MobileSessionCreateInput = {
|
|
|
3449
3449
|
github?: SessionGithub;
|
|
3450
3450
|
executionTarget?: MobileExecutionTarget;
|
|
3451
3451
|
};
|
|
3452
|
+
export type MobileArtifact = {
|
|
3453
|
+
id: string;
|
|
3454
|
+
title: string;
|
|
3455
|
+
description?: string;
|
|
3456
|
+
filename: string;
|
|
3457
|
+
contentType: string;
|
|
3458
|
+
kind: "html" | "markdown" | "image" | "video" | "text";
|
|
3459
|
+
url: string;
|
|
3460
|
+
viewerUrl: string;
|
|
3461
|
+
previewUrl: string;
|
|
3462
|
+
version: number;
|
|
3463
|
+
sessionID: string;
|
|
3464
|
+
size: number;
|
|
3465
|
+
time: {
|
|
3466
|
+
created: number;
|
|
3467
|
+
updated: number;
|
|
3468
|
+
};
|
|
3469
|
+
};
|
|
3452
3470
|
export type MobileSessionDetail = {
|
|
3453
3471
|
info: Session;
|
|
3454
3472
|
status?: SessionStatus;
|
|
@@ -3456,6 +3474,7 @@ export type MobileSessionDetail = {
|
|
|
3456
3474
|
info: Message;
|
|
3457
3475
|
parts: Array<Part>;
|
|
3458
3476
|
}>;
|
|
3477
|
+
artifacts: Array<MobileArtifact>;
|
|
3459
3478
|
permissions: Array<PermissionRequest>;
|
|
3460
3479
|
questions: Array<QuestionRequest>;
|
|
3461
3480
|
};
|