@@ -55,7 +55,7 @@ export function readSandboxDefFile(
5555export async function createSandboxRequest (
5656 definitionFile : string | undefined ,
5757 logger ?: Logger | undefined ,
58- properties ?: Record < string , string | undefined >
58+ properties ?: Record < string , string | undefined | string [ ] >
5959) : Promise < {
6060 sandboxReq : SandboxRequest & {
6161 ApexClassName : string | undefined ;
@@ -67,7 +67,7 @@ export async function createSandboxRequest(
6767export async function createSandboxRequest (
6868 definitionFile : string | undefined ,
6969 logger ?: Logger | undefined ,
70- properties ?: Record < string , string | undefined >
70+ properties ?: Record < string , string | undefined | string [ ] >
7171) : Promise < {
7272 sandboxReq : SandboxRequest & {
7373 ApexClassName : string | undefined ;
@@ -77,7 +77,7 @@ export async function createSandboxRequest(
7777export async function createSandboxRequest (
7878 definitionFile : string | undefined ,
7979 logger ?: Logger | undefined ,
80- properties ?: Record < string , string | undefined >
80+ properties ?: Record < string , string | undefined | string [ ] >
8181) : Promise < { sandboxReq : SandboxRequest ; srcSandboxName ?: string ; srcId ?: string } > {
8282 if ( ! logger ) {
8383 logger = await Logger . child ( 'createSandboxRequest' ) ;
@@ -88,7 +88,7 @@ export async function createSandboxRequest(
8888
8989 const capitalizedVarArgs = properties ? lowerToUpper ( properties ) : { } ;
9090 // varargs override file input
91- const sandboxReqWithName : ( SandboxRequest & { Features ?: string } ) & {
91+ const sandboxReqWithName : ( SandboxRequest & { Features ?: string [ ] } ) & {
9292 SourceSandboxName ?: string ;
9393 SourceId ?: string ;
9494 } = {
0 commit comments