@arrowsphere/api-client 3.172.0-rc-sbe-2 → 3.172.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.172.0] - 2025.02.11
7
+
8
+ ### Updated
9
+ - [graphql-api] add field to "type" and "Offer.attributesParameters" type
10
+
11
+ ## [3.171.1] - 2025.02.11
12
+
13
+ ### Updated
14
+ - [graphql-api] add fields to "Subscription" and "Program" schema
15
+
6
16
  ## [3.171.0] - 2025.02.11
7
17
 
8
18
  ### Added
@@ -303,8 +303,14 @@ export declare type ExchangeRateValueType = {
303
303
  unitTextSymbol: string;
304
304
  value: number;
305
305
  };
306
+ export declare enum AttributesParameterType {
307
+ STANDARD = "STANDARD",
308
+ INTERNAL = "INTERNAL",
309
+ READ_ONLY = "READ_ONLY"
310
+ }
306
311
  export declare type AttributesParameters = {
307
312
  name?: string;
308
313
  label?: string;
309
314
  position?: number;
315
+ type?: AttributesParameterType;
310
316
  };
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  // Here are the types, they are useful to have exact types of the responses
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.PricesTypeKeys = void 0;
4
+ exports.AttributesParameterType = exports.PricesTypeKeys = void 0;
5
5
  var PricesTypeKeys;
6
6
  (function (PricesTypeKeys) {
7
7
  PricesTypeKeys["BUY_KEY"] = "buy";
@@ -13,4 +13,10 @@ var PricesTypeKeys;
13
13
  PricesTypeKeys["RETAIL_KEY"] = "public";
14
14
  PricesTypeKeys["VENDOR_PRICING_SOURCE_KEY"] = "vendorPricingSource";
15
15
  })(PricesTypeKeys = exports.PricesTypeKeys || (exports.PricesTypeKeys = {}));
16
+ var AttributesParameterType;
17
+ (function (AttributesParameterType) {
18
+ AttributesParameterType["STANDARD"] = "STANDARD";
19
+ AttributesParameterType["INTERNAL"] = "INTERNAL";
20
+ AttributesParameterType["READ_ONLY"] = "READ_ONLY";
21
+ })(AttributesParameterType = exports.AttributesParameterType || (exports.AttributesParameterType = {}));
16
22
  //# sourceMappingURL=catalogGraphQLTypes.js.map
@@ -3,9 +3,16 @@ import { SubscriptionType } from './subscription';
3
3
  import { VendorsType } from './vendor';
4
4
  export declare type GraphqlApiProgramType = {
5
5
  id?: number;
6
+ bypassReport?: number;
6
7
  internalName?: string;
7
8
  name?: string;
8
9
  vendor?: VendorsType;
10
+ type?: GraphqlApiProgramTypeType;
11
+ };
12
+ export declare type GraphqlApiProgramTypeType = {
13
+ id?: number;
14
+ accronym?: string;
15
+ name?: string;
9
16
  };
10
17
  export declare type GraphqlApiProgramLevelType = {
11
18
  id?: number;
@@ -3,10 +3,16 @@ import { ContactsType } from './contact';
3
3
  import { GraphqlApiProgramLevelType, GraphqlApiProgramType } from './program';
4
4
  export declare type SubscriptionType = {
5
5
  id?: number;
6
+ autoReporting?: boolean;
6
7
  company?: PartnerType;
8
+ endedAt?: string;
7
9
  level?: GraphqlApiProgramLevelType;
8
10
  localContact?: ContactsType;
11
+ orderId?: string;
9
12
  partnerContact?: ContactsType;
10
13
  partnerId?: string;
11
14
  program?: GraphqlApiProgramType;
15
+ startedAt?: string;
16
+ userNote?: string;
17
+ validatedAt?: string;
12
18
  };
@@ -7,7 +7,6 @@ export declare enum CreateOrderInputFields {
7
7
  COLUMN_CUSTOMER = "customer",
8
8
  COLUMN_REFERENCE = "reference",
9
9
  COLUMN_PO_NUMBER = "ponumber",
10
- COLUMN_END_CUSTOMER_PO_NUMBER = "endCustomerPONumber",
11
10
  COLUMN_PRODUCTS = "products",
12
11
  COLUMN_ARROW_SPHERE_PRICE_BAND_SKU = "arrowSpherePriceBandSku",
13
12
  COLUMN_SKU = "sku",
@@ -59,7 +58,6 @@ export declare type CreateOrderInputType = {
59
58
  [CreateOrderInputFields.COLUMN_CUSTOMER]: {
60
59
  [CreateOrderInputFields.COLUMN_REFERENCE]: string;
61
60
  [CreateOrderInputFields.COLUMN_PO_NUMBER]?: string;
62
- [CreateOrderInputFields.COLUMN_END_CUSTOMER_PO_NUMBER]?: string;
63
61
  };
64
62
  [CreateOrderInputFields.COLUMN_SCENARIO]?: scenarioType;
65
63
  [CreateOrderInputFields.COLUMN_SCHEDULE_DATE]?: string;
@@ -11,7 +11,6 @@ var CreateOrderInputFields;
11
11
  CreateOrderInputFields["COLUMN_CUSTOMER"] = "customer";
12
12
  CreateOrderInputFields["COLUMN_REFERENCE"] = "reference";
13
13
  CreateOrderInputFields["COLUMN_PO_NUMBER"] = "ponumber";
14
- CreateOrderInputFields["COLUMN_END_CUSTOMER_PO_NUMBER"] = "endCustomerPONumber";
15
14
  CreateOrderInputFields["COLUMN_PRODUCTS"] = "products";
16
15
  CreateOrderInputFields["COLUMN_ARROW_SPHERE_PRICE_BAND_SKU"] = "arrowSpherePriceBandSku";
17
16
  CreateOrderInputFields["COLUMN_SKU"] = "sku";
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.172.0-rc-sbe-2",
7
+ "version": "3.172.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",