@parra/parra-js-sdk 0.3.34 → 0.3.36

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.
@@ -830,7 +830,7 @@ export interface CreateTicketRequestBody {
830
830
  }
831
831
  export declare enum TicketStatus {
832
832
  open = "open",
833
- planned = "planned",
833
+ planning = "planning",
834
834
  inProgress = "in_progress",
835
835
  done = "done",
836
836
  live = "live",
@@ -847,6 +847,7 @@ export interface Ticket {
847
847
  description?: string | null;
848
848
  voting_enabled: boolean;
849
849
  is_public: boolean;
850
+ ticket_number: string;
850
851
  tenant_id: string;
851
852
  vote_count: number;
852
853
  status: TicketStatus;
package/dist/ParraAPI.js CHANGED
@@ -95,7 +95,7 @@ var TicketType;
95
95
  var TicketStatus;
96
96
  (function (TicketStatus) {
97
97
  TicketStatus["open"] = "open";
98
- TicketStatus["planned"] = "planned";
98
+ TicketStatus["planning"] = "planning";
99
99
  TicketStatus["inProgress"] = "in_progress";
100
100
  TicketStatus["done"] = "done";
101
101
  TicketStatus["live"] = "live";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.34",
3
+ "version": "0.3.36",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",