Skip to content

Commit 081ce2d

Browse files
committed
Fix field name to 'required` of ConfigurationParameterDescriptor
The TSP specifies `required` instead of `isRequired`. This commit aligns the implementation with the specification. See also: eclipse-tracecompass-incubator/org.eclipse.tracecompass.incubator#246 Signed-off-by: Bernd Hufmann <[email protected]>
1 parent 565e2d9 commit 081ce2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tsp-typescript-client/src/models/configuration-source.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ export interface ConfigurationParameterDescriptor {
5555
/**
5656
* If parameter needs to in the query parameters or not. Default is false.
5757
*/
58-
isRequired?: boolean;
58+
required?: boolean;
5959
}

0 commit comments

Comments
 (0)