@parra/parra-js-sdk 0.3.87 → 0.3.89
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 +16 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -820,6 +820,7 @@ export declare enum TicketPriority {
|
|
|
820
820
|
}
|
|
821
821
|
export interface CreateTicketRequestBody {
|
|
822
822
|
title: string;
|
|
823
|
+
short_title?: string | null;
|
|
823
824
|
type: TicketType;
|
|
824
825
|
status: TicketStatus;
|
|
825
826
|
priority?: TicketPriority | null;
|
|
@@ -827,6 +828,7 @@ export interface CreateTicketRequestBody {
|
|
|
827
828
|
voting_enabled: boolean;
|
|
828
829
|
is_public: boolean;
|
|
829
830
|
user_note_id?: string | null;
|
|
831
|
+
estimated_completion_date?: string | null;
|
|
830
832
|
}
|
|
831
833
|
export declare enum ReleaseStatus {
|
|
832
834
|
pending = "pending",
|
|
@@ -864,6 +866,7 @@ export interface TicketStub {
|
|
|
864
866
|
updated_at: string;
|
|
865
867
|
deleted_at?: string | null;
|
|
866
868
|
title: string;
|
|
869
|
+
short_title?: string | null;
|
|
867
870
|
type: TicketType;
|
|
868
871
|
status: TicketStatus;
|
|
869
872
|
priority?: TicketPriority | null;
|
|
@@ -871,9 +874,11 @@ export interface TicketStub {
|
|
|
871
874
|
voting_enabled: boolean;
|
|
872
875
|
is_public: boolean;
|
|
873
876
|
user_note_id?: string | null;
|
|
877
|
+
estimated_completion_date?: string | null;
|
|
874
878
|
ticket_number: string;
|
|
875
879
|
tenant_id: string;
|
|
876
880
|
vote_count: number;
|
|
881
|
+
released_at?: string | null;
|
|
877
882
|
}
|
|
878
883
|
export interface Ticket {
|
|
879
884
|
id: string;
|
|
@@ -881,6 +886,7 @@ export interface Ticket {
|
|
|
881
886
|
updated_at: string;
|
|
882
887
|
deleted_at?: string | null;
|
|
883
888
|
title: string;
|
|
889
|
+
short_title?: string | null;
|
|
884
890
|
type: TicketType;
|
|
885
891
|
status: TicketStatus;
|
|
886
892
|
priority?: TicketPriority | null;
|
|
@@ -888,9 +894,11 @@ export interface Ticket {
|
|
|
888
894
|
voting_enabled: boolean;
|
|
889
895
|
is_public: boolean;
|
|
890
896
|
user_note_id?: string | null;
|
|
897
|
+
estimated_completion_date?: string | null;
|
|
891
898
|
ticket_number: string;
|
|
892
899
|
tenant_id: string;
|
|
893
900
|
vote_count: number;
|
|
901
|
+
released_at?: string | null;
|
|
894
902
|
release?: ReleaseStub;
|
|
895
903
|
}
|
|
896
904
|
export interface TicketCollectionResponse {
|
|
@@ -946,22 +954,26 @@ export interface LinkUserNoteRequestBody {
|
|
|
946
954
|
export interface UpdateTicketRequestBody {
|
|
947
955
|
release_id?: string;
|
|
948
956
|
title?: string;
|
|
957
|
+
short_title?: string;
|
|
949
958
|
type?: TicketType;
|
|
950
959
|
status?: TicketStatus;
|
|
951
960
|
priority?: TicketPriority | null;
|
|
952
961
|
description?: string | null;
|
|
953
962
|
voting_enabled?: boolean;
|
|
954
963
|
is_public?: boolean;
|
|
964
|
+
estimated_completion_date?: string | null;
|
|
955
965
|
}
|
|
956
966
|
export interface BulkUpdateTicketsRequestBody {
|
|
957
967
|
release_id?: string;
|
|
958
968
|
title?: string;
|
|
969
|
+
short_title?: string;
|
|
959
970
|
type?: TicketType;
|
|
960
971
|
status?: TicketStatus;
|
|
961
972
|
priority?: TicketPriority | null;
|
|
962
973
|
description?: string | null;
|
|
963
974
|
voting_enabled?: boolean;
|
|
964
975
|
is_public?: boolean;
|
|
976
|
+
estimated_completion_date?: string | null;
|
|
965
977
|
ticket_ids?: Array<string>;
|
|
966
978
|
}
|
|
967
979
|
export interface UpdateReleaseForTicketRequestBody {
|
|
@@ -979,6 +991,7 @@ export interface UserTicket {
|
|
|
979
991
|
updated_at: string;
|
|
980
992
|
deleted_at?: string | null;
|
|
981
993
|
title: string;
|
|
994
|
+
short_title?: string | null;
|
|
982
995
|
type: TicketType;
|
|
983
996
|
description?: string | null;
|
|
984
997
|
status: TicketStatus;
|
|
@@ -987,6 +1000,9 @@ export interface UserTicket {
|
|
|
987
1000
|
vote_count: number;
|
|
988
1001
|
voting_enabled: boolean;
|
|
989
1002
|
voted: boolean;
|
|
1003
|
+
ticket_number: string;
|
|
1004
|
+
estimated_completion_date?: string | null;
|
|
1005
|
+
released_at?: string | null;
|
|
990
1006
|
}
|
|
991
1007
|
export interface ReleaseVersionInfoRequestBody {
|
|
992
1008
|
type: ReleaseType;
|