npm package diff

Package: @forge/cli-shared

Versions: 5.4.0-next.0-experimental-9332276 - 5.4.0-next.1

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
@@ -4461,8 +4461,9 @@
     createScorecards?: Maybe<CompassCustomPermissionConfig>;
     deleteCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
     editCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
     modifyScorecard?: Maybe<CompassCustomPermissionConfig>;
+    preset?: Maybe<Scalars['String']['output']>;
     viewCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
 };
 export declare type CompassCustomPermissionConfigsResult = CompassCustomPermissionConfigs | QueryError;
 export declare enum CompassCustomPermissionPreset {
@@ -43984,8 +43985,9 @@
     updateNumberField?: Maybe<JiraNumberFieldPayload>;
     updateParentField?: Maybe<JiraParentFieldPayload>;
     updatePeopleField?: Maybe<JiraPeopleFieldPayload>;
     updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
+    updateProjectAvatar?: Maybe<JiraProjectUpdateAvatarMutationPayload>;
     updateProjectField?: Maybe<JiraProjectFieldPayload>;
     updateProjectName?: Maybe<JiraProjectUpdateNameMutationPayload>;
     updateProjectNotificationPreferences?: Maybe<JiraUpdateProjectNotificationPreferencesPayload>;
     updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
@@ -44405,8 +44407,11 @@
 };
 export declare type JiraMutationUpdatePriorityFieldArgs = {
     input: JiraUpdatePriorityFieldInput;
 };
+export declare type JiraMutationUpdateProjectAvatarArgs = {
+    input: JiraProjectUpdateAvatarInput;
+};
 export declare type JiraMutationUpdateProjectFieldArgs = {
     input: JiraUpdateProjectFieldInput;
 };
 export declare type JiraMutationUpdateProjectNameArgs = {
@@ -46183,8 +46188,19 @@
     __typename?: 'JiraProjectTypeDetailsEdge';
     cursor: Scalars['String']['output'];
     node?: Maybe<JiraProjectTypeDetails>;
 };
+export declare type JiraProjectUpdateAvatarInput = {
+    avatarId: Scalars['ID']['input'];
+    cloudId: Scalars['ID']['input'];
+    projectIdOrKey: Scalars['String']['input'];
+};
+export declare type JiraProjectUpdateAvatarMutationPayload = Payload & {
+    __typename?: 'JiraProjectUpdateAvatarMutationPayload';
+    errors?: Maybe<Array<MutationError>>;
+    project?: Maybe<JiraProject>;
+    success: Scalars['Boolean']['output'];
+};
 export declare type JiraProjectUpdateNameInput = {
     cloudId: Scalars['ID']['input'];
     name: Scalars['String']['input'];
     projectIdOrKey: Scalars['String']['input'];
@@ -46585,12 +46601,12 @@
 export declare type JiraQueryGetArchivedIssuesFilterOptionsArgs = {
     projectId: Scalars['ID']['input'];
 };
 export declare type JiraQueryGetArchivedIssuesForProjectArgs = {
-    after?: InputMaybe<Scalars['String']['input']>;
     cloudId: Scalars['ID']['input'];
     filterBy?: InputMaybe<JiraArchivedIssuesFilterInput>;
     first?: InputMaybe<Scalars['Int']['input']>;
+    last?: InputMaybe<Scalars['Int']['input']>;
     searchBy?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
     cloudId: Scalars['ID']['input'];
@@ -52851,8 +52867,24 @@
     __typename?: 'LpBunchballBadgeEdge';
     cursor: Scalars['String']['output'];
     node?: Maybe<LpBunchballBadge>;
 };
+export declare type LpBunchballBadgeResult = LpBunchballBadgeConnection | QueryError;
+export declare type LpCertSort = {
+    sortDirection?: InputMaybe<SortDirection>;
+    sortField?: InputMaybe<LpCertSortField>;
+};
+export declare enum LpCertSortField {
+    ActiveDate = "ACTIVE_DATE",
+    ExpireDate = "EXPIRE_DATE",
+    Id = "ID",
+    ImageUrl = "IMAGE_URL",
+    Name = "NAME",
+    NameAbbr = "NAME_ABBR",
+    PublicUrl = "PUBLIC_URL",
+    Status = "STATUS",
+    Type = "TYPE"
+}
 export declare enum LpCertStatus {
     Active = "ACTIVE",
     Expired = "EXPIRED"
 }
@@ -52883,8 +52915,14 @@
     __typename?: 'LpCertmetricsCertificateEdge';
     cursor: Scalars['String']['output'];
     node?: Maybe<LpCertmetricsCertificate>;
 };
