We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65882be commit 8c74690Copy full SHA for 8c74690
packages/core/src/amazonqDoc/controllers/docGenerationTask.ts
@@ -20,7 +20,7 @@ export class DocGenerationTask {
20
public interactionType?: DocGenerationInteractionType
21
public userIdentity?: string
22
public numberOfNavigation = 0
23
- public folderLevel?: DocGenerationFolderLevel
+ public folderLevel: DocGenerationFolderLevel = 'ENTIRE_WORKSPACE'
24
25
constructor(conversationId?: string) {
26
this.conversationId = conversationId
@@ -57,6 +57,6 @@ export class DocGenerationTask {
57
this.interactionType = undefined
58
this.userIdentity = undefined
59
this.numberOfNavigation = 0
60
- this.folderLevel = undefined
+ this.folderLevel = 'ENTIRE_WORKSPACE'
61
}
62
0 commit comments