@forge/cli-shared 9.3.0-next.1 → 9.3.0-next.2
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
|
@@ -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']>;
|
|
@@ -53980,6 +53992,7 @@ export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateEdge = {
|
|
|
53980
53992
|
};
|
|
53981
53993
|
export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode = {
|
|
53982
53994
|
__typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode';
|
|
53995
|
+
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
53983
53996
|
description?: Maybe<Scalars['String']['output']>;
|
|
53984
53997
|
displayName: Scalars['String']['output'];
|
|
53985
53998
|
documentationUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -169102,6 +169115,7 @@ export type Mutation = {
|
|
|
169102
169115
|
admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
|
|
169103
169116
|
agentAI_panelRefresh?: Maybe<AgentAiPanelRefreshResult>;
|
|
169104
169117
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
169118
|
+
agentStudio_bulkDeleteAgents?: Maybe<AgentStudioBulkDeleteAgentsPayload>;
|
|
169105
169119
|
agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
169106
169120
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
169107
169121
|
agentStudio_createAgentFromTemplate?: Maybe<AgentStudioCreateAgentPayload>;
|
|
@@ -170919,6 +170933,9 @@ export type MutationAgentStudio_AddGroupsToCreatePermissionArgs = {
|
|
|
170919
170933
|
cloudId: Scalars['ID']['input'];
|
|
170920
170934
|
groupARIs: Array<Scalars['ID']['input']>;
|
|
170921
170935
|
};
|
|
170936
|
+
export type MutationAgentStudio_BulkDeleteAgentsArgs = {
|
|
170937
|
+
input: AgentStudioBulkDeleteAgentsInput;
|
|
170938
|
+
};
|
|
170922
170939
|
export type MutationAgentStudio_CancelBatchEvaluationJobRunArgs = {
|
|
170923
170940
|
cloudId: Scalars['String']['input'];
|
|
170924
170941
|
jobRunId: Scalars['ID']['input'];
|