@forge/cli-shared 5.0.1-next.0 → 5.0.1-next.2
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 +584 -230
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +28 -39
- 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';
|
|
@@ -6350,10 +6356,19 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
6350
6356
|
};
|
|
6351
6357
|
export declare type ConfluenceDatabase = {
|
|
6352
6358
|
__typename?: 'ConfluenceDatabase';
|
|
6359
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
6353
6360
|
databaseId: Scalars['ID']['output'];
|
|
6354
6361
|
id: Scalars['ID']['output'];
|
|
6362
|
+
links?: Maybe<ConfluenceDatabaseLinks>;
|
|
6363
|
+
owner?: Maybe<ConfluenceUserInfo>;
|
|
6364
|
+
space?: Maybe<ConfluenceSpace>;
|
|
6355
6365
|
title?: Maybe<Scalars['String']['output']>;
|
|
6356
6366
|
};
|
|
6367
|
+
export declare type ConfluenceDatabaseLinks = {
|
|
6368
|
+
__typename?: 'ConfluenceDatabaseLinks';
|
|
6369
|
+
base?: Maybe<Scalars['String']['output']>;
|
|
6370
|
+
webUi?: Maybe<Scalars['String']['output']>;
|
|
6371
|
+
};
|
|
6357
6372
|
export declare type ConfluenceDeleteBlogPostPropertyInput = {
|
|
6358
6373
|
blogPostId: Scalars['ID']['input'];
|
|
6359
6374
|
key: Scalars['String']['input'];
|
|
@@ -6402,6 +6417,7 @@ export declare type ConfluenceEmbed = {
|
|
|
6402
6417
|
embedId: Scalars['ID']['output'];
|
|
6403
6418
|
id: Scalars['ID']['output'];
|
|
6404
6419
|
links?: Maybe<ConfluenceEmbedLinks>;
|
|
6420
|
+
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
6405
6421
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
6406
6422
|
space?: Maybe<ConfluenceSpace>;
|
|
6407
6423
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -7243,6 +7259,16 @@ export declare type ContentPlatformAnimatedTourCard = {
|
|
|
7243
7259
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7244
7260
|
};
|
|
7245
7261
|
export declare type ContentPlatformAnyContext = ContentPlatformContextApp | ContentPlatformContextProduct | ContentPlatformContextTheme;
|
|
7262
|
+
export declare type ContentPlatformArticleIntroduction = {
|
|
7263
|
+
__typename?: 'ContentPlatformArticleIntroduction';
|
|
7264
|
+
articleIntroductionAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7265
|
+
articleIntroductionDetails?: Maybe<Scalars['String']['output']>;
|
|
7266
|
+
articleIntroductionName?: Maybe<Scalars['String']['output']>;
|
|
7267
|
+
componentizedIntroduction?: Maybe<Array<ContentPlatformAssetComponentAndProTipComponentAndTextComponentAndCallToActionAndQuestionComponentAndTwitterComponentAndCallOutComponentUnion>>;
|
|
7268
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7269
|
+
embedLink?: Maybe<Scalars['String']['output']>;
|
|
7270
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7271
|
+
};
|
|
7246
7272
|
export declare type ContentPlatformAssetComponent = {
|
|
7247
7273
|
__typename?: 'ContentPlatformAssetComponent';
|
|
7248
7274
|
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
@@ -7296,6 +7322,7 @@ export declare type ContentPlatformCallToAction = {
|
|
|
7296
7322
|
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7297
7323
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7298
7324
|
dataBlueprintModule?: Maybe<Scalars['String']['output']>;
|
|
7325
|
+
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
7299
7326
|
productLogo?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7300
7327
|
productName?: Maybe<Scalars['String']['output']>;
|
|
7301
7328
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -7479,6 +7506,26 @@ export declare type ContentPlatformFieldType = {
|
|
|
7479
7506
|
__typename?: 'ContentPlatformFieldType';
|
|
7480
7507
|
field: ContentPlatformFieldNames;
|
|
7481
7508
|
};
|
|
7509
|
+
export declare type ContentPlatformFullHubArticle = {
|
|
7510
|
+
__typename?: 'ContentPlatformFullHubArticle';
|
|
7511
|
+
articleIntroduction?: Maybe<Array<ContentPlatformArticleIntroduction>>;
|
|
7512
|
+
articleRef?: Maybe<ContentPlatformHubArticle>;
|
|
7513
|
+
articleSummary?: Maybe<Scalars['String']['output']>;
|
|
7514
|
+
author?: Maybe<ContentPlatformAuthor>;
|
|
7515
|
+
bodyTextContainer?: Maybe<Array<ContentPlatformSupportingConceptWrapper>>;
|
|
7516
|
+
contentHubSubscribe?: Maybe<Array<ContentPlatformSubscribeComponent>>;
|
|
7517
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7518
|
+
nextBestAction?: Maybe<Array<ContentPlatformHubArticleAndTutorialUnion>>;
|
|
7519
|
+
productDiscussedCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
7520
|
+
relatedHub?: Maybe<Array<ContentPlatformTaxonomyContentHub>>;
|
|
7521
|
+
relatedProductFeatures?: Maybe<Array<ContentPlatformTaxonomyFeature>>;
|
|
7522
|
+
relatedTutorialCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
7523
|
+
shareThisArticle?: Maybe<Array<ContentPlatformSocialMediaLink>>;
|
|
7524
|
+
subtitle?: Maybe<Scalars['String']['output']>;
|
|
7525
|
+
upNext?: Maybe<ContentPlatformHubArticleAndTutorialAndTopicOverviewUnion>;
|
|
7526
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7527
|
+
whitePaperCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
7528
|
+
};
|
|
7482
7529
|
export declare type ContentPlatformFullTutorial = {
|
|
7483
7530
|
__typename?: 'ContentPlatformFullTutorial';
|
|
7484
7531
|
author?: Maybe<ContentPlatformAuthor>;
|
|
@@ -7493,7 +7540,7 @@ export declare type ContentPlatformFullTutorial = {
|
|
|
7493
7540
|
shareThisTutorial?: Maybe<Array<ContentPlatformSocialMediaLink>>;
|
|
7494
7541
|
subtitle?: Maybe<Scalars['String']['output']>;
|
|
7495
7542
|
tutorialInstructions?: Maybe<Array<ContentPlatformTutorialInstructionsWrapper>>;
|
|
7496
|
-
tutorialIntroduction?: Maybe<ContentPlatformTutorialIntroduction
|
|
7543
|
+
tutorialIntroduction?: Maybe<Array<ContentPlatformTutorialIntroduction>>;
|
|
7497
7544
|
tutorialRef: ContentPlatformTutorial;
|
|
7498
7545
|
tutorialSummary?: Maybe<Scalars['String']['output']>;
|
|
7499
7546
|
upNext?: Maybe<ContentPlatformHubArticleAndTutorialAndTopicOverviewUnion>;
|
|
@@ -7513,6 +7560,16 @@ export declare type ContentPlatformHubArticle = {
|
|
|
7513
7560
|
export declare type ContentPlatformHubArticleAndTutorialAndProductFeatureAndFeaturedVideoUnion = ContentPlatformFeaturedVideo | ContentPlatformHubArticle | ContentPlatformProductFeature | ContentPlatformTutorial;
|
|
7514
7561
|
export declare type ContentPlatformHubArticleAndTutorialAndTopicOverviewUnion = ContentPlatformHubArticle | ContentPlatformTopicOverview | ContentPlatformTutorial;
|
|
7515
7562
|
export declare type ContentPlatformHubArticleAndTutorialUnion = ContentPlatformHubArticle | ContentPlatformTutorial;
|
|
7563
|
+
export declare type ContentPlatformHubArticleResultEdge = {
|
|
7564
|
+
__typename?: 'ContentPlatformHubArticleResultEdge';
|
|
7565
|
+
cursor: Scalars['String']['output'];
|
|
7566
|
+
node: ContentPlatformFullHubArticle;
|
|
7567
|
+
};
|
|
7568
|
+
export declare type ContentPlatformHubArticleSearchConnection = {
|
|
7569
|
+
__typename?: 'ContentPlatformHubArticleSearchConnection';
|
|
7570
|
+
edges: Array<ContentPlatformHubArticleResultEdge>;
|
|
7571
|
+
pageInfo: PageInfo;
|
|
7572
|
+
};
|
|
7516
7573
|
export declare type ContentPlatformImageAsset = {
|
|
7517
7574
|
__typename?: 'ContentPlatformImageAsset';
|
|
7518
7575
|
contentType: Scalars['String']['output'];
|
|
@@ -7808,7 +7865,7 @@ export declare type ContentPlatformSubscribeComponent = {
|
|
|
7808
7865
|
};
|
|
7809
7866
|
export declare type ContentPlatformSupportingConceptWrapper = {
|
|
7810
7867
|
__typename?: 'ContentPlatformSupportingConceptWrapper';
|
|
7811
|
-
contentComponents?: Maybe<Array<
|
|
7868
|
+
contentComponents?: Maybe<Array<ContentPlatformTextComponentAndAssetComponentAndProTipComponentAndTwitterComponentAndEmbeddedVideoAssetAndCallToActionAndCallOutComponentAndQuestionComponentUnion>>;
|
|
7812
7869
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7813
7870
|
name?: Maybe<Scalars['String']['output']>;
|
|
7814
7871
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -8028,7 +8085,7 @@ export declare type ContentPlatformTextComponent = {
|
|
|
8028
8085
|
name?: Maybe<Scalars['String']['output']>;
|
|
8029
8086
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
8030
8087
|
};
|
|
8031
|
-
export declare type
|
|
8088
|
+
export declare type ContentPlatformTextComponentAndAssetComponentAndProTipComponentAndTwitterComponentAndEmbeddedVideoAssetAndCallToActionAndCallOutComponentAndQuestionComponentUnion = ContentPlatformAssetComponent | ContentPlatformCallOutComponent | ContentPlatformCallToAction | ContentPlatformEmbeddedVideoAsset | ContentPlatformProTipComponent | ContentPlatformQuestionComponent | ContentPlatformTextComponent | ContentPlatformTwitterComponent;
|
|
8032
8089
|
export declare type ContentPlatformTopicIntroduction = {
|
|
8033
8090
|
__typename?: 'ContentPlatformTopicIntroduction';
|
|
8034
8091
|
asset?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
@@ -27391,7 +27448,7 @@ export declare type HelpLayoutCreationInput = {
|
|
|
27391
27448
|
parentAri: Scalars['ID']['input'];
|
|
27392
27449
|
sections: Array<HelpLayoutSectionInput>;
|
|
27393
27450
|
};
|
|
27394
|
-
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
27451
|
+
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
27395
27452
|
export declare enum HelpLayoutElementCategory {
|
|
27396
27453
|
Basic = "BASIC",
|
|
27397
27454
|
Navigation = "NAVIGATION"
|
|
@@ -29704,6 +29761,7 @@ export declare type JiraAutodevJob = {
|
|
|
29704
29761
|
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
29705
29762
|
state?: Maybe<JiraAutodevState>;
|
|
29706
29763
|
status?: Maybe<JiraAutodevStatus>;
|
|
29764
|
+
statusHistory?: Maybe<JiraAutodevStatusHistoryItemConnection>;
|
|
29707
29765
|
};
|
|
29708
29766
|
export declare type JiraAutodevJobConnection = {
|
|
29709
29767
|
__typename?: 'JiraAutodevJobConnection';
|
|
@@ -29760,6 +29818,23 @@ export declare enum JiraAutodevStatus {
|
|
|
29760
29818
|
InProgress = "IN_PROGRESS",
|
|
29761
29819
|
Pending = "PENDING"
|
|
29762
29820
|
}
|
|
29821
|
+
export declare type JiraAutodevStatusHistoryItem = {
|
|
29822
|
+
__typename?: 'JiraAutodevStatusHistoryItem';
|
|
29823
|
+
status?: Maybe<JiraAutodevStatus>;
|
|
29824
|
+
timestamp?: Maybe<Scalars['String']['output']>;
|
|
29825
|
+
workflowName?: Maybe<Scalars['String']['output']>;
|
|
29826
|
+
};
|
|
29827
|
+
export declare type JiraAutodevStatusHistoryItemConnection = {
|
|
29828
|
+
__typename?: 'JiraAutodevStatusHistoryItemConnection';
|
|
29829
|
+
edges?: Maybe<Array<Maybe<JiraAutodevStatusHistoryItemEdge>>>;
|
|
29830
|
+
nodes?: Maybe<Array<Maybe<JiraAutodevStatusHistoryItem>>>;
|
|
29831
|
+
pageInfo: PageInfo;
|
|
29832
|
+
};
|
|
29833
|
+
export declare type JiraAutodevStatusHistoryItemEdge = {
|
|
29834
|
+
__typename?: 'JiraAutodevStatusHistoryItemEdge';
|
|
29835
|
+
cursor: Scalars['String']['output'];
|
|
29836
|
+
node?: Maybe<JiraAutodevStatusHistoryItem>;
|
|
29837
|
+
};
|
|
29763
29838
|
export declare type JiraAutofixCreateJobPayload = Payload & {
|
|
29764
29839
|
__typename?: 'JiraAutofixCreateJobPayload';
|
|
29765
29840
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -29823,6 +29898,7 @@ export declare enum JiraBatchWindowPreference {
|
|
|
29823
29898
|
FifteenMinutes = "FIFTEEN_MINUTES",
|
|
29824
29899
|
FiveMinutes = "FIVE_MINUTES",
|
|
29825
29900
|
NoBatching = "NO_BATCHING",
|
|
29901
|
+
OncePerDay = "ONCE_PER_DAY",
|
|
29826
29902
|
OneDay = "ONE_DAY",
|
|
29827
29903
|
OneHour = "ONE_HOUR",
|
|
29828
29904
|
TenMinutes = "TEN_MINUTES",
|
|
@@ -29974,24 +30050,9 @@ export declare type JiraBulkTransitionEdge = {
|
|
|
29974
30050
|
cursor: Scalars['String']['output'];
|
|
29975
30051
|
node?: Maybe<JiraBulkTransition>;
|
|
29976
30052
|
};
|
|
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
30053
|
export declare type JiraBulkTransitionScreenLayout = Node & {
|
|
29994
30054
|
__typename?: 'JiraBulkTransitionScreenLayout';
|
|
30055
|
+
comment?: Maybe<JiraRichTextField>;
|
|
29995
30056
|
content?: Maybe<JiraScreenTabLayout>;
|
|
29996
30057
|
id: Scalars['ID']['output'];
|
|
29997
30058
|
issues: Array<JiraIssue>;
|
|
@@ -30004,16 +30065,6 @@ export declare type JiraBulkTransitionScreenLayoutIssuesToBeEditedArgs = {
|
|
|
30004
30065
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30005
30066
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30006
30067
|
};
|
|
30007
|
-
export declare type JiraBulkTransitionScreenResponse = {
|
|
30008
|
-
__typename?: 'JiraBulkTransitionScreenResponse';
|
|
30009
|
-
bulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenConnection>;
|
|
30010
|
-
};
|
|
30011
|
-
export declare type JiraBulkTransitionScreenResponseBulkTransitionsScreenArgs = {
|
|
30012
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
30013
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
30014
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30015
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30016
|
-
};
|
|
30017
30068
|
export declare type JiraBulkTransitionsInput = {
|
|
30018
30069
|
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
30019
30070
|
transitionId: Scalars['String']['input'];
|
|
@@ -31041,6 +31092,12 @@ export declare type JiraCreatePlanPayload = Payload & {
|
|
|
31041
31092
|
plan?: Maybe<JiraPlan>;
|
|
31042
31093
|
success: Scalars['Boolean']['output'];
|
|
31043
31094
|
};
|
|
31095
|
+
export declare type JiraCreateProjectCleanupRecommendationsPayload = Payload & {
|
|
31096
|
+
__typename?: 'JiraCreateProjectCleanupRecommendationsPayload';
|
|
31097
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31098
|
+
recommendationsCreated?: Maybe<Scalars['Long']['output']>;
|
|
31099
|
+
success: Scalars['Boolean']['output'];
|
|
31100
|
+
};
|
|
31044
31101
|
export declare type JiraCreateReleaseNoteConfluencePageInput = {
|
|
31045
31102
|
appLinkId?: InputMaybe<Scalars['ID']['input']>;
|
|
31046
31103
|
excludeIssueKey?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31839,6 +31896,18 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
31839
31896
|
Allow = "ALLOW",
|
|
31840
31897
|
Exclude = "EXCLUDE"
|
|
31841
31898
|
}
|
|
31899
|
+
export declare type JiraFieldSetPreferences = {
|
|
31900
|
+
__typename?: 'JiraFieldSetPreferences';
|
|
31901
|
+
width?: Maybe<Scalars['Int']['output']>;
|
|
31902
|
+
};
|
|
31903
|
+
export declare type JiraFieldSetPreferencesMutationInput = {
|
|
31904
|
+
nodes?: InputMaybe<Array<JiraUpdateFieldSetPreferencesInput>>;
|
|
31905
|
+
};
|
|
31906
|
+
export declare type JiraFieldSetPreferencesUpdatePayload = Payload & {
|
|
31907
|
+
__typename?: 'JiraFieldSetPreferencesUpdatePayload';
|
|
31908
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31909
|
+
success: Scalars['Boolean']['output'];
|
|
31910
|
+
};
|
|
31842
31911
|
export declare type JiraFieldSetsMutationInput = {
|
|
31843
31912
|
replaceFieldSetsInput?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
|
|
31844
31913
|
resetToDefaultFieldSets?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32460,7 +32529,6 @@ export declare type JiraIssue = Node & {
|
|
|
32460
32529
|
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
32461
32530
|
key: Scalars['String']['output'];
|
|
32462
32531
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
32463
|
-
linkedDesigns?: Maybe<GraphJiraDesignConnection>;
|
|
32464
32532
|
mediaReadToken?: Maybe<JiraMediaReadToken>;
|
|
32465
32533
|
mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
32466
32534
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
@@ -32565,10 +32633,6 @@ export declare type JiraIssueIssueLinksArgs = {
|
|
|
32565
32633
|
export declare type JiraIssueIssuePropertyByKeyArgs = {
|
|
32566
32634
|
key: Scalars['String']['input'];
|
|
32567
32635
|
};
|
|
32568
|
-
export declare type JiraIssueLinkedDesignsArgs = {
|
|
32569
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32570
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32571
|
-
};
|
|
32572
32636
|
export declare type JiraIssueMediaReadTokenArgs = {
|
|
32573
32637
|
maxTokenLength: Scalars['Int']['input'];
|
|
32574
32638
|
};
|
|
@@ -33347,6 +33411,7 @@ export declare type JiraIssueSearchFieldSet = {
|
|
|
33347
33411
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
33348
33412
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
33349
33413
|
fieldSetId?: Maybe<Scalars['String']['output']>;
|
|
33414
|
+
fieldSetPreferences?: Maybe<JiraFieldSetPreferences>;
|
|
33350
33415
|
fieldType?: Maybe<JiraFieldType>;
|
|
33351
33416
|
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
33352
33417
|
isSortable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -34664,6 +34729,7 @@ export declare type JiraMutation = {
|
|
|
34664
34729
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
34665
34730
|
createJwmOverview?: Maybe<JiraWorkManagementGiraCreateOverviewPayload>;
|
|
34666
34731
|
createLargeSolution?: Maybe<JiraCreateLargeSolutionPayload>;
|
|
34732
|
+
createProjectCleanupRecommendations?: Maybe<JiraCreateProjectCleanupRecommendationsPayload>;
|
|
34667
34733
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
34668
34734
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
34669
34735
|
createSafeGlobalData?: Maybe<JiraCreateSafeGlobalDataPayload>;
|
|
@@ -34773,6 +34839,7 @@ export declare type JiraMutation = {
|
|
|
34773
34839
|
updateTeamField?: Maybe<JiraTeamFieldPayload>;
|
|
34774
34840
|
updateTimeTrackingField?: Maybe<JiraTimeTrackingFieldPayload>;
|
|
34775
34841
|
updateUrlField?: Maybe<JiraUrlFieldPayload>;
|
|
34842
|
+
updateUserFieldSetPreferences?: Maybe<JiraFieldSetPreferencesUpdatePayload>;
|
|
34776
34843
|
updateUserNavigationConfiguration?: Maybe<JiraUserNavigationConfigurationPayload>;
|
|
34777
34844
|
updateVersionArchivedStatus?: Maybe<JiraUpdateVersionPayload>;
|
|
34778
34845
|
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
@@ -34855,6 +34922,9 @@ export declare type JiraMutationCreateJwmOverviewArgs = {
|
|
|
34855
34922
|
export declare type JiraMutationCreateLargeSolutionArgs = {
|
|
34856
34923
|
input: JiraCreateLargeSolutionInput;
|
|
34857
34924
|
};
|
|
34925
|
+
export declare type JiraMutationCreateProjectCleanupRecommendationsArgs = {
|
|
34926
|
+
cloudId: Scalars['ID']['input'];
|
|
34927
|
+
};
|
|
34858
34928
|
export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
34859
34929
|
input: JiraCreateShortcutInput;
|
|
34860
34930
|
};
|
|
@@ -35193,6 +35263,10 @@ export declare type JiraMutationUpdateTimeTrackingFieldArgs = {
|
|
|
35193
35263
|
export declare type JiraMutationUpdateUrlFieldArgs = {
|
|
35194
35264
|
input: JiraUpdateUrlFieldInput;
|
|
35195
35265
|
};
|
|
35266
|
+
export declare type JiraMutationUpdateUserFieldSetPreferencesArgs = {
|
|
35267
|
+
cloudId: Scalars['ID']['input'];
|
|
35268
|
+
fieldSetPreferencesInput: JiraFieldSetPreferencesMutationInput;
|
|
35269
|
+
};
|
|
35196
35270
|
export declare type JiraMutationUpdateUserNavigationConfigurationArgs = {
|
|
35197
35271
|
input: JiraUpdateUserNavigationConfigurationInput;
|
|
35198
35272
|
};
|
|
@@ -35341,11 +35415,14 @@ export declare type JiraNotificationGlobalPreference = {
|
|
|
35341
35415
|
export declare type JiraNotificationOptions = {
|
|
35342
35416
|
__typename?: 'JiraNotificationOptions';
|
|
35343
35417
|
batchWindow?: Maybe<JiraBatchWindowPreference>;
|
|
35418
|
+
dailyBatchLocalTime?: Maybe<Scalars['String']['output']>;
|
|
35344
35419
|
emailMimeType?: Maybe<JiraEmailMimeType>;
|
|
35345
35420
|
id: Scalars['ID']['output'];
|
|
35346
35421
|
isEmailMimeTypeEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
35347
35422
|
isEmailNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
35348
35423
|
notifyOwnChangesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
35424
|
+
notifyWhenRoleAssigneeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
35425
|
+
notifyWhenRoleReporterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
35349
35426
|
};
|
|
35350
35427
|
export declare type JiraNotificationPreference = {
|
|
35351
35428
|
__typename?: 'JiraNotificationPreference';
|
|
@@ -36489,6 +36566,39 @@ export declare type JiraProjectCategoryEdge = {
|
|
|
36489
36566
|
export declare type JiraProjectCategoryFilterInput = {
|
|
36490
36567
|
categoryIds?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
36491
36568
|
};
|
|
36569
|
+
export declare type JiraProjectCleanupRecommendation = {
|
|
36570
|
+
__typename?: 'JiraProjectCleanupRecommendation';
|
|
36571
|
+
executedById?: Maybe<User>;
|
|
36572
|
+
executedGroupId?: Maybe<Scalars['String']['output']>;
|
|
36573
|
+
id: Scalars['ID']['output'];
|
|
36574
|
+
project?: Maybe<JiraProject>;
|
|
36575
|
+
projectCleanupAction?: Maybe<JiraProjectCleanupRecommendationAction>;
|
|
36576
|
+
recommendationId?: Maybe<Scalars['Long']['output']>;
|
|
36577
|
+
staleSince?: Maybe<Scalars['DateTime']['output']>;
|
|
36578
|
+
status?: Maybe<JiraResourceUsageRecommendationStatus>;
|
|
36579
|
+
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
36580
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
36581
|
+
};
|
|
36582
|
+
export declare enum JiraProjectCleanupRecommendationAction {
|
|
36583
|
+
Archive = "ARCHIVE",
|
|
36584
|
+
Trash = "TRASH"
|
|
36585
|
+
}
|
|
36586
|
+
export declare type JiraProjectCleanupRecommendationConnection = {
|
|
36587
|
+
__typename?: 'JiraProjectCleanupRecommendationConnection';
|
|
36588
|
+
edges?: Maybe<Array<Maybe<JiraProjectCleanupRecommendationEdge>>>;
|
|
36589
|
+
pageInfo: PageInfo;
|
|
36590
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
36591
|
+
};
|
|
36592
|
+
export declare type JiraProjectCleanupRecommendationEdge = {
|
|
36593
|
+
__typename?: 'JiraProjectCleanupRecommendationEdge';
|
|
36594
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
36595
|
+
node?: Maybe<JiraProjectCleanupRecommendation>;
|
|
36596
|
+
};
|
|
36597
|
+
export declare enum JiraProjectCleanupRecommendationStaleSince {
|
|
36598
|
+
OneYear = "ONE_YEAR",
|
|
36599
|
+
SixMonths = "SIX_MONTHS",
|
|
36600
|
+
TwoYears = "TWO_YEARS"
|
|
36601
|
+
}
|
|
36492
36602
|
export declare type JiraProjectConnection = HasPageInfo & HasTotal & {
|
|
36493
36603
|
__typename?: 'JiraProjectConnection';
|
|
36494
36604
|
edges?: Maybe<Array<Maybe<JiraProjectEdge>>>;
|
|
@@ -36688,7 +36798,7 @@ export declare type JiraProjectRoleActorLogTableEntryEdge = {
|
|
|
36688
36798
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
36689
36799
|
node?: Maybe<JiraProjectRoleActorLogTableEntry>;
|
|
36690
36800
|
};
|
|
36691
|
-
export declare type JiraProjectRoleActorRecommendation =
|
|
36801
|
+
export declare type JiraProjectRoleActorRecommendation = {
|
|
36692
36802
|
__typename?: 'JiraProjectRoleActorRecommendation';
|
|
36693
36803
|
executedBy?: Maybe<User>;
|
|
36694
36804
|
executedGroupId?: Maybe<Scalars['String']['output']>;
|
|
@@ -36881,7 +36991,6 @@ export declare type JiraQuery = {
|
|
|
36881
36991
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
36882
36992
|
issueSearchViewResult?: Maybe<JiraIssueSearchViewResult>;
|
|
36883
36993
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
36884
|
-
jiraBulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenResponse>;
|
|
36885
36994
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
36886
36995
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
36887
36996
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
@@ -36926,6 +37035,7 @@ export declare type JiraQuery = {
|
|
|
36926
37035
|
permission?: Maybe<JiraPermission>;
|
|
36927
37036
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
36928
37037
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
37038
|
+
projectCleanupRecommendations?: Maybe<JiraProjectCleanupRecommendationConnection>;
|
|
36929
37039
|
projectListViewTemplates?: Maybe<JiraProjectListViewTemplateConnection>;
|
|
36930
37040
|
projectRequestTypesFromTemplate?: Maybe<Array<JiraServiceManagementRequestTypeFromTemplate>>;
|
|
36931
37041
|
projectRoleActorLogTableEntries?: Maybe<JiraProjectRoleActorLogTableEntryConnection>;
|
|
@@ -37319,9 +37429,6 @@ export declare type JiraQueryIssuesByKeyArgs = {
|
|
|
37319
37429
|
cloudId: Scalars['ID']['input'];
|
|
37320
37430
|
keys: Array<Scalars['String']['input']>;
|
|
37321
37431
|
};
|
|
37322
|
-
export declare type JiraQueryJiraBulkTransitionsScreenArgs = {
|
|
37323
|
-
input: Array<JiraBulkTransitionScreenInput>;
|
|
37324
|
-
};
|
|
37325
37432
|
export declare type JiraQueryJiraBulkTransitionsScreenDetailsArgs = {
|
|
37326
37433
|
issueIds: Array<Scalars['ID']['input']>;
|
|
37327
37434
|
transitionId: Scalars['Int']['input'];
|
|
@@ -37518,6 +37625,16 @@ export declare type JiraQueryPermissionSchemeGrantsArgs = {
|
|
|
37518
37625
|
export declare type JiraQueryPostIncidentReviewLinksByIdsArgs = {
|
|
37519
37626
|
ids: Array<Scalars['ID']['input']>;
|
|
37520
37627
|
};
|
|
37628
|
+
export declare type JiraQueryProjectCleanupRecommendationsArgs = {
|
|
37629
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37630
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
37631
|
+
cloudId: Scalars['ID']['input'];
|
|
37632
|
+
emptyProjects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37633
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37634
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
37635
|
+
staleSince?: InputMaybe<JiraProjectCleanupRecommendationStaleSince>;
|
|
37636
|
+
statuses?: InputMaybe<Array<InputMaybe<JiraResourceUsageRecommendationStatus>>>;
|
|
37637
|
+
};
|
|
37521
37638
|
export declare type JiraQueryProjectListViewTemplatesArgs = {
|
|
37522
37639
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37523
37640
|
cloudId: Scalars['ID']['input'];
|
|
@@ -37549,6 +37666,7 @@ export declare type JiraQueryRecentItemsArgs = {
|
|
|
37549
37666
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37550
37667
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
37551
37668
|
cloudId: Scalars['ID']['input'];
|
|
37669
|
+
filter?: InputMaybe<JiraRecentItemsFilter>;
|
|
37552
37670
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37553
37671
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
37554
37672
|
types: Array<JiraSearchableEntityType>;
|
|
@@ -37761,9 +37879,14 @@ export declare type JiraRankNavigationItemPayloadNavigationItemsArgs = {
|
|
|
37761
37879
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37762
37880
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37763
37881
|
};
|
|
37882
|
+
export declare type JiraRecentItemsFilter = {
|
|
37883
|
+
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
37884
|
+
types?: InputMaybe<Array<JiraSearchableEntityType>>;
|
|
37885
|
+
};
|
|
37764
37886
|
export declare enum JiraRecommendationCategory {
|
|
37765
37887
|
CustomField = "CUSTOM_FIELD",
|
|
37766
37888
|
IssueArchival = "ISSUE_ARCHIVAL",
|
|
37889
|
+
ProjectCleanup = "PROJECT_CLEANUP",
|
|
37767
37890
|
ProjectRoleActor = "PROJECT_ROLE_ACTOR"
|
|
37768
37891
|
}
|
|
37769
37892
|
export declare type JiraReleaseNotesConfiguration = {
|
|
@@ -38053,7 +38176,7 @@ export declare type JiraResolutionFieldPayload = Payload & {
|
|
|
38053
38176
|
export declare type JiraResolutionInput = {
|
|
38054
38177
|
resolutionId: Scalars['ID']['input'];
|
|
38055
38178
|
};
|
|
38056
|
-
export declare type JiraResourceUsageCustomFieldRecommendation =
|
|
38179
|
+
export declare type JiraResourceUsageCustomFieldRecommendation = {
|
|
38057
38180
|
__typename?: 'JiraResourceUsageCustomFieldRecommendation';
|
|
38058
38181
|
customFieldAction: JiraResourceUsageCustomFieldRecommendationAction;
|
|
38059
38182
|
customFieldDescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -38080,7 +38203,7 @@ export declare type JiraResourceUsageCustomFieldRecommendationEdge = {
|
|
|
38080
38203
|
cursor: Scalars['String']['output'];
|
|
38081
38204
|
node?: Maybe<JiraResourceUsageCustomFieldRecommendation>;
|
|
38082
38205
|
};
|
|
38083
|
-
export declare type JiraResourceUsageMetric =
|
|
38206
|
+
export declare type JiraResourceUsageMetric = {
|
|
38084
38207
|
__typename?: 'JiraResourceUsageMetric';
|
|
38085
38208
|
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
38086
38209
|
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
@@ -40403,6 +40526,10 @@ export declare type JiraUpdateDateTimeFieldInput = {
|
|
|
40403
40526
|
id: Scalars['ID']['input'];
|
|
40404
40527
|
operation: JiraDateTimeFieldOperationInput;
|
|
40405
40528
|
};
|
|
40529
|
+
export declare type JiraUpdateFieldSetPreferencesInput = {
|
|
40530
|
+
fieldSetId: Scalars['String']['input'];
|
|
40531
|
+
width?: InputMaybe<Scalars['Int']['input']>;
|
|
40532
|
+
};
|
|
40406
40533
|
export declare type JiraUpdateForgeObjectFieldInput = {
|
|
40407
40534
|
id: Scalars['ID']['input'];
|
|
40408
40535
|
operation: JiraForgeObjectFieldOperationInput;
|
|
@@ -40456,9 +40583,12 @@ export declare type JiraUpdateMultipleVersionPickerFieldInput = {
|
|
|
40456
40583
|
};
|
|
40457
40584
|
export declare type JiraUpdateNotificationOptionsInput = {
|
|
40458
40585
|
batchWindow?: InputMaybe<JiraBatchWindowPreference>;
|
|
40586
|
+
dailyBatchLocalTime?: InputMaybe<Scalars['String']['input']>;
|
|
40459
40587
|
emailMimeType?: InputMaybe<JiraEmailMimeType>;
|
|
40460
40588
|
isEmailNotificationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40461
40589
|
notifyOwnChangesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40590
|
+
notifyWhenRoleAssigneeEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40591
|
+
notifyWhenRoleReporterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40462
40592
|
};
|
|
40463
40593
|
export declare type JiraUpdateNotificationOptionsPayload = Payload & {
|
|
40464
40594
|
__typename?: 'JiraUpdateNotificationOptionsPayload';
|
|
@@ -41923,6 +42053,17 @@ export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
|
|
|
41923
42053
|
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
41924
42054
|
timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
41925
42055
|
};
|
|
42056
|
+
export declare type JsmChatAddConversationInteractionInput = {
|
|
42057
|
+
authorId: Scalars['String']['input'];
|
|
42058
|
+
interactionType: JsmChatInteractionType;
|
|
42059
|
+
jiraFieldId?: InputMaybe<Scalars['String']['input']>;
|
|
42060
|
+
selectedValue: Scalars['String']['input'];
|
|
42061
|
+
};
|
|
42062
|
+
export declare type JsmChatAddConversationInteractionPayload = Payload & {
|
|
42063
|
+
__typename?: 'JsmChatAddConversationInteractionPayload';
|
|
42064
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42065
|
+
success: Scalars['Boolean']['output'];
|
|
42066
|
+
};
|
|
41926
42067
|
export declare enum JsmChatChannelExperienceId {
|
|
41927
42068
|
Helpcenter = "HELPCENTER",
|
|
41928
42069
|
Widget = "WIDGET"
|
|
@@ -41985,11 +42126,31 @@ export declare type JsmChatCreateCommentOutput = {
|
|
|
41985
42126
|
export declare type JsmChatCreateConversationInput = {
|
|
41986
42127
|
channelExperienceId: JsmChatChannelExperienceId;
|
|
41987
42128
|
conversationContextAri: Scalars['ID']['input'];
|
|
41988
|
-
|
|
42129
|
+
isTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42130
|
+
};
|
|
42131
|
+
export declare type JsmChatCreateConversationMessageInput = {
|
|
42132
|
+
authorId: Scalars['String']['input'];
|
|
42133
|
+
message: Scalars['String']['input'];
|
|
42134
|
+
};
|
|
42135
|
+
export declare type JsmChatCreateConversationMessagePayload = Payload & {
|
|
42136
|
+
__typename?: 'JsmChatCreateConversationMessagePayload';
|
|
42137
|
+
createConversationMessageResponse?: Maybe<JsmChatCreateConversationMessageResponse>;
|
|
42138
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42139
|
+
success: Scalars['Boolean']['output'];
|
|
41989
42140
|
};
|
|
41990
|
-
export declare type
|
|
41991
|
-
__typename?: '
|
|
41992
|
-
|
|
42141
|
+
export declare type JsmChatCreateConversationMessageResponse = {
|
|
42142
|
+
__typename?: 'JsmChatCreateConversationMessageResponse';
|
|
42143
|
+
id: Scalars['ID']['output'];
|
|
42144
|
+
};
|
|
42145
|
+
export declare type JsmChatCreateConversationPayload = Payload & {
|
|
42146
|
+
__typename?: 'JsmChatCreateConversationPayload';
|
|
42147
|
+
createConversationResponse?: Maybe<JsmChatCreateConversationResponse>;
|
|
42148
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42149
|
+
success: Scalars['Boolean']['output'];
|
|
42150
|
+
};
|
|
42151
|
+
export declare type JsmChatCreateConversationResponse = {
|
|
42152
|
+
__typename?: 'JsmChatCreateConversationResponse';
|
|
42153
|
+
id: Scalars['ID']['output'];
|
|
41993
42154
|
};
|
|
41994
42155
|
export declare type JsmChatDisconnectJiraProjectInput = {
|
|
41995
42156
|
activationId: Scalars['ID']['input'];
|
|
@@ -42019,6 +42180,11 @@ export declare type JsmChatInitializeNativeConfigResponse = {
|
|
|
42019
42180
|
connectedApp?: Maybe<JsmChatConnectedApps>;
|
|
42020
42181
|
nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
42021
42182
|
};
|
|
42183
|
+
export declare enum JsmChatInteractionType {
|
|
42184
|
+
Buttons = "BUTTONS",
|
|
42185
|
+
Dropdown = "DROPDOWN",
|
|
42186
|
+
JiraField = "JIRA_FIELD"
|
|
42187
|
+
}
|
|
42022
42188
|
export declare enum JsmChatMessageSource {
|
|
42023
42189
|
Email = "EMAIL"
|
|
42024
42190
|
}
|
|
@@ -42059,9 +42225,11 @@ export declare type JsmChatMsTeamsUpdatedProjectSettings = {
|
|
|
42059
42225
|
};
|
|
42060
42226
|
export declare type JsmChatMutation = {
|
|
42061
42227
|
__typename?: 'JsmChatMutation';
|
|
42228
|
+
addConversationInteraction?: Maybe<JsmChatAddConversationInteractionPayload>;
|
|
42062
42229
|
createChannel: JsmChatCreateChannelOutput;
|
|
42063
42230
|
createComment?: Maybe<JsmChatCreateCommentOutput>;
|
|
42064
|
-
createConversation
|
|
42231
|
+
createConversation?: Maybe<JsmChatCreateConversationPayload>;
|
|
42232
|
+
createConversationMessage?: Maybe<JsmChatCreateConversationMessagePayload>;
|
|
42065
42233
|
disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
42066
42234
|
disconnectMsTeamsJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
42067
42235
|
updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
|
|
@@ -42069,6 +42237,11 @@ export declare type JsmChatMutation = {
|
|
|
42069
42237
|
updateMsTeamsProjectSettings: JsmChatUpdateMsTeamsProjectSettingsOutput;
|
|
42070
42238
|
updateProjectSettings?: Maybe<JsmChatUpdateProjectSettingsOutput>;
|
|
42071
42239
|
};
|
|
42240
|
+
export declare type JsmChatMutationAddConversationInteractionArgs = {
|
|
42241
|
+
conversationId: Scalars['ID']['input'];
|
|
42242
|
+
input: JsmChatAddConversationInteractionInput;
|
|
42243
|
+
workspaceAri: Scalars['ID']['input'];
|
|
42244
|
+
};
|
|
42072
42245
|
export declare type JsmChatMutationCreateChannelArgs = {
|
|
42073
42246
|
input?: InputMaybe<JsmChatCreateChannelInput>;
|
|
42074
42247
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -42079,7 +42252,12 @@ export declare type JsmChatMutationCreateCommentArgs = {
|
|
|
42079
42252
|
workspaceAri: Scalars['ID']['input'];
|
|
42080
42253
|
};
|
|
42081
42254
|
export declare type JsmChatMutationCreateConversationArgs = {
|
|
42082
|
-
input
|
|
42255
|
+
input: JsmChatCreateConversationInput;
|
|
42256
|
+
workspaceAri: Scalars['ID']['input'];
|
|
42257
|
+
};
|
|
42258
|
+
export declare type JsmChatMutationCreateConversationMessageArgs = {
|
|
42259
|
+
conversationId: Scalars['ID']['input'];
|
|
42260
|
+
input: JsmChatCreateConversationMessageInput;
|
|
42083
42261
|
workspaceAri: Scalars['ID']['input'];
|
|
42084
42262
|
};
|
|
42085
42263
|
export declare type JsmChatMutationDisconnectJiraProjectArgs = {
|
|
@@ -42268,6 +42446,8 @@ export declare type JswCardColor = Node & {
|
|
|
42268
42446
|
color: Scalars['String']['output'];
|
|
42269
42447
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
42270
42448
|
id: Scalars['ID']['output'];
|
|
42449
|
+
isGlobalColor?: Maybe<Scalars['Boolean']['output']>;
|
|
42450
|
+
isUsed?: Maybe<Scalars['Boolean']['output']>;
|
|
42271
42451
|
strategy?: Maybe<Scalars['String']['output']>;
|
|
42272
42452
|
value?: Maybe<Scalars['String']['output']>;
|
|
42273
42453
|
};
|
|
@@ -42318,6 +42498,24 @@ export declare type JswCurrentCardLayoutField = Node & {
|
|
|
42318
42498
|
isValid?: Maybe<Scalars['Boolean']['output']>;
|
|
42319
42499
|
name?: Maybe<Scalars['String']['output']>;
|
|
42320
42500
|
};
|
|
42501
|
+
export declare type JswCustomSwimlane = Node & {
|
|
42502
|
+
__typename?: 'JswCustomSwimlane';
|
|
42503
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
42504
|
+
id: Scalars['ID']['output'];
|
|
42505
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
42506
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
42507
|
+
query?: Maybe<Scalars['String']['output']>;
|
|
42508
|
+
};
|
|
42509
|
+
export declare type JswCustomSwimlaneConnection = {
|
|
42510
|
+
__typename?: 'JswCustomSwimlaneConnection';
|
|
42511
|
+
edges?: Maybe<Array<Maybe<JswCustomSwimlaneEdge>>>;
|
|
42512
|
+
pageInfo: PageInfo;
|
|
42513
|
+
};
|
|
42514
|
+
export declare type JswCustomSwimlaneEdge = {
|
|
42515
|
+
__typename?: 'JswCustomSwimlaneEdge';
|
|
42516
|
+
cursor: Scalars['String']['output'];
|
|
42517
|
+
node?: Maybe<JswCustomSwimlane>;
|
|
42518
|
+
};
|
|
42321
42519
|
export declare type JswMapOfStringToString = {
|
|
42322
42520
|
__typename?: 'JswMapOfStringToString';
|
|
42323
42521
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -43134,7 +43332,7 @@ export declare enum MarketplacePartnerSupportHolidayFrequency {
|
|
|
43134
43332
|
export declare type MarketplacePartnerTier = {
|
|
43135
43333
|
__typename?: 'MarketplacePartnerTier';
|
|
43136
43334
|
type: MarketplacePartnerTierType;
|
|
43137
|
-
updatedDate
|
|
43335
|
+
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
43138
43336
|
};
|
|
43139
43337
|
export declare enum MarketplacePartnerTierType {
|
|
43140
43338
|
Gold = "GOLD",
|
|
@@ -43541,7 +43739,7 @@ export declare enum MembershipState {
|
|
|
43541
43739
|
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
43542
43740
|
}
|
|
43543
43741
|
export declare type MercuryAddWatcherToFocusAreaInput = {
|
|
43544
|
-
cloudId
|
|
43742
|
+
cloudId: Scalars['ID']['input'];
|
|
43545
43743
|
focusAreaId: Scalars['ID']['input'];
|
|
43546
43744
|
userId: Scalars['ID']['input'];
|
|
43547
43745
|
};
|
|
@@ -43570,8 +43768,31 @@ export declare enum MercuryAggregatedHeadcountSortField {
|
|
|
43570
43768
|
OpenPositions = "OPEN_POSITIONS",
|
|
43571
43769
|
TotalHeadcount = "TOTAL_HEADCOUNT"
|
|
43572
43770
|
}
|
|
43771
|
+
export declare type MercuryAggregatedPortfolioStatusCount = {
|
|
43772
|
+
__typename?: 'MercuryAggregatedPortfolioStatusCount';
|
|
43773
|
+
children: MercuryFocusAreaStatusCount;
|
|
43774
|
+
};
|
|
43775
|
+
export declare type MercuryComment = Node & {
|
|
43776
|
+
__typename?: 'MercuryComment';
|
|
43777
|
+
ari: Scalars['String']['output'];
|
|
43778
|
+
commentText?: Maybe<Scalars['String']['output']>;
|
|
43779
|
+
createdDate: Scalars['String']['output'];
|
|
43780
|
+
id: Scalars['ID']['output'];
|
|
43781
|
+
updatedDate: Scalars['String']['output'];
|
|
43782
|
+
};
|
|
43783
|
+
export declare type MercuryCommentConnection = {
|
|
43784
|
+
__typename?: 'MercuryCommentConnection';
|
|
43785
|
+
edges?: Maybe<Array<Maybe<MercuryCommentEdge>>>;
|
|
43786
|
+
pageInfo: PageInfo;
|
|
43787
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43788
|
+
};
|
|
43789
|
+
export declare type MercuryCommentEdge = {
|
|
43790
|
+
__typename?: 'MercuryCommentEdge';
|
|
43791
|
+
cursor: Scalars['String']['output'];
|
|
43792
|
+
node?: Maybe<MercuryComment>;
|
|
43793
|
+
};
|
|
43573
43794
|
export declare type MercuryCreateFocusAreaInput = {
|
|
43574
|
-
cloudId
|
|
43795
|
+
cloudId: Scalars['ID']['input'];
|
|
43575
43796
|
focusAreaTypeId: Scalars['ID']['input'];
|
|
43576
43797
|
name: Scalars['String']['input'];
|
|
43577
43798
|
parentFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -43582,42 +43803,32 @@ export declare type MercuryCreateFocusAreaPayload = Payload & {
|
|
|
43582
43803
|
errors?: Maybe<Array<MutationError>>;
|
|
43583
43804
|
success: Scalars['Boolean']['output'];
|
|
43584
43805
|
};
|
|
43585
|
-
export declare type
|
|
43586
|
-
|
|
43587
|
-
|
|
43588
|
-
|
|
43589
|
-
|
|
43590
|
-
|
|
43591
|
-
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
43592
|
-
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
43593
|
-
targetDate?: InputMaybe<MercuryGoalTargetDateInput>;
|
|
43806
|
+
export declare type MercuryCreateFocusAreaStatusUpdateInput = {
|
|
43807
|
+
cloudId: Scalars['ID']['input'];
|
|
43808
|
+
focusAreaId: Scalars['ID']['input'];
|
|
43809
|
+
newTargetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
|
|
43810
|
+
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
43811
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
43594
43812
|
};
|
|
43595
|
-
export declare type
|
|
43596
|
-
__typename?: '
|
|
43813
|
+
export declare type MercuryCreateFocusAreaStatusUpdatePayload = Payload & {
|
|
43814
|
+
__typename?: 'MercuryCreateFocusAreaStatusUpdatePayload';
|
|
43815
|
+
createdFocusAreaUpdateStatus?: Maybe<MercuryFocusAreaStatusUpdate>;
|
|
43597
43816
|
errors?: Maybe<Array<MutationError>>;
|
|
43598
|
-
goal?: Maybe<MercuryGoal>;
|
|
43599
43817
|
success: Scalars['Boolean']['output'];
|
|
43600
43818
|
};
|
|
43601
|
-
export declare type
|
|
43602
|
-
|
|
43603
|
-
|
|
43604
|
-
|
|
43605
|
-
metricValue?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
43606
|
-
phase?: InputMaybe<MercuryGoalPhase>;
|
|
43607
|
-
score?: InputMaybe<Scalars['Int']['input']>;
|
|
43608
|
-
summary?: InputMaybe<Scalars['String']['input']>;
|
|
43609
|
-
targetDate?: InputMaybe<Scalars['Date']['input']>;
|
|
43610
|
-
targetDateType?: InputMaybe<MercuryGoalTargetDateType>;
|
|
43611
|
-
updateNotes?: InputMaybe<Array<InputMaybe<MercuryUpdateNoteInput>>>;
|
|
43819
|
+
export declare type MercuryCreatePortfolioFocusAreasInput = {
|
|
43820
|
+
cloudId: Scalars['ID']['input'];
|
|
43821
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
43822
|
+
name: Scalars['String']['input'];
|
|
43612
43823
|
};
|
|
43613
|
-
export declare type
|
|
43614
|
-
__typename?: '
|
|
43824
|
+
export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
43825
|
+
__typename?: 'MercuryCreatePortfolioPayload';
|
|
43826
|
+
createdPortfolio?: Maybe<MercuryPortfolio>;
|
|
43615
43827
|
errors?: Maybe<Array<MutationError>>;
|
|
43616
|
-
goalUpdate?: Maybe<MercuryGoalUpdate>;
|
|
43617
43828
|
success: Scalars['Boolean']['output'];
|
|
43618
43829
|
};
|
|
43619
43830
|
export declare type MercuryDeleteFocusAreaGoalLinkInput = {
|
|
43620
|
-
cloudId
|
|
43831
|
+
cloudId: Scalars['ID']['input'];
|
|
43621
43832
|
id: Scalars['ID']['input'];
|
|
43622
43833
|
};
|
|
43623
43834
|
export declare type MercuryDeleteFocusAreaGoalLinkPayload = Payload & {
|
|
@@ -43626,11 +43837,11 @@ export declare type MercuryDeleteFocusAreaGoalLinkPayload = Payload & {
|
|
|
43626
43837
|
success: Scalars['Boolean']['output'];
|
|
43627
43838
|
};
|
|
43628
43839
|
export declare type MercuryDeleteFocusAreaInput = {
|
|
43629
|
-
cloudId
|
|
43840
|
+
cloudId: Scalars['ID']['input'];
|
|
43630
43841
|
id: Scalars['ID']['input'];
|
|
43631
43842
|
};
|
|
43632
43843
|
export declare type MercuryDeleteFocusAreaLinkInput = {
|
|
43633
|
-
cloudId
|
|
43844
|
+
cloudId: Scalars['ID']['input'];
|
|
43634
43845
|
id: Scalars['ID']['input'];
|
|
43635
43846
|
};
|
|
43636
43847
|
export declare type MercuryDeleteFocusAreaLinkPayload = Payload & {
|
|
@@ -43643,8 +43854,17 @@ export declare type MercuryDeleteFocusAreaPayload = Payload & {
|
|
|
43643
43854
|
errors?: Maybe<Array<MutationError>>;
|
|
43644
43855
|
success: Scalars['Boolean']['output'];
|
|
43645
43856
|
};
|
|
43857
|
+
export declare type MercuryDeleteFocusAreaStatusUpdateInput = {
|
|
43858
|
+
cloudId: Scalars['ID']['input'];
|
|
43859
|
+
id: Scalars['ID']['input'];
|
|
43860
|
+
};
|
|
43861
|
+
export declare type MercuryDeleteFocusAreaStatusUpdatePayload = Payload & {
|
|
43862
|
+
__typename?: 'MercuryDeleteFocusAreaStatusUpdatePayload';
|
|
43863
|
+
errors?: Maybe<Array<MutationError>>;
|
|
43864
|
+
success: Scalars['Boolean']['output'];
|
|
43865
|
+
};
|
|
43646
43866
|
export declare type MercuryDeletePortfolioFocusAreaLinkInput = {
|
|
43647
|
-
cloudId
|
|
43867
|
+
cloudId: Scalars['ID']['input'];
|
|
43648
43868
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
43649
43869
|
portfolioId: Scalars['ID']['input'];
|
|
43650
43870
|
};
|
|
@@ -43653,20 +43873,13 @@ export declare type MercuryDeletePortfolioFocusAreaLinkPayload = Payload & {
|
|
|
43653
43873
|
errors?: Maybe<Array<MutationError>>;
|
|
43654
43874
|
success: Scalars['Boolean']['output'];
|
|
43655
43875
|
};
|
|
43656
|
-
export declare type
|
|
43657
|
-
|
|
43658
|
-
|
|
43659
|
-
goalStatus?: InputMaybe<MercuryGoalStatus>;
|
|
43660
|
-
metricTarget?: InputMaybe<MercuryMetricTargetInput>;
|
|
43661
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
43662
|
-
owner?: InputMaybe<Scalars['String']['input']>;
|
|
43663
|
-
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
43664
|
-
targetDate?: InputMaybe<MercuryGoalTargetDateInput>;
|
|
43876
|
+
export declare type MercuryDeletePortfolioInput = {
|
|
43877
|
+
cloudId: Scalars['ID']['input'];
|
|
43878
|
+
id: Scalars['ID']['input'];
|
|
43665
43879
|
};
|
|
43666
|
-
export declare type
|
|
43667
|
-
__typename?: '
|
|
43880
|
+
export declare type MercuryDeletePortfolioPayload = Payload & {
|
|
43881
|
+
__typename?: 'MercuryDeletePortfolioPayload';
|
|
43668
43882
|
errors?: Maybe<Array<MutationError>>;
|
|
43669
|
-
goal?: Maybe<MercuryGoal>;
|
|
43670
43883
|
success: Scalars['Boolean']['output'];
|
|
43671
43884
|
};
|
|
43672
43885
|
export declare type MercuryFocusArea = Node & {
|
|
@@ -43784,6 +43997,17 @@ export declare type MercuryFocusAreaStatus = {
|
|
|
43784
43997
|
key: Scalars['String']['output'];
|
|
43785
43998
|
order: Scalars['Int']['output'];
|
|
43786
43999
|
};
|
|
44000
|
+
export declare type MercuryFocusAreaStatusCount = {
|
|
44001
|
+
__typename?: 'MercuryFocusAreaStatusCount';
|
|
44002
|
+
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
44003
|
+
completed?: Maybe<Scalars['Int']['output']>;
|
|
44004
|
+
inProgress?: Maybe<Scalars['Int']['output']>;
|
|
44005
|
+
offTrack?: Maybe<Scalars['Int']['output']>;
|
|
44006
|
+
onTrack?: Maybe<Scalars['Int']['output']>;
|
|
44007
|
+
paused?: Maybe<Scalars['Int']['output']>;
|
|
44008
|
+
pending?: Maybe<Scalars['Int']['output']>;
|
|
44009
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
44010
|
+
};
|
|
43787
44011
|
export declare type MercuryFocusAreaStatusTransition = {
|
|
43788
44012
|
__typename?: 'MercuryFocusAreaStatusTransition';
|
|
43789
44013
|
health?: Maybe<MercuryFocusAreaHealth>;
|
|
@@ -43794,6 +44018,30 @@ export declare type MercuryFocusAreaStatusTransitions = {
|
|
|
43794
44018
|
__typename?: 'MercuryFocusAreaStatusTransitions';
|
|
43795
44019
|
available: Array<MercuryFocusAreaStatusTransition>;
|
|
43796
44020
|
};
|
|
44021
|
+
export declare type MercuryFocusAreaStatusUpdate = {
|
|
44022
|
+
__typename?: 'MercuryFocusAreaStatusUpdate';
|
|
44023
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
44024
|
+
comments?: Maybe<MercuryCommentConnection>;
|
|
44025
|
+
createdDate: Scalars['String']['output'];
|
|
44026
|
+
focusAreaId: Scalars['ID']['output'];
|
|
44027
|
+
id: Scalars['ID']['output'];
|
|
44028
|
+
newHealth?: Maybe<MercuryFocusAreaHealth>;
|
|
44029
|
+
newStatus?: Maybe<MercuryFocusAreaStatus>;
|
|
44030
|
+
newTargetDate?: Maybe<MercuryTargetDate>;
|
|
44031
|
+
previousHealth?: Maybe<MercuryFocusAreaHealth>;
|
|
44032
|
+
previousStatus?: Maybe<MercuryFocusAreaStatus>;
|
|
44033
|
+
previousTargetDate?: Maybe<MercuryTargetDate>;
|
|
44034
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
44035
|
+
updatedDate: Scalars['String']['output'];
|
|
44036
|
+
};
|
|
44037
|
+
export declare type MercuryFocusAreaStatusUpdateCommentsArgs = {
|
|
44038
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
44039
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44040
|
+
};
|
|
44041
|
+
export declare type MercuryFocusAreaTargetDateInput = {
|
|
44042
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
44043
|
+
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
44044
|
+
};
|
|
43797
44045
|
export declare type MercuryFocusAreaTeamAllocationAggregation = Node & {
|
|
43798
44046
|
__typename?: 'MercuryFocusAreaTeamAllocationAggregation';
|
|
43799
44047
|
filledPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -43829,65 +44077,12 @@ export declare type MercuryFocusAreaType = {
|
|
|
43829
44077
|
id: Scalars['ID']['output'];
|
|
43830
44078
|
name: Scalars['String']['output'];
|
|
43831
44079
|
};
|
|
43832
|
-
export declare type MercuryGoal = {
|
|
43833
|
-
__typename?: 'MercuryGoal';
|
|
43834
|
-
atlasGoal?: Maybe<TownsquareGoal>;
|
|
43835
|
-
atlasGoalAri: Scalars['String']['output'];
|
|
43836
|
-
atlasInternalId?: Maybe<Scalars['String']['output']>;
|
|
43837
|
-
goalType: MercuryGoalType;
|
|
43838
|
-
id: Scalars['ID']['output'];
|
|
43839
|
-
metric?: Maybe<MercuryMetric>;
|
|
43840
|
-
};
|
|
43841
44080
|
export declare type MercuryGoalAggregatedStatusCount = {
|
|
43842
44081
|
__typename?: 'MercuryGoalAggregatedStatusCount';
|
|
43843
44082
|
krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
|
|
43844
44083
|
latestGoalStatusUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
43845
44084
|
subGoalsAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
|
|
43846
44085
|
};
|
|
43847
|
-
export declare type MercuryGoalConnection = {
|
|
43848
|
-
__typename?: 'MercuryGoalConnection';
|
|
43849
|
-
edges?: Maybe<Array<Maybe<MercuryGoalEdge>>>;
|
|
43850
|
-
pageInfo: PageInfo;
|
|
43851
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43852
|
-
};
|
|
43853
|
-
export declare type MercuryGoalEdge = {
|
|
43854
|
-
__typename?: 'MercuryGoalEdge';
|
|
43855
|
-
cursor: Scalars['String']['output'];
|
|
43856
|
-
node?: Maybe<MercuryGoal>;
|
|
43857
|
-
};
|
|
43858
|
-
export declare type MercuryGoalMutationApi = {
|
|
43859
|
-
__typename?: 'MercuryGoalMutationApi';
|
|
43860
|
-
createGoal: MercuryCreateGoalPayload;
|
|
43861
|
-
createGoalUpdateWithMetric: MercuryCreateGoalUpdateWithMetricPayload;
|
|
43862
|
-
editGoal: MercuryEditGoalPayload;
|
|
43863
|
-
};
|
|
43864
|
-
export declare type MercuryGoalMutationApiCreateGoalArgs = {
|
|
43865
|
-
cloudId: Scalars['ID']['input'];
|
|
43866
|
-
input: MercuryCreateGoalInput;
|
|
43867
|
-
};
|
|
43868
|
-
export declare type MercuryGoalMutationApiCreateGoalUpdateWithMetricArgs = {
|
|
43869
|
-
cloudId: Scalars['ID']['input'];
|
|
43870
|
-
input: MercuryCreateGoalUpdateWithMetricInput;
|
|
43871
|
-
};
|
|
43872
|
-
export declare type MercuryGoalMutationApiEditGoalArgs = {
|
|
43873
|
-
cloudId: Scalars['ID']['input'];
|
|
43874
|
-
input: MercuryEditGoalInput;
|
|
43875
|
-
};
|
|
43876
|
-
export declare enum MercuryGoalPhase {
|
|
43877
|
-
Done = "DONE",
|
|
43878
|
-
InProgress = "IN_PROGRESS",
|
|
43879
|
-
Paused = "PAUSED",
|
|
43880
|
-
Pending = "PENDING"
|
|
43881
|
-
}
|
|
43882
|
-
export declare enum MercuryGoalStatus {
|
|
43883
|
-
AtRisk = "AT_RISK",
|
|
43884
|
-
Cancelled = "CANCELLED",
|
|
43885
|
-
Done = "DONE",
|
|
43886
|
-
OffTrack = "OFF_TRACK",
|
|
43887
|
-
OnTrack = "ON_TRACK",
|
|
43888
|
-
Paused = "PAUSED",
|
|
43889
|
-
Pending = "PENDING"
|
|
43890
|
-
}
|
|
43891
44086
|
export declare type MercuryGoalStatusCount = {
|
|
43892
44087
|
__typename?: 'MercuryGoalStatusCount';
|
|
43893
44088
|
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
@@ -43899,25 +44094,6 @@ export declare type MercuryGoalStatusCount = {
|
|
|
43899
44094
|
pending?: Maybe<Scalars['Int']['output']>;
|
|
43900
44095
|
total?: Maybe<Scalars['Int']['output']>;
|
|
43901
44096
|
};
|
|
43902
|
-
export declare type MercuryGoalTargetDateInput = {
|
|
43903
|
-
date?: InputMaybe<Scalars['Date']['input']>;
|
|
43904
|
-
targetDateType?: InputMaybe<MercuryGoalTargetDateType>;
|
|
43905
|
-
};
|
|
43906
|
-
export declare enum MercuryGoalTargetDateType {
|
|
43907
|
-
Day = "DAY",
|
|
43908
|
-
Month = "MONTH",
|
|
43909
|
-
Quarter = "QUARTER"
|
|
43910
|
-
}
|
|
43911
|
-
export declare enum MercuryGoalType {
|
|
43912
|
-
Goal = "GOAL",
|
|
43913
|
-
KeyResult = "KEY_RESULT"
|
|
43914
|
-
}
|
|
43915
|
-
export declare type MercuryGoalUpdate = {
|
|
43916
|
-
__typename?: 'MercuryGoalUpdate';
|
|
43917
|
-
atlasGoalId: Scalars['ID']['output'];
|
|
43918
|
-
atlasGoalUpdateAri: Scalars['String']['output'];
|
|
43919
|
-
atlasGoalUpdateId: Scalars['ID']['output'];
|
|
43920
|
-
};
|
|
43921
44097
|
export declare type MercuryGoalsAggregatedStatusCount = {
|
|
43922
44098
|
__typename?: 'MercuryGoalsAggregatedStatusCount';
|
|
43923
44099
|
current?: Maybe<MercuryGoalStatusCount>;
|
|
@@ -43932,7 +44108,7 @@ export declare type MercuryHeadcountAggregation = {
|
|
|
43932
44108
|
};
|
|
43933
44109
|
export declare type MercuryLinkFocusAreasToFocusAreaInput = {
|
|
43934
44110
|
childFocusAreaIds: Array<Scalars['ID']['input']>;
|
|
43935
|
-
cloudId
|
|
44111
|
+
cloudId: Scalars['ID']['input'];
|
|
43936
44112
|
parentFocusAreaId: Scalars['ID']['input'];
|
|
43937
44113
|
};
|
|
43938
44114
|
export declare type MercuryLinkFocusAreasToFocusAreaPayload = Payload & {
|
|
@@ -43951,7 +44127,7 @@ export declare type MercuryLinkFocusAreasToGoalPayload = Payload & {
|
|
|
43951
44127
|
success: Scalars['Boolean']['output'];
|
|
43952
44128
|
};
|
|
43953
44129
|
export declare type MercuryLinkFocusAreasToPortfolioInput = {
|
|
43954
|
-
cloudId
|
|
44130
|
+
cloudId: Scalars['ID']['input'];
|
|
43955
44131
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
43956
44132
|
portfolioId: Scalars['ID']['input'];
|
|
43957
44133
|
};
|
|
@@ -43962,7 +44138,7 @@ export declare type MercuryLinkFocusAreasToPortfolioPayload = Payload & {
|
|
|
43962
44138
|
};
|
|
43963
44139
|
export declare type MercuryLinkGoalsToFocusAreaInput = {
|
|
43964
44140
|
atlasGoalIds: Array<Scalars['ID']['input']>;
|
|
43965
|
-
cloudId
|
|
44141
|
+
cloudId: Scalars['ID']['input'];
|
|
43966
44142
|
parentFocusAreaId: Scalars['ID']['input'];
|
|
43967
44143
|
};
|
|
43968
44144
|
export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
|
|
@@ -43970,45 +44146,31 @@ export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
|
|
|
43970
44146
|
errors?: Maybe<Array<MutationError>>;
|
|
43971
44147
|
success: Scalars['Boolean']['output'];
|
|
43972
44148
|
};
|
|
43973
|
-
export declare type MercuryMetric = {
|
|
43974
|
-
__typename?: 'MercuryMetric';
|
|
43975
|
-
metricType?: Maybe<MercuryMetricType>;
|
|
43976
|
-
scoring?: Maybe<MercuryMetricScoring>;
|
|
43977
|
-
};
|
|
43978
|
-
export declare type MercuryMetricScoring = {
|
|
43979
|
-
__typename?: 'MercuryMetricScoring';
|
|
43980
|
-
currentValue?: Maybe<Scalars['BigDecimal']['output']>;
|
|
43981
|
-
startValue?: Maybe<Scalars['BigDecimal']['output']>;
|
|
43982
|
-
targetValue?: Maybe<Scalars['BigDecimal']['output']>;
|
|
43983
|
-
};
|
|
43984
|
-
export declare type MercuryMetricTargetInput = {
|
|
43985
|
-
metricType?: InputMaybe<MercuryMetricType>;
|
|
43986
|
-
startValue?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
43987
|
-
targetValue?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
43988
|
-
};
|
|
43989
|
-
export declare enum MercuryMetricType {
|
|
43990
|
-
Currency = "CURRENCY",
|
|
43991
|
-
Number = "NUMBER",
|
|
43992
|
-
Percentage = "PERCENTAGE"
|
|
43993
|
-
}
|
|
43994
44149
|
export declare type MercuryMutationApi = {
|
|
43995
44150
|
__typename?: 'MercuryMutationApi';
|
|
43996
44151
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
43997
44152
|
createFocusArea?: Maybe<MercuryCreateFocusAreaPayload>;
|
|
44153
|
+
createFocusAreaStatusUpdate?: Maybe<MercuryCreateFocusAreaStatusUpdatePayload>;
|
|
44154
|
+
createPortfolioWithFocusAreas?: Maybe<MercuryCreatePortfolioPayload>;
|
|
43998
44155
|
deleteFocusArea?: Maybe<MercuryDeleteFocusAreaPayload>;
|
|
43999
44156
|
deleteFocusAreaGoalLink?: Maybe<MercuryDeleteFocusAreaGoalLinkPayload>;
|
|
44000
44157
|
deleteFocusAreaLink?: Maybe<MercuryDeleteFocusAreaLinkPayload>;
|
|
44158
|
+
deleteFocusAreaStatusUpdate?: Maybe<MercuryDeleteFocusAreaStatusUpdatePayload>;
|
|
44159
|
+
deletePortfolio?: Maybe<MercuryDeletePortfolioPayload>;
|
|
44001
44160
|
deletePortfolioFocusAreaLink?: Maybe<MercuryDeletePortfolioFocusAreaLinkPayload>;
|
|
44002
44161
|
linkFocusAreasToFocusArea?: Maybe<MercuryLinkFocusAreasToFocusAreaPayload>;
|
|
44003
44162
|
linkFocusAreasToGoal?: Maybe<MercuryLinkFocusAreasToGoalPayload>;
|
|
44004
44163
|
linkFocusAreasToPortfolio?: Maybe<MercuryLinkFocusAreasToPortfolioPayload>;
|
|
44005
44164
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
44165
|
+
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
44006
44166
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
44007
44167
|
transitionFocusAreaStatus?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
44008
44168
|
updateFocusAreaAboutContent?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
44009
44169
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
44010
44170
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
44171
|
+
updateFocusAreaStatusUpdate?: Maybe<MercuryUpdateFocusAreaStatusUpdatePayload>;
|
|
44011
44172
|
updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
44173
|
+
updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
44012
44174
|
};
|
|
44013
44175
|
export declare type MercuryMutationApiAddWatcherToFocusAreaArgs = {
|
|
44014
44176
|
input: MercuryAddWatcherToFocusAreaInput;
|
|
@@ -44016,6 +44178,12 @@ export declare type MercuryMutationApiAddWatcherToFocusAreaArgs = {
|
|
|
44016
44178
|
export declare type MercuryMutationApiCreateFocusAreaArgs = {
|
|
44017
44179
|
input: MercuryCreateFocusAreaInput;
|
|
44018
44180
|
};
|
|
44181
|
+
export declare type MercuryMutationApiCreateFocusAreaStatusUpdateArgs = {
|
|
44182
|
+
input: MercuryCreateFocusAreaStatusUpdateInput;
|
|
44183
|
+
};
|
|
44184
|
+
export declare type MercuryMutationApiCreatePortfolioWithFocusAreasArgs = {
|
|
44185
|
+
input: MercuryCreatePortfolioFocusAreasInput;
|
|
44186
|
+
};
|
|
44019
44187
|
export declare type MercuryMutationApiDeleteFocusAreaArgs = {
|
|
44020
44188
|
input: MercuryDeleteFocusAreaInput;
|
|
44021
44189
|
};
|
|
@@ -44025,6 +44193,12 @@ export declare type MercuryMutationApiDeleteFocusAreaGoalLinkArgs = {
|
|
|
44025
44193
|
export declare type MercuryMutationApiDeleteFocusAreaLinkArgs = {
|
|
44026
44194
|
input: MercuryDeleteFocusAreaLinkInput;
|
|
44027
44195
|
};
|
|
44196
|
+
export declare type MercuryMutationApiDeleteFocusAreaStatusUpdateArgs = {
|
|
44197
|
+
input: MercuryDeleteFocusAreaStatusUpdateInput;
|
|
44198
|
+
};
|
|
44199
|
+
export declare type MercuryMutationApiDeletePortfolioArgs = {
|
|
44200
|
+
input: MercuryDeletePortfolioInput;
|
|
44201
|
+
};
|
|
44028
44202
|
export declare type MercuryMutationApiDeletePortfolioFocusAreaLinkArgs = {
|
|
44029
44203
|
input: MercuryDeletePortfolioFocusAreaLinkInput;
|
|
44030
44204
|
};
|
|
@@ -44040,6 +44214,9 @@ export declare type MercuryMutationApiLinkFocusAreasToPortfolioArgs = {
|
|
|
44040
44214
|
export declare type MercuryMutationApiLinkGoalsToFocusAreaArgs = {
|
|
44041
44215
|
input: MercuryLinkGoalsToFocusAreaInput;
|
|
44042
44216
|
};
|
|
44217
|
+
export declare type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
|
|
44218
|
+
input: MercuryRecreatePortfolioFocusAreasInput;
|
|
44219
|
+
};
|
|
44043
44220
|
export declare type MercuryMutationApiRemoveWatcherFromFocusAreaArgs = {
|
|
44044
44221
|
input: MercuryRemoveWatcherFromFocusAreaInput;
|
|
44045
44222
|
};
|
|
@@ -44055,9 +44232,63 @@ export declare type MercuryMutationApiUpdateFocusAreaNameArgs = {
|
|
|
44055
44232
|
export declare type MercuryMutationApiUpdateFocusAreaOwnerArgs = {
|
|
44056
44233
|
input: MercuryUpdateFocusAreaOwnerInput;
|
|
44057
44234
|
};
|
|
44235
|
+
export declare type MercuryMutationApiUpdateFocusAreaStatusUpdateArgs = {
|
|
44236
|
+
input: MercuryUpdateFocusAreaStatusUpdateInput;
|
|
44237
|
+
};
|
|
44058
44238
|
export declare type MercuryMutationApiUpdateFocusAreaTargetDateArgs = {
|
|
44059
44239
|
input: MercuryUpdateFocusAreaTargetDateInput;
|
|
44060
44240
|
};
|
|
44241
|
+
export declare type MercuryMutationApiUpdatePortfolioNameArgs = {
|
|
44242
|
+
input: MercuryUpdatePortfolioNameInput;
|
|
44243
|
+
};
|
|
44244
|
+
export declare type MercuryPortfolio = Node & {
|
|
44245
|
+
__typename?: 'MercuryPortfolio';
|
|
44246
|
+
aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedPortfolioStatusCount>;
|
|
44247
|
+
allocations?: Maybe<MercuryPortfolioAllocations>;
|
|
44248
|
+
funding?: Maybe<MercuryPortfolioFunding>;
|
|
44249
|
+
id: Scalars['ID']['output'];
|
|
44250
|
+
linkedFocusAreaGoalCount: Scalars['Int']['output'];
|
|
44251
|
+
linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
|
|
44252
|
+
name: Scalars['String']['output'];
|
|
44253
|
+
};
|
|
44254
|
+
export declare type MercuryPortfolioAllocations = {
|
|
44255
|
+
__typename?: 'MercuryPortfolioAllocations';
|
|
44256
|
+
human?: Maybe<MercuryPortfolioHumanResourceAllocations>;
|
|
44257
|
+
};
|
|
44258
|
+
export declare type MercuryPortfolioBudgetAggregation = {
|
|
44259
|
+
__typename?: 'MercuryPortfolioBudgetAggregation';
|
|
44260
|
+
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44261
|
+
};
|
|
44262
|
+
export declare type MercuryPortfolioFocusAreaSummary = {
|
|
44263
|
+
__typename?: 'MercuryPortfolioFocusAreaSummary';
|
|
44264
|
+
focusAreaTypeBreakdown?: Maybe<Array<Maybe<MercuryPortfolioFocusAreaTypeBreakdown>>>;
|
|
44265
|
+
};
|
|
44266
|
+
export declare type MercuryPortfolioFocusAreaTypeBreakdown = {
|
|
44267
|
+
__typename?: 'MercuryPortfolioFocusAreaTypeBreakdown';
|
|
44268
|
+
count: Scalars['Int']['output'];
|
|
44269
|
+
focusAreaType: MercuryFocusAreaType;
|
|
44270
|
+
};
|
|
44271
|
+
export declare type MercuryPortfolioFunding = {
|
|
44272
|
+
__typename?: 'MercuryPortfolioFunding';
|
|
44273
|
+
aggregation?: Maybe<MercuryPortfolioFundingAggregation>;
|
|
44274
|
+
};
|
|
44275
|
+
export declare type MercuryPortfolioFundingAggregation = {
|
|
44276
|
+
__typename?: 'MercuryPortfolioFundingAggregation';
|
|
44277
|
+
budgetAggregation?: Maybe<MercuryPortfolioBudgetAggregation>;
|
|
44278
|
+
spendAggregation?: Maybe<MercuryPortfolioSpendAggregation>;
|
|
44279
|
+
};
|
|
44280
|
+
export declare type MercuryPortfolioHumanResourceAllocations = {
|
|
44281
|
+
__typename?: 'MercuryPortfolioHumanResourceAllocations';
|
|
44282
|
+
budgetedPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44283
|
+
filledPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44284
|
+
openPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44285
|
+
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44286
|
+
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44287
|
+
};
|
|
44288
|
+
export declare type MercuryPortfolioSpendAggregation = {
|
|
44289
|
+
__typename?: 'MercuryPortfolioSpendAggregation';
|
|
44290
|
+
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44291
|
+
};
|
|
44061
44292
|
export declare type MercuryQueryApi = {
|
|
44062
44293
|
__typename?: 'MercuryQueryApi';
|
|
44063
44294
|
aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
|
|
@@ -44066,53 +44297,66 @@ export declare type MercuryQueryApi = {
|
|
|
44066
44297
|
focusAreaStatusTransitions: Array<MercuryFocusAreaStatusTransition>;
|
|
44067
44298
|
focusAreaTeamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
44068
44299
|
focusAreaTypes: Array<MercuryFocusAreaType>;
|
|
44300
|
+
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
44069
44301
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
44070
44302
|
focusAreasByCloudId?: Maybe<MercuryFocusAreaConnection>;
|
|
44071
44303
|
goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
|
|
44072
44304
|
};
|
|
44073
44305
|
export declare type MercuryQueryApiAggregatedHeadcountsArgs = {
|
|
44074
44306
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
44075
|
-
cloudId
|
|
44307
|
+
cloudId: Scalars['ID']['input'];
|
|
44076
44308
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44077
44309
|
sort?: InputMaybe<Array<InputMaybe<MercuryAggregatedHeadcountSort>>>;
|
|
44078
44310
|
};
|
|
44079
44311
|
export declare type MercuryQueryApiFocusAreaArgs = {
|
|
44080
|
-
cloudId
|
|
44312
|
+
cloudId: Scalars['ID']['input'];
|
|
44081
44313
|
id: Scalars['ID']['input'];
|
|
44082
44314
|
};
|
|
44083
44315
|
export declare type MercuryQueryApiFocusAreaHierarchyArgs = {
|
|
44084
|
-
cloudId
|
|
44316
|
+
cloudId: Scalars['ID']['input'];
|
|
44085
44317
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
44086
44318
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaHierarchySort>>>;
|
|
44087
44319
|
};
|
|
44088
44320
|
export declare type MercuryQueryApiFocusAreaStatusTransitionsArgs = {
|
|
44089
|
-
cloudId
|
|
44321
|
+
cloudId: Scalars['ID']['input'];
|
|
44090
44322
|
};
|
|
44091
44323
|
export declare type MercuryQueryApiFocusAreaTeamAllocationsArgs = {
|
|
44092
44324
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
44093
|
-
cloudId
|
|
44325
|
+
cloudId: Scalars['ID']['input'];
|
|
44094
44326
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44095
44327
|
focusAreaId: Scalars['ID']['input'];
|
|
44096
44328
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaTeamAllocationAggregationSort>>>;
|
|
44097
44329
|
};
|
|
44098
44330
|
export declare type MercuryQueryApiFocusAreaTypesArgs = {
|
|
44099
|
-
cloudId
|
|
44331
|
+
cloudId: Scalars['ID']['input'];
|
|
44332
|
+
};
|
|
44333
|
+
export declare type MercuryQueryApiFocusAreasArgs = {
|
|
44334
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
44335
|
+
cloudId: Scalars['ID']['input'];
|
|
44336
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44337
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
44338
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
44100
44339
|
};
|
|
44101
44340
|
export declare type MercuryQueryApiFocusAreasByArisArgs = {
|
|
44102
44341
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
44103
44342
|
};
|
|
44104
44343
|
export declare type MercuryQueryApiFocusAreasByCloudIdArgs = {
|
|
44105
44344
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
44106
|
-
cloudId
|
|
44345
|
+
cloudId: Scalars['String']['input'];
|
|
44107
44346
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44108
44347
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
44109
44348
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
44110
44349
|
};
|
|
44111
44350
|
export declare type MercuryQueryApiGoalStatusAggregationsForAllFocusAreasArgs = {
|
|
44112
|
-
cloudId
|
|
44351
|
+
cloudId: Scalars['ID']['input'];
|
|
44352
|
+
};
|
|
44353
|
+
export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
44354
|
+
cloudId: Scalars['ID']['input'];
|
|
44355
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
44356
|
+
id: Scalars['ID']['input'];
|
|
44113
44357
|
};
|
|
44114
44358
|
export declare type MercuryRemoveWatcherFromFocusAreaInput = {
|
|
44115
|
-
cloudId
|
|
44359
|
+
cloudId: Scalars['ID']['input'];
|
|
44116
44360
|
focusAreaId: Scalars['ID']['input'];
|
|
44117
44361
|
userId: Scalars['ID']['input'];
|
|
44118
44362
|
};
|
|
@@ -44121,6 +44365,11 @@ export declare type MercuryRemoveWatcherFromFocusAreaPayload = Payload & {
|
|
|
44121
44365
|
errors?: Maybe<Array<MutationError>>;
|
|
44122
44366
|
success: Scalars['Boolean']['output'];
|
|
44123
44367
|
};
|
|
44368
|
+
export declare type MercuryTargetDate = {
|
|
44369
|
+
__typename?: 'MercuryTargetDate';
|
|
44370
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
44371
|
+
targetDateType?: Maybe<MercuryTargetDateType>;
|
|
44372
|
+
};
|
|
44124
44373
|
export declare enum MercuryTargetDateType {
|
|
44125
44374
|
Day = "DAY",
|
|
44126
44375
|
Month = "MONTH",
|
|
@@ -44142,23 +44391,23 @@ export declare type MercuryTeamFocusAreaAllocation = Node & {
|
|
|
44142
44391
|
openPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
44143
44392
|
};
|
|
44144
44393
|
export declare type MercuryTransitionFocusAreaStatusInput = {
|
|
44145
|
-
cloudId
|
|
44394
|
+
cloudId: Scalars['ID']['input'];
|
|
44146
44395
|
id: Scalars['ID']['input'];
|
|
44147
44396
|
statusTransitionId: Scalars['ID']['input'];
|
|
44148
44397
|
};
|
|
44149
44398
|
export declare type MercuryUpdateFocusAreaAboutContentInput = {
|
|
44150
44399
|
aboutContent: Scalars['String']['input'];
|
|
44151
|
-
cloudId
|
|
44400
|
+
cloudId: Scalars['ID']['input'];
|
|
44152
44401
|
id: Scalars['ID']['input'];
|
|
44153
44402
|
};
|
|
44154
44403
|
export declare type MercuryUpdateFocusAreaNameInput = {
|
|
44155
|
-
cloudId
|
|
44404
|
+
cloudId: Scalars['ID']['input'];
|
|
44156
44405
|
id: Scalars['ID']['input'];
|
|
44157
44406
|
name: Scalars['String']['input'];
|
|
44158
44407
|
};
|
|
44159
44408
|
export declare type MercuryUpdateFocusAreaOwnerInput = {
|
|
44160
44409
|
aaid: Scalars['String']['input'];
|
|
44161
|
-
cloudId
|
|
44410
|
+
cloudId: Scalars['ID']['input'];
|
|
44162
44411
|
id: Scalars['ID']['input'];
|
|
44163
44412
|
};
|
|
44164
44413
|
export declare type MercuryUpdateFocusAreaPayload = Payload & {
|
|
@@ -44167,17 +44416,35 @@ export declare type MercuryUpdateFocusAreaPayload = Payload & {
|
|
|
44167
44416
|
success: Scalars['Boolean']['output'];
|
|
44168
44417
|
updatedFocusArea?: Maybe<MercuryFocusArea>;
|
|
44169
44418
|
};
|
|
44419
|
+
export declare type MercuryUpdateFocusAreaStatusUpdateInput = {
|
|
44420
|
+
cloudId: Scalars['ID']['input'];
|
|
44421
|
+
id: Scalars['ID']['input'];
|
|
44422
|
+
newTargetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
|
|
44423
|
+
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
44424
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
44425
|
+
};
|
|
44426
|
+
export declare type MercuryUpdateFocusAreaStatusUpdatePayload = Payload & {
|
|
44427
|
+
__typename?: 'MercuryUpdateFocusAreaStatusUpdatePayload';
|
|
44428
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44429
|
+
success: Scalars['Boolean']['output'];
|
|
44430
|
+
updatedFocusAreaStatusUpdate?: Maybe<MercuryFocusAreaStatusUpdate>;
|
|
44431
|
+
};
|
|
44170
44432
|
export declare type MercuryUpdateFocusAreaTargetDateInput = {
|
|
44171
|
-
cloudId
|
|
44433
|
+
cloudId: Scalars['ID']['input'];
|
|
44172
44434
|
id: Scalars['ID']['input'];
|
|
44173
44435
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
44174
44436
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
44175
44437
|
};
|
|
44176
|
-
export declare type
|
|
44177
|
-
|
|
44178
|
-
|
|
44179
|
-
|
|
44180
|
-
|
|
44438
|
+
export declare type MercuryUpdatePortfolioNameInput = {
|
|
44439
|
+
cloudId: Scalars['ID']['input'];
|
|
44440
|
+
id: Scalars['ID']['input'];
|
|
44441
|
+
name: Scalars['String']['input'];
|
|
44442
|
+
};
|
|
44443
|
+
export declare type MercuryUpdatePortfolioPayload = Payload & {
|
|
44444
|
+
__typename?: 'MercuryUpdatePortfolioPayload';
|
|
44445
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44446
|
+
success: Scalars['Boolean']['output'];
|
|
44447
|
+
updatedPortfolio?: Maybe<MercuryPortfolio>;
|
|
44181
44448
|
};
|
|
44182
44449
|
export declare type Migration = {
|
|
44183
44450
|
__typename?: 'Migration';
|
|
@@ -44205,12 +44472,16 @@ export declare type MigrationEvent = {
|
|
|
44205
44472
|
statusMessage?: Maybe<Scalars['String']['output']>;
|
|
44206
44473
|
};
|
|
44207
44474
|
export declare enum MigrationEventStatus {
|
|
44475
|
+
Cancelled = "CANCELLED",
|
|
44476
|
+
Cancelling = "CANCELLING",
|
|
44208
44477
|
Failed = "FAILED",
|
|
44209
44478
|
Incomplete = "INCOMPLETE",
|
|
44210
44479
|
InProgress = "IN_PROGRESS",
|
|
44480
|
+
Paused = "PAUSED",
|
|
44211
44481
|
Ready = "READY",
|
|
44212
44482
|
Skipped = "SKIPPED",
|
|
44213
|
-
Success = "SUCCESS"
|
|
44483
|
+
Success = "SUCCESS",
|
|
44484
|
+
TimedOut = "TIMED_OUT"
|
|
44214
44485
|
}
|
|
44215
44486
|
export declare enum MigrationEventType {
|
|
44216
44487
|
Container = "CONTAINER",
|
|
@@ -44222,6 +44493,18 @@ export declare type MigrationKeys = {
|
|
|
44222
44493
|
confluence: Scalars['String']['output'];
|
|
44223
44494
|
jira: Scalars['String']['output'];
|
|
44224
44495
|
};
|
|
44496
|
+
export declare type MigrationProgressEvent = {
|
|
44497
|
+
__typename?: 'MigrationProgressEvent';
|
|
44498
|
+
businessStatus?: Maybe<MigrationEventStatus>;
|
|
44499
|
+
createdAtISO8601: Scalars['String']['output'];
|
|
44500
|
+
customBusinessStatus?: Maybe<Scalars['String']['output']>;
|
|
44501
|
+
eventId: Scalars['ID']['output'];
|
|
44502
|
+
eventSource: Scalars['String']['output'];
|
|
44503
|
+
eventType?: Maybe<MigrationEventType>;
|
|
44504
|
+
executionStatus?: Maybe<MigrationEventStatus>;
|
|
44505
|
+
migrationId: Scalars['ID']['output'];
|
|
44506
|
+
statusMessage?: Maybe<Scalars['String']['output']>;
|
|
44507
|
+
};
|
|
44225
44508
|
export declare type MigrationQuery = {
|
|
44226
44509
|
__typename?: 'MigrationQuery';
|
|
44227
44510
|
migration?: Maybe<Migration>;
|
|
@@ -44232,10 +44515,14 @@ export declare type MigrationQueryMigrationArgs = {
|
|
|
44232
44515
|
export declare type MigrationSubscription = {
|
|
44233
44516
|
__typename?: 'MigrationSubscription';
|
|
44234
44517
|
onMigrationEventCreated: MigrationEvent;
|
|
44518
|
+
onMigrationProgressEventCreated: MigrationProgressEvent;
|
|
44235
44519
|
};
|
|
44236
44520
|
export declare type MigrationSubscriptionOnMigrationEventCreatedArgs = {
|
|
44237
44521
|
migrationId: Scalars['ID']['input'];
|
|
44238
44522
|
};
|
|
44523
|
+
export declare type MigrationSubscriptionOnMigrationProgressEventCreatedArgs = {
|
|
44524
|
+
migrationId: Scalars['ID']['input'];
|
|
44525
|
+
};
|
|
44239
44526
|
export declare type MoveCardOutput = {
|
|
44240
44527
|
__typename?: 'MoveCardOutput';
|
|
44241
44528
|
clientMutationId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -46515,6 +46802,7 @@ export declare type PolarisPlayContributionsBySubjectArgs = {
|
|
|
46515
46802
|
export declare type PolarisPlayContribution = {
|
|
46516
46803
|
__typename?: 'PolarisPlayContribution';
|
|
46517
46804
|
aaid: Scalars['String']['output'];
|
|
46805
|
+
account?: Maybe<User>;
|
|
46518
46806
|
amount?: Maybe<Scalars['Int']['output']>;
|
|
46519
46807
|
appearsIn?: Maybe<PolarisInsight>;
|
|
46520
46808
|
comment?: Maybe<PolarisComment>;
|
|
@@ -46566,6 +46854,9 @@ export declare type PolarisProjectInsightsArgs = {
|
|
|
46566
46854
|
export declare type PolarisProjectPlayArgs = {
|
|
46567
46855
|
id: Scalars['ID']['input'];
|
|
46568
46856
|
};
|
|
46857
|
+
export declare type PolarisProjectSnippetProvidersArgs = {
|
|
46858
|
+
archivedMode?: InputMaybe<ArchivedMode>;
|
|
46859
|
+
};
|
|
46569
46860
|
export declare type PolarisProjectTemplate = {
|
|
46570
46861
|
__typename?: 'PolarisProjectTemplate';
|
|
46571
46862
|
ideas?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -47076,6 +47367,8 @@ export declare type Query = {
|
|
|
47076
47367
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
47077
47368
|
extensionsEcho?: Maybe<Scalars['String']['output']>;
|
|
47078
47369
|
featureRelease?: Maybe<FeatureRelease>;
|
|
47370
|
+
fullHubArticle?: Maybe<ContentPlatformFullHubArticle>;
|
|
47371
|
+
fullHubArticles: ContentPlatformHubArticleSearchConnection;
|
|
47079
47372
|
fullTutorial?: Maybe<ContentPlatformFullTutorial>;
|
|
47080
47373
|
fullTutorials: ContentPlatformTutorialSearchConnection;
|
|
47081
47374
|
getKeywords?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -47388,6 +47681,13 @@ export declare type QueryExtensionContextsArgs = {
|
|
|
47388
47681
|
export declare type QueryExtensionsEchoArgs = {
|
|
47389
47682
|
text: Scalars['String']['input'];
|
|
47390
47683
|
};
|
|
47684
|
+
export declare type QueryFullHubArticleArgs = {
|
|
47685
|
+
id: Scalars['String']['input'];
|
|
47686
|
+
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
47687
|
+
};
|
|
47688
|
+
export declare type QueryFullHubArticlesArgs = {
|
|
47689
|
+
search: ContentPlatformSearchApIv2Query;
|
|
47690
|
+
};
|
|
47391
47691
|
export declare type QueryFullTutorialArgs = {
|
|
47392
47692
|
id: Scalars['String']['input'];
|
|
47393
47693
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49040,8 +49340,11 @@ export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
|
49040
49340
|
iconCssClass?: Maybe<Scalars['String']['output']>;
|
|
49041
49341
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49042
49342
|
id: Scalars['ID']['output'];
|
|
49343
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
49043
49344
|
lastModified?: Maybe<Scalars['DateTime']['output']>;
|
|
49345
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49044
49346
|
pageEntity?: Maybe<ConfluencePage>;
|
|
49347
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49045
49348
|
space?: Maybe<SearchConfluenceResultSpace>;
|
|
49046
49349
|
spaceEntity?: Maybe<ConfluenceSpace>;
|
|
49047
49350
|
title: Scalars['String']['output'];
|
|
@@ -49073,7 +49376,10 @@ export declare type SearchConfluenceSpace = SearchResult & {
|
|
|
49073
49376
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49074
49377
|
id: Scalars['ID']['output'];
|
|
49075
49378
|
key?: Maybe<Scalars['String']['output']>;
|
|
49379
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
49076
49380
|
lastModified?: Maybe<Scalars['DateTime']['output']>;
|
|
49381
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49382
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49077
49383
|
spaceEntity?: Maybe<ConfluenceSpace>;
|
|
49078
49384
|
title: Scalars['String']['output'];
|
|
49079
49385
|
type: SearchResultType;
|
|
@@ -49090,6 +49396,7 @@ export declare type SearchDefaultResult = SearchResult & {
|
|
|
49090
49396
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49091
49397
|
id: Scalars['ID']['output'];
|
|
49092
49398
|
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
49399
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49093
49400
|
title: Scalars['String']['output'];
|
|
49094
49401
|
type: SearchResultType;
|
|
49095
49402
|
url: Scalars['URL']['output'];
|
|
@@ -49154,6 +49461,11 @@ export declare type SearchJiraIssueFilter = {
|
|
|
49154
49461
|
export declare type SearchJiraProjectFilter = {
|
|
49155
49462
|
projectType?: InputMaybe<SearchProjectType>;
|
|
49156
49463
|
};
|
|
49464
|
+
export declare type SearchL2Feature = {
|
|
49465
|
+
__typename?: 'SearchL2Feature';
|
|
49466
|
+
key: Scalars['String']['output'];
|
|
49467
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
49468
|
+
};
|
|
49157
49469
|
export declare enum SearchProjectType {
|
|
49158
49470
|
Business = "business",
|
|
49159
49471
|
ProductDiscovery = "product_discovery",
|
|
@@ -49192,6 +49504,7 @@ export declare type SearchResult = {
|
|
|
49192
49504
|
description: Scalars['String']['output'];
|
|
49193
49505
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49194
49506
|
id: Scalars['ID']['output'];
|
|
49507
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49195
49508
|
title: Scalars['String']['output'];
|
|
49196
49509
|
type: SearchResultType;
|
|
49197
49510
|
url: Scalars['URL']['output'];
|
|
@@ -49202,6 +49515,8 @@ export declare type SearchResultAtlasGoal = SearchResult & {
|
|
|
49202
49515
|
goal?: Maybe<TownsquareGoal>;
|
|
49203
49516
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49204
49517
|
id: Scalars['ID']['output'];
|
|
49518
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49519
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49205
49520
|
title: Scalars['String']['output'];
|
|
49206
49521
|
type: SearchResultType;
|
|
49207
49522
|
url: Scalars['URL']['output'];
|
|
@@ -49211,7 +49526,9 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
49211
49526
|
description: Scalars['String']['output'];
|
|
49212
49527
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49213
49528
|
id: Scalars['ID']['output'];
|
|
49529
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49214
49530
|
project?: Maybe<TownsquareProject>;
|
|
49531
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49215
49532
|
title: Scalars['String']['output'];
|
|
49216
49533
|
type: SearchResultType;
|
|
49217
49534
|
url: Scalars['URL']['output'];
|
|
@@ -49223,6 +49540,7 @@ export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
|
49223
49540
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49224
49541
|
id: Scalars['ID']['output'];
|
|
49225
49542
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49543
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49226
49544
|
title: Scalars['String']['output'];
|
|
49227
49545
|
type: SearchResultType;
|
|
49228
49546
|
url: Scalars['URL']['output'];
|
|
@@ -49236,6 +49554,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
49236
49554
|
id: Scalars['ID']['output'];
|
|
49237
49555
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49238
49556
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
49557
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49239
49558
|
tier?: Maybe<Scalars['String']['output']>;
|
|
49240
49559
|
title: Scalars['String']['output'];
|
|
49241
49560
|
type: SearchResultType;
|
|
@@ -49250,6 +49569,7 @@ export declare type SearchResultGoogleDocument = SearchResult & {
|
|
|
49250
49569
|
id: Scalars['ID']['output'];
|
|
49251
49570
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49252
49571
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
49572
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49253
49573
|
title: Scalars['String']['output'];
|
|
49254
49574
|
type: SearchResultType;
|
|
49255
49575
|
url: Scalars['URL']['output'];
|
|
@@ -49263,6 +49583,7 @@ export declare type SearchResultGooglePresentation = SearchResult & {
|
|
|
49263
49583
|
id: Scalars['ID']['output'];
|
|
49264
49584
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49265
49585
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
49586
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49266
49587
|
title: Scalars['String']['output'];
|
|
49267
49588
|
type: SearchResultType;
|
|
49268
49589
|
url: Scalars['URL']['output'];
|
|
@@ -49276,6 +49597,7 @@ export declare type SearchResultGoogleSpreadsheet = SearchResult & {
|
|
|
49276
49597
|
id: Scalars['ID']['output'];
|
|
49277
49598
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49278
49599
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
49600
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49279
49601
|
title: Scalars['String']['output'];
|
|
49280
49602
|
type: SearchResultType;
|
|
49281
49603
|
url: Scalars['URL']['output'];
|
|
@@ -49312,7 +49634,9 @@ export declare type SearchResultJiraBoard = SearchResult & {
|
|
|
49312
49634
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49313
49635
|
id: Scalars['ID']['output'];
|
|
49314
49636
|
isSimpleBoard: Scalars['Boolean']['output'];
|
|
49637
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49315
49638
|
product: SearchBoardProductType;
|
|
49639
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49316
49640
|
title: Scalars['String']['output'];
|
|
49317
49641
|
type: SearchResultType;
|
|
49318
49642
|
url: Scalars['URL']['output'];
|
|
@@ -49336,6 +49660,8 @@ export declare type SearchResultJiraDashboard = SearchResult & {
|
|
|
49336
49660
|
description: Scalars['String']['output'];
|
|
49337
49661
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49338
49662
|
id: Scalars['ID']['output'];
|
|
49663
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49664
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49339
49665
|
title: Scalars['String']['output'];
|
|
49340
49666
|
type: SearchResultType;
|
|
49341
49667
|
url: Scalars['URL']['output'];
|
|
@@ -49346,6 +49672,8 @@ export declare type SearchResultJiraFilter = SearchResult & {
|
|
|
49346
49672
|
filter?: Maybe<JiraFilter>;
|
|
49347
49673
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49348
49674
|
id: Scalars['ID']['output'];
|
|
49675
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49676
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49349
49677
|
title: Scalars['String']['output'];
|
|
49350
49678
|
type: SearchResultType;
|
|
49351
49679
|
url: Scalars['URL']['output'];
|
|
@@ -49356,6 +49684,8 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
49356
49684
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49357
49685
|
id: Scalars['ID']['output'];
|
|
49358
49686
|
issue?: Maybe<JiraIssue>;
|
|
49687
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49688
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49359
49689
|
status?: Maybe<SearchResultJiraIssueStatus>;
|
|
49360
49690
|
title: Scalars['String']['output'];
|
|
49361
49691
|
type: SearchResultType;
|
|
@@ -49381,10 +49711,12 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
49381
49711
|
favourite: Scalars['Boolean']['output'];
|
|
49382
49712
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49383
49713
|
id: Scalars['ID']['output'];
|
|
49714
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49384
49715
|
project?: Maybe<JiraProject>;
|
|
49385
49716
|
projectId: Scalars['String']['output'];
|
|
49386
49717
|
projectKey: Scalars['String']['output'];
|
|
49387
49718
|
projectType: SearchProjectType;
|
|
49719
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49388
49720
|
simplified: Scalars['Boolean']['output'];
|
|
49389
49721
|
title: Scalars['String']['output'];
|
|
49390
49722
|
type: SearchResultType;
|
|
@@ -49399,6 +49731,7 @@ export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
|
49399
49731
|
id: Scalars['ID']['output'];
|
|
49400
49732
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49401
49733
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
49734
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49402
49735
|
title: Scalars['String']['output'];
|
|
49403
49736
|
type: SearchResultType;
|
|
49404
49737
|
url: Scalars['URL']['output'];
|
|
@@ -49410,6 +49743,7 @@ export declare type SearchResultSlackMessage = SearchResult & {
|
|
|
49410
49743
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49411
49744
|
id: Scalars['ID']['output'];
|
|
49412
49745
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49746
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49413
49747
|
title: Scalars['String']['output'];
|
|
49414
49748
|
type: SearchResultType;
|
|
49415
49749
|
url: Scalars['URL']['output'];
|
|
@@ -49420,6 +49754,7 @@ export declare type SearchResultTrelloBoard = SearchResult & {
|
|
|
49420
49754
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49421
49755
|
id: Scalars['ID']['output'];
|
|
49422
49756
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49757
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49423
49758
|
title: Scalars['String']['output'];
|
|
49424
49759
|
type: SearchResultType;
|
|
49425
49760
|
url: Scalars['URL']['output'];
|
|
@@ -49432,6 +49767,7 @@ export declare type SearchResultTrelloCard = SearchResult & {
|
|
|
49432
49767
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49433
49768
|
id: Scalars['ID']['output'];
|
|
49434
49769
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
49770
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
49435
49771
|
title: Scalars['String']['output'];
|
|
49436
49772
|
type: SearchResultType;
|
|
49437
49773
|
url: Scalars['URL']['output'];
|
|
@@ -50910,6 +51246,7 @@ export declare type SoftwareBoard = {
|
|
|
50910
51246
|
cards?: Maybe<Array<Maybe<SoftwareCard>>>;
|
|
50911
51247
|
columnConfigs?: Maybe<ColumnsConfig>;
|
|
50912
51248
|
columns?: Maybe<Array<Maybe<Column>>>;
|
|
51249
|
+
customSwimlaneConfig?: Maybe<JswCustomSwimlaneConnection>;
|
|
50913
51250
|
editConfig?: Maybe<BoardEditConfig>;
|
|
50914
51251
|
hasClearedCards?: Maybe<Scalars['Boolean']['output']>;
|
|
50915
51252
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -50926,6 +51263,10 @@ export declare type SoftwareBoardCardsArgs = {
|
|
|
50926
51263
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
50927
51264
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
50928
51265
|
};
|
|
51266
|
+
export declare type SoftwareBoardCustomSwimlaneConfigArgs = {
|
|
51267
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51268
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51269
|
+
};
|
|
50929
51270
|
export declare type SoftwareCard = {
|
|
50930
51271
|
__typename?: 'SoftwareCard';
|
|
50931
51272
|
activeSprint?: Maybe<Sprint>;
|
|
@@ -51159,6 +51500,15 @@ export declare type Subscription = {
|
|
|
51159
51500
|
testing?: Maybe<TestingSubscription>;
|
|
51160
51501
|
trello: TrelloSubscriptionApi;
|
|
51161
51502
|
};
|
|
51503
|
+
export declare type SupportInquiryEntitlement = {
|
|
51504
|
+
__typename?: 'SupportInquiryEntitlement';
|
|
51505
|
+
cloudURL?: Maybe<Scalars['String']['output']>;
|
|
51506
|
+
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
51507
|
+
productCatalogId?: Maybe<Scalars['String']['output']>;
|
|
51508
|
+
};
|
|
51509
|
+
export declare type SupportInquiryEntitlementQueryFilter = {
|
|
51510
|
+
productCatalogId?: InputMaybe<Scalars['String']['input']>;
|
|
51511
|
+
};
|
|
51162
51512
|
export declare type SupportInquiryUser = {
|
|
51163
51513
|
__typename?: 'SupportInquiryUser';
|
|
51164
51514
|
aaid: Scalars['String']['output'];
|
|
@@ -51168,8 +51518,12 @@ export declare type SupportInquiryUser = {
|
|
|
51168
51518
|
};
|
|
51169
51519
|
export declare type SupportInquiryUserContext = {
|
|
51170
51520
|
__typename?: 'SupportInquiryUserContext';
|
|
51521
|
+
supportEntitlements?: Maybe<Array<Maybe<SupportInquiryEntitlement>>>;
|
|
51171
51522
|
userDetails?: Maybe<SupportInquiryUser>;
|
|
51172
51523
|
};
|
|
51524
|
+
export declare type SupportInquiryUserContextSupportEntitlementsArgs = {
|
|
51525
|
+
filter?: InputMaybe<SupportInquiryEntitlementQueryFilter>;
|
|
51526
|
+
};
|
|
51173
51527
|
export declare type SupportRequest = {
|
|
51174
51528
|
__typename?: 'SupportRequest';
|
|
51175
51529
|
activities: SupportRequestActivities;
|
|
@@ -53868,6 +54222,20 @@ export declare type UnifiedForumsSnapshot = UnifiedINode & {
|
|
|
53868
54222
|
totalLoginsRecorded?: Maybe<Scalars['String']['output']>;
|
|
53869
54223
|
totalPosts?: Maybe<Scalars['Int']['output']>;
|
|
53870
54224
|
};
|
|
54225
|
+
export declare type UnifiedGamification = UnifiedINode & {
|
|
54226
|
+
__typename?: 'UnifiedGamification';
|
|
54227
|
+
badges?: Maybe<Array<Maybe<UnifiedUGamificationBadgeResult>>>;
|
|
54228
|
+
id: Scalars['ID']['output'];
|
|
54229
|
+
};
|
|
54230
|
+
export declare type UnifiedGamificationBadge = UnifiedINode & {
|
|
54231
|
+
__typename?: 'UnifiedGamificationBadge';
|
|
54232
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
54233
|
+
id: Scalars['ID']['output'];
|
|
54234
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
54235
|
+
lastCompletedDate?: Maybe<Scalars['String']['output']>;
|
|
54236
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
54237
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
54238
|
+
};
|
|
53871
54239
|
export declare type UnifiedIConnection = {
|
|
53872
54240
|
edges?: Maybe<Array<Maybe<UnifiedIEdge>>>;
|
|
53873
54241
|
pageInfo: UnifiedPageInfo;
|
|
@@ -53926,6 +54294,7 @@ export declare type UnifiedLinkedAccount = UnifiedINode & {
|
|
|
53926
54294
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
53927
54295
|
connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
|
|
53928
54296
|
forums?: Maybe<UnifiedUForumsResult>;
|
|
54297
|
+
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
53929
54298
|
id: Scalars['ID']['output'];
|
|
53930
54299
|
learning?: Maybe<UnifiedULearningResult>;
|
|
53931
54300
|
linkedAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -54000,6 +54369,7 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
54000
54369
|
company?: Maybe<Scalars['String']['output']>;
|
|
54001
54370
|
forums?: Maybe<UnifiedUForumsResult>;
|
|
54002
54371
|
forumsId?: Maybe<Scalars['String']['output']>;
|
|
54372
|
+
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
54003
54373
|
id: Scalars['ID']['output'];
|
|
54004
54374
|
learnId?: Maybe<Scalars['String']['output']>;
|
|
54005
54375
|
learning?: Maybe<UnifiedULearningResult>;
|
|
@@ -54014,24 +54384,6 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
54014
54384
|
xUrl?: Maybe<Scalars['String']['output']>;
|
|
54015
54385
|
youtubeUrl?: Maybe<Scalars['String']['output']>;
|
|
54016
54386
|
};
|
|
54017
|
-
export declare type UnifiedProfileFields = UnifiedINode & {
|
|
54018
|
-
__typename?: 'UnifiedProfileFields';
|
|
54019
|
-
bio?: Maybe<Scalars['String']['output']>;
|
|
54020
|
-
company?: Maybe<Scalars['String']['output']>;
|
|
54021
|
-
forumsId?: Maybe<Scalars['String']['output']>;
|
|
54022
|
-
id: Scalars['ID']['output'];
|
|
54023
|
-
learnId?: Maybe<Scalars['String']['output']>;
|
|
54024
|
-
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
54025
|
-
location?: Maybe<Scalars['String']['output']>;
|
|
54026
|
-
parentAccountInternalId?: Maybe<Scalars['String']['output']>;
|
|
54027
|
-
products?: Maybe<Scalars['String']['output']>;
|
|
54028
|
-
role?: Maybe<Scalars['String']['output']>;
|
|
54029
|
-
unifiedProfileInternalId?: Maybe<Scalars['ID']['output']>;
|
|
54030
|
-
unifiedProfileUsername?: Maybe<Scalars['String']['output']>;
|
|
54031
|
-
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
54032
|
-
xUrl?: Maybe<Scalars['String']['output']>;
|
|
54033
|
-
youtubeUrl?: Maybe<Scalars['String']['output']>;
|
|
54034
|
-
};
|
|
54035
54387
|
export declare type UnifiedProfileInput = {
|
|
54036
54388
|
bio?: InputMaybe<Scalars['String']['input']>;
|
|
54037
54389
|
company?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -54054,7 +54406,7 @@ export declare type UnifiedProfilePayload = UnifiedPayload & {
|
|
|
54054
54406
|
__typename?: 'UnifiedProfilePayload';
|
|
54055
54407
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
54056
54408
|
success: Scalars['Boolean']['output'];
|
|
54057
|
-
unifiedProfile?: Maybe<
|
|
54409
|
+
unifiedProfile?: Maybe<UnifiedProfile>;
|
|
54058
54410
|
};
|
|
54059
54411
|
export declare type UnifiedQuery = {
|
|
54060
54412
|
__typename?: 'UnifiedQuery';
|
|
@@ -54112,6 +54464,8 @@ export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
|
54112
54464
|
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
|
|
54113
54465
|
export declare type UnifiedUForumsResult = UnifiedForums | UnifiedQueryError;
|
|
54114
54466
|
export declare type UnifiedUForumsSnapshotResult = UnifiedForumsSnapshot | UnifiedQueryError;
|
|
54467
|
+
export declare type UnifiedUGamificationBadgeResult = UnifiedGamificationBadge | UnifiedQueryError;
|
|
54468
|
+
export declare type UnifiedUGamificationResult = UnifiedGamification | UnifiedQueryError;
|
|
54115
54469
|
export declare type UnifiedULearningCertificationResult = UnifiedLearningCertificationConnection | UnifiedQueryError;
|
|
54116
54470
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
54117
54471
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
@@ -55244,7 +55598,7 @@ export declare type WorkSuggestionsSuggestionsByProjectsArgs = {
|
|
|
55244
55598
|
cloudId: Scalars['ID']['input'];
|
|
55245
55599
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55246
55600
|
projectAris: Array<Scalars['ID']['input']>;
|
|
55247
|
-
|
|
55601
|
+
sprintAutoDiscoveryLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
55248
55602
|
};
|
|
55249
55603
|
export declare type WorkSuggestionsUserProfileByCloudIdArgs = {
|
|
55250
55604
|
cloudId: Scalars['ID']['input'];
|