@arrowsphere/api-client 3.220.0-rc-cpe-1 → 3.220.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.220.0] - 2025.09.08
7
+ ### Added
8
+ - [catalog] Added ignoreCatalogPlan property
9
+ ### Fixed
10
+ - [supportCenter] Field topic is optional
11
+
6
12
  ## [3.219.0] - 2025.09.08
7
13
  ### Added
8
14
  - [graphql-api] add export feature
@@ -71,7 +71,7 @@ export declare type IssueType = {
71
71
  [IssueFields.COLUMN_TITLE]: string;
72
72
  [IssueFields.COLUMN_DESCRIPTION]: string;
73
73
  [IssueFields.COLUMN_TOPIC_ID]: string;
74
- [IssueFields.COLUMN_TOPIC]: string;
74
+ [IssueFields.COLUMN_TOPIC]?: string;
75
75
  [IssueFields.COLUMN_END_CUSTOMER_REF]?: string;
76
76
  [IssueFields.COLUMN_LANGUAGE]?: string;
77
77
  [IssueFields.COLUMN_OFFER]?: IssueOfferType;
@@ -123,7 +123,7 @@ export declare class Issue extends AbstractEntity<IssueType> {
123
123
  get title(): string;
124
124
  get description(): string;
125
125
  get topicId(): string;
126
- get topic(): string;
126
+ get topic(): string | undefined;
127
127
  get endCustomerRef(): string | undefined;
128
128
  get language(): string | undefined;
129
129
  get offer(): IssueOffer | undefined;
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.220.0-rc-cpe-1",
7
+ "version": "3.220.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",