@forge/cli-shared 8.15.0-next.1 → 8.15.0-next.1-experimental-919607a

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,17 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.15.0-next.1-experimental-919607a
4
+
5
+ ### Minor Changes
6
+
7
+ - e8cce7f: add transformErrorMessage for preserving error attributes
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [e21f32f]
12
+ - Updated dependencies [545ecc1]
13
+ - @forge/manifest@11.4.0-next.1-experimental-919607a
14
+
3
15
  ## 8.15.0-next.1
4
16
 
5
17
  ### Minor Changes
@@ -4637,6 +4637,7 @@ export declare type AppInstallation = {
4637
4637
  app?: Maybe<App>;
4638
4638
  appEnvironment?: Maybe<AppEnvironment>;
4639
4639
  appEnvironmentVersion?: Maybe<AppEnvironmentVersion>;
4640
+ computeDefinitionId?: Maybe<Scalars['ID']['output']>;
4640
4641
  config?: Maybe<Array<Maybe<AppInstallationConfig>>>;
4641
4642
  createdAt: Scalars['DateTime']['output'];
4642
4643
  createdBy?: Maybe<User>;
@@ -22949,6 +22950,7 @@ export declare type Content = {
22949
22950
  macroRenderedOutput?: Maybe<Array<Maybe<MapOfStringToFormattedBody>>>;
22950
22951
  mediaSession: ContentMediaSession;
22951
22952
  metadata: ContentMetadata;
22953
+ migratedFromConnect?: Maybe<Scalars['Boolean']['output']>;
22952
22954
  mobileContentBody?: Maybe<Scalars['String']['output']>;
22953
22955
  operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
22954
22956
  outgoingLinks?: Maybe<OutgoingLinks>;
@@ -26463,7 +26465,7 @@ export declare type CsmAiActionVariableInput = {
26463
26465
  name: Scalars['String']['input'];
26464
26466
  };
26465
26467
  export declare type CsmAiAddKnowledgeSourceInput = {
26466
- csmAiKnowledgeFilter: CsmAiKnowledgeFilterInput;
26468
+ csmAiKnowledgeFilter?: InputMaybe<CsmAiKnowledgeFilterInput>;
26467
26469
  enabled?: InputMaybe<Scalars['Boolean']['input']>;
26468
26470
  type: Scalars['String']['input'];
26469
26471
  };
@@ -26766,7 +26768,7 @@ export declare type CsmAiKnowledgeFilterInput = {
26766
26768
  export declare type CsmAiKnowledgeSource = {
26767
26769
  __typename?: 'CsmAiKnowledgeSource';
26768
26770
  enabled?: Maybe<Scalars['Boolean']['output']>;
26769
- filters: CsmAiKnowledgeFilter;
26771
+ filters?: Maybe<CsmAiKnowledgeFilter>;
26770
26772
  id: Scalars['ID']['output'];
26771
26773
  type?: Maybe<Scalars['String']['output']>;
26772
26774
  };
@@ -26884,7 +26886,7 @@ export declare type CsmAiUpdateHandoffConfigPayload = Payload & {
26884
26886
  success: Scalars['Boolean']['output'];
26885
26887
  };
26886
26888
  export declare type CsmAiUpdateKnowledgeSourceInput = {
26887
- csmAiKnowledgeFilter: CsmAiKnowledgeFilterInput;
26889
+ csmAiKnowledgeFilter?: InputMaybe<CsmAiKnowledgeFilterInput>;
26888
26890
  enabled?: InputMaybe<Scalars['Boolean']['input']>;
26889
26891
  type: Scalars['String']['input'];
26890
26892
  };
@@ -88503,6 +88505,10 @@ export declare type JiraAffectedServicesFieldPayload = Payload & {
88503
88505
  export declare type JiraAffectedServicesInput = {
88504
88506
  serviceId: Scalars['ID']['input'];
88505
88507
  };
88508
+ export declare type JiraAgentAssignableInput = {
88509
+ agentAccountId?: InputMaybe<Scalars['ID']['input']>;
88510
+ agentId?: InputMaybe<Scalars['ID']['input']>;
88511
+ };
88506
88512
  export declare type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
88507
88513
  export declare type JiraAggregatedStatusField = JiraIssueField & Node & {
88508
88514
  __typename?: 'JiraAggregatedStatusField';
@@ -90286,7 +90292,11 @@ export declare type JiraBoardViewFieldSwimlaneCellsArgs = {
90286
90292
  first?: InputMaybe<Scalars['Int']['input']>;
90287
90293
  settings?: InputMaybe<JiraBoardViewSettings>;
90288
90294
  };
90289
- export declare type JiraBoardViewFieldSwimlaneValue = JiraOption | JiraPriority;
90295
+ export declare type JiraBoardViewFieldSwimlaneUser = {
90296
+ __typename?: 'JiraBoardViewFieldSwimlaneUser';
90297
+ user?: Maybe<User>;
90298
+ };
90299
+ export declare type JiraBoardViewFieldSwimlaneValue = JiraBoardViewFieldSwimlaneUser | JiraOption | JiraPriority;
90290
90300
  export declare type JiraBoardViewInput = {
90291
90301
  jiraBoardViewQueryInput?: InputMaybe<JiraBoardViewQueryInput>;
90292
90302
  settings?: InputMaybe<JiraBoardViewSettings>;
@@ -107101,6 +107111,12 @@ export declare type JiraSetFormulaFieldExpressionConfigPayload = Payload & {
107101
107111
  jobId?: Maybe<Scalars['String']['output']>;
107102
107112
  success: Scalars['Boolean']['output'];
107103
107113
  };
107114
+ export declare type JiraSetIsAgentAssignableResponsePayload = Payload & {
107115
+ __typename?: 'JiraSetIsAgentAssignableResponsePayload';
107116
+ errors?: Maybe<Array<MutationError>>;
107117
+ isAssignable?: Maybe<Scalars['Boolean']['output']>;
107118
+ success: Scalars['Boolean']['output'];
107119
+ };
107104
107120
  export declare type JiraSetIsFavouriteInput = {
107105
107121
  beforeEntityId?: InputMaybe<Scalars['ID']['input']>;
107106
107122
  entityId: Scalars['ID']['input'];
@@ -108920,6 +108936,10 @@ export declare type JiraUpdateAffectedServicesFieldInput = {
108920
108936
  id: Scalars['ID']['input'];
108921
108937
  operation: JiraAffectedServicesFieldOperationInput;
108922
108938
  };
108939
+ export declare type JiraUpdateAgentAssignmentInput = {
108940
+ agentInput: JiraAgentAssignableInput;
108941
+ isAssignable: Scalars['Boolean']['input'];
108942
+ };
108923
108943
  export declare type JiraUpdateAttachmentFieldInput = {
108924
108944
  id: Scalars['ID']['input'];
108925
108945
  operation: JiraAttachmentFieldOperationInput;
@@ -122307,6 +122327,7 @@ export declare type Mutation = {
122307
122327
  goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
122308
122328
  goals_editUserCustomField?: Maybe<TownsquareGoalsEditUserCustomFieldPayload>;
122309
122329
  goals_grantAccess?: Maybe<TownsquareGoalGrantAccessPayload>;
122330
+ goals_linkJiraAlignProject?: Maybe<TownsquareGoalsLinkJiraAlignProjectPayload>;
122310
122331
  goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
122311
122332
  goals_removeDropdownCustomFieldValue?: Maybe<TownsquareGoalsRemoveDropdownCustomFieldValuePayload>;
122312
122333
  goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
@@ -122431,6 +122452,7 @@ export declare type Mutation = {
122431
122452
  jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
122432
122453
  jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
122433
122454
  jira_setGlobalPermissionUserGroups?: Maybe<JiraGlobalPermissionSetUserGroupsPayload>;
122455
+ jira_setIsAgentAssignable?: Maybe<JiraSetIsAgentAssignableResponsePayload>;
122434
122456
  jira_setIssueSearchAggregationConfig?: Maybe<JiraSetIssueSearchAggregationConfigPayload>;
122435
122457
  jira_setIssueSearchFieldSets?: Maybe<JiraSetIssueSearchFieldSetsPayload>;
122436
122458
  jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
@@ -124589,6 +124611,9 @@ export declare type MutationGoals_EditUserCustomFieldArgs = {
124589
124611
  export declare type MutationGoals_GrantAccessArgs = {
124590
124612
  input: TownsquareGoalGrantAccessInput;
124591
124613
  };
124614
+ export declare type MutationGoals_LinkJiraAlignProjectArgs = {
124615
+ input: TownsquareGoalsLinkJiraAlignProjectInput;
124616
+ };
124592
124617
  export declare type MutationGoals_LinkWorkItemArgs = {
124593
124618
  input: TownsquareGoalsLinkWorkItemInput;
124594
124619
  };
@@ -124958,6 +124983,10 @@ export declare type MutationJira_SetGlobalPermissionUserGroupsArgs = {
124958
124983
  cloudId: Scalars['ID']['input'];
124959
124984
  input: JiraGlobalPermissionSetUserGroupsInput;
124960
124985
  };
124986
+ export declare type MutationJira_SetIsAgentAssignableArgs = {
124987
+ cloudId: Scalars['ID']['input'];
124988
+ input: JiraUpdateAgentAssignmentInput;
124989
+ };
124961
124990
  export declare type MutationJira_SetIssueSearchAggregationConfigArgs = {
124962
124991
  input: JiraSetIssueSearchAggregationConfigInput;
124963
124992
  };
@@ -129648,6 +129677,7 @@ export declare type Query = {
129648
129677
  jira_fieldSchemes?: Maybe<JiraFieldSchemesConnection>;
129649
129678
  jira_fieldSchemesByARIs?: Maybe<Array<Maybe<JiraFieldScheme>>>;
129650
129679
  jira_fieldsPerSchemeLimit?: Maybe<Scalars['Int']['output']>;
129680
+ jira_isAgentAssignable?: Maybe<Scalars['Boolean']['output']>;
129651
129681
  jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
129652
129682
  jira_issueSearchTopLevelIssueFieldsAggregation?: Maybe<Array<Maybe<JiraIssue>>>;
129653
129683
  jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
@@ -132952,6 +132982,10 @@ export declare type QueryJira_FieldSchemesByArIsArgs = {
132952
132982
  export declare type QueryJira_FieldsPerSchemeLimitArgs = {
132953
132983
  cloudId: Scalars['ID']['input'];
132954
132984
  };
132985
+ export declare type QueryJira_IsAgentAssignableArgs = {
132986
+ agentInput: JiraAgentAssignableInput;
132987
+ cloudId: Scalars['ID']['input'];
132988
+ };
132955
132989
  export declare type QueryJira_IsRovoLlmEnabledArgs = {
132956
132990
  cloudId: Scalars['ID']['input'];
132957
132991
  };
@@ -163168,6 +163202,17 @@ export declare type TownsquareGoalsEditUserCustomFieldPayload = {
163168
163202
  success: Scalars['Boolean']['output'];
163169
163203
  user?: Maybe<User>;
163170
163204
  };
163205
+ export declare type TownsquareGoalsLinkJiraAlignProjectInput = {
163206
+ goalId: Scalars['ID']['input'];
163207
+ jiraAlignProjectId: Scalars['ID']['input'];
163208
+ };
163209
+ export declare type TownsquareGoalsLinkJiraAlignProjectPayload = {
163210
+ __typename?: 'TownsquareGoalsLinkJiraAlignProjectPayload';
163211
+ errors?: Maybe<Array<MutationError>>;
163212
+ goal?: Maybe<TownsquareGoal>;
163213
+ jiraAlignProject?: Maybe<JiraAlignAggProject>;
163214
+ success: Scalars['Boolean']['output'];
163215
+ };
163171
163216
  export declare type TownsquareGoalsLinkWorkItemInput = {
163172
163217
  goalId: Scalars['ID']['input'];
163173
163218
  workItemId: Scalars['ID']['input'];