@parra/parra-js-sdk 0.3.100 → 0.3.103
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 +28 -6
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -864,12 +864,21 @@ export interface CreateTicketRequestBody {
|
|
|
864
864
|
estimated_completion_date?: string | null;
|
|
865
865
|
icon?: TicketIcon;
|
|
866
866
|
attachments?: Array<CreateTicketAttachmentRequestBody>;
|
|
867
|
+
is_featured: boolean;
|
|
868
|
+
featured_title?: string | null;
|
|
869
|
+
featured_description?: string | null;
|
|
870
|
+
featured_image?: ImageAssetStub;
|
|
867
871
|
}
|
|
868
872
|
export declare enum ReleaseStatus {
|
|
869
873
|
pending = "pending",
|
|
870
874
|
scheduled = "scheduled",
|
|
871
875
|
released = "released"
|
|
872
876
|
}
|
|
877
|
+
export interface ReleaseHeader {
|
|
878
|
+
id: string;
|
|
879
|
+
size: Size;
|
|
880
|
+
url: string;
|
|
881
|
+
}
|
|
873
882
|
export declare enum ReleaseType {
|
|
874
883
|
major = "major",
|
|
875
884
|
minor = "minor",
|
|
@@ -894,6 +903,7 @@ export interface ReleaseStub {
|
|
|
894
903
|
tenant_id: string;
|
|
895
904
|
release_number: number;
|
|
896
905
|
status: ReleaseStatus;
|
|
906
|
+
header?: ReleaseHeader | null;
|
|
897
907
|
}
|
|
898
908
|
export interface TicketAttachment {
|
|
899
909
|
id: string;
|
|
@@ -902,6 +912,11 @@ export interface TicketAttachment {
|
|
|
902
912
|
deleted_at?: string | null;
|
|
903
913
|
attachment: ImageAssetStub;
|
|
904
914
|
}
|
|
915
|
+
export interface TicketFeatured {
|
|
916
|
+
title: string;
|
|
917
|
+
description?: string;
|
|
918
|
+
image?: ImageAssetStub;
|
|
919
|
+
}
|
|
905
920
|
export interface TicketStub {
|
|
906
921
|
id: string;
|
|
907
922
|
created_at: string;
|
|
@@ -923,6 +938,7 @@ export interface TicketStub {
|
|
|
923
938
|
tenant_id: string;
|
|
924
939
|
vote_count: number;
|
|
925
940
|
released_at?: string | null;
|
|
941
|
+
featured?: TicketFeatured;
|
|
926
942
|
}
|
|
927
943
|
export interface Ticket {
|
|
928
944
|
id: string;
|
|
@@ -945,6 +961,7 @@ export interface Ticket {
|
|
|
945
961
|
tenant_id: string;
|
|
946
962
|
vote_count: number;
|
|
947
963
|
released_at?: string | null;
|
|
964
|
+
featured?: TicketFeatured;
|
|
948
965
|
release?: ReleaseStub;
|
|
949
966
|
attachments?: Array<TicketAttachment> | null;
|
|
950
967
|
}
|
|
@@ -1015,6 +1032,10 @@ export interface UpdateTicketRequestBody {
|
|
|
1015
1032
|
estimated_start_date?: string | null;
|
|
1016
1033
|
estimated_completion_date?: string | null;
|
|
1017
1034
|
icon?: TicketIcon;
|
|
1035
|
+
is_featured?: boolean;
|
|
1036
|
+
featured_title?: string | null;
|
|
1037
|
+
featured_description?: string | null;
|
|
1038
|
+
featured_image?: ImageAssetStub;
|
|
1018
1039
|
}
|
|
1019
1040
|
export interface BulkUpdateTicketsRequestBody {
|
|
1020
1041
|
release_id?: string;
|
|
@@ -1029,6 +1050,10 @@ export interface BulkUpdateTicketsRequestBody {
|
|
|
1029
1050
|
estimated_start_date?: string | null;
|
|
1030
1051
|
estimated_completion_date?: string | null;
|
|
1031
1052
|
icon?: TicketIcon;
|
|
1053
|
+
is_featured?: boolean;
|
|
1054
|
+
featured_title?: string | null;
|
|
1055
|
+
featured_description?: string | null;
|
|
1056
|
+
featured_image?: ImageAssetStub;
|
|
1032
1057
|
ticket_ids?: Array<string>;
|
|
1033
1058
|
}
|
|
1034
1059
|
export interface UpdateReleaseForTicketRequestBody {
|
|
@@ -1085,11 +1110,6 @@ export interface ReleaseItem {
|
|
|
1085
1110
|
ticket_id: string;
|
|
1086
1111
|
ticket: Ticket;
|
|
1087
1112
|
}
|
|
1088
|
-
export interface ReleaseHeader {
|
|
1089
|
-
id: string;
|
|
1090
|
-
size: Size;
|
|
1091
|
-
url: string;
|
|
1092
|
-
}
|
|
1093
1113
|
export interface Release {
|
|
1094
1114
|
id: string;
|
|
1095
1115
|
created_at: string;
|
|
@@ -1102,8 +1122,8 @@ export interface Release {
|
|
|
1102
1122
|
tenant_id: string;
|
|
1103
1123
|
release_number: number;
|
|
1104
1124
|
status: ReleaseStatus;
|
|
1105
|
-
items?: Array<ReleaseItem> | null;
|
|
1106
1125
|
header?: ReleaseHeader | null;
|
|
1126
|
+
items?: Array<ReleaseItem> | null;
|
|
1107
1127
|
}
|
|
1108
1128
|
export interface ReleaseCollectionResponse {
|
|
1109
1129
|
page: number;
|
|
@@ -1161,6 +1181,7 @@ export interface AppReleaseStub {
|
|
|
1161
1181
|
tenant_id: string;
|
|
1162
1182
|
release_number: number;
|
|
1163
1183
|
status: ReleaseStatus;
|
|
1184
|
+
header?: ReleaseHeader | null;
|
|
1164
1185
|
}
|
|
1165
1186
|
export interface AppRelease {
|
|
1166
1187
|
id: string;
|
|
@@ -1174,6 +1195,7 @@ export interface AppRelease {
|
|
|
1174
1195
|
tenant_id: string;
|
|
1175
1196
|
release_number: number;
|
|
1176
1197
|
status: ReleaseStatus;
|
|
1198
|
+
header?: ReleaseHeader | null;
|
|
1177
1199
|
sections: Array<AppReleaseSection>;
|
|
1178
1200
|
}
|
|
1179
1201
|
export interface NewInstalledVersionInfo {
|