@forge/cli-shared 8.19.0-next.4 → 8.19.0-next.5
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
|
@@ -37706,6 +37706,7 @@ export declare type DevAiFlowRepository = {
|
|
|
37706
37706
|
domain?: Maybe<Scalars['String']['output']>;
|
|
37707
37707
|
friendlyRepoUrl?: Maybe<Scalars['String']['output']>;
|
|
37708
37708
|
id?: Maybe<Scalars['ID']['output']>;
|
|
37709
|
+
language?: Maybe<Scalars['String']['output']>;
|
|
37709
37710
|
name?: Maybe<Scalars['String']['output']>;
|
|
37710
37711
|
reason?: Maybe<Scalars['String']['output']>;
|
|
37711
37712
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -105813,6 +105814,13 @@ export declare type JiraActivitySortOrderPayload = Payload & {
|
|
|
105813
105814
|
errors?: Maybe<Array<MutationError>>;
|
|
105814
105815
|
success: Scalars['Boolean']['output'];
|
|
105815
105816
|
};
|
|
105817
|
+
export declare type JiraActivitySortPreferencePayload = Payload & {
|
|
105818
|
+
__typename?: 'JiraActivitySortPreferencePayload';
|
|
105819
|
+
activitySortField?: Maybe<JiraIssueViewActivityFeedSortField>;
|
|
105820
|
+
activitySortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
105821
|
+
errors?: Maybe<Array<MutationError>>;
|
|
105822
|
+
success: Scalars['Boolean']['output'];
|
|
105823
|
+
};
|
|
105816
105824
|
export declare type JiraActor = {
|
|
105817
105825
|
user?: Maybe<User>;
|
|
105818
105826
|
};
|
|
@@ -107935,6 +107943,7 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
107935
107943
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
107936
107944
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
107937
107945
|
completedIssueSearchCutOffInDays?: Maybe<Scalars['Int']['output']>;
|
|
107946
|
+
customFilters?: Maybe<JiraSoftwareCustomFilterConnection>;
|
|
107938
107947
|
error?: Maybe<QueryError>;
|
|
107939
107948
|
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
107940
107949
|
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
@@ -107967,6 +107976,10 @@ export declare type JiraBoardViewColumnsArgs = {
|
|
|
107967
107976
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107968
107977
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
107969
107978
|
};
|
|
107979
|
+
export declare type JiraBoardViewCustomFiltersArgs = {
|
|
107980
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107981
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107982
|
+
};
|
|
107970
107983
|
export declare type JiraBoardViewFilterConfigArgs = {
|
|
107971
107984
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
107972
107985
|
};
|
|
@@ -114055,6 +114068,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
114055
114068
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
114056
114069
|
priority?: Maybe<JiraPriority>;
|
|
114057
114070
|
priorityField?: Maybe<JiraPriorityField>;
|
|
114071
|
+
project?: Maybe<JiraProject>;
|
|
114058
114072
|
projectField?: Maybe<JiraProjectField>;
|
|
114059
114073
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
114060
114074
|
redactedFields?: Maybe<JiraFieldConnection>;
|
|
@@ -116507,6 +116521,10 @@ export declare type JiraIssueUpdatesSuggestionMetadata = {
|
|
|
116507
116521
|
fieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
116508
116522
|
issuesCount?: Maybe<Scalars['Int']['output']>;
|
|
116509
116523
|
};
|
|
116524
|
+
export declare enum JiraIssueViewActivityFeedSortField {
|
|
116525
|
+
Created = "CREATED",
|
|
116526
|
+
LatestActivity = "LATEST_ACTIVITY"
|
|
116527
|
+
}
|
|
116510
116528
|
export declare enum JiraIssueViewActivityFeedSortOrder {
|
|
116511
116529
|
NewestFirst = "NEWEST_FIRST",
|
|
116512
116530
|
OldestFirst = "OLDEST_FIRST"
|
|
@@ -118514,6 +118532,7 @@ export declare type JiraMultipleVersionPickerFieldPayload = Payload & {
|
|
|
118514
118532
|
export declare type JiraMutation = {
|
|
118515
118533
|
__typename?: 'JiraMutation';
|
|
118516
118534
|
activitySortOrder?: Maybe<JiraActivitySortOrderPayload>;
|
|
118535
|
+
activitySortPreference?: Maybe<JiraActivitySortPreferencePayload>;
|
|
118517
118536
|
addAttachment?: Maybe<JiraAddAttachmentPayload>;
|
|
118518
118537
|
addAttachments?: Maybe<JiraAddAttachmentsPayload>;
|
|
118519
118538
|
addComment?: Maybe<JiraAddCommentPayload>;
|
|
@@ -118762,6 +118781,11 @@ export declare type JiraMutationActivitySortOrderArgs = {
|
|
|
118762
118781
|
cloudId: Scalars['ID']['input'];
|
|
118763
118782
|
orderBy: JiraIssueViewActivityFeedSortOrder;
|
|
118764
118783
|
};
|
|
118784
|
+
export declare type JiraMutationActivitySortPreferenceArgs = {
|
|
118785
|
+
cloudId: Scalars['ID']['input'];
|
|
118786
|
+
field: JiraIssueViewActivityFeedSortField;
|
|
118787
|
+
orderBy: JiraIssueViewActivityFeedSortOrder;
|
|
118788
|
+
};
|
|
118765
118789
|
export declare type JiraMutationAddAttachmentArgs = {
|
|
118766
118790
|
input: JiraAddAttachmentInput;
|
|
118767
118791
|
};
|
|
@@ -127425,6 +127449,23 @@ export declare type JiraSoftwareBuiltInNavigationItem = JiraNavigationItem & Nod
|
|
|
127425
127449
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
127426
127450
|
url?: Maybe<Scalars['String']['output']>;
|
|
127427
127451
|
};
|
|
127452
|
+
export declare type JiraSoftwareCustomFilter = {
|
|
127453
|
+
__typename?: 'JiraSoftwareCustomFilter';
|
|
127454
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
127455
|
+
id: Scalars['ID']['output'];
|
|
127456
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
127457
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
127458
|
+
};
|
|
127459
|
+
export declare type JiraSoftwareCustomFilterConnection = {
|
|
127460
|
+
__typename?: 'JiraSoftwareCustomFilterConnection';
|
|
127461
|
+
edges?: Maybe<Array<Maybe<JiraSoftwareCustomFilterEdge>>>;
|
|
127462
|
+
pageInfo?: Maybe<PageInfo>;
|
|
127463
|
+
};
|
|
127464
|
+
export declare type JiraSoftwareCustomFilterEdge = {
|
|
127465
|
+
__typename?: 'JiraSoftwareCustomFilterEdge';
|
|
127466
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
127467
|
+
node?: Maybe<JiraSoftwareCustomFilter>;
|
|
127468
|
+
};
|
|
127428
127469
|
export declare type JiraSoftwareIssueSearchCustomInput = {
|
|
127429
127470
|
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
127430
127471
|
context?: InputMaybe<JiraSoftwareIssueSearchCustomInputContext>;
|
|
@@ -128605,6 +128646,7 @@ export declare type JiraTownsquareProject = {
|
|
|
128605
128646
|
isWorkspaceActive?: Maybe<Scalars['Boolean']['output']>;
|
|
128606
128647
|
key?: Maybe<Scalars['String']['output']>;
|
|
128607
128648
|
name?: Maybe<Scalars['String']['output']>;
|
|
128649
|
+
owner?: Maybe<User>;
|
|
128608
128650
|
ownerAaid?: Maybe<Scalars['String']['output']>;
|
|
128609
128651
|
privateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
128610
128652
|
startDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -154275,6 +154317,7 @@ export declare type Query = {
|
|
|
154275
154317
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
154276
154318
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
154277
154319
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
154320
|
+
contextService?: Maybe<SmartsContextServiceQueryApi>;
|
|
154278
154321
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
154279
154322
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
154280
154323
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -156316,11 +156359,13 @@ export declare type QueryAvp_GetChartByConfigIdArgs = {
|
|
|
156316
156359
|
};
|
|
156317
156360
|
export declare type QueryAvp_GetChartTemplatePreviewArgs = {
|
|
156318
156361
|
cloudId: Scalars['ID']['input'];
|
|
156362
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
156319
156363
|
templateFileName: Scalars['String']['input'];
|
|
156320
156364
|
workspaceId: Scalars['ID']['input'];
|
|
156321
156365
|
};
|
|
156322
156366
|
export declare type QueryAvp_GetChartTemplatesArgs = {
|
|
156323
156367
|
cloudId: Scalars['ID']['input'];
|
|
156368
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
156324
156369
|
locations: Array<Scalars['String']['input']>;
|
|
156325
156370
|
workspaceId: Scalars['ID']['input'];
|
|
156326
156371
|
};
|
|
@@ -183409,6 +183454,20 @@ export declare type SmartsContext = {
|
|
|
183409
183454
|
tenantId: Scalars['String']['input'];
|
|
183410
183455
|
userId: Scalars['String']['input'];
|
|
183411
183456
|
};
|
|
183457
|
+
export declare type SmartsContextServiceQueryApi = {
|
|
183458
|
+
__typename?: 'SmartsContextServiceQueryApi';
|
|
183459
|
+
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
183460
|
+
};
|
|
183461
|
+
export declare type SmartsContextServiceQueryApiQuickfindUserRecommendationsArgs = {
|
|
183462
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
183463
|
+
};
|
|
183464
|
+
export declare type SmartsContextServiceUserRecommendation = {
|
|
183465
|
+
__typename?: 'SmartsContextServiceUserRecommendation';
|
|
183466
|
+
id: Scalars['ID']['output'];
|
|
183467
|
+
object?: Maybe<ExternalDocument>;
|
|
183468
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
183469
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
183470
|
+
};
|
|
183412
183471
|
export declare type SmartsFieldContext = {
|
|
183413
183472
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
183414
183473
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -183425,6 +183484,7 @@ export declare type SmartsKeyValue = {
|
|
|
183425
183484
|
export declare type SmartsModelRequestParams = {
|
|
183426
183485
|
caller: Scalars['String']['input'];
|
|
183427
183486
|
experience: Scalars['String']['input'];
|
|
183487
|
+
featureServiceModel?: InputMaybe<Scalars['String']['input']>;
|
|
183428
183488
|
};
|
|
183429
183489
|
export declare type SmartsQueryApi = {
|
|
183430
183490
|
__typename?: 'SmartsQueryApi';
|