Releases: tanaikech/BatchRequest
Releases · tanaikech/BatchRequest
v1.2.3
v1.2.2
v1.2.1
-
v1.2.1 (March 8, 2023)
- An option of
exportDataAsBlob
was added to the request object to the method ofEDo()
. Ref When this option is used, the response values from the batch requests are returned as Blob. By this, for example, when you export Google Spreadsheet as PDF data using the batch requests, the PDF data can be retrieved as Blob.
- An option of
v1.2.0
-
v1.2.0 (September 30, 2022)
- A new method of getBatchPath(name, version) was added. On August 12, 2020, in order to use batch requests, the batch path is required to be used to the endpoint of the batch requests. This method can simply retrieve the batch path from the name of Google API. And, the retrieved batch path can be used in Do(object) and EDo(object) methods.
v1.1.4
-
v1.1.4 (March 13, 2021)
- By a pull request, the inputted request is used as the call by value instead of the call by reference. It's like
this.p = p_.requests.slice();
.
- By a pull request, the inputted request is used as the call by value instead of the call by reference. It's like