@arrowsphere/api-client 3.128.1-rc.bdj.1 → 3.128.1
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/CHANGELOG.md +6 -1
- package/build/quotes/quotesClient.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,10 +3,15 @@
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [3.128.1] - 2024.08.05
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
- [quotes] Fixes endpoint request for quote response
|
|
10
|
+
|
|
6
11
|
## [3.128.0] - 2024.07.30
|
|
7
12
|
|
|
8
13
|
### Added
|
|
9
|
-
- [
|
|
14
|
+
- [quotes] Add endpoint request for quote
|
|
10
15
|
|
|
11
16
|
## [3.127.0] - 2024.07.16
|
|
12
17
|
|
|
@@ -15,7 +15,7 @@ class QuotesClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
|
15
15
|
}
|
|
16
16
|
async requestQuoteForVendor(vendor, postData, parameters = {}) {
|
|
17
17
|
this.path = `/request/${vendor}`;
|
|
18
|
-
|
|
18
|
+
await this.post(postData, parameters);
|
|
19
19
|
}
|
|
20
20
|
async deleteQuote(quoteReference, parameters = {}) {
|
|
21
21
|
this.path = `/${quoteReference}`;
|
package/package.json
CHANGED