Skip to content

Commit

Permalink
fix option series quotes patch type
Browse files Browse the repository at this point in the history
  • Loading branch information
felipecsl committed Aug 27, 2023
1 parent 933bcb2 commit f6eb337
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tda-wsjson-client",
"version": "0.4.0",
"version": "0.4.1",
"description": "WebSocket client for the TD Ameritrade wsjson API",
"main": "dist/web.bundle.js",
"types": "dist/web.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/client/services/optionSeriesQuotesMessageHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export type OptionSeriesQuotesPatchResponse = {
patches: {
op: string;
path: string;
value: any;
};
value: number | { series: OptionSeriesQuote[] };
}[];
service: "optionSeries/quotes";
};

Expand Down

0 comments on commit f6eb337

Please sign in to comment.