@forge/cli-shared 5.0.0-next.6 → 5.0.0
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 +52 -0
- package/out/graphql/graphql-types.d.ts +404 -38
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +66 -11
- package/package.json +2 -2
|
@@ -4760,6 +4760,7 @@ export declare type CompassHasLinkScorecardCriteriaScorecardCriteriaScoreArgs =
|
|
|
4760
4760
|
};
|
|
4761
4761
|
export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCriteria & {
|
|
4762
4762
|
__typename?: 'CompassHasMetricValueScorecardCriteria';
|
|
4763
|
+
automaticallyCreateMetricSources?: Maybe<Scalars['Boolean']['output']>;
|
|
4763
4764
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
4764
4765
|
comparatorValue: Scalars['Float']['output'];
|
|
4765
4766
|
id: Scalars['ID']['output'];
|
|
@@ -6173,7 +6174,7 @@ export declare type ConfluenceComment = {
|
|
|
6173
6174
|
name?: Maybe<Scalars['String']['output']>;
|
|
6174
6175
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
6175
6176
|
};
|
|
6176
|
-
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage;
|
|
6177
|
+
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage | ConfluenceWhiteboard;
|
|
6177
6178
|
export declare type ConfluenceCommentCountSummary = {
|
|
6178
6179
|
__typename?: 'ConfluenceCommentCountSummary';
|
|
6179
6180
|
total?: Maybe<Scalars['Int']['output']>;
|
|
@@ -6233,7 +6234,8 @@ export declare enum ConfluenceContentType {
|
|
|
6233
6234
|
Attachment = "ATTACHMENT",
|
|
6234
6235
|
BlogPost = "BLOG_POST",
|
|
6235
6236
|
Comment = "COMMENT",
|
|
6236
|
-
Page = "PAGE"
|
|
6237
|
+
Page = "PAGE",
|
|
6238
|
+
Whiteboard = "WHITEBOARD"
|
|
6237
6239
|
}
|
|
6238
6240
|
export declare type ConfluenceContribution = {
|
|
6239
6241
|
__typename?: 'ConfluenceContribution';
|
|
@@ -7073,13 +7075,18 @@ export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
|
7073
7075
|
export declare type ConfluenceWhiteboard = {
|
|
7074
7076
|
__typename?: 'ConfluenceWhiteboard';
|
|
7075
7077
|
author?: Maybe<ConfluenceUserInfo>;
|
|
7078
|
+
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
7076
7079
|
id: Scalars['ID']['output'];
|
|
7077
7080
|
links?: Maybe<ConfluenceWhiteboardLinks>;
|
|
7078
7081
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
7079
7082
|
space?: Maybe<ConfluenceSpace>;
|
|
7080
7083
|
title?: Maybe<Scalars['String']['output']>;
|
|
7084
|
+
type?: Maybe<ConfluenceContentType>;
|
|
7081
7085
|
whiteboardId: Scalars['ID']['output'];
|
|
7082
7086
|
};
|
|
7087
|
+
export declare type ConfluenceWhiteboardCommentsArgs = {
|
|
7088
|
+
commentType?: InputMaybe<ConfluenceCommentType>;
|
|
7089
|
+
};
|
|
7083
7090
|
export declare type ConfluenceWhiteboardLinks = {
|
|
7084
7091
|
__typename?: 'ConfluenceWhiteboardLinks';
|
|
7085
7092
|
base?: Maybe<Scalars['String']['output']>;
|
|
@@ -7224,6 +7231,7 @@ export declare type ContentPlatformAssetComponent = {
|
|
|
7224
7231
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7225
7232
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7226
7233
|
};
|
|
7234
|
+
export declare type ContentPlatformAssetComponentAndProTipComponentAndTextComponentAndCallToActionAndQuestionComponentAndTwitterComponentAndCallOutComponentUnion = ContentPlatformAssetComponent | ContentPlatformCallOutComponent | ContentPlatformCallToAction | ContentPlatformProTipComponent | ContentPlatformQuestionComponent | ContentPlatformTextComponent | ContentPlatformTwitterComponent;
|
|
7227
7235
|
export declare type ContentPlatformAuthor = {
|
|
7228
7236
|
__typename?: 'ContentPlatformAuthor';
|
|
7229
7237
|
authorPicture?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
@@ -7234,10 +7242,35 @@ export declare type ContentPlatformAuthor = {
|
|
|
7234
7242
|
shortBiography?: Maybe<Scalars['String']['output']>;
|
|
7235
7243
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7236
7244
|
};
|
|
7245
|
+
export declare type ContentPlatformBeforeYouBeginComponent = {
|
|
7246
|
+
__typename?: 'ContentPlatformBeforeYouBeginComponent';
|
|
7247
|
+
audience?: Maybe<Scalars['String']['output']>;
|
|
7248
|
+
beforeYouBeginTitle?: Maybe<Scalars['String']['output']>;
|
|
7249
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7250
|
+
ctaMicrocopy?: Maybe<ContentPlatformCallToActionMicrocopy>;
|
|
7251
|
+
prerequisite?: Maybe<Scalars['String']['output']>;
|
|
7252
|
+
relatedAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7253
|
+
relatedQuestions?: Maybe<ContentPlatformQuestionComponent>;
|
|
7254
|
+
time?: Maybe<Scalars['String']['output']>;
|
|
7255
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7256
|
+
};
|
|
7237
7257
|
export declare enum ContentPlatformBooleanOperators {
|
|
7238
7258
|
And = "AND",
|
|
7239
7259
|
Or = "OR"
|
|
7240
7260
|
}
|
|
7261
|
+
export declare enum ContentPlatformCacheControlScope {
|
|
7262
|
+
Private = "PRIVATE",
|
|
7263
|
+
Public = "PUBLIC"
|
|
7264
|
+
}
|
|
7265
|
+
export declare type ContentPlatformCallOutComponent = {
|
|
7266
|
+
__typename?: 'ContentPlatformCallOutComponent';
|
|
7267
|
+
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7268
|
+
callOutText?: Maybe<Scalars['String']['output']>;
|
|
7269
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7270
|
+
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7271
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
7272
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7273
|
+
};
|
|
7241
7274
|
export declare type ContentPlatformCallToAction = {
|
|
7242
7275
|
__typename?: 'ContentPlatformCallToAction';
|
|
7243
7276
|
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
@@ -7251,6 +7284,14 @@ export declare type ContentPlatformCallToAction = {
|
|
|
7251
7284
|
url?: Maybe<Scalars['String']['output']>;
|
|
7252
7285
|
valueProposition?: Maybe<Scalars['String']['output']>;
|
|
7253
7286
|
};
|
|
7287
|
+
export declare type ContentPlatformCallToActionMicrocopy = {
|
|
7288
|
+
__typename?: 'ContentPlatformCallToActionMicrocopy';
|
|
7289
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7290
|
+
ctaButtonText?: Maybe<Scalars['String']['output']>;
|
|
7291
|
+
ctaMicrocopyTitle?: Maybe<Scalars['String']['output']>;
|
|
7292
|
+
ctaUrl?: Maybe<Scalars['String']['output']>;
|
|
7293
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7294
|
+
};
|
|
7254
7295
|
export declare type ContentPlatformCategory = {
|
|
7255
7296
|
__typename?: 'ContentPlatformCategory';
|
|
7256
7297
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -7428,8 +7469,6 @@ export declare type ContentPlatformHubArticle = {
|
|
|
7428
7469
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7429
7470
|
urlSlug: Scalars['String']['output'];
|
|
7430
7471
|
};
|
|
7431
|
-
export declare type ContentPlatformHubArticleAndTutorialAndProductFeatureAndFeaturedVideoUnion = ContentPlatformFeaturedVideo | ContentPlatformHubArticle | ContentPlatformProductFeature | ContentPlatformTutorial;
|
|
7432
|
-
export declare type ContentPlatformHubArticleAndTutorialUnion = ContentPlatformHubArticle | ContentPlatformTutorial;
|
|
7433
7472
|
export declare type ContentPlatformImageAsset = {
|
|
7434
7473
|
__typename?: 'ContentPlatformImageAsset';
|
|
7435
7474
|
contentType: Scalars['String']['output'];
|
|
@@ -7463,6 +7502,29 @@ export declare type ContentPlatformMarketplaceApp = {
|
|
|
7463
7502
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7464
7503
|
url: Scalars['String']['output'];
|
|
7465
7504
|
};
|
|
7505
|
+
export declare type ContentPlatformMicroHubArticle = {
|
|
7506
|
+
__typename?: 'ContentPlatformMicroHubArticle';
|
|
7507
|
+
articleBanner?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7508
|
+
articleName?: Maybe<Scalars['String']['output']>;
|
|
7509
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7510
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7511
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
7512
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7513
|
+
urlSlug: Scalars['String']['output'];
|
|
7514
|
+
};
|
|
7515
|
+
export declare type ContentPlatformMicroHubArticleAndMicroTutorialAndProductFeatureAndFeaturedVideoUnion = ContentPlatformFeaturedVideo | ContentPlatformHubArticle | ContentPlatformMicroHubArticle | ContentPlatformMicroTutorial | ContentPlatformProductFeature | ContentPlatformTutorial;
|
|
7516
|
+
export declare type ContentPlatformMicroHubArticleAndMicroTutorialAndTopicOverviewUnion = ContentPlatformHubArticle | ContentPlatformMicroHubArticle | ContentPlatformMicroTutorial | ContentPlatformTopicOverview | ContentPlatformTutorial;
|
|
7517
|
+
export declare type ContentPlatformMicroHubArticleAndMicroTutorialUnion = ContentPlatformHubArticle | ContentPlatformMicroHubArticle | ContentPlatformMicroTutorial | ContentPlatformTutorial;
|
|
7518
|
+
export declare type ContentPlatformMicroTutorial = {
|
|
7519
|
+
__typename?: 'ContentPlatformMicroTutorial';
|
|
7520
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7521
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7522
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
7523
|
+
tutorialBanner?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7524
|
+
tutorialName?: Maybe<Scalars['String']['output']>;
|
|
7525
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7526
|
+
urlSlug: Scalars['String']['output'];
|
|
7527
|
+
};
|
|
7466
7528
|
export declare enum ContentPlatformOperators {
|
|
7467
7529
|
All = "ALL",
|
|
7468
7530
|
Any = "ANY"
|
|
@@ -7521,6 +7583,14 @@ export declare type ContentPlatformProductFeature = {
|
|
|
7521
7583
|
slogan?: Maybe<Scalars['String']['output']>;
|
|
7522
7584
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7523
7585
|
};
|
|
7586
|
+
export declare type ContentPlatformQuestionComponent = {
|
|
7587
|
+
__typename?: 'ContentPlatformQuestionComponent';
|
|
7588
|
+
answer?: Maybe<Scalars['String']['output']>;
|
|
7589
|
+
answerAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7590
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7591
|
+
questionTitle?: Maybe<Scalars['String']['output']>;
|
|
7592
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7593
|
+
};
|
|
7524
7594
|
export declare type ContentPlatformReleaseNote = {
|
|
7525
7595
|
__typename?: 'ContentPlatformReleaseNote';
|
|
7526
7596
|
affectedUsers?: Maybe<Array<ContentPlatformTaxonomyUserRole>>;
|
|
@@ -7632,6 +7702,21 @@ export declare enum ContentPlatformSearchTypes {
|
|
|
7632
7702
|
Contains = "CONTAINS",
|
|
7633
7703
|
ExactMatch = "EXACT_MATCH"
|
|
7634
7704
|
}
|
|
7705
|
+
export declare type ContentPlatformSocialMediaChannel = {
|
|
7706
|
+
__typename?: 'ContentPlatformSocialMediaChannel';
|
|
7707
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7708
|
+
logo?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7709
|
+
socialMediaChannel?: Maybe<Scalars['String']['output']>;
|
|
7710
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7711
|
+
};
|
|
7712
|
+
export declare type ContentPlatformSocialMediaLink = {
|
|
7713
|
+
__typename?: 'ContentPlatformSocialMediaLink';
|
|
7714
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7715
|
+
socialMediaChannel?: Maybe<ContentPlatformSocialMediaChannel>;
|
|
7716
|
+
socialMediaHandle?: Maybe<Scalars['String']['output']>;
|
|
7717
|
+
socialMediaUrl?: Maybe<Scalars['String']['output']>;
|
|
7718
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7719
|
+
};
|
|
7635
7720
|
export declare type ContentPlatformSolution = {
|
|
7636
7721
|
__typename?: 'ContentPlatformSolution';
|
|
7637
7722
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -7670,6 +7755,15 @@ export declare type ContentPlatformStoryComponent = {
|
|
|
7670
7755
|
storyText?: Maybe<Scalars['JSON']['output']>;
|
|
7671
7756
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7672
7757
|
};
|
|
7758
|
+
export declare type ContentPlatformSubscribeComponent = {
|
|
7759
|
+
__typename?: 'ContentPlatformSubscribeComponent';
|
|
7760
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7761
|
+
ctaButtonText?: Maybe<Scalars['String']['output']>;
|
|
7762
|
+
subscribeComponentName?: Maybe<Scalars['String']['output']>;
|
|
7763
|
+
successMessage?: Maybe<Scalars['String']['output']>;
|
|
7764
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7765
|
+
valueProposition?: Maybe<Scalars['String']['output']>;
|
|
7766
|
+
};
|
|
7673
7767
|
export declare type ContentPlatformSupportingConceptWrapper = {
|
|
7674
7768
|
__typename?: 'ContentPlatformSupportingConceptWrapper';
|
|
7675
7769
|
contentComponents?: Maybe<Array<ContentPlatformTextComponentAndAssetComponentAndProTipComponentAndTwitterComponentAndEmbeddedVideoAssetAndCallToActionUnion>>;
|
|
@@ -7909,16 +8003,16 @@ export declare type ContentPlatformTopicOverview = {
|
|
|
7909
8003
|
bodyTextContainer?: Maybe<Array<ContentPlatformSupportingConceptWrapper>>;
|
|
7910
8004
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7911
8005
|
description?: Maybe<Scalars['String']['output']>;
|
|
7912
|
-
featuredContentContainer?: Maybe<Array<
|
|
8006
|
+
featuredContentContainer?: Maybe<Array<ContentPlatformMicroHubArticleAndMicroTutorialAndProductFeatureAndFeaturedVideoUnion>>;
|
|
7913
8007
|
mainCallToAction?: Maybe<ContentPlatformCallToAction>;
|
|
7914
8008
|
name?: Maybe<Scalars['String']['output']>;
|
|
7915
|
-
nextBestAction: Array<
|
|
8009
|
+
nextBestAction: Array<ContentPlatformMicroHubArticleAndMicroTutorialUnion>;
|
|
7916
8010
|
relatedHub: Array<ContentPlatformTaxonomyContentHub>;
|
|
7917
8011
|
subtitle?: Maybe<Scalars['String']['output']>;
|
|
7918
8012
|
title: Scalars['String']['output'];
|
|
7919
8013
|
topicIntroduction?: Maybe<Array<ContentPlatformTopicIntroduction>>;
|
|
7920
8014
|
topicOverviewId: Scalars['String']['output'];
|
|
7921
|
-
upNextFooter?: Maybe<
|
|
8015
|
+
upNextFooter?: Maybe<ContentPlatformMicroHubArticle>;
|
|
7922
8016
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7923
8017
|
urlSlug: Scalars['String']['output'];
|
|
7924
8018
|
};
|
|
@@ -7934,13 +8028,61 @@ export declare type ContentPlatformTopicOverviewResultEdge = {
|
|
|
7934
8028
|
};
|
|
7935
8029
|
export declare type ContentPlatformTutorial = {
|
|
7936
8030
|
__typename?: 'ContentPlatformTutorial';
|
|
8031
|
+
author?: Maybe<ContentPlatformAuthor>;
|
|
8032
|
+
beforeYouBegin?: Maybe<Array<ContentPlatformBeforeYouBeginComponent>>;
|
|
8033
|
+
contentHubSubscribe?: Maybe<Array<ContentPlatformSubscribeComponent>>;
|
|
7937
8034
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7938
8035
|
description?: Maybe<Scalars['String']['output']>;
|
|
8036
|
+
nextBestAction?: Maybe<Array<ContentPlatformMicroHubArticleAndMicroTutorialUnion>>;
|
|
8037
|
+
productDiscussedCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
8038
|
+
relatedHub?: Maybe<Array<ContentPlatformTaxonomyContentHub>>;
|
|
8039
|
+
relatedProductFeatures?: Maybe<Array<ContentPlatformTaxonomyFeature>>;
|
|
8040
|
+
relatedTemplateCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
8041
|
+
shareThisTutorial?: Maybe<Array<ContentPlatformSocialMediaLink>>;
|
|
8042
|
+
subtitle?: Maybe<Scalars['String']['output']>;
|
|
7939
8043
|
title?: Maybe<Scalars['String']['output']>;
|
|
7940
8044
|
tutorialBanner?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
8045
|
+
tutorialInstructions?: Maybe<Array<ContentPlatformTutorialInstructionsWrapper>>;
|
|
8046
|
+
tutorialIntroduction?: Maybe<ContentPlatformTutorialIntroduction>;
|
|
7941
8047
|
tutorialName?: Maybe<Scalars['String']['output']>;
|
|
8048
|
+
tutorialSummary?: Maybe<Scalars['String']['output']>;
|
|
8049
|
+
upNext?: Maybe<ContentPlatformMicroHubArticleAndMicroTutorialAndTopicOverviewUnion>;
|
|
7942
8050
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7943
8051
|
urlSlug: Scalars['String']['output'];
|
|
8052
|
+
whitePaperCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
8053
|
+
};
|
|
8054
|
+
export declare type ContentPlatformTutorialInstructionsWrapper = {
|
|
8055
|
+
__typename?: 'ContentPlatformTutorialInstructionsWrapper';
|
|
8056
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
8057
|
+
tutorialInstructionSteps?: Maybe<Array<ContentPlatformTutorialUseStep>>;
|
|
8058
|
+
tutorialInstructionsTitle?: Maybe<Scalars['String']['output']>;
|
|
8059
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
8060
|
+
};
|
|
8061
|
+
export declare type ContentPlatformTutorialIntroduction = {
|
|
8062
|
+
__typename?: 'ContentPlatformTutorialIntroduction';
|
|
8063
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
8064
|
+
embedLink?: Maybe<Scalars['String']['output']>;
|
|
8065
|
+
tutorialIntroductionAsset: ContentPlatformTemplateImageAsset;
|
|
8066
|
+
tutorialIntroductionDetails?: Maybe<Scalars['String']['output']>;
|
|
8067
|
+
tutorialIntroductionName?: Maybe<Scalars['String']['output']>;
|
|
8068
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
8069
|
+
};
|
|
8070
|
+
export declare type ContentPlatformTutorialResultEdge = {
|
|
8071
|
+
__typename?: 'ContentPlatformTutorialResultEdge';
|
|
8072
|
+
cursor: Scalars['String']['output'];
|
|
8073
|
+
node: ContentPlatformTutorial;
|
|
8074
|
+
};
|
|
8075
|
+
export declare type ContentPlatformTutorialSearchConnection = {
|
|
8076
|
+
__typename?: 'ContentPlatformTutorialSearchConnection';
|
|
8077
|
+
edges: Array<ContentPlatformTutorialResultEdge>;
|
|
8078
|
+
pageInfo: PageInfo;
|
|
8079
|
+
};
|
|
8080
|
+
export declare type ContentPlatformTutorialUseStep = {
|
|
8081
|
+
__typename?: 'ContentPlatformTutorialUseStep';
|
|
8082
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
8083
|
+
tutorialBodyTextContainer?: Maybe<Array<ContentPlatformAssetComponentAndProTipComponentAndTextComponentAndCallToActionAndQuestionComponentAndTwitterComponentAndCallOutComponentUnion>>;
|
|
8084
|
+
tutorialUseStepTitle?: Maybe<Scalars['String']['output']>;
|
|
8085
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7944
8086
|
};
|
|
7945
8087
|
export declare type ContentPlatformTwitterComponent = {
|
|
7946
8088
|
__typename?: 'ContentPlatformTwitterComponent';
|
|
@@ -8143,6 +8285,7 @@ export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
|
8143
8285
|
weight: Scalars['Int']['input'];
|
|
8144
8286
|
};
|
|
8145
8287
|
export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
8288
|
+
automaticallyCreateMetricSources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8146
8289
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
8147
8290
|
comparatorValue: Scalars['Float']['input'];
|
|
8148
8291
|
metricDefinitionId: Scalars['ID']['input'];
|
|
@@ -9757,6 +9900,7 @@ export declare type DevAiAutofixConfigurationsArgs = {
|
|
|
9757
9900
|
workspaceId: Scalars['ID']['input'];
|
|
9758
9901
|
};
|
|
9759
9902
|
export declare type DevAiGetSupportedReposArgs = {
|
|
9903
|
+
filterOption?: InputMaybe<DevAiSupportedRepoFilterOption>;
|
|
9760
9904
|
repoUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
|
|
9761
9905
|
workspaceId: Scalars['ID']['input'];
|
|
9762
9906
|
};
|
|
@@ -9769,10 +9913,14 @@ export declare type DevAiAutofixConfiguration = {
|
|
|
9769
9913
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
9770
9914
|
isScanning?: Maybe<Scalars['Boolean']['output']>;
|
|
9771
9915
|
lastScan?: Maybe<Scalars['DateTime']['output']>;
|
|
9916
|
+
maxPrOpenCount?: Maybe<Scalars['Int']['output']>;
|
|
9772
9917
|
openPullRequestsCount?: Maybe<Scalars['Int']['output']>;
|
|
9773
9918
|
openPullRequestsUrl?: Maybe<Scalars['URL']['output']>;
|
|
9774
9919
|
primaryLanguage?: Maybe<Scalars['String']['output']>;
|
|
9775
9920
|
repoUrl?: Maybe<Scalars['URL']['output']>;
|
|
9921
|
+
scanIntervalFrequency?: Maybe<Scalars['Int']['output']>;
|
|
9922
|
+
scanIntervalUnit?: Maybe<DevAiScanIntervalUnit>;
|
|
9923
|
+
scanStartDate?: Maybe<Scalars['Date']['output']>;
|
|
9776
9924
|
targetCoveragePercentage?: Maybe<Scalars['Int']['output']>;
|
|
9777
9925
|
};
|
|
9778
9926
|
export declare type DevAiAutofixConfigurationConnection = {
|
|
@@ -9805,12 +9953,21 @@ export declare type DevAiMutationsSetAutofixEnabledStateForRepositoryArgs = {
|
|
|
9805
9953
|
export declare type DevAiMutationsTriggerAutofixScanArgs = {
|
|
9806
9954
|
input: DevAiTriggerAutofixScanInput;
|
|
9807
9955
|
};
|
|
9956
|
+
export declare enum DevAiScanIntervalUnit {
|
|
9957
|
+
Days = "DAYS",
|
|
9958
|
+
Months = "MONTHS",
|
|
9959
|
+
Weeks = "WEEKS"
|
|
9960
|
+
}
|
|
9808
9961
|
export declare type DevAiSetAutofixConfigurationForRepositoryInput = {
|
|
9809
9962
|
codeCoverageCommand: Scalars['String']['input'];
|
|
9810
9963
|
codeCoverageReportPath: Scalars['String']['input'];
|
|
9811
9964
|
coveragePercentage: Scalars['Int']['input'];
|
|
9965
|
+
maxPrOpenCount?: InputMaybe<Scalars['Int']['input']>;
|
|
9812
9966
|
primaryLanguage: Scalars['String']['input'];
|
|
9813
9967
|
repoUrl: Scalars['URL']['input'];
|
|
9968
|
+
scanIntervalFrequency?: InputMaybe<Scalars['Int']['input']>;
|
|
9969
|
+
scanIntervalUnit?: InputMaybe<DevAiScanIntervalUnit>;
|
|
9970
|
+
scanStartDate?: InputMaybe<Scalars['Date']['input']>;
|
|
9814
9971
|
workspaceId: Scalars['ID']['input'];
|
|
9815
9972
|
};
|
|
9816
9973
|
export declare type DevAiSetAutofixConfigurationForRepositoryPayload = Payload & {
|
|
@@ -9830,6 +9987,11 @@ export declare type DevAiSetIsAutofixEnabledForRepositoryPayload = Payload & {
|
|
|
9830
9987
|
errors?: Maybe<Array<MutationError>>;
|
|
9831
9988
|
success: Scalars['Boolean']['output'];
|
|
9832
9989
|
};
|
|
9990
|
+
export declare enum DevAiSupportedRepoFilterOption {
|
|
9991
|
+
All = "ALL",
|
|
9992
|
+
DisabledOnly = "DISABLED_ONLY",
|
|
9993
|
+
EnabledOnly = "ENABLED_ONLY"
|
|
9994
|
+
}
|
|
9833
9995
|
export declare type DevAiTriggerAutofixScanInput = {
|
|
9834
9996
|
codeCoverageCommand: Scalars['String']['input'];
|
|
9835
9997
|
codeCoverageReportPath: Scalars['String']['input'];
|
|
@@ -26706,6 +26868,7 @@ export declare type HelpCenterQueryApi = {
|
|
|
26706
26868
|
helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
|
|
26707
26869
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
26708
26870
|
helpCenters?: Maybe<HelpCenterQueryResultConnection>;
|
|
26871
|
+
helpCentersConfig?: Maybe<HelpCentersConfigResult>;
|
|
26709
26872
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
26710
26873
|
helpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
26711
26874
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
@@ -26730,6 +26893,9 @@ export declare type HelpCenterQueryApiHelpCentersArgs = {
|
|
|
26730
26893
|
sortOrder: HelpCenterSortOrder;
|
|
26731
26894
|
workspaceAri: Scalars['ID']['input'];
|
|
26732
26895
|
};
|
|
26896
|
+
export declare type HelpCenterQueryApiHelpCentersConfigArgs = {
|
|
26897
|
+
workspaceAri: Scalars['ID']['input'];
|
|
26898
|
+
};
|
|
26733
26899
|
export declare type HelpCenterQueryApiHelpCentersListArgs = {
|
|
26734
26900
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26735
26901
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -26876,6 +27042,11 @@ export declare type HelpCenterUpdateTopicsOrderPayload = Payload & {
|
|
|
26876
27042
|
errors?: Maybe<Array<MutationError>>;
|
|
26877
27043
|
success: Scalars['Boolean']['output'];
|
|
26878
27044
|
};
|
|
27045
|
+
export declare type HelpCentersConfig = {
|
|
27046
|
+
__typename?: 'HelpCentersConfig';
|
|
27047
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
27048
|
+
};
|
|
27049
|
+
export declare type HelpCentersConfigResult = HelpCentersConfig | QueryError;
|
|
26879
27050
|
export declare type HelpCentersListQueryResult = HelpCenterQueryResultConnection | QueryError;
|
|
26880
27051
|
export declare type HelpExternalResource = Node & {
|
|
26881
27052
|
__typename?: 'HelpExternalResource';
|
|
@@ -28968,7 +29139,7 @@ export declare type JiraAppNavigationConfig = {
|
|
|
28968
29139
|
};
|
|
28969
29140
|
export declare type JiraAppNavigationItem = JiraAppNavigationConfig & JiraNavigationItem & Node & {
|
|
28970
29141
|
__typename?: 'JiraAppNavigationItem';
|
|
28971
|
-
appId?: Maybe<Scalars['
|
|
29142
|
+
appId?: Maybe<Scalars['ID']['output']>;
|
|
28972
29143
|
appType?: Maybe<JiraAppType>;
|
|
28973
29144
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
28974
29145
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -28989,6 +29160,14 @@ export declare type JiraAppNavigationItemNestedLink = JiraAppNavigationConfig &
|
|
|
28989
29160
|
styleClass?: Maybe<Scalars['String']['output']>;
|
|
28990
29161
|
url?: Maybe<Scalars['String']['output']>;
|
|
28991
29162
|
};
|
|
29163
|
+
export declare type JiraAppNavigationItemType = JiraNavigationItemType & Node & {
|
|
29164
|
+
__typename?: 'JiraAppNavigationItemType';
|
|
29165
|
+
appId?: Maybe<Scalars['ID']['output']>;
|
|
29166
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
29167
|
+
id: Scalars['ID']['output'];
|
|
29168
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
29169
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
29170
|
+
};
|
|
28992
29171
|
export declare type JiraAppSection = {
|
|
28993
29172
|
__typename?: 'JiraAppSection';
|
|
28994
29173
|
hasSeparator?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -29036,6 +29215,34 @@ export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestPayload = Payl
|
|
|
29036
29215
|
errors?: Maybe<Array<MutationError>>;
|
|
29037
29216
|
success: Scalars['Boolean']['output'];
|
|
29038
29217
|
};
|
|
29218
|
+
export declare type JiraArchivedIssue = {
|
|
29219
|
+
__typename?: 'JiraArchivedIssue';
|
|
29220
|
+
archivedBy?: Maybe<User>;
|
|
29221
|
+
archivedDate?: Maybe<Scalars['Date']['output']>;
|
|
29222
|
+
fields?: Maybe<JiraIssueFieldConnection>;
|
|
29223
|
+
id: Scalars['ID']['output'];
|
|
29224
|
+
issueId: Scalars['String']['output'];
|
|
29225
|
+
key: Scalars['String']['output'];
|
|
29226
|
+
};
|
|
29227
|
+
export declare type JiraArchivedIssueConnection = {
|
|
29228
|
+
__typename?: 'JiraArchivedIssueConnection';
|
|
29229
|
+
edges?: Maybe<Array<Maybe<JiraArchivedIssueEdge>>>;
|
|
29230
|
+
pageInfo: PageInfo;
|
|
29231
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
29232
|
+
};
|
|
29233
|
+
export declare type JiraArchivedIssueEdge = {
|
|
29234
|
+
__typename?: 'JiraArchivedIssueEdge';
|
|
29235
|
+
cursor: Scalars['String']['output'];
|
|
29236
|
+
node?: Maybe<JiraArchivedIssue>;
|
|
29237
|
+
};
|
|
29238
|
+
export declare type JiraArchivedIssuesFilterInput = {
|
|
29239
|
+
byArchivedBy?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
29240
|
+
byAssignee?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
29241
|
+
byCreatedOn?: InputMaybe<Scalars['Date']['input']>;
|
|
29242
|
+
byIssueType?: InputMaybe<Array<InputMaybe<JiraIssueTypeInput>>>;
|
|
29243
|
+
byProject?: InputMaybe<Scalars['String']['input']>;
|
|
29244
|
+
byReporter?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
29245
|
+
};
|
|
29039
29246
|
export declare type JiraAsset = {
|
|
29040
29247
|
__typename?: 'JiraAsset';
|
|
29041
29248
|
appKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -29098,6 +29305,17 @@ export declare type JiraAssignRelatedWorkPayload = Payload & {
|
|
|
29098
29305
|
relatedWork?: Maybe<JiraVersionRelatedWorkV2>;
|
|
29099
29306
|
success: Scalars['Boolean']['output'];
|
|
29100
29307
|
};
|
|
29308
|
+
export declare type JiraAssignableUsersConnection = HasPageInfo & HasTotal & {
|
|
29309
|
+
__typename?: 'JiraAssignableUsersConnection';
|
|
29310
|
+
edges?: Maybe<Array<Maybe<JiraAssignableUsersEdge>>>;
|
|
29311
|
+
pageInfo: PageInfo;
|
|
29312
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
29313
|
+
};
|
|
29314
|
+
export declare type JiraAssignableUsersEdge = {
|
|
29315
|
+
__typename?: 'JiraAssignableUsersEdge';
|
|
29316
|
+
cursor: Scalars['String']['output'];
|
|
29317
|
+
node?: Maybe<User>;
|
|
29318
|
+
};
|
|
29101
29319
|
export declare type JiraAtlassianIntelligenceAction = JiraAccessAtlassianIntelligenceFeature | JiraContactOrgAdminToEnableAtlassianIntelligence | JiraEnableAtlassianIntelligenceDeepLink;
|
|
29102
29320
|
export declare enum JiraAtlassianIntelligenceFeatureEnum {
|
|
29103
29321
|
AiMate = "AI_MATE",
|
|
@@ -29291,10 +29509,13 @@ export declare type JiraAutodevCreateJobPayload = Payload & {
|
|
|
29291
29509
|
};
|
|
29292
29510
|
export declare type JiraAutodevJob = {
|
|
29293
29511
|
__typename?: 'JiraAutodevJob';
|
|
29512
|
+
branchName?: Maybe<Scalars['String']['output']>;
|
|
29513
|
+
branchUrl?: Maybe<Scalars['String']['output']>;
|
|
29294
29514
|
codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
|
|
29295
29515
|
currentWorkflow?: Maybe<Scalars['String']['output']>;
|
|
29296
29516
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
29297
29517
|
id: Scalars['ID']['output'];
|
|
29518
|
+
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
29298
29519
|
plan?: Maybe<JiraAutodevPlan>;
|
|
29299
29520
|
progressText?: Maybe<Scalars['String']['output']>;
|
|
29300
29521
|
pullRequests?: Maybe<JiraAutodevPullRequestConnection>;
|
|
@@ -29820,17 +30041,6 @@ export declare type JiraCannedResponseUpdatePayload = Payload & {
|
|
|
29820
30041
|
jiraCannedResponse?: Maybe<JiraCannedResponse>;
|
|
29821
30042
|
success: Scalars['Boolean']['output'];
|
|
29822
30043
|
};
|
|
29823
|
-
export declare type JiraCardCoversProjectToggleInput = {
|
|
29824
|
-
cardCoversEnabled: Scalars['Boolean']['input'];
|
|
29825
|
-
cloudId: Scalars['ID']['input'];
|
|
29826
|
-
projectIdOrKey: Scalars['String']['input'];
|
|
29827
|
-
};
|
|
29828
|
-
export declare type JiraCardCoversProjectTogglePayload = Payload & {
|
|
29829
|
-
__typename?: 'JiraCardCoversProjectTogglePayload';
|
|
29830
|
-
cardCoversEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
29831
|
-
errors?: Maybe<Array<MutationError>>;
|
|
29832
|
-
success: Scalars['Boolean']['output'];
|
|
29833
|
-
};
|
|
29834
30044
|
export declare type JiraCascadingOption = {
|
|
29835
30045
|
__typename?: 'JiraCascadingOption';
|
|
29836
30046
|
childOptionValue?: Maybe<JiraOption>;
|
|
@@ -30551,6 +30761,10 @@ export declare type JiraCreateAgileReleaseTrainPayload = Payload & {
|
|
|
30551
30761
|
errors?: Maybe<Array<MutationError>>;
|
|
30552
30762
|
success: Scalars['Boolean']['output'];
|
|
30553
30763
|
};
|
|
30764
|
+
export declare type JiraCreateAppNavigationItemInput = {
|
|
30765
|
+
appId: Scalars['ID']['input'];
|
|
30766
|
+
scopeId: Scalars['ID']['input'];
|
|
30767
|
+
};
|
|
30554
30768
|
export declare type JiraCreateApproverListFieldInput = {
|
|
30555
30769
|
fieldName: Scalars['String']['input'];
|
|
30556
30770
|
projectId: Scalars['Int']['input'];
|
|
@@ -30594,6 +30808,12 @@ export declare type JiraCreateLargeSolutionPayload = Payload & {
|
|
|
30594
30808
|
largeSolution?: Maybe<JiraLargeSolution>;
|
|
30595
30809
|
success: Scalars['Boolean']['output'];
|
|
30596
30810
|
};
|
|
30811
|
+
export declare type JiraCreateNavigationItemPayload = Payload & {
|
|
30812
|
+
__typename?: 'JiraCreateNavigationItemPayload';
|
|
30813
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30814
|
+
navigationItem?: Maybe<JiraNavigationItem>;
|
|
30815
|
+
success: Scalars['Boolean']['output'];
|
|
30816
|
+
};
|
|
30597
30817
|
export declare type JiraCreatePlanInput = {
|
|
30598
30818
|
cloudId: Scalars['ID']['input'];
|
|
30599
30819
|
};
|
|
@@ -30640,6 +30860,10 @@ export declare type JiraCreateShortcutInput = {
|
|
|
30640
30860
|
shortcutData: JiraShortcutDataInput;
|
|
30641
30861
|
type: JiraProjectShortcutType;
|
|
30642
30862
|
};
|
|
30863
|
+
export declare type JiraCreateSimpleNavigationItemInput = {
|
|
30864
|
+
scopeId: Scalars['ID']['input'];
|
|
30865
|
+
typeKey: JiraNavigationItemTypeKey;
|
|
30866
|
+
};
|
|
30643
30867
|
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
30644
30868
|
__typename?: 'JiraCustomFilter';
|
|
30645
30869
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -31308,6 +31532,7 @@ export declare type JiraFavouriteEdge = {
|
|
|
31308
31532
|
node?: Maybe<JiraFavourite>;
|
|
31309
31533
|
};
|
|
31310
31534
|
export declare type JiraFavouriteFilter = {
|
|
31535
|
+
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
31311
31536
|
type?: InputMaybe<JiraFavouriteType>;
|
|
31312
31537
|
types?: InputMaybe<Array<JiraFavouriteType>>;
|
|
31313
31538
|
};
|
|
@@ -31948,6 +32173,7 @@ export declare type JiraIssue = Node & {
|
|
|
31948
32173
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
31949
32174
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
31950
32175
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
32176
|
+
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
31951
32177
|
hasRelationshipToVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
31952
32178
|
hierarchyLevelAbove?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
31953
32179
|
hierarchyLevelBelow?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
@@ -31974,7 +32200,6 @@ export declare type JiraIssue = Node & {
|
|
|
31974
32200
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
31975
32201
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
31976
32202
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
31977
|
-
shadowFieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
31978
32203
|
smartSummary?: Maybe<JiraAdf>;
|
|
31979
32204
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
31980
32205
|
statusField?: Maybe<JiraStatusField>;
|
|
@@ -32057,6 +32282,9 @@ export declare type JiraIssueFieldsByIdOrAliasArgs = {
|
|
|
32057
32282
|
idsOrAliases: Array<InputMaybe<Scalars['String']['input']>>;
|
|
32058
32283
|
ignoreMissingFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32059
32284
|
};
|
|
32285
|
+
export declare type JiraIssueHasProjectPermissionArgs = {
|
|
32286
|
+
permission: JiraProjectPermissionType;
|
|
32287
|
+
};
|
|
32060
32288
|
export declare type JiraIssueHasRelationshipToVersionArgs = {
|
|
32061
32289
|
versionId: Scalars['ID']['input'];
|
|
32062
32290
|
};
|
|
@@ -32082,14 +32310,6 @@ export declare type JiraIssueProjectRoleCommentVisibilitiesArgs = {
|
|
|
32082
32310
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32083
32311
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32084
32312
|
};
|
|
32085
|
-
export declare type JiraIssueShadowFieldSetsForIssueSearchViewArgs = {
|
|
32086
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32087
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
32088
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32089
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32090
|
-
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
32091
|
-
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
32092
|
-
};
|
|
32093
32313
|
export declare type JiraIssueSuggestFieldValuesArgs = {
|
|
32094
32314
|
filterProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
32095
32315
|
};
|
|
@@ -32833,8 +33053,14 @@ export declare type JiraIssueSearchCustomInput = {
|
|
|
32833
33053
|
jiraSoftwareInput?: InputMaybe<JiraSoftwareIssueSearchCustomInput>;
|
|
32834
33054
|
};
|
|
32835
33055
|
export declare type JiraIssueSearchError = JiraCustomIssueSearchError | JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
|
|
33056
|
+
export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
|
|
33057
|
+
__typename?: 'JiraIssueSearchErrorExtension';
|
|
33058
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
33059
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
33060
|
+
};
|
|
32836
33061
|
export declare type JiraIssueSearchFieldSet = {
|
|
32837
33062
|
__typename?: 'JiraIssueSearchFieldSet';
|
|
33063
|
+
aliases?: Maybe<Array<Scalars['String']['output']>>;
|
|
32838
33064
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
32839
33065
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
32840
33066
|
fieldSetId?: Maybe<Scalars['String']['output']>;
|
|
@@ -32919,6 +33145,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
32919
33145
|
success: Scalars['Boolean']['output'];
|
|
32920
33146
|
view?: Maybe<JiraIssueSearchView>;
|
|
32921
33147
|
};
|
|
33148
|
+
export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
32922
33149
|
export declare type JiraIssueTransitionComment = {
|
|
32923
33150
|
__typename?: 'JiraIssueTransitionComment';
|
|
32924
33151
|
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
@@ -34139,6 +34366,7 @@ export declare type JiraMutation = {
|
|
|
34139
34366
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
34140
34367
|
createAgileReleaseTrain?: Maybe<JiraCreateAgileReleaseTrainPayload>;
|
|
34141
34368
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
34369
|
+
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
34142
34370
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
34143
34371
|
createCalendarIssue?: Maybe<JiraCreateCalendarIssuePayload>;
|
|
34144
34372
|
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
@@ -34151,6 +34379,7 @@ export declare type JiraMutation = {
|
|
|
34151
34379
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
34152
34380
|
createSafeGlobalData?: Maybe<JiraCreateSafeGlobalDataPayload>;
|
|
34153
34381
|
createSafePlan?: Maybe<JiraCreatePlanPayload>;
|
|
34382
|
+
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
34154
34383
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
34155
34384
|
deleteIssueLink?: Maybe<JiraDeleteIssueLinkPayload>;
|
|
34156
34385
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
@@ -34197,7 +34426,6 @@ export declare type JiraMutation = {
|
|
|
34197
34426
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
34198
34427
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
34199
34428
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
34200
|
-
toggleJiraProjectCardCovers?: Maybe<JiraCardCoversProjectTogglePayload>;
|
|
34201
34429
|
unlinkIssuesFromIncident?: Maybe<JiraUnlinkIssuesFromIncidentMutationPayload>;
|
|
34202
34430
|
updateAttachmentField?: Maybe<JiraAttachmentFieldPayload>;
|
|
34203
34431
|
updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
|
|
@@ -34295,6 +34523,9 @@ export declare type JiraMutationCreateAgileReleaseTrainArgs = {
|
|
|
34295
34523
|
export declare type JiraMutationCreateAndAssociateWorkflowFromJsmTemplateArgs = {
|
|
34296
34524
|
input: JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput;
|
|
34297
34525
|
};
|
|
34526
|
+
export declare type JiraMutationCreateAppNavigationItemArgs = {
|
|
34527
|
+
input: JiraCreateAppNavigationItemInput;
|
|
34528
|
+
};
|
|
34298
34529
|
export declare type JiraMutationCreateApproverListFieldArgs = {
|
|
34299
34530
|
cloudId: Scalars['ID']['input'];
|
|
34300
34531
|
input: JiraCreateApproverListFieldInput;
|
|
@@ -34339,6 +34570,9 @@ export declare type JiraMutationCreateSafeGlobalDataArgs = {
|
|
|
34339
34570
|
export declare type JiraMutationCreateSafePlanArgs = {
|
|
34340
34571
|
input: JiraCreatePlanInput;
|
|
34341
34572
|
};
|
|
34573
|
+
export declare type JiraMutationCreateSimpleNavigationItemArgs = {
|
|
34574
|
+
input: JiraCreateSimpleNavigationItemInput;
|
|
34575
|
+
};
|
|
34342
34576
|
export declare type JiraMutationDeleteGlobalPermissionGrantArgs = {
|
|
34343
34577
|
cloudId: Scalars['ID']['input'];
|
|
34344
34578
|
input: JiraGlobalPermissionDeleteGroupGrantInput;
|
|
@@ -34484,9 +34718,6 @@ export declare type JiraMutationSubmitBulkOperationArgs = {
|
|
|
34484
34718
|
cloudId: Scalars['ID']['input'];
|
|
34485
34719
|
input: JiraSubmitBulkOperationInput;
|
|
34486
34720
|
};
|
|
34487
|
-
export declare type JiraMutationToggleJiraProjectCardCoversArgs = {
|
|
34488
|
-
input?: InputMaybe<JiraCardCoversProjectToggleInput>;
|
|
34489
|
-
};
|
|
34490
34721
|
export declare type JiraMutationUnlinkIssuesFromIncidentArgs = {
|
|
34491
34722
|
input: JiraUnlinkIssuesFromIncidentMutationInput;
|
|
34492
34723
|
};
|
|
@@ -34713,6 +34944,23 @@ export declare type JiraNavigationItemEdge = {
|
|
|
34713
34944
|
cursor: Scalars['String']['output'];
|
|
34714
34945
|
node?: Maybe<JiraNavigationItem>;
|
|
34715
34946
|
};
|
|
34947
|
+
export declare type JiraNavigationItemResult = JiraAppNavigationItem | JiraShortcutNavigationItem | JiraSoftwareBuiltInNavigationItem | JiraWorkManagementSavedView | QueryError;
|
|
34948
|
+
export declare type JiraNavigationItemType = {
|
|
34949
|
+
id: Scalars['ID']['output'];
|
|
34950
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
34951
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
34952
|
+
};
|
|
34953
|
+
export declare type JiraNavigationItemTypeConnection = HasPageInfo & {
|
|
34954
|
+
__typename?: 'JiraNavigationItemTypeConnection';
|
|
34955
|
+
edges?: Maybe<Array<Maybe<JiraNavigationItemTypeEdge>>>;
|
|
34956
|
+
errors?: Maybe<Array<QueryError>>;
|
|
34957
|
+
pageInfo: PageInfo;
|
|
34958
|
+
};
|
|
34959
|
+
export declare type JiraNavigationItemTypeEdge = {
|
|
34960
|
+
__typename?: 'JiraNavigationItemTypeEdge';
|
|
34961
|
+
cursor: Scalars['String']['output'];
|
|
34962
|
+
node?: Maybe<JiraNavigationItemType>;
|
|
34963
|
+
};
|
|
34716
34964
|
export declare enum JiraNavigationItemTypeKey {
|
|
34717
34965
|
App = "APP",
|
|
34718
34966
|
Approvals = "APPROVALS",
|
|
@@ -35537,6 +35785,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
35537
35785
|
export declare type JiraProject = Node & {
|
|
35538
35786
|
__typename?: 'JiraProject';
|
|
35539
35787
|
action?: Maybe<JiraProjectAction>;
|
|
35788
|
+
assignableUsers?: Maybe<JiraAssignableUsersConnection>;
|
|
35540
35789
|
associatedComponents?: Maybe<GraphGenericConnection>;
|
|
35541
35790
|
associatedJsmProjectsByComponent?: Maybe<GraphJiraProjectConnection>;
|
|
35542
35791
|
associatedServices?: Maybe<GraphProjectServiceConnection>;
|
|
@@ -35600,6 +35849,12 @@ export declare type JiraProject = Node & {
|
|
|
35600
35849
|
export declare type JiraProjectActionArgs = {
|
|
35601
35850
|
type: JiraProjectActionType;
|
|
35602
35851
|
};
|
|
35852
|
+
export declare type JiraProjectAssignableUsersArgs = {
|
|
35853
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35854
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35855
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35856
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35857
|
+
};
|
|
35603
35858
|
export declare type JiraProjectAssociatedComponentsArgs = {
|
|
35604
35859
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35605
35860
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -36065,6 +36320,42 @@ export declare enum JiraProjectPermissionCategoryEnum {
|
|
|
36065
36320
|
TimeTracking = "TIME_TRACKING",
|
|
36066
36321
|
VotersAndWatchers = "VOTERS_AND_WATCHERS"
|
|
36067
36322
|
}
|
|
36323
|
+
export declare enum JiraProjectPermissionType {
|
|
36324
|
+
AddComments = "ADD_COMMENTS",
|
|
36325
|
+
AdministerProjects = "ADMINISTER_PROJECTS",
|
|
36326
|
+
AssignableUser = "ASSIGNABLE_USER",
|
|
36327
|
+
AssignIssues = "ASSIGN_ISSUES",
|
|
36328
|
+
BrowseProjects = "BROWSE_PROJECTS",
|
|
36329
|
+
CloseIssues = "CLOSE_ISSUES",
|
|
36330
|
+
CreateAttachments = "CREATE_ATTACHMENTS",
|
|
36331
|
+
CreateIssues = "CREATE_ISSUES",
|
|
36332
|
+
DeleteAllAttachments = "DELETE_ALL_ATTACHMENTS",
|
|
36333
|
+
DeleteAllComments = "DELETE_ALL_COMMENTS",
|
|
36334
|
+
DeleteAllWorklogs = "DELETE_ALL_WORKLOGS",
|
|
36335
|
+
DeleteIssues = "DELETE_ISSUES",
|
|
36336
|
+
DeleteOwnAttachments = "DELETE_OWN_ATTACHMENTS",
|
|
36337
|
+
DeleteOwnComments = "DELETE_OWN_COMMENTS",
|
|
36338
|
+
DeleteOwnWorklogs = "DELETE_OWN_WORKLOGS",
|
|
36339
|
+
EditAllComments = "EDIT_ALL_COMMENTS",
|
|
36340
|
+
EditAllWorklogs = "EDIT_ALL_WORKLOGS",
|
|
36341
|
+
EditIssues = "EDIT_ISSUES",
|
|
36342
|
+
EditIssueLayout = "EDIT_ISSUE_LAYOUT",
|
|
36343
|
+
EditOwnComments = "EDIT_OWN_COMMENTS",
|
|
36344
|
+
EditOwnWorklogs = "EDIT_OWN_WORKLOGS",
|
|
36345
|
+
EditWorkflow = "EDIT_WORKFLOW",
|
|
36346
|
+
LinkIssues = "LINK_ISSUES",
|
|
36347
|
+
ManageWatchers = "MANAGE_WATCHERS",
|
|
36348
|
+
ModifyReporter = "MODIFY_REPORTER",
|
|
36349
|
+
MoveIssues = "MOVE_ISSUES",
|
|
36350
|
+
ResolveIssues = "RESOLVE_ISSUES",
|
|
36351
|
+
ScheduleIssues = "SCHEDULE_ISSUES",
|
|
36352
|
+
SetIssueSecurity = "SET_ISSUE_SECURITY",
|
|
36353
|
+
TransitionIssues = "TRANSITION_ISSUES",
|
|
36354
|
+
ViewDevTools = "VIEW_DEV_TOOLS",
|
|
36355
|
+
ViewReadonlyWorkflow = "VIEW_READONLY_WORKFLOW",
|
|
36356
|
+
ViewVotersAndWatchers = "VIEW_VOTERS_AND_WATCHERS",
|
|
36357
|
+
WorkOnIssues = "WORK_ON_ISSUES"
|
|
36358
|
+
}
|
|
36068
36359
|
export declare type JiraProjectRoleActorLogTableEntry = {
|
|
36069
36360
|
__typename?: 'JiraProjectRoleActorLogTableEntry';
|
|
36070
36361
|
executedBy?: Maybe<User>;
|
|
@@ -36202,6 +36493,7 @@ export declare enum JiraPullRequestState {
|
|
|
36202
36493
|
}
|
|
36203
36494
|
export declare type JiraQuery = {
|
|
36204
36495
|
__typename?: 'JiraQuery';
|
|
36496
|
+
addableNavigationItemTypes?: Maybe<JiraNavigationItemTypeConnection>;
|
|
36205
36497
|
advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
|
|
36206
36498
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
36207
36499
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
@@ -36235,6 +36527,7 @@ export declare type JiraQuery = {
|
|
|
36235
36527
|
filter?: Maybe<JiraFilter>;
|
|
36236
36528
|
filters?: Maybe<Array<Maybe<JiraFilter>>>;
|
|
36237
36529
|
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
36530
|
+
getArchivedIssues?: Maybe<JiraArchivedIssueConnection>;
|
|
36238
36531
|
getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
|
|
36239
36532
|
getIssueTransitionByIssueId?: Maybe<JiraIssueTransitionModal>;
|
|
36240
36533
|
getIssueTransitionByIssueKey?: Maybe<JiraIssueTransitionModal>;
|
|
@@ -36269,6 +36562,7 @@ export declare type JiraQuery = {
|
|
|
36269
36562
|
issueSearchTotalCount?: Maybe<Scalars['Int']['output']>;
|
|
36270
36563
|
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
36271
36564
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
36565
|
+
issueSearchViewResult?: Maybe<JiraIssueSearchViewResult>;
|
|
36272
36566
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
36273
36567
|
jiraBulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenResponse>;
|
|
36274
36568
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
@@ -36304,6 +36598,10 @@ export declare type JiraQuery = {
|
|
|
36304
36598
|
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
36305
36599
|
mediaExternalEndpointUrl?: Maybe<Scalars['String']['output']>;
|
|
36306
36600
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
36601
|
+
navigationItem?: Maybe<JiraNavigationItemResult>;
|
|
36602
|
+
navigationItemByProjectKeyAndItemId?: Maybe<JiraNavigationItemResult>;
|
|
36603
|
+
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
36604
|
+
navigationItemsByProjectKey?: Maybe<JiraNavigationItemConnection>;
|
|
36307
36605
|
navigationUIState?: Maybe<JiraNavigationUiStateUserProperty>;
|
|
36308
36606
|
notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
|
|
36309
36607
|
notificationProjectPreference?: Maybe<JiraNotificationProjectPreferences>;
|
|
@@ -36349,6 +36647,11 @@ export declare type JiraQuery = {
|
|
|
36349
36647
|
versionsForProjects?: Maybe<JiraVersionConnection>;
|
|
36350
36648
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
36351
36649
|
};
|
|
36650
|
+
export declare type JiraQueryAddableNavigationItemTypesArgs = {
|
|
36651
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36652
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36653
|
+
scopeId: Scalars['ID']['input'];
|
|
36654
|
+
};
|
|
36352
36655
|
export declare type JiraQueryAdvancedRoadmapsNavigationArgs = {
|
|
36353
36656
|
cloudId: Scalars['ID']['input'];
|
|
36354
36657
|
};
|
|
@@ -36510,6 +36813,14 @@ export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
|
36510
36813
|
tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
36511
36814
|
templateId?: InputMaybe<Scalars['String']['input']>;
|
|
36512
36815
|
};
|
|
36816
|
+
export declare type JiraQueryGetArchivedIssuesArgs = {
|
|
36817
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36818
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
36819
|
+
filterBy?: InputMaybe<JiraArchivedIssuesFilterInput>;
|
|
36820
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36821
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
36822
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
36823
|
+
};
|
|
36513
36824
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
36514
36825
|
cloudId: Scalars['ID']['input'];
|
|
36515
36826
|
};
|
|
@@ -36665,6 +36976,12 @@ export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
|
36665
36976
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
36666
36977
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
36667
36978
|
};
|
|
36979
|
+
export declare type JiraQueryIssueSearchViewResultArgs = {
|
|
36980
|
+
cloudId: Scalars['ID']['input'];
|
|
36981
|
+
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
36982
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
36983
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
36984
|
+
};
|
|
36668
36985
|
export declare type JiraQueryIssuesByKeyArgs = {
|
|
36669
36986
|
cloudId: Scalars['ID']['input'];
|
|
36670
36987
|
keys: Array<Scalars['String']['input']>;
|
|
@@ -36820,6 +37137,25 @@ export declare type JiraQueryNaturalLanguageToJqlArgs = {
|
|
|
36820
37137
|
cloudId: Scalars['ID']['input'];
|
|
36821
37138
|
input: JiraNaturalLanguageToJqlInput;
|
|
36822
37139
|
};
|
|
37140
|
+
export declare type JiraQueryNavigationItemArgs = {
|
|
37141
|
+
id: Scalars['ID']['input'];
|
|
37142
|
+
};
|
|
37143
|
+
export declare type JiraQueryNavigationItemByProjectKeyAndItemIdArgs = {
|
|
37144
|
+
cloudId: Scalars['ID']['input'];
|
|
37145
|
+
itemId: Scalars['ID']['input'];
|
|
37146
|
+
projectKey: Scalars['String']['input'];
|
|
37147
|
+
};
|
|
37148
|
+
export declare type JiraQueryNavigationItemsArgs = {
|
|
37149
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37150
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37151
|
+
scopeId: Scalars['ID']['input'];
|
|
37152
|
+
};
|
|
37153
|
+
export declare type JiraQueryNavigationItemsByProjectKeyArgs = {
|
|
37154
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37155
|
+
cloudId: Scalars['ID']['input'];
|
|
37156
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37157
|
+
projectKey: Scalars['String']['input'];
|
|
37158
|
+
};
|
|
36823
37159
|
export declare type JiraQueryNavigationUiStateArgs = {
|
|
36824
37160
|
cloudId: Scalars['ID']['input'];
|
|
36825
37161
|
};
|
|
@@ -38775,6 +39111,12 @@ export declare type JiraSimilarIssues = {
|
|
|
38775
39111
|
__typename?: 'JiraSimilarIssues';
|
|
38776
39112
|
featureEnabled: Scalars['Boolean']['output'];
|
|
38777
39113
|
};
|
|
39114
|
+
export declare type JiraSimpleNavigationItemType = JiraNavigationItemType & Node & {
|
|
39115
|
+
__typename?: 'JiraSimpleNavigationItemType';
|
|
39116
|
+
id: Scalars['ID']['output'];
|
|
39117
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
39118
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
39119
|
+
};
|
|
38778
39120
|
export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38779
39121
|
__typename?: 'JiraSingleGroupPickerField';
|
|
38780
39122
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -41273,6 +41615,9 @@ export declare type JsmChatDisconnectJiraProjectResponse = {
|
|
|
41273
41615
|
message: Scalars['String']['output'];
|
|
41274
41616
|
status: Scalars['Boolean']['output'];
|
|
41275
41617
|
};
|
|
41618
|
+
export declare type JsmChatDisconnectMsTeamsJiraProjectInput = {
|
|
41619
|
+
tenantId: Scalars['String']['input'];
|
|
41620
|
+
};
|
|
41276
41621
|
export declare type JsmChatInitializeConfigRequest = {
|
|
41277
41622
|
activationId: Scalars['ID']['input'];
|
|
41278
41623
|
projectId: Scalars['ID']['input'];
|
|
@@ -41330,6 +41675,7 @@ export declare type JsmChatMutation = {
|
|
|
41330
41675
|
createChannel: JsmChatCreateChannelOutput;
|
|
41331
41676
|
createComment?: Maybe<JsmChatCreateCommentOutput>;
|
|
41332
41677
|
disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
41678
|
+
disconnectMsTeamsJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
41333
41679
|
updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
|
|
41334
41680
|
updateMsTeamsChannelSettings: JsmChatUpdateMsTeamsChannelSettingsOutput;
|
|
41335
41681
|
updateMsTeamsProjectSettings: JsmChatUpdateMsTeamsProjectSettingsOutput;
|
|
@@ -41347,6 +41693,10 @@ export declare type JsmChatMutationCreateCommentArgs = {
|
|
|
41347
41693
|
export declare type JsmChatMutationDisconnectJiraProjectArgs = {
|
|
41348
41694
|
input: JsmChatDisconnectJiraProjectInput;
|
|
41349
41695
|
};
|
|
41696
|
+
export declare type JsmChatMutationDisconnectMsTeamsJiraProjectArgs = {
|
|
41697
|
+
input?: InputMaybe<JsmChatDisconnectMsTeamsJiraProjectInput>;
|
|
41698
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
41699
|
+
};
|
|
41350
41700
|
export declare type JsmChatMutationUpdateChannelSettingsArgs = {
|
|
41351
41701
|
input: JsmChatUpdateChannelSettingsInput;
|
|
41352
41702
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -42812,7 +43162,6 @@ export declare type MercuryQueryApi = {
|
|
|
42812
43162
|
focusAreaTypes: Array<MercuryFocusAreaType>;
|
|
42813
43163
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
42814
43164
|
focusAreasByCloudId?: Maybe<MercuryFocusAreaConnection>;
|
|
42815
|
-
goalProgressStatuses?: Maybe<MercuryGoalStatusCount>;
|
|
42816
43165
|
};
|
|
42817
43166
|
export declare type MercuryQueryApiFocusAreaArgs = {
|
|
42818
43167
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -42834,9 +43183,6 @@ export declare type MercuryQueryApiFocusAreasByCloudIdArgs = {
|
|
|
42834
43183
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
42835
43184
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
42836
43185
|
};
|
|
42837
|
-
export declare type MercuryQueryApiGoalProgressStatusesArgs = {
|
|
42838
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
42839
|
-
};
|
|
42840
43186
|
export declare type MercuryUpdateNoteInput = {
|
|
42841
43187
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42842
43188
|
summary: Scalars['String']['input'];
|
|
@@ -45792,6 +46138,8 @@ export declare type Query = {
|
|
|
45792
46138
|
topicOverviews: ContentPlatformTopicOverviewContentSearchConnection;
|
|
45793
46139
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
45794
46140
|
trello: TrelloQueryApi;
|
|
46141
|
+
tutorial?: Maybe<ContentPlatformTutorial>;
|
|
46142
|
+
tutorials: ContentPlatformTutorialSearchConnection;
|
|
45795
46143
|
unified?: Maybe<UnifiedQuery>;
|
|
45796
46144
|
user?: Maybe<User>;
|
|
45797
46145
|
users?: Maybe<Array<User>>;
|
|
@@ -46230,6 +46578,13 @@ export declare type QueryTopicOverviewArgs = {
|
|
|
46230
46578
|
export declare type QueryTopicOverviewsArgs = {
|
|
46231
46579
|
search: ContentPlatformSearchApIv2Query;
|
|
46232
46580
|
};
|
|
46581
|
+
export declare type QueryTutorialArgs = {
|
|
46582
|
+
id: Scalars['String']['input'];
|
|
46583
|
+
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46584
|
+
};
|
|
46585
|
+
export declare type QueryTutorialsArgs = {
|
|
46586
|
+
search: ContentPlatformSearchApIv2Query;
|
|
46587
|
+
};
|
|
46233
46588
|
export declare type QueryUserArgs = {
|
|
46234
46589
|
accountId: Scalars['ID']['input'];
|
|
46235
46590
|
};
|
|
@@ -48050,6 +48405,7 @@ export declare enum SearchSortOrder {
|
|
|
48050
48405
|
export declare type SearchThirdPartyFilter = {
|
|
48051
48406
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
48052
48407
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
48408
|
+
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
48053
48409
|
thirdPartyTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
48054
48410
|
titleMatchOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48055
48411
|
};
|
|
@@ -50774,6 +51130,7 @@ export declare type TownsquareCreateGoalInput = {
|
|
|
50774
51130
|
containerId: Scalars['String']['input'];
|
|
50775
51131
|
name: Scalars['String']['input'];
|
|
50776
51132
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
51133
|
+
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
50777
51134
|
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
50778
51135
|
};
|
|
50779
51136
|
export declare type TownsquareCreateGoalPayload = {
|
|
@@ -52691,6 +53048,7 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
|
52691
53048
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
52692
53049
|
};
|
|
52693
53050
|
export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
53051
|
+
automaticallyCreateMetricSources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52694
53052
|
comparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
52695
53053
|
comparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
52696
53054
|
id: Scalars['ID']['input'];
|
|
@@ -53659,9 +54017,17 @@ export declare type WebTriggerUrlInput = {
|
|
|
53659
54017
|
};
|
|
53660
54018
|
export declare type WorkSuggestions = {
|
|
53661
54019
|
__typename?: 'WorkSuggestions';
|
|
54020
|
+
suggestionsByProjects: WorkSuggestionsConnection;
|
|
53662
54021
|
userProfileByCloudId?: Maybe<WorkSuggestionsUserProfile>;
|
|
53663
54022
|
workSuggestionsByContextAri: WorkSuggestionsConnection;
|
|
53664
54023
|
};
|
|
54024
|
+
export declare type WorkSuggestionsSuggestionsByProjectsArgs = {
|
|
54025
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54026
|
+
cloudId: Scalars['ID']['input'];
|
|
54027
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54028
|
+
projectAris: Array<Scalars['ID']['input']>;
|
|
54029
|
+
shouldTransformProjectToSprint?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54030
|
+
};
|
|
53665
54031
|
export declare type WorkSuggestionsUserProfileByCloudIdArgs = {
|
|
53666
54032
|
cloudId: Scalars['ID']['input'];
|
|
53667
54033
|
};
|
|
@@ -53724,8 +54090,8 @@ export declare type WorkSuggestionsCommon = {
|
|
|
53724
54090
|
};
|
|
53725
54091
|
export declare type WorkSuggestionsConnection = {
|
|
53726
54092
|
__typename?: 'WorkSuggestionsConnection';
|
|
53727
|
-
edges
|
|
53728
|
-
nodes
|
|
54093
|
+
edges?: Maybe<Array<WorkSuggestionsEdge>>;
|
|
54094
|
+
nodes?: Maybe<Array<Maybe<WorkSuggestionsCommon>>>;
|
|
53729
54095
|
pageInfo: PageInfo;
|
|
53730
54096
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
53731
54097
|
};
|