npm package diff

Package: @forge/cli-shared

Versions: 5.4.1-next.4 - 5.4.1-next.5

File: package/out/graphql/graphql-types.d.ts

Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -4084,8 +4084,9 @@
     node?: Maybe<CompassComponentTypeObject>;
 };
 export declare type CompassComponentTypeObject = {
     __typename?: 'CompassComponentTypeObject';
+    componentCount?: Maybe<Scalars['Int']['output']>;
     description?: Maybe<Scalars['String']['output']>;
     fieldDefinitions?: Maybe<CompassFieldDefinitionsResult>;
     iconUrl?: Maybe<Scalars['String']['output']>;
     id: Scalars['ID']['output'];
@@ -37128,8 +37129,9 @@
     entityType: HelpObjectStoreSearchEntityType;
     portalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
     queryTerm: Scalars['String']['input'];
     resultLimit?: InputMaybe<Scalars['Int']['input']>;
+    skipSearchingRestrictedPages?: InputMaybe<Scalars['Boolean']['input']>;
 };
 export declare type HelpObjectStoreSearchMetaData = {
     __typename?: 'HelpObjectStoreSearchMetaData';
     searchScore: Scalars['Float']['output'];
@@ -38714,8 +38716,9 @@
     issue?: Maybe<JiraIssue>;
     mediaApiFileId?: Maybe<Scalars['String']['output']>;
     mediaReadToken?: Maybe<Scalars['String']['output']>;
     mimeType?: Maybe<Scalars['String']['output']>;
+    parent?: Maybe<JiraAttachmentParentName>;
     parentId?: Maybe<Scalars['String']['output']>;
     parentName?: Maybe<Scalars['String']['output']>;
 };
 export declare type JiraAttachmentMediaReadTokenArgs = {
@@ -38758,8 +38761,17 @@
     dateRange?: InputMaybe<JiraDateTimeRange>;
     fileName?: InputMaybe<Scalars['String']['input']>;
     mimeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
 };
+export declare enum JiraAttachmentParentName {
+    Comment = "COMMENT",
+    Customfield = "CUSTOMFIELD",
+    Description = "DESCRIPTION",
+    Environment = "ENVIRONMENT",
+    Form = "FORM",
+    Issue = "ISSUE",
+    Worklog = "WORKLOG"
+}
 export declare type JiraAttachmentSearchViewContext = {
     __typename?: 'JiraAttachmentSearchViewContext';
     matchesSearch: Scalars['Boolean']['output'];
     nextAttachmentId?: Maybe<Scalars['ID']['output']>;
@@ -45907,8 +45919,9 @@
     issue?: Maybe<JiraIssue>;
     mediaApiFileId?: Maybe<Scalars['String']['output']>;
     mediaReadToken?: Maybe<Scalars['String']['output']>;
     mimeType?: Maybe<Scalars['String']['output']>;
+    parent?: Maybe<JiraAttachmentParentName>;
     parentId?: Maybe<Scalars['String']['output']>;
     parentName?: Maybe<Scalars['String']['output']>;
     searchViewContext?: Maybe<JiraAttachmentSearchViewContext>;
 };
@@ -48667,8 +48680,9 @@
     issue?: Maybe<JiraIssue>;
     mediaApiFileId?: Maybe<Scalars['String']['output']>;
     mediaReadToken?: Maybe<Scalars['String']['output']>;
     mimeType?: Maybe<Scalars['String']['output']>;
+    parent?: Maybe<JiraAttachmentParentName>;
     parentCommentVisibility?: Maybe<JiraServiceManagementCommentVisibility>;
     parentId?: Maybe<Scalars['String']['output']>;
     parentName?: Maybe<Scalars['String']['output']>;
 };
@@ -50037,8 +50051,12 @@
     errors?: Maybe<Array<MutationError>>;
     field?: Maybe<JiraNumberField>;
     success: Scalars['Boolean']['output'];
 };
+export declare type JiraStreamHubResourceIdentifier = {
+    __typename?: 'JiraStreamHubResourceIdentifier';
+    resource?: Maybe<Scalars['ID']['output']>;
+};
 export declare type JiraSubmitBulkOperationInput = {
     bulkOperationInput: JiraBulkOperationInput;
     bulkOperationType: JiraBulkOperationType;
 };
@@ -50059,8 +50077,11 @@
     bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
     onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
     onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
     onAutodevJobUpdated?: Maybe<JiraAutodevJobConnection>;
+    onCalendarIssueCreated?: Maybe<JiraCalendar>;
+    onCalendarIssueDeleted?: Maybe<JiraStreamHubResourceIdentifier>;
+    onCalendarIssueUpdated?: Maybe<JiraCalendar>;
     onIssueCreatedByProject?: Maybe<JiraIssue>;
     onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
     onIssueExported?: Maybe<JiraIssueExportEvent>;
     onIssueUpdatedByProject?: Maybe<JiraIssue>;
