@forge/cli-shared 6.5.0-next.4 → 6.5.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 +6 -0
- package/out/graphql/graphql-types.d.ts +177 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +41 -18
- package/out/ui/text.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -162,6 +162,7 @@ export declare type ActionsAction = {
|
|
|
162
162
|
enabledCapabilities?: Maybe<Array<Maybe<ActionsCapabilityType>>>;
|
|
163
163
|
extensionAri?: Maybe<Scalars['String']['output']>;
|
|
164
164
|
icon?: Maybe<Scalars['String']['output']>;
|
|
165
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
165
166
|
inputs?: Maybe<Array<ActionsActionInputTuple>>;
|
|
166
167
|
isConsequential: Scalars['Boolean']['output'];
|
|
167
168
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -14149,6 +14150,10 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
14149
14150
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
14150
14151
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
14151
14152
|
};
|
|
14153
|
+
export declare enum ConfluencePrincipalType {
|
|
14154
|
+
Group = "GROUP",
|
|
14155
|
+
User = "USER"
|
|
14156
|
+
}
|
|
14152
14157
|
export declare type ConfluencePublishBlogPostInput = {
|
|
14153
14158
|
id: Scalars['ID']['input'];
|
|
14154
14159
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17118,6 +17123,7 @@ export declare type ContentState = {
|
|
|
17118
17123
|
isCallerPermitted?: Maybe<Scalars['Boolean']['output']>;
|
|
17119
17124
|
name: Scalars['String']['output'];
|
|
17120
17125
|
restrictionLevel: ContentStateRestrictionLevel;
|
|
17126
|
+
unlocalizedName?: Maybe<Scalars['String']['output']>;
|
|
17121
17127
|
};
|
|
17122
17128
|
export declare type ContentStateInput = {
|
|
17123
17129
|
color?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -42304,7 +42310,33 @@ export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node &
|
|
|
42304
42310
|
id: Scalars['ID']['output'];
|
|
42305
42311
|
title?: Maybe<Scalars['String']['output']>;
|
|
42306
42312
|
};
|
|
42313
|
+
export declare type HelpObjectStoreArticleMetadata = {
|
|
42314
|
+
__typename?: 'HelpObjectStoreArticleMetadata';
|
|
42315
|
+
isExternal: Scalars['Boolean']['output'];
|
|
42316
|
+
searchStrategy: HelpObjectStoreArticleSearchStrategy;
|
|
42317
|
+
};
|
|
42307
42318
|
export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | HelpObjectStoreQueryError;
|
|
42319
|
+
export declare type HelpObjectStoreArticleSearchResponse = HelpObjectStoreArticleSearchResults | HelpObjectStoreSearchError;
|
|
42320
|
+
export declare type HelpObjectStoreArticleSearchResult = {
|
|
42321
|
+
__typename?: 'HelpObjectStoreArticleSearchResult';
|
|
42322
|
+
absoluteUrl: Scalars['String']['output'];
|
|
42323
|
+
ari: Scalars['ID']['output'];
|
|
42324
|
+
containerAri: Scalars['ID']['output'];
|
|
42325
|
+
containerName: Scalars['ID']['output'];
|
|
42326
|
+
displayLink: Scalars['String']['output'];
|
|
42327
|
+
excerpt: Scalars['String']['output'];
|
|
42328
|
+
metadata: HelpObjectStoreArticleMetadata;
|
|
42329
|
+
title: Scalars['String']['output'];
|
|
42330
|
+
};
|
|
42331
|
+
export declare type HelpObjectStoreArticleSearchResults = {
|
|
42332
|
+
__typename?: 'HelpObjectStoreArticleSearchResults';
|
|
42333
|
+
results: Array<HelpObjectStoreArticleSearchResult>;
|
|
42334
|
+
};
|
|
42335
|
+
export declare enum HelpObjectStoreArticleSearchStrategy {
|
|
42336
|
+
ContentSearch = "CONTENT_SEARCH",
|
|
42337
|
+
Cql = "CQL",
|
|
42338
|
+
Proxy = "PROXY"
|
|
42339
|
+
}
|
|
42308
42340
|
export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
|
|
42309
42341
|
helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
|
|
42310
42342
|
};
|
|
@@ -42384,7 +42416,30 @@ export declare type HelpObjectStorePortal = HelpObjectStoreHelpObject & Node & {
|
|
|
42384
42416
|
id: Scalars['ID']['output'];
|
|
42385
42417
|
title?: Maybe<Scalars['String']['output']>;
|
|
42386
42418
|
};
|
|
42419
|
+
export declare type HelpObjectStorePortalMetadata = {
|
|
42420
|
+
__typename?: 'HelpObjectStorePortalMetadata';
|
|
42421
|
+
searchStrategy: HelpObjectStorePortalSearchStrategy;
|
|
42422
|
+
};
|
|
42387
42423
|
export declare type HelpObjectStorePortalResult = HelpObjectStorePortal | HelpObjectStoreQueryError;
|
|
42424
|
+
export declare type HelpObjectStorePortalSearchResponse = HelpObjectStorePortalSearchResults | HelpObjectStoreSearchError;
|
|
42425
|
+
export declare type HelpObjectStorePortalSearchResult = {
|
|
42426
|
+
__typename?: 'HelpObjectStorePortalSearchResult';
|
|
42427
|
+
absoluteUrl: Scalars['String']['output'];
|
|
42428
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
42429
|
+
displayLink: Scalars['String']['output'];
|
|
42430
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
42431
|
+
id: Scalars['ID']['output'];
|
|
42432
|
+
metadata: HelpObjectStorePortalMetadata;
|
|
42433
|
+
title: Scalars['String']['output'];
|
|
42434
|
+
};
|
|
42435
|
+
export declare type HelpObjectStorePortalSearchResults = {
|
|
42436
|
+
__typename?: 'HelpObjectStorePortalSearchResults';
|
|
42437
|
+
results: Array<HelpObjectStorePortalSearchResult>;
|
|
42438
|
+
};
|
|
42439
|
+
export declare enum HelpObjectStorePortalSearchStrategy {
|
|
42440
|
+
Jira = "JIRA",
|
|
42441
|
+
SearchPlatform = "SEARCH_PLATFORM"
|
|
42442
|
+
}
|
|
42388
42443
|
export declare type HelpObjectStoreQueryApi = {
|
|
42389
42444
|
__typename?: 'HelpObjectStoreQueryApi';
|
|
42390
42445
|
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
@@ -42425,6 +42480,34 @@ export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Nod
|
|
|
42425
42480
|
title?: Maybe<Scalars['String']['output']>;
|
|
42426
42481
|
};
|
|
42427
42482
|
export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreQueryError | HelpObjectStoreRequestForm;
|
|
42483
|
+
export declare type HelpObjectStoreRequestTypeMetadata = {
|
|
42484
|
+
__typename?: 'HelpObjectStoreRequestTypeMetadata';
|
|
42485
|
+
isExternal: Scalars['Boolean']['output'];
|
|
42486
|
+
searchStrategy: HelpObjectStoreRequestTypeSearchStrategy;
|
|
42487
|
+
};
|
|
42488
|
+
export declare type HelpObjectStoreRequestTypeSearchResponse = HelpObjectStoreRequestTypeSearchResults | HelpObjectStoreSearchError;
|
|
42489
|
+
export declare type HelpObjectStoreRequestTypeSearchResult = {
|
|
42490
|
+
__typename?: 'HelpObjectStoreRequestTypeSearchResult';
|
|
42491
|
+
absoluteUrl: Scalars['String']['output'];
|
|
42492
|
+
containerAri: Scalars['ID']['output'];
|
|
42493
|
+
containerName: Scalars['ID']['output'];
|
|
42494
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
42495
|
+
displayLink: Scalars['String']['output'];
|
|
42496
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
42497
|
+
id: Scalars['ID']['output'];
|
|
42498
|
+
metadata: HelpObjectStoreRequestTypeMetadata;
|
|
42499
|
+
title: Scalars['String']['output'];
|
|
42500
|
+
};
|
|
42501
|
+
export declare type HelpObjectStoreRequestTypeSearchResults = {
|
|
42502
|
+
__typename?: 'HelpObjectStoreRequestTypeSearchResults';
|
|
42503
|
+
results: Array<HelpObjectStoreRequestTypeSearchResult>;
|
|
42504
|
+
};
|
|
42505
|
+
export declare enum HelpObjectStoreRequestTypeSearchStrategy {
|
|
42506
|
+
JiraIssueBasedSearch = "JIRA_ISSUE_BASED_SEARCH",
|
|
42507
|
+
JiraKeywordBased = "JIRA_KEYWORD_BASED",
|
|
42508
|
+
SearchPlatformKeywordBased = "SEARCH_PLATFORM_KEYWORD_BASED",
|
|
42509
|
+
SearchPlatformKeywordBasedEr = "SEARCH_PLATFORM_KEYWORD_BASED_ER"
|
|
42510
|
+
}
|
|
42428
42511
|
export declare enum HelpObjectStoreSearchAlgorithm {
|
|
42429
42512
|
KeywordSearchOnIssues = "KEYWORD_SEARCH_ON_ISSUES",
|
|
42430
42513
|
KeywordSearchOnPortalsBm25 = "KEYWORD_SEARCH_ON_PORTALS_BM25",
|
|
@@ -42442,6 +42525,11 @@ export declare enum HelpObjectStoreSearchEntityType {
|
|
|
42442
42525
|
Portal = "PORTAL",
|
|
42443
42526
|
RequestForm = "REQUEST_FORM"
|
|
42444
42527
|
}
|
|
42528
|
+
export declare type HelpObjectStoreSearchError = {
|
|
42529
|
+
__typename?: 'HelpObjectStoreSearchError';
|
|
42530
|
+
extensions: Array<QueryErrorExtension>;
|
|
42531
|
+
message: Scalars['String']['output'];
|
|
42532
|
+
};
|
|
42445
42533
|
export declare type HelpObjectStoreSearchInput = {
|
|
42446
42534
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42447
42535
|
cloudId: Scalars['ID']['input'];
|
|
@@ -53482,8 +53570,14 @@ export declare type JiraQuery = {
|
|
|
53482
53570
|
projectRoleActorLogTableEntries?: Maybe<JiraProjectRoleActorLogTableEntryConnection>;
|
|
53483
53571
|
projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
|
|
53484
53572
|
rankField?: Maybe<JiraJqlFieldWithAliases>;
|
|
53573
|
+
recentBoards?: Maybe<JiraBoardConnection>;
|
|
53574
|
+
recentDashboards?: Maybe<JiraSearchableEntityConnection>;
|
|
53575
|
+
recentFilters?: Maybe<JiraFilterConnection>;
|
|
53576
|
+
recentIssues?: Maybe<JiraIssueConnection>;
|
|
53485
53577
|
recentItems?: Maybe<JiraSearchableEntityConnection>;
|
|
53578
|
+
recentPlans?: Maybe<JiraSearchableEntityConnection>;
|
|
53486
53579
|
recentProjects?: Maybe<JiraProjectConnection>;
|
|
53580
|
+
recentQueues?: Maybe<JiraSearchableEntityConnection>;
|
|
53487
53581
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
53488
53582
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
53489
53583
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
@@ -54197,6 +54291,30 @@ export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
|
54197
54291
|
export declare type JiraQueryRankFieldArgs = {
|
|
54198
54292
|
cloudId: Scalars['ID']['input'];
|
|
54199
54293
|
};
|
|
54294
|
+
export declare type JiraQueryRecentBoardsArgs = {
|
|
54295
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54296
|
+
cloudId: Scalars['ID']['input'];
|
|
54297
|
+
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
54298
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54299
|
+
};
|
|
54300
|
+
export declare type JiraQueryRecentDashboardsArgs = {
|
|
54301
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54302
|
+
cloudId: Scalars['ID']['input'];
|
|
54303
|
+
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
54304
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54305
|
+
};
|
|
54306
|
+
export declare type JiraQueryRecentFiltersArgs = {
|
|
54307
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54308
|
+
cloudId: Scalars['ID']['input'];
|
|
54309
|
+
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
54310
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54311
|
+
};
|
|
54312
|
+
export declare type JiraQueryRecentIssuesArgs = {
|
|
54313
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54314
|
+
cloudId: Scalars['ID']['input'];
|
|
54315
|
+
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
54316
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54317
|
+
};
|
|
54200
54318
|
export declare type JiraQueryRecentItemsArgs = {
|
|
54201
54319
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54202
54320
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -54207,12 +54325,24 @@ export declare type JiraQueryRecentItemsArgs = {
|
|
|
54207
54325
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
54208
54326
|
types: Array<JiraSearchableEntityType>;
|
|
54209
54327
|
};
|
|
54328
|
+
export declare type JiraQueryRecentPlansArgs = {
|
|
54329
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54330
|
+
cloudId: Scalars['ID']['input'];
|
|
54331
|
+
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
54332
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54333
|
+
};
|
|
54210
54334
|
export declare type JiraQueryRecentProjectsArgs = {
|
|
54211
54335
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54212
54336
|
cloudId: Scalars['ID']['input'];
|
|
54213
54337
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
54214
54338
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54215
54339
|
};
|
|
54340
|
+
export declare type JiraQueryRecentQueuesArgs = {
|
|
54341
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54342
|
+
cloudId: Scalars['ID']['input'];
|
|
54343
|
+
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
54344
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54345
|
+
};
|
|
54216
54346
|
export declare type JiraQueryRemoteIssueLinksByIdArgs = {
|
|
54217
54347
|
ids: Array<Scalars['ID']['input']>;
|
|
54218
54348
|
};
|
|
@@ -66884,6 +67014,7 @@ export declare type PtPage = {
|
|
|
66884
67014
|
nearestAncestors?: Maybe<PtPaginatedPageList>;
|
|
66885
67015
|
page?: Maybe<Page>;
|
|
66886
67016
|
previousSiblings?: Maybe<PtPaginatedPageList>;
|
|
67017
|
+
properties?: Maybe<PaginatedJsonContentPropertyList>;
|
|
66887
67018
|
status?: Maybe<PtGraphQlPageStatus>;
|
|
66888
67019
|
subType?: Maybe<Scalars['String']['output']>;
|
|
66889
67020
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -66909,6 +67040,12 @@ export declare type PtPagePreviousSiblingsArgs = {
|
|
|
66909
67040
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66910
67041
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
66911
67042
|
};
|
|
67043
|
+
export declare type PtPagePropertiesArgs = {
|
|
67044
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
67045
|
+
keys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
67046
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
67047
|
+
start?: InputMaybe<Scalars['Int']['input']>;
|
|
67048
|
+
};
|
|
66912
67049
|
export declare type PtPageEdge = {
|
|
66913
67050
|
__typename?: 'PTPageEdge';
|
|
66914
67051
|
cursor: Scalars['String']['output'];
|
|
@@ -69176,6 +69313,9 @@ export declare type Query = {
|
|
|
69176
69313
|
helpExternalResource?: Maybe<HelpExternalResourceQueryApi>;
|
|
69177
69314
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
69178
69315
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
69316
|
+
helpObjectStore_searchArticles?: Maybe<HelpObjectStoreArticleSearchResponse>;
|
|
69317
|
+
helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
|
|
69318
|
+
helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
|
|
69179
69319
|
homeUserSettings?: Maybe<HomeUserSettings>;
|
|
69180
69320
|
incomingLinksCount?: Maybe<IncomingLinksCount>;
|
|
69181
69321
|
inlineTasks?: Maybe<InlineTasksQueryResult>;
|
|
@@ -71092,6 +71232,29 @@ export declare type QueryHelpLayoutArgs = {
|
|
|
71092
71232
|
export declare type QueryHelpObjectStoreArgs = {
|
|
71093
71233
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
71094
71234
|
};
|
|
71235
|
+
export declare type QueryHelpObjectStore_SearchArticlesArgs = {
|
|
71236
|
+
categoryIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
71237
|
+
cloudId: Scalars['ID']['input'];
|
|
71238
|
+
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
71239
|
+
highlight?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71240
|
+
limit: Scalars['Int']['input'];
|
|
71241
|
+
portalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
71242
|
+
queryTerm: Scalars['String']['input'];
|
|
71243
|
+
skipRestrictedPages?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71244
|
+
};
|
|
71245
|
+
export declare type QueryHelpObjectStore_SearchPortalsArgs = {
|
|
71246
|
+
cloudId: Scalars['ID']['input'];
|
|
71247
|
+
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
71248
|
+
limit: Scalars['Int']['input'];
|
|
71249
|
+
queryTerm: Scalars['String']['input'];
|
|
71250
|
+
};
|
|
71251
|
+
export declare type QueryHelpObjectStore_SearchRequestTypesArgs = {
|
|
71252
|
+
cloudId: Scalars['ID']['input'];
|
|
71253
|
+
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
71254
|
+
limit: Scalars['Int']['input'];
|
|
71255
|
+
portalId?: InputMaybe<Scalars['String']['input']>;
|
|
71256
|
+
queryTerm: Scalars['String']['input'];
|
|
71257
|
+
};
|
|
71095
71258
|
export declare type QueryIncomingLinksCountArgs = {
|
|
71096
71259
|
contentId: Scalars['ID']['input'];
|
|
71097
71260
|
};
|
|
@@ -77327,6 +77490,7 @@ export declare enum StringUserInputType {
|
|
|
77327
77490
|
}
|
|
77328
77491
|
export declare type SubjectKey = {
|
|
77329
77492
|
__typename?: 'SubjectKey';
|
|
77493
|
+
confluencePrincipalType: ConfluencePrincipalType;
|
|
77330
77494
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
77331
77495
|
group?: Maybe<Group>;
|
|
77332
77496
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -83367,7 +83531,7 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
83367
83531
|
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
83368
83532
|
draftPRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestDraftTask>>;
|
|
83369
83533
|
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
83370
|
-
|
|
83534
|
+
issueDueSoonSuggestions?: Maybe<Array<WorkSuggestionsIssueDueSoonTask>>;
|
|
83371
83535
|
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
83372
83536
|
stuckIssueSuggestions?: Maybe<Array<WorkSuggestionsStuckIssueTask>>;
|
|
83373
83537
|
};
|
|
@@ -83546,6 +83710,18 @@ export declare enum WorkSuggestionsEnvironmentType {
|
|
|
83546
83710
|
export declare type WorkSuggestionsInput = {
|
|
83547
83711
|
targetAudience?: InputMaybe<WorkSuggestionsTargetAudience>;
|
|
83548
83712
|
};
|
|
83713
|
+
export declare type WorkSuggestionsIssueDueSoonTask = WorkSuggestionsPeriscopeTask & {
|
|
83714
|
+
__typename?: 'WorkSuggestionsIssueDueSoonTask';
|
|
83715
|
+
assigneeProfile?: Maybe<WorkSuggestionsJiraAssignee>;
|
|
83716
|
+
dueDate?: Maybe<Scalars['String']['output']>;
|
|
83717
|
+
id: Scalars['String']['output'];
|
|
83718
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
83719
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
83720
|
+
priority?: Maybe<WorkSuggestionsPriority>;
|
|
83721
|
+
status?: Maybe<WorkSuggestionsIssueStatus>;
|
|
83722
|
+
title: Scalars['String']['output'];
|
|
83723
|
+
url: Scalars['String']['output'];
|
|
83724
|
+
};
|
|
83549
83725
|
export declare type WorkSuggestionsIssueStatus = {
|
|
83550
83726
|
__typename?: 'WorkSuggestionsIssueStatus';
|
|
83551
83727
|
category?: Maybe<Scalars['String']['output']>;
|