@arrowsphere/api-client 3.381.0 → 3.382.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,10 @@
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.382.0] - 2026.07.10
7
+ ### Added
8
+ - [order] Add `bundleArrowSphereSku` and `bundleUuid` to `OrderProductsType` structure
9
+
6
10
  ## [3.381.0] - 2026.07.07
7
11
  ### Added
8
12
  - [cart] Add the `changeCustomer` endpoint.
@@ -8,55 +8,59 @@ import { OrganizationUnit, OrganizationUnitType } from './organizationUnit/organ
8
8
  import { Family, FamilyType } from './family/family';
9
9
  import { BusinessRuleEffectType, PricingRules } from './pricingRules/pricingRules';
10
10
  export declare enum OrderProductsFields {
11
- COLUMN_SKU = "sku",
12
- COLUMN_QUANTITY = "quantity",
13
- COLUMN_STATUS = "status",
11
+ COLUMN_ARROWSUBCATEGORIES = "arrowSubCategories",
12
+ COLUMN_BUNDLE_ARROW_SKU = "bundleArrowSphereSku",
13
+ COLUMN_BUNDLE_UUID = "bundleUuid",
14
+ COLUMN_CLASSIFICATION = "classification",
14
15
  COLUMN_CREATION_DATE = "creationDate",
15
16
  COLUMN_DATESTATUS = "dateStatus",
16
17
  COLUMN_DETAILEDSTATUS = "detailedStatus",
17
18
  COLUMN_FAMILY = "family",
19
+ COLUMN_IDENTIFIERS = "identifiers",
18
20
  COLUMN_IS_ADDON = "isAddon",
19
- COLUMN_ARROWSUBCATEGORIES = "arrowSubCategories",
20
21
  COLUMN_IS_TRIAL = "isTrial",
21
- COLUMN_PRICES = "prices",
22
- COLUMN_SUBSCRIPTION = "subscription",
23
22
  COLUMN_LICENSE = "license",
24
23
  COLUMN_NAME = "name",
25
- COLUMN_CLASSIFICATION = "classification",
26
- COLUMN_PROGRAM = "program",
27
- COLUMN_IDENTIFIERS = "identifiers",
28
- COLUMN_ORGANIZATION_UNIT_REF = "organizationUnitRef",
29
24
  COLUMN_ORGANIZATION_UNIT = "organizationUnit",
25
+ COLUMN_ORGANIZATION_UNIT_REF = "organizationUnitRef",
26
+ COLUMN_PRICES = "prices",
30
27
  COLUMN_PRICE_BAND = "priceBand",
31
28
  COLUMN_PRICING_RULES = "pricingRules",
29
+ COLUMN_PROGRAM = "program",
32
30
  COLUMN_PROGRAM_NAME = "programName",
31
+ COLUMN_QUANTITY = "quantity",
32
+ COLUMN_SKU = "sku",
33
33
  COLUMN_SOURCE = "source",
34
+ COLUMN_STATUS = "status",
35
+ COLUMN_SUBSCRIPTION = "subscription",
34
36
  COLUMN_VENDOR_NAME = "vendorName"
35
37
  }
36
38
  export declare type OrderProductsType = {
37
- [OrderProductsFields.COLUMN_SKU]: string;
38
- [OrderProductsFields.COLUMN_QUANTITY]: number;
39
- [OrderProductsFields.COLUMN_STATUS]: string;
39
+ [OrderProductsFields.COLUMN_ARROWSUBCATEGORIES]?: Array<string>;
40
+ [OrderProductsFields.COLUMN_BUNDLE_ARROW_SKU]?: string;
41
+ [OrderProductsFields.COLUMN_BUNDLE_UUID]?: string;
42
+ [OrderProductsFields.COLUMN_CLASSIFICATION]: string;
40
43
  [OrderProductsFields.COLUMN_CREATION_DATE]?: string;
41
44
  [OrderProductsFields.COLUMN_DATESTATUS]: string;
42
45
  [OrderProductsFields.COLUMN_DETAILEDSTATUS]: string;
43
46
  [OrderProductsFields.COLUMN_FAMILY]: FamilyType;
47
+ [OrderProductsFields.COLUMN_IDENTIFIERS]: ProductIdentifiersType;
44
48
  [OrderProductsFields.COLUMN_IS_ADDON]: boolean;
45
- [OrderProductsFields.COLUMN_ARROWSUBCATEGORIES]?: Array<string>;
46
49
  [OrderProductsFields.COLUMN_IS_TRIAL]: boolean;
47
- [OrderProductsFields.COLUMN_PRICES]: ProductPricesType;
48
- [OrderProductsFields.COLUMN_SUBSCRIPTION]?: ReferenceLinkType;
49
50
  [OrderProductsFields.COLUMN_LICENSE]: ReferenceLinkType;
50
51
  [OrderProductsFields.COLUMN_NAME]: string;
51
- [OrderProductsFields.COLUMN_CLASSIFICATION]: string;
52
- [OrderProductsFields.COLUMN_PROGRAM]: ProductProgramType;
53
- [OrderProductsFields.COLUMN_IDENTIFIERS]: ProductIdentifiersType;
54
- [OrderProductsFields.COLUMN_ORGANIZATION_UNIT_REF]?: string;
55
52
  [OrderProductsFields.COLUMN_ORGANIZATION_UNIT]?: OrganizationUnitType;
53
+ [OrderProductsFields.COLUMN_ORGANIZATION_UNIT_REF]?: string;
54
+ [OrderProductsFields.COLUMN_PRICES]: ProductPricesType;
56
55
  [OrderProductsFields.COLUMN_PRICE_BAND]?: PriceBandData;
57
56
  [OrderProductsFields.COLUMN_PRICING_RULES]: Array<BusinessRuleEffectType>;
57
+ [OrderProductsFields.COLUMN_PROGRAM]: ProductProgramType;
58
58
  [OrderProductsFields.COLUMN_PROGRAM_NAME]?: string;
59
+ [OrderProductsFields.COLUMN_QUANTITY]: number;
60
+ [OrderProductsFields.COLUMN_SKU]: string;
59
61
  [OrderProductsFields.COLUMN_SOURCE]?: string;
62
+ [OrderProductsFields.COLUMN_STATUS]: string;
63
+ [OrderProductsFields.COLUMN_SUBSCRIPTION]?: ReferenceLinkType;
60
64
  [OrderProductsFields.COLUMN_VENDOR_NAME]?: string;
61
65
  };
