@forge/cli-shared 3.23.2-next.0 → 3.23.2-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/out/graphql/graphql-types.d.ts +375 -6
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +72 -10
- package/out/ui/text.d.ts +0 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +0 -2
- package/package.json +2 -2
|
@@ -1762,7 +1762,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
1762
1762
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
1763
1763
|
id: Scalars['ID']['output'];
|
|
1764
1764
|
};
|
|
1765
|
-
export declare type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | JiraIssue | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
1765
|
+
export declare type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsIncidentDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | JiraIssue | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
1766
1766
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
1767
1767
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
1768
1768
|
from?: Maybe<Scalars['ID']['output']>;
|
|
@@ -3557,12 +3557,18 @@ export declare type CompassComponentScorecardRelationship = {
|
|
|
3557
3557
|
__typename?: 'CompassComponentScorecardRelationship';
|
|
3558
3558
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
3559
3559
|
appliedSince: Scalars['DateTime']['output'];
|
|
3560
|
+
criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
|
|
3560
3561
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
3561
3562
|
scorecardScoreHistories?: Maybe<CompassScorecardScoreHistoryConnection>;
|
|
3562
3563
|
};
|
|
3563
3564
|
export declare type CompassComponentScorecardRelationshipActiveIssuesArgs = {
|
|
3564
3565
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
3565
3566
|
};
|
|
3567
|
+
export declare type CompassComponentScorecardRelationshipCriteriaScoreHistoriesArgs = {
|
|
3568
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3569
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3570
|
+
query?: InputMaybe<CompassScorecardCriteriaScoreHistoryQuery>;
|
|
3571
|
+
};
|
|
3566
3572
|
export declare type CompassComponentScorecardRelationshipScorecardScoreHistoriesArgs = {
|
|
3567
3573
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3568
3574
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -4939,6 +4945,33 @@ export declare type CompassScorecardCriteriaScore = {
|
|
|
4939
4945
|
score: Scalars['Int']['output'];
|
|
4940
4946
|
status?: Maybe<Scalars['String']['output']>;
|
|
4941
4947
|
};
|
|
4948
|
+
export declare type CompassScorecardCriteriaScoreHistory = {
|
|
4949
|
+
__typename?: 'CompassScorecardCriteriaScoreHistory';
|
|
4950
|
+
criteriaScores?: Maybe<Array<CompassScorecardCriterionScore>>;
|
|
4951
|
+
date: Scalars['DateTime']['output'];
|
|
4952
|
+
};
|
|
4953
|
+
export declare type CompassScorecardCriteriaScoreHistoryConnection = {
|
|
4954
|
+
__typename?: 'CompassScorecardCriteriaScoreHistoryConnection';
|
|
4955
|
+
edges?: Maybe<Array<CompassScorecardCriteriaScoreHistoryEdge>>;
|
|
4956
|
+
nodes?: Maybe<Array<CompassScorecardCriteriaScoreHistory>>;
|
|
4957
|
+
pageInfo: PageInfo;
|
|
4958
|
+
};
|
|
4959
|
+
export declare type CompassScorecardCriteriaScoreHistoryEdge = {
|
|
4960
|
+
__typename?: 'CompassScorecardCriteriaScoreHistoryEdge';
|
|
4961
|
+
cursor: Scalars['String']['output'];
|
|
4962
|
+
node?: Maybe<CompassScorecardCriteriaScoreHistory>;
|
|
4963
|
+
};
|
|
4964
|
+
export declare enum CompassScorecardCriteriaScoreHistoryPeriodicity {
|
|
4965
|
+
Daily = "DAILY",
|
|
4966
|
+
Weekly = "WEEKLY"
|
|
4967
|
+
}
|
|
4968
|
+
export declare type CompassScorecardCriteriaScoreHistoryQuery = {
|
|
4969
|
+
filter?: InputMaybe<CompassScorecardCriteriaScoreHistoryQueryFilter>;
|
|
4970
|
+
};
|
|
4971
|
+
export declare type CompassScorecardCriteriaScoreHistoryQueryFilter = {
|
|
4972
|
+
periodicity?: InputMaybe<CompassScorecardCriteriaScoreHistoryPeriodicity>;
|
|
4973
|
+
startFrom?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4974
|
+
};
|
|
4942
4975
|
export declare type CompassScorecardCriteriaScoreQuery = {
|
|
4943
4976
|
componentId: Scalars['ID']['input'];
|
|
4944
4977
|
};
|
|
@@ -4975,6 +5008,11 @@ export declare type CompassScorecardCriteriaStats = {
|
|
|
4975
5008
|
scorecardCriteriaId: Scalars['ID']['output'];
|
|
4976
5009
|
weight: Scalars['Int']['output'];
|
|
4977
5010
|
};
|
|
5011
|
+
export declare type CompassScorecardCriterionScore = {
|
|
5012
|
+
criterionId: Scalars['ID']['output'];
|
|
5013
|
+
explanation: Scalars['String']['output'];
|
|
5014
|
+
scoreStatus: CompassScorecardCriterionScoreStatus;
|
|
5015
|
+
};
|
|
4978
5016
|
export declare type CompassScorecardCriterionScoreStatistic = {
|
|
4979
5017
|
__typename?: 'CompassScorecardCriterionScoreStatistic';
|
|
4980
5018
|
criterionId: Scalars['ID']['output'];
|
|
@@ -4995,11 +5033,25 @@ export declare type CompassScorecardEdge = {
|
|
|
4995
5033
|
cursor: Scalars['String']['output'];
|
|
4996
5034
|
node?: Maybe<CompassScorecard>;
|
|
4997
5035
|
};
|
|
5036
|
+
export declare type CompassScorecardFieldCriterionScore = CompassScorecardCriterionScore & {
|
|
5037
|
+
__typename?: 'CompassScorecardFieldCriterionScore';
|
|
5038
|
+
criterionId: Scalars['ID']['output'];
|
|
5039
|
+
dataSourceLastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
5040
|
+
explanation: Scalars['String']['output'];
|
|
5041
|
+
scoreStatus: CompassScorecardCriterionScoreStatus;
|
|
5042
|
+
};
|
|
4998
5043
|
export declare enum CompassScorecardImportance {
|
|
4999
5044
|
Recommended = "RECOMMENDED",
|
|
5000
5045
|
Required = "REQUIRED",
|
|
5001
5046
|
UserDefined = "USER_DEFINED"
|
|
5002
5047
|
}
|
|
5048
|
+
export declare type CompassScorecardMetricCriterionScore = CompassScorecardCriterionScore & {
|
|
5049
|
+
__typename?: 'CompassScorecardMetricCriterionScore';
|
|
5050
|
+
criterionId: Scalars['ID']['output'];
|
|
5051
|
+
explanation: Scalars['String']['output'];
|
|
5052
|
+
metricValue?: Maybe<CompassMetricValue>;
|
|
5053
|
+
scoreStatus: CompassScorecardCriterionScoreStatus;
|
|
5054
|
+
};
|
|
5003
5055
|
export declare type CompassScorecardQueryFilter = {
|
|
5004
5056
|
componentTypeIds?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
5005
5057
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6525,6 +6577,7 @@ export declare type ContentPlatformAuthor = {
|
|
|
6525
6577
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
6526
6578
|
name: Scalars['String']['output'];
|
|
6527
6579
|
organization?: Maybe<ContentPlatformOrganization>;
|
|
6580
|
+
shortBiography?: Maybe<Scalars['String']['output']>;
|
|
6528
6581
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6529
6582
|
};
|
|
6530
6583
|
export declare enum ContentPlatformBooleanOperators {
|
|
@@ -6534,7 +6587,7 @@ export declare enum ContentPlatformBooleanOperators {
|
|
|
6534
6587
|
export declare type ContentPlatformCategory = {
|
|
6535
6588
|
__typename?: 'ContentPlatformCategory';
|
|
6536
6589
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6537
|
-
description?: Maybe<Scalars['
|
|
6590
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
6538
6591
|
id: Scalars['String']['output'];
|
|
6539
6592
|
name?: Maybe<Scalars['String']['output']>;
|
|
6540
6593
|
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
@@ -6843,13 +6896,14 @@ export declare type ContentPlatformTaxonomyUserRoleNew = {
|
|
|
6843
6896
|
};
|
|
6844
6897
|
export declare type ContentPlatformTemplate = {
|
|
6845
6898
|
__typename?: 'ContentPlatformTemplate';
|
|
6846
|
-
aboutThisTemplate: Scalars['
|
|
6899
|
+
aboutThisTemplate: Scalars['String']['output'];
|
|
6847
6900
|
category?: Maybe<Array<ContentPlatformCategory>>;
|
|
6848
6901
|
contributor?: Maybe<ContentPlatformOrganizationAndAuthorUnion>;
|
|
6849
6902
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6850
6903
|
howToUseThisTemplate: Array<ContentPlatformTemplateGuide>;
|
|
6851
6904
|
name?: Maybe<Scalars['String']['output']>;
|
|
6852
6905
|
oneLinerHeadline?: Maybe<Scalars['String']['output']>;
|
|
6906
|
+
pluginModuleKey: Scalars['String']['output'];
|
|
6853
6907
|
previewBlurb?: Maybe<Scalars['String']['output']>;
|
|
6854
6908
|
relatedTemplates?: Maybe<Array<ContentPlatformTemplate>>;
|
|
6855
6909
|
targetAudience?: Maybe<Array<ContentPlatformTaxonomyUserRoleNew>>;
|
|
@@ -6858,6 +6912,51 @@ export declare type ContentPlatformTemplate = {
|
|
|
6858
6912
|
templateId: Scalars['String']['output'];
|
|
6859
6913
|
templatePreview?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
6860
6914
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6915
|
+
urlSlug?: Maybe<Scalars['String']['output']>;
|
|
6916
|
+
};
|
|
6917
|
+
export declare type ContentPlatformTemplateCollection = {
|
|
6918
|
+
__typename?: 'ContentPlatformTemplateCollection';
|
|
6919
|
+
aboutThisCollection?: Maybe<Scalars['String']['output']>;
|
|
6920
|
+
aboutThisCollectionHeader?: Maybe<Scalars['String']['output']>;
|
|
6921
|
+
aboutThisCollectionImage?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6922
|
+
collectionIcon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6923
|
+
collectionId: Scalars['String']['output'];
|
|
6924
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6925
|
+
howToUseThisCollection?: Maybe<ContentPlatformTemplateCollectionGuide>;
|
|
6926
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6927
|
+
oneLinerHeadline?: Maybe<Scalars['String']['output']>;
|
|
6928
|
+
targetAudience?: Maybe<Array<ContentPlatformTaxonomyUserRoleNew>>;
|
|
6929
|
+
targetOrganizationSize?: Maybe<Array<ContentPlatformTaxonomyCompanySize>>;
|
|
6930
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6931
|
+
urlSlug?: Maybe<Scalars['String']['output']>;
|
|
6932
|
+
};
|
|
6933
|
+
export declare type ContentPlatformTemplateCollectionContentSearchConnection = {
|
|
6934
|
+
__typename?: 'ContentPlatformTemplateCollectionContentSearchConnection';
|
|
6935
|
+
edges: Array<ContentPlatformTemplateCollectionResultEdge>;
|
|
6936
|
+
pageInfo: PageInfo;
|
|
6937
|
+
};
|
|
6938
|
+
export declare type ContentPlatformTemplateCollectionGuide = {
|
|
6939
|
+
__typename?: 'ContentPlatformTemplateCollectionGuide';
|
|
6940
|
+
collectionSteps?: Maybe<Array<ContentPlatformTemplateCollectionStep>>;
|
|
6941
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6942
|
+
id: Scalars['String']['output'];
|
|
6943
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6944
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6945
|
+
};
|
|
6946
|
+
export declare type ContentPlatformTemplateCollectionResultEdge = {
|
|
6947
|
+
__typename?: 'ContentPlatformTemplateCollectionResultEdge';
|
|
6948
|
+
cursor: Scalars['String']['output'];
|
|
6949
|
+
node: ContentPlatformTemplateCollection;
|
|
6950
|
+
};
|
|
6951
|
+
export declare type ContentPlatformTemplateCollectionStep = {
|
|
6952
|
+
__typename?: 'ContentPlatformTemplateCollectionStep';
|
|
6953
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6954
|
+
id: Scalars['String']['output'];
|
|
6955
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6956
|
+
relatedTemplate?: Maybe<ContentPlatformTemplate>;
|
|
6957
|
+
stepDescription?: Maybe<Scalars['String']['output']>;
|
|
6958
|
+
stepSubheading?: Maybe<Scalars['String']['output']>;
|
|
6959
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6861
6960
|
};
|
|
6862
6961
|
export declare type ContentPlatformTemplateContentSearchConnection = {
|
|
6863
6962
|
__typename?: 'ContentPlatformTemplateContentSearchConnection';
|
|
@@ -6891,7 +6990,7 @@ export declare type ContentPlatformTemplateUseStep = {
|
|
|
6891
6990
|
__typename?: 'ContentPlatformTemplateUseStep';
|
|
6892
6991
|
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6893
6992
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6894
|
-
description?: Maybe<Scalars['
|
|
6993
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
6895
6994
|
name: Scalars['String']['output'];
|
|
6896
6995
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6897
6996
|
};
|
|
@@ -7805,6 +7904,9 @@ export declare type CustomerServiceEntitlementEntityId = {
|
|
|
7805
7904
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
7806
7905
|
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
7807
7906
|
};
|
|
7907
|
+
export declare type CustomerServiceEntitlementFilterInput = {
|
|
7908
|
+
productId?: InputMaybe<Scalars['ID']['input']>;
|
|
7909
|
+
};
|
|
7808
7910
|
export declare type CustomerServiceEntitlementQueryResult = CustomerServiceEntitlement | QueryError;
|
|
7809
7911
|
export declare type CustomerServiceEntitlementRemoveInput = {
|
|
7810
7912
|
entitlementId: Scalars['ID']['input'];
|
|
@@ -7829,6 +7931,7 @@ export declare type CustomerServiceIndividual = Node & {
|
|
|
7829
7931
|
};
|
|
7830
7932
|
export declare type CustomerServiceIndividualEntitlementsArgs = {
|
|
7831
7933
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7934
|
+
filter?: InputMaybe<CustomerServiceEntitlementFilterInput>;
|
|
7832
7935
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7833
7936
|
};
|
|
7834
7937
|
export declare type CustomerServiceIndividualLinksArgs = {
|
|
@@ -8099,6 +8202,7 @@ export declare type CustomerServiceOrganization = Node & {
|
|
|
8099
8202
|
};
|
|
8100
8203
|
export declare type CustomerServiceOrganizationEntitlementsArgs = {
|
|
8101
8204
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8205
|
+
filter?: InputMaybe<CustomerServiceEntitlementFilterInput>;
|
|
8102
8206
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8103
8207
|
};
|
|
8104
8208
|
export declare type CustomerServiceOrganizationLinksArgs = {
|
|
@@ -8193,6 +8297,7 @@ export declare type CustomerServiceProductEdge = {
|
|
|
8193
8297
|
node?: Maybe<CustomerServiceProduct>;
|
|
8194
8298
|
};
|
|
8195
8299
|
export declare type CustomerServiceProductFilterInput = {
|
|
8300
|
+
nameBeginsWith?: InputMaybe<Scalars['String']['input']>;
|
|
8196
8301
|
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
8197
8302
|
};
|
|
8198
8303
|
export declare type CustomerServiceProductQueryResult = CustomerServiceProductConnection | QueryError;
|
|
@@ -9219,6 +9324,37 @@ export declare type DevOpsMutation = {
|
|
|
9219
9324
|
export declare type DevOpsMutation_EmptyArgs = {
|
|
9220
9325
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
9221
9326
|
};
|
|
9327
|
+
export declare type DevOpsOperationsIncidentDetails = {
|
|
9328
|
+
__typename?: 'DevOpsOperationsIncidentDetails';
|
|
9329
|
+
affectedComponents?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
9330
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
9331
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
9332
|
+
id: Scalars['ID']['output'];
|
|
9333
|
+
linkedPostIncidentReviews?: Maybe<AriGraphRelationshipConnection>;
|
|
9334
|
+
severity?: Maybe<DevOpsOperationsIncidentSeverity>;
|
|
9335
|
+
status?: Maybe<DevOpsOperationsIncidentStatus>;
|
|
9336
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
9337
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
9338
|
+
};
|
|
9339
|
+
export declare type DevOpsOperationsIncidentDetailsLinkedPostIncidentReviewsArgs = {
|
|
9340
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9341
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9342
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
9343
|
+
};
|
|
9344
|
+
export declare enum DevOpsOperationsIncidentSeverity {
|
|
9345
|
+
P1 = "P1",
|
|
9346
|
+
P2 = "P2",
|
|
9347
|
+
P3 = "P3",
|
|
9348
|
+
P4 = "P4",
|
|
9349
|
+
P5 = "P5",
|
|
9350
|
+
Pending = "PENDING",
|
|
9351
|
+
Unknown = "UNKNOWN"
|
|
9352
|
+
}
|
|
9353
|
+
export declare enum DevOpsOperationsIncidentStatus {
|
|
9354
|
+
Open = "OPEN",
|
|
9355
|
+
Resolved = "RESOLVED",
|
|
9356
|
+
Unknown = "UNKNOWN"
|
|
9357
|
+
}
|
|
9222
9358
|
export declare type DevOpsOperationsProvider = DevOpsDataProvider & {
|
|
9223
9359
|
__typename?: 'DevOpsOperationsProvider';
|
|
9224
9360
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -9402,6 +9538,7 @@ export declare type DevOpsSecurityVulnerabilityDetails = {
|
|
|
9402
9538
|
linkedJiraIssues?: Maybe<AriGraphRelationshipConnection>;
|
|
9403
9539
|
providerVulnerabilityId?: Maybe<Scalars['ID']['output']>;
|
|
9404
9540
|
securityContainer?: Maybe<ThirdPartySecurityContainer>;
|
|
9541
|
+
securityContainerId?: Maybe<Scalars['ID']['output']>;
|
|
9405
9542
|
severity?: Maybe<DevOpsSecurityVulnerabilitySeverity>;
|
|
9406
9543
|
status?: Maybe<DevOpsSecurityVulnerabilityStatus>;
|
|
9407
9544
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -12045,6 +12182,7 @@ export declare type GraphCreateMetadataSprintAssociatedPrOutputAri = {
|
|
|
12045
12182
|
};
|
|
12046
12183
|
export declare type GraphCreateMetadataSprintAssociatedVulnerabilityJiraVulnerabilityOutput = {
|
|
12047
12184
|
__typename?: 'GraphCreateMetadataSprintAssociatedVulnerabilityJiraVulnerabilityOutput';
|
|
12185
|
+
introducedDate?: Maybe<Scalars['Long']['output']>;
|
|
12048
12186
|
severity?: Maybe<GraphCreateMetadataSprintAssociatedVulnerabilityJiraVulnerabilityOutputVulnerabilitySeverityEnum>;
|
|
12049
12187
|
status?: Maybe<GraphCreateMetadataSprintAssociatedVulnerabilityJiraVulnerabilityOutputVulnerabilityStatusEnum>;
|
|
12050
12188
|
};
|
|
@@ -12067,11 +12205,18 @@ export declare type GraphCreateMetadataSprintAssociatedVulnerabilityOutput = {
|
|
|
12067
12205
|
__typename?: 'GraphCreateMetadataSprintAssociatedVulnerabilityOutput';
|
|
12068
12206
|
assigneeAri?: Maybe<GraphCreateMetadataSprintAssociatedVulnerabilityOutputAri>;
|
|
12069
12207
|
statusAri?: Maybe<GraphCreateMetadataSprintAssociatedVulnerabilityOutputAri>;
|
|
12208
|
+
statusCategory?: Maybe<GraphCreateMetadataSprintAssociatedVulnerabilityOutputStatusCategoryEnum>;
|
|
12070
12209
|
};
|
|
12071
12210
|
export declare type GraphCreateMetadataSprintAssociatedVulnerabilityOutputAri = {
|
|
12072
12211
|
__typename?: 'GraphCreateMetadataSprintAssociatedVulnerabilityOutputAri';
|
|
12073
12212
|
value?: Maybe<Scalars['String']['output']>;
|
|
12074
12213
|
};
|
|
12214
|
+
export declare enum GraphCreateMetadataSprintAssociatedVulnerabilityOutputStatusCategoryEnum {
|
|
12215
|
+
Done = "DONE",
|
|
12216
|
+
Indeterminate = "INDETERMINATE",
|
|
12217
|
+
New = "NEW",
|
|
12218
|
+
Undefined = "UNDEFINED"
|
|
12219
|
+
}
|
|
12075
12220
|
export declare type GraphCreateParentDocumentHasChildDocumentInput = {
|
|
12076
12221
|
from: Scalars['ID']['input'];
|
|
12077
12222
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -14092,6 +14237,7 @@ export declare type GraphQueryMetadataSprintAssociatedVulnerabilityInputAnd = {
|
|
|
14092
14237
|
relationship_statusAri?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipAri>;
|
|
14093
14238
|
relationship_statusCategory?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipStatusCategory>;
|
|
14094
14239
|
toAti?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToAti>;
|
|
14240
|
+
to_introducedDate?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToIntroducedDate>;
|
|
14095
14241
|
to_severity?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToSeverity>;
|
|
14096
14242
|
to_status?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToStatus>;
|
|
14097
14243
|
};
|
|
@@ -14102,6 +14248,7 @@ export declare type GraphQueryMetadataSprintAssociatedVulnerabilityInputAndInner
|
|
|
14102
14248
|
relationship_statusAri?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipAri>;
|
|
14103
14249
|
relationship_statusCategory?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipStatusCategory>;
|
|
14104
14250
|
toAti?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToAti>;
|
|
14251
|
+
to_introducedDate?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToIntroducedDate>;
|
|
14105
14252
|
to_severity?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToSeverity>;
|
|
14106
14253
|
to_status?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToStatus>;
|
|
14107
14254
|
};
|
|
@@ -14145,6 +14292,7 @@ export declare type GraphQueryMetadataSprintAssociatedVulnerabilityInputOr = {
|
|
|
14145
14292
|
relationship_statusAri?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipAri>;
|
|
14146
14293
|
relationship_statusCategory?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipStatusCategory>;
|
|
14147
14294
|
toAti?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToAti>;
|
|
14295
|
+
to_introducedDate?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToIntroducedDate>;
|
|
14148
14296
|
to_severity?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToSeverity>;
|
|
14149
14297
|
to_status?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToStatus>;
|
|
14150
14298
|
};
|
|
@@ -14155,6 +14303,7 @@ export declare type GraphQueryMetadataSprintAssociatedVulnerabilityInputOrInner
|
|
|
14155
14303
|
relationship_statusAri?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipAri>;
|
|
14156
14304
|
relationship_statusCategory?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputRelationshipStatusCategory>;
|
|
14157
14305
|
toAti?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToAti>;
|
|
14306
|
+
to_introducedDate?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToIntroducedDate>;
|
|
14158
14307
|
to_severity?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToSeverity>;
|
|
14159
14308
|
to_status?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToStatus>;
|
|
14160
14309
|
};
|
|
@@ -14194,6 +14343,22 @@ export declare type GraphQueryMetadataSprintAssociatedVulnerabilityInputToAtiMet
|
|
|
14194
14343
|
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14195
14344
|
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14196
14345
|
};
|
|
14346
|
+
export declare type GraphQueryMetadataSprintAssociatedVulnerabilityInputToIntroducedDate = {
|
|
14347
|
+
notValues?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
14348
|
+
range?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToIntroducedDateRangeField>;
|
|
14349
|
+
sort?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToIntroducedDateMetadataSortField>;
|
|
14350
|
+
values?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
14351
|
+
};
|
|
14352
|
+
export declare type GraphQueryMetadataSprintAssociatedVulnerabilityInputToIntroducedDateMetadataSortField = {
|
|
14353
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14354
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14355
|
+
};
|
|
14356
|
+
export declare type GraphQueryMetadataSprintAssociatedVulnerabilityInputToIntroducedDateRangeField = {
|
|
14357
|
+
gt?: InputMaybe<Scalars['Long']['input']>;
|
|
14358
|
+
gte?: InputMaybe<Scalars['Long']['input']>;
|
|
14359
|
+
lt?: InputMaybe<Scalars['Long']['input']>;
|
|
14360
|
+
lte?: InputMaybe<Scalars['Long']['input']>;
|
|
14361
|
+
};
|
|
14197
14362
|
export declare type GraphQueryMetadataSprintAssociatedVulnerabilityInputToSeverity = {
|
|
14198
14363
|
notValues?: InputMaybe<Array<GraphQueryMetadataSprintAssociatedVulnerabilityInputToVulnerabilitySeverityEnum>>;
|
|
14199
14364
|
sort?: InputMaybe<GraphQueryMetadataSprintAssociatedVulnerabilityInputToSeverityMetadataSortField>;
|
|
@@ -23080,6 +23245,7 @@ export declare type GrowthRecRecommendations = {
|
|
|
23080
23245
|
};
|
|
23081
23246
|
export declare type GrowthRecRecommendationsResult = GrowthRecRecommendations | QueryError;
|
|
23082
23247
|
export declare type GrowthRecRerankCandidate = {
|
|
23248
|
+
context?: InputMaybe<Scalars['JSON']['input']>;
|
|
23083
23249
|
entityId: Scalars['String']['input'];
|
|
23084
23250
|
};
|
|
23085
23251
|
export declare type HamsAccountDetails = CommerceAccountDetails & {
|
|
@@ -23988,6 +24154,7 @@ export declare type HelpObjectStoreHelpObject = {
|
|
|
23988
24154
|
export declare enum HelpObjectStoreHelpObjectType {
|
|
23989
24155
|
Article = "ARTICLE",
|
|
23990
24156
|
Channel = "CHANNEL",
|
|
24157
|
+
Portal = "PORTAL",
|
|
23991
24158
|
RequestForm = "REQUEST_FORM"
|
|
23992
24159
|
}
|
|
23993
24160
|
export declare type HelpObjectStoreIcon = {
|
|
@@ -24020,6 +24187,20 @@ export declare type HelpObjectStoreMutationApiDeleteProviderConnectionArgs = {
|
|
|
24020
24187
|
export declare type HelpObjectStoreMutationApiUpdateProviderConnectionArgs = {
|
|
24021
24188
|
input: HelpObjectStoreProviderConnectionInput;
|
|
24022
24189
|
};
|
|
24190
|
+
export declare type HelpObjectStorePortal = HelpObjectStoreHelpObject & Node & {
|
|
24191
|
+
__typename?: 'HelpObjectStorePortal';
|
|
24192
|
+
ari: Scalars['ID']['output'];
|
|
24193
|
+
containerId?: Maybe<Scalars['String']['output']>;
|
|
24194
|
+
containerKey?: Maybe<Scalars['String']['output']>;
|
|
24195
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
24196
|
+
displayLink?: Maybe<Scalars['String']['output']>;
|
|
24197
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
24198
|
+
entityKey?: Maybe<Scalars['String']['output']>;
|
|
24199
|
+
icon?: Maybe<HelpObjectStoreIcon>;
|
|
24200
|
+
id: Scalars['ID']['output'];
|
|
24201
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
24202
|
+
};
|
|
24203
|
+
export declare type HelpObjectStorePortalResult = HelpObjectStorePortal | HelpObjectStoreQueryError;
|
|
24023
24204
|
export declare type HelpObjectStoreProviderAuthStatus = {
|
|
24024
24205
|
__typename?: 'HelpObjectStoreProviderAuthStatus';
|
|
24025
24206
|
authUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -24436,11 +24617,26 @@ export declare type InlineColumnEditConfig = {
|
|
|
24436
24617
|
export declare type Insights = {
|
|
24437
24618
|
__typename?: 'Insights';
|
|
24438
24619
|
nextBestTasksByContextAri: Array<InsightsNextBestTask>;
|
|
24620
|
+
nextBestTasksByContextAriPaginated: InsightsNextBestTaskConnection;
|
|
24439
24621
|
};
|
|
24440
24622
|
export declare type InsightsNextBestTasksByContextAriArgs = {
|
|
24441
24623
|
contextAri: InsightsContextAri;
|
|
24442
24624
|
statusId?: InputMaybe<Scalars['String']['input']>;
|
|
24443
24625
|
};
|
|
24626
|
+
export declare type InsightsNextBestTasksByContextAriPaginatedArgs = {
|
|
24627
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
24628
|
+
contextAri: InsightsContextAri;
|
|
24629
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24630
|
+
};
|
|
24631
|
+
export declare type InsightsActionNextBestTaskInput = {
|
|
24632
|
+
taskId: Scalars['String']['input'];
|
|
24633
|
+
};
|
|
24634
|
+
export declare type InsightsActionNextBestTaskPayload = Payload & {
|
|
24635
|
+
__typename?: 'InsightsActionNextBestTaskPayload';
|
|
24636
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24637
|
+
success: Scalars['Boolean']['output'];
|
|
24638
|
+
userActionState?: Maybe<InsightsUserActionState>;
|
|
24639
|
+
};
|
|
24444
24640
|
export declare type InsightsBuildDetails = {
|
|
24445
24641
|
__typename?: 'InsightsBuildDetails';
|
|
24446
24642
|
buildNumber: Scalars['Int']['output'];
|
|
@@ -24472,6 +24668,24 @@ export declare enum InsightsEnvironmentType {
|
|
|
24472
24668
|
Testing = "TESTING",
|
|
24473
24669
|
Unmapped = "UNMAPPED"
|
|
24474
24670
|
}
|
|
24671
|
+
export declare type InsightsMutation = {
|
|
24672
|
+
__typename?: 'InsightsMutation';
|
|
24673
|
+
removeTask?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
24674
|
+
snoozeTask?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
24675
|
+
};
|
|
24676
|
+
export declare type InsightsMutationRemoveTaskArgs = {
|
|
24677
|
+
cloudId: Scalars['ID']['input'];
|
|
24678
|
+
input: InsightsActionNextBestTaskInput;
|
|
24679
|
+
};
|
|
24680
|
+
export declare type InsightsMutationSnoozeTaskArgs = {
|
|
24681
|
+
cloudId: Scalars['ID']['input'];
|
|
24682
|
+
input: InsightsActionNextBestTaskInput;
|
|
24683
|
+
};
|
|
24684
|
+
export declare type InsightsMutationErrorExtension = MutationErrorExtension & {
|
|
24685
|
+
__typename?: 'InsightsMutationErrorExtension';
|
|
24686
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
24687
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
24688
|
+
};
|
|
24475
24689
|
export declare type InsightsNextBestTask = {
|
|
24476
24690
|
__typename?: 'InsightsNextBestTask';
|
|
24477
24691
|
details: InsightsNextBestTaskDetails;
|
|
@@ -24480,7 +24694,23 @@ export declare type InsightsNextBestTask = {
|
|
|
24480
24694
|
title: Scalars['String']['output'];
|
|
24481
24695
|
url: Scalars['String']['output'];
|
|
24482
24696
|
};
|
|
24697
|
+
export declare enum InsightsNextBestTaskAction {
|
|
24698
|
+
Remove = "REMOVE",
|
|
24699
|
+
Snooze = "SNOOZE"
|
|
24700
|
+
}
|
|
24701
|
+
export declare type InsightsNextBestTaskConnection = {
|
|
24702
|
+
__typename?: 'InsightsNextBestTaskConnection';
|
|
24703
|
+
edges: Array<Maybe<InsightsNextBestTaskEdge>>;
|
|
24704
|
+
nodes: Array<Maybe<InsightsNextBestTask>>;
|
|
24705
|
+
pageInfo: PageInfo;
|
|
24706
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
24707
|
+
};
|
|
24483
24708
|
export declare type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails | InsightsVulnDetails;
|
|
24709
|
+
export declare type InsightsNextBestTaskEdge = {
|
|
24710
|
+
__typename?: 'InsightsNextBestTaskEdge';
|
|
24711
|
+
cursor: Scalars['String']['output'];
|
|
24712
|
+
node?: Maybe<InsightsNextBestTask>;
|
|
24713
|
+
};
|
|
24484
24714
|
export declare type InsightsPullRequestNeedsWorkDetails = {
|
|
24485
24715
|
__typename?: 'InsightsPullRequestNeedsWorkDetails';
|
|
24486
24716
|
commentCount: Scalars['Int']['output'];
|
|
@@ -24502,6 +24732,12 @@ export declare enum InsightsTaskType {
|
|
|
24502
24732
|
PrNeedsWork = "PR_NEEDS_WORK",
|
|
24503
24733
|
PrReview = "PR_REVIEW"
|
|
24504
24734
|
}
|
|
24735
|
+
export declare type InsightsUserActionState = {
|
|
24736
|
+
__typename?: 'InsightsUserActionState';
|
|
24737
|
+
expireAt: Scalars['String']['output'];
|
|
24738
|
+
reason: InsightsNextBestTaskAction;
|
|
24739
|
+
taskId: Scalars['String']['output'];
|
|
24740
|
+
};
|
|
24505
24741
|
export declare type InsightsVulnDetails = {
|
|
24506
24742
|
__typename?: 'InsightsVulnDetails';
|
|
24507
24743
|
id: Scalars['ID']['output'];
|
|
@@ -25391,6 +25627,41 @@ export declare enum JiraAttachmentsPermissions {
|
|
|
25391
25627
|
CreateAttachments = "CREATE_ATTACHMENTS",
|
|
25392
25628
|
DeleteOwnAttachments = "DELETE_OWN_ATTACHMENTS"
|
|
25393
25629
|
}
|
|
25630
|
+
export declare type JiraAutofixCreateJobPayload = Payload & {
|
|
25631
|
+
__typename?: 'JiraAutofixCreateJobPayload';
|
|
25632
|
+
errors?: Maybe<Array<MutationError>>;
|
|
25633
|
+
job?: Maybe<JiraAutofixJob>;
|
|
25634
|
+
success: Scalars['Boolean']['output'];
|
|
25635
|
+
};
|
|
25636
|
+
export declare type JiraAutofixInput = {
|
|
25637
|
+
issueAri: Scalars['ID']['input'];
|
|
25638
|
+
jobType: JiraAutofixJobType;
|
|
25639
|
+
};
|
|
25640
|
+
export declare type JiraAutofixJob = {
|
|
25641
|
+
__typename?: 'JiraAutofixJob';
|
|
25642
|
+
jobId: Scalars['ID']['output'];
|
|
25643
|
+
status: JiraAutofixStatus;
|
|
25644
|
+
};
|
|
25645
|
+
export declare type JiraAutofixJobConnection = {
|
|
25646
|
+
__typename?: 'JiraAutofixJobConnection';
|
|
25647
|
+
edges?: Maybe<Array<Maybe<JiraAutofixJobEdge>>>;
|
|
25648
|
+
nodes?: Maybe<Array<Maybe<JiraAutofixJob>>>;
|
|
25649
|
+
pageInfo: PageInfo;
|
|
25650
|
+
};
|
|
25651
|
+
export declare type JiraAutofixJobEdge = {
|
|
25652
|
+
__typename?: 'JiraAutofixJobEdge';
|
|
25653
|
+
cursor: Scalars['String']['output'];
|
|
25654
|
+
node?: Maybe<JiraAutofixJob>;
|
|
25655
|
+
};
|
|
25656
|
+
export declare enum JiraAutofixJobType {
|
|
25657
|
+
InternalRemoveFeatureFlag = "INTERNAL_REMOVE_FEATURE_FLAG"
|
|
25658
|
+
}
|
|
25659
|
+
export declare enum JiraAutofixStatus {
|
|
25660
|
+
Completed = "COMPLETED",
|
|
25661
|
+
Failed = "FAILED",
|
|
25662
|
+
InProgress = "IN_PROGRESS",
|
|
25663
|
+
Pending = "PENDING"
|
|
25664
|
+
}
|
|
25394
25665
|
export declare type JiraAvatar = {
|
|
25395
25666
|
__typename?: 'JiraAvatar';
|
|
25396
25667
|
large?: Maybe<Scalars['String']['output']>;
|
|
@@ -25661,6 +25932,7 @@ export declare type JiraCascadingSelectFieldCascadingOptionsArgs = {
|
|
|
25661
25932
|
export declare type JiraCascadingSelectFieldParentOptionsArgs = {
|
|
25662
25933
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25663
25934
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
25935
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
25664
25936
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25665
25937
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
25666
25938
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26546,6 +26818,7 @@ export declare enum JiraDevOpsIssuePanelState {
|
|
|
26546
26818
|
export declare type JiraDevOpsMutation = {
|
|
26547
26819
|
__typename?: 'JiraDevOpsMutation';
|
|
26548
26820
|
approveJiraBitbucketWorkspaceAccessRequest?: Maybe<JiraApproveJiraBitbucketWorkspaceAccessRequestPayload>;
|
|
26821
|
+
createAutofixJob?: Maybe<JiraAutofixCreateJobPayload>;
|
|
26549
26822
|
dismissBitbucketPendingAccessRequestBanner?: Maybe<JiraDismissBitbucketPendingAccessRequestBannerPayload>;
|
|
26550
26823
|
dismissDevOpsIssuePanelBanner?: Maybe<JiraDismissDevOpsIssuePanelBannerPayload>;
|
|
26551
26824
|
dismissInContextConfigPrompt?: Maybe<JiraDismissInContextConfigPromptPayload>;
|
|
@@ -26558,6 +26831,10 @@ export declare type JiraDevOpsMutationApproveJiraBitbucketWorkspaceAccessRequest
|
|
|
26558
26831
|
cloudId: Scalars['ID']['input'];
|
|
26559
26832
|
input: JiraApproveJiraBitbucketWorkspaceAccessRequestInput;
|
|
26560
26833
|
};
|
|
26834
|
+
export declare type JiraDevOpsMutationCreateAutofixJobArgs = {
|
|
26835
|
+
cloudId: Scalars['ID']['input'];
|
|
26836
|
+
input: JiraAutofixInput;
|
|
26837
|
+
};
|
|
26561
26838
|
export declare type JiraDevOpsMutationDismissBitbucketPendingAccessRequestBannerArgs = {
|
|
26562
26839
|
cloudId: Scalars['ID']['input'];
|
|
26563
26840
|
input: JiraDismissBitbucketPendingAccessRequestBannerInput;
|
|
@@ -26601,6 +26878,7 @@ export declare type JiraDevOpsPullRequestDetails = {
|
|
|
26601
26878
|
};
|
|
26602
26879
|
export declare type JiraDevOpsQuery = {
|
|
26603
26880
|
__typename?: 'JiraDevOpsQuery';
|
|
26881
|
+
autofixJobs?: Maybe<JiraAutofixJobConnection>;
|
|
26604
26882
|
bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
|
|
26605
26883
|
configState?: Maybe<JiraAppConfigState>;
|
|
26606
26884
|
configStates?: Maybe<JiraAppConfigStateConnection>;
|
|
@@ -26608,6 +26886,9 @@ export declare type JiraDevOpsQuery = {
|
|
|
26608
26886
|
isInContextConfigPromptDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
26609
26887
|
toolchain?: Maybe<JiraToolchain>;
|
|
26610
26888
|
};
|
|
26889
|
+
export declare type JiraDevOpsQueryAutofixJobsArgs = {
|
|
26890
|
+
issueAri: Scalars['ID']['input'];
|
|
26891
|
+
};
|
|
26611
26892
|
export declare type JiraDevOpsQueryBitbucketIntegrationArgs = {
|
|
26612
26893
|
cloudId: Scalars['ID']['input'];
|
|
26613
26894
|
};
|
|
@@ -27521,6 +27802,7 @@ export declare type JiraIssueConnection = {
|
|
|
27521
27802
|
};
|
|
27522
27803
|
export declare type JiraIssueConnectionPageCursorsArgs = {
|
|
27523
27804
|
maxCursors: Scalars['Int']['input'];
|
|
27805
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
27524
27806
|
};
|
|
27525
27807
|
export declare type JiraIssueCreatedStreamHubPayload = {
|
|
27526
27808
|
__typename?: 'JiraIssueCreatedStreamHubPayload';
|
|
@@ -28170,10 +28452,12 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
28170
28452
|
view?: Maybe<JiraIssueSearchView>;
|
|
28171
28453
|
};
|
|
28172
28454
|
export declare type JiraIssueTransitionFieldLevelInput = {
|
|
28455
|
+
JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
|
|
28173
28456
|
JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
|
|
28174
28457
|
JiraDateField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
28175
28458
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
28176
28459
|
JiraMultipleSelectField?: InputMaybe<Array<JiraUpdateMultipleSelectFieldInput>>;
|
|
28460
|
+
JiraMultipleVersionPickerField?: InputMaybe<Array<JiraUpdateMultipleVersionPickerFieldInput>>;
|
|
28177
28461
|
JiraParentField?: InputMaybe<Array<JiraUpdateParentFieldInput>>;
|
|
28178
28462
|
JiraPriorityField?: InputMaybe<Array<JiraUpdatePriorityFieldInput>>;
|
|
28179
28463
|
JiraRadioSelectField?: InputMaybe<Array<JiraUpdateRadioSelectFieldInput>>;
|
|
@@ -29130,6 +29414,16 @@ export declare type JiraMultipleVersionPickerFieldInput = {
|
|
|
29130
29414
|
fieldId: Scalars['ID']['input'];
|
|
29131
29415
|
versions: Array<JiraVersionInput>;
|
|
29132
29416
|
};
|
|
29417
|
+
export declare type JiraMultipleVersionPickerFieldOperationInput = {
|
|
29418
|
+
ids: Array<Scalars['ID']['input']>;
|
|
29419
|
+
operation: JiraMultiValueFieldOperations;
|
|
29420
|
+
};
|
|
29421
|
+
export declare type JiraMultipleVersionPickerFieldPayload = Payload & {
|
|
29422
|
+
__typename?: 'JiraMultipleVersionPickerFieldPayload';
|
|
29423
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29424
|
+
field?: Maybe<JiraMultipleVersionPickerField>;
|
|
29425
|
+
success: Scalars['Boolean']['output'];
|
|
29426
|
+
};
|
|
29133
29427
|
export declare type JiraMutation = {
|
|
29134
29428
|
__typename?: 'JiraMutation';
|
|
29135
29429
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
@@ -29164,6 +29458,7 @@ export declare type JiraMutation = {
|
|
|
29164
29458
|
linkIssuesToIncident?: Maybe<JiraLinkIssuesToIncidentMutationPayload>;
|
|
29165
29459
|
makeTransition?: Maybe<JiraIssueTransitionResponse>;
|
|
29166
29460
|
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
29461
|
+
rankIssues?: Maybe<JiraRankMutationPayload>;
|
|
29167
29462
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
29168
29463
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
29169
29464
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
@@ -29199,6 +29494,7 @@ export declare type JiraMutation = {
|
|
|
29199
29494
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
29200
29495
|
updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
|
|
29201
29496
|
updateMultipleSelectField?: Maybe<JiraMultipleSelectFieldPayload>;
|
|
29497
|
+
updateMultipleVersionPickerField?: Maybe<JiraMultipleVersionPickerFieldPayload>;
|
|
29202
29498
|
updateNumberField?: Maybe<JiraNumberFieldPayload>;
|
|
29203
29499
|
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
29204
29500
|
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
@@ -29328,6 +29624,9 @@ export declare type JiraMutationMakeTransitionArgs = {
|
|
|
29328
29624
|
export declare type JiraMutationMoveIssuesToFixVersionArgs = {
|
|
29329
29625
|
input: JiraMoveIssuesToFixVersionInput;
|
|
29330
29626
|
};
|
|
29627
|
+
export declare type JiraMutationRankIssuesArgs = {
|
|
29628
|
+
rankInput: JiraRankMutationInput;
|
|
29629
|
+
};
|
|
29331
29630
|
export declare type JiraMutationRemoveIssuesFromAllFixVersionsArgs = {
|
|
29332
29631
|
input: JiraRemoveIssuesFromAllFixVersionsInput;
|
|
29333
29632
|
};
|
|
@@ -29440,6 +29739,9 @@ export declare type JiraMutationUpdateLegacyTeamFieldArgs = {
|
|
|
29440
29739
|
export declare type JiraMutationUpdateMultipleSelectFieldArgs = {
|
|
29441
29740
|
input: JiraUpdateMultipleSelectFieldInput;
|
|
29442
29741
|
};
|
|
29742
|
+
export declare type JiraMutationUpdateMultipleVersionPickerFieldArgs = {
|
|
29743
|
+
input: JiraUpdateMultipleVersionPickerFieldInput;
|
|
29744
|
+
};
|
|
29443
29745
|
export declare type JiraMutationUpdateNumberFieldArgs = {
|
|
29444
29746
|
input: JiraUpdateNumberFieldInput;
|
|
29445
29747
|
};
|
|
@@ -29594,11 +29896,14 @@ export declare type JiraNotificationPreferences = {
|
|
|
29594
29896
|
commentCreated?: Maybe<JiraNotificationPreference>;
|
|
29595
29897
|
commentDeleted?: Maybe<JiraNotificationPreference>;
|
|
29596
29898
|
commentEdited?: Maybe<JiraNotificationPreference>;
|
|
29597
|
-
commentReacted?: Maybe<JiraNotificationPreference>;
|
|
29598
29899
|
issueAssigned?: Maybe<JiraNotificationPreference>;
|
|
29900
|
+
issueCreated?: Maybe<JiraNotificationPreference>;
|
|
29599
29901
|
issueDeleted?: Maybe<JiraNotificationPreference>;
|
|
29600
29902
|
issueMentioned?: Maybe<JiraNotificationPreference>;
|
|
29903
|
+
issueMoved?: Maybe<JiraNotificationPreference>;
|
|
29601
29904
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
29905
|
+
mentionsCombined?: Maybe<JiraNotificationPreference>;
|
|
29906
|
+
worklogCombined?: Maybe<JiraNotificationPreference>;
|
|
29602
29907
|
};
|
|
29603
29908
|
export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
29604
29909
|
__typename?: 'JiraNotificationProjectPreferenceConnection';
|
|
@@ -29617,8 +29922,12 @@ export declare enum JiraNotificationType {
|
|
|
29617
29922
|
CommentDeleted = "COMMENT_DELETED",
|
|
29618
29923
|
CommentEdited = "COMMENT_EDITED",
|
|
29619
29924
|
IssueAssigned = "ISSUE_ASSIGNED",
|
|
29925
|
+
IssueCreated = "ISSUE_CREATED",
|
|
29620
29926
|
IssueDeleted = "ISSUE_DELETED",
|
|
29621
|
-
|
|
29927
|
+
IssueMoved = "ISSUE_MOVED",
|
|
29928
|
+
IssueUpdated = "ISSUE_UPDATED",
|
|
29929
|
+
MentionsCombined = "MENTIONS_COMBINED",
|
|
29930
|
+
WorklogCombined = "WORKLOG_COMBINED"
|
|
29622
29931
|
}
|
|
29623
29932
|
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
29624
29933
|
__typename?: 'JiraNumberField';
|
|
@@ -29939,6 +30248,7 @@ export declare type JiraParentOption = Node & {
|
|
|
29939
30248
|
export declare type JiraParentOptionChildOptionsArgs = {
|
|
29940
30249
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29941
30250
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
30251
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
29942
30252
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29943
30253
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
29944
30254
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30408,6 +30718,7 @@ export declare enum JiraProjectActionType {
|
|
|
30408
30718
|
EditProjectConfig = "EDIT_PROJECT_CONFIG",
|
|
30409
30719
|
LinkIssues = "LINK_ISSUES",
|
|
30410
30720
|
ScheduleIssues = "SCHEDULE_ISSUES",
|
|
30721
|
+
TransitionIssues = "TRANSITION_ISSUES",
|
|
30411
30722
|
ViewIssues = "VIEW_ISSUES"
|
|
30412
30723
|
}
|
|
30413
30724
|
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
|
|
@@ -30928,6 +31239,7 @@ export declare type JiraQuery = {
|
|
|
30928
31239
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
30929
31240
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
30930
31241
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
31242
|
+
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
30931
31243
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
30932
31244
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
30933
31245
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -31384,6 +31696,10 @@ export declare type JiraQueryResourceUsageMetricsArgs = {
|
|
|
31384
31696
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31385
31697
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31386
31698
|
};
|
|
31699
|
+
export declare type JiraQueryResourceUsageRecommendationStatsArgs = {
|
|
31700
|
+
category: JiraRecommendationCategory;
|
|
31701
|
+
cloudId: Scalars['ID']['input'];
|
|
31702
|
+
};
|
|
31387
31703
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
31388
31704
|
issueId: Scalars['ID']['input'];
|
|
31389
31705
|
};
|
|
@@ -31481,6 +31797,25 @@ export declare type JiraRadioSelectFieldPayload = Payload & {
|
|
|
31481
31797
|
field?: Maybe<JiraRadioSelectField>;
|
|
31482
31798
|
success: Scalars['Boolean']['output'];
|
|
31483
31799
|
};
|
|
31800
|
+
export declare enum JiraRankMutationEdge {
|
|
31801
|
+
Bottom = "BOTTOM",
|
|
31802
|
+
Top = "TOP"
|
|
31803
|
+
}
|
|
31804
|
+
export declare type JiraRankMutationInput = {
|
|
31805
|
+
edge: JiraRankMutationEdge;
|
|
31806
|
+
issues: Array<Scalars['ID']['input']>;
|
|
31807
|
+
relativeToIssue: Scalars['ID']['input'];
|
|
31808
|
+
};
|
|
31809
|
+
export declare type JiraRankMutationPayload = Payload & {
|
|
31810
|
+
__typename?: 'JiraRankMutationPayload';
|
|
31811
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31812
|
+
success: Scalars['Boolean']['output'];
|
|
31813
|
+
};
|
|
31814
|
+
export declare enum JiraRecommendationCategory {
|
|
31815
|
+
CustomField = "CUSTOM_FIELD",
|
|
31816
|
+
IssueArchival = "ISSUE_ARCHIVAL",
|
|
31817
|
+
ProjectRoleActor = "PROJECT_ROLE_ACTOR"
|
|
31818
|
+
}
|
|
31484
31819
|
export declare type JiraReleaseNotesConfiguration = {
|
|
31485
31820
|
__typename?: 'JiraReleaseNotesConfiguration';
|
|
31486
31821
|
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -31714,6 +32049,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
31714
32049
|
export declare type JiraResolutionFieldResolutionsArgs = {
|
|
31715
32050
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31716
32051
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
32052
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
31717
32053
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31718
32054
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31719
32055
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31805,6 +32141,11 @@ export declare type JiraResourceUsageMetricValueEdge = {
|
|
|
31805
32141
|
cursor: Scalars['String']['output'];
|
|
31806
32142
|
node?: Maybe<JiraResourceUsageMetricValue>;
|
|
31807
32143
|
};
|
|
32144
|
+
export declare type JiraResourceUsageRecommendationStats = {
|
|
32145
|
+
__typename?: 'JiraResourceUsageRecommendationStats';
|
|
32146
|
+
lastCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
32147
|
+
lastExecuted?: Maybe<Scalars['DateTime']['output']>;
|
|
32148
|
+
};
|
|
31808
32149
|
export declare enum JiraResourceUsageRecommendationStatus {
|
|
31809
32150
|
Executed = "EXECUTED",
|
|
31810
32151
|
New = "NEW",
|
|
@@ -33096,6 +33437,7 @@ export declare type JiraSprintField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
33096
33437
|
fieldId: Scalars['String']['output'];
|
|
33097
33438
|
id: Scalars['ID']['output'];
|
|
33098
33439
|
name: Scalars['String']['output'];
|
|
33440
|
+
nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
|
|
33099
33441
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
33100
33442
|
selectedSprints?: Maybe<Array<Maybe<JiraSprint>>>;
|
|
33101
33443
|
selectedSprintsConnection?: Maybe<JiraSprintConnection>;
|
|
@@ -33598,6 +33940,10 @@ export declare type JiraUpdateMultipleSelectFieldInput = {
|
|
|
33598
33940
|
id: Scalars['ID']['input'];
|
|
33599
33941
|
operations: Array<JiraMultipleSelectFieldOperationInput>;
|
|
33600
33942
|
};
|
|
33943
|
+
export declare type JiraUpdateMultipleVersionPickerFieldInput = {
|
|
33944
|
+
id: Scalars['ID']['input'];
|
|
33945
|
+
operations: Array<JiraMultipleVersionPickerFieldOperationInput>;
|
|
33946
|
+
};
|
|
33601
33947
|
export declare type JiraUpdateNotificationOptionsInput = {
|
|
33602
33948
|
emailMimeType?: InputMaybe<JiraEmailMimeType>;
|
|
33603
33949
|
isEmailNotificationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35578,6 +35924,7 @@ export declare type Mutation = {
|
|
|
35578
35924
|
helpExternalResource?: Maybe<HelpExternalResourceMutationApi>;
|
|
35579
35925
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
35580
35926
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
35927
|
+
insightsMutation?: Maybe<InsightsMutation>;
|
|
35581
35928
|
installApp?: Maybe<AppInstallationResponse>;
|
|
35582
35929
|
invokeAuxEffects?: Maybe<InvokeAuxEffectsResponse>;
|
|
35583
35930
|
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
@@ -38343,6 +38690,8 @@ export declare type Query = {
|
|
|
38343
38690
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
38344
38691
|
team?: Maybe<TeamQuery>;
|
|
38345
38692
|
template?: Maybe<ContentPlatformTemplate>;
|
|
38693
|
+
templateCollection?: Maybe<ContentPlatformTemplateCollection>;
|
|
38694
|
+
templateCollections: ContentPlatformTemplateCollectionContentSearchConnection;
|
|
38346
38695
|
templates: ContentPlatformTemplateContentSearchConnection;
|
|
38347
38696
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
38348
38697
|
testing?: Maybe<Testing>;
|
|
@@ -38753,6 +39102,13 @@ export declare type QueryTemplateArgs = {
|
|
|
38753
39102
|
id: Scalars['String']['input'];
|
|
38754
39103
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38755
39104
|
};
|
|
39105
|
+
export declare type QueryTemplateCollectionArgs = {
|
|
39106
|
+
id: Scalars['String']['input'];
|
|
39107
|
+
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39108
|
+
};
|
|
39109
|
+
export declare type QueryTemplateCollectionsArgs = {
|
|
39110
|
+
search: ContentPlatformSearchApIv2Query;
|
|
39111
|
+
};
|
|
38756
39112
|
export declare type QueryTemplatesArgs = {
|
|
38757
39113
|
search: ContentPlatformSearchApIv2Query;
|
|
38758
39114
|
};
|
|
@@ -40536,8 +40892,10 @@ export declare type ShepherdActivityHighlight = {
|
|
|
40536
40892
|
action?: Maybe<ShepherdActionType>;
|
|
40537
40893
|
actor?: Maybe<ShepherdActor>;
|
|
40538
40894
|
actorSessionInfo?: Maybe<ShepherdActorSessionInfo>;
|
|
40895
|
+
categorizedMetadata?: Maybe<Array<ShepherdCategorizedAlertMetadata>>;
|
|
40539
40896
|
eventIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
40540
40897
|
histogram?: Maybe<Array<ShepherdActivityHistogramBucket>>;
|
|
40898
|
+
resourceEvents?: Maybe<Array<ShepherdResourceEvent>>;
|
|
40541
40899
|
subject?: Maybe<ShepherdSubject>;
|
|
40542
40900
|
time?: Maybe<ShepherdTime>;
|
|
40543
40901
|
};
|
|
@@ -40733,6 +41091,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
40733
41091
|
ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
|
|
40734
41092
|
GrantAssignedJiraPermissionScheme = "GRANT_ASSIGNED_JIRA_PERMISSION_SCHEME",
|
|
40735
41093
|
IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
|
|
41094
|
+
ImpossibleTravel = "IMPOSSIBLE_TRAVEL",
|
|
40736
41095
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
40737
41096
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
40738
41097
|
LoginFromMaliciousIpAddress = "LOGIN_FROM_MALICIOUS_IP_ADDRESS",
|
|
@@ -40773,6 +41132,11 @@ export declare enum ShepherdAtlassianProduct {
|
|
|
40773
41132
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
40774
41133
|
Marketplace = "MARKETPLACE"
|
|
40775
41134
|
}
|
|
41135
|
+
export declare type ShepherdCategorizedAlertMetadata = {
|
|
41136
|
+
__typename?: 'ShepherdCategorizedAlertMetadata';
|
|
41137
|
+
category: Scalars['String']['output'];
|
|
41138
|
+
values: Array<Scalars['String']['output']>;
|
|
41139
|
+
};
|
|
40776
41140
|
export declare type ShepherdCreateAlertInput = {
|
|
40777
41141
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
40778
41142
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -41086,6 +41450,11 @@ export declare type ShepherdResourceActivity = {
|
|
|
41086
41450
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
41087
41451
|
time: Scalars['DateTime']['output'];
|
|
41088
41452
|
};
|
|
41453
|
+
export declare type ShepherdResourceEvent = {
|
|
41454
|
+
__typename?: 'ShepherdResourceEvent';
|
|
41455
|
+
ari: Scalars['String']['output'];
|
|
41456
|
+
time: Scalars['DateTime']['output'];
|
|
41457
|
+
};
|
|
41089
41458
|
export declare type ShepherdSite = {
|
|
41090
41459
|
__typename?: 'ShepherdSite';
|
|
41091
41460
|
cloudId: Scalars['ID']['output'];
|