laplace-api 1.4.6 → 1.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "laplace-api",
3
- "version": "1.4.6",
3
+ "version": "1.4.7",
4
4
  "description": "Client library for Laplace API for the US stock market and BIST (Istanbul stock market) fundamental financial data.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -171,7 +171,7 @@ export class StockClient extends Client {
171
171
  });
172
172
  }
173
173
 
174
- async validateCustomHistoricalPriceDate(date: string) {
174
+ validateCustomHistoricalPriceDate(date: string) {
175
175
  const pattern = /^\d{4}-\d{2}-\d{2}( \d{2}:\d{2}:\d{2})?$/;
176
176
  const matched = date.match(pattern);
177
177
  if (!matched) {