@forge/cli-shared
9.3.0-next.179.3.0-next.17-experimental-6320d72
out/graphql/graphql-types.d.ts~
out/graphql/graphql-types.d.tsModified+17
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -149373,8 +149373,20 @@
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
timeSpent?: InputMaybe<JiraEstimateInput>;
workDescription?: InputMaybe<JiraAdfInput>;
};
+export type JiraUpsertAgentSpaceInstructionInput = {
+ agentAri?: InputMaybe<Scalars['ID']['input']>;
+ prompt: Scalars['String']['input'];
+ scopeType: JiraAgentSpaceInstructionScopeType;
+ spaceAri: Scalars['ID']['input'];
+};
+export type JiraUpsertAgentSpaceInstructionPayload = Payload & {
+ __typename?: 'JiraUpsertAgentSpaceInstructionPayload';
+ errors?: Maybe<Array<MutationError>>;
+ instruction?: Maybe<JiraAgentSpaceInstruction>;
+ success: Scalars['Boolean']['output'];
+};
export type JiraUpsertIssueTypePayload = Payload & {
__typename?: 'JiraUpsertIssueTypePayload';
errors?: Maybe<Array<MutationError>>;
issueType?: Maybe<JiraIssueType>;
@@ -173421,8 +173433,9 @@
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
jira_updateSchemeFieldRendererToRichText?: Maybe<JiraSchemeFieldRendererToRichTextPayload>;
+ jira_upsertAgentSpaceInstruction?: Maybe<JiraUpsertAgentSpaceInstructionPayload>;
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
jpdViewsService_cloneGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
jpdViewsService_cloneViewIntoGlobal?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
jpdViewsService_createGlobalViewV2?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
@@ -178164,8 +178177,12 @@
export type MutationJira_UpdateSchemeFieldRendererToRichTextArgs = {
cloudId: Scalars['ID']['input'];
input: JiraSchemeFieldRendererToRichTextInput;
};
+export type MutationJira_UpsertAgentSpaceInstructionArgs = {
+ cloudId: Scalars['ID']['input'];
+ input: JiraUpsertAgentSpaceInstructionInput;
+};
export type MutationJpdViewsService_AssociateGlobalViewArgs = {
input: JpdViewsServiceAssociateGlobalViewInput;
};
export type MutationJpdViewsService_CloneGlobalViewArgs = {