@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.
@@ -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: FeedbackFormDataStub;
1202
+ form?: FeedbackFormDataStub;
1203
+ tabs: Array<RoadmapConfigurationTab>;
1196
1204
  }
1197
1205
  export interface AppReleaseCollectionResponse {
1198
1206
  page: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.99",
3
+ "version": "0.3.101",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",