@parra/parra-js-sdk 0.3.17 → 0.3.18

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.
@@ -1247,7 +1247,7 @@ declare class ParraAPI {
1247
1247
  createBoardForTenantById: (tenant_id: string, body?: CreateBoardRequestBody) => Promise<Board>;
1248
1248
  listBoardsForTenantById: (tenant_id: string) => Promise<Array<Board>>;
1249
1249
  createTicketForBoard: (tenant_id: string, board_id: string, body?: CreateTicketRequestBody) => Promise<Ticket>;
1250
- getTicketsForBoard: (tenant_id: string, board_id: string, query?: {
1250
+ paginateTicketsForBoard: (tenant_id: string, board_id: string, query?: {
1251
1251
  $select?: string;
1252
1252
  $top?: number;
1253
1253
  $skip?: number;
package/dist/ParraAPI.js CHANGED
@@ -467,7 +467,7 @@ var ParraAPI = /** @class */ (function () {
467
467
  },
468
468
  });
469
469
  };
470
- this.getTicketsForBoard = function (tenant_id, board_id, query) {
470
+ this.paginateTicketsForBoard = function (tenant_id, board_id, query) {
471
471
  return _this.http.execute("".concat(_this.options.baseUrl, "/v1/tenants/").concat(tenant_id, "/boards/").concat(board_id, "/tickets"), {
472
472
  method: "get",
473
473
  query: query,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.17",
3
+ "version": "0.3.18",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",