@forge/cli-shared 5.0.0-next.7 → 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 +45 -0
- package/out/graphql/graphql-types.d.ts +313 -6
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +28 -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'];
|
|
@@ -7230,6 +7231,7 @@ export declare type ContentPlatformAssetComponent = {
|
|
|
7230
7231
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7231
7232
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7232
7233
|
};
|
|
7234
|
+
export declare type ContentPlatformAssetComponentAndProTipComponentAndTextComponentAndCallToActionAndQuestionComponentAndTwitterComponentAndCallOutComponentUnion = ContentPlatformAssetComponent | ContentPlatformCallOutComponent | ContentPlatformCallToAction | ContentPlatformProTipComponent | ContentPlatformQuestionComponent | ContentPlatformTextComponent | ContentPlatformTwitterComponent;
|
|
7233
7235
|
export declare type ContentPlatformAuthor = {
|
|
7234
7236
|
__typename?: 'ContentPlatformAuthor';
|
|
7235
7237
|
authorPicture?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
@@ -7240,10 +7242,35 @@ export declare type ContentPlatformAuthor = {
|
|
|
7240
7242
|
shortBiography?: Maybe<Scalars['String']['output']>;
|
|
7241
7243
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7242
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
|
+
};
|
|
7243
7257
|
export declare enum ContentPlatformBooleanOperators {
|
|
7244
7258
|
And = "AND",
|
|
7245
7259
|
Or = "OR"
|
|
7246
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
|
+
};
|
|
7247
7274
|
export declare type ContentPlatformCallToAction = {
|
|
7248
7275
|
__typename?: 'ContentPlatformCallToAction';
|
|
7249
7276
|
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
@@ -7257,6 +7284,14 @@ export declare type ContentPlatformCallToAction = {
|
|
|
7257
7284
|
url?: Maybe<Scalars['String']['output']>;
|
|
7258
7285
|
valueProposition?: Maybe<Scalars['String']['output']>;
|
|
7259
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
|
+
};
|
|
7260
7295
|
export declare type ContentPlatformCategory = {
|
|
7261
7296
|
__typename?: 'ContentPlatformCategory';
|
|
7262
7297
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -7434,8 +7469,6 @@ export declare type ContentPlatformHubArticle = {
|
|
|
7434
7469
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7435
7470
|
urlSlug: Scalars['String']['output'];
|
|
7436
7471
|
};
|
|
7437
|
-
export declare type ContentPlatformHubArticleAndTutorialAndProductFeatureAndFeaturedVideoUnion = ContentPlatformFeaturedVideo | ContentPlatformHubArticle | ContentPlatformProductFeature | ContentPlatformTutorial;
|
|
7438
|
-
export declare type ContentPlatformHubArticleAndTutorialUnion = ContentPlatformHubArticle | ContentPlatformTutorial;
|
|
7439
7472
|
export declare type ContentPlatformImageAsset = {
|
|
7440
7473
|
__typename?: 'ContentPlatformImageAsset';
|
|
7441
7474
|
contentType: Scalars['String']['output'];
|
|
@@ -7469,6 +7502,29 @@ export declare type ContentPlatformMarketplaceApp = {
|
|
|
7469
7502
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7470
7503
|
url: Scalars['String']['output'];
|
|
7471
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
|
+
};
|
|
7472
7528
|
export declare enum ContentPlatformOperators {
|
|
7473
7529
|
All = "ALL",
|
|
7474
7530
|
Any = "ANY"
|
|
@@ -7527,6 +7583,14 @@ export declare type ContentPlatformProductFeature = {
|
|
|
7527
7583
|
slogan?: Maybe<Scalars['String']['output']>;
|
|
7528
7584
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7529
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
|
+
};
|
|
7530
7594
|
export declare type ContentPlatformReleaseNote = {
|
|
7531
7595
|
__typename?: 'ContentPlatformReleaseNote';
|
|
7532
7596
|
affectedUsers?: Maybe<Array<ContentPlatformTaxonomyUserRole>>;
|
|
@@ -7638,6 +7702,21 @@ export declare enum ContentPlatformSearchTypes {
|
|
|
7638
7702
|
Contains = "CONTAINS",
|
|
7639
7703
|
ExactMatch = "EXACT_MATCH"
|
|
7640
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
|
+
};
|
|
7641
7720
|
export declare type ContentPlatformSolution = {
|
|
7642
7721
|
__typename?: 'ContentPlatformSolution';
|
|
7643
7722
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -7676,6 +7755,15 @@ export declare type ContentPlatformStoryComponent = {
|
|
|
7676
7755
|
storyText?: Maybe<Scalars['JSON']['output']>;
|
|
7677
7756
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7678
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
|
+
};
|
|
7679
7767
|
export declare type ContentPlatformSupportingConceptWrapper = {
|
|
7680
7768
|
__typename?: 'ContentPlatformSupportingConceptWrapper';
|
|
7681
7769
|
contentComponents?: Maybe<Array<ContentPlatformTextComponentAndAssetComponentAndProTipComponentAndTwitterComponentAndEmbeddedVideoAssetAndCallToActionUnion>>;
|
|
@@ -7915,16 +8003,16 @@ export declare type ContentPlatformTopicOverview = {
|
|
|
7915
8003
|
bodyTextContainer?: Maybe<Array<ContentPlatformSupportingConceptWrapper>>;
|
|
7916
8004
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7917
8005
|
description?: Maybe<Scalars['String']['output']>;
|
|
7918
|
-
featuredContentContainer?: Maybe<Array<
|
|
8006
|
+
featuredContentContainer?: Maybe<Array<ContentPlatformMicroHubArticleAndMicroTutorialAndProductFeatureAndFeaturedVideoUnion>>;
|
|
7919
8007
|
mainCallToAction?: Maybe<ContentPlatformCallToAction>;
|
|
7920
8008
|
name?: Maybe<Scalars['String']['output']>;
|
|
7921
|
-
nextBestAction: Array<
|
|
8009
|
+
nextBestAction: Array<ContentPlatformMicroHubArticleAndMicroTutorialUnion>;
|
|
7922
8010
|
relatedHub: Array<ContentPlatformTaxonomyContentHub>;
|
|
7923
8011
|
subtitle?: Maybe<Scalars['String']['output']>;
|
|
7924
8012
|
title: Scalars['String']['output'];
|
|
7925
8013
|
topicIntroduction?: Maybe<Array<ContentPlatformTopicIntroduction>>;
|
|
7926
8014
|
topicOverviewId: Scalars['String']['output'];
|
|
7927
|
-
upNextFooter?: Maybe<
|
|
8015
|
+
upNextFooter?: Maybe<ContentPlatformMicroHubArticle>;
|
|
7928
8016
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7929
8017
|
urlSlug: Scalars['String']['output'];
|
|
7930
8018
|
};
|
|
@@ -7940,13 +8028,61 @@ export declare type ContentPlatformTopicOverviewResultEdge = {
|
|
|
7940
8028
|
};
|
|
7941
8029
|
export declare type ContentPlatformTutorial = {
|
|
7942
8030
|
__typename?: 'ContentPlatformTutorial';
|
|
8031
|
+
author?: Maybe<ContentPlatformAuthor>;
|
|
8032
|
+
beforeYouBegin?: Maybe<Array<ContentPlatformBeforeYouBeginComponent>>;
|
|
8033
|
+
contentHubSubscribe?: Maybe<Array<ContentPlatformSubscribeComponent>>;
|
|
7943
8034
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7944
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']>;
|
|
7945
8043
|
title?: Maybe<Scalars['String']['output']>;
|
|
7946
8044
|
tutorialBanner?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
8045
|
+
tutorialInstructions?: Maybe<Array<ContentPlatformTutorialInstructionsWrapper>>;
|
|
8046
|
+
tutorialIntroduction?: Maybe<ContentPlatformTutorialIntroduction>;
|
|
7947
8047
|
tutorialName?: Maybe<Scalars['String']['output']>;
|
|
8048
|
+
tutorialSummary?: Maybe<Scalars['String']['output']>;
|
|
8049
|
+
upNext?: Maybe<ContentPlatformMicroHubArticleAndMicroTutorialAndTopicOverviewUnion>;
|
|
7948
8050
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7949
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']>;
|
|
7950
8086
|
};
|
|
7951
8087
|
export declare type ContentPlatformTwitterComponent = {
|
|
7952
8088
|
__typename?: 'ContentPlatformTwitterComponent';
|
|
@@ -8149,6 +8285,7 @@ export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
|
8149
8285
|
weight: Scalars['Int']['input'];
|
|
8150
8286
|
};
|
|
8151
8287
|
export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
8288
|
+
automaticallyCreateMetricSources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8152
8289
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
8153
8290
|
comparatorValue: Scalars['Float']['input'];
|
|
8154
8291
|
metricDefinitionId: Scalars['ID']['input'];
|
|
@@ -9763,6 +9900,7 @@ export declare type DevAiAutofixConfigurationsArgs = {
|
|
|
9763
9900
|
workspaceId: Scalars['ID']['input'];
|
|
9764
9901
|
};
|
|
9765
9902
|
export declare type DevAiGetSupportedReposArgs = {
|
|
9903
|
+
filterOption?: InputMaybe<DevAiSupportedRepoFilterOption>;
|
|
9766
9904
|
repoUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
|
|
9767
9905
|
workspaceId: Scalars['ID']['input'];
|
|
9768
9906
|
};
|
|
@@ -9775,10 +9913,14 @@ export declare type DevAiAutofixConfiguration = {
|
|
|
9775
9913
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
9776
9914
|
isScanning?: Maybe<Scalars['Boolean']['output']>;
|
|
9777
9915
|
lastScan?: Maybe<Scalars['DateTime']['output']>;
|
|
9916
|
+
maxPrOpenCount?: Maybe<Scalars['Int']['output']>;
|
|
9778
9917
|
openPullRequestsCount?: Maybe<Scalars['Int']['output']>;
|
|
9779
9918
|
openPullRequestsUrl?: Maybe<Scalars['URL']['output']>;
|
|
9780
9919
|
primaryLanguage?: Maybe<Scalars['String']['output']>;
|
|
9781
9920
|
repoUrl?: Maybe<Scalars['URL']['output']>;
|
|
9921
|
+
scanIntervalFrequency?: Maybe<Scalars['Int']['output']>;
|
|
9922
|
+
scanIntervalUnit?: Maybe<DevAiScanIntervalUnit>;
|
|
9923
|
+
scanStartDate?: Maybe<Scalars['Date']['output']>;
|
|
9782
9924
|
targetCoveragePercentage?: Maybe<Scalars['Int']['output']>;
|
|
9783
9925
|
};
|
|
9784
9926
|
export declare type DevAiAutofixConfigurationConnection = {
|
|
@@ -9811,12 +9953,21 @@ export declare type DevAiMutationsSetAutofixEnabledStateForRepositoryArgs = {
|
|
|
9811
9953
|
export declare type DevAiMutationsTriggerAutofixScanArgs = {
|
|
9812
9954
|
input: DevAiTriggerAutofixScanInput;
|
|
9813
9955
|
};
|
|
9956
|
+
export declare enum DevAiScanIntervalUnit {
|
|
9957
|
+
Days = "DAYS",
|
|
9958
|
+
Months = "MONTHS",
|
|
9959
|
+
Weeks = "WEEKS"
|
|
9960
|
+
}
|
|
9814
9961
|
export declare type DevAiSetAutofixConfigurationForRepositoryInput = {
|
|
9815
9962
|
codeCoverageCommand: Scalars['String']['input'];
|
|
9816
9963
|
codeCoverageReportPath: Scalars['String']['input'];
|
|
9817
9964
|
coveragePercentage: Scalars['Int']['input'];
|
|
9965
|
+
maxPrOpenCount?: InputMaybe<Scalars['Int']['input']>;
|
|
9818
9966
|
primaryLanguage: Scalars['String']['input'];
|
|
9819
9967
|
repoUrl: Scalars['URL']['input'];
|
|
9968
|
+
scanIntervalFrequency?: InputMaybe<Scalars['Int']['input']>;
|
|
9969
|
+
scanIntervalUnit?: InputMaybe<DevAiScanIntervalUnit>;
|
|
9970
|
+
scanStartDate?: InputMaybe<Scalars['Date']['input']>;
|
|
9820
9971
|
workspaceId: Scalars['ID']['input'];
|
|
9821
9972
|
};
|
|
9822
9973
|
export declare type DevAiSetAutofixConfigurationForRepositoryPayload = Payload & {
|
|
@@ -9836,6 +9987,11 @@ export declare type DevAiSetIsAutofixEnabledForRepositoryPayload = Payload & {
|
|
|
9836
9987
|
errors?: Maybe<Array<MutationError>>;
|
|
9837
9988
|
success: Scalars['Boolean']['output'];
|
|
9838
9989
|
};
|
|
9990
|
+
export declare enum DevAiSupportedRepoFilterOption {
|
|
9991
|
+
All = "ALL",
|
|
9992
|
+
DisabledOnly = "DISABLED_ONLY",
|
|
9993
|
+
EnabledOnly = "ENABLED_ONLY"
|
|
9994
|
+
}
|
|
9839
9995
|
export declare type DevAiTriggerAutofixScanInput = {
|
|
9840
9996
|
codeCoverageCommand: Scalars['String']['input'];
|
|
9841
9997
|
codeCoverageReportPath: Scalars['String']['input'];
|
|
@@ -26712,6 +26868,7 @@ export declare type HelpCenterQueryApi = {
|
|
|
26712
26868
|
helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
|
|
26713
26869
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
26714
26870
|
helpCenters?: Maybe<HelpCenterQueryResultConnection>;
|
|
26871
|
+
helpCentersConfig?: Maybe<HelpCentersConfigResult>;
|
|
26715
26872
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
26716
26873
|
helpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
26717
26874
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
@@ -26736,6 +26893,9 @@ export declare type HelpCenterQueryApiHelpCentersArgs = {
|
|
|
26736
26893
|
sortOrder: HelpCenterSortOrder;
|
|
26737
26894
|
workspaceAri: Scalars['ID']['input'];
|
|
26738
26895
|
};
|
|
26896
|
+
export declare type HelpCenterQueryApiHelpCentersConfigArgs = {
|
|
26897
|
+
workspaceAri: Scalars['ID']['input'];
|
|
26898
|
+
};
|
|
26739
26899
|
export declare type HelpCenterQueryApiHelpCentersListArgs = {
|
|
26740
26900
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26741
26901
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -26882,6 +27042,11 @@ export declare type HelpCenterUpdateTopicsOrderPayload = Payload & {
|
|
|
26882
27042
|
errors?: Maybe<Array<MutationError>>;
|
|
26883
27043
|
success: Scalars['Boolean']['output'];
|
|
26884
27044
|
};
|
|
27045
|
+
export declare type HelpCentersConfig = {
|
|
27046
|
+
__typename?: 'HelpCentersConfig';
|
|
27047
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
27048
|
+
};
|
|
27049
|
+
export declare type HelpCentersConfigResult = HelpCentersConfig | QueryError;
|
|
26885
27050
|
export declare type HelpCentersListQueryResult = HelpCenterQueryResultConnection | QueryError;
|
|
26886
27051
|
export declare type HelpExternalResource = Node & {
|
|
26887
27052
|
__typename?: 'HelpExternalResource';
|
|
@@ -28974,7 +29139,7 @@ export declare type JiraAppNavigationConfig = {
|
|
|
28974
29139
|
};
|
|
28975
29140
|
export declare type JiraAppNavigationItem = JiraAppNavigationConfig & JiraNavigationItem & Node & {
|
|
28976
29141
|
__typename?: 'JiraAppNavigationItem';
|
|
28977
|
-
appId?: Maybe<Scalars['
|
|
29142
|
+
appId?: Maybe<Scalars['ID']['output']>;
|
|
28978
29143
|
appType?: Maybe<JiraAppType>;
|
|
28979
29144
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
28980
29145
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -28995,6 +29160,14 @@ export declare type JiraAppNavigationItemNestedLink = JiraAppNavigationConfig &
|
|
|
28995
29160
|
styleClass?: Maybe<Scalars['String']['output']>;
|
|
28996
29161
|
url?: Maybe<Scalars['String']['output']>;
|
|
28997
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
|
+
};
|
|
28998
29171
|
export declare type JiraAppSection = {
|
|
28999
29172
|
__typename?: 'JiraAppSection';
|
|
29000
29173
|
hasSeparator?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -29042,6 +29215,34 @@ export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestPayload = Payl
|
|
|
29042
29215
|
errors?: Maybe<Array<MutationError>>;
|
|
29043
29216
|
success: Scalars['Boolean']['output'];
|
|
29044
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
|
+
};
|
|
29045
29246
|
export declare type JiraAsset = {
|
|
29046
29247
|
__typename?: 'JiraAsset';
|
|
29047
29248
|
appKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -29308,6 +29509,8 @@ export declare type JiraAutodevCreateJobPayload = Payload & {
|
|
|
29308
29509
|
};
|
|
29309
29510
|
export declare type JiraAutodevJob = {
|
|
29310
29511
|
__typename?: 'JiraAutodevJob';
|
|
29512
|
+
branchName?: Maybe<Scalars['String']['output']>;
|
|
29513
|
+
branchUrl?: Maybe<Scalars['String']['output']>;
|
|
29311
29514
|
codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
|
|
29312
29515
|
currentWorkflow?: Maybe<Scalars['String']['output']>;
|
|
29313
29516
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
@@ -30558,6 +30761,10 @@ export declare type JiraCreateAgileReleaseTrainPayload = Payload & {
|
|
|
30558
30761
|
errors?: Maybe<Array<MutationError>>;
|
|
30559
30762
|
success: Scalars['Boolean']['output'];
|
|
30560
30763
|
};
|
|
30764
|
+
export declare type JiraCreateAppNavigationItemInput = {
|
|
30765
|
+
appId: Scalars['ID']['input'];
|
|
30766
|
+
scopeId: Scalars['ID']['input'];
|
|
30767
|
+
};
|
|
30561
30768
|
export declare type JiraCreateApproverListFieldInput = {
|
|
30562
30769
|
fieldName: Scalars['String']['input'];
|
|
30563
30770
|
projectId: Scalars['Int']['input'];
|
|
@@ -30601,6 +30808,12 @@ export declare type JiraCreateLargeSolutionPayload = Payload & {
|
|
|
30601
30808
|
largeSolution?: Maybe<JiraLargeSolution>;
|
|
30602
30809
|
success: Scalars['Boolean']['output'];
|
|
30603
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
|
+
};
|
|
30604
30817
|
export declare type JiraCreatePlanInput = {
|
|
30605
30818
|
cloudId: Scalars['ID']['input'];
|
|
30606
30819
|
};
|
|
@@ -30647,6 +30860,10 @@ export declare type JiraCreateShortcutInput = {
|
|
|
30647
30860
|
shortcutData: JiraShortcutDataInput;
|
|
30648
30861
|
type: JiraProjectShortcutType;
|
|
30649
30862
|
};
|
|
30863
|
+
export declare type JiraCreateSimpleNavigationItemInput = {
|
|
30864
|
+
scopeId: Scalars['ID']['input'];
|
|
30865
|
+
typeKey: JiraNavigationItemTypeKey;
|
|
30866
|
+
};
|
|
30650
30867
|
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
30651
30868
|
__typename?: 'JiraCustomFilter';
|
|
30652
30869
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -32843,6 +33060,7 @@ export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
|
|
|
32843
33060
|
};
|
|
32844
33061
|
export declare type JiraIssueSearchFieldSet = {
|
|
32845
33062
|
__typename?: 'JiraIssueSearchFieldSet';
|
|
33063
|
+
aliases?: Maybe<Array<Scalars['String']['output']>>;
|
|
32846
33064
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
32847
33065
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
32848
33066
|
fieldSetId?: Maybe<Scalars['String']['output']>;
|
|
@@ -34148,6 +34366,7 @@ export declare type JiraMutation = {
|
|
|
34148
34366
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
34149
34367
|
createAgileReleaseTrain?: Maybe<JiraCreateAgileReleaseTrainPayload>;
|
|
34150
34368
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
34369
|
+
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
34151
34370
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
34152
34371
|
createCalendarIssue?: Maybe<JiraCreateCalendarIssuePayload>;
|
|
34153
34372
|
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
@@ -34160,6 +34379,7 @@ export declare type JiraMutation = {
|
|
|
34160
34379
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
34161
34380
|
createSafeGlobalData?: Maybe<JiraCreateSafeGlobalDataPayload>;
|
|
34162
34381
|
createSafePlan?: Maybe<JiraCreatePlanPayload>;
|
|
34382
|
+
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
34163
34383
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
34164
34384
|
deleteIssueLink?: Maybe<JiraDeleteIssueLinkPayload>;
|
|
34165
34385
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
@@ -34303,6 +34523,9 @@ export declare type JiraMutationCreateAgileReleaseTrainArgs = {
|
|
|
34303
34523
|
export declare type JiraMutationCreateAndAssociateWorkflowFromJsmTemplateArgs = {
|
|
34304
34524
|
input: JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput;
|
|
34305
34525
|
};
|
|
34526
|
+
export declare type JiraMutationCreateAppNavigationItemArgs = {
|
|
34527
|
+
input: JiraCreateAppNavigationItemInput;
|
|
34528
|
+
};
|
|
34306
34529
|
export declare type JiraMutationCreateApproverListFieldArgs = {
|
|
34307
34530
|
cloudId: Scalars['ID']['input'];
|
|
34308
34531
|
input: JiraCreateApproverListFieldInput;
|
|
@@ -34347,6 +34570,9 @@ export declare type JiraMutationCreateSafeGlobalDataArgs = {
|
|
|
34347
34570
|
export declare type JiraMutationCreateSafePlanArgs = {
|
|
34348
34571
|
input: JiraCreatePlanInput;
|
|
34349
34572
|
};
|
|
34573
|
+
export declare type JiraMutationCreateSimpleNavigationItemArgs = {
|
|
34574
|
+
input: JiraCreateSimpleNavigationItemInput;
|
|
34575
|
+
};
|
|
34350
34576
|
export declare type JiraMutationDeleteGlobalPermissionGrantArgs = {
|
|
34351
34577
|
cloudId: Scalars['ID']['input'];
|
|
34352
34578
|
input: JiraGlobalPermissionDeleteGroupGrantInput;
|
|
@@ -34718,6 +34944,23 @@ export declare type JiraNavigationItemEdge = {
|
|
|
34718
34944
|
cursor: Scalars['String']['output'];
|
|
34719
34945
|
node?: Maybe<JiraNavigationItem>;
|
|
34720
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
|
+
};
|
|
34721
34964
|
export declare enum JiraNavigationItemTypeKey {
|
|
34722
34965
|
App = "APP",
|
|
34723
34966
|
Approvals = "APPROVALS",
|
|
@@ -36250,6 +36493,7 @@ export declare enum JiraPullRequestState {
|
|
|
36250
36493
|
}
|
|
36251
36494
|
export declare type JiraQuery = {
|
|
36252
36495
|
__typename?: 'JiraQuery';
|
|
36496
|
+
addableNavigationItemTypes?: Maybe<JiraNavigationItemTypeConnection>;
|
|
36253
36497
|
advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
|
|
36254
36498
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
36255
36499
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
@@ -36283,6 +36527,7 @@ export declare type JiraQuery = {
|
|
|
36283
36527
|
filter?: Maybe<JiraFilter>;
|
|
36284
36528
|
filters?: Maybe<Array<Maybe<JiraFilter>>>;
|
|
36285
36529
|
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
36530
|
+
getArchivedIssues?: Maybe<JiraArchivedIssueConnection>;
|
|
36286
36531
|
getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
|
|
36287
36532
|
getIssueTransitionByIssueId?: Maybe<JiraIssueTransitionModal>;
|
|
36288
36533
|
getIssueTransitionByIssueKey?: Maybe<JiraIssueTransitionModal>;
|
|
@@ -36353,6 +36598,10 @@ export declare type JiraQuery = {
|
|
|
36353
36598
|
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
36354
36599
|
mediaExternalEndpointUrl?: Maybe<Scalars['String']['output']>;
|
|
36355
36600
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
36601
|
+
navigationItem?: Maybe<JiraNavigationItemResult>;
|
|
36602
|
+
navigationItemByProjectKeyAndItemId?: Maybe<JiraNavigationItemResult>;
|
|
36603
|
+
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
36604
|
+
navigationItemsByProjectKey?: Maybe<JiraNavigationItemConnection>;
|
|
36356
36605
|
navigationUIState?: Maybe<JiraNavigationUiStateUserProperty>;
|
|
36357
36606
|
notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
|
|
36358
36607
|
notificationProjectPreference?: Maybe<JiraNotificationProjectPreferences>;
|
|
@@ -36398,6 +36647,11 @@ export declare type JiraQuery = {
|
|
|
36398
36647
|
versionsForProjects?: Maybe<JiraVersionConnection>;
|
|
36399
36648
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
36400
36649
|
};
|
|
36650
|
+
export declare type JiraQueryAddableNavigationItemTypesArgs = {
|
|
36651
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36652
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36653
|
+
scopeId: Scalars['ID']['input'];
|
|
36654
|
+
};
|
|
36401
36655
|
export declare type JiraQueryAdvancedRoadmapsNavigationArgs = {
|
|
36402
36656
|
cloudId: Scalars['ID']['input'];
|
|
36403
36657
|
};
|
|
@@ -36559,6 +36813,14 @@ export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
|
36559
36813
|
tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
36560
36814
|
templateId?: InputMaybe<Scalars['String']['input']>;
|
|
36561
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
|
+
};
|
|
36562
36824
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
36563
36825
|
cloudId: Scalars['ID']['input'];
|
|
36564
36826
|
};
|
|
@@ -36875,6 +37137,25 @@ export declare type JiraQueryNaturalLanguageToJqlArgs = {
|
|
|
36875
37137
|
cloudId: Scalars['ID']['input'];
|
|
36876
37138
|
input: JiraNaturalLanguageToJqlInput;
|
|
36877
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
|
+
};
|
|
36878
37159
|
export declare type JiraQueryNavigationUiStateArgs = {
|
|
36879
37160
|
cloudId: Scalars['ID']['input'];
|
|
36880
37161
|
};
|
|
@@ -38830,6 +39111,12 @@ export declare type JiraSimilarIssues = {
|
|
|
38830
39111
|
__typename?: 'JiraSimilarIssues';
|
|
38831
39112
|
featureEnabled: Scalars['Boolean']['output'];
|
|
38832
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
|
+
};
|
|
38833
39120
|
export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38834
39121
|
__typename?: 'JiraSingleGroupPickerField';
|
|
38835
39122
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -41328,6 +41615,9 @@ export declare type JsmChatDisconnectJiraProjectResponse = {
|
|
|
41328
41615
|
message: Scalars['String']['output'];
|
|
41329
41616
|
status: Scalars['Boolean']['output'];
|
|
41330
41617
|
};
|
|
41618
|
+
export declare type JsmChatDisconnectMsTeamsJiraProjectInput = {
|
|
41619
|
+
tenantId: Scalars['String']['input'];
|
|
41620
|
+
};
|
|
41331
41621
|
export declare type JsmChatInitializeConfigRequest = {
|
|
41332
41622
|
activationId: Scalars['ID']['input'];
|
|
41333
41623
|
projectId: Scalars['ID']['input'];
|
|
@@ -41385,6 +41675,7 @@ export declare type JsmChatMutation = {
|
|
|
41385
41675
|
createChannel: JsmChatCreateChannelOutput;
|
|
41386
41676
|
createComment?: Maybe<JsmChatCreateCommentOutput>;
|
|
41387
41677
|
disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
41678
|
+
disconnectMsTeamsJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
41388
41679
|
updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
|
|
41389
41680
|
updateMsTeamsChannelSettings: JsmChatUpdateMsTeamsChannelSettingsOutput;
|
|
41390
41681
|
updateMsTeamsProjectSettings: JsmChatUpdateMsTeamsProjectSettingsOutput;
|
|
@@ -41402,6 +41693,10 @@ export declare type JsmChatMutationCreateCommentArgs = {
|
|
|
41402
41693
|
export declare type JsmChatMutationDisconnectJiraProjectArgs = {
|
|
41403
41694
|
input: JsmChatDisconnectJiraProjectInput;
|
|
41404
41695
|
};
|
|
41696
|
+
export declare type JsmChatMutationDisconnectMsTeamsJiraProjectArgs = {
|
|
41697
|
+
input?: InputMaybe<JsmChatDisconnectMsTeamsJiraProjectInput>;
|
|
41698
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
41699
|
+
};
|
|
41405
41700
|
export declare type JsmChatMutationUpdateChannelSettingsArgs = {
|
|
41406
41701
|
input: JsmChatUpdateChannelSettingsInput;
|
|
41407
41702
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -45843,6 +46138,8 @@ export declare type Query = {
|
|
|
45843
46138
|
topicOverviews: ContentPlatformTopicOverviewContentSearchConnection;
|
|
45844
46139
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
45845
46140
|
trello: TrelloQueryApi;
|
|
46141
|
+
tutorial?: Maybe<ContentPlatformTutorial>;
|
|
46142
|
+
tutorials: ContentPlatformTutorialSearchConnection;
|
|
45846
46143
|
unified?: Maybe<UnifiedQuery>;
|
|
45847
46144
|
user?: Maybe<User>;
|
|
45848
46145
|
users?: Maybe<Array<User>>;
|
|
@@ -46281,6 +46578,13 @@ export declare type QueryTopicOverviewArgs = {
|
|
|
46281
46578
|
export declare type QueryTopicOverviewsArgs = {
|
|
46282
46579
|
search: ContentPlatformSearchApIv2Query;
|
|
46283
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
|
+
};
|
|
46284
46588
|
export declare type QueryUserArgs = {
|
|
46285
46589
|
accountId: Scalars['ID']['input'];
|
|
46286
46590
|
};
|
|
@@ -48101,6 +48405,7 @@ export declare enum SearchSortOrder {
|
|
|
48101
48405
|
export declare type SearchThirdPartyFilter = {
|
|
48102
48406
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
48103
48407
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
48408
|
+
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
48104
48409
|
thirdPartyTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
48105
48410
|
titleMatchOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48106
48411
|
};
|
|
@@ -50825,6 +51130,7 @@ export declare type TownsquareCreateGoalInput = {
|
|
|
50825
51130
|
containerId: Scalars['String']['input'];
|
|
50826
51131
|
name: Scalars['String']['input'];
|
|
50827
51132
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
51133
|
+
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
50828
51134
|
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
50829
51135
|
};
|
|
50830
51136
|
export declare type TownsquareCreateGoalPayload = {
|
|
@@ -52742,6 +53048,7 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
|
52742
53048
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
52743
53049
|
};
|
|
52744
53050
|
export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
53051
|
+
automaticallyCreateMetricSources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52745
53052
|
comparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
52746
53053
|
comparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
52747
53054
|
id: Scalars['ID']['input'];
|