@forge/cli-shared 3.23.4-next.0 → 3.23.4-next.1
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 +89 -26
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +31 -10
- package/out/shared/assertUnreachable.d.ts +2 -0
- package/out/shared/assertUnreachable.d.ts.map +1 -0
- package/out/shared/assertUnreachable.js +7 -0
- package/out/shared/index.d.ts +1 -0
- package/out/shared/index.d.ts.map +1 -1
- package/out/shared/index.js +1 -0
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.23.4-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a5d062c: Added error messages for Forge apps containing Connect modules where there is an installation error due to a macro collision or failed descriptor validation.
|
|
8
|
+
|
|
3
9
|
## 3.23.4-next.0
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -1765,7 +1765,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
1765
1765
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
1766
1766
|
id: Scalars['ID']['output'];
|
|
1767
1767
|
};
|
|
1768
|
-
export declare type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsIncidentDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | JiraIssue | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
1768
|
+
export declare type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsIncidentDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraIssue | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
1769
1769
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
1770
1770
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
1771
1771
|
from?: Maybe<Scalars['ID']['output']>;
|
|
@@ -9349,20 +9349,24 @@ export declare type DevOpsMutation_EmptyArgs = {
|
|
|
9349
9349
|
};
|
|
9350
9350
|
export declare type DevOpsOperationsIncidentDetails = {
|
|
9351
9351
|
__typename?: 'DevOpsOperationsIncidentDetails';
|
|
9352
|
-
|
|
9352
|
+
actionItems?: Maybe<GraphStoreSimplifiedIncidentLinkedJswIssueConnection>;
|
|
9353
|
+
affectedComponentIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
9353
9354
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
9354
9355
|
description?: Maybe<Scalars['String']['output']>;
|
|
9355
9356
|
id: Scalars['ID']['output'];
|
|
9356
|
-
linkedPostIncidentReviews?: Maybe<
|
|
9357
|
+
linkedPostIncidentReviews?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkConnection>;
|
|
9357
9358
|
severity?: Maybe<DevOpsOperationsIncidentSeverity>;
|
|
9358
9359
|
status?: Maybe<DevOpsOperationsIncidentStatus>;
|
|
9359
9360
|
summary?: Maybe<Scalars['String']['output']>;
|
|
9360
9361
|
url?: Maybe<Scalars['String']['output']>;
|
|
9361
9362
|
};
|
|
9363
|
+
export declare type DevOpsOperationsIncidentDetailsActionItemsArgs = {
|
|
9364
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9365
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9366
|
+
};
|
|
9362
9367
|
export declare type DevOpsOperationsIncidentDetailsLinkedPostIncidentReviewsArgs = {
|
|
9363
9368
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
9364
9369
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9365
|
-
type?: InputMaybe<Scalars['String']['input']>;
|
|
9366
9370
|
};
|
|
9367
9371
|
export declare enum DevOpsOperationsIncidentSeverity {
|
|
9368
9372
|
P1 = "P1",
|
|
@@ -9385,7 +9389,7 @@ export declare type DevOpsOperationsProvider = DevOpsDataProvider & {
|
|
|
9385
9389
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
9386
9390
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
9387
9391
|
id: Scalars['ID']['output'];
|
|
9388
|
-
linkedContainers?: Maybe<
|
|
9392
|
+
linkedContainers?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentConnection>;
|
|
9389
9393
|
logoUrl?: Maybe<Scalars['URL']['output']>;
|
|
9390
9394
|
name?: Maybe<Scalars['String']['output']>;
|
|
9391
9395
|
providerType?: Maybe<DevOpsProviderType>;
|
|
@@ -9397,8 +9401,7 @@ export declare type DevOpsOperationsProviderConfigStateArgs = {
|
|
|
9397
9401
|
export declare type DevOpsOperationsProviderLinkedContainersArgs = {
|
|
9398
9402
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
9399
9403
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9400
|
-
|
|
9401
|
-
type?: InputMaybe<Scalars['String']['input']>;
|
|
9404
|
+
id: Scalars['ID']['input'];
|
|
9402
9405
|
};
|
|
9403
9406
|
export declare type DevOpsProvider = {
|
|
9404
9407
|
__typename?: 'DevOpsProvider';
|
|
@@ -23936,13 +23939,14 @@ export declare type HasTotal = {
|
|
|
23936
23939
|
export declare type HelpCenter = Node & {
|
|
23937
23940
|
__typename?: 'HelpCenter';
|
|
23938
23941
|
announcements?: Maybe<HelpCenterAnnouncements>;
|
|
23942
|
+
canCreateHelpDesks?: Maybe<Scalars['Boolean']['output']>;
|
|
23939
23943
|
conversation?: Maybe<HelpCenterConversation>;
|
|
23940
23944
|
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
23941
23945
|
helpDesks: HelpCenterHelpDeskItemConnection;
|
|
23942
23946
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
23943
23947
|
id: Scalars['ID']['output'];
|
|
23944
23948
|
name?: Maybe<HelpCenterName>;
|
|
23945
|
-
portals?: Maybe<
|
|
23949
|
+
portals?: Maybe<HelpCenterPortals>;
|
|
23946
23950
|
siteDefaultLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
23947
23951
|
slug?: Maybe<Scalars['String']['output']>;
|
|
23948
23952
|
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
@@ -23959,21 +23963,18 @@ export declare type HelpCenterPortalsArgs = {
|
|
|
23959
23963
|
};
|
|
23960
23964
|
export declare type HelpCenterAnnouncement = {
|
|
23961
23965
|
__typename?: 'HelpCenterAnnouncement';
|
|
23962
|
-
announcementType?: Maybe<HelpCenterAnnouncementType>;
|
|
23963
23966
|
description?: Maybe<Scalars['String']['output']>;
|
|
23964
23967
|
descriptionTranslationsRaw?: Maybe<Array<HelpCenterTranslation>>;
|
|
23968
|
+
descriptionType?: Maybe<HelpCenterDescriptionType>;
|
|
23965
23969
|
name?: Maybe<Scalars['String']['output']>;
|
|
23966
23970
|
nameTranslationsRaw?: Maybe<Array<HelpCenterTranslation>>;
|
|
23967
23971
|
};
|
|
23968
23972
|
export declare type HelpCenterAnnouncementInput = {
|
|
23969
|
-
announcementType: HelpCenterAnnouncementType;
|
|
23970
23973
|
descriptionTranslations?: InputMaybe<Array<HelpCenterTranslationInput>>;
|
|
23974
|
+
descriptionType: HelpCenterDescriptionType;
|
|
23971
23975
|
helpCenterAri: Scalars['String']['input'];
|
|
23972
23976
|
nameTranslations?: InputMaybe<Array<HelpCenterTranslationInput>>;
|
|
23973
23977
|
};
|
|
23974
|
-
export declare enum HelpCenterAnnouncementType {
|
|
23975
|
-
Wiki = "WIKI"
|
|
23976
|
-
}
|
|
23977
23978
|
export declare type HelpCenterAnnouncements = {
|
|
23978
23979
|
__typename?: 'HelpCenterAnnouncements';
|
|
23979
23980
|
canEditAnnouncement?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -24057,9 +24058,15 @@ export declare type HelpCenterDeleteUpdateTopicPayload = Payload & {
|
|
|
24057
24058
|
success: Scalars['Boolean']['output'];
|
|
24058
24059
|
topicIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedTopicIds>>;
|
|
24059
24060
|
};
|
|
24061
|
+
export declare enum HelpCenterDescriptionType {
|
|
24062
|
+
PlainText = "PLAIN_TEXT",
|
|
24063
|
+
RichText = "RICH_TEXT",
|
|
24064
|
+
WikiMarkup = "WIKI_MARKUP"
|
|
24065
|
+
}
|
|
24060
24066
|
export declare type HelpCenterHelpDesk = Node & {
|
|
24061
24067
|
__typename?: 'HelpCenterHelpDesk';
|
|
24062
24068
|
announcement?: Maybe<Array<HelpCenterHelpDeskAnnouncement>>;
|
|
24069
|
+
canAdministerHelpDesk?: Maybe<Scalars['Boolean']['output']>;
|
|
24063
24070
|
contactInfo: Scalars['String']['output'];
|
|
24064
24071
|
description: Scalars['String']['output'];
|
|
24065
24072
|
id: Scalars['ID']['output'];
|
|
@@ -24231,16 +24238,20 @@ export declare type HelpCenterPortal = {
|
|
|
24231
24238
|
__typename?: 'HelpCenterPortal';
|
|
24232
24239
|
description?: Maybe<Scalars['String']['output']>;
|
|
24233
24240
|
id: Scalars['String']['output'];
|
|
24234
|
-
isFeatured
|
|
24235
|
-
isHidden
|
|
24236
|
-
key
|
|
24237
|
-
logoUrl
|
|
24238
|
-
name
|
|
24239
|
-
portalBaseUrl
|
|
24241
|
+
isFeatured?: Maybe<Scalars['Boolean']['output']>;
|
|
24242
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
24243
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
24244
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
24245
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
24246
|
+
portalBaseUrl?: Maybe<Scalars['String']['output']>;
|
|
24240
24247
|
};
|
|
24241
24248
|
export declare type HelpCenterPortalFilter = {
|
|
24242
|
-
|
|
24243
|
-
|
|
24249
|
+
typeFilter?: InputMaybe<Array<HelpCenterPortalsType>>;
|
|
24250
|
+
};
|
|
24251
|
+
export declare type HelpCenterPortals = {
|
|
24252
|
+
__typename?: 'HelpCenterPortals';
|
|
24253
|
+
portalsList?: Maybe<Array<HelpCenterPortal>>;
|
|
24254
|
+
sortOrder?: Maybe<HelpCenterPortalsSortOrder>;
|
|
24244
24255
|
};
|
|
24245
24256
|
export declare type HelpCenterPortalsConfigurationUpdateInput = {
|
|
24246
24257
|
featuredPortals: Array<Scalars['String']['input']>;
|
|
@@ -24257,6 +24268,11 @@ export declare enum HelpCenterPortalsSortOrder {
|
|
|
24257
24268
|
NameAscending = "NAME_ASCENDING",
|
|
24258
24269
|
Popularity = "POPULARITY"
|
|
24259
24270
|
}
|
|
24271
|
+
export declare enum HelpCenterPortalsType {
|
|
24272
|
+
Featured = "FEATURED",
|
|
24273
|
+
Hidden = "HIDDEN",
|
|
24274
|
+
Visible = "VISIBLE"
|
|
24275
|
+
}
|
|
24260
24276
|
export declare type HelpCenterQueryApi = {
|
|
24261
24277
|
__typename?: 'HelpCenterQueryApi';
|
|
24262
24278
|
getHelpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
@@ -24509,7 +24525,7 @@ export declare type HelpLayoutAnnouncementElementData = {
|
|
|
24509
24525
|
__typename?: 'HelpLayoutAnnouncementElementData';
|
|
24510
24526
|
announcementContent?: Maybe<Scalars['String']['output']>;
|
|
24511
24527
|
};
|
|
24512
|
-
export declare type HelpLayoutAtomicElement = HelpLayoutHeadingAtomicElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement;
|
|
24528
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
24513
24529
|
export declare type HelpLayoutAtomicElementInput = {
|
|
24514
24530
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
24515
24531
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
@@ -24518,10 +24534,14 @@ export declare type HelpLayoutAtomicElementInput = {
|
|
|
24518
24534
|
searchConfigInput?: InputMaybe<HelpLayoutSearchConfigInput>;
|
|
24519
24535
|
};
|
|
24520
24536
|
export declare enum HelpLayoutAtomicElementKey {
|
|
24537
|
+
Announcement = "ANNOUNCEMENT",
|
|
24521
24538
|
Heading = "HEADING",
|
|
24522
24539
|
Image = "IMAGE",
|
|
24523
24540
|
Paragraph = "PARAGRAPH",
|
|
24524
|
-
|
|
24541
|
+
PortalsList = "PORTALS_LIST",
|
|
24542
|
+
Search = "SEARCH",
|
|
24543
|
+
SuggestedRequestFormsList = "SUGGESTED_REQUEST_FORMS_LIST",
|
|
24544
|
+
TopicsList = "TOPICS_LIST"
|
|
24525
24545
|
}
|
|
24526
24546
|
export declare type HelpLayoutAtomicElementType = HelpLayoutElementType & {
|
|
24527
24547
|
__typename?: 'HelpLayoutAtomicElementType';
|
|
@@ -24550,6 +24570,7 @@ export declare type HelpLayoutCompositeElement = {
|
|
|
24550
24570
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
24551
24571
|
};
|
|
24552
24572
|
export declare enum HelpLayoutCompositeElementKey {
|
|
24573
|
+
Hero = "HERO",
|
|
24553
24574
|
LinkCard = "LINK_CARD"
|
|
24554
24575
|
}
|
|
24555
24576
|
export declare type HelpLayoutCompositeElementType = HelpLayoutElementType & {
|
|
@@ -24570,7 +24591,7 @@ export declare type HelpLayoutCreationInput = {
|
|
|
24570
24591
|
parentAri: Scalars['ID']['input'];
|
|
24571
24592
|
sections: Array<HelpLayoutSectionInput>;
|
|
24572
24593
|
};
|
|
24573
|
-
export declare type HelpLayoutElement = HelpLayoutHeadingAtomicElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement;
|
|
24594
|
+
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
24574
24595
|
export declare enum HelpLayoutElementCategory {
|
|
24575
24596
|
Basic = "BASIC",
|
|
24576
24597
|
Navigation = "NAVIGATION"
|
|
@@ -24585,6 +24606,7 @@ export declare type HelpLayoutElementInput = {
|
|
|
24585
24606
|
};
|
|
24586
24607
|
export declare enum HelpLayoutElementKey {
|
|
24587
24608
|
Heading = "HEADING",
|
|
24609
|
+
Hero = "HERO",
|
|
24588
24610
|
Image = "IMAGE",
|
|
24589
24611
|
LinkCard = "LINK_CARD",
|
|
24590
24612
|
Paragraph = "PARAGRAPH",
|
|
@@ -25382,6 +25404,17 @@ export declare type InsightsActionNextBestTaskPayload = Payload & {
|
|
|
25382
25404
|
success: Scalars['Boolean']['output'];
|
|
25383
25405
|
userActionState?: Maybe<InsightsUserActionState>;
|
|
25384
25406
|
};
|
|
25407
|
+
export declare type InsightsBlockedIssue = {
|
|
25408
|
+
__typename?: 'InsightsBlockedIssue';
|
|
25409
|
+
issueKey: Scalars['String']['output'];
|
|
25410
|
+
title: Scalars['String']['output'];
|
|
25411
|
+
};
|
|
25412
|
+
export declare type InsightsBlockingIssueDetails = {
|
|
25413
|
+
__typename?: 'InsightsBlockingIssueDetails';
|
|
25414
|
+
blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
|
|
25415
|
+
issueIconUrl: Scalars['String']['output'];
|
|
25416
|
+
issueId: Scalars['String']['output'];
|
|
25417
|
+
};
|
|
25385
25418
|
export declare type InsightsBuildDetails = {
|
|
25386
25419
|
__typename?: 'InsightsBuildDetails';
|
|
25387
25420
|
buildNumber: Scalars['Int']['output'];
|
|
@@ -25450,7 +25483,7 @@ export declare type InsightsNextBestTaskConnection = {
|
|
|
25450
25483
|
pageInfo: PageInfo;
|
|
25451
25484
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
25452
25485
|
};
|
|
25453
|
-
export declare type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails | InsightsVulnDetails;
|
|
25486
|
+
export declare type InsightsNextBestTaskDetails = InsightsBlockingIssueDetails | InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails | InsightsVulnDetails;
|
|
25454
25487
|
export declare type InsightsNextBestTaskEdge = {
|
|
25455
25488
|
__typename?: 'InsightsNextBestTaskEdge';
|
|
25456
25489
|
cursor: Scalars['String']['output'];
|
|
@@ -25471,6 +25504,7 @@ export declare type InsightsPullRequestReviewDetails = {
|
|
|
25471
25504
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
25472
25505
|
};
|
|
25473
25506
|
export declare enum InsightsTaskType {
|
|
25507
|
+
BlockingIssue = "BLOCKING_ISSUE",
|
|
25474
25508
|
BuildFailed = "BUILD_FAILED",
|
|
25475
25509
|
CritVuln = "CRIT_VULN",
|
|
25476
25510
|
DeploymentFailed = "DEPLOYMENT_FAILED",
|
|
@@ -32131,6 +32165,7 @@ export declare type JiraQuery = {
|
|
|
32131
32165
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
32132
32166
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
32133
32167
|
jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
|
|
32168
|
+
jwmAddableViewTypes?: Maybe<JiraWorkManagementSavedViewTypeConnection>;
|
|
32134
32169
|
jwmCustomBackgrounds?: Maybe<JiraWorkManagementCustomBackgroundConnection>;
|
|
32135
32170
|
jwmFilters?: Maybe<JiraWorkManagementFilterConnectionResult>;
|
|
32136
32171
|
jwmForm?: Maybe<JiraWorkManagementFormConfiguration>;
|
|
@@ -32507,6 +32542,11 @@ export declare type JiraQueryJsonUserPropertyArgs = {
|
|
|
32507
32542
|
cloudId: Scalars['ID']['input'];
|
|
32508
32543
|
propertyKey: Scalars['String']['input'];
|
|
32509
32544
|
};
|
|
32545
|
+
export declare type JiraQueryJwmAddableViewTypesArgs = {
|
|
32546
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32547
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32548
|
+
projectId: Scalars['ID']['input'];
|
|
32549
|
+
};
|
|
32510
32550
|
export declare type JiraQueryJwmCustomBackgroundsArgs = {
|
|
32511
32551
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32512
32552
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -36282,7 +36322,24 @@ export declare type JiraWorkManagementSavedView = JiraNavigationItem & Node & {
|
|
|
36282
36322
|
id: Scalars['ID']['output'];
|
|
36283
36323
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
36284
36324
|
label?: Maybe<Scalars['String']['output']>;
|
|
36285
|
-
type?: Maybe<
|
|
36325
|
+
type?: Maybe<JiraWorkManagementSavedViewType>;
|
|
36326
|
+
};
|
|
36327
|
+
export declare type JiraWorkManagementSavedViewType = Node & {
|
|
36328
|
+
__typename?: 'JiraWorkManagementSavedViewType';
|
|
36329
|
+
id: Scalars['ID']['output'];
|
|
36330
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
36331
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
36332
|
+
};
|
|
36333
|
+
export declare type JiraWorkManagementSavedViewTypeConnection = HasPageInfo & {
|
|
36334
|
+
__typename?: 'JiraWorkManagementSavedViewTypeConnection';
|
|
36335
|
+
edges?: Maybe<Array<Maybe<JiraWorkManagementSavedViewTypeEdge>>>;
|
|
36336
|
+
errors?: Maybe<Array<QueryError>>;
|
|
36337
|
+
pageInfo: PageInfo;
|
|
36338
|
+
};
|
|
36339
|
+
export declare type JiraWorkManagementSavedViewTypeEdge = {
|
|
36340
|
+
__typename?: 'JiraWorkManagementSavedViewTypeEdge';
|
|
36341
|
+
cursor: Scalars['String']['output'];
|
|
36342
|
+
node?: Maybe<JiraWorkManagementSavedViewType>;
|
|
36286
36343
|
};
|
|
36287
36344
|
export declare type JiraWorkManagementUpdateActiveBackgroundPayload = Payload & {
|
|
36288
36345
|
__typename?: 'JiraWorkManagementUpdateActiveBackgroundPayload';
|
|
@@ -39598,6 +39655,7 @@ export declare type PolarisView = {
|
|
|
39598
39655
|
sortMode: PolarisViewSortMode;
|
|
39599
39656
|
tableColumnSizes?: Maybe<Array<PolarisViewTableColumnSize>>;
|
|
39600
39657
|
timelineConfig?: Maybe<PolarisTimelineConfig>;
|
|
39658
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
39601
39659
|
userJql?: Maybe<Scalars['String']['output']>;
|
|
39602
39660
|
uuid: Scalars['ID']['output'];
|
|
39603
39661
|
verticalGroupBy?: Maybe<PolarisIdeaField>;
|
|
@@ -41925,12 +41983,17 @@ export declare enum SearchResultType {
|
|
|
41925
41983
|
Comment = "comment",
|
|
41926
41984
|
Dashboard = "dashboard",
|
|
41927
41985
|
Database = "database",
|
|
41986
|
+
Document = "document",
|
|
41928
41987
|
Filter = "filter",
|
|
41988
|
+
Goal = "goal",
|
|
41929
41989
|
Issue = "issue",
|
|
41990
|
+
Learning = "learning",
|
|
41930
41991
|
Page = "page",
|
|
41931
41992
|
Plan = "plan",
|
|
41932
41993
|
Project = "project",
|
|
41994
|
+
Question = "question",
|
|
41933
41995
|
Space = "space",
|
|
41996
|
+
Tag = "tag",
|
|
41934
41997
|
Unrecognised = "unrecognised",
|
|
41935
41998
|
Whiteboard = "whiteboard"
|
|
41936
41999
|
}
|