parser-de-notas-de-corretagem 0.12.80 → 0.13.0
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/asset-crawler.d.ts +2 -1
- package/notes-parser.js +1 -1
- package/notes-parser.js.map +1 -1
- package/package.json +1 -1
package/asset-crawler.d.ts
CHANGED
|
@@ -53,9 +53,10 @@ export declare class AssetCrawler {
|
|
|
53
53
|
/**
|
|
54
54
|
* Parse the stock name and returns the stock code
|
|
55
55
|
* @param name title of the stock in the brokerage note
|
|
56
|
+
* @param kind asset kind (like ON, PN, DR2)
|
|
56
57
|
* @returns the stock code
|
|
57
58
|
*/
|
|
58
|
-
getCodeFromTitle(name: string): Asset;
|
|
59
|
+
getCodeFromTitle(name: string, kind?: string): Asset;
|
|
59
60
|
/**
|
|
60
61
|
* Get the stock dividends and the cash dividends of a given asset, if any
|
|
61
62
|
* @param code the asset code (letter only)
|