@arrowsphere/api-client 3.51.0 → 3.51.1-rc.ckh.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,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.51.1] - 2023-09-11
7
+
8
+ ### Changed
9
+
10
+ - Fix support center pagination issues
11
+
6
12
  ## [3.51.0] - 2023-08-21
7
13
 
8
14
  ### Fetch User infos
@@ -15,7 +15,10 @@ export declare enum ListIssueParametersFields {
15
15
  SKU = "sku",
16
16
  SORT = "sort",
17
17
  STATUSES = "statuses",
18
- TITLE = "title"
18
+ TITLE = "title",
19
+ PAGE = "page",
20
+ PER_PAGE = "per_page",
21
+ PER_PAGE_CAMEL = "perPage"
19
22
  }
20
23
  export declare type ListIssueParametersType = ParametersWithPaginationType & {
21
24
  [ListIssueParametersFields.DIR]?: string;
@@ -17,6 +17,9 @@ var ListIssueParametersFields;
17
17
  ListIssueParametersFields["SORT"] = "sort";
18
18
  ListIssueParametersFields["STATUSES"] = "statuses";
19
19
  ListIssueParametersFields["TITLE"] = "title";
20
+ ListIssueParametersFields["PAGE"] = "page";
21
+ ListIssueParametersFields["PER_PAGE"] = "per_page";
22
+ ListIssueParametersFields["PER_PAGE_CAMEL"] = "perPage";
20
23
  })(ListIssueParametersFields = exports.ListIssueParametersFields || (exports.ListIssueParametersFields = {}));
21
24
  class SupportCenterClient extends abstractRestfulClient_1.AbstractRestfulClient {
22
25
  constructor() {
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.51.0",
7
+ "version": "3.51.1-rc.ckh.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",