Skip to content

Commit

Permalink
Merge pull request #364 from JJ-Cro/ReleaseNotes170724
Browse files Browse the repository at this point in the history
fix(): Comma/semicolon fix in params
  • Loading branch information
tiagosiebler authored Aug 6, 2024
2 parents b3a2c62 + 5bc1898 commit d10f86e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/rest-client-v5.ts
Original file line number Diff line number Diff line change
Expand Up @@ -582,9 +582,9 @@ export class RestClientV5 extends BaseRestClient {
*
* Only for institutional clients!
*/
setDisconnectCancelAllWindowV2(params: {
product: 'OPTION' | 'SPOT' | 'DERIVATIVES',
timeWindow: number,
setDisconnectCancelAllWindowV2(params: {
product: 'OPTION' | 'SPOT' | 'DERIVATIVES';
timeWindow: number;
}): Promise<APIResponseV3<undefined>> {
return this.postPrivate('/v5/order/disconnected-cancel-all', params);
}
Expand Down

0 comments on commit d10f86e

Please sign in to comment.