@forge/cli-shared 5.0.1-next.1 → 5.0.1-next.3
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 +15 -0
- package/out/graphql/graphql-types.d.ts +895 -281
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +41 -44
- package/out/ui/command-line-ui.js +1 -1
- package/package.json +2 -2
|
@@ -1663,7 +1663,13 @@ export declare type AtlassianAccountUserExtendedProfile = {
|
|
|
1663
1663
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
1664
1664
|
location?: Maybe<Scalars['String']['output']>;
|
|
1665
1665
|
organization?: Maybe<Scalars['String']['output']>;
|
|
1666
|
-
phoneNumbers?: Maybe<Array<Maybe<
|
|
1666
|
+
phoneNumbers?: Maybe<Array<Maybe<AtlassianAccountUserPhoneNumber>>>;
|
|
1667
|
+
teamType?: Maybe<Scalars['String']['output']>;
|
|
1668
|
+
};
|
|
1669
|
+
export declare type AtlassianAccountUserPhoneNumber = {
|
|
1670
|
+
__typename?: 'AtlassianAccountUserPhoneNumber';
|
|
1671
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
1672
|
+
value: Scalars['String']['output'];
|
|
1667
1673
|
};
|
|
1668
1674
|
export declare type AtlassianOAuthClient = {
|
|
1669
1675
|
__typename?: 'AtlassianOAuthClient';
|
|
@@ -1781,6 +1787,11 @@ export declare type AuxEffectsResult = {
|
|
|
1781
1787
|
effects: Array<Scalars['JSON']['output']>;
|
|
1782
1788
|
metrics?: Maybe<InvocationMetrics>;
|
|
1783
1789
|
};
|
|
1790
|
+
export declare type AvailableColumnConstraintStatistics = {
|
|
1791
|
+
__typename?: 'AvailableColumnConstraintStatistics';
|
|
1792
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1793
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1794
|
+
};
|
|
1784
1795
|
export declare type AvailableEstimations = {
|
|
1785
1796
|
__typename?: 'AvailableEstimations';
|
|
1786
1797
|
name: Scalars['String']['output'];
|
|
@@ -1988,6 +1999,7 @@ export declare type BoardScope = Node & {
|
|
|
1988
1999
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
1989
2000
|
globalCardCreateAdditionalFields?: Maybe<GlobalCardCreateAdditionalFields>;
|
|
1990
2001
|
id: Scalars['ID']['output'];
|
|
2002
|
+
isCrossProject?: Maybe<Scalars['Boolean']['output']>;
|
|
1991
2003
|
issues?: Maybe<HydratingJiraIssueConnection>;
|
|
1992
2004
|
jql?: Maybe<Scalars['String']['output']>;
|
|
1993
2005
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -2243,6 +2255,9 @@ export declare type CardStatus = {
|
|
|
2243
2255
|
__typename?: 'CardStatus';
|
|
2244
2256
|
category?: Maybe<Scalars['String']['output']>;
|
|
2245
2257
|
id?: Maybe<Scalars['ID']['output']>;
|
|
2258
|
+
isPresentInWorkflow?: Maybe<Scalars['Boolean']['output']>;
|
|
2259
|
+
isResolutionDone?: Maybe<Scalars['Boolean']['output']>;
|
|
2260
|
+
issueMetaData?: Maybe<JswCardStatusIssueMetaData>;
|
|
2246
2261
|
name?: Maybe<Scalars['String']['output']>;
|
|
2247
2262
|
};
|
|
2248
2263
|
export declare type CardType = {
|
|
@@ -2748,8 +2763,10 @@ export declare type Column = {
|
|
|
2748
2763
|
id?: Maybe<Scalars['ID']['output']>;
|
|
2749
2764
|
isDone: Scalars['Boolean']['output'];
|
|
2750
2765
|
isInitial: Scalars['Boolean']['output'];
|
|
2766
|
+
isKanPlanColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
2751
2767
|
issues?: Maybe<HydratingJiraIssueConnection>;
|
|
2752
2768
|
maxCardCount?: Maybe<Scalars['Int']['output']>;
|
|
2769
|
+
minCardCount?: Maybe<Scalars['Int']['output']>;
|
|
2753
2770
|
name?: Maybe<Scalars['String']['output']>;
|
|
2754
2771
|
};
|
|
2755
2772
|
export declare type ColumnCardsArgs = {
|
|
@@ -2766,6 +2783,11 @@ export declare type ColumnConfigSwimlane = {
|
|
|
2766
2783
|
sharedStatuses?: Maybe<Array<Maybe<RawStatus>>>;
|
|
2767
2784
|
uniqueStatuses?: Maybe<Array<Maybe<RawStatus>>>;
|
|
2768
2785
|
};
|
|
2786
|
+
export declare type ColumnConstraintStatisticConfig = {
|
|
2787
|
+
__typename?: 'ColumnConstraintStatisticConfig';
|
|
2788
|
+
availableConstraints?: Maybe<Array<Maybe<AvailableColumnConstraintStatistics>>>;
|
|
2789
|
+
currentId?: Maybe<Scalars['String']['output']>;
|
|
2790
|
+
};
|
|
2769
2791
|
export declare type ColumnInSwimlane = {
|
|
2770
2792
|
__typename?: 'ColumnInSwimlane';
|
|
2771
2793
|
cards: Array<Maybe<SoftwareCard>>;
|
|
@@ -2781,11 +2803,20 @@ export declare type ColumnStatus = {
|
|
|
2781
2803
|
status: CardStatus;
|
|
2782
2804
|
transitions: Array<SoftwareCardTransition>;
|
|
2783
2805
|
};
|
|
2806
|
+
export declare type ColumnWorkflowConfig = {
|
|
2807
|
+
__typename?: 'ColumnWorkflowConfig';
|
|
2808
|
+
canSimplifyWorkflow?: Maybe<Scalars['Boolean']['output']>;
|
|
2809
|
+
isProjectAdminOfSimplifiedWorkflow?: Maybe<Scalars['Boolean']['output']>;
|
|
2810
|
+
userCanSimplifyWorkflow?: Maybe<Scalars['Boolean']['output']>;
|
|
2811
|
+
usingSimplifiedWorkflow?: Maybe<Scalars['Boolean']['output']>;
|
|
2812
|
+
};
|
|
2784
2813
|
export declare type ColumnsConfig = {
|
|
2785
2814
|
__typename?: 'ColumnsConfig';
|
|
2786
2815
|
columnConfigSwimlanes?: Maybe<Array<Maybe<ColumnConfigSwimlane>>>;
|
|
2816
|
+
constraintsStatisticsField?: Maybe<ColumnConstraintStatisticConfig>;
|
|
2787
2817
|
isUpdating?: Maybe<Scalars['Boolean']['output']>;
|
|
2788
2818
|
unmappedStatuses?: Maybe<Array<Maybe<RawStatus>>>;
|
|
2819
|
+
workflow?: Maybe<ColumnWorkflowConfig>;
|
|
2789
2820
|
};
|
|
2790
2821
|
export declare type CommerceAccountDetails = {
|
|
2791
2822
|
invoiceGroup?: Maybe<CommerceInvoiceGroup>;
|
|
@@ -6350,10 +6381,19 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
6350
6381
|
};
|
|
6351
6382
|
export declare type ConfluenceDatabase = {
|
|
6352
6383
|
__typename?: 'ConfluenceDatabase';
|
|
6384
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
6353
6385
|
databaseId: Scalars['ID']['output'];
|
|
6354
6386
|
id: Scalars['ID']['output'];
|
|
6387
|
+
links?: Maybe<ConfluenceDatabaseLinks>;
|
|
6388
|
+
owner?: Maybe<ConfluenceUserInfo>;
|
|
6389
|
+
space?: Maybe<ConfluenceSpace>;
|
|
6355
6390
|
title?: Maybe<Scalars['String']['output']>;
|
|
6356
6391
|
};
|
|
6392
|
+
export declare type ConfluenceDatabaseLinks = {
|
|
6393
|
+
__typename?: 'ConfluenceDatabaseLinks';
|
|
6394
|
+
base?: Maybe<Scalars['String']['output']>;
|
|
6395
|
+
webUi?: Maybe<Scalars['String']['output']>;
|
|
6396
|
+
};
|
|
6357
6397
|
export declare type ConfluenceDeleteBlogPostPropertyInput = {
|
|
6358
6398
|
blogPostId: Scalars['ID']['input'];
|
|
6359
6399
|
key: Scalars['String']['input'];
|
|
@@ -6402,6 +6442,7 @@ export declare type ConfluenceEmbed = {
|
|
|
6402
6442
|
embedId: Scalars['ID']['output'];
|
|
6403
6443
|
id: Scalars['ID']['output'];
|
|
6404
6444
|
links?: Maybe<ConfluenceEmbedLinks>;
|
|
6445
|
+
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
6405
6446
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
6406
6447
|
space?: Maybe<ConfluenceSpace>;
|
|
6407
6448
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -7243,6 +7284,16 @@ export declare type ContentPlatformAnimatedTourCard = {
|
|
|
7243
7284
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7244
7285
|
};
|
|
7245
7286
|
export declare type ContentPlatformAnyContext = ContentPlatformContextApp | ContentPlatformContextProduct | ContentPlatformContextTheme;
|
|
7287
|
+
export declare type ContentPlatformArticleIntroduction = {
|
|
7288
|
+
__typename?: 'ContentPlatformArticleIntroduction';
|
|
7289
|
+
articleIntroductionAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7290
|
+
articleIntroductionDetails?: Maybe<Scalars['String']['output']>;
|
|
7291
|
+
articleIntroductionName?: Maybe<Scalars['String']['output']>;
|
|
7292
|
+
componentizedIntroduction?: Maybe<Array<ContentPlatformAssetComponentAndProTipComponentAndTextComponentAndCallToActionAndQuestionComponentAndTwitterComponentAndCallOutComponentUnion>>;
|
|
7293
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7294
|
+
embedLink?: Maybe<Scalars['String']['output']>;
|
|
7295
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7296
|
+
};
|
|
7246
7297
|
export declare type ContentPlatformAssetComponent = {
|
|
7247
7298
|
__typename?: 'ContentPlatformAssetComponent';
|
|
7248
7299
|
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
@@ -7296,6 +7347,7 @@ export declare type ContentPlatformCallToAction = {
|
|
|
7296
7347
|
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7297
7348
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7298
7349
|
dataBlueprintModule?: Maybe<Scalars['String']['output']>;
|
|
7350
|
+
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
7299
7351
|
productLogo?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7300
7352
|
productName?: Maybe<Scalars['String']['output']>;
|
|
7301
7353
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -7479,6 +7531,26 @@ export declare type ContentPlatformFieldType = {
|
|
|
7479
7531
|
__typename?: 'ContentPlatformFieldType';
|
|
7480
7532
|
field: ContentPlatformFieldNames;
|
|
7481
7533
|
};
|
|
7534
|
+
export declare type ContentPlatformFullHubArticle = {
|
|
7535
|
+
__typename?: 'ContentPlatformFullHubArticle';
|
|
7536
|
+
articleIntroduction?: Maybe<Array<ContentPlatformArticleIntroduction>>;
|
|
7537
|
+
articleRef?: Maybe<ContentPlatformHubArticle>;
|
|
7538
|
+
articleSummary?: Maybe<Scalars['String']['output']>;
|
|
7539
|
+
author?: Maybe<ContentPlatformAuthor>;
|
|
7540
|
+
bodyTextContainer?: Maybe<Array<ContentPlatformSupportingConceptWrapper>>;
|
|
7541
|
+
contentHubSubscribe?: Maybe<Array<ContentPlatformSubscribeComponent>>;
|
|
7542
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7543
|
+
nextBestAction?: Maybe<Array<ContentPlatformHubArticleAndTutorialUnion>>;
|
|
7544
|
+
productDiscussedCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
7545
|
+
relatedHub?: Maybe<Array<ContentPlatformTaxonomyContentHub>>;
|
|
7546
|
+
relatedProductFeatures?: Maybe<Array<ContentPlatformTaxonomyFeature>>;
|
|
7547
|
+
relatedTutorialCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
7548
|
+
shareThisArticle?: Maybe<Array<ContentPlatformSocialMediaLink>>;
|
|
7549
|
+
subtitle?: Maybe<Scalars['String']['output']>;
|
|
7550
|
+
upNext?: Maybe<ContentPlatformHubArticleAndTutorialAndTopicOverviewUnion>;
|
|
7551
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7552
|
+
whitePaperCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
7553
|
+
};
|
|
7482
7554
|
export declare type ContentPlatformFullTutorial = {
|
|
7483
7555
|
__typename?: 'ContentPlatformFullTutorial';
|
|
7484
7556
|
author?: Maybe<ContentPlatformAuthor>;
|
|
@@ -7493,7 +7565,7 @@ export declare type ContentPlatformFullTutorial = {
|
|
|
7493
7565
|
shareThisTutorial?: Maybe<Array<ContentPlatformSocialMediaLink>>;
|
|
7494
7566
|
subtitle?: Maybe<Scalars['String']['output']>;
|
|
7495
7567
|
tutorialInstructions?: Maybe<Array<ContentPlatformTutorialInstructionsWrapper>>;
|
|
7496
|
-
tutorialIntroduction?: Maybe<ContentPlatformTutorialIntroduction
|
|
7568
|
+
tutorialIntroduction?: Maybe<Array<ContentPlatformTutorialIntroduction>>;
|
|
7497
7569
|
tutorialRef: ContentPlatformTutorial;
|
|
7498
7570
|
tutorialSummary?: Maybe<Scalars['String']['output']>;
|
|
7499
7571
|
upNext?: Maybe<ContentPlatformHubArticleAndTutorialAndTopicOverviewUnion>;
|
|
@@ -7513,6 +7585,16 @@ export declare type ContentPlatformHubArticle = {
|
|
|
7513
7585
|
export declare type ContentPlatformHubArticleAndTutorialAndProductFeatureAndFeaturedVideoUnion = ContentPlatformFeaturedVideo | ContentPlatformHubArticle | ContentPlatformProductFeature | ContentPlatformTutorial;
|
|
7514
7586
|
export declare type ContentPlatformHubArticleAndTutorialAndTopicOverviewUnion = ContentPlatformHubArticle | ContentPlatformTopicOverview | ContentPlatformTutorial;
|
|
7515
7587
|
export declare type ContentPlatformHubArticleAndTutorialUnion = ContentPlatformHubArticle | ContentPlatformTutorial;
|
|
7588
|
+
export declare type ContentPlatformHubArticleResultEdge = {
|
|
7589
|
+
__typename?: 'ContentPlatformHubArticleResultEdge';
|
|
7590
|
+
cursor: Scalars['String']['output'];
|
|
7591
|
+
node: ContentPlatformFullHubArticle;
|
|
7592
|
+
};
|
|
7593
|
+
export declare type ContentPlatformHubArticleSearchConnection = {
|
|
7594
|
+
__typename?: 'ContentPlatformHubArticleSearchConnection';
|
|
7595
|
+
edges: Array<ContentPlatformHubArticleResultEdge>;
|
|
7596
|
+
pageInfo: PageInfo;
|
|
7597
|
+
};
|
|
7516
7598
|
export declare type ContentPlatformImageAsset = {
|
|
7517
7599
|
__typename?: 'ContentPlatformImageAsset';
|
|
7518
7600
|
contentType: Scalars['String']['output'];
|
|
@@ -7808,7 +7890,7 @@ export declare type ContentPlatformSubscribeComponent = {
|
|
|
7808
7890
|
};
|
|
7809
7891
|
export declare type ContentPlatformSupportingConceptWrapper = {
|
|
7810
7892
|
__typename?: 'ContentPlatformSupportingConceptWrapper';
|
|
7811
|
-
contentComponents?: Maybe<Array<
|
|
7893
|
+
contentComponents?: Maybe<Array<ContentPlatformTextComponentAndAssetComponentAndProTipComponentAndTwitterComponentAndEmbeddedVideoAssetAndCallToActionAndCallOutComponentAndQuestionComponentUnion>>;
|
|
7812
7894
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7813
7895
|
name?: Maybe<Scalars['String']['output']>;
|
|
7814
7896
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -8028,7 +8110,7 @@ export declare type ContentPlatformTextComponent = {
|
|
|
8028
8110
|
name?: Maybe<Scalars['String']['output']>;
|
|
8029
8111
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
8030
8112
|
};
|
|
8031
|
-
export declare type
|
|
8113
|
+
export declare type ContentPlatformTextComponentAndAssetComponentAndProTipComponentAndTwitterComponentAndEmbeddedVideoAssetAndCallToActionAndCallOutComponentAndQuestionComponentUnion = ContentPlatformAssetComponent | ContentPlatformCallOutComponent | ContentPlatformCallToAction | ContentPlatformEmbeddedVideoAsset | ContentPlatformProTipComponent | ContentPlatformQuestionComponent | ContentPlatformTextComponent | ContentPlatformTwitterComponent;
|
|
8032
8114
|
export declare type ContentPlatformTopicIntroduction = {
|
|
8033
8115
|
__typename?: 'ContentPlatformTopicIntroduction';
|
|
8034
8116
|
asset?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
@@ -27391,7 +27473,7 @@ export declare type HelpLayoutCreationInput = {
|
|
|
27391
27473
|
parentAri: Scalars['ID']['input'];
|
|
27392
27474
|
sections: Array<HelpLayoutSectionInput>;
|
|
27393
27475
|
};
|
|
27394
|
-
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
27476
|
+
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
27395
27477
|
export declare enum HelpLayoutElementCategory {
|
|
27396
27478
|
Basic = "BASIC",
|
|
27397
27479
|
Navigation = "NAVIGATION"
|
|
@@ -29704,6 +29786,7 @@ export declare type JiraAutodevJob = {
|
|
|
29704
29786
|
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
29705
29787
|
state?: Maybe<JiraAutodevState>;
|
|
29706
29788
|
status?: Maybe<JiraAutodevStatus>;
|
|
29789
|
+
statusHistory?: Maybe<JiraAutodevStatusHistoryItemConnection>;
|
|
29707
29790
|
};
|
|
29708
29791
|
export declare type JiraAutodevJobConnection = {
|
|
29709
29792
|
__typename?: 'JiraAutodevJobConnection';
|
|
@@ -29760,6 +29843,23 @@ export declare enum JiraAutodevStatus {
|
|
|
29760
29843
|
InProgress = "IN_PROGRESS",
|
|
29761
29844
|
Pending = "PENDING"
|
|
29762
29845
|
}
|
|
29846
|
+
export declare type JiraAutodevStatusHistoryItem = {
|
|
29847
|
+
__typename?: 'JiraAutodevStatusHistoryItem';
|
|
29848
|
+
status?: Maybe<JiraAutodevStatus>;
|
|
29849
|
+
timestamp?: Maybe<Scalars['String']['output']>;
|
|
29850
|
+
workflowName?: Maybe<Scalars['String']['output']>;
|
|
29851
|
+
};
|
|
29852
|
+
export declare type JiraAutodevStatusHistoryItemConnection = {
|
|
29853
|
+
__typename?: 'JiraAutodevStatusHistoryItemConnection';
|
|
29854
|
+
edges?: Maybe<Array<Maybe<JiraAutodevStatusHistoryItemEdge>>>;
|
|
29855
|
+
nodes?: Maybe<Array<Maybe<JiraAutodevStatusHistoryItem>>>;
|
|
29856
|
+
pageInfo: PageInfo;
|
|
29857
|
+
};
|
|
29858
|
+
export declare type JiraAutodevStatusHistoryItemEdge = {
|
|
29859
|
+
__typename?: 'JiraAutodevStatusHistoryItemEdge';
|
|
29860
|
+
cursor: Scalars['String']['output'];
|
|
29861
|
+
node?: Maybe<JiraAutodevStatusHistoryItem>;
|
|
29862
|
+
};
|
|
29763
29863
|
export declare type JiraAutofixCreateJobPayload = Payload & {
|
|
29764
29864
|
__typename?: 'JiraAutofixCreateJobPayload';
|
|
29765
29865
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -29823,6 +29923,7 @@ export declare enum JiraBatchWindowPreference {
|
|
|
29823
29923
|
FifteenMinutes = "FIFTEEN_MINUTES",
|
|
29824
29924
|
FiveMinutes = "FIVE_MINUTES",
|
|
29825
29925
|
NoBatching = "NO_BATCHING",
|
|
29926
|
+
OncePerDay = "ONCE_PER_DAY",
|
|
29826
29927
|
OneDay = "ONE_DAY",
|
|
29827
29928
|
OneHour = "ONE_HOUR",
|
|
29828
29929
|
TenMinutes = "TEN_MINUTES",
|
|
@@ -29974,22 +30075,6 @@ export declare type JiraBulkTransitionEdge = {
|
|
|
29974
30075
|
cursor: Scalars['String']['output'];
|
|
29975
30076
|
node?: Maybe<JiraBulkTransition>;
|
|
29976
30077
|
};
|
|
29977
|
-
export declare type JiraBulkTransitionScreenConnection = {
|
|
29978
|
-
__typename?: 'JiraBulkTransitionScreenConnection';
|
|
29979
|
-
edges?: Maybe<Array<Maybe<JiraBulkTransitionScreenEdge>>>;
|
|
29980
|
-
errors?: Maybe<Array<QueryError>>;
|
|
29981
|
-
pageInfo: PageInfo;
|
|
29982
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
29983
|
-
};
|
|
29984
|
-
export declare type JiraBulkTransitionScreenEdge = {
|
|
29985
|
-
__typename?: 'JiraBulkTransitionScreenEdge';
|
|
29986
|
-
cursor: Scalars['String']['output'];
|
|
29987
|
-
node?: Maybe<Array<Maybe<JiraScreenTabLayout>>>;
|
|
29988
|
-
};
|
|
29989
|
-
export declare type JiraBulkTransitionScreenInput = {
|
|
29990
|
-
issueIds: Array<Scalars['ID']['input']>;
|
|
29991
|
-
transitionId: Scalars['Long']['input'];
|
|
29992
|
-
};
|
|
29993
30078
|
export declare type JiraBulkTransitionScreenLayout = Node & {
|
|
29994
30079
|
__typename?: 'JiraBulkTransitionScreenLayout';
|
|
29995
30080
|
comment?: Maybe<JiraRichTextField>;
|
|
@@ -30005,16 +30090,6 @@ export declare type JiraBulkTransitionScreenLayoutIssuesToBeEditedArgs = {
|
|
|
30005
30090
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30006
30091
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30007
30092
|
};
|
|
30008
|
-
export declare type JiraBulkTransitionScreenResponse = {
|
|
30009
|
-
__typename?: 'JiraBulkTransitionScreenResponse';
|
|
30010
|
-
bulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenConnection>;
|
|
30011
|
-
};
|
|
30012
|
-
export declare type JiraBulkTransitionScreenResponseBulkTransitionsScreenArgs = {
|
|
30013
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
30014
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
30015
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30016
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30017
|
-
};
|
|
30018
30093
|
export declare type JiraBulkTransitionsInput = {
|
|
30019
30094
|
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
30020
30095
|
transitionId: Scalars['String']['input'];
|
|
@@ -31042,6 +31117,12 @@ export declare type JiraCreatePlanPayload = Payload & {
|
|
|
31042
31117
|
plan?: Maybe<JiraPlan>;
|
|
31043
31118
|
success: Scalars['Boolean']['output'];
|
|
31044
31119
|
};
|
|
31120
|
+
export declare type JiraCreateProjectCleanupRecommendationsPayload = Payload & {
|
|
31121
|
+
__typename?: 'JiraCreateProjectCleanupRecommendationsPayload';
|
|
31122
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31123
|
+
recommendationsCreated?: Maybe<Scalars['Long']['output']>;
|
|
31124
|
+
success: Scalars['Boolean']['output'];
|
|
31125
|
+
};
|
|
31045
31126
|
export declare type JiraCreateReleaseNoteConfluencePageInput = {
|
|
31046
31127
|
appLinkId?: InputMaybe<Scalars['ID']['input']>;
|
|
31047
31128
|
excludeIssueKey?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31840,6 +31921,18 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
31840
31921
|
Allow = "ALLOW",
|
|
31841
31922
|
Exclude = "EXCLUDE"
|
|
31842
31923
|
}
|
|
31924
|
+
export declare type JiraFieldSetPreferences = {
|
|
31925
|
+
__typename?: 'JiraFieldSetPreferences';
|
|
31926
|
+
width?: Maybe<Scalars['Int']['output']>;
|
|
31927
|
+
};
|
|
31928
|
+
export declare type JiraFieldSetPreferencesMutationInput = {
|
|
31929
|
+
nodes?: InputMaybe<Array<JiraUpdateFieldSetPreferencesInput>>;
|
|
31930
|
+
};
|
|
31931
|
+
export declare type JiraFieldSetPreferencesUpdatePayload = Payload & {
|
|
31932
|
+
__typename?: 'JiraFieldSetPreferencesUpdatePayload';
|
|
31933
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31934
|
+
success: Scalars['Boolean']['output'];
|
|
31935
|
+
};
|
|
31843
31936
|
export declare type JiraFieldSetsMutationInput = {
|
|
31844
31937
|
replaceFieldSetsInput?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
|
|
31845
31938
|
resetToDefaultFieldSets?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32461,7 +32554,6 @@ export declare type JiraIssue = Node & {
|
|
|
32461
32554
|
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
32462
32555
|
key: Scalars['String']['output'];
|
|
32463
32556
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
32464
|
-
linkedDesigns?: Maybe<GraphJiraDesignConnection>;
|
|
32465
32557
|
mediaReadToken?: Maybe<JiraMediaReadToken>;
|
|
32466
32558
|
mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
32467
32559
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
@@ -32566,10 +32658,6 @@ export declare type JiraIssueIssueLinksArgs = {
|
|
|
32566
32658
|
export declare type JiraIssueIssuePropertyByKeyArgs = {
|
|
32567
32659
|
key: Scalars['String']['input'];
|
|
32568
32660
|
};
|
|
32569
|
-
export declare type JiraIssueLinkedDesignsArgs = {
|
|
32570
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32571
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32572
|
-
};
|
|
32573
32661
|
export declare type JiraIssueMediaReadTokenArgs = {
|
|
32574
32662
|
maxTokenLength: Scalars['Int']['input'];
|
|
32575
32663
|
};
|
|
@@ -33348,6 +33436,7 @@ export declare type JiraIssueSearchFieldSet = {
|
|
|
33348
33436
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
33349
33437
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
33350
33438
|
fieldSetId?: Maybe<Scalars['String']['output']>;
|
|
33439
|
+
fieldSetPreferences?: Maybe<JiraFieldSetPreferences>;
|
|
33351
33440
|
fieldType?: Maybe<JiraFieldType>;
|
|
33352
33441
|
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
33353
33442
|
isSortable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -34665,6 +34754,7 @@ export declare type JiraMutation = {
|
|
|
34665
34754
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
34666
34755
|
createJwmOverview?: Maybe<JiraWorkManagementGiraCreateOverviewPayload>;
|
|
34667
34756
|
createLargeSolution?: Maybe<JiraCreateLargeSolutionPayload>;
|
|
34757
|
+
createProjectCleanupRecommendations?: Maybe<JiraCreateProjectCleanupRecommendationsPayload>;
|
|
34668
34758
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
34669
34759
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
34670
34760
|
createSafeGlobalData?: Maybe<JiraCreateSafeGlobalDataPayload>;
|
|
@@ -34774,6 +34864,7 @@ export declare type JiraMutation = {
|
|
|
34774
34864
|
updateTeamField?: Maybe<JiraTeamFieldPayload>;
|
|
34775
34865
|
updateTimeTrackingField?: Maybe<JiraTimeTrackingFieldPayload>;
|
|
34776
34866
|
updateUrlField?: Maybe<JiraUrlFieldPayload>;
|
|
34867
|
+
updateUserFieldSetPreferences?: Maybe<JiraFieldSetPreferencesUpdatePayload>;
|
|
34777
34868
|
updateUserNavigationConfiguration?: Maybe<JiraUserNavigationConfigurationPayload>;
|
|
34778
34869
|
updateVersionArchivedStatus?: Maybe<JiraUpdateVersionPayload>;
|
|
34779
34870
|
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
@@ -34856,6 +34947,9 @@ export declare type JiraMutationCreateJwmOverviewArgs = {
|
|
|
34856
34947
|
export declare type JiraMutationCreateLargeSolutionArgs = {
|
|
34857
34948
|
input: JiraCreateLargeSolutionInput;
|
|
34858
34949
|
};
|
|
34950
|
+
export declare type JiraMutationCreateProjectCleanupRecommendationsArgs = {
|
|
34951
|
+
cloudId: Scalars['ID']['input'];
|
|
34952
|
+
};
|
|
34859
34953
|
export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
34860
34954
|
input: JiraCreateShortcutInput;
|
|
34861
34955
|
};
|
|
@@ -35194,6 +35288,10 @@ export declare type JiraMutationUpdateTimeTrackingFieldArgs = {
|
|
|
35194
35288
|
export declare type JiraMutationUpdateUrlFieldArgs = {
|
|
35195
35289
|
input: JiraUpdateUrlFieldInput;
|
|
35196
35290
|
};
|
|
35291
|
+
export declare type JiraMutationUpdateUserFieldSetPreferencesArgs = {
|
|
35292
|
+
cloudId: Scalars['ID']['input'];
|
|
35293
|
+
fieldSetPreferencesInput: JiraFieldSetPreferencesMutationInput;
|
|
35294
|
+
};
|
|
35197
35295
|
export declare type JiraMutationUpdateUserNavigationConfigurationArgs = {
|
|
35198
35296
|
input: JiraUpdateUserNavigationConfigurationInput;
|
|
35199
35297
|
};
|
|
@@ -35342,6 +35440,7 @@ export declare type JiraNotificationGlobalPreference = {
|
|
|
35342
35440
|
export declare type JiraNotificationOptions = {
|
|
35343
35441
|
__typename?: 'JiraNotificationOptions';
|
|
35344
35442
|
batchWindow?: Maybe<JiraBatchWindowPreference>;
|
|
35443
|
+
dailyBatchLocalTime?: Maybe<Scalars['String']['output']>;
|
|
35345
35444
|
emailMimeType?: Maybe<JiraEmailMimeType>;
|
|
35346
35445
|
id: Scalars['ID']['output'];
|
|
35347
35446
|
isEmailMimeTypeEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -36492,6 +36591,39 @@ export declare type JiraProjectCategoryEdge = {
|
|
|
36492
36591
|
export declare type JiraProjectCategoryFilterInput = {
|
|
36493
36592
|
categoryIds?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
36494
36593
|
};
|
|
36594
|
+
export declare type JiraProjectCleanupRecommendation = {
|
|
36595
|
+
__typename?: 'JiraProjectCleanupRecommendation';
|
|
36596
|
+
executedById?: Maybe<User>;
|
|
36597
|
+
executedGroupId?: Maybe<Scalars['String']['output']>;
|
|
36598
|
+
id: Scalars['ID']['output'];
|
|
36599
|
+
project?: Maybe<JiraProject>;
|
|
36600
|
+
projectCleanupAction?: Maybe<JiraProjectCleanupRecommendationAction>;
|
|
36601
|
+
recommendationId?: Maybe<Scalars['Long']['output']>;
|
|
36602
|
+
staleSince?: Maybe<Scalars['DateTime']['output']>;
|
|
36603
|
+
status?: Maybe<JiraResourceUsageRecommendationStatus>;
|
|
36604
|
+
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
36605
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
36606
|
+
};
|
|
36607
|
+
export declare enum JiraProjectCleanupRecommendationAction {
|
|
36608
|
+
Archive = "ARCHIVE",
|
|
36609
|
+
Trash = "TRASH"
|
|
36610
|
+
}
|
|
36611
|
+
export declare type JiraProjectCleanupRecommendationConnection = {
|
|
36612
|
+
__typename?: 'JiraProjectCleanupRecommendationConnection';
|
|
36613
|
+
edges?: Maybe<Array<Maybe<JiraProjectCleanupRecommendationEdge>>>;
|
|
36614
|
+
pageInfo: PageInfo;
|
|
36615
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
36616
|
+
};
|
|
36617
|
+
export declare type JiraProjectCleanupRecommendationEdge = {
|
|
36618
|
+
__typename?: 'JiraProjectCleanupRecommendationEdge';
|
|
36619
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
36620
|
+
node?: Maybe<JiraProjectCleanupRecommendation>;
|
|
36621
|
+
};
|
|
36622
|
+
export declare enum JiraProjectCleanupRecommendationStaleSince {
|
|
36623
|
+
OneYear = "ONE_YEAR",
|
|
36624
|
+
SixMonths = "SIX_MONTHS",
|
|
36625
|
+
TwoYears = "TWO_YEARS"
|
|
36626
|
+
}
|
|
36495
36627
|
export declare type JiraProjectConnection = HasPageInfo & HasTotal & {
|
|
36496
36628
|
__typename?: 'JiraProjectConnection';
|
|
36497
36629
|
edges?: Maybe<Array<Maybe<JiraProjectEdge>>>;
|
|
@@ -36691,7 +36823,7 @@ export declare type JiraProjectRoleActorLogTableEntryEdge = {
|
|
|
36691
36823
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
36692
36824
|
node?: Maybe<JiraProjectRoleActorLogTableEntry>;
|
|
36693
36825
|
};
|
|
36694
|
-
export declare type JiraProjectRoleActorRecommendation =
|
|
36826
|
+
export declare type JiraProjectRoleActorRecommendation = {
|
|
36695
36827
|
__typename?: 'JiraProjectRoleActorRecommendation';
|
|
36696
36828
|
executedBy?: Maybe<User>;
|
|
36697
36829
|
executedGroupId?: Maybe<Scalars['String']['output']>;
|
|
@@ -36884,7 +37016,6 @@ export declare type JiraQuery = {
|
|
|
36884
37016
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
36885
37017
|
issueSearchViewResult?: Maybe<JiraIssueSearchViewResult>;
|
|
36886
37018
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
36887
|
-
jiraBulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenResponse>;
|
|
36888
37019
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
36889
37020
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
36890
37021
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
@@ -36929,6 +37060,7 @@ export declare type JiraQuery = {
|
|
|
36929
37060
|
permission?: Maybe<JiraPermission>;
|
|
36930
37061
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
36931
37062
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
37063
|
+
projectCleanupRecommendations?: Maybe<JiraProjectCleanupRecommendationConnection>;
|
|
36932
37064
|
projectListViewTemplates?: Maybe<JiraProjectListViewTemplateConnection>;
|
|
36933
37065
|
projectRequestTypesFromTemplate?: Maybe<Array<JiraServiceManagementRequestTypeFromTemplate>>;
|
|
36934
37066
|
projectRoleActorLogTableEntries?: Maybe<JiraProjectRoleActorLogTableEntryConnection>;
|
|
@@ -37322,9 +37454,6 @@ export declare type JiraQueryIssuesByKeyArgs = {
|
|
|
37322
37454
|
cloudId: Scalars['ID']['input'];
|
|
37323
37455
|
keys: Array<Scalars['String']['input']>;
|
|
37324
37456
|
};
|
|
37325
|
-
export declare type JiraQueryJiraBulkTransitionsScreenArgs = {
|
|
37326
|
-
input: Array<JiraBulkTransitionScreenInput>;
|
|
37327
|
-
};
|
|
37328
37457
|
export declare type JiraQueryJiraBulkTransitionsScreenDetailsArgs = {
|
|
37329
37458
|
issueIds: Array<Scalars['ID']['input']>;
|
|
37330
37459
|
transitionId: Scalars['Int']['input'];
|
|
@@ -37521,6 +37650,16 @@ export declare type JiraQueryPermissionSchemeGrantsArgs = {
|
|
|
37521
37650
|
export declare type JiraQueryPostIncidentReviewLinksByIdsArgs = {
|
|
37522
37651
|
ids: Array<Scalars['ID']['input']>;
|
|
37523
37652
|
};
|
|
37653
|
+
export declare type JiraQueryProjectCleanupRecommendationsArgs = {
|
|
37654
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37655
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
37656
|
+
cloudId: Scalars['ID']['input'];
|
|
37657
|
+
emptyProjects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37658
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37659
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
37660
|
+
staleSince?: InputMaybe<JiraProjectCleanupRecommendationStaleSince>;
|
|
37661
|
+
statuses?: InputMaybe<Array<InputMaybe<JiraResourceUsageRecommendationStatus>>>;
|
|
37662
|
+
};
|
|
37524
37663
|
export declare type JiraQueryProjectListViewTemplatesArgs = {
|
|
37525
37664
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37526
37665
|
cloudId: Scalars['ID']['input'];
|
|
@@ -37552,6 +37691,7 @@ export declare type JiraQueryRecentItemsArgs = {
|
|
|
37552
37691
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37553
37692
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
37554
37693
|
cloudId: Scalars['ID']['input'];
|
|
37694
|
+
filter?: InputMaybe<JiraRecentItemsFilter>;
|
|
37555
37695
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37556
37696
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
37557
37697
|
types: Array<JiraSearchableEntityType>;
|
|
@@ -37764,9 +37904,14 @@ export declare type JiraRankNavigationItemPayloadNavigationItemsArgs = {
|
|
|
37764
37904
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37765
37905
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37766
37906
|
};
|
|
37907
|
+
export declare type JiraRecentItemsFilter = {
|
|
37908
|
+
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
37909
|
+
types?: InputMaybe<Array<JiraSearchableEntityType>>;
|
|
37910
|
+
};
|
|
37767
37911
|
export declare enum JiraRecommendationCategory {
|
|
37768
37912
|
CustomField = "CUSTOM_FIELD",
|
|
37769
37913
|
IssueArchival = "ISSUE_ARCHIVAL",
|
|
37914
|
+
ProjectCleanup = "PROJECT_CLEANUP",
|
|
37770
37915
|
ProjectRoleActor = "PROJECT_ROLE_ACTOR"
|
|
37771
37916
|
}
|
|
37772
37917
|
export declare type JiraReleaseNotesConfiguration = {
|
|
@@ -38056,7 +38201,7 @@ export declare type JiraResolutionFieldPayload = Payload & {
|
|
|
38056
38201
|
export declare type JiraResolutionInput = {
|
|
38057
38202
|
resolutionId: Scalars['ID']['input'];
|
|
38058
38203
|
};
|
|
38059
|
-
export declare type JiraResourceUsageCustomFieldRecommendation =
|
|
38204
|
+
export declare type JiraResourceUsageCustomFieldRecommendation = {
|
|
38060
38205
|
__typename?: 'JiraResourceUsageCustomFieldRecommendation';
|
|
38061
38206
|
customFieldAction: JiraResourceUsageCustomFieldRecommendationAction;
|
|
38062
38207
|
customFieldDescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -38083,7 +38228,7 @@ export declare type JiraResourceUsageCustomFieldRecommendationEdge = {
|
|
|
38083
38228
|
cursor: Scalars['String']['output'];
|
|
38084
38229
|
node?: Maybe<JiraResourceUsageCustomFieldRecommendation>;
|
|
38085
38230
|
};
|
|
38086
|
-
export declare type JiraResourceUsageMetric =
|
|
38231
|
+
export declare type JiraResourceUsageMetric = {
|
|
38087
38232
|
__typename?: 'JiraResourceUsageMetric';
|
|
38088
38233
|
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
38089
38234
|
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
@@ -40406,6 +40551,10 @@ export declare type JiraUpdateDateTimeFieldInput = {
|
|
|
40406
40551
|
id: Scalars['ID']['input'];
|
|
40407
40552
|
operation: JiraDateTimeFieldOperationInput;
|
|
40408
40553
|
};
|
|
40554
|
+
export declare type JiraUpdateFieldSetPreferencesInput = {
|
|
40555
|
+
fieldSetId: Scalars['String']['input'];
|
|
40556
|
+
width?: InputMaybe<Scalars['Int']['input']>;
|
|
40557
|
+
};
|
|
40409
40558
|
export declare type JiraUpdateForgeObjectFieldInput = {
|
|
40410
40559
|
id: Scalars['ID']['input'];
|
|
40411
40560
|
operation: JiraForgeObjectFieldOperationInput;
|
|
@@ -40459,6 +40608,7 @@ export declare type JiraUpdateMultipleVersionPickerFieldInput = {
|
|
|
40459
40608
|
};
|
|
40460
40609
|
export declare type JiraUpdateNotificationOptionsInput = {
|
|
40461
40610
|
batchWindow?: InputMaybe<JiraBatchWindowPreference>;
|
|
40611
|
+
dailyBatchLocalTime?: InputMaybe<Scalars['String']['input']>;
|
|
40462
40612
|
emailMimeType?: InputMaybe<JiraEmailMimeType>;
|
|
40463
40613
|
isEmailNotificationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40464
40614
|
notifyOwnChangesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41928,6 +42078,17 @@ export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
|
|
|
41928
42078
|
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
41929
42079
|
timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
41930
42080
|
};
|
|
42081
|
+
export declare type JsmChatAddConversationInteractionInput = {
|
|
42082
|
+
authorId: Scalars['String']['input'];
|
|
42083
|
+
interactionType: JsmChatInteractionType;
|
|
42084
|
+
jiraFieldId?: InputMaybe<Scalars['String']['input']>;
|
|
42085
|
+
selectedValue: Scalars['String']['input'];
|
|
42086
|
+
};
|
|
42087
|
+
export declare type JsmChatAddConversationInteractionPayload = Payload & {
|
|
42088
|
+
__typename?: 'JsmChatAddConversationInteractionPayload';
|
|
42089
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42090
|
+
success: Scalars['Boolean']['output'];
|
|
42091
|
+
};
|
|
41931
42092
|
export declare enum JsmChatChannelExperienceId {
|
|
41932
42093
|
Helpcenter = "HELPCENTER",
|
|
41933
42094
|
Widget = "WIDGET"
|
|
@@ -41990,11 +42151,31 @@ export declare type JsmChatCreateCommentOutput = {
|
|
|
41990
42151
|
export declare type JsmChatCreateConversationInput = {
|
|
41991
42152
|
channelExperienceId: JsmChatChannelExperienceId;
|
|
41992
42153
|
conversationContextAri: Scalars['ID']['input'];
|
|
41993
|
-
|
|
42154
|
+
isTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41994
42155
|
};
|
|
41995
|
-
export declare type
|
|
41996
|
-
|
|
41997
|
-
|
|
42156
|
+
export declare type JsmChatCreateConversationMessageInput = {
|
|
42157
|
+
authorId: Scalars['String']['input'];
|
|
42158
|
+
message: Scalars['String']['input'];
|
|
42159
|
+
};
|
|
42160
|
+
export declare type JsmChatCreateConversationMessagePayload = Payload & {
|
|
42161
|
+
__typename?: 'JsmChatCreateConversationMessagePayload';
|
|
42162
|
+
createConversationMessageResponse?: Maybe<JsmChatCreateConversationMessageResponse>;
|
|
42163
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42164
|
+
success: Scalars['Boolean']['output'];
|
|
42165
|
+
};
|
|
42166
|
+
export declare type JsmChatCreateConversationMessageResponse = {
|
|
42167
|
+
__typename?: 'JsmChatCreateConversationMessageResponse';
|
|
42168
|
+
id: Scalars['ID']['output'];
|
|
42169
|
+
};
|
|
42170
|
+
export declare type JsmChatCreateConversationPayload = Payload & {
|
|
42171
|
+
__typename?: 'JsmChatCreateConversationPayload';
|
|
42172
|
+
createConversationResponse?: Maybe<JsmChatCreateConversationResponse>;
|
|
42173
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42174
|
+
success: Scalars['Boolean']['output'];
|
|
42175
|
+
};
|
|
42176
|
+
export declare type JsmChatCreateConversationResponse = {
|
|
42177
|
+
__typename?: 'JsmChatCreateConversationResponse';
|
|
42178
|
+
id: Scalars['ID']['output'];
|
|
41998
42179
|
};
|
|
41999
42180
|
export declare type JsmChatDisconnectJiraProjectInput = {
|
|
42000
42181
|
activationId: Scalars['ID']['input'];
|
|
@@ -42024,6 +42205,11 @@ export declare type JsmChatInitializeNativeConfigResponse = {
|
|
|
42024
42205
|
connectedApp?: Maybe<JsmChatConnectedApps>;
|
|
42025
42206
|
nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
42026
42207
|
};
|
|
42208
|
+
export declare enum JsmChatInteractionType {
|
|
42209
|
+
Buttons = "BUTTONS",
|
|
42210
|
+
Dropdown = "DROPDOWN",
|
|
42211
|
+
JiraField = "JIRA_FIELD"
|
|
42212
|
+
}
|
|
42027
42213
|
export declare enum JsmChatMessageSource {
|
|
42028
42214
|
Email = "EMAIL"
|
|
42029
42215
|
}
|
|
@@ -42047,6 +42233,7 @@ export declare type JsmChatMsTeamsChannels = {
|
|
|
42047
42233
|
export declare type JsmChatMsTeamsConfig = {
|
|
42048
42234
|
__typename?: 'JsmChatMsTeamsConfig';
|
|
42049
42235
|
channelRequestTypeMapping: Array<JsmChatMsTeamsChannelRequestTypeMapping>;
|
|
42236
|
+
hasMoreChannels?: Maybe<Scalars['Boolean']['output']>;
|
|
42050
42237
|
projectKey?: Maybe<Scalars['String']['output']>;
|
|
42051
42238
|
projectSettings?: Maybe<JsmChatMsTeamsProjectSettings>;
|
|
42052
42239
|
siteId?: Maybe<Scalars['String']['output']>;
|
|
@@ -42064,9 +42251,11 @@ export declare type JsmChatMsTeamsUpdatedProjectSettings = {
|
|
|
42064
42251
|
};
|
|
42065
42252
|
export declare type JsmChatMutation = {
|
|
42066
42253
|
__typename?: 'JsmChatMutation';
|
|
42254
|
+
addConversationInteraction?: Maybe<JsmChatAddConversationInteractionPayload>;
|
|
42067
42255
|
createChannel: JsmChatCreateChannelOutput;
|
|
42068
42256
|
createComment?: Maybe<JsmChatCreateCommentOutput>;
|
|
42069
|
-
createConversation
|
|
42257
|
+
createConversation?: Maybe<JsmChatCreateConversationPayload>;
|
|
42258
|
+
createConversationMessage?: Maybe<JsmChatCreateConversationMessagePayload>;
|
|
42070
42259
|
disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
42071
42260
|
disconnectMsTeamsJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
42072
42261
|
updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
|
|
@@ -42074,6 +42263,11 @@ export declare type JsmChatMutation = {
|
|
|
42074
42263
|
updateMsTeamsProjectSettings: JsmChatUpdateMsTeamsProjectSettingsOutput;
|
|
42075
42264
|
updateProjectSettings?: Maybe<JsmChatUpdateProjectSettingsOutput>;
|
|
42076
42265
|
};
|
|
42266
|
+
export declare type JsmChatMutationAddConversationInteractionArgs = {
|
|
42267
|
+
conversationId: Scalars['ID']['input'];
|
|
42268
|
+
input: JsmChatAddConversationInteractionInput;
|
|
42269
|
+
workspaceAri: Scalars['ID']['input'];
|
|
42270
|
+
};
|
|
42077
42271
|
export declare type JsmChatMutationCreateChannelArgs = {
|
|
42078
42272
|
input?: InputMaybe<JsmChatCreateChannelInput>;
|
|
42079
42273
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -42084,7 +42278,12 @@ export declare type JsmChatMutationCreateCommentArgs = {
|
|
|
42084
42278
|
workspaceAri: Scalars['ID']['input'];
|
|
42085
42279
|
};
|
|
42086
42280
|
export declare type JsmChatMutationCreateConversationArgs = {
|
|
42087
|
-
input
|
|
42281
|
+
input: JsmChatCreateConversationInput;
|
|
42282
|
+
workspaceAri: Scalars['ID']['input'];
|
|
42283
|
+
};
|
|
42284
|
+
export declare type JsmChatMutationCreateConversationMessageArgs = {
|
|
42285
|
+
conversationId: Scalars['ID']['input'];
|
|
42286
|
+
input: JsmChatCreateConversationMessageInput;
|
|
42088
42287
|
workspaceAri: Scalars['ID']['input'];
|
|
42089
42288
|
};
|
|
42090
42289
|
export declare type JsmChatMutationDisconnectJiraProjectArgs = {
|
|
@@ -42111,6 +42310,10 @@ export declare type JsmChatMutationUpdateMsTeamsProjectSettingsArgs = {
|
|
|
42111
42310
|
export declare type JsmChatMutationUpdateProjectSettingsArgs = {
|
|
42112
42311
|
input: JsmChatUpdateProjectSettingsInput;
|
|
42113
42312
|
};
|
|
42313
|
+
export declare type JsmChatPaginationConfig = {
|
|
42314
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
42315
|
+
offset: Scalars['Int']['input'];
|
|
42316
|
+
};
|
|
42114
42317
|
export declare type JsmChatProjectSettings = {
|
|
42115
42318
|
__typename?: 'JsmChatProjectSettings';
|
|
42116
42319
|
agentAssignedMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -42138,9 +42341,11 @@ export declare type JsmChatQuery = {
|
|
|
42138
42341
|
};
|
|
42139
42342
|
export declare type JsmChatQueryGetMsTeamsChatConfigArgs = {
|
|
42140
42343
|
jiraProjectAri: Scalars['ID']['input'];
|
|
42344
|
+
paginationConfig?: InputMaybe<JsmChatPaginationConfig>;
|
|
42141
42345
|
};
|
|
42142
42346
|
export declare type JsmChatQueryGetSlackChatConfigArgs = {
|
|
42143
42347
|
jiraProjectAri: Scalars['ID']['input'];
|
|
42348
|
+
paginationConfig?: InputMaybe<JsmChatPaginationConfig>;
|
|
42144
42349
|
};
|
|
42145
42350
|
export declare type JsmChatQueryInitializeConfigArgs = {
|
|
42146
42351
|
input: JsmChatInitializeConfigRequest;
|
|
@@ -42162,6 +42367,7 @@ export declare type JsmChatSlackConfig = {
|
|
|
42162
42367
|
__typename?: 'JsmChatSlackConfig';
|
|
42163
42368
|
botUserId?: Maybe<Scalars['String']['output']>;
|
|
42164
42369
|
channelRequestTypeMapping: Array<JsmChatChannelRequestTypeMapping>;
|
|
42370
|
+
hasMoreChannels?: Maybe<Scalars['Boolean']['output']>;
|
|
42165
42371
|
projectKey?: Maybe<Scalars['String']['output']>;
|
|
42166
42372
|
projectSettings?: Maybe<JsmChatProjectSettingsSlack>;
|
|
42167
42373
|
siteId: Scalars['ID']['output'];
|
|
@@ -42273,6 +42479,8 @@ export declare type JswCardColor = Node & {
|
|
|
42273
42479
|
color: Scalars['String']['output'];
|
|
42274
42480
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
42275
42481
|
id: Scalars['ID']['output'];
|
|
42482
|
+
isGlobalColor?: Maybe<Scalars['Boolean']['output']>;
|
|
42483
|
+
isUsed?: Maybe<Scalars['Boolean']['output']>;
|
|
42276
42484
|
strategy?: Maybe<Scalars['String']['output']>;
|
|
42277
42485
|
value?: Maybe<Scalars['String']['output']>;
|
|
42278
42486
|
};
|
|
@@ -42315,6 +42523,10 @@ export declare type JswCardLayoutContainer = {
|
|
|
42315
42523
|
availableFields?: Maybe<JswAvailableCardLayoutFieldConnection>;
|
|
42316
42524
|
fields?: Maybe<Array<Maybe<JswCurrentCardLayoutField>>>;
|
|
42317
42525
|
};
|
|
42526
|
+
export declare type JswCardStatusIssueMetaData = {
|
|
42527
|
+
__typename?: 'JswCardStatusIssueMetaData';
|
|
42528
|
+
issueCount?: Maybe<Scalars['Int']['output']>;
|
|
42529
|
+
};
|
|
42318
42530
|
export declare type JswCurrentCardLayoutField = Node & {
|
|
42319
42531
|
__typename?: 'JswCurrentCardLayoutField';
|
|
42320
42532
|
cardLayoutId: Scalars['ID']['output'];
|
|
@@ -42323,6 +42535,24 @@ export declare type JswCurrentCardLayoutField = Node & {
|
|
|
42323
42535
|
isValid?: Maybe<Scalars['Boolean']['output']>;
|
|
42324
42536
|
name?: Maybe<Scalars['String']['output']>;
|
|
42325
42537
|
};
|
|
42538
|
+
export declare type JswCustomSwimlane = Node & {
|
|
42539
|
+
__typename?: 'JswCustomSwimlane';
|
|
42540
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
42541
|
+
id: Scalars['ID']['output'];
|
|
42542
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
42543
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
42544
|
+
query?: Maybe<Scalars['String']['output']>;
|
|
42545
|
+
};
|
|
42546
|
+
export declare type JswCustomSwimlaneConnection = {
|
|
42547
|
+
__typename?: 'JswCustomSwimlaneConnection';
|
|
42548
|
+
edges?: Maybe<Array<Maybe<JswCustomSwimlaneEdge>>>;
|
|
42549
|
+
pageInfo: PageInfo;
|
|
42550
|
+
};
|
|
42551
|
+
export declare type JswCustomSwimlaneEdge = {
|
|
42552
|
+
__typename?: 'JswCustomSwimlaneEdge';
|
|
42553
|
+
cursor: Scalars['String']['output'];
|
|
42554
|
+
node?: Maybe<JswCustomSwimlane>;
|
|
42555
|
+
};
|
|
42326
42556
|
export declare type JswMapOfStringToString = {
|
|
42327
42557
|
__typename?: 'JswMapOfStringToString';
|
|
42328
42558
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -43007,6 +43237,77 @@ export declare type MarketplaceConnectAppDeployment = MarketplaceAppDeployment &
|
|
|
43007
43237
|
isDescriptorFileAvailable: Scalars['Boolean']['output'];
|
|
43008
43238
|
scopes: Array<ConnectAppScope>;
|
|
43009
43239
|
};
|
|
43240
|
+
export declare type MarketplaceConsoleDevSpace = {
|
|
43241
|
+
__typename?: 'MarketplaceConsoleDevSpace';
|
|
43242
|
+
id: Scalars['ID']['output'];
|
|
43243
|
+
isAtlassian: Scalars['Boolean']['output'];
|
|
43244
|
+
listing: MarketplaceConsoleDevSpaceListing;
|
|
43245
|
+
name: Scalars['String']['output'];
|
|
43246
|
+
programEnrollments?: Maybe<Array<Maybe<MarketplaceConsoleDevSpaceProgramEnrollment>>>;
|
|
43247
|
+
};
|
|
43248
|
+
export declare type MarketplaceConsoleDevSpaceContact = {
|
|
43249
|
+
__typename?: 'MarketplaceConsoleDevSpaceContact';
|
|
43250
|
+
addressLine1?: Maybe<Scalars['String']['output']>;
|
|
43251
|
+
addressLine2?: Maybe<Scalars['String']['output']>;
|
|
43252
|
+
city?: Maybe<Scalars['String']['output']>;
|
|
43253
|
+
country?: Maybe<Scalars['String']['output']>;
|
|
43254
|
+
email: Scalars['String']['output'];
|
|
43255
|
+
homePageUrl?: Maybe<Scalars['String']['output']>;
|
|
43256
|
+
otherContactDetails?: Maybe<Scalars['String']['output']>;
|
|
43257
|
+
phone?: Maybe<Scalars['String']['output']>;
|
|
43258
|
+
postCode?: Maybe<Scalars['String']['output']>;
|
|
43259
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
43260
|
+
};
|
|
43261
|
+
export declare type MarketplaceConsoleDevSpaceListing = {
|
|
43262
|
+
__typename?: 'MarketplaceConsoleDevSpaceListing';
|
|
43263
|
+
contactDetails: MarketplaceConsoleDevSpaceContact;
|
|
43264
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
43265
|
+
displayLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
43266
|
+
supportDetails?: Maybe<MarketplaceConsoleDevSpaceSupportDetails>;
|
|
43267
|
+
};
|
|
43268
|
+
export declare enum MarketplaceConsoleDevSpaceProgram {
|
|
43269
|
+
AtlassianParter = "ATLASSIAN_PARTER",
|
|
43270
|
+
FreeLicense = "FREE_LICENSE",
|
|
43271
|
+
MarketplacePartner = "MARKETPLACE_PARTNER",
|
|
43272
|
+
SolutionPartner = "SOLUTION_PARTNER"
|
|
43273
|
+
}
|
|
43274
|
+
export declare type MarketplaceConsoleDevSpaceProgramEnrollment = {
|
|
43275
|
+
__typename?: 'MarketplaceConsoleDevSpaceProgramEnrollment';
|
|
43276
|
+
baseUri?: Maybe<Scalars['String']['output']>;
|
|
43277
|
+
partnerTier?: Maybe<MarketplaceConsoleDevSpaceTier>;
|
|
43278
|
+
program?: Maybe<MarketplaceConsoleDevSpaceProgram>;
|
|
43279
|
+
programId: Scalars['ID']['output'];
|
|
43280
|
+
solutionPartnerBenefit?: Maybe<Scalars['Boolean']['output']>;
|
|
43281
|
+
};
|
|
43282
|
+
export declare type MarketplaceConsoleDevSpaceSupportAvailability = {
|
|
43283
|
+
__typename?: 'MarketplaceConsoleDevSpaceSupportAvailability';
|
|
43284
|
+
availableFrom?: Maybe<Scalars['String']['output']>;
|
|
43285
|
+
availableTo?: Maybe<Scalars['String']['output']>;
|
|
43286
|
+
days?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
43287
|
+
holidays?: Maybe<Array<Maybe<MarketplaceConsoleDevSpaceSupportContactHoliday>>>;
|
|
43288
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
43289
|
+
};
|
|
43290
|
+
export declare type MarketplaceConsoleDevSpaceSupportContactHoliday = {
|
|
43291
|
+
__typename?: 'MarketplaceConsoleDevSpaceSupportContactHoliday';
|
|
43292
|
+
date?: Maybe<Scalars['String']['output']>;
|
|
43293
|
+
repeatAnnually?: Maybe<Scalars['Boolean']['output']>;
|
|
43294
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
43295
|
+
};
|
|
43296
|
+
export declare type MarketplaceConsoleDevSpaceSupportDetails = {
|
|
43297
|
+
__typename?: 'MarketplaceConsoleDevSpaceSupportDetails';
|
|
43298
|
+
availability?: Maybe<MarketplaceConsoleDevSpaceSupportAvailability>;
|
|
43299
|
+
contactEmail?: Maybe<Scalars['String']['output']>;
|
|
43300
|
+
contactName?: Maybe<Scalars['String']['output']>;
|
|
43301
|
+
contactPhone?: Maybe<Scalars['String']['output']>;
|
|
43302
|
+
emergencyContact?: Maybe<Scalars['String']['output']>;
|
|
43303
|
+
targetResponseTimeInHrs?: Maybe<Scalars['Int']['output']>;
|
|
43304
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
43305
|
+
};
|
|
43306
|
+
export declare enum MarketplaceConsoleDevSpaceTier {
|
|
43307
|
+
Gold = "GOLD",
|
|
43308
|
+
Platinum = "PLATINUM",
|
|
43309
|
+
Silver = "SILVER"
|
|
43310
|
+
}
|
|
43010
43311
|
export declare type MarketplaceConsoleError = {
|
|
43011
43312
|
message: Scalars['String']['output'];
|
|
43012
43313
|
};
|
|
@@ -43014,9 +43315,44 @@ export declare type MarketplaceConsoleGenericError = MarketplaceConsoleError & {
|
|
|
43014
43315
|
__typename?: 'MarketplaceConsoleGenericError';
|
|
43015
43316
|
message: Scalars['String']['output'];
|
|
43016
43317
|
};
|
|
43318
|
+
export declare type MarketplaceConsolePartnerContact = {
|
|
43319
|
+
__typename?: 'MarketplaceConsolePartnerContact';
|
|
43320
|
+
atlassianAccountId: Scalars['ID']['output'];
|
|
43321
|
+
partnerId: Scalars['ID']['output'];
|
|
43322
|
+
permissions: MarketplaceConsolePartnerContactPermissions;
|
|
43323
|
+
};
|
|
43324
|
+
export declare type MarketplaceConsolePartnerContactPermissions = {
|
|
43325
|
+
__typename?: 'MarketplaceConsolePartnerContactPermissions';
|
|
43326
|
+
atlassianAccountId: Scalars['ID']['output'];
|
|
43327
|
+
canManageAppDetails: Scalars['Boolean']['output'];
|
|
43328
|
+
canManageAppPricing: Scalars['Boolean']['output'];
|
|
43329
|
+
canManagePartnerDetails: Scalars['Boolean']['output'];
|
|
43330
|
+
canManagePartnerPaymentDetails: Scalars['Boolean']['output'];
|
|
43331
|
+
canManagePartnerSecurity: Scalars['Boolean']['output'];
|
|
43332
|
+
canManagePromotions: Scalars['Boolean']['output'];
|
|
43333
|
+
canViewAnyReports: Scalars['Boolean']['output'];
|
|
43334
|
+
canViewCloudTrendReports: Scalars['Boolean']['output'];
|
|
43335
|
+
canViewManagedApps: Scalars['Boolean']['output'];
|
|
43336
|
+
canViewPartnerContacts: Scalars['Boolean']['output'];
|
|
43337
|
+
canViewPartnerPaymentDetails: Scalars['Boolean']['output'];
|
|
43338
|
+
canViewSalesReport: Scalars['Boolean']['output'];
|
|
43339
|
+
canViewUsageReports: Scalars['Boolean']['output'];
|
|
43340
|
+
isPartnerAdmin: Scalars['Boolean']['output'];
|
|
43341
|
+
isSiteAdmin: Scalars['Boolean']['output'];
|
|
43342
|
+
partnerId: Scalars['ID']['output'];
|
|
43343
|
+
};
|
|
43017
43344
|
export declare type MarketplaceConsoleQueryApi = {
|
|
43018
43345
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
43346
|
+
currentPartnerContact?: Maybe<MarketplaceConsolePartnerContact>;
|
|
43347
|
+
currentUserPreferences?: Maybe<MarketplaceConsoleUserPreferences>;
|
|
43019
43348
|
currentUserProfile?: Maybe<MarketplaceConsoleUser>;
|
|
43349
|
+
developerSpace?: Maybe<MarketplaceConsoleDevSpace>;
|
|
43350
|
+
};
|
|
43351
|
+
export declare type MarketplaceConsoleQueryApiCurrentPartnerContactArgs = {
|
|
43352
|
+
partnerId: Scalars['ID']['input'];
|
|
43353
|
+
};
|
|
43354
|
+
export declare type MarketplaceConsoleQueryApiDeveloperSpaceArgs = {
|
|
43355
|
+
vendorId: Scalars['ID']['input'];
|
|
43020
43356
|
};
|
|
43021
43357
|
export declare type MarketplaceConsoleUser = {
|
|
43022
43358
|
__typename?: 'MarketplaceConsoleUser';
|
|
@@ -43025,6 +43361,12 @@ export declare type MarketplaceConsoleUser = {
|
|
|
43025
43361
|
name: Scalars['String']['output'];
|
|
43026
43362
|
picture: Scalars['String']['output'];
|
|
43027
43363
|
};
|
|
43364
|
+
export declare type MarketplaceConsoleUserPreferences = {
|
|
43365
|
+
__typename?: 'MarketplaceConsoleUserPreferences';
|
|
43366
|
+
atlassianAccountId: Scalars['ID']['output'];
|
|
43367
|
+
isNewReportsView: Scalars['Boolean']['output'];
|
|
43368
|
+
isPatternedChart?: Maybe<Scalars['Boolean']['output']>;
|
|
43369
|
+
};
|
|
43028
43370
|
export declare enum MarketplaceEntityStatus {
|
|
43029
43371
|
Active = "ACTIVE",
|
|
43030
43372
|
Archived = "ARCHIVED"
|
|
@@ -43139,7 +43481,7 @@ export declare enum MarketplacePartnerSupportHolidayFrequency {
|
|
|
43139
43481
|
export declare type MarketplacePartnerTier = {
|
|
43140
43482
|
__typename?: 'MarketplacePartnerTier';
|
|
43141
43483
|
type: MarketplacePartnerTierType;
|
|
43142
|
-
updatedDate
|
|
43484
|
+
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
43143
43485
|
};
|
|
43144
43486
|
export declare enum MarketplacePartnerTierType {
|
|
43145
43487
|
Gold = "GOLD",
|
|
@@ -43546,7 +43888,7 @@ export declare enum MembershipState {
|
|
|
43546
43888
|
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
43547
43889
|
}
|
|
43548
43890
|
export declare type MercuryAddWatcherToFocusAreaInput = {
|
|
43549
|
-
cloudId
|
|
43891
|
+
cloudId: Scalars['ID']['input'];
|
|
43550
43892
|
focusAreaId: Scalars['ID']['input'];
|
|
43551
43893
|
userId: Scalars['ID']['input'];
|
|
43552
43894
|
};
|
|
@@ -43555,6 +43897,12 @@ export declare type MercuryAddWatcherToFocusAreaPayload = Payload & {
|
|
|
43555
43897
|
errors?: Maybe<Array<MutationError>>;
|
|
43556
43898
|
success: Scalars['Boolean']['output'];
|
|
43557
43899
|
};
|
|
43900
|
+
export declare type MercuryAggregatedFocusAreaStatusCount = {
|
|
43901
|
+
__typename?: 'MercuryAggregatedFocusAreaStatusCount';
|
|
43902
|
+
children: MercuryFocusAreaStatusCount;
|
|
43903
|
+
current: MercuryFocusAreaStatusCount;
|
|
43904
|
+
subtree: MercuryFocusAreaStatusCount;
|
|
43905
|
+
};
|
|
43558
43906
|
export declare type MercuryAggregatedHeadcountConnection = {
|
|
43559
43907
|
__typename?: 'MercuryAggregatedHeadcountConnection';
|
|
43560
43908
|
edges?: Maybe<Array<Maybe<MercuryAggregatedHeadcountEdge>>>;
|
|
@@ -43575,8 +43923,37 @@ export declare enum MercuryAggregatedHeadcountSortField {
|
|
|
43575
43923
|
OpenPositions = "OPEN_POSITIONS",
|
|
43576
43924
|
TotalHeadcount = "TOTAL_HEADCOUNT"
|
|
43577
43925
|
}
|
|
43926
|
+
export declare type MercuryAggregatedPortfolioStatusCount = {
|
|
43927
|
+
__typename?: 'MercuryAggregatedPortfolioStatusCount';
|
|
43928
|
+
children: MercuryFocusAreaStatusCount;
|
|
43929
|
+
};
|
|
43930
|
+
export declare type MercuryBudgetAggregation = {
|
|
43931
|
+
__typename?: 'MercuryBudgetAggregation';
|
|
43932
|
+
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
43933
|
+
totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
43934
|
+
};
|
|
43935
|
+
export declare type MercuryComment = Node & {
|
|
43936
|
+
__typename?: 'MercuryComment';
|
|
43937
|
+
ari: Scalars['String']['output'];
|
|
43938
|
+
commentText?: Maybe<Scalars['String']['output']>;
|
|
43939
|
+
createdBy?: Maybe<User>;
|
|
43940
|
+
createdDate: Scalars['String']['output'];
|
|
43941
|
+
id: Scalars['ID']['output'];
|
|
43942
|
+
updatedDate: Scalars['String']['output'];
|
|
43943
|
+
};
|
|
43944
|
+
export declare type MercuryCommentConnection = {
|
|
43945
|
+
__typename?: 'MercuryCommentConnection';
|
|
43946
|
+
edges?: Maybe<Array<Maybe<MercuryCommentEdge>>>;
|
|
43947
|
+
pageInfo: PageInfo;
|
|
43948
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43949
|
+
};
|
|
43950
|
+
export declare type MercuryCommentEdge = {
|
|
43951
|
+
__typename?: 'MercuryCommentEdge';
|
|
43952
|
+
cursor: Scalars['String']['output'];
|
|
43953
|
+
node?: Maybe<MercuryComment>;
|
|
43954
|
+
};
|
|
43578
43955
|
export declare type MercuryCreateFocusAreaInput = {
|
|
43579
|
-
cloudId
|
|
43956
|
+
cloudId: Scalars['ID']['input'];
|
|
43580
43957
|
focusAreaTypeId: Scalars['ID']['input'];
|
|
43581
43958
|
name: Scalars['String']['input'];
|
|
43582
43959
|
parentFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -43587,42 +43964,32 @@ export declare type MercuryCreateFocusAreaPayload = Payload & {
|
|
|
43587
43964
|
errors?: Maybe<Array<MutationError>>;
|
|
43588
43965
|
success: Scalars['Boolean']['output'];
|
|
43589
43966
|
};
|
|
43590
|
-
export declare type
|
|
43591
|
-
|
|
43592
|
-
|
|
43593
|
-
|
|
43594
|
-
|
|
43595
|
-
|
|
43596
|
-
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
43597
|
-
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
43598
|
-
targetDate?: InputMaybe<MercuryGoalTargetDateInput>;
|
|
43967
|
+
export declare type MercuryCreateFocusAreaStatusUpdateInput = {
|
|
43968
|
+
cloudId: Scalars['ID']['input'];
|
|
43969
|
+
focusAreaId: Scalars['ID']['input'];
|
|
43970
|
+
newTargetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
|
|
43971
|
+
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
43972
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
43599
43973
|
};
|
|
43600
|
-
export declare type
|
|
43601
|
-
__typename?: '
|
|
43974
|
+
export declare type MercuryCreateFocusAreaStatusUpdatePayload = Payload & {
|
|
43975
|
+
__typename?: 'MercuryCreateFocusAreaStatusUpdatePayload';
|
|
43976
|
+
createdFocusAreaUpdateStatus?: Maybe<MercuryFocusAreaStatusUpdate>;
|
|
43602
43977
|
errors?: Maybe<Array<MutationError>>;
|
|
43603
|
-
goal?: Maybe<MercuryGoal>;
|
|
43604
43978
|
success: Scalars['Boolean']['output'];
|
|
43605
43979
|
};
|
|
43606
|
-
export declare type
|
|
43607
|
-
|
|
43608
|
-
|
|
43609
|
-
|
|
43610
|
-
metricValue?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
43611
|
-
phase?: InputMaybe<MercuryGoalPhase>;
|
|
43612
|
-
score?: InputMaybe<Scalars['Int']['input']>;
|
|
43613
|
-
summary?: InputMaybe<Scalars['String']['input']>;
|
|
43614
|
-
targetDate?: InputMaybe<Scalars['Date']['input']>;
|
|
43615
|
-
targetDateType?: InputMaybe<MercuryGoalTargetDateType>;
|
|
43616
|
-
updateNotes?: InputMaybe<Array<InputMaybe<MercuryUpdateNoteInput>>>;
|
|
43980
|
+
export declare type MercuryCreatePortfolioFocusAreasInput = {
|
|
43981
|
+
cloudId: Scalars['ID']['input'];
|
|
43982
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
43983
|
+
name: Scalars['String']['input'];
|
|
43617
43984
|
};
|
|
43618
|
-
export declare type
|
|
43619
|
-
__typename?: '
|
|
43985
|
+
export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
43986
|
+
__typename?: 'MercuryCreatePortfolioPayload';
|
|
43987
|
+
createdPortfolio?: Maybe<MercuryPortfolio>;
|
|
43620
43988
|
errors?: Maybe<Array<MutationError>>;
|
|
43621
|
-
goalUpdate?: Maybe<MercuryGoalUpdate>;
|
|
43622
43989
|
success: Scalars['Boolean']['output'];
|
|
43623
43990
|
};
|
|
43624
43991
|
export declare type MercuryDeleteFocusAreaGoalLinkInput = {
|
|
43625
|
-
cloudId
|
|
43992
|
+
cloudId: Scalars['ID']['input'];
|
|
43626
43993
|
id: Scalars['ID']['input'];
|
|
43627
43994
|
};
|
|
43628
43995
|
export declare type MercuryDeleteFocusAreaGoalLinkPayload = Payload & {
|
|
@@ -43631,11 +43998,11 @@ export declare type MercuryDeleteFocusAreaGoalLinkPayload = Payload & {
|
|
|
43631
43998
|
success: Scalars['Boolean']['output'];
|
|
43632
43999
|
};
|
|
43633
44000
|
export declare type MercuryDeleteFocusAreaInput = {
|
|
43634
|
-
cloudId
|
|
44001
|
+
cloudId: Scalars['ID']['input'];
|
|
43635
44002
|
id: Scalars['ID']['input'];
|
|
43636
44003
|
};
|
|
43637
44004
|
export declare type MercuryDeleteFocusAreaLinkInput = {
|
|
43638
|
-
cloudId
|
|
44005
|
+
cloudId: Scalars['ID']['input'];
|
|
43639
44006
|
id: Scalars['ID']['input'];
|
|
43640
44007
|
};
|
|
43641
44008
|
export declare type MercuryDeleteFocusAreaLinkPayload = Payload & {
|
|
@@ -43648,8 +44015,17 @@ export declare type MercuryDeleteFocusAreaPayload = Payload & {
|
|
|
43648
44015
|
errors?: Maybe<Array<MutationError>>;
|
|
43649
44016
|
success: Scalars['Boolean']['output'];
|
|
43650
44017
|
};
|
|
44018
|
+
export declare type MercuryDeleteFocusAreaStatusUpdateInput = {
|
|
44019
|
+
cloudId: Scalars['ID']['input'];
|
|
44020
|
+
id: Scalars['ID']['input'];
|
|
44021
|
+
};
|
|
44022
|
+
export declare type MercuryDeleteFocusAreaStatusUpdatePayload = Payload & {
|
|
44023
|
+
__typename?: 'MercuryDeleteFocusAreaStatusUpdatePayload';
|
|
44024
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44025
|
+
success: Scalars['Boolean']['output'];
|
|
44026
|
+
};
|
|
43651
44027
|
export declare type MercuryDeletePortfolioFocusAreaLinkInput = {
|
|
43652
|
-
cloudId
|
|
44028
|
+
cloudId: Scalars['ID']['input'];
|
|
43653
44029
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
43654
44030
|
portfolioId: Scalars['ID']['input'];
|
|
43655
44031
|
};
|
|
@@ -43658,44 +44034,65 @@ export declare type MercuryDeletePortfolioFocusAreaLinkPayload = Payload & {
|
|
|
43658
44034
|
errors?: Maybe<Array<MutationError>>;
|
|
43659
44035
|
success: Scalars['Boolean']['output'];
|
|
43660
44036
|
};
|
|
43661
|
-
export declare type
|
|
43662
|
-
|
|
43663
|
-
|
|
43664
|
-
goalStatus?: InputMaybe<MercuryGoalStatus>;
|
|
43665
|
-
metricTarget?: InputMaybe<MercuryMetricTargetInput>;
|
|
43666
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
43667
|
-
owner?: InputMaybe<Scalars['String']['input']>;
|
|
43668
|
-
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
43669
|
-
targetDate?: InputMaybe<MercuryGoalTargetDateInput>;
|
|
44037
|
+
export declare type MercuryDeletePortfolioInput = {
|
|
44038
|
+
cloudId: Scalars['ID']['input'];
|
|
44039
|
+
id: Scalars['ID']['input'];
|
|
43670
44040
|
};
|
|
43671
|
-
export declare type
|
|
43672
|
-
__typename?: '
|
|
44041
|
+
export declare type MercuryDeletePortfolioPayload = Payload & {
|
|
44042
|
+
__typename?: 'MercuryDeletePortfolioPayload';
|
|
43673
44043
|
errors?: Maybe<Array<MutationError>>;
|
|
43674
|
-
goal?: Maybe<MercuryGoal>;
|
|
43675
44044
|
success: Scalars['Boolean']['output'];
|
|
43676
44045
|
};
|
|
43677
44046
|
export declare type MercuryFocusArea = Node & {
|
|
43678
44047
|
__typename?: 'MercuryFocusArea';
|
|
43679
44048
|
aboutContent: MercuryFocusAreaAbout;
|
|
44049
|
+
aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedFocusAreaStatusCount>;
|
|
44050
|
+
allocations?: Maybe<MercuryFocusAreaAllocations>;
|
|
43680
44051
|
ari: Scalars['String']['output'];
|
|
43681
44052
|
createdDate: Scalars['String']['output'];
|
|
43682
44053
|
focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
|
|
44054
|
+
focusAreaStatusUpdates?: Maybe<MercuryFocusAreaStatusUpdateConnection>;
|
|
43683
44055
|
focusAreaType: MercuryFocusAreaType;
|
|
44056
|
+
funding?: Maybe<MercuryFunding>;
|
|
43684
44057
|
goalLinks?: Maybe<MercuryFocusAreaGoalLinks>;
|
|
44058
|
+
headcountAggregation?: Maybe<MercuryHeadcountAggregation>;
|
|
43685
44059
|
health?: Maybe<MercuryFocusAreaHealth>;
|
|
43686
44060
|
id: Scalars['ID']['output'];
|
|
43687
44061
|
linkedWorkSummary?: Maybe<MercuryFocusAreaLinkedWorkSummary>;
|
|
43688
44062
|
name: Scalars['String']['output'];
|
|
44063
|
+
owner?: Maybe<User>;
|
|
43689
44064
|
parent?: Maybe<MercuryFocusArea>;
|
|
43690
44065
|
status: MercuryFocusAreaStatus;
|
|
43691
44066
|
statusTransitions: MercuryFocusAreaStatusTransitions;
|
|
44067
|
+
targetDate?: Maybe<MercuryTargetDate>;
|
|
44068
|
+
teamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
43692
44069
|
updatedDate: Scalars['String']['output'];
|
|
44070
|
+
watchers?: Maybe<MercuryUserConnection>;
|
|
43693
44071
|
watching: Scalars['Boolean']['output'];
|
|
43694
44072
|
};
|
|
44073
|
+
export declare type MercuryFocusAreaFocusAreaStatusUpdatesArgs = {
|
|
44074
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
44075
|
+
createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
44076
|
+
createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
44077
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44078
|
+
};
|
|
44079
|
+
export declare type MercuryFocusAreaTeamAllocationsArgs = {
|
|
44080
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
44081
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44082
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaTeamAllocationAggregationSort>>>;
|
|
44083
|
+
};
|
|
44084
|
+
export declare type MercuryFocusAreaWatchersArgs = {
|
|
44085
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
44086
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44087
|
+
};
|
|
43695
44088
|
export declare type MercuryFocusAreaAbout = {
|
|
43696
44089
|
__typename?: 'MercuryFocusAreaAbout';
|
|
43697
44090
|
editorAdfContent?: Maybe<Scalars['String']['output']>;
|
|
43698
44091
|
};
|
|
44092
|
+
export declare type MercuryFocusAreaAllocations = {
|
|
44093
|
+
__typename?: 'MercuryFocusAreaAllocations';
|
|
44094
|
+
human?: Maybe<MercuryHumanResourcesAllocation>;
|
|
44095
|
+
};
|
|
43699
44096
|
export declare type MercuryFocusAreaConnection = {
|
|
43700
44097
|
__typename?: 'MercuryFocusAreaConnection';
|
|
43701
44098
|
edges?: Maybe<Array<Maybe<MercuryFocusAreaEdge>>>;
|
|
@@ -43789,6 +44186,17 @@ export declare type MercuryFocusAreaStatus = {
|
|
|
43789
44186
|
key: Scalars['String']['output'];
|
|
43790
44187
|
order: Scalars['Int']['output'];
|
|
43791
44188
|
};
|
|
44189
|
+
export declare type MercuryFocusAreaStatusCount = {
|
|
44190
|
+
__typename?: 'MercuryFocusAreaStatusCount';
|
|
44191
|
+
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
44192
|
+
completed?: Maybe<Scalars['Int']['output']>;
|
|
44193
|
+
inProgress?: Maybe<Scalars['Int']['output']>;
|
|
44194
|
+
offTrack?: Maybe<Scalars['Int']['output']>;
|
|
44195
|
+
onTrack?: Maybe<Scalars['Int']['output']>;
|
|
44196
|
+
paused?: Maybe<Scalars['Int']['output']>;
|
|
44197
|
+
pending?: Maybe<Scalars['Int']['output']>;
|
|
44198
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
44199
|
+
};
|
|
43792
44200
|
export declare type MercuryFocusAreaStatusTransition = {
|
|
43793
44201
|
__typename?: 'MercuryFocusAreaStatusTransition';
|
|
43794
44202
|
health?: Maybe<MercuryFocusAreaHealth>;
|
|
@@ -43799,6 +44207,43 @@ export declare type MercuryFocusAreaStatusTransitions = {
|
|
|
43799
44207
|
__typename?: 'MercuryFocusAreaStatusTransitions';
|
|
43800
44208
|
available: Array<MercuryFocusAreaStatusTransition>;
|
|
43801
44209
|
};
|
|
44210
|
+
export declare type MercuryFocusAreaStatusUpdate = {
|
|
44211
|
+
__typename?: 'MercuryFocusAreaStatusUpdate';
|
|
44212
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
44213
|
+
comments?: Maybe<MercuryCommentConnection>;
|
|
44214
|
+
createdBy?: Maybe<User>;
|
|
44215
|
+
createdDate: Scalars['String']['output'];
|
|
44216
|
+
focusAreaId: Scalars['ID']['output'];
|
|
44217
|
+
id: Scalars['ID']['output'];
|
|
44218
|
+
newHealth?: Maybe<MercuryFocusAreaHealth>;
|
|
44219
|
+
newStatus?: Maybe<MercuryFocusAreaStatus>;
|
|
44220
|
+
newTargetDate?: Maybe<MercuryTargetDate>;
|
|
44221
|
+
previousHealth?: Maybe<MercuryFocusAreaHealth>;
|
|
44222
|
+
previousStatus?: Maybe<MercuryFocusAreaStatus>;
|
|
44223
|
+
previousTargetDate?: Maybe<MercuryTargetDate>;
|
|
44224
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
44225
|
+
updatedBy?: Maybe<User>;
|
|
44226
|
+
updatedDate: Scalars['String']['output'];
|
|
44227
|
+
};
|
|
44228
|
+
export declare type MercuryFocusAreaStatusUpdateCommentsArgs = {
|
|
44229
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
44230
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44231
|
+
};
|
|
44232
|
+
export declare type MercuryFocusAreaStatusUpdateConnection = {
|
|
44233
|
+
__typename?: 'MercuryFocusAreaStatusUpdateConnection';
|
|
44234
|
+
edges?: Maybe<Array<Maybe<MercuryFocusAreaStatusUpdateEdge>>>;
|
|
44235
|
+
pageInfo: PageInfo;
|
|
44236
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44237
|
+
};
|
|
44238
|
+
export declare type MercuryFocusAreaStatusUpdateEdge = {
|
|
44239
|
+
__typename?: 'MercuryFocusAreaStatusUpdateEdge';
|
|
44240
|
+
cursor: Scalars['String']['output'];
|
|
44241
|
+
node?: Maybe<MercuryFocusAreaStatusUpdate>;
|
|
44242
|
+
};
|
|
44243
|
+
export declare type MercuryFocusAreaTargetDateInput = {
|
|
44244
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
44245
|
+
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
44246
|
+
};
|
|
43802
44247
|
export declare type MercuryFocusAreaTeamAllocationAggregation = Node & {
|
|
43803
44248
|
__typename?: 'MercuryFocusAreaTeamAllocationAggregation';
|
|
43804
44249
|
filledPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -43834,14 +44279,20 @@ export declare type MercuryFocusAreaType = {
|
|
|
43834
44279
|
id: Scalars['ID']['output'];
|
|
43835
44280
|
name: Scalars['String']['output'];
|
|
43836
44281
|
};
|
|
43837
|
-
export declare type
|
|
43838
|
-
__typename?: '
|
|
43839
|
-
|
|
43840
|
-
|
|
43841
|
-
|
|
43842
|
-
|
|
43843
|
-
|
|
43844
|
-
|
|
44282
|
+
export declare type MercuryFunding = {
|
|
44283
|
+
__typename?: 'MercuryFunding';
|
|
44284
|
+
aggregation?: Maybe<MercuryFundingAggregation>;
|
|
44285
|
+
assigned?: Maybe<MercuryFundingAssigned>;
|
|
44286
|
+
};
|
|
44287
|
+
export declare type MercuryFundingAggregation = {
|
|
44288
|
+
__typename?: 'MercuryFundingAggregation';
|
|
44289
|
+
budgetAggregation?: Maybe<MercuryBudgetAggregation>;
|
|
44290
|
+
spendAggregation?: Maybe<MercurySpendAggregation>;
|
|
44291
|
+
};
|
|
44292
|
+
export declare type MercuryFundingAssigned = {
|
|
44293
|
+
__typename?: 'MercuryFundingAssigned';
|
|
44294
|
+
budget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44295
|
+
spend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
43845
44296
|
};
|
|
43846
44297
|
export declare type MercuryGoalAggregatedStatusCount = {
|
|
43847
44298
|
__typename?: 'MercuryGoalAggregatedStatusCount';
|
|
@@ -43849,50 +44300,6 @@ export declare type MercuryGoalAggregatedStatusCount = {
|
|
|
43849
44300
|
latestGoalStatusUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
43850
44301
|
subGoalsAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
|
|
43851
44302
|
};
|
|
43852
|
-
export declare type MercuryGoalConnection = {
|
|
43853
|
-
__typename?: 'MercuryGoalConnection';
|
|
43854
|
-
edges?: Maybe<Array<Maybe<MercuryGoalEdge>>>;
|
|
43855
|
-
pageInfo: PageInfo;
|
|
43856
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43857
|
-
};
|
|
43858
|
-
export declare type MercuryGoalEdge = {
|
|
43859
|
-
__typename?: 'MercuryGoalEdge';
|
|
43860
|
-
cursor: Scalars['String']['output'];
|
|
43861
|
-
node?: Maybe<MercuryGoal>;
|
|
43862
|
-
};
|
|
43863
|
-
export declare type MercuryGoalMutationApi = {
|
|
43864
|
-
__typename?: 'MercuryGoalMutationApi';
|
|
43865
|
-
createGoal: MercuryCreateGoalPayload;
|
|
43866
|
-
createGoalUpdateWithMetric: MercuryCreateGoalUpdateWithMetricPayload;
|
|
43867
|
-
editGoal: MercuryEditGoalPayload;
|
|
43868
|
-
};
|
|
43869
|
-
export declare type MercuryGoalMutationApiCreateGoalArgs = {
|
|
43870
|
-
cloudId: Scalars['ID']['input'];
|
|
43871
|
-
input: MercuryCreateGoalInput;
|
|
43872
|
-
};
|
|
43873
|
-
export declare type MercuryGoalMutationApiCreateGoalUpdateWithMetricArgs = {
|
|
43874
|
-
cloudId: Scalars['ID']['input'];
|
|
43875
|
-
input: MercuryCreateGoalUpdateWithMetricInput;
|
|
43876
|
-
};
|
|
43877
|
-
export declare type MercuryGoalMutationApiEditGoalArgs = {
|
|
43878
|
-
cloudId: Scalars['ID']['input'];
|
|
43879
|
-
input: MercuryEditGoalInput;
|
|
43880
|
-
};
|
|
43881
|
-
export declare enum MercuryGoalPhase {
|
|
43882
|
-
Done = "DONE",
|
|
43883
|
-
InProgress = "IN_PROGRESS",
|
|
43884
|
-
Paused = "PAUSED",
|
|
43885
|
-
Pending = "PENDING"
|
|
43886
|
-
}
|
|
43887
|
-
export declare enum MercuryGoalStatus {
|
|
43888
|
-
AtRisk = "AT_RISK",
|
|
43889
|
-
Cancelled = "CANCELLED",
|
|
43890
|
-
Done = "DONE",
|
|
43891
|
-
OffTrack = "OFF_TRACK",
|
|
43892
|
-
OnTrack = "ON_TRACK",
|
|
43893
|
-
Paused = "PAUSED",
|
|
43894
|
-
Pending = "PENDING"
|
|
43895
|
-
}
|
|
43896
44303
|
export declare type MercuryGoalStatusCount = {
|
|
43897
44304
|
__typename?: 'MercuryGoalStatusCount';
|
|
43898
44305
|
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
@@ -43904,25 +44311,6 @@ export declare type MercuryGoalStatusCount = {
|
|
|
43904
44311
|
pending?: Maybe<Scalars['Int']['output']>;
|
|
43905
44312
|
total?: Maybe<Scalars['Int']['output']>;
|
|
43906
44313
|
};
|
|
43907
|
-
export declare type MercuryGoalTargetDateInput = {
|
|
43908
|
-
date?: InputMaybe<Scalars['Date']['input']>;
|
|
43909
|
-
targetDateType?: InputMaybe<MercuryGoalTargetDateType>;
|
|
43910
|
-
};
|
|
43911
|
-
export declare enum MercuryGoalTargetDateType {
|
|
43912
|
-
Day = "DAY",
|
|
43913
|
-
Month = "MONTH",
|
|
43914
|
-
Quarter = "QUARTER"
|
|
43915
|
-
}
|
|
43916
|
-
export declare enum MercuryGoalType {
|
|
43917
|
-
Goal = "GOAL",
|
|
43918
|
-
KeyResult = "KEY_RESULT"
|
|
43919
|
-
}
|
|
43920
|
-
export declare type MercuryGoalUpdate = {
|
|
43921
|
-
__typename?: 'MercuryGoalUpdate';
|
|
43922
|
-
atlasGoalId: Scalars['ID']['output'];
|
|
43923
|
-
atlasGoalUpdateAri: Scalars['String']['output'];
|
|
43924
|
-
atlasGoalUpdateId: Scalars['ID']['output'];
|
|
43925
|
-
};
|
|
43926
44314
|
export declare type MercuryGoalsAggregatedStatusCount = {
|
|
43927
44315
|
__typename?: 'MercuryGoalsAggregatedStatusCount';
|
|
43928
44316
|
current?: Maybe<MercuryGoalStatusCount>;
|
|
@@ -43935,9 +44323,17 @@ export declare type MercuryHeadcountAggregation = {
|
|
|
43935
44323
|
openPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
43936
44324
|
totalHeadcount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
43937
44325
|
};
|
|
44326
|
+
export declare type MercuryHumanResourcesAllocation = {
|
|
44327
|
+
__typename?: 'MercuryHumanResourcesAllocation';
|
|
44328
|
+
budgetedPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44329
|
+
filledPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44330
|
+
openPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44331
|
+
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44332
|
+
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44333
|
+
};
|
|
43938
44334
|
export declare type MercuryLinkFocusAreasToFocusAreaInput = {
|
|
43939
44335
|
childFocusAreaIds: Array<Scalars['ID']['input']>;
|
|
43940
|
-
cloudId
|
|
44336
|
+
cloudId: Scalars['ID']['input'];
|
|
43941
44337
|
parentFocusAreaId: Scalars['ID']['input'];
|
|
43942
44338
|
};
|
|
43943
44339
|
export declare type MercuryLinkFocusAreasToFocusAreaPayload = Payload & {
|
|
@@ -43956,7 +44352,7 @@ export declare type MercuryLinkFocusAreasToGoalPayload = Payload & {
|
|
|
43956
44352
|
success: Scalars['Boolean']['output'];
|
|
43957
44353
|
};
|
|
43958
44354
|
export declare type MercuryLinkFocusAreasToPortfolioInput = {
|
|
43959
|
-
cloudId
|
|
44355
|
+
cloudId: Scalars['ID']['input'];
|
|
43960
44356
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
43961
44357
|
portfolioId: Scalars['ID']['input'];
|
|
43962
44358
|
};
|
|
@@ -43967,7 +44363,7 @@ export declare type MercuryLinkFocusAreasToPortfolioPayload = Payload & {
|
|
|
43967
44363
|
};
|
|
43968
44364
|
export declare type MercuryLinkGoalsToFocusAreaInput = {
|
|
43969
44365
|
atlasGoalIds: Array<Scalars['ID']['input']>;
|
|
43970
|
-
cloudId
|
|
44366
|
+
cloudId: Scalars['ID']['input'];
|
|
43971
44367
|
parentFocusAreaId: Scalars['ID']['input'];
|
|
43972
44368
|
};
|
|
43973
44369
|
export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
|
|
@@ -43975,45 +44371,31 @@ export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
|
|
|
43975
44371
|
errors?: Maybe<Array<MutationError>>;
|
|
43976
44372
|
success: Scalars['Boolean']['output'];
|
|
43977
44373
|
};
|
|
43978
|
-
export declare type MercuryMetric = {
|
|
43979
|
-
__typename?: 'MercuryMetric';
|
|
43980
|
-
metricType?: Maybe<MercuryMetricType>;
|
|
43981
|
-
scoring?: Maybe<MercuryMetricScoring>;
|
|
43982
|
-
};
|
|
43983
|
-
export declare type MercuryMetricScoring = {
|
|
43984
|
-
__typename?: 'MercuryMetricScoring';
|
|
43985
|
-
currentValue?: Maybe<Scalars['BigDecimal']['output']>;
|
|
43986
|
-
startValue?: Maybe<Scalars['BigDecimal']['output']>;
|
|
43987
|
-
targetValue?: Maybe<Scalars['BigDecimal']['output']>;
|
|
43988
|
-
};
|
|
43989
|
-
export declare type MercuryMetricTargetInput = {
|
|
43990
|
-
metricType?: InputMaybe<MercuryMetricType>;
|
|
43991
|
-
startValue?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
43992
|
-
targetValue?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
43993
|
-
};
|
|
43994
|
-
export declare enum MercuryMetricType {
|
|
43995
|
-
Currency = "CURRENCY",
|
|
43996
|
-
Number = "NUMBER",
|
|
43997
|
-
Percentage = "PERCENTAGE"
|
|
43998
|
-
}
|
|
43999
44374
|
export declare type MercuryMutationApi = {
|
|
44000
44375
|
__typename?: 'MercuryMutationApi';
|
|
44001
44376
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
44002
44377
|
createFocusArea?: Maybe<MercuryCreateFocusAreaPayload>;
|
|
44378
|
+
createFocusAreaStatusUpdate?: Maybe<MercuryCreateFocusAreaStatusUpdatePayload>;
|
|
44379
|
+
createPortfolioWithFocusAreas?: Maybe<MercuryCreatePortfolioPayload>;
|
|
44003
44380
|
deleteFocusArea?: Maybe<MercuryDeleteFocusAreaPayload>;
|
|
44004
44381
|
deleteFocusAreaGoalLink?: Maybe<MercuryDeleteFocusAreaGoalLinkPayload>;
|
|
44005
44382
|
deleteFocusAreaLink?: Maybe<MercuryDeleteFocusAreaLinkPayload>;
|
|
44383
|
+
deleteFocusAreaStatusUpdate?: Maybe<MercuryDeleteFocusAreaStatusUpdatePayload>;
|
|
44384
|
+
deletePortfolio?: Maybe<MercuryDeletePortfolioPayload>;
|
|
44006
44385
|
deletePortfolioFocusAreaLink?: Maybe<MercuryDeletePortfolioFocusAreaLinkPayload>;
|
|
44007
44386
|
linkFocusAreasToFocusArea?: Maybe<MercuryLinkFocusAreasToFocusAreaPayload>;
|
|
44008
44387
|
linkFocusAreasToGoal?: Maybe<MercuryLinkFocusAreasToGoalPayload>;
|
|
44009
44388
|
linkFocusAreasToPortfolio?: Maybe<MercuryLinkFocusAreasToPortfolioPayload>;
|
|
44010
44389
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
44390
|
+
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
44011
44391
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
44012
44392
|
transitionFocusAreaStatus?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
44013
44393
|
updateFocusAreaAboutContent?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
44014
44394
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
44015
44395
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
44396
|
+
updateFocusAreaStatusUpdate?: Maybe<MercuryUpdateFocusAreaStatusUpdatePayload>;
|
|
44016
44397
|
updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
44398
|
+
updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
44017
44399
|
};
|
|
44018
44400
|
export declare type MercuryMutationApiAddWatcherToFocusAreaArgs = {
|
|
44019
44401
|
input: MercuryAddWatcherToFocusAreaInput;
|
|
@@ -44021,6 +44403,12 @@ export declare type MercuryMutationApiAddWatcherToFocusAreaArgs = {
|
|
|
44021
44403
|
export declare type MercuryMutationApiCreateFocusAreaArgs = {
|
|
44022
44404
|
input: MercuryCreateFocusAreaInput;
|
|
44023
44405
|
};
|
|
44406
|
+
export declare type MercuryMutationApiCreateFocusAreaStatusUpdateArgs = {
|
|
44407
|
+
input: MercuryCreateFocusAreaStatusUpdateInput;
|
|
44408
|
+
};
|
|
44409
|
+
export declare type MercuryMutationApiCreatePortfolioWithFocusAreasArgs = {
|
|
44410
|
+
input: MercuryCreatePortfolioFocusAreasInput;
|
|
44411
|
+
};
|
|
44024
44412
|
export declare type MercuryMutationApiDeleteFocusAreaArgs = {
|
|
44025
44413
|
input: MercuryDeleteFocusAreaInput;
|
|
44026
44414
|
};
|
|
@@ -44030,6 +44418,12 @@ export declare type MercuryMutationApiDeleteFocusAreaGoalLinkArgs = {
|
|
|
44030
44418
|
export declare type MercuryMutationApiDeleteFocusAreaLinkArgs = {
|
|
44031
44419
|
input: MercuryDeleteFocusAreaLinkInput;
|
|
44032
44420
|
};
|
|
44421
|
+
export declare type MercuryMutationApiDeleteFocusAreaStatusUpdateArgs = {
|
|
44422
|
+
input: MercuryDeleteFocusAreaStatusUpdateInput;
|
|
44423
|
+
};
|
|
44424
|
+
export declare type MercuryMutationApiDeletePortfolioArgs = {
|
|
44425
|
+
input: MercuryDeletePortfolioInput;
|
|
44426
|
+
};
|
|
44033
44427
|
export declare type MercuryMutationApiDeletePortfolioFocusAreaLinkArgs = {
|
|
44034
44428
|
input: MercuryDeletePortfolioFocusAreaLinkInput;
|
|
44035
44429
|
};
|
|
@@ -44045,6 +44439,9 @@ export declare type MercuryMutationApiLinkFocusAreasToPortfolioArgs = {
|
|
|
44045
44439
|
export declare type MercuryMutationApiLinkGoalsToFocusAreaArgs = {
|
|
44046
44440
|
input: MercuryLinkGoalsToFocusAreaInput;
|
|
44047
44441
|
};
|
|
44442
|
+
export declare type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
|
|
44443
|
+
input: MercuryRecreatePortfolioFocusAreasInput;
|
|
44444
|
+
};
|
|
44048
44445
|
export declare type MercuryMutationApiRemoveWatcherFromFocusAreaArgs = {
|
|
44049
44446
|
input: MercuryRemoveWatcherFromFocusAreaInput;
|
|
44050
44447
|
};
|
|
@@ -44060,64 +44457,132 @@ export declare type MercuryMutationApiUpdateFocusAreaNameArgs = {
|
|
|
44060
44457
|
export declare type MercuryMutationApiUpdateFocusAreaOwnerArgs = {
|
|
44061
44458
|
input: MercuryUpdateFocusAreaOwnerInput;
|
|
44062
44459
|
};
|
|
44460
|
+
export declare type MercuryMutationApiUpdateFocusAreaStatusUpdateArgs = {
|
|
44461
|
+
input: MercuryUpdateFocusAreaStatusUpdateInput;
|
|
44462
|
+
};
|
|
44063
44463
|
export declare type MercuryMutationApiUpdateFocusAreaTargetDateArgs = {
|
|
44064
44464
|
input: MercuryUpdateFocusAreaTargetDateInput;
|
|
44065
44465
|
};
|
|
44466
|
+
export declare type MercuryMutationApiUpdatePortfolioNameArgs = {
|
|
44467
|
+
input: MercuryUpdatePortfolioNameInput;
|
|
44468
|
+
};
|
|
44469
|
+
export declare type MercuryPortfolio = Node & {
|
|
44470
|
+
__typename?: 'MercuryPortfolio';
|
|
44471
|
+
aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedPortfolioStatusCount>;
|
|
44472
|
+
allocations?: Maybe<MercuryPortfolioAllocations>;
|
|
44473
|
+
funding?: Maybe<MercuryPortfolioFunding>;
|
|
44474
|
+
id: Scalars['ID']['output'];
|
|
44475
|
+
linkedFocusAreaGoalCount: Scalars['Int']['output'];
|
|
44476
|
+
linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
|
|
44477
|
+
name: Scalars['String']['output'];
|
|
44478
|
+
owner?: Maybe<User>;
|
|
44479
|
+
};
|
|
44480
|
+
export declare type MercuryPortfolioAllocations = {
|
|
44481
|
+
__typename?: 'MercuryPortfolioAllocations';
|
|
44482
|
+
human?: Maybe<MercuryPortfolioHumanResourceAllocations>;
|
|
44483
|
+
};
|
|
44484
|
+
export declare type MercuryPortfolioBudgetAggregation = {
|
|
44485
|
+
__typename?: 'MercuryPortfolioBudgetAggregation';
|
|
44486
|
+
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44487
|
+
};
|
|
44488
|
+
export declare type MercuryPortfolioFocusAreaSummary = {
|
|
44489
|
+
__typename?: 'MercuryPortfolioFocusAreaSummary';
|
|
44490
|
+
focusAreaTypeBreakdown?: Maybe<Array<Maybe<MercuryPortfolioFocusAreaTypeBreakdown>>>;
|
|
44491
|
+
};
|
|
44492
|
+
export declare type MercuryPortfolioFocusAreaTypeBreakdown = {
|
|
44493
|
+
__typename?: 'MercuryPortfolioFocusAreaTypeBreakdown';
|
|
44494
|
+
count: Scalars['Int']['output'];
|
|
44495
|
+
focusAreaType: MercuryFocusAreaType;
|
|
44496
|
+
};
|
|
44497
|
+
export declare type MercuryPortfolioFunding = {
|
|
44498
|
+
__typename?: 'MercuryPortfolioFunding';
|
|
44499
|
+
aggregation?: Maybe<MercuryPortfolioFundingAggregation>;
|
|
44500
|
+
};
|
|
44501
|
+
export declare type MercuryPortfolioFundingAggregation = {
|
|
44502
|
+
__typename?: 'MercuryPortfolioFundingAggregation';
|
|
44503
|
+
budgetAggregation?: Maybe<MercuryPortfolioBudgetAggregation>;
|
|
44504
|
+
spendAggregation?: Maybe<MercuryPortfolioSpendAggregation>;
|
|
44505
|
+
};
|
|
44506
|
+
export declare type MercuryPortfolioHumanResourceAllocations = {
|
|
44507
|
+
__typename?: 'MercuryPortfolioHumanResourceAllocations';
|
|
44508
|
+
budgetedPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44509
|
+
filledPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44510
|
+
openPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44511
|
+
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44512
|
+
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44513
|
+
};
|
|
44514
|
+
export declare type MercuryPortfolioSpendAggregation = {
|
|
44515
|
+
__typename?: 'MercuryPortfolioSpendAggregation';
|
|
44516
|
+
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44517
|
+
};
|
|
44066
44518
|
export declare type MercuryQueryApi = {
|
|
44067
44519
|
__typename?: 'MercuryQueryApi';
|
|
44068
44520
|
aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
|
|
44069
|
-
focusArea
|
|
44521
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
44070
44522
|
focusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaHierarchyNode>>>;
|
|
44071
|
-
focusAreaStatusTransitions
|
|
44523
|
+
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
44072
44524
|
focusAreaTeamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
44073
|
-
focusAreaTypes
|
|
44525
|
+
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
44526
|
+
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
44074
44527
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
44075
44528
|
focusAreasByCloudId?: Maybe<MercuryFocusAreaConnection>;
|
|
44076
44529
|
goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
|
|
44077
44530
|
};
|
|
44078
44531
|
export declare type MercuryQueryApiAggregatedHeadcountsArgs = {
|
|
44079
44532
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
44080
|
-
cloudId
|
|
44533
|
+
cloudId: Scalars['ID']['input'];
|
|
44081
44534
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44082
44535
|
sort?: InputMaybe<Array<InputMaybe<MercuryAggregatedHeadcountSort>>>;
|
|
44083
44536
|
};
|
|
44084
44537
|
export declare type MercuryQueryApiFocusAreaArgs = {
|
|
44085
|
-
cloudId
|
|
44538
|
+
cloudId: Scalars['ID']['input'];
|
|
44086
44539
|
id: Scalars['ID']['input'];
|
|
44087
44540
|
};
|
|
44088
44541
|
export declare type MercuryQueryApiFocusAreaHierarchyArgs = {
|
|
44089
|
-
cloudId
|
|
44542
|
+
cloudId: Scalars['ID']['input'];
|
|
44090
44543
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
44091
44544
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaHierarchySort>>>;
|
|
44092
44545
|
};
|
|
44093
44546
|
export declare type MercuryQueryApiFocusAreaStatusTransitionsArgs = {
|
|
44094
|
-
cloudId
|
|
44547
|
+
cloudId: Scalars['ID']['input'];
|
|
44095
44548
|
};
|
|
44096
44549
|
export declare type MercuryQueryApiFocusAreaTeamAllocationsArgs = {
|
|
44097
44550
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
44098
|
-
cloudId
|
|
44551
|
+
cloudId: Scalars['ID']['input'];
|
|
44099
44552
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44100
44553
|
focusAreaId: Scalars['ID']['input'];
|
|
44101
44554
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaTeamAllocationAggregationSort>>>;
|
|
44102
44555
|
};
|
|
44103
44556
|
export declare type MercuryQueryApiFocusAreaTypesArgs = {
|
|
44104
|
-
cloudId
|
|
44557
|
+
cloudId: Scalars['ID']['input'];
|
|
44558
|
+
};
|
|
44559
|
+
export declare type MercuryQueryApiFocusAreasArgs = {
|
|
44560
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
44561
|
+
cloudId: Scalars['ID']['input'];
|
|
44562
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44563
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
44564
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
44105
44565
|
};
|
|
44106
44566
|
export declare type MercuryQueryApiFocusAreasByArisArgs = {
|
|
44107
44567
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
44108
44568
|
};
|
|
44109
44569
|
export declare type MercuryQueryApiFocusAreasByCloudIdArgs = {
|
|
44110
44570
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
44111
|
-
cloudId
|
|
44571
|
+
cloudId: Scalars['String']['input'];
|
|
44112
44572
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44113
44573
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
44114
44574
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
44115
44575
|
};
|
|
44116
44576
|
export declare type MercuryQueryApiGoalStatusAggregationsForAllFocusAreasArgs = {
|
|
44117
|
-
cloudId
|
|
44577
|
+
cloudId: Scalars['ID']['input'];
|
|
44578
|
+
};
|
|
44579
|
+
export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
44580
|
+
cloudId: Scalars['ID']['input'];
|
|
44581
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
44582
|
+
id: Scalars['ID']['input'];
|
|
44118
44583
|
};
|
|
44119
44584
|
export declare type MercuryRemoveWatcherFromFocusAreaInput = {
|
|
44120
|
-
cloudId
|
|
44585
|
+
cloudId: Scalars['ID']['input'];
|
|
44121
44586
|
focusAreaId: Scalars['ID']['input'];
|
|
44122
44587
|
userId: Scalars['ID']['input'];
|
|
44123
44588
|
};
|
|
@@ -44126,6 +44591,16 @@ export declare type MercuryRemoveWatcherFromFocusAreaPayload = Payload & {
|
|
|
44126
44591
|
errors?: Maybe<Array<MutationError>>;
|
|
44127
44592
|
success: Scalars['Boolean']['output'];
|
|
44128
44593
|
};
|
|
44594
|
+
export declare type MercurySpendAggregation = {
|
|
44595
|
+
__typename?: 'MercurySpendAggregation';
|
|
44596
|
+
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44597
|
+
totalAssignedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44598
|
+
};
|
|
44599
|
+
export declare type MercuryTargetDate = {
|
|
44600
|
+
__typename?: 'MercuryTargetDate';
|
|
44601
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
44602
|
+
targetDateType?: Maybe<MercuryTargetDateType>;
|
|
44603
|
+
};
|
|
44129
44604
|
export declare enum MercuryTargetDateType {
|
|
44130
44605
|
Day = "DAY",
|
|
44131
44606
|
Month = "MONTH",
|
|
@@ -44147,23 +44622,23 @@ export declare type MercuryTeamFocusAreaAllocation = Node & {
|
|
|
44147
44622
|
openPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44148
44623
|
};
|
|
44149
44624
|
export declare type MercuryTransitionFocusAreaStatusInput = {
|
|
44150
|
-
cloudId
|
|
44625
|
+
cloudId: Scalars['ID']['input'];
|
|
44151
44626
|
id: Scalars['ID']['input'];
|
|
44152
44627
|
statusTransitionId: Scalars['ID']['input'];
|
|
44153
44628
|
};
|
|
44154
44629
|
export declare type MercuryUpdateFocusAreaAboutContentInput = {
|
|
44155
44630
|
aboutContent: Scalars['String']['input'];
|
|
44156
|
-
cloudId
|
|
44631
|
+
cloudId: Scalars['ID']['input'];
|
|
44157
44632
|
id: Scalars['ID']['input'];
|
|
44158
44633
|
};
|
|
44159
44634
|
export declare type MercuryUpdateFocusAreaNameInput = {
|
|
44160
|
-
cloudId
|
|
44635
|
+
cloudId: Scalars['ID']['input'];
|
|
44161
44636
|
id: Scalars['ID']['input'];
|
|
44162
44637
|
name: Scalars['String']['input'];
|
|
44163
44638
|
};
|
|
44164
44639
|
export declare type MercuryUpdateFocusAreaOwnerInput = {
|
|
44165
44640
|
aaid: Scalars['String']['input'];
|
|
44166
|
-
cloudId
|
|
44641
|
+
cloudId: Scalars['ID']['input'];
|
|
44167
44642
|
id: Scalars['ID']['input'];
|
|
44168
44643
|
};
|
|
44169
44644
|
export declare type MercuryUpdateFocusAreaPayload = Payload & {
|
|
@@ -44172,17 +44647,46 @@ export declare type MercuryUpdateFocusAreaPayload = Payload & {
|
|
|
44172
44647
|
success: Scalars['Boolean']['output'];
|
|
44173
44648
|
updatedFocusArea?: Maybe<MercuryFocusArea>;
|
|
44174
44649
|
};
|
|
44650
|
+
export declare type MercuryUpdateFocusAreaStatusUpdateInput = {
|
|
44651
|
+
cloudId: Scalars['ID']['input'];
|
|
44652
|
+
id: Scalars['ID']['input'];
|
|
44653
|
+
newTargetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
|
|
44654
|
+
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
44655
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
44656
|
+
};
|
|
44657
|
+
export declare type MercuryUpdateFocusAreaStatusUpdatePayload = Payload & {
|
|
44658
|
+
__typename?: 'MercuryUpdateFocusAreaStatusUpdatePayload';
|
|
44659
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44660
|
+
success: Scalars['Boolean']['output'];
|
|
44661
|
+
updatedFocusAreaStatusUpdate?: Maybe<MercuryFocusAreaStatusUpdate>;
|
|
44662
|
+
};
|
|
44175
44663
|
export declare type MercuryUpdateFocusAreaTargetDateInput = {
|
|
44176
|
-
cloudId
|
|
44664
|
+
cloudId: Scalars['ID']['input'];
|
|
44177
44665
|
id: Scalars['ID']['input'];
|
|
44178
44666
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
44179
44667
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
44180
44668
|
};
|
|
44181
|
-
export declare type
|
|
44182
|
-
|
|
44183
|
-
|
|
44184
|
-
|
|
44185
|
-
|
|
44669
|
+
export declare type MercuryUpdatePortfolioNameInput = {
|
|
44670
|
+
cloudId: Scalars['ID']['input'];
|
|
44671
|
+
id: Scalars['ID']['input'];
|
|
44672
|
+
name: Scalars['String']['input'];
|
|
44673
|
+
};
|
|
44674
|
+
export declare type MercuryUpdatePortfolioPayload = Payload & {
|
|
44675
|
+
__typename?: 'MercuryUpdatePortfolioPayload';
|
|
44676
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44677
|
+
success: Scalars['Boolean']['output'];
|
|
44678
|
+
updatedPortfolio?: Maybe<MercuryPortfolio>;
|
|
44679
|
+
};
|
|
44680
|
+
export declare type MercuryUserConnection = {
|
|
44681
|
+
__typename?: 'MercuryUserConnection';
|
|
44682
|
+
edges?: Maybe<Array<Maybe<MercuryUserEdge>>>;
|
|
44683
|
+
pageInfo: PageInfo;
|
|
44684
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44685
|
+
};
|
|
44686
|
+
export declare type MercuryUserEdge = {
|
|
44687
|
+
__typename?: 'MercuryUserEdge';
|
|
44688
|
+
cursor: Scalars['String']['output'];
|
|
44689
|
+
node?: Maybe<User>;
|
|
44186
44690
|
};
|
|
44187
44691
|
export declare type Migration = {
|
|
44188
44692
|
__typename?: 'Migration';
|
|
@@ -44210,12 +44714,16 @@ export declare type MigrationEvent = {
|
|
|
44210
44714
|
statusMessage?: Maybe<Scalars['String']['output']>;
|
|
44211
44715
|
};
|
|
44212
44716
|
export declare enum MigrationEventStatus {
|
|
44717
|
+
Cancelled = "CANCELLED",
|
|
44718
|
+
Cancelling = "CANCELLING",
|
|
44213
44719
|
Failed = "FAILED",
|
|
44214
44720
|
Incomplete = "INCOMPLETE",
|
|
44215
44721
|
InProgress = "IN_PROGRESS",
|
|
44722
|
+
Paused = "PAUSED",
|
|
44216
44723
|
Ready = "READY",
|
|
44217
44724
|
Skipped = "SKIPPED",
|
|
44218
|
-
Success = "SUCCESS"
|
|
44725
|
+
Success = "SUCCESS",
|
|
44726
|
+
TimedOut = "TIMED_OUT"
|
|
44219
44727
|
}
|
|
44220
44728
|
export declare enum MigrationEventType {
|
|
44221
44729
|
Container = "CONTAINER",
|
|
@@ -44227,6 +44735,18 @@ export declare type MigrationKeys = {
|
|
|
44227
44735
|
confluence: Scalars['String']['output'];
|
|
44228
44736
|
jira: Scalars['String']['output'];
|
|
44229
44737
|
};
|
|
44738
|
+
export declare type MigrationProgressEvent = {
|
|
44739
|
+
__typename?: 'MigrationProgressEvent';
|
|
44740
|
+
businessStatus?: Maybe<MigrationEventStatus>;
|
|
44741
|
+
createdAtISO8601: Scalars['String']['output'];
|
|
44742
|
+
customBusinessStatus?: Maybe<Scalars['String']['output']>;
|
|
44743
|
+
eventId: Scalars['ID']['output'];
|
|
44744
|
+
eventSource: Scalars['String']['output'];
|
|
44745
|
+
eventType?: Maybe<MigrationEventType>;
|
|
44746
|
+
executionStatus?: Maybe<MigrationEventStatus>;
|
|
44747
|
+
migrationId: Scalars['ID']['output'];
|
|
44748
|
+
statusMessage?: Maybe<Scalars['String']['output']>;
|
|
44749
|
+
};
|
|
44230
44750
|
export declare type MigrationQuery = {
|
|
44231
44751
|
__typename?: 'MigrationQuery';
|
|
44232
44752
|
migration?: Maybe<Migration>;
|
|
@@ -44237,10 +44757,14 @@ export declare type MigrationQueryMigrationArgs = {
|
|
|
44237
44757
|
export declare type MigrationSubscription = {
|
|
44238
44758
|
__typename?: 'MigrationSubscription';
|
|
44239
44759
|
onMigrationEventCreated: MigrationEvent;
|
|
44760
|
+
onMigrationProgressEventCreated: MigrationProgressEvent;
|
|
44240
44761
|
};
|
|
44241
44762
|
export declare type MigrationSubscriptionOnMigrationEventCreatedArgs = {
|
|
44242
44763
|
migrationId: Scalars['ID']['input'];
|
|
44243
44764
|
};
|
|
44765
|
+
export declare type MigrationSubscriptionOnMigrationProgressEventCreatedArgs = {
|
|
44766
|
+
migrationId: Scalars['ID']['input'];
|
|
44767
|
+
};
|
|
44244
44768
|
export declare type MoveCardOutput = {
|
|
44245
44769
|
__typename?: 'MoveCardOutput';
|
|
44246
44770
|
clientMutationId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -45270,50 +45794,21 @@ export declare type OriginalSplitIssue = {
|
|
|
45270
45794
|
id: Scalars['ID']['input'];
|
|
45271
45795
|
summary: Scalars['String']['input'];
|
|
45272
45796
|
};
|
|
45273
|
-
export declare type
|
|
45274
|
-
cloudId: Scalars['ID']['input'];
|
|
45275
|
-
desiredStatus: Scalars['Boolean']['input'];
|
|
45276
|
-
product: PeapdcpProduct;
|
|
45277
|
-
};
|
|
45278
|
-
export declare type PeapdcpEnrollmentStatus = {
|
|
45279
|
-
__typename?: 'PEAPDCPEnrollmentStatus';
|
|
45280
|
-
cloudId: Scalars['ID']['output'];
|
|
45281
|
-
enrollmentStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
45282
|
-
error?: Maybe<Array<Scalars['String']['output']>>;
|
|
45283
|
-
product: PeapdcpProduct;
|
|
45284
|
-
success: Scalars['Boolean']['output'];
|
|
45285
|
-
};
|
|
45286
|
-
export declare type PeapdcpEnrollmentStatusInput = {
|
|
45287
|
-
cloudId: Scalars['ID']['input'];
|
|
45288
|
-
product: PeapdcpProduct;
|
|
45289
|
-
};
|
|
45290
|
-
export declare enum PeapdcpProduct {
|
|
45291
|
-
Confluence = "CONFLUENCE",
|
|
45292
|
-
Jira = "JIRA"
|
|
45293
|
-
}
|
|
45294
|
-
export declare type PeapEnrollmentInput = {
|
|
45797
|
+
export declare type PeapConfluenceSiteEnrollmentMutationInput = {
|
|
45295
45798
|
cloudId: Scalars['ID']['input'];
|
|
45296
45799
|
desiredStatus: Scalars['Boolean']['input'];
|
|
45297
45800
|
programId: Scalars['ID']['input'];
|
|
45298
45801
|
};
|
|
45299
|
-
export declare type
|
|
45300
|
-
__typename?: 'PEAPEnrollmentStatus';
|
|
45301
|
-
cloudId: Scalars['ID']['output'];
|
|
45302
|
-
enrollmentStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
45303
|
-
error?: Maybe<Array<Scalars['String']['output']>>;
|
|
45304
|
-
programId: Scalars['ID']['output'];
|
|
45305
|
-
success: Scalars['Boolean']['output'];
|
|
45306
|
-
};
|
|
45307
|
-
export declare type PeapEnrollmentStatusInput = {
|
|
45802
|
+
export declare type PeapConfluenceSiteEnrollmentQueryInput = {
|
|
45308
45803
|
cloudId: Scalars['ID']['input'];
|
|
45309
45804
|
programId: Scalars['ID']['input'];
|
|
45310
45805
|
};
|
|
45311
45806
|
export declare type PeapInternalMutationApi = {
|
|
45312
45807
|
__typename?: 'PEAPInternalMutationApi';
|
|
45313
45808
|
_module?: Maybe<Scalars['String']['output']>;
|
|
45314
|
-
createProgram
|
|
45315
|
-
updateProgram
|
|
45316
|
-
updateProgramStatus
|
|
45809
|
+
createProgram?: Maybe<PeapProgramMutationResponse>;
|
|
45810
|
+
updateProgram?: Maybe<PeapProgramMutationResponse>;
|
|
45811
|
+
updateProgramStatus?: Maybe<PeapProgramMutationResponse>;
|
|
45317
45812
|
};
|
|
45318
45813
|
export declare type PeapInternalMutationApiCreateProgramArgs = {
|
|
45319
45814
|
program: PeapNewProgramInput;
|
|
@@ -45330,13 +45825,19 @@ export declare type PeapInternalQueryApi = {
|
|
|
45330
45825
|
__typename?: 'PEAPInternalQueryApi';
|
|
45331
45826
|
version?: Maybe<Scalars['String']['output']>;
|
|
45332
45827
|
};
|
|
45828
|
+
export declare type PeapJiraSiteEnrollmentMutationInput = {
|
|
45829
|
+
cloudId: Scalars['ID']['input'];
|
|
45830
|
+
desiredStatus: Scalars['Boolean']['input'];
|
|
45831
|
+
programId: Scalars['ID']['input'];
|
|
45832
|
+
};
|
|
45833
|
+
export declare type PeapJiraSiteEnrollmentQueryInput = {
|
|
45834
|
+
cloudId: Scalars['ID']['input'];
|
|
45835
|
+
programId: Scalars['ID']['input'];
|
|
45836
|
+
};
|
|
45333
45837
|
export declare type PeapMutationApi = {
|
|
45334
45838
|
__typename?: 'PEAPMutationApi';
|
|
45335
45839
|
internal: PeapInternalMutationApi;
|
|
45336
|
-
programEnrollment:
|
|
45337
|
-
};
|
|
45338
|
-
export declare type PeapMutationApiProgramEnrollmentArgs = {
|
|
45339
|
-
input: PeapProgramEnrollmentInput;
|
|
45840
|
+
programEnrollment: PeapProgramEnrollmentMutation;
|
|
45340
45841
|
};
|
|
45341
45842
|
export declare type PeapNewProgramInput = {
|
|
45342
45843
|
description: Scalars['String']['input'];
|
|
@@ -45371,14 +45872,27 @@ export declare type PeapProgramEdge = {
|
|
|
45371
45872
|
cursor: Scalars['String']['output'];
|
|
45372
45873
|
node: PeapProgram;
|
|
45373
45874
|
};
|
|
45374
|
-
export declare type
|
|
45375
|
-
|
|
45376
|
-
|
|
45875
|
+
export declare type PeapProgramEnrollmentMutation = {
|
|
45876
|
+
__typename?: 'PEAPProgramEnrollmentMutation';
|
|
45877
|
+
confluence?: Maybe<PeapSiteEnrollmentStatus>;
|
|
45878
|
+
jira?: Maybe<PeapSiteEnrollmentStatus>;
|
|
45879
|
+
};
|
|
45880
|
+
export declare type PeapProgramEnrollmentMutationConfluenceArgs = {
|
|
45881
|
+
input: PeapConfluenceSiteEnrollmentMutationInput;
|
|
45882
|
+
};
|
|
45883
|
+
export declare type PeapProgramEnrollmentMutationJiraArgs = {
|
|
45884
|
+
input: PeapJiraSiteEnrollmentMutationInput;
|
|
45885
|
+
};
|
|
45886
|
+
export declare type PeapProgramEnrollmentQuery = {
|
|
45887
|
+
__typename?: 'PEAPProgramEnrollmentQuery';
|
|
45888
|
+
confluence?: Maybe<PeapSiteEnrollmentStatus>;
|
|
45889
|
+
jira?: Maybe<PeapSiteEnrollmentStatus>;
|
|
45890
|
+
};
|
|
45891
|
+
export declare type PeapProgramEnrollmentQueryConfluenceArgs = {
|
|
45892
|
+
input: PeapConfluenceSiteEnrollmentQueryInput;
|
|
45377
45893
|
};
|
|
45378
|
-
export declare type
|
|
45379
|
-
|
|
45380
|
-
dcp?: InputMaybe<PeapdcpEnrollmentStatusInput>;
|
|
45381
|
-
peap?: InputMaybe<PeapEnrollmentStatusInput>;
|
|
45894
|
+
export declare type PeapProgramEnrollmentQueryJiraArgs = {
|
|
45895
|
+
input: PeapJiraSiteEnrollmentQueryInput;
|
|
45382
45896
|
};
|
|
45383
45897
|
export declare type PeapProgramInternalData = {
|
|
45384
45898
|
__typename?: 'PEAPProgramInternalData';
|
|
@@ -45403,15 +45917,12 @@ export declare type PeapQueryApi = {
|
|
|
45403
45917
|
__typename?: 'PEAPQueryApi';
|
|
45404
45918
|
internal: PeapInternalQueryApi;
|
|
45405
45919
|
program?: Maybe<PeapProgram>;
|
|
45406
|
-
programEnrollment:
|
|
45920
|
+
programEnrollment: PeapProgramEnrollmentQuery;
|
|
45407
45921
|
programs?: Maybe<PeapProgramConnection>;
|
|
45408
45922
|
};
|
|
45409
45923
|
export declare type PeapQueryApiProgramArgs = {
|
|
45410
45924
|
id: Scalars['ID']['input'];
|
|
45411
45925
|
};
|
|
45412
|
-
export declare type PeapQueryApiProgramEnrollmentArgs = {
|
|
45413
|
-
input: PeapProgramEnrollmentStatusInput;
|
|
45414
|
-
};
|
|
45415
45926
|
export declare type PeapQueryApiProgramsArgs = {
|
|
45416
45927
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45417
45928
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -45422,6 +45933,18 @@ export declare type PeapQueryParams = {
|
|
|
45422
45933
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
45423
45934
|
status?: InputMaybe<Array<PeapProgramStatus>>;
|
|
45424
45935
|
};
|
|
45936
|
+
export declare type PeapSiteEnrollmentQueryInput = {
|
|
45937
|
+
cloudId: Scalars['ID']['input'];
|
|
45938
|
+
programId: Scalars['ID']['input'];
|
|
45939
|
+
};
|
|
45940
|
+
export declare type PeapSiteEnrollmentStatus = {
|
|
45941
|
+
__typename?: 'PEAPSiteEnrollmentStatus';
|
|
45942
|
+
cloudId: Scalars['ID']['output'];
|
|
45943
|
+
enrollmentStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
45944
|
+
error?: Maybe<Array<Scalars['String']['output']>>;
|
|
45945
|
+
program?: Maybe<PeapProgram>;
|
|
45946
|
+
success: Scalars['Boolean']['output'];
|
|
45947
|
+
};
|
|
45425
45948
|
export declare type PeapUpdateProgramInput = {
|
|
45426
45949
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
45427
45950
|
documentationURL?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46520,6 +47043,7 @@ export declare type PolarisPlayContributionsBySubjectArgs = {
|
|
|
46520
47043
|
export declare type PolarisPlayContribution = {
|
|
46521
47044
|
__typename?: 'PolarisPlayContribution';
|
|
46522
47045
|
aaid: Scalars['String']['output'];
|
|
47046
|
+
account?: Maybe<User>;
|
|
46523
47047
|
amount?: Maybe<Scalars['Int']['output']>;
|
|
46524
47048
|
appearsIn?: Maybe<PolarisInsight>;
|
|
46525
47049
|
comment?: Maybe<PolarisComment>;
|
|
@@ -47084,6 +47608,8 @@ export declare type Query = {
|
|
|
47084
47608
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
47085
47609
|
extensionsEcho?: Maybe<Scalars['String']['output']>;
|
|
47086
47610
|
featureRelease?: Maybe<FeatureRelease>;
|
|
47611
|
+
fullHubArticle?: Maybe<ContentPlatformFullHubArticle>;
|
|
47612
|
+
fullHubArticles: ContentPlatformHubArticleSearchConnection;
|
|
47087
47613
|
fullTutorial?: Maybe<ContentPlatformFullTutorial>;
|
|
47088
47614
|
fullTutorials: ContentPlatformTutorialSearchConnection;
|
|
47089
47615
|
getKeywords?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -47396,6 +47922,13 @@ export declare type QueryExtensionContextsArgs = {
|
|
|
47396
47922
|
export declare type QueryExtensionsEchoArgs = {
|
|
47397
47923
|
text: Scalars['String']['input'];
|
|
47398
47924
|
};
|
|
47925
|
+
export declare type QueryFullHubArticleArgs = {
|
|
47926
|
+
id: Scalars['String']['input'];
|
|
47927
|
+
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
47928
|
+
};
|
|
47929
|
+
export declare type QueryFullHubArticlesArgs = {
|
|
47930
|
+
search: ContentPlatformSearchApIv2Query;
|
|
47931
|
+
};
|
|
47399
47932
|
export declare type QueryFullTutorialArgs = {
|
|
47400
47933
|
id: Scalars['String']['input'];
|
|
47401
47934
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49048,8 +49581,11 @@ export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
|
49048
49581
|
iconCssClass?: Maybe<Scalars['String']['output']>;
|
|
49049
49582
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49050
49583
|
id: Scalars['ID']['output'];
|
|
49584
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
49051
49585
|
lastModified?: Maybe<Scalars['DateTime']['output']>;
|
|
49586
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49052
49587
|
pageEntity?: Maybe<ConfluencePage>;
|
|
49588
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49053
49589
|
space?: Maybe<SearchConfluenceResultSpace>;
|
|
49054
49590
|
spaceEntity?: Maybe<ConfluenceSpace>;
|
|
49055
49591
|
title: Scalars['String']['output'];
|
|
@@ -49081,7 +49617,10 @@ export declare type SearchConfluenceSpace = SearchResult & {
|
|
|
49081
49617
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49082
49618
|
id: Scalars['ID']['output'];
|
|
49083
49619
|
key?: Maybe<Scalars['String']['output']>;
|
|
49620
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
49084
49621
|
lastModified?: Maybe<Scalars['DateTime']['output']>;
|
|
49622
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49623
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49085
49624
|
spaceEntity?: Maybe<ConfluenceSpace>;
|
|
49086
49625
|
title: Scalars['String']['output'];
|
|
49087
49626
|
type: SearchResultType;
|
|
@@ -49098,6 +49637,7 @@ export declare type SearchDefaultResult = SearchResult & {
|
|
|
49098
49637
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49099
49638
|
id: Scalars['ID']['output'];
|
|
49100
49639
|
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
49640
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49101
49641
|
title: Scalars['String']['output'];
|
|
49102
49642
|
type: SearchResultType;
|
|
49103
49643
|
url: Scalars['URL']['output'];
|
|
@@ -49162,6 +49702,11 @@ export declare type SearchJiraIssueFilter = {
|
|
|
49162
49702
|
export declare type SearchJiraProjectFilter = {
|
|
49163
49703
|
projectType?: InputMaybe<SearchProjectType>;
|
|
49164
49704
|
};
|
|
49705
|
+
export declare type SearchL2Feature = {
|
|
49706
|
+
__typename?: 'SearchL2Feature';
|
|
49707
|
+
key: Scalars['String']['output'];
|
|
49708
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
49709
|
+
};
|
|
49165
49710
|
export declare enum SearchProjectType {
|
|
49166
49711
|
Business = "business",
|
|
49167
49712
|
ProductDiscovery = "product_discovery",
|
|
@@ -49200,6 +49745,7 @@ export declare type SearchResult = {
|
|
|
49200
49745
|
description: Scalars['String']['output'];
|
|
49201
49746
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49202
49747
|
id: Scalars['ID']['output'];
|
|
49748
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49203
49749
|
title: Scalars['String']['output'];
|
|
49204
49750
|
type: SearchResultType;
|
|
49205
49751
|
url: Scalars['URL']['output'];
|
|
@@ -49210,6 +49756,8 @@ export declare type SearchResultAtlasGoal = SearchResult & {
|
|
|
49210
49756
|
goal?: Maybe<TownsquareGoal>;
|
|
49211
49757
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49212
49758
|
id: Scalars['ID']['output'];
|
|
49759
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49760
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49213
49761
|
title: Scalars['String']['output'];
|
|
49214
49762
|
type: SearchResultType;
|
|
49215
49763
|
url: Scalars['URL']['output'];
|
|
@@ -49219,7 +49767,9 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
49219
49767
|
description: Scalars['String']['output'];
|
|
49220
49768
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49221
49769
|
id: Scalars['ID']['output'];
|
|
49770
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49222
49771
|
project?: Maybe<TownsquareProject>;
|
|
49772
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49223
49773
|
title: Scalars['String']['output'];
|
|
49224
49774
|
type: SearchResultType;
|
|
49225
49775
|
url: Scalars['URL']['output'];
|
|
@@ -49231,6 +49781,7 @@ export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
|
49231
49781
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49232
49782
|
id: Scalars['ID']['output'];
|
|
49233
49783
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49784
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49234
49785
|
title: Scalars['String']['output'];
|
|
49235
49786
|
type: SearchResultType;
|
|
49236
49787
|
url: Scalars['URL']['output'];
|
|
@@ -49244,6 +49795,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
49244
49795
|
id: Scalars['ID']['output'];
|
|
49245
49796
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49246
49797
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
49798
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49247
49799
|
tier?: Maybe<Scalars['String']['output']>;
|
|
49248
49800
|
title: Scalars['String']['output'];
|
|
49249
49801
|
type: SearchResultType;
|
|
@@ -49258,6 +49810,7 @@ export declare type SearchResultGoogleDocument = SearchResult & {
|
|
|
49258
49810
|
id: Scalars['ID']['output'];
|
|
49259
49811
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49260
49812
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
49813
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49261
49814
|
title: Scalars['String']['output'];
|
|
49262
49815
|
type: SearchResultType;
|
|
49263
49816
|
url: Scalars['URL']['output'];
|
|
@@ -49271,6 +49824,7 @@ export declare type SearchResultGooglePresentation = SearchResult & {
|
|
|
49271
49824
|
id: Scalars['ID']['output'];
|
|
49272
49825
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49273
49826
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
49827
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49274
49828
|
title: Scalars['String']['output'];
|
|
49275
49829
|
type: SearchResultType;
|
|
49276
49830
|
url: Scalars['URL']['output'];
|
|
@@ -49284,6 +49838,7 @@ export declare type SearchResultGoogleSpreadsheet = SearchResult & {
|
|
|
49284
49838
|
id: Scalars['ID']['output'];
|
|
49285
49839
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49286
49840
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
49841
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49287
49842
|
title: Scalars['String']['output'];
|
|
49288
49843
|
type: SearchResultType;
|
|
49289
49844
|
url: Scalars['URL']['output'];
|
|
@@ -49320,7 +49875,9 @@ export declare type SearchResultJiraBoard = SearchResult & {
|
|
|
49320
49875
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49321
49876
|
id: Scalars['ID']['output'];
|
|
49322
49877
|
isSimpleBoard: Scalars['Boolean']['output'];
|
|
49878
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49323
49879
|
product: SearchBoardProductType;
|
|
49880
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49324
49881
|
title: Scalars['String']['output'];
|
|
49325
49882
|
type: SearchResultType;
|
|
49326
49883
|
url: Scalars['URL']['output'];
|
|
@@ -49344,6 +49901,8 @@ export declare type SearchResultJiraDashboard = SearchResult & {
|
|
|
49344
49901
|
description: Scalars['String']['output'];
|
|
49345
49902
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49346
49903
|
id: Scalars['ID']['output'];
|
|
49904
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49905
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49347
49906
|
title: Scalars['String']['output'];
|
|
49348
49907
|
type: SearchResultType;
|
|
49349
49908
|
url: Scalars['URL']['output'];
|
|
@@ -49354,6 +49913,8 @@ export declare type SearchResultJiraFilter = SearchResult & {
|
|
|
49354
49913
|
filter?: Maybe<JiraFilter>;
|
|
49355
49914
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49356
49915
|
id: Scalars['ID']['output'];
|
|
49916
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49917
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49357
49918
|
title: Scalars['String']['output'];
|
|
49358
49919
|
type: SearchResultType;
|
|
49359
49920
|
url: Scalars['URL']['output'];
|
|
@@ -49364,6 +49925,8 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
49364
49925
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49365
49926
|
id: Scalars['ID']['output'];
|
|
49366
49927
|
issue?: Maybe<JiraIssue>;
|
|
49928
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49929
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49367
49930
|
status?: Maybe<SearchResultJiraIssueStatus>;
|
|
49368
49931
|
title: Scalars['String']['output'];
|
|
49369
49932
|
type: SearchResultType;
|
|
@@ -49389,10 +49952,12 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
49389
49952
|
favourite: Scalars['Boolean']['output'];
|
|
49390
49953
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49391
49954
|
id: Scalars['ID']['output'];
|
|
49955
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49392
49956
|
project?: Maybe<JiraProject>;
|
|
49393
49957
|
projectId: Scalars['String']['output'];
|
|
49394
49958
|
projectKey: Scalars['String']['output'];
|
|
49395
49959
|
projectType: SearchProjectType;
|
|
49960
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49396
49961
|
simplified: Scalars['Boolean']['output'];
|
|
49397
49962
|
title: Scalars['String']['output'];
|
|
49398
49963
|
type: SearchResultType;
|
|
@@ -49407,6 +49972,7 @@ export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
|
49407
49972
|
id: Scalars['ID']['output'];
|
|
49408
49973
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49409
49974
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
49975
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49410
49976
|
title: Scalars['String']['output'];
|
|
49411
49977
|
type: SearchResultType;
|
|
49412
49978
|
url: Scalars['URL']['output'];
|
|
@@ -49418,6 +49984,7 @@ export declare type SearchResultSlackMessage = SearchResult & {
|
|
|
49418
49984
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49419
49985
|
id: Scalars['ID']['output'];
|
|
49420
49986
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49987
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49421
49988
|
title: Scalars['String']['output'];
|
|
49422
49989
|
type: SearchResultType;
|
|
49423
49990
|
url: Scalars['URL']['output'];
|
|
@@ -49428,6 +49995,7 @@ export declare type SearchResultTrelloBoard = SearchResult & {
|
|
|
49428
49995
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49429
49996
|
id: Scalars['ID']['output'];
|
|
49430
49997
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49998
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49431
49999
|
title: Scalars['String']['output'];
|
|
49432
50000
|
type: SearchResultType;
|
|
49433
50001
|
url: Scalars['URL']['output'];
|
|
@@ -49440,6 +50008,7 @@ export declare type SearchResultTrelloCard = SearchResult & {
|
|
|
49440
50008
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49441
50009
|
id: Scalars['ID']['output'];
|
|
49442
50010
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
50011
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49443
50012
|
title: Scalars['String']['output'];
|
|
49444
50013
|
type: SearchResultType;
|
|
49445
50014
|
url: Scalars['URL']['output'];
|
|
@@ -50859,6 +51428,15 @@ export declare type SmartsContext = {
|
|
|
50859
51428
|
tenantId: Scalars['String']['input'];
|
|
50860
51429
|
userId: Scalars['String']['input'];
|
|
50861
51430
|
};
|
|
51431
|
+
export declare type SmartsFieldContext = {
|
|
51432
|
+
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
51433
|
+
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
51434
|
+
fieldId: Scalars['String']['input'];
|
|
51435
|
+
objectId?: InputMaybe<Scalars['String']['input']>;
|
|
51436
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
51437
|
+
tenantId: Scalars['String']['input'];
|
|
51438
|
+
userId: Scalars['String']['input'];
|
|
51439
|
+
};
|
|
50862
51440
|
export declare type SmartsKeyValue = {
|
|
50863
51441
|
key: Scalars['String']['input'];
|
|
50864
51442
|
value: Scalars['String']['input'];
|
|
@@ -50870,18 +51448,29 @@ export declare type SmartsModelRequestParams = {
|
|
|
50870
51448
|
export declare type SmartsQueryApi = {
|
|
50871
51449
|
__typename?: 'SmartsQueryApi';
|
|
50872
51450
|
recommendedContainer?: Maybe<Array<Maybe<SmartsRecommendedContainer>>>;
|
|
51451
|
+
recommendedField?: Maybe<Array<Maybe<SmartsRecommendedFieldObject>>>;
|
|
50873
51452
|
recommendedObject?: Maybe<Array<Maybe<SmartsRecommendedObject>>>;
|
|
50874
51453
|
recommendedUser?: Maybe<Array<Maybe<SmartsRecommendedUser>>>;
|
|
50875
51454
|
};
|
|
50876
51455
|
export declare type SmartsQueryApiRecommendedContainerArgs = {
|
|
50877
51456
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
50878
51457
|
};
|
|
51458
|
+
export declare type SmartsQueryApiRecommendedFieldArgs = {
|
|
51459
|
+
recommendationsQuery: SmartsRecommendationsFieldQuery;
|
|
51460
|
+
};
|
|
50879
51461
|
export declare type SmartsQueryApiRecommendedObjectArgs = {
|
|
50880
51462
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
50881
51463
|
};
|
|
50882
51464
|
export declare type SmartsQueryApiRecommendedUserArgs = {
|
|
50883
51465
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
50884
51466
|
};
|
|
51467
|
+
export declare type SmartsRecommendationsFieldQuery = {
|
|
51468
|
+
context: SmartsFieldContext;
|
|
51469
|
+
maxNumberOfResults?: InputMaybe<Scalars['Int']['input']>;
|
|
51470
|
+
modelRequestParams: SmartsModelRequestParams;
|
|
51471
|
+
requestingUserId: Scalars['String']['input'];
|
|
51472
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
51473
|
+
};
|
|
50885
51474
|
export declare type SmartsRecommendationsQuery = {
|
|
50886
51475
|
context: SmartsContext;
|
|
50887
51476
|
maxNumberOfResults?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -50895,6 +51484,12 @@ export declare type SmartsRecommendedContainer = {
|
|
|
50895
51484
|
id: Scalars['ID']['output'];
|
|
50896
51485
|
score?: Maybe<Scalars['Float']['output']>;
|
|
50897
51486
|
};
|
|
51487
|
+
export declare type SmartsRecommendedFieldObject = {
|
|
51488
|
+
__typename?: 'SmartsRecommendedFieldObject';
|
|
51489
|
+
id: Scalars['ID']['output'];
|
|
51490
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
51491
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
51492
|
+
};
|
|
50898
51493
|
export declare type SmartsRecommendedObject = {
|
|
50899
51494
|
__typename?: 'SmartsRecommendedObject';
|
|
50900
51495
|
id: Scalars['ID']['output'];
|
|
@@ -50918,6 +51513,7 @@ export declare type SoftwareBoard = {
|
|
|
50918
51513
|
cards?: Maybe<Array<Maybe<SoftwareCard>>>;
|
|
50919
51514
|
columnConfigs?: Maybe<ColumnsConfig>;
|
|
50920
51515
|
columns?: Maybe<Array<Maybe<Column>>>;
|
|
51516
|
+
customSwimlaneConfig?: Maybe<JswCustomSwimlaneConnection>;
|
|
50921
51517
|
editConfig?: Maybe<BoardEditConfig>;
|
|
50922
51518
|
hasClearedCards?: Maybe<Scalars['Boolean']['output']>;
|
|
50923
51519
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -50928,12 +51524,17 @@ export declare type SoftwareBoard = {
|
|
|
50928
51524
|
showDaysInColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
50929
51525
|
swimlaneStrategy?: Maybe<SwimlaneStrategy>;
|
|
50930
51526
|
swimlanes: Array<Maybe<Swimlane>>;
|
|
51527
|
+
unmappedStatuses?: Maybe<Array<Maybe<CardStatus>>>;
|
|
50931
51528
|
userSwimlanes: Array<Maybe<Swimlane>>;
|
|
50932
51529
|
};
|
|
50933
51530
|
export declare type SoftwareBoardCardsArgs = {
|
|
50934
51531
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
50935
51532
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
50936
51533
|
};
|
|
51534
|
+
export declare type SoftwareBoardCustomSwimlaneConfigArgs = {
|
|
51535
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51536
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51537
|
+
};
|
|
50937
51538
|
export declare type SoftwareCard = {
|
|
50938
51539
|
__typename?: 'SoftwareCard';
|
|
50939
51540
|
activeSprint?: Maybe<Sprint>;
|
|
@@ -51167,6 +51768,15 @@ export declare type Subscription = {
|
|
|
51167
51768
|
testing?: Maybe<TestingSubscription>;
|
|
51168
51769
|
trello: TrelloSubscriptionApi;
|
|
51169
51770
|
};
|
|
51771
|
+
export declare type SupportInquiryEntitlement = {
|
|
51772
|
+
__typename?: 'SupportInquiryEntitlement';
|
|
51773
|
+
cloudURL?: Maybe<Scalars['String']['output']>;
|
|
51774
|
+
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
51775
|
+
productCatalogId?: Maybe<Scalars['String']['output']>;
|
|
51776
|
+
};
|
|
51777
|
+
export declare type SupportInquiryEntitlementQueryFilter = {
|
|
51778
|
+
productCatalogId?: InputMaybe<Scalars['String']['input']>;
|
|
51779
|
+
};
|
|
51170
51780
|
export declare type SupportInquiryUser = {
|
|
51171
51781
|
__typename?: 'SupportInquiryUser';
|
|
51172
51782
|
aaid: Scalars['String']['output'];
|
|
@@ -51176,8 +51786,12 @@ export declare type SupportInquiryUser = {
|
|
|
51176
51786
|
};
|
|
51177
51787
|
export declare type SupportInquiryUserContext = {
|
|
51178
51788
|
__typename?: 'SupportInquiryUserContext';
|
|
51789
|
+
supportEntitlements?: Maybe<Array<Maybe<SupportInquiryEntitlement>>>;
|
|
51179
51790
|
userDetails?: Maybe<SupportInquiryUser>;
|
|
51180
51791
|
};
|
|
51792
|
+
export declare type SupportInquiryUserContextSupportEntitlementsArgs = {
|
|
51793
|
+
filter?: InputMaybe<SupportInquiryEntitlementQueryFilter>;
|
|
51794
|
+
};
|
|
51181
51795
|
export declare type SupportRequest = {
|
|
51182
51796
|
__typename?: 'SupportRequest';
|
|
51183
51797
|
activities: SupportRequestActivities;
|
|
@@ -53876,6 +54490,20 @@ export declare type UnifiedForumsSnapshot = UnifiedINode & {
|
|
|
53876
54490
|
totalLoginsRecorded?: Maybe<Scalars['String']['output']>;
|
|
53877
54491
|
totalPosts?: Maybe<Scalars['Int']['output']>;
|
|
53878
54492
|
};
|
|
54493
|
+
export declare type UnifiedGamification = UnifiedINode & {
|
|
54494
|
+
__typename?: 'UnifiedGamification';
|
|
54495
|
+
badges?: Maybe<Array<Maybe<UnifiedUGamificationBadgeResult>>>;
|
|
54496
|
+
id: Scalars['ID']['output'];
|
|
54497
|
+
};
|
|
54498
|
+
export declare type UnifiedGamificationBadge = UnifiedINode & {
|
|
54499
|
+
__typename?: 'UnifiedGamificationBadge';
|
|
54500
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
54501
|
+
id: Scalars['ID']['output'];
|
|
54502
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
54503
|
+
lastCompletedDate?: Maybe<Scalars['String']['output']>;
|
|
54504
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
54505
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
54506
|
+
};
|
|
53879
54507
|
export declare type UnifiedIConnection = {
|
|
53880
54508
|
edges?: Maybe<Array<Maybe<UnifiedIEdge>>>;
|
|
53881
54509
|
pageInfo: UnifiedPageInfo;
|
|
@@ -53934,6 +54562,7 @@ export declare type UnifiedLinkedAccount = UnifiedINode & {
|
|
|
53934
54562
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
53935
54563
|
connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
|
|
53936
54564
|
forums?: Maybe<UnifiedUForumsResult>;
|
|
54565
|
+
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
53937
54566
|
id: Scalars['ID']['output'];
|
|
53938
54567
|
learning?: Maybe<UnifiedULearningResult>;
|
|
53939
54568
|
linkedAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -54008,6 +54637,7 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
54008
54637
|
company?: Maybe<Scalars['String']['output']>;
|
|
54009
54638
|
forums?: Maybe<UnifiedUForumsResult>;
|
|
54010
54639
|
forumsId?: Maybe<Scalars['String']['output']>;
|
|
54640
|
+
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
54011
54641
|
id: Scalars['ID']['output'];
|
|
54012
54642
|
learnId?: Maybe<Scalars['String']['output']>;
|
|
54013
54643
|
learning?: Maybe<UnifiedULearningResult>;
|
|
@@ -54022,24 +54652,6 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
54022
54652
|
xUrl?: Maybe<Scalars['String']['output']>;
|
|
54023
54653
|
youtubeUrl?: Maybe<Scalars['String']['output']>;
|
|
54024
54654
|
};
|
|
54025
|
-
export declare type UnifiedProfileFields = UnifiedINode & {
|
|
54026
|
-
__typename?: 'UnifiedProfileFields';
|
|
54027
|
-
bio?: Maybe<Scalars['String']['output']>;
|
|
54028
|
-
company?: Maybe<Scalars['String']['output']>;
|
|
54029
|
-
forumsId?: Maybe<Scalars['String']['output']>;
|
|
54030
|
-
id: Scalars['ID']['output'];
|
|
54031
|
-
learnId?: Maybe<Scalars['String']['output']>;
|
|
54032
|
-
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
54033
|
-
location?: Maybe<Scalars['String']['output']>;
|
|
54034
|
-
parentAccountInternalId?: Maybe<Scalars['String']['output']>;
|
|
54035
|
-
products?: Maybe<Scalars['String']['output']>;
|
|
54036
|
-
role?: Maybe<Scalars['String']['output']>;
|
|
54037
|
-
unifiedProfileInternalId?: Maybe<Scalars['ID']['output']>;
|
|
54038
|
-
unifiedProfileUsername?: Maybe<Scalars['String']['output']>;
|
|
54039
|
-
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
54040
|
-
xUrl?: Maybe<Scalars['String']['output']>;
|
|
54041
|
-
youtubeUrl?: Maybe<Scalars['String']['output']>;
|
|
54042
|
-
};
|
|
54043
54655
|
export declare type UnifiedProfileInput = {
|
|
54044
54656
|
bio?: InputMaybe<Scalars['String']['input']>;
|
|
54045
54657
|
company?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -54062,7 +54674,7 @@ export declare type UnifiedProfilePayload = UnifiedPayload & {
|
|
|
54062
54674
|
__typename?: 'UnifiedProfilePayload';
|
|
54063
54675
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
54064
54676
|
success: Scalars['Boolean']['output'];
|
|
54065
|
-
unifiedProfile?: Maybe<
|
|
54677
|
+
unifiedProfile?: Maybe<UnifiedProfile>;
|
|
54066
54678
|
};
|
|
54067
54679
|
export declare type UnifiedQuery = {
|
|
54068
54680
|
__typename?: 'UnifiedQuery';
|
|
@@ -54120,6 +54732,8 @@ export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
|
54120
54732
|
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
|
|
54121
54733
|
export declare type UnifiedUForumsResult = UnifiedForums | UnifiedQueryError;
|
|
54122
54734
|
export declare type UnifiedUForumsSnapshotResult = UnifiedForumsSnapshot | UnifiedQueryError;
|
|
54735
|
+
export declare type UnifiedUGamificationBadgeResult = UnifiedGamificationBadge | UnifiedQueryError;
|
|
54736
|
+
export declare type UnifiedUGamificationResult = UnifiedGamification | UnifiedQueryError;
|
|
54123
54737
|
export declare type UnifiedULearningCertificationResult = UnifiedLearningCertificationConnection | UnifiedQueryError;
|
|
54124
54738
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
54125
54739
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
@@ -55252,7 +55866,7 @@ export declare type WorkSuggestionsSuggestionsByProjectsArgs = {
|
|
|
55252
55866
|
cloudId: Scalars['ID']['input'];
|
|
55253
55867
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55254
55868
|
projectAris: Array<Scalars['ID']['input']>;
|
|
55255
|
-
|
|
55869
|
+
sprintAutoDiscoveryLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
55256
55870
|
};
|
|
55257
55871
|
export declare type WorkSuggestionsUserProfileByCloudIdArgs = {
|
|
55258
55872
|
cloudId: Scalars['ID']['input'];
|