+export declare type LpCertmetricsCertificateResult = LpCertmetricsCertificateConnection | QueryError;
+export declare type LpConnectionQueryErrorExtension = QueryErrorExtension & {
+    __typename?: 'LpConnectionQueryErrorExtension';
+    errorType?: Maybe<Scalars['String']['output']>;
+    statusCode?: Maybe<Scalars['Int']['output']>;
+};
 export declare type LpCourseProgress = {
     __typename?: 'LpCourseProgress';
     completedDate?: Maybe<Scalars['String']['output']>;
     courseId?: Maybe<Scalars['String']['output']>;
@@ -52904,18 +52942,31 @@
     __typename?: 'LpCourseProgressEdge';
     cursor: Scalars['String']['output'];
     node?: Maybe<LpCourseProgress>;
 };
+export declare type LpCourseProgressResult = LpCourseProgressConnection | QueryError;
+export declare type LpCourseSort = {
+    sortDirection?: InputMaybe<SortDirection>;
+    sortField?: InputMaybe<LpCourseSortField>;
+};
+export declare enum LpCourseSortField {
+    CompletedDate = "COMPLETED_DATE",
+    CourseId = "COURSE_ID",
+    Id = "ID",
+    Status = "STATUS",
+    Title = "TITLE",
+    Url = "URL"
+}
 export declare enum LpCourseStatus {
     Completed = "COMPLETED",
     InProgress = "IN_PROGRESS"
 }
 export declare type LpLearner = Node & {
     __typename?: 'LpLearner';
     atlassianId: Scalars['String']['output'];
-    bunchballBadges?: Maybe<LpBunchballBadgeConnection>;
-    certmetricsCertificates?: Maybe<LpCertmetricsCertificateConnection>;
-    courses?: Maybe<LpCourseProgressConnection>;
+    bunchballBadges?: Maybe<LpBunchballBadgeResult>;
+    certmetricsCertificates?: Maybe<LpCertmetricsCertificateResult>;
+    courses?: Maybe<LpCourseProgressResult>;
     id: Scalars['ID']['output'];
 };
 export declare type LpLearnerBunchballBadgesArgs = {
     after?: InputMaybe<Scalars['String']['input']>;
@@ -52927,17 +52978,18 @@
     after?: InputMaybe<Scalars['String']['input']>;
     before?: InputMaybe<Scalars['String']['input']>;
     first?: InputMaybe<Scalars['Int']['input']>;
     last?: InputMaybe<Scalars['Int']['input']>;
+    sorting?: InputMaybe<LpCertSort>;
     status?: InputMaybe<LpCertStatus>;
     type?: InputMaybe<Array<InputMaybe<LpCertType>>>;
 };
 export declare type LpLearnerCoursesArgs = {
     after?: InputMaybe<Scalars['String']['input']>;
     before?: InputMaybe<Scalars['String']['input']>;
-    dateCompletedSortOrder?: InputMaybe<LpSortOrder>;
     first?: InputMaybe<Scalars['Int']['input']>;
     last?: InputMaybe<Scalars['Int']['input']>;
+    sorting?: InputMaybe<LpCourseSort>;
     status?: InputMaybe<LpCourseStatus>;
 };
 export declare type LpLearnerData = {
     __typename?: 'LpLearnerData';
@@ -62506,8 +62558,9 @@
     id: Scalars['ID']['output'];
     initialContributors?: Maybe<Array<ThirdPartyUser>>;
     l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
     lastModifiedDate?: Maybe<Scalars['String']['output']>;
+    linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
     mentions?: Maybe<Array<ThirdPartyUser>>;
     scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
     title: Scalars['String']['output'];
     type: SearchResultType;
@@ -66478,8 +66531,9 @@
 };
 export declare type TrelloLabel = {
     __typename?: 'TrelloLabel';
     color?: Maybe<Scalars['String']['output']>;
+    id: Scalars['ID']['output'];
     name?: Maybe<Scalars['String']['output']>;
     objectId: Scalars['ID']['output'];
     uses?: Maybe<Scalars['Int']['output']>;
 };
@@ -66637,8 +66691,9 @@
     unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
     unwatchCard?: Maybe<TrelloWatchCardPayload>;
     updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
     updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
