@forge/cli-shared
8.11.1-next.18.11.0-experimental-3311bec
out/graphql/graphql-types.d.ts~
out/graphql/graphql-types.d.tsModified+171
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -2731,8 +2731,14 @@
errors?: Maybe<Array<MutationError>>;
groups?: Maybe<Array<Maybe<IdentityGroup>>>;
success: Scalars['Boolean']['output'];
};
+export declare type AgentStudioAdfContent = {
+ __typename?: 'AgentStudioAdfContent';
+ content?: Maybe<Scalars['JSON']['output']>;
+ type?: Maybe<Scalars['String']['output']>;
+ version?: Maybe<Scalars['Int']['output']>;
+};
export declare type AgentStudioAgent = {
authoringTeam?: Maybe<TeamV2>;
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
description?: Maybe<Scalars['String']['output']>;
@@ -2816,8 +2822,33 @@
name?: Maybe<Scalars['String']['output']>;
permissions?: Maybe<AgentStudioAgentPermissions>;
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
};
+export declare type AgentStudioAssistantConversation = {
+ __typename?: 'AgentStudioAssistantConversation';
+ id?: Maybe<Scalars['ID']['output']>;
+ lastMessageDate?: Maybe<Scalars['String']['output']>;
+ name?: Maybe<Scalars['String']['output']>;
+};
+export declare type AgentStudioAssistantConversationEdge = {
+ __typename?: 'AgentStudioAssistantConversationEdge';
+ cursor?: Maybe<Scalars['String']['output']>;
+ node?: Maybe<AgentStudioAssistantConversation>;
+};
+export declare type AgentStudioAssistantMessage = {
+ __typename?: 'AgentStudioAssistantMessage';
+ actions?: Maybe<Array<Maybe<AgentStudioMessageAction>>>;
+ content?: Maybe<AgentStudioMessageContent>;
+ contentMimeType?: Maybe<Scalars['String']['output']>;
+ id?: Maybe<Scalars['ID']['output']>;
+ role?: Maybe<Scalars['String']['output']>;
+ sources?: Maybe<Array<Maybe<AgentStudioMessageSource>>>;
+};
+export declare type AgentStudioAssistantMessageEdge = {
+ __typename?: 'AgentStudioAssistantMessageEdge';
+ cursor?: Maybe<Scalars['String']['output']>;
+ node?: Maybe<AgentStudioAssistantMessage>;
+};
export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node & {
__typename?: 'AgentStudioAssistantScenario';
actions?: Maybe<Array<AgentStudioAction>>;
creator?: Maybe<User>;
@@ -2839,8 +2870,11 @@
};
export declare type AgentStudioAuthoringTeamInput = {
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
};
+export declare type AgentStudioBatchEvalConversationFilterInput = {
+ jobRunId?: InputMaybe<Scalars['ID']['input']>;
+};
export declare type AgentStudioBatchEvalRunJobPayload = Payload & {
__typename?: 'AgentStudioBatchEvalRunJobPayload';
errors?: Maybe<Array<MutationError>>;
jobRun?: Maybe<AgentStudioBatchEvaluationJobRun>;
@@ -2934,8 +2968,20 @@
export declare type AgentStudioConnectedChannels = {
__typename?: 'AgentStudioConnectedChannels';
channels?: Maybe<Array<AgentStudioChannel>>;
};
+export declare type AgentStudioConversationHistoryResult = {
+ __typename?: 'AgentStudioConversationHistoryResult';
+ edges?: Maybe<Array<Maybe<AgentStudioAssistantMessageEdge>>>;
+ errors?: Maybe<Array<Maybe<QueryError>>>;
+ pageInfo: PageInfo;
+};
+export declare type AgentStudioConversationListResult = {
+ __typename?: 'AgentStudioConversationListResult';
+ edges?: Maybe<Array<Maybe<AgentStudioAssistantConversationEdge>>>;
+ errors?: Maybe<Array<Maybe<QueryError>>>;
+ pageInfo: PageInfo;
+};
export declare type AgentStudioConversationReport = {
__typename?: 'AgentStudioConversationReport';
agentId: Scalars['ID']['output'];
deflections?: Maybe<Array<AgentStudioConversationReportCount>>;
@@ -3246,8 +3292,25 @@
enabled?: InputMaybe<Scalars['Boolean']['input']>;
filters?: InputMaybe<AgentStudioKnowledgeFiltersInput>;
source: Scalars['String']['input'];
};
+export declare type AgentStudioMarkdownContent = {
+ __typename?: 'AgentStudioMarkdownContent';
+ value?: Maybe<Scalars['String']['output']>;
+};
+export declare type AgentStudioMessageAction = {
+ __typename?: 'AgentStudioMessageAction';
+ displayName?: Maybe<Scalars['String']['output']>;
+ key?: Maybe<Scalars['String']['output']>;
+};
+export declare type AgentStudioMessageContent = AgentStudioAdfContent | AgentStudioMarkdownContent;
+export declare type AgentStudioMessageSource = {
+ __typename?: 'AgentStudioMessageSource';
+ ari?: Maybe<Scalars['ID']['output']>;
+ lastModified?: Maybe<Scalars['String']['output']>;
+ title?: Maybe<Scalars['String']['output']>;
+ url?: Maybe<Scalars['String']['output']>;
+};
export declare type AgentStudioPortalChannel = AgentStudioChannel & {
__typename?: 'AgentStudioPortalChannel';
connected?: Maybe<Scalars['Boolean']['output']>;
url?: Maybe<Scalars['String']['output']>;
@@ -99525,12 +99588,16 @@
agentStudio_deleteDataset: AgentStudioDeleteDatasetPayload;
agentStudio_deleteDatasetItem: AgentStudioDeleteDatasetItemPayload;
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
agentStudio_deleteWidget?: Maybe<AgentStudioDeleteWidgetPayload>;
+ agentStudio_modifyDatasetItem?: Maybe<AgentStudioUpdateDatasetItemPayload>;
agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
+ agentStudio_removeDataset?: Maybe<AgentStudioDeleteDatasetPayload>;
+ agentStudio_removeDatasetItem?: Maybe<AgentStudioDeleteDatasetItemPayload>;
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
agentStudio_runBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
agentStudio_setWidgetByContainerAri?: Maybe<AgentStudioSetWidgetByContainerAriPayload>;
+ agentStudio_submitBatchEvaluationJob?: Maybe<AgentStudioCreateBatchEvaluationJobPayload>;
agentStudio_updateActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
@@ -100488,12 +100555,30 @@
export declare type MutationAgentStudio_DeleteWidgetArgs = {
cloudId: Scalars['String']['input'];
widgetId: Scalars['ID']['input'];
};
+export declare type MutationAgentStudio_ModifyDatasetItemArgs = {
+ cloudId: Scalars['String']['input'];
+ input: AgentStudioUpdateDatasetItemInput;
+ productType: AgentStudioProductType;
+ projectContainerAri: Scalars['ID']['input'];
+};
export declare type MutationAgentStudio_RemoveActorRolesArgs = {
id: Scalars['ID']['input'];
input: AgentStudioUpdateAgentPermissionInput;
};
+export declare type MutationAgentStudio_RemoveDatasetArgs = {
+ cloudId: Scalars['String']['input'];
+ id: Scalars['ID']['input'];
+ productType: AgentStudioProductType;
+ projectContainerAri: Scalars['ID']['input'];
+};
+export declare type MutationAgentStudio_RemoveDatasetItemArgs = {
+ cloudId: Scalars['String']['input'];
+ id: Scalars['ID']['input'];
+ productType: AgentStudioProductType;
+ projectContainerAri: Scalars['ID']['input'];
+};
export declare type MutationAgentStudio_RemoveGroupsFromCreatePermissionArgs = {
cloudId: Scalars['ID']['input'];
groupARIs: Array<Scalars['ID']['input']>;
};
@@ -100507,8 +100592,14 @@
cloudId: Scalars['String']['input'];
containerAri: Scalars['ID']['input'];
input: AgentStudioSetWidgetByContainerAriInput;
};
+export declare type MutationAgentStudio_SubmitBatchEvaluationJobArgs = {
+ cloudId: Scalars['String']['input'];
+ input: AgentStudioCreateBatchEvaluationJobInput;
+ productType: AgentStudioProductType;
+ projectContainerAri: Scalars['ID']['input'];
+};
export declare type MutationAgentStudio_UpdateActorRolesArgs = {
id: Scalars['ID']['input'];
input: AgentStudioUpdateAgentPermissionInput;
};
@@ -106141,17 +106232,23 @@
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
agentStudio_agentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
+ agentStudio_batchEvalConversationHistoryById?: Maybe<AgentStudioConversationHistoryResult>;
+ agentStudio_batchEvalConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
+ agentStudio_batchEvaluationJobList?: Maybe<AgentStudioBatchEvaluationJobsResult>;
agentStudio_batchEvaluationJobsResult: AgentStudioBatchEvaluationJobsResult;
agentStudio_batchEvaluationResults: AgentStudioEvaluationResultsResult;
agentStudio_batchEvaluationSummary?: Maybe<AgentStudioEvaluationSummary>;
agentStudio_conversationReportByAgentId?: Maybe<AgentStudioConversationReportByAgentIdResult>;
agentStudio_dataset?: Maybe<AgentStudioDataset>;
+ agentStudio_datasetItemList?: Maybe<AgentStudioDatasetItemsResult>;
agentStudio_datasetItems: AgentStudioDatasetItemsResult;
+ agentStudio_datasetList?: Maybe<AgentStudioDatasetsResult>;
agentStudio_datasets: AgentStudioDatasetsResult;
agentStudio_evaluationProject?: Maybe<AgentStudioBatchEvaluationProject>;
+ agentStudio_evaluationResultList?: Maybe<AgentStudioEvaluationResultsResult>;
agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
@@ -106159,9 +106256,11 @@
agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
agentStudio_getWidgetsByAgentIdAndContainerType?: Maybe<AgentStudioWidgetsByAgentIdAndContainerTypeResult>;
agentStudio_insightsConfiguration?: Maybe<AgentStudioInsightsConfigurationResult>;
agentStudio_jobExecutionHistory: AgentStudioJobExecutionHistory;
+ agentStudio_jobExecutionHistoryList?: Maybe<AgentStudioJobExecutionHistory>;
agentStudio_jobRun?: Maybe<AgentStudioBatchEvaluationJobRun>;
+ agentStudio_jobRunList?: Maybe<AgentStudioBatchEvaluationJobRunResult>;
agentStudio_jobRuns: AgentStudioBatchEvaluationJobRunResult;
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
@@ -106476,8 +106575,9 @@
csmAi_getAgentVersion?: Maybe<CsmAiAgentVersionResult>;
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
csmAi_getAvailableByod?: Maybe<CsmAiByodContentsResult>;
csmAi_getSupportWidget?: Maybe<CsmAiWidgetConfigResult>;
+ csmAi_getWidget?: Maybe<CsmAiWidgetConfigResult>;
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
customer360_customer?: Maybe<Customer360Customer>;
customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
customerService?: Maybe<CustomerServiceQueryApi>;
@@ -107255,22 +107355,46 @@
};
export declare type QueryAgentStudio_AgentByIdArgs = {
id: Scalars['ID']['input'];
product?: InputMaybe<Scalars['String']['input']>;
+ workspaceId?: InputMaybe<Scalars['String']['input']>;
};
export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
cloudId: Scalars['String']['input'];
id: Scalars['ID']['input'];
};
export declare type QueryAgentStudio_AgentsByIdsArgs = {
ids: Array<Scalars['ID']['input']>;
};
+export declare type QueryAgentStudio_BatchEvalConversationHistoryByIdArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ cloudId: Scalars['String']['input'];
+ conversationId: Scalars['ID']['input'];
+ experienceId: Scalars['String']['input'];
+ first?: InputMaybe<Scalars['Int']['input']>;
+};
+export declare type QueryAgentStudio_BatchEvalConversationListByContainerIdArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ cloudId: Scalars['String']['input'];
+ containerAri: Scalars['ID']['input'];
+ experienceId: Scalars['String']['input'];
+ filter?: InputMaybe<AgentStudioBatchEvalConversationFilterInput>;
+ first?: InputMaybe<Scalars['Int']['input']>;
+};
export declare type QueryAgentStudio_BatchEvaluationJobArgs = {
cloudId: Scalars['String']['input'];
jobId: Scalars['ID']['input'];
productType: AgentStudioProductType;
projectContainerAri: Scalars['ID']['input'];
};
+export declare type QueryAgentStudio_BatchEvaluationJobListArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ agentId: Scalars['String']['input'];
+ cloudId: Scalars['String']['input'];
+ first?: InputMaybe<Scalars['Int']['input']>;
+ productType: AgentStudioProductType;
+ projectContainerAri: Scalars['ID']['input'];
+};
export declare type QueryAgentStudio_BatchEvaluationJobsResultArgs = {
after?: InputMaybe<Scalars['String']['input']>;
agentId: Scalars['String']['input'];
cloudId: Scalars['String']['input'];
@@ -107304,16 +107428,32 @@
datasetId: Scalars['ID']['input'];
productType: AgentStudioProductType;
projectContainerAri: Scalars['ID']['input'];
};
+export declare type QueryAgentStudio_DatasetItemListArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ cloudId: Scalars['String']['input'];
+ datasetId: Scalars['ID']['input'];
+ first?: InputMaybe<Scalars['Int']['input']>;
+ productType: AgentStudioProductType;
+ projectContainerAri: Scalars['ID']['input'];
+};
export declare type QueryAgentStudio_DatasetItemsArgs = {
after?: InputMaybe<Scalars['String']['input']>;
cloudId: Scalars['String']['input'];
datasetId: Scalars['ID']['input'];
first?: InputMaybe<Scalars['Int']['input']>;
productType: AgentStudioProductType;
projectContainerAri: Scalars['ID']['input'];
};
+export declare type QueryAgentStudio_DatasetListArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ cloudId: Scalars['String']['input'];
+ first?: InputMaybe<Scalars['Int']['input']>;
+ productType: AgentStudioProductType;
+ projectContainerAri: Scalars['ID']['input'];
+ projectId?: InputMaybe<Scalars['ID']['input']>;
+};
export declare type QueryAgentStudio_DatasetsArgs = {
after?: InputMaybe<Scalars['String']['input']>;
cloudId: Scalars['String']['input'];
first?: InputMaybe<Scalars['Int']['input']>;
@@ -107325,8 +107465,16 @@
cloudId: Scalars['String']['input'];
productType: AgentStudioProductType;
projectContainerAri: Scalars['ID']['input'];
};
+export declare type QueryAgentStudio_EvaluationResultListArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ cloudId: Scalars['String']['input'];
+ first?: InputMaybe<Scalars['Int']['input']>;
+ productType: AgentStudioProductType;
+ projectContainerAri: Scalars['ID']['input'];
+ runId: Scalars['ID']['input'];
+};
export declare type QueryAgentStudio_GetAgentActorRolesArgs = {
after?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
id: Scalars['ID']['input'];
@@ -107336,8 +107484,9 @@
cloudId: Scalars['String']['input'];
first?: InputMaybe<Scalars['Int']['input']>;
input?: InputMaybe<AgentStudioAgentQueryInput>;
product?: InputMaybe<Scalars['String']['input']>;
+ workspaceId?: InputMaybe<Scalars['String']['input']>;
};
export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
cloudId: Scalars['String']['input'];
externalReference: Scalars['String']['input'];
@@ -107369,14 +107518,30 @@
first?: InputMaybe<Scalars['Int']['input']>;
productType: AgentStudioProductType;
projectContainerAri: Scalars['ID']['input'];
};
+export declare type QueryAgentStudio_JobExecutionHistoryListArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ cloudId: Scalars['String']['input'];
+ first?: InputMaybe<Scalars['Int']['input']>;
+ productType: AgentStudioProductType;
+ projectContainerAri: Scalars['ID']['input'];
+};
export declare type QueryAgentStudio_JobRunArgs = {
cloudId: Scalars['String']['input'];
productType: AgentStudioProductType;
projectContainerAri: Scalars['ID']['input'];
runId: Scalars['ID']['input'];
};
+export declare type QueryAgentStudio_JobRunListArgs = {
+ after?: InputMaybe<Scalars['String']['input']>;
+ cloudId: Scalars['String']['input'];
+ first?: InputMaybe<Scalars['Int']['input']>;
+ jobId?: InputMaybe<Scalars['ID']['input']>;
+ productType: AgentStudioProductType;
+ projectContainerAri: Scalars['ID']['input'];
+ status?: InputMaybe<AgentStudioJobRunStatus>;
+};
export declare type QueryAgentStudio_JobRunsArgs = {
after?: InputMaybe<Scalars['String']['input']>;
cloudId: Scalars['String']['input'];
first?: InputMaybe<Scalars['Int']['input']>;
@@ -108904,8 +109069,12 @@
};
export declare type QueryCsmAi_GetSupportWidgetArgs = {
helpCenterAri: Scalars['ID']['input'];
};
+export declare type QueryCsmAi_GetWidgetArgs = {
+ helpCenterAri: Scalars['ID']['input'];
+ widgetId: Scalars['ID']['input'];
+};
export declare type QueryCustomer360_CustomerArgs = {
domain: Scalars['String']['input'];
};
export declare type QueryCustomer360_CustomersByIdArgs = {
@@ -138596,8 +138765,9 @@
role: TownsquareGoalAccessRoleInput;
};
export declare type TownsquareGoalGrantAccessPayload = {
__typename?: 'TownsquareGoalGrantAccessPayload';
+ addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareGoalAccessEdge>>>;
errors?: Maybe<Array<MutationError>>;
goal?: Maybe<TownsquareGoal>;
success: Scalars['Boolean']['output'];
};
@@ -138655,8 +138825,9 @@
export declare type TownsquareGoalRevokeAccessPayload = {
__typename?: 'TownsquareGoalRevokeAccessPayload';
errors?: Maybe<Array<MutationError>>;
goal?: Maybe<TownsquareGoal>;
+ revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
success: Scalars['Boolean']['output'];
};
export declare enum TownsquareGoalScoringMode {
Okr = "OKR",