@parra/parra-js-sdk 0.3.88 → 0.3.90
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 +5 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -954,7 +954,7 @@ export interface LinkUserNoteRequestBody {
|
|
|
954
954
|
export interface UpdateTicketRequestBody {
|
|
955
955
|
release_id?: string;
|
|
956
956
|
title?: string;
|
|
957
|
-
short_title?: string;
|
|
957
|
+
short_title?: string | null;
|
|
958
958
|
type?: TicketType;
|
|
959
959
|
status?: TicketStatus;
|
|
960
960
|
priority?: TicketPriority | null;
|
|
@@ -966,7 +966,7 @@ export interface UpdateTicketRequestBody {
|
|
|
966
966
|
export interface BulkUpdateTicketsRequestBody {
|
|
967
967
|
release_id?: string;
|
|
968
968
|
title?: string;
|
|
969
|
-
short_title?: string;
|
|
969
|
+
short_title?: string | null;
|
|
970
970
|
type?: TicketType;
|
|
971
971
|
status?: TicketStatus;
|
|
972
972
|
priority?: TicketPriority | null;
|
|
@@ -991,6 +991,7 @@ export interface UserTicket {
|
|
|
991
991
|
updated_at: string;
|
|
992
992
|
deleted_at?: string | null;
|
|
993
993
|
title: string;
|
|
994
|
+
short_title?: string | null;
|
|
994
995
|
type: TicketType;
|
|
995
996
|
description?: string | null;
|
|
996
997
|
status: TicketStatus;
|
|
@@ -1000,6 +1001,8 @@ export interface UserTicket {
|
|
|
1000
1001
|
voting_enabled: boolean;
|
|
1001
1002
|
voted: boolean;
|
|
1002
1003
|
ticket_number: string;
|
|
1004
|
+
estimated_completion_date?: string | null;
|
|
1005
|
+
released_at?: string | null;
|
|
1003
1006
|
}
|
|
1004
1007
|
export interface ReleaseVersionInfoRequestBody {
|
|
1005
1008
|
type: ReleaseType;
|