@arrowsphere/api-client 3.129.0-rc.sba.4 → 3.129.0

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,20 @@
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.129.0] - 2024.08.05
7
+
8
+ ### Added
9
+ - [quotes] Add itemData in items
10
+
11
+ ## [3.128.1] - 2024.08.05
12
+
13
+ ### Fixed
14
+ - [quotes] Fixes endpoint request for quote response
15
+
6
16
  ## [3.128.0] - 2024.07.30
7
17
 
8
18
  ### Added
9
- - [graphql-api] Add endpoint request for quote
19
+ - [quotes] Add endpoint request for quote
10
20
 
11
21
  ## [3.127.0] - 2024.07.16
12
22
 
@@ -27,22 +27,22 @@ export declare type QuoteItemType = {
27
27
  itemData?: ItemData;
28
28
  };
29
29
  export declare type ItemData = {
30
- id: string;
31
- offerName: string;
32
- publicPrice: number;
33
- currency: string;
34
- arrowRateType: string;
35
- partnerRateType: string;
36
- billingTerm: number;
37
- billingCycle: number;
38
- arrowRateValue: number;
39
- partnerRateValue: number;
40
- arrowSpherePriceBandSku: number;
41
- licenseAgreementType: string;
42
- mainLogoUrl: string;
43
- squareLogoUrl: string;
44
- marketplace: string;
45
- creationDate: string;
46
- quantity: number;
47
- orderingType: string;
30
+ id?: string;
31
+ offerName?: string;
32
+ publicPrice?: number;
33
+ currency?: string;
34
+ arrowRateType?: string;
35
+ partnerRateType?: string;
36
+ billingTerm?: number;
37
+ billingCycle?: number;
38
+ arrowRateValue?: number;
39
+ partnerRateValue?: number;
40
+ arrowSpherePriceBandSku?: number;
41
+ licenseAgreementType?: string;
42
+ mainLogoUrl?: string;
43
+ squareLogoUrl?: string;
44
+ marketplace?: string;
45
+ creationDate?: string;
46
+ quantity?: number;
47
+ orderingType?: string;
48
48
  };
@@ -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.129.0-rc.sba.4",
7
+ "version": "3.129.0",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",