fix(modules-sdk): Select all should send undefined instead of an empty array (#6982)

This commit is contained in:
Adrien de Peretti
2024-04-06 21:37:22 +02:00
committed by GitHub
parent 81ea044f31
commit 528ef4ca90
5 changed files with 32 additions and 9 deletions
+2 -2
View File
@@ -90,7 +90,7 @@ export interface RemoteJoinerOptions {
export interface RemoteNestedExpands {
[key: string]: {
fields: string[]
fields?: string[]
args?: JoinerArgument[]
expands?: RemoteNestedExpands
}
@@ -101,7 +101,7 @@ export interface RemoteExpandProperty {
parent: string
parentConfig?: JoinerServiceConfig
serviceConfig: JoinerServiceConfig
fields: string[]
fields?: string[]
args?: JoinerArgument[]
expands?: RemoteNestedExpands
}