Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tsp-typescript-client/src/models/query/query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ export class OutputConfigurationQuery extends ConfigurationQuery {
* The configuration source type ID
*/
// @ts-expect-error TS doesn't like unused private fields.
private typeId: string;
private sourceTypeId: string;

/**
* Constructor
* @param name Name of the configuration
* @param description Optional description of the configuraiton
* @param typeId The ID of the configuration source type
* @param sourceTypeId The ID of the configuration source type
* @param parameters Object used to send parameters to the server
*/
constructor(name: string, description: string | undefined, typeId: string, parameters: Object) {
constructor(name: string, description: string | undefined, sourceTypeId: string, parameters: Object) {
super(name, description, parameters);
this.typeId = typeId;
this.sourceTypeId = sourceTypeId;
}
}