npm package diff

Package: @forge/manifest

Versions: 7.8.0 - 7.8.1-next.0

File: package/out/types/display-condition-types.d.ts

Index: package/out/types/display-condition-types.d.ts
===================================================================
--- package/out/types/display-condition-types.d.ts
+++ package/out/types/display-condition-types.d.ts
@@ -2,14 +2,21 @@
     isAdmin?: boolean;
     isLoggedIn?: boolean;
     isSiteAdmin?: boolean;
 };
-declare type Jira = Product & {
+declare type Jira = Product & TimeTrackingProviderProperties & {
     hasSoftwareAccess?: boolean;
     hasServiceDeskAccess?: boolean;
     hasServiceManagementAccess?: boolean;
     hasCoreAccess?: boolean;
 };
+interface TimeTrackingProviderEnabled {
+    key: string;
+}
+interface TimeTrackingProviderProperties {
+    jiraTimeTrackingProviderEnabled?: boolean;
+    timeTrackingProviderEnabled?: TimeTrackingProviderEnabled;
+}
 declare type StringOrListOfStrings = string | string[];
 declare type IssueView = Jira & {
     issueKey?: StringOrListOfStrings;
     issueId?: StringOrListOfStrings;