File tree Expand file tree Collapse file tree 1 file changed +9
-13
lines changed
packages/core/src/codewhisperer/models Expand file tree Collapse file tree 1 file changed +9
-13
lines changed Original file line number Diff line number Diff 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
348344export interface IHilZipManifestParams {
You can’t perform that action at this time.
0 commit comments