@arrowsphere/api-client 3.77.1-bdj.4 → 3.77.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,6 +3,11 @@
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.77.1] - 2023-12-15
7
+
8
+ ### Fixed
9
+ - Fixed get licenseRequest data structure
10
+
6
11
  ## [3.77.0] - 2023-12-13
7
12
 
8
13
  ### Changed
@@ -8,4 +8,5 @@ export * from './entities/orders/products/program/productProgram';
8
8
  export * from './entities/orders/products/products';
9
9
  export * from '../shared/extraInformation/additionalExtraInformation';
10
10
  export * from './entities/referenceLink';
11
+ export * from './types/orderStatus';
11
12
  export * from './ordersClient';
@@ -24,5 +24,6 @@ __exportStar(require("./entities/orders/products/program/productProgram"), expor
24
24
  __exportStar(require("./entities/orders/products/products"), exports);
25
25
  __exportStar(require("../shared/extraInformation/additionalExtraInformation"), exports);
26
26
  __exportStar(require("./entities/referenceLink"), exports);
27
+ __exportStar(require("./types/orderStatus"), exports);
27
28
  __exportStar(require("./ordersClient"), exports);
28
29
  //# sourceMappingURL=index.js.map
@@ -0,0 +1,26 @@
1
+ export declare enum OrderStatusEnum {
2
+ ACCEPTED = "Accepted",
3
+ ARCHIVE = "Archived",
4
+ BILLFEED_ERROR = "Billfeed Error",
5
+ EXTERNAL_WARNING = "External Warning",
6
+ FULFILLED = "Fulfilled",
7
+ IN_PROGRESS = "In progress",
8
+ INTERNAL_WARNING = "Internal Warning",
9
+ MIGRATION_CANCELED = "Migration canceled",
10
+ MIGRATION_CANCEL_IN_PROGRESS = "Migration cancel in progress",
11
+ MIGRATION_FAILED = "Migration failed",
12
+ NEED_VALIDATION = "Needs Validation",
13
+ NEED_PARTNER_VALIDATION = "Needs Partner Validation",
14
+ NOT_ACCEPTED = "Not Accepted",
15
+ ONGOING_VALIDATION = "Ongoing Validation",
16
+ OPEN = "Open",
17
+ ORDER_QUEUED = "Order queued",
18
+ SYNCING_WITH_BILLFEED = "Syncing with Billfeed",
19
+ TRANSFER_FAILED = "Transfer Failed",
20
+ TRANSFER_IN_PROGRESS = "Transfer in progress",
21
+ TRANSFER_OK = "Transfer ok",
22
+ SEND = "Sent",
23
+ ORDER_VALIDATED = "Order Validated",
24
+ SCHEDULED_ORDER = "Scheduled Order",
25
+ CANCELED = "Canceled"
26
+ }
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.OrderStatusEnum = void 0;
4
+ var OrderStatusEnum;
5
+ (function (OrderStatusEnum) {
6
+ OrderStatusEnum["ACCEPTED"] = "Accepted";
7
+ OrderStatusEnum["ARCHIVE"] = "Archived";
8
+ OrderStatusEnum["BILLFEED_ERROR"] = "Billfeed Error";
9
+ OrderStatusEnum["EXTERNAL_WARNING"] = "External Warning";
10
+ OrderStatusEnum["FULFILLED"] = "Fulfilled";
11
+ OrderStatusEnum["IN_PROGRESS"] = "In progress";
12
+ OrderStatusEnum["INTERNAL_WARNING"] = "Internal Warning";
13
+ OrderStatusEnum["MIGRATION_CANCELED"] = "Migration canceled";
14
+ OrderStatusEnum["MIGRATION_CANCEL_IN_PROGRESS"] = "Migration cancel in progress";
15
+ OrderStatusEnum["MIGRATION_FAILED"] = "Migration failed";
16
+ OrderStatusEnum["NEED_VALIDATION"] = "Needs Validation";
17
+ OrderStatusEnum["NEED_PARTNER_VALIDATION"] = "Needs Partner Validation";
18
+ OrderStatusEnum["NOT_ACCEPTED"] = "Not Accepted";
19
+ OrderStatusEnum["ONGOING_VALIDATION"] = "Ongoing Validation";
20
+ OrderStatusEnum["OPEN"] = "Open";
21
+ OrderStatusEnum["ORDER_QUEUED"] = "Order queued";
22
+ OrderStatusEnum["SYNCING_WITH_BILLFEED"] = "Syncing with Billfeed";
23
+ OrderStatusEnum["TRANSFER_FAILED"] = "Transfer Failed";
24
+ OrderStatusEnum["TRANSFER_IN_PROGRESS"] = "Transfer in progress";
25
+ OrderStatusEnum["TRANSFER_OK"] = "Transfer ok";
26
+ OrderStatusEnum["SEND"] = "Sent";
27
+ OrderStatusEnum["ORDER_VALIDATED"] = "Order Validated";
28
+ OrderStatusEnum["SCHEDULED_ORDER"] = "Scheduled Order";
29
+ OrderStatusEnum["CANCELED"] = "Canceled";
30
+ })(OrderStatusEnum = exports.OrderStatusEnum || (exports.OrderStatusEnum = {}));
31
+ //# sourceMappingURL=orderStatus.js.map
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.77.1-bdj.4",
7
+ "version": "3.77.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",