* Used to make private requests to the delivery (DAPI) API * @param path * @param data * @param method * @returns
(path: string, data: Dict = {}, method: HttpMethod = 'GET')
| 587 | * @returns |
| 588 | */ |
| 589 | async privateDeliveryRequest(path: string, data: Dict = {}, method: HttpMethod = 'GET'): Promise<any> { |
| 590 | return await this.futuresRequest(this.getDapiUrl() + path, data, method, true); |
| 591 | } |
| 592 | |
| 593 | /** |
| 594 | * Used to make a request to the futures API, this is a generic function that can be used to make any request to the futures API |
no test coverage detected