Skip to content

Commit

Permalink
address comment
Browse files Browse the repository at this point in the history
  • Loading branch information
David Hasani committed Nov 4, 2024
1 parent 65408ad commit 5d96225
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions packages/core/src/codewhisperer/models/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -330,19 +330,15 @@ export class ZipManifest {
hilCapabilities: string[] = ['HIL_1pDependency_VersionUpgrade']
transformCapabilities: string[] = ['EXPLAINABILITY_V1'] // TO-DO: for SQL conversions, maybe make this = []
customBuildCommand: string = 'clean test'
requestedConversions:
| {
sqlConversion:
| {
source: string | undefined
target: string | undefined
schema: string | undefined
host: string | undefined
sctFileName: string | undefined
}
| undefined
}
| undefined = undefined
requestedConversions?: {
sqlConversion?: {
source?: string
target?: string
schema?: string
host?: string
sctFileName?: string
}
}
}

export interface IHilZipManifestParams {
Expand Down

0 comments on commit 5d96225

Please sign in to comment.