@arrowsphere/api-client 3.61.0-rc.bdj.1 → 3.61.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,7 +3,12 @@
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.60.0] - 2023-12-31
6
+ ## [3.61.0] - 2023-11-02
7
+
8
+ ### Changed
9
+ - add licenses get last request
10
+
11
+ ## [3.60.0] - 2023-10-31
7
12
 
8
13
  ### Changed
9
14
  - add licenses get events
@@ -19,7 +19,7 @@ export declare type LicenseRequestType = {
19
19
  };
20
20
  export declare class LicenseRequest extends AbstractEntity<LicenseRequestType> {
21
21
  #private;
22
- constructor(getLicenseRequesInput: LicenseRequestType);
22
+ constructor(input: LicenseRequestType);
23
23
  get userName(): string | undefined;
24
24
  get licenseReference(): string | undefined;
25
25
  get createdAt(): string | undefined;
@@ -25,8 +25,8 @@ var LicenseRequestFields;
25
25
  LicenseRequestFields["USER_NAME"] = "userName";
26
26
  })(LicenseRequestFields = exports.LicenseRequestFields || (exports.LicenseRequestFields = {}));
27
27
  class LicenseRequest extends abstractEntity_1.AbstractEntity {
28
- constructor(getLicenseRequesInput) {
29
- super(getLicenseRequesInput);
28
+ constructor(input) {
29
+ super(input);
30
30
  _LicenseRequest_action.set(this, void 0);
31
31
  _LicenseRequest_createdAt.set(this, void 0);
32
32
  _LicenseRequest_licenseReference.set(this, void 0);
@@ -34,13 +34,13 @@ class LicenseRequest extends abstractEntity_1.AbstractEntity {
34
34
  _LicenseRequest_status.set(this, void 0);
35
35
  _LicenseRequest_updatedAt.set(this, void 0);
36
36
  _LicenseRequest_userName.set(this, void 0);
37
- __classPrivateFieldSet(this, _LicenseRequest_action, getLicenseRequesInput[LicenseRequestFields.ACTION], "f");
38
- __classPrivateFieldSet(this, _LicenseRequest_licenseReference, getLicenseRequesInput[LicenseRequestFields.LICENSE_REFERENCE], "f");
39
- __classPrivateFieldSet(this, _LicenseRequest_message, getLicenseRequesInput[LicenseRequestFields.MESSAGE], "f");
40
- __classPrivateFieldSet(this, _LicenseRequest_userName, getLicenseRequesInput[LicenseRequestFields.USER_NAME], "f");
41
- __classPrivateFieldSet(this, _LicenseRequest_createdAt, getLicenseRequesInput[LicenseRequestFields.CREATED_AT], "f");
42
- __classPrivateFieldSet(this, _LicenseRequest_updatedAt, getLicenseRequesInput[LicenseRequestFields.UPDATED_AT], "f");
43
- __classPrivateFieldSet(this, _LicenseRequest_status, getLicenseRequesInput[LicenseRequestFields.STATUS], "f");
37
+ __classPrivateFieldSet(this, _LicenseRequest_action, input[LicenseRequestFields.ACTION], "f");
38
+ __classPrivateFieldSet(this, _LicenseRequest_createdAt, input[LicenseRequestFields.CREATED_AT], "f");
39
+ __classPrivateFieldSet(this, _LicenseRequest_licenseReference, input[LicenseRequestFields.LICENSE_REFERENCE], "f");
40
+ __classPrivateFieldSet(this, _LicenseRequest_message, input[LicenseRequestFields.MESSAGE], "f");
41
+ __classPrivateFieldSet(this, _LicenseRequest_status, input[LicenseRequestFields.STATUS], "f");
42
+ __classPrivateFieldSet(this, _LicenseRequest_updatedAt, input[LicenseRequestFields.UPDATED_AT], "f");
43
+ __classPrivateFieldSet(this, _LicenseRequest_userName, input[LicenseRequestFields.USER_NAME], "f");
44
44
  }
45
45
  get userName() {
46
46
  return __classPrivateFieldGet(this, _LicenseRequest_userName, "f");
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.61.0-rc.bdj.1",
7
+ "version": "3.61.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",