@parra/parra-js-sdk 0.3.99 → 0.3.100
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 +8 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1191,8 +1191,15 @@ export interface UserTicketCollectionResponse {
|
|
|
1191
1191
|
total_count: number;
|
|
1192
1192
|
data: Array<UserTicket>;
|
|
1193
1193
|
}
|
|
1194
|
+
export interface RoadmapConfigurationTab {
|
|
1195
|
+
id: string;
|
|
1196
|
+
title: string;
|
|
1197
|
+
key: string;
|
|
1198
|
+
description?: string | null;
|
|
1199
|
+
}
|
|
1194
1200
|
export interface AppRoadmapConfiguration {
|
|
1195
|
-
form
|
|
1201
|
+
form?: FeedbackFormDataStub;
|
|
1202
|
+
tabs: Array<RoadmapConfigurationTab>;
|
|
1196
1203
|
}
|
|
1197
1204
|
export interface AppReleaseCollectionResponse {
|
|
1198
1205
|
page: number;
|