ConfigurationSettingParam type
Champs nécessaires pour la mise à jour ou la création d’un nouveau paramètre de configuration
type ConfigurationSettingParam<T> = ConfigurationSettingId & {
contentType?: string
tags?: { [propertyName: string]: string }
} & (T extends string ? { value?: string } : { value: T })