@arrowsphere/api-client 3.211.0 → 3.212.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,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.212.0] - 2025.07.29
7
+
8
+ ### Added
9
+
10
+ - [supportCenter] add field `classification` to TopicType
11
+
6
12
  ## [3.211.0] - 2025.07.29
7
13
 
8
14
  ### Added
@@ -4,7 +4,8 @@ export declare enum TopicFields {
4
4
  COLUMN_NAME = "name",
5
5
  COLUMN_LABEL = "label",
6
6
  COLUMN_PREMIUM = "premium",
7
- COLUMN_DESCRIPTION = "content"
7
+ COLUMN_DESCRIPTION = "content",
8
+ COLUMN_CLASSIFICATION = "classification"
8
9
  }
9
10
  export declare type TopicType = {
10
11
  [TopicFields.COLUMN_ID]: number;
@@ -12,6 +13,7 @@ export declare type TopicType = {
12
13
  [TopicFields.COLUMN_LABEL]: string;
13
14
  [TopicFields.COLUMN_PREMIUM]: boolean;
14
15
  [TopicFields.COLUMN_DESCRIPTION]: string;
16
+ [TopicFields.COLUMN_CLASSIFICATION]: string;
15
17
  };
16
18
  export declare class Topic extends AbstractEntity<TopicType> {
17
19
  #private;
@@ -21,6 +23,7 @@ export declare class Topic extends AbstractEntity<TopicType> {
21
23
  get label(): string;
22
24
  get premium(): boolean;
23
25
  get description(): string;
26
+ get classification(): string;
24
27
  toJSON(): TopicType;
25
28
  }
26
29
  export declare type TopicsType = Array<TopicType>;
@@ -10,7 +10,7 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
10
10
  if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
11
11
  return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
12
12
  };
13
- var _Topic_id, _Topic_name, _Topic_label, _Topic_premium, _Topic_description, _Topics_list;
13
+ var _Topic_id, _Topic_name, _Topic_label, _Topic_premium, _Topic_description, _Topic_classification, _Topics_list;
14
14
  Object.defineProperty(exports, "__esModule", { value: true });
15
15
  exports.Topics = exports.Topic = exports.TopicFields = void 0;
16
16
  const abstractEntity_1 = require("../../abstractEntity");
@@ -21,6 +21,7 @@ var TopicFields;
21
21
  TopicFields["COLUMN_LABEL"] = "label";
22
22
  TopicFields["COLUMN_PREMIUM"] = "premium";
23
23
  TopicFields["COLUMN_DESCRIPTION"] = "content";
24
+ TopicFields["COLUMN_CLASSIFICATION"] = "classification";
24
25
  })(TopicFields = exports.TopicFields || (exports.TopicFields = {}));
25
26
  class Topic extends abstractEntity_1.AbstractEntity {
26
27
  constructor(input) {
@@ -30,11 +31,13 @@ class Topic extends abstractEntity_1.AbstractEntity {
30
31
  _Topic_label.set(this, void 0);
31
32
  _Topic_premium.set(this, void 0);
32
33
  _Topic_description.set(this, void 0);
34
+ _Topic_classification.set(this, void 0);
33
35
  __classPrivateFieldSet(this, _Topic_id, input[TopicFields.COLUMN_ID], "f");
34
36
  __classPrivateFieldSet(this, _Topic_name, input[TopicFields.COLUMN_NAME], "f");
35
37
  __classPrivateFieldSet(this, _Topic_label, input[TopicFields.COLUMN_LABEL], "f");
36
38
  __classPrivateFieldSet(this, _Topic_premium, input[TopicFields.COLUMN_PREMIUM], "f");
37
39
  __classPrivateFieldSet(this, _Topic_description, input[TopicFields.COLUMN_DESCRIPTION], "f");
40
+ __classPrivateFieldSet(this, _Topic_classification, input[TopicFields.COLUMN_CLASSIFICATION], "f");
38
41
  }
39
42
  get id() {
40
43
  return __classPrivateFieldGet(this, _Topic_id, "f");
@@ -51,6 +54,9 @@ class Topic extends abstractEntity_1.AbstractEntity {
51
54
  get description() {
52
55
  return __classPrivateFieldGet(this, _Topic_description, "f");
53
56
  }
57
+ get classification() {
58
+ return __classPrivateFieldGet(this, _Topic_classification, "f");
59
+ }
54
60
  toJSON() {
55
61
  return {
56
62
  [TopicFields.COLUMN_ID]: this.id,
@@ -58,11 +64,12 @@ class Topic extends abstractEntity_1.AbstractEntity {
58
64
  [TopicFields.COLUMN_LABEL]: this.label,
59
65
  [TopicFields.COLUMN_PREMIUM]: this.premium,
60
66
  [TopicFields.COLUMN_DESCRIPTION]: this.description,
67
+ [TopicFields.COLUMN_CLASSIFICATION]: this.classification,
61
68
  };
62
69
  }
63
70
  }
64
71
  exports.Topic = Topic;
65
- _Topic_id = new WeakMap(), _Topic_name = new WeakMap(), _Topic_label = new WeakMap(), _Topic_premium = new WeakMap(), _Topic_description = new WeakMap();
72
+ _Topic_id = new WeakMap(), _Topic_name = new WeakMap(), _Topic_label = new WeakMap(), _Topic_premium = new WeakMap(), _Topic_description = new WeakMap(), _Topic_classification = new WeakMap();
66
73
  class Topics extends abstractEntity_1.AbstractEntity {
67
74
  constructor(input) {
68
75
  super(input);
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.211.0",
7
+ "version": "3.212.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",