@codeguide/core 0.0.26 → 0.0.27
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.
|
@@ -10,6 +10,7 @@ export interface GenerateTaskTitleResponse {
|
|
|
10
10
|
export interface CreateCodespaceTaskRequest {
|
|
11
11
|
title: string;
|
|
12
12
|
description: string;
|
|
13
|
+
conversation_id?: string;
|
|
13
14
|
}
|
|
14
15
|
export interface CreateCodespaceTaskResponse {
|
|
15
16
|
success: boolean;
|
|
@@ -45,6 +46,7 @@ export interface CreateCodespaceTaskRequestV2 {
|
|
|
45
46
|
use_enhanced_summary?: boolean;
|
|
46
47
|
attachments?: Attachment[];
|
|
47
48
|
ai_questionnaire?: Record<string, string>;
|
|
49
|
+
conversation_id?: string;
|
|
48
50
|
}
|
|
49
51
|
export interface CreateCodespaceTaskResponseV2 {
|
|
50
52
|
success: boolean;
|
package/package.json
CHANGED
|
@@ -12,6 +12,7 @@ export interface GenerateTaskTitleResponse {
|
|
|
12
12
|
export interface CreateCodespaceTaskRequest {
|
|
13
13
|
title: string
|
|
14
14
|
description: string
|
|
15
|
+
conversation_id?: string
|
|
15
16
|
}
|
|
16
17
|
|
|
17
18
|
export interface CreateCodespaceTaskResponse {
|
|
@@ -51,6 +52,7 @@ export interface CreateCodespaceTaskRequestV2 {
|
|
|
51
52
|
use_enhanced_summary?: boolean
|
|
52
53
|
attachments?: Attachment[]
|
|
53
54
|
ai_questionnaire?: Record<string, string>
|
|
55
|
+
conversation_id?: string
|
|
54
56
|
}
|
|
55
57
|
|
|
56
58
|
export interface CreateCodespaceTaskResponseV2 {
|
|
@@ -245,4 +247,4 @@ export interface CodespaceModelsFetchError {
|
|
|
245
247
|
export type CodespaceModelsError =
|
|
246
248
|
| CodespaceModelNotFoundError
|
|
247
249
|
| AuthenticationRequiredError
|
|
248
|
-
| CodespaceModelsFetchError
|
|
250
|
+
| CodespaceModelsFetchError
|