* Used to make public requests to the delivery (DAPI) API * @param path * @param data * @param method * @returns
(path: string, data: Dict = {}, method: HttpMethod = 'GET')
| 565 | * @returns |
| 566 | */ |
| 567 | async publicDeliveryRequest(path: string, data: Dict = {}, method: HttpMethod = 'GET') { |
| 568 | return await this.publicRequest(this.getDapiUrl() + path, data, method); |
| 569 | } |
| 570 | |
| 571 | /** |
| 572 | * Used to make private requests to the futures (FAPI) API |
no test coverage detected