@arrowsphere/api-client 3.129.0-rc.sba.5 → 3.130.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,6 +3,16 @@
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.130.0] - 2024.08.06
7
+
8
+ ### Added
9
+ - [quotes] Add buyPrice and sellPrice in ItemData
10
+
11
+ ## [3.129.0] - 2024.08.05
12
+
13
+ ### Added
14
+ - [quotes] Add itemData in items
15
+
6
16
  ## [3.128.1] - 2024.08.05
7
17
 
8
18
  ### Fixed
@@ -27,22 +27,24 @@ 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
+ buyPrice?: number;
34
+ sellPrice?: number;
35
+ currency?: string;
36
+ arrowRateType?: string;
37
+ partnerRateType?: string;
38
+ billingTerm?: number;
39
+ billingCycle?: number;
40
+ arrowRateValue?: number;
41
+ partnerRateValue?: number;
42
+ arrowSpherePriceBandSku?: number;
43
+ licenseAgreementType?: string;
44
+ mainLogoUrl?: string;
45
+ squareLogoUrl?: string;
46
+ marketplace?: string;
47
+ creationDate?: string;
48
+ quantity?: number;
49
+ orderingType?: string;
48
50
  };
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.5",
7
+ "version": "3.130.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",