@parra/parra-js-sdk 0.3.51 → 0.3.52
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 +4 -4
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -840,7 +840,7 @@ export interface CreateTicketRequestBody {
|
|
|
840
840
|
title: string;
|
|
841
841
|
type: TicketType;
|
|
842
842
|
status: TicketStatus;
|
|
843
|
-
priority?: TicketPriority;
|
|
843
|
+
priority?: TicketPriority | null;
|
|
844
844
|
description?: string | null;
|
|
845
845
|
voting_enabled: boolean;
|
|
846
846
|
is_public: boolean;
|
|
@@ -884,7 +884,7 @@ export interface TicketStub {
|
|
|
884
884
|
title: string;
|
|
885
885
|
type: TicketType;
|
|
886
886
|
status: TicketStatus;
|
|
887
|
-
priority?: TicketPriority;
|
|
887
|
+
priority?: TicketPriority | null;
|
|
888
888
|
description?: string | null;
|
|
889
889
|
voting_enabled: boolean;
|
|
890
890
|
is_public: boolean;
|
|
@@ -901,7 +901,7 @@ export interface Ticket {
|
|
|
901
901
|
title: string;
|
|
902
902
|
type: TicketType;
|
|
903
903
|
status: TicketStatus;
|
|
904
|
-
priority?: TicketPriority;
|
|
904
|
+
priority?: TicketPriority | null;
|
|
905
905
|
description?: string | null;
|
|
906
906
|
voting_enabled: boolean;
|
|
907
907
|
is_public: boolean;
|
|
@@ -965,7 +965,7 @@ export interface UpdateTicketRequestBody {
|
|
|
965
965
|
title?: string;
|
|
966
966
|
type?: TicketType;
|
|
967
967
|
status?: TicketStatus;
|
|
968
|
-
priority?: TicketPriority;
|
|
968
|
+
priority?: TicketPriority | null;
|
|
969
969
|
description?: string | null;
|
|
970
970
|
voting_enabled?: boolean;
|
|
971
971
|
is_public?: boolean;
|