@forge/cli-shared 5.4.0-next.0-experimental-9332276 → 5.4.0-next.1
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/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 5.4.0-next.
|
|
3
|
+
## 5.4.0-next.1
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- Updated dependencies [562a25c]
|
|
8
|
+
- @forge/manifest@7.5.4-next.0
|
|
8
9
|
|
|
9
10
|
## 5.4.0-next.0
|
|
10
11
|
|
|
@@ -4462,6 +4462,7 @@ export declare type CompassCustomPermissionConfigs = {
|
|
|
4462
4462
|
deleteCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4463
4463
|
editCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4464
4464
|
modifyScorecard?: Maybe<CompassCustomPermissionConfig>;
|
|
4465
|
+
preset?: Maybe<Scalars['String']['output']>;
|
|
4465
4466
|
viewCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4466
4467
|
};
|
|
4467
4468
|
export declare type CompassCustomPermissionConfigsResult = CompassCustomPermissionConfigs | QueryError;
|
|
@@ -43985,6 +43986,7 @@ export declare type JiraMutation = {
|
|
|
43985
43986
|
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
43986
43987
|
updatePeopleField?: Maybe<JiraPeopleFieldPayload>;
|
|
43987
43988
|
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
43989
|
+
updateProjectAvatar?: Maybe<JiraProjectUpdateAvatarMutationPayload>;
|
|
43988
43990
|
updateProjectField?: Maybe<JiraProjectFieldPayload>;
|
|
43989
43991
|
updateProjectName?: Maybe<JiraProjectUpdateNameMutationPayload>;
|
|
43990
43992
|
updateProjectNotificationPreferences?: Maybe<JiraUpdateProjectNotificationPreferencesPayload>;
|
|
@@ -44406,6 +44408,9 @@ export declare type JiraMutationUpdatePeopleFieldArgs = {
|
|
|
44406
44408
|
export declare type JiraMutationUpdatePriorityFieldArgs = {
|
|
44407
44409
|
input: JiraUpdatePriorityFieldInput;
|
|
44408
44410
|
};
|
|
44411
|
+
export declare type JiraMutationUpdateProjectAvatarArgs = {
|
|
44412
|
+
input: JiraProjectUpdateAvatarInput;
|
|
44413
|
+
};
|
|
44409
44414
|
export declare type JiraMutationUpdateProjectFieldArgs = {
|
|
44410
44415
|
input: JiraUpdateProjectFieldInput;
|
|
44411
44416
|
};
|
|
@@ -46184,6 +46189,17 @@ export declare type JiraProjectTypeDetailsEdge = {
|
|
|
46184
46189
|
cursor: Scalars['String']['output'];
|
|
46185
46190
|
node?: Maybe<JiraProjectTypeDetails>;
|
|
46186
46191
|
};
|
|
46192
|
+
export declare type JiraProjectUpdateAvatarInput = {
|
|
46193
|
+
avatarId: Scalars['ID']['input'];
|
|
46194
|
+
cloudId: Scalars['ID']['input'];
|
|
46195
|
+
projectIdOrKey: Scalars['String']['input'];
|
|
46196
|
+
};
|
|
46197
|
+
export declare type JiraProjectUpdateAvatarMutationPayload = Payload & {
|
|
46198
|
+
__typename?: 'JiraProjectUpdateAvatarMutationPayload';
|
|
46199
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46200
|
+
project?: Maybe<JiraProject>;
|
|
46201
|
+
success: Scalars['Boolean']['output'];
|
|
46202
|
+
};
|
|
46187
46203
|
export declare type JiraProjectUpdateNameInput = {
|
|
46188
46204
|
cloudId: Scalars['ID']['input'];
|
|
46189
46205
|
name: Scalars['String']['input'];
|
|
@@ -46586,10 +46602,10 @@ export declare type JiraQueryGetArchivedIssuesFilterOptionsArgs = {
|
|
|
46586
46602
|
projectId: Scalars['ID']['input'];
|
|
46587
46603
|
};
|
|
46588
46604
|
export declare type JiraQueryGetArchivedIssuesForProjectArgs = {
|
|
46589
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
46590
46605
|
cloudId: Scalars['ID']['input'];
|
|
46591
46606
|
filterBy?: InputMaybe<JiraArchivedIssuesFilterInput>;
|
|
46592
46607
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46608
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
46593
46609
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
46594
46610
|
};
|
|
46595
46611
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
@@ -52852,6 +52868,22 @@ export declare type LpBunchballBadgeEdge = {
|
|
|
52852
52868
|
cursor: Scalars['String']['output'];
|
|
52853
52869
|
node?: Maybe<LpBunchballBadge>;
|
|
52854
52870
|
};
|
|
52871
|
+
export declare type LpBunchballBadgeResult = LpBunchballBadgeConnection | QueryError;
|
|
52872
|
+
export declare type LpCertSort = {
|
|
52873
|
+
sortDirection?: InputMaybe<SortDirection>;
|
|
52874
|
+
sortField?: InputMaybe<LpCertSortField>;
|
|
52875
|
+
};
|
|
52876
|
+
export declare enum LpCertSortField {
|
|
52877
|
+
ActiveDate = "ACTIVE_DATE",
|
|
52878
|
+
ExpireDate = "EXPIRE_DATE",
|
|
52879
|
+
Id = "ID",
|
|
52880
|
+
ImageUrl = "IMAGE_URL",
|
|
52881
|
+
Name = "NAME",
|
|
52882
|
+
NameAbbr = "NAME_ABBR",
|
|
52883
|
+
PublicUrl = "PUBLIC_URL",
|
|
52884
|
+
Status = "STATUS",
|
|
52885
|
+
Type = "TYPE"
|
|
52886
|
+
}
|
|
52855
52887
|
export declare enum LpCertStatus {
|
|
52856
52888
|
Active = "ACTIVE",
|
|
52857
52889
|
Expired = "EXPIRED"
|
|
@@ -52884,6 +52916,12 @@ export declare type LpCertmetricsCertificateEdge = {
|
|
|
52884
52916
|
cursor: Scalars['String']['output'];
|
|
52885
52917
|
node?: Maybe<LpCertmetricsCertificate>;
|
|
52886
52918
|
};
|
|
52919
|
+
export declare type LpCertmetricsCertificateResult = LpCertmetricsCertificateConnection | QueryError;
|
|
52920
|
+
export declare type LpConnectionQueryErrorExtension = QueryErrorExtension & {
|
|
52921
|
+
__typename?: 'LpConnectionQueryErrorExtension';
|
|
52922
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
52923
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
52924
|
+
};
|
|
52887
52925
|
export declare type LpCourseProgress = {
|
|
52888
52926
|
__typename?: 'LpCourseProgress';
|
|
52889
52927
|
completedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -52905,6 +52943,19 @@ export declare type LpCourseProgressEdge = {
|
|
|
52905
52943
|
cursor: Scalars['String']['output'];
|
|
52906
52944
|
node?: Maybe<LpCourseProgress>;
|
|
52907
52945
|
};
|
|
52946
|
+
export declare type LpCourseProgressResult = LpCourseProgressConnection | QueryError;
|
|
52947
|
+
export declare type LpCourseSort = {
|
|
52948
|
+
sortDirection?: InputMaybe<SortDirection>;
|
|
52949
|
+
sortField?: InputMaybe<LpCourseSortField>;
|
|
52950
|
+
};
|
|
52951
|
+
export declare enum LpCourseSortField {
|
|
52952
|
+
CompletedDate = "COMPLETED_DATE",
|
|
52953
|
+
CourseId = "COURSE_ID",
|
|
52954
|
+
Id = "ID",
|
|
52955
|
+
Status = "STATUS",
|
|
52956
|
+
Title = "TITLE",
|
|
52957
|
+
Url = "URL"
|
|
52958
|
+
}
|
|
52908
52959
|
export declare enum LpCourseStatus {
|
|
52909
52960
|
Completed = "COMPLETED",
|
|
52910
52961
|
InProgress = "IN_PROGRESS"
|
|
@@ -52912,9 +52963,9 @@ export declare enum LpCourseStatus {
|
|
|
52912
52963
|
export declare type LpLearner = Node & {
|
|
52913
52964
|
__typename?: 'LpLearner';
|
|
52914
52965
|
atlassianId: Scalars['String']['output'];
|
|
52915
|
-
bunchballBadges?: Maybe<
|
|
52916
|
-
certmetricsCertificates?: Maybe<
|
|
52917
|
-
courses?: Maybe<
|
|
52966
|
+
bunchballBadges?: Maybe<LpBunchballBadgeResult>;
|
|
52967
|
+
certmetricsCertificates?: Maybe<LpCertmetricsCertificateResult>;
|
|
52968
|
+
courses?: Maybe<LpCourseProgressResult>;
|
|
52918
52969
|
id: Scalars['ID']['output'];
|
|
52919
52970
|
};
|
|
52920
52971
|
export declare type LpLearnerBunchballBadgesArgs = {
|
|
@@ -52928,15 +52979,16 @@ export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
|
52928
52979
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
52929
52980
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52930
52981
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52982
|
+
sorting?: InputMaybe<LpCertSort>;
|
|
52931
52983
|
status?: InputMaybe<LpCertStatus>;
|
|
52932
52984
|
type?: InputMaybe<Array<InputMaybe<LpCertType>>>;
|
|
52933
52985
|
};
|
|
52934
52986
|
export declare type LpLearnerCoursesArgs = {
|
|
52935
52987
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52936
52988
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
52937
|
-
dateCompletedSortOrder?: InputMaybe<LpSortOrder>;
|
|
52938
52989
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52939
52990
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52991
|
+
sorting?: InputMaybe<LpCourseSort>;
|
|
52940
52992
|
status?: InputMaybe<LpCourseStatus>;
|
|
52941
52993
|
};
|
|
52942
52994
|
export declare type LpLearnerData = {
|
|
@@ -62507,6 +62559,7 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
62507
62559
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
62508
62560
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
62509
62561
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
62562
|
+
linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
|
|
62510
62563
|
mentions?: Maybe<Array<ThirdPartyUser>>;
|
|
62511
62564
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
62512
62565
|
title: Scalars['String']['output'];
|
|
@@ -66479,6 +66532,7 @@ export declare type TrelloJwmWorkspaceLink = {
|
|
|
66479
66532
|
export declare type TrelloLabel = {
|
|
66480
66533
|
__typename?: 'TrelloLabel';
|
|
66481
66534
|
color?: Maybe<Scalars['String']['output']>;
|
|
66535
|
+
id: Scalars['ID']['output'];
|
|
66482
66536
|
name?: Maybe<Scalars['String']['output']>;
|
|
66483
66537
|
objectId: Scalars['ID']['output'];
|
|
66484
66538
|
uses?: Maybe<Scalars['Int']['output']>;
|
|
@@ -66638,6 +66692,7 @@ export declare type TrelloMutationApi = {
|
|
|
66638
66692
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
66639
66693
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
66640
66694
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
66695
|
+
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
66641
66696
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
66642
66697
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
66643
66698
|
};
|
|
@@ -66668,6 +66723,9 @@ export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
|
66668
66723
|
export declare type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
66669
66724
|
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
66670
66725
|
};
|
|
66726
|
+
export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
|
|
66727
|
+
input: TrelloUpdateBoardViewerShowCompactMirrorCardInput;
|
|
66728
|
+
};
|
|
66671
66729
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
66672
66730
|
input: TrelloUpdateCardNameInput;
|
|
66673
66731
|
};
|
|
@@ -66920,6 +66978,16 @@ export declare type TrelloUpdateBoardViewerAiEmailPayload = Payload & {
|
|
|
66920
66978
|
success: Scalars['Boolean']['output'];
|
|
66921
66979
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
66922
66980
|
};
|
|
66981
|
+
export declare type TrelloUpdateBoardViewerShowCompactMirrorCardInput = {
|
|
66982
|
+
boardId: Scalars['ID']['input'];
|
|
66983
|
+
value: Scalars['Boolean']['input'];
|
|
66984
|
+
};
|
|
66985
|
+
export declare type TrelloUpdateBoardViewerShowCompactMirrorCardPayload = Payload & {
|
|
66986
|
+
__typename?: 'TrelloUpdateBoardViewerShowCompactMirrorCardPayload';
|
|
66987
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66988
|
+
success: Scalars['Boolean']['output'];
|
|
66989
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
66990
|
+
};
|
|
66923
66991
|
export declare type TrelloUpdateCardNameInput = {
|
|
66924
66992
|
cardId: Scalars['ID']['input'];
|
|
66925
66993
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -68731,9 +68799,10 @@ export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
|
|
|
68731
68799
|
};
|
|
68732
68800
|
export declare type WorkSuggestionsByProjectsResponse = {
|
|
68733
68801
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
68734
|
-
autoDevJobsSuggestions
|
|
68735
|
-
commonSuggestions
|
|
68736
|
-
|
|
68802
|
+
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
68803
|
+
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
68804
|
+
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
68805
|
+
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
68737
68806
|
};
|
|
68738
68807
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
68739
68808
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -68915,6 +68984,44 @@ export declare type WorkSuggestionsOrder = {
|
|
|
68915
68984
|
__typename?: 'WorkSuggestionsOrder';
|
|
68916
68985
|
defaultOrder: Array<Scalars['ID']['output']>;
|
|
68917
68986
|
};
|
|
68987
|
+
export declare type WorkSuggestionsOrderScore = {
|
|
68988
|
+
__typename?: 'WorkSuggestionsOrderScore';
|
|
68989
|
+
byTaskType?: Maybe<WorkSuggestionsOrderScores>;
|
|
68990
|
+
};
|
|
68991
|
+
export declare type WorkSuggestionsOrderScores = {
|
|
68992
|
+
__typename?: 'WorkSuggestionsOrderScores';
|
|
68993
|
+
major: Scalars['Int']['output'];
|
|
68994
|
+
minor?: Maybe<Scalars['Int']['output']>;
|
|
68995
|
+
};
|
|
68996
|
+
export declare type WorkSuggestionsPrComment = {
|
|
68997
|
+
__typename?: 'WorkSuggestionsPRComment';
|
|
68998
|
+
avatar?: Maybe<Scalars['String']['output']>;
|
|
68999
|
+
commenterName: Scalars['String']['output'];
|
|
69000
|
+
createdOn: Scalars['String']['output'];
|
|
69001
|
+
text: Scalars['String']['output'];
|
|
69002
|
+
url: Scalars['String']['output'];
|
|
69003
|
+
};
|
|
69004
|
+
export declare type WorkSuggestionsPrCommentsTask = WorkSuggestionsPeriscopeTask & {
|
|
69005
|
+
__typename?: 'WorkSuggestionsPRCommentsTask';
|
|
69006
|
+
approvalsCount: Scalars['Int']['output'];
|
|
69007
|
+
commentCount: Scalars['Int']['output'];
|
|
69008
|
+
comments?: Maybe<Array<WorkSuggestionsPrComment>>;
|
|
69009
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
69010
|
+
id: Scalars['String']['output'];
|
|
69011
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69012
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
69013
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
69014
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
69015
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
69016
|
+
title: Scalars['String']['output'];
|
|
69017
|
+
url: Scalars['String']['output'];
|
|
69018
|
+
};
|
|
69019
|
+
export declare type WorkSuggestionsPeriscopeTask = {
|
|
69020
|
+
id: Scalars['String']['output'];
|
|
69021
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69022
|
+
title: Scalars['String']['output'];
|
|
69023
|
+
url: Scalars['String']['output'];
|
|
69024
|
+
};
|
|
68918
69025
|
export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
|
|
68919
69026
|
__typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
|
|
68920
69027
|
commentCount: Scalars['Int']['output'];
|