62
66
  export declare class OrderProduct extends AbstractEntity<OrderProductsType> {
@@ -24,29 +24,31 @@ const family_1 = require("./family/family");
24
24
  const pricingRules_1 = require("./pricingRules/pricingRules");
25
25
  var OrderProductsFields;
26
26
  (function (OrderProductsFields) {
27
- OrderProductsFields["COLUMN_SKU"] = "sku";
28
- OrderProductsFields["COLUMN_QUANTITY"] = "quantity";
29
- OrderProductsFields["COLUMN_STATUS"] = "status";
27
+ OrderProductsFields["COLUMN_ARROWSUBCATEGORIES"] = "arrowSubCategories";
28
+ OrderProductsFields["COLUMN_BUNDLE_ARROW_SKU"] = "bundleArrowSphereSku";
29
+ OrderProductsFields["COLUMN_BUNDLE_UUID"] = "bundleUuid";
30
+ OrderProductsFields["COLUMN_CLASSIFICATION"] = "classification";
30
31
  OrderProductsFields["COLUMN_CREATION_DATE"] = "creationDate";
31
32
  OrderProductsFields["COLUMN_DATESTATUS"] = "dateStatus";
32
33
  OrderProductsFields["COLUMN_DETAILEDSTATUS"] = "detailedStatus";
33
34
  OrderProductsFields["COLUMN_FAMILY"] = "family";
35
+ OrderProductsFields["COLUMN_IDENTIFIERS"] = "identifiers";
34
36
  OrderProductsFields["COLUMN_IS_ADDON"] = "isAddon";
35
- OrderProductsFields["COLUMN_ARROWSUBCATEGORIES"] = "arrowSubCategories";
36
37
  OrderProductsFields["COLUMN_IS_TRIAL"] = "isTrial";
37
- OrderProductsFields["COLUMN_PRICES"] = "prices";
38
- OrderProductsFields["COLUMN_SUBSCRIPTION"] = "subscription";
39
38
  OrderProductsFields["COLUMN_LICENSE"] = "license";
40
39
  OrderProductsFields["COLUMN_NAME"] = "name";
41
- OrderProductsFields["COLUMN_CLASSIFICATION"] = "classification";
42
- OrderProductsFields["COLUMN_PROGRAM"] = "program";
43
- OrderProductsFields["COLUMN_IDENTIFIERS"] = "identifiers";
44
- OrderProductsFields["COLUMN_ORGANIZATION_UNIT_REF"] = "organizationUnitRef";
45
40
  OrderProductsFields["COLUMN_ORGANIZATION_UNIT"] = "organizationUnit";
41
+ OrderProductsFields["COLUMN_ORGANIZATION_UNIT_REF"] = "organizationUnitRef";
42
+ OrderProductsFields["COLUMN_PRICES"] = "prices";
46
43
  OrderProductsFields["COLUMN_PRICE_BAND"] = "priceBand";
47
44
  OrderProductsFields["COLUMN_PRICING_RULES"] = "pricingRules";
45
+ OrderProductsFields["COLUMN_PROGRAM"] = "program";
48
46
  OrderProductsFields["COLUMN_PROGRAM_NAME"] = "programName";
47
+ OrderProductsFields["COLUMN_QUANTITY"] = "quantity";
48
+ OrderProductsFields["COLUMN_SKU"] = "sku";
49
49
  OrderProductsFields["COLUMN_SOURCE"] = "source";
50
+ OrderProductsFields["COLUMN_STATUS"] = "status";
51
+ OrderProductsFields["COLUMN_SUBSCRIPTION"] = "subscription";
50
52
  OrderProductsFields["COLUMN_VENDOR_NAME"] = "vendorName";
51
53
  })(OrderProductsFields = exports.OrderProductsFields || (exports.OrderProductsFields = {}));
52
54
  class OrderProduct extends abstractEntity_1.AbstractEntity {
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.381.0",
7
+ "version": "3.382.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",