@arrowsphere/api-client 3.128.0 → 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 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
- - [graphql-api] Add endpoint request for quote
14
+ - [quotes] Add endpoint request for quote
10
15
 
11
16
  ## [3.127.0] - 2024.07.16
12
17
 
@@ -21,6 +21,6 @@ export declare type RequestQuoteIbmRequestType = {
21
21
  export declare class QuotesClient extends AbstractRestfulClient {
22
22
  protected basePath: string;
23
23
  requestQuote(postData: RequestQuoteRequestType, parameters?: Parameters): Promise<GetResult<QuoteRequest>>;
24
- requestQuoteForVendor(vendor: string, postData: RequestQuoteIbmRequestType, parameters?: Parameters): Promise<GetResult<QuoteRequest>>;
24
+ requestQuoteForVendor(vendor: string, postData: RequestQuoteIbmRequestType, parameters?: Parameters): Promise<void>;
25
25
  deleteQuote(quoteReference: string, parameters?: Parameters): Promise<void>;
26
26
  }
@@ -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
- return new getResult_1.GetResult(QuoteRequest_1.QuoteRequest, await this.post(postData, parameters));
18
+ await this.post(postData, parameters);
19
19
  }
20
20
  async deleteQuote(quoteReference, parameters = {}) {
21
21
  this.path = `/${quoteReference}`;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/ArrowSphere/nodejs-api-client.git"
6
6
  },
7
- "version": "3.128.0",
7
+ "version": "3.128.1",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",