Skip to content

Commit 5d96225

Browse files
author
David Hasani
committed
address comment
1 parent 65408ad commit 5d96225

File tree

1 file changed

+9
-13
lines changed
  • packages/core/src/codewhisperer/models

1 file changed

+9
-13
lines changed

packages/core/src/codewhisperer/models/model.ts

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -330,19 +330,15 @@ export class ZipManifest {
330330
hilCapabilities: string[] = ['HIL_1pDependency_VersionUpgrade']
331331
transformCapabilities: string[] = ['EXPLAINABILITY_V1'] // TO-DO: for SQL conversions, maybe make this = []
332332
customBuildCommand: string = 'clean test'
333-
requestedConversions:
334-
| {
335-
sqlConversion:
336-
| {
337-
source: string | undefined
338-
target: string | undefined
339-
schema: string | undefined
340-
host: string | undefined
341-
sctFileName: string | undefined
342-
}
343-
| undefined
344-
}
345-
| undefined = undefined
333+
requestedConversions?: {
334+
sqlConversion?: {
335+
source?: string
336+
target?: string
337+
schema?: string
338+
host?: string
339+
sctFileName?: string
340+
}
341+
}
346342
}
347343

348344
export interface IHilZipManifestParams {

0 commit comments

Comments
 (0)