@forge/cli-shared 9.3.0-next.1 → 9.3.0-next.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,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 9.3.0-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [498fda5]
8
+ - @forge/manifest@13.3.0-next.3
9
+
10
+ ## 9.3.0-next.2
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [f01417b]
15
+ - @forge/manifest@13.3.0-next.2
16
+
3
17
  ## 9.3.0-next.1
4
18
 
5
19
  ### Patch Changes
@@ -6396,6 +6396,16 @@ export type AgentStudioBatchEvaluationProject = {
6396
6396
  id: Scalars['String']['output'];
6397
6397
  projectContainerAri: Scalars['String']['output'];
6398
6398
  };
6399
+ export type AgentStudioBulkDeleteAgentsInput = {
6400
+ ids: Array<Scalars['ID']['input']>;
6401
+ };
6402
+ export type AgentStudioBulkDeleteAgentsPayload = {
6403
+ __typename?: 'AgentStudioBulkDeleteAgentsPayload';
6404
+ agents?: Maybe<Array<AgentStudioAgent>>;
6405
+ errors?: Maybe<Array<MutationError>>;
6406
+ failedAgentIds?: Maybe<Array<Scalars['ID']['output']>>;
6407
+ success: Scalars['Boolean']['output'];
6408
+ };
6399
6409
  export type AgentStudioCanAddMcpServerResult = AgentStudioCanAddMcpServerSuccess | QueryError;
6400
6410
  export type AgentStudioCanAddMcpServerSuccess = {
6401
6411
  __typename?: 'AgentStudioCanAddMcpServerSuccess';
@@ -44407,6 +44417,8 @@ export type DevAiAutodevNextWorkItem = {
44407
44417
  isOverdue?: Maybe<Scalars['Boolean']['output']>;
44408
44418
  jiraIssue?: Maybe<JiraIssue>;
44409
44419
  latestExecutionSession?: Maybe<DevAiAutodevNextWorkExecutionSession>;
44420
+ pullRequestDeclineReason?: Maybe<Scalars['String']['output']>;
44421
+ pullRequestStatus?: Maybe<Scalars['ID']['output']>;
44410
44422
  pullRequestUrl?: Maybe<Scalars['String']['output']>;
44411
44423
  repository?: Maybe<Scalars['String']['output']>;
44412
44424
  requestedAt?: Maybe<Scalars['DateTime']['output']>;
@@ -53543,6 +53555,7 @@ export type GraphInferenceGetJiraEntityContextInput = {
53543
53555
  nodeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
53544
53556
  recursionDepth?: InputMaybe<Scalars['Int']['input']>;
53545
53557
  sessionId?: InputMaybe<Scalars['String']['input']>;
53558
+ useSemanticRanking?: InputMaybe<Scalars['Boolean']['input']>;
53546
53559
  weightVersion?: InputMaybe<Scalars['String']['input']>;
53547
53560
  };
53548
53561
  export type GraphInferenceGetJiraEntityContextResponse = {
@@ -53980,6 +53993,7 @@ export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateEdge = {
53980
53993
  };
53981
53994
  export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode = {
53982
53995
  __typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode';
53996
+ authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
53983
53997
  description?: Maybe<Scalars['String']['output']>;
53984
53998
  displayName: Scalars['String']['output'];
53985
53999
  documentationUrl?: Maybe<Scalars['String']['output']>;
@@ -169102,6 +169116,7 @@ export type Mutation = {
169102
169116
  admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
169103
169117
  agentAI_panelRefresh?: Maybe<AgentAiPanelRefreshResult>;
169104
169118
  agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
169119
+ agentStudio_bulkDeleteAgents?: Maybe<AgentStudioBulkDeleteAgentsPayload>;
169105
169120
  agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
169106
169121
  agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
169107
169122
  agentStudio_createAgentFromTemplate?: Maybe<AgentStudioCreateAgentPayload>;
@@ -170919,6 +170934,9 @@ export type MutationAgentStudio_AddGroupsToCreatePermissionArgs = {
170919
170934
  cloudId: Scalars['ID']['input'];
170920
170935
  groupARIs: Array<Scalars['ID']['input']>;
170921
170936
  };
170937
+ export type MutationAgentStudio_BulkDeleteAgentsArgs = {
170938
+ input: AgentStudioBulkDeleteAgentsInput;
170939
+ };
170922
170940
  export type MutationAgentStudio_CancelBatchEvaluationJobRunArgs = {
170923
170941
  cloudId: Scalars['String']['input'];
170924
170942
  jobRunId: Scalars['ID']['input'];