@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.
- package/dist/ParraAPI.d.ts +2 -1
- package/dist/ParraAPI.js +1 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -830,7 +830,7 @@ export interface CreateTicketRequestBody {
|
|
|
830
830
|
}
|
|
831
831
|
export declare enum TicketStatus {
|
|
832
832
|
open = "open",
|
|
833
|
-
|
|
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["
|
|
98
|
+
TicketStatus["planning"] = "planning";
|
|
99
99
|
TicketStatus["inProgress"] = "in_progress";
|
|
100
100
|
TicketStatus["done"] = "done";
|
|
101
101
|
TicketStatus["live"] = "live";
|