Skip to content

Commit

Permalink
refactor: remove empty params
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoenig134 committed Dec 10, 2024
1 parent 80374db commit 3c7baa0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ export class DeviceAuthClient extends RESTClientAuthenticate {
protected override _logDirective = RESTClientLogDirective.LogResponse;

public async changeDevicePassword(input: BackbonePutDevicesPasswordRequest): Promise<ClientResult<void>> {
return await this.put<void>("/api/v1/Devices/Self/Password", input, {});
return await this.put<void>("/api/v1/Devices/Self/Password", input);
}

public async createDevice(value: BackbonePostDevicesRequest): Promise<ClientResult<BackbonePostDevicesResponse>> {
return await this.post<BackbonePostDevicesResponse>("/api/v1/Devices", value, {});
return await this.post<BackbonePostDevicesResponse>("/api/v1/Devices", value);
}

public async deleteDevice(deviceId: string): Promise<ClientResult<void>> {
Expand Down

0 comments on commit 3c7baa0

Please sign in to comment.