@forge/cli-shared 6.5.3-next.2 → 6.5.3
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,5 +1,15 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.5.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- cda6bc5: Add new tunnel warning messages
|
|
8
|
+
- Updated dependencies [7ec49ae]
|
|
9
|
+
- Updated dependencies [5293f4a]
|
|
10
|
+
- Updated dependencies [f93c4d3]
|
|
11
|
+
- @forge/manifest@8.5.0
|
|
12
|
+
|
|
3
13
|
## 6.5.3-next.2
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -709,12 +709,14 @@ export declare type AgentAiContextPanelResponse = {
|
|
|
709
709
|
suggestedEscalation?: Maybe<Scalars['String']['output']>;
|
|
710
710
|
summary?: Maybe<Scalars['String']['output']>;
|
|
711
711
|
};
|
|
712
|
+
export declare type AgentAiContextPanelResult = AgentAiContextPanelResponse | QueryError;
|
|
712
713
|
export declare type AgentAiIssueSummary = {
|
|
713
714
|
__typename?: 'AgentAIIssueSummary';
|
|
714
715
|
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
715
716
|
id?: Maybe<Scalars['String']['output']>;
|
|
716
717
|
summary?: Maybe<AgentAiSummary>;
|
|
717
718
|
};
|
|
719
|
+
export declare type AgentAiIssueSummaryResult = AgentAiIssueSummary | QueryError;
|
|
718
720
|
export declare type AgentAiSuggestAction = {
|
|
719
721
|
__typename?: 'AgentAISuggestAction';
|
|
720
722
|
content?: Maybe<AgentAiSuggestedActionContent>;
|
|
@@ -2652,6 +2654,13 @@ export declare type BulkMutationErrorExtension = MutationErrorExtension & {
|
|
|
2652
2654
|
id: Scalars['ID']['output'];
|
|
2653
2655
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
2654
2656
|
};
|
|
2657
|
+
export declare type BulkPermittedResponse = {
|
|
2658
|
+
__typename?: 'BulkPermittedResponse';
|
|
2659
|
+
permissionId?: Maybe<Scalars['String']['output']>;
|
|
2660
|
+
permitted?: Maybe<Scalars['Boolean']['output']>;
|
|
2661
|
+
principalId?: Maybe<Scalars['String']['output']>;
|
|
2662
|
+
resourceId?: Maybe<Scalars['String']['output']>;
|
|
2663
|
+
};
|
|
2655
2664
|
export declare type BulkUpdateCompassComponentsInput = {
|
|
2656
2665
|
ids: Array<Scalars['ID']['input']>;
|
|
2657
2666
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -73978,8 +73987,8 @@ export declare type Query = {
|
|
|
73978
73987
|
adminAnnouncementBannerSettings?: Maybe<Array<Maybe<ConfluenceAdminAnnouncementBannerSetting>>>;
|
|
73979
73988
|
adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
|
|
73980
73989
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
73981
|
-
agentAI_contextPanel?: Maybe<
|
|
73982
|
-
agentAI_summarizeIssue?: Maybe<
|
|
73990
|
+
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
73991
|
+
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
73983
73992
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
73984
73993
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
73985
73994
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -74010,6 +74019,7 @@ export declare type Query = {
|
|
|
74010
74019
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
74011
74020
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
74012
74021
|
boardScope?: Maybe<BoardScope>;
|
|
74022
|
+
bulkPermitted?: Maybe<Array<Maybe<BulkPermittedResponse>>>;
|
|
74013
74023
|
canSplitIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
74014
74024
|
canvasToken?: Maybe<CanvasToken>;
|
|
74015
74025
|
catchupEditMetadataForContent?: Maybe<CatchupEditMetadataForContent>;
|
|
@@ -74483,6 +74493,7 @@ export declare type Query = {
|
|
|
74483
74493
|
partnerEarlyAccess?: Maybe<PeapQueryApi>;
|
|
74484
74494
|
paywallContentToDisable?: Maybe<PaywallContentSingle>;
|
|
74485
74495
|
paywallStatus?: Maybe<PaywallStatus>;
|
|
74496
|
+
permitted?: Maybe<Scalars['Boolean']['output']>;
|
|
74486
74497
|
permsReportDownloadLinkForTask?: Maybe<PermsReportDownloadLink>;
|
|
74487
74498
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
74488
74499
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
@@ -74795,6 +74806,12 @@ export declare type QueryBoardScopeArgs = {
|
|
|
74795
74806
|
boardId: Scalars['ID']['input'];
|
|
74796
74807
|
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74797
74808
|
};
|
|
74809
|
+
export declare type QueryBulkPermittedArgs = {
|
|
74810
|
+
dontRequirePrincipalsInSite?: InputMaybe<Array<InputMaybe<Scalars['Boolean']['input']>>>;
|
|
74811
|
+
permissionIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
74812
|
+
principalIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
74813
|
+
resourceIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
74814
|
+
};
|
|
74798
74815
|
export declare type QueryCanSplitIssueArgs = {
|
|
74799
74816
|
boardId: Scalars['ID']['input'];
|
|
74800
74817
|
cardId: Scalars['ID']['input'];
|
|
@@ -76648,6 +76665,12 @@ export declare type QueryPaywallContentToDisableArgs = {
|
|
|
76648
76665
|
export declare type QueryPaywallStatusArgs = {
|
|
76649
76666
|
id: Scalars['ID']['input'];
|
|
76650
76667
|
};
|
|
76668
|
+
export declare type QueryPermittedArgs = {
|
|
76669
|
+
dontRequirePrincipalInSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76670
|
+
permissionId?: InputMaybe<Scalars['String']['input']>;
|
|
76671
|
+
principalId?: InputMaybe<Scalars['String']['input']>;
|
|
76672
|
+
resourceId?: InputMaybe<Scalars['String']['input']>;
|
|
76673
|
+
};
|
|
76651
76674
|
export declare type QueryPermsReportDownloadLinkForTaskArgs = {
|
|
76652
76675
|
id: Scalars['ID']['input'];
|
|
76653
76676
|
};
|
|
@@ -89044,7 +89067,6 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
89044
89067
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
89045
89068
|
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
89046
89069
|
blockingIssueSuggestions?: Maybe<Array<WorkSuggestionsBlockingIssueTask>>;
|
|
89047
|
-
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
89048
89070
|
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
89049
89071
|
draftPRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestDraftTask>>;
|
|
89050
89072
|
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
@@ -89058,10 +89080,6 @@ export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs
|
|
|
89058
89080
|
export declare type WorkSuggestionsByProjectsResponseBlockingIssueSuggestionsArgs = {
|
|
89059
89081
|
input?: InputMaybe<WorkSuggestionsInput>;
|
|
89060
89082
|
};
|
|
89061
|
-
export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
|
|
89062
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
89063
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89064
|
-
};
|
|
89065
89083
|
export declare type WorkSuggestionsByProjectsResponseCompassSuggestionsArgs = {
|
|
89066
89084
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89067
89085
|
};
|