@@ -50072,9 +50093,9 @@
     onSuggestedChildIssue?: Maybe<JiraOnSuggestedChildIssueResult>;
 };
 export declare type JiraSubscriptionBulkOperationProgressSubscriptionArgs = {
     cloudId: Scalars['ID']['input'];
-    taskId: Scalars['ID']['input'];
+    subscriptionId: Scalars['ID']['input'];
 };
 export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
     cloudId: Scalars['ID']['input'];
     projectIds: Array<Scalars['String']['input']>;
@@ -50086,8 +50107,24 @@
 export declare type JiraSubscriptionOnAutodevJobUpdatedArgs = {
     issueAri: Scalars['ID']['input'];
     jobId: Scalars['ID']['input'];
 };
+export declare type JiraSubscriptionOnCalendarIssueCreatedArgs = {
+    cloudId: Scalars['ID']['input'];
+    configuration?: InputMaybe<JiraCalendarViewConfigurationInput>;
+    projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
+    scope?: InputMaybe<JiraViewScopeInput>;
+};
+export declare type JiraSubscriptionOnCalendarIssueDeletedArgs = {
+    cloudId: Scalars['ID']['input'];
+    projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
+};
+export declare type JiraSubscriptionOnCalendarIssueUpdatedArgs = {
+    cloudId: Scalars['ID']['input'];
+    configuration?: InputMaybe<JiraCalendarViewConfigurationInput>;
+    projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
+    scope?: InputMaybe<JiraViewScopeInput>;
+};
 export declare type JiraSubscriptionOnIssueCreatedByProjectArgs = {
     cloudId: Scalars['ID']['input'];
     projectId: Scalars['String']['input'];
 };
@@ -53856,9 +53893,9 @@
     versions: Array<MarketplaceConsoleAppSoftwareVersion>;
 };
 export declare type MarketplaceConsoleAppSoftwares = {
     __typename?: 'MarketplaceConsoleAppSoftwares';
-    appSoftwares?: Maybe<Array<MarketplaceConsoleAppSoftwareShort>>;
+    appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
 };
 export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
     appId?: InputMaybe<Scalars['ID']['input']>;
     appSoftwareId?: InputMaybe<Scalars['ID']['input']>;
@@ -66710,8 +66747,12 @@
     card?: Maybe<TrelloCard>;
     errors?: Maybe<Array<MutationError>>;
     success: Scalars['Boolean']['output'];
 };
+export declare type TrelloAtlassianIntelligence = {
+    __typename?: 'TrelloAtlassianIntelligence';
+    enabled?: Maybe<Scalars['Boolean']['output']>;
+};
 export declare type TrelloAttachment = {
     __typename?: 'TrelloAttachment';
     bytes?: Maybe<Scalars['Float']['output']>;
     date?: Maybe<Scalars['DateTime']['output']>;
@@ -67311,9 +67352,14 @@
     __typename?: 'TrelloEnterprise';
     displayName?: Maybe<Scalars['String']['output']>;
     id: Scalars['ID']['output'];
     objectId: Scalars['ID']['output'];
+    prefs: TrelloEnterprisePrefs;
 };
+export declare type TrelloEnterprisePrefs = {
+    __typename?: 'TrelloEnterprisePrefs';
+    atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
+};
 export declare type TrelloImagePreview = {
     __typename?: 'TrelloImagePreview';
     bytes?: Maybe<Scalars['Float']['output']>;
     height?: Maybe<Scalars['Float']['output']>;
@@ -68245,11 +68291,15 @@
     aaid: Scalars['String']['input'];
     connectedProductsReferenceId: Scalars['String']['input'];
     parentAccountInternalId: Scalars['String']['input'];
 };
+export declare type UnifiedMutationCreateParentAccountArgs = {
+    parentAccountEmailId: Scalars['String']['input'];
+};
 export declare type UnifiedMutationCreateUnifiedSystemArgs = {
     aaid: Scalars['String']['input'];
     name?: InputMaybe<Scalars['String']['input']>;
+    parentAccountEmailId: Scalars['String']['input'];
     unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type UnifiedMutationUpdateUnifiedProfileArgs = {
     unifiedProfileInput?: InputMaybe<UnifiedProfileInput>;
@@ -68273,8 +68323,9 @@
 };
 export declare type UnifiedParentAccount = UnifiedINode & {
     __typename?: 'UnifiedParentAccount';
     id: Scalars['ID']['output'];
+    parentAccountEmailId?: Maybe<Scalars['String']['output']>;
     parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
 };
 export declare type UnifiedParentAccountPayload = UnifiedPayload & {
     __typename?: 'UnifiedParentAccountPayload';