@parra/parra-js-sdk 0.3.99 → 0.3.101
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 +9 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1175,6 +1175,7 @@ export interface AppRelease {
|
|
|
1175
1175
|
release_number: number;
|
|
1176
1176
|
status: ReleaseStatus;
|
|
1177
1177
|
sections: Array<AppReleaseSection>;
|
|
1178
|
+
header?: ReleaseHeader | null;
|
|
1178
1179
|
}
|
|
1179
1180
|
export interface NewInstalledVersionInfo {
|
|
1180
1181
|
configuration: AppReleaseConfiguration;
|
|
@@ -1191,8 +1192,15 @@ export interface UserTicketCollectionResponse {
|
|
|
1191
1192
|
total_count: number;
|
|
1192
1193
|
data: Array<UserTicket>;
|
|
1193
1194
|
}
|
|
1195
|
+
export interface RoadmapConfigurationTab {
|
|
1196
|
+
id: string;
|
|
1197
|
+
title: string;
|
|
1198
|
+
key: string;
|
|
1199
|
+
description?: string | null;
|
|
1200
|
+
}
|
|
1194
1201
|
export interface AppRoadmapConfiguration {
|
|
1195
|
-
form
|
|
1202
|
+
form?: FeedbackFormDataStub;
|
|
1203
|
+
tabs: Array<RoadmapConfigurationTab>;
|
|
1196
1204
|
}
|
|
1197
1205
|
export interface AppReleaseCollectionResponse {
|
|
1198
1206
|
page: number;
|