+    updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
     updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
     watchCard?: Maybe<TrelloWatchCardPayload>;
 };
 export declare type TrelloMutationApiAddMemberToCardArgs = {
@@ -66667,8 +66722,11 @@
 };
 export declare type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
     input: TrelloUpdateBoardViewerAiEmailInput;
 };
+export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
+    input: TrelloUpdateBoardViewerShowCompactMirrorCardInput;
+};
 export declare type TrelloMutationApiUpdateCardNameArgs = {
     input: TrelloUpdateCardNameInput;
 };
 export declare type TrelloMutationApiWatchCardArgs = {
@@ -66919,8 +66977,18 @@
     errors?: Maybe<Array<MutationError>>;
     success: Scalars['Boolean']['output'];
     viewer?: Maybe<TrelloBoardViewer>;
 };
+export declare type TrelloUpdateBoardViewerShowCompactMirrorCardInput = {
+    boardId: Scalars['ID']['input'];
+    value: Scalars['Boolean']['input'];
+};
+export declare type TrelloUpdateBoardViewerShowCompactMirrorCardPayload = Payload & {
+    __typename?: 'TrelloUpdateBoardViewerShowCompactMirrorCardPayload';
+    errors?: Maybe<Array<MutationError>>;
+    success: Scalars['Boolean']['output'];
+    viewer?: Maybe<TrelloBoardViewer>;
+};
 export declare type TrelloUpdateCardNameInput = {
     cardId: Scalars['ID']['input'];
     name?: InputMaybe<Scalars['String']['input']>;
 };
@@ -68730,11 +68798,12 @@
     url: Scalars['String']['output'];
 };
 export declare type WorkSuggestionsByProjectsResponse = {
     __typename?: 'WorkSuggestionsByProjectsResponse';
-    autoDevJobsSuggestions: Array<WorkSuggestionsAutoDevJobTask>;
-    commonSuggestions: WorkSuggestionsConnection;
-    sortOrder: WorkSuggestionsOrder;
+    autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
+    commonSuggestions?: Maybe<WorkSuggestionsConnection>;
+    pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
+    sortOrder?: Maybe<WorkSuggestionsOrder>;
 };
 export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
     first?: InputMaybe<Scalars['Int']['input']>;
 };
@@ -68914,8 +68983,46 @@
 export declare type WorkSuggestionsOrder = {
     __typename?: 'WorkSuggestionsOrder';
     defaultOrder: Array<Scalars['ID']['output']>;
 };
+export declare type WorkSuggestionsOrderScore = {
+    __typename?: 'WorkSuggestionsOrderScore';
+    byTaskType?: Maybe<WorkSuggestionsOrderScores>;
+};
+export declare type WorkSuggestionsOrderScores = {
+    __typename?: 'WorkSuggestionsOrderScores';
+    major: Scalars['Int']['output'];
+    minor?: Maybe<Scalars['Int']['output']>;
+};
+export declare type WorkSuggestionsPrComment = {
+    __typename?: 'WorkSuggestionsPRComment';
+    avatar?: Maybe<Scalars['String']['output']>;
+    commenterName: Scalars['String']['output'];
+    createdOn: Scalars['String']['output'];
+    text: Scalars['String']['output'];
+    url: Scalars['String']['output'];
+};
+export declare type WorkSuggestionsPrCommentsTask = WorkSuggestionsPeriscopeTask & {
+    __typename?: 'WorkSuggestionsPRCommentsTask';
+    approvalsCount: Scalars['Int']['output'];
+    commentCount: Scalars['Int']['output'];
+    comments?: Maybe<Array<WorkSuggestionsPrComment>>;
+    destinationBranchName?: Maybe<Scalars['String']['output']>;
+    id: Scalars['String']['output'];
+    orderScore?: Maybe<WorkSuggestionsOrderScore>;
+    providerIconUrl?: Maybe<Scalars['String']['output']>;
+    providerName?: Maybe<Scalars['String']['output']>;
+    repositoryName?: Maybe<Scalars['String']['output']>;
+    sourceBranchName?: Maybe<Scalars['String']['output']>;
+    title: Scalars['String']['output'];
+    url: Scalars['String']['output'];
+};
+export declare type WorkSuggestionsPeriscopeTask = {
+    id: Scalars['String']['output'];
+    orderScore?: Maybe<WorkSuggestionsOrderScore>;
+    title: Scalars['String']['output'];
+    url: Scalars['String']['output'];
+};
 export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
     __typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
     commentCount: Scalars['Int']['output'];
     destinationBranchName?: Maybe<Scalars['String']['output']>;