@forge/cli-shared 3.23.2-next.1 → 3.23.2-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/out/graphql/graphql-types.d.ts +368 -4
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +69 -10
- 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>;
|
|
@@ -29200,6 +29494,7 @@ export declare type JiraMutation = {
|
|
|
29200
29494
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
29201
29495
|
updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
|
|
29202
29496
|
updateMultipleSelectField?: Maybe<JiraMultipleSelectFieldPayload>;
|
|
29497
|
+
updateMultipleVersionPickerField?: Maybe<JiraMultipleVersionPickerFieldPayload>;
|
|
29203
29498
|
updateNumberField?: Maybe<JiraNumberFieldPayload>;
|
|
29204
29499
|
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
29205
29500
|
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
@@ -29444,6 +29739,9 @@ export declare type JiraMutationUpdateLegacyTeamFieldArgs = {
|
|
|
29444
29739
|
export declare type JiraMutationUpdateMultipleSelectFieldArgs = {
|
|
29445
29740
|
input: JiraUpdateMultipleSelectFieldInput;
|
|
29446
29741
|
};
|
|
29742
|
+
export declare type JiraMutationUpdateMultipleVersionPickerFieldArgs = {
|
|
29743
|
+
input: JiraUpdateMultipleVersionPickerFieldInput;
|
|
29744
|
+
};
|
|
29447
29745
|
export declare type JiraMutationUpdateNumberFieldArgs = {
|
|
29448
29746
|
input: JiraUpdateNumberFieldInput;
|
|
29449
29747
|
};
|
|
@@ -29950,6 +30248,7 @@ export declare type JiraParentOption = Node & {
|
|
|
29950
30248
|
export declare type JiraParentOptionChildOptionsArgs = {
|
|
29951
30249
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29952
30250
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
30251
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
29953
30252
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29954
30253
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
29955
30254
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30940,12 +31239,14 @@ export declare type JiraQuery = {
|
|
|
30940
31239
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
30941
31240
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
30942
31241
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
31242
|
+
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
30943
31243
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
30944
31244
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
30945
31245
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
30946
31246
|
stringUserProperty?: Maybe<JiraEntityPropertyString>;
|
|
30947
31247
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
30948
31248
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
31249
|
+
uiModifications?: Maybe<Array<JiraUiModification>>;
|
|
30949
31250
|
userHomePage?: Maybe<JiraHomePage>;
|
|
30950
31251
|
userPreferences?: Maybe<JiraUserPreferences>;
|
|
30951
31252
|
userSegmentation?: Maybe<JiraUserSegmentation>;
|
|
@@ -31396,6 +31697,10 @@ export declare type JiraQueryResourceUsageMetricsArgs = {
|
|
|
31396
31697
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31397
31698
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31398
31699
|
};
|
|
31700
|
+
export declare type JiraQueryResourceUsageRecommendationStatsArgs = {
|
|
31701
|
+
category: JiraRecommendationCategory;
|
|
31702
|
+
cloudId: Scalars['ID']['input'];
|
|
31703
|
+
};
|
|
31399
31704
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
31400
31705
|
issueId: Scalars['ID']['input'];
|
|
31401
31706
|
};
|
|
@@ -31423,6 +31728,9 @@ export declare type JiraQuerySystemFiltersArgs = {
|
|
|
31423
31728
|
export declare type JiraQueryTimeTrackingSettingsArgs = {
|
|
31424
31729
|
cloudId: Scalars['ID']['input'];
|
|
31425
31730
|
};
|
|
31731
|
+
export declare type JiraQueryUiModificationsArgs = {
|
|
31732
|
+
context: JiraUiModificationsContextInput;
|
|
31733
|
+
};
|
|
31426
31734
|
export declare type JiraQueryUserHomePageArgs = {
|
|
31427
31735
|
cloudId: Scalars['ID']['input'];
|
|
31428
31736
|
};
|
|
@@ -31507,6 +31815,11 @@ export declare type JiraRankMutationPayload = Payload & {
|
|
|
31507
31815
|
errors?: Maybe<Array<MutationError>>;
|
|
31508
31816
|
success: Scalars['Boolean']['output'];
|
|
31509
31817
|
};
|
|
31818
|
+
export declare enum JiraRecommendationCategory {
|
|
31819
|
+
CustomField = "CUSTOM_FIELD",
|
|
31820
|
+
IssueArchival = "ISSUE_ARCHIVAL",
|
|
31821
|
+
ProjectRoleActor = "PROJECT_ROLE_ACTOR"
|
|
31822
|
+
}
|
|
31510
31823
|
export declare type JiraReleaseNotesConfiguration = {
|
|
31511
31824
|
__typename?: 'JiraReleaseNotesConfiguration';
|
|
31512
31825
|
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -31740,6 +32053,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
31740
32053
|
export declare type JiraResolutionFieldResolutionsArgs = {
|
|
31741
32054
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31742
32055
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
32056
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
31743
32057
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31744
32058
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31745
32059
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31831,6 +32145,11 @@ export declare type JiraResourceUsageMetricValueEdge = {
|
|
|
31831
32145
|
cursor: Scalars['String']['output'];
|
|
31832
32146
|
node?: Maybe<JiraResourceUsageMetricValue>;
|
|
31833
32147
|
};
|
|
32148
|
+
export declare type JiraResourceUsageRecommendationStats = {
|
|
32149
|
+
__typename?: 'JiraResourceUsageRecommendationStats';
|
|
32150
|
+
lastCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
32151
|
+
lastExecuted?: Maybe<Scalars['DateTime']['output']>;
|
|
32152
|
+
};
|
|
31834
32153
|
export declare enum JiraResourceUsageRecommendationStatus {
|
|
31835
32154
|
Executed = "EXECUTED",
|
|
31836
32155
|
New = "NEW",
|
|
@@ -33122,6 +33441,7 @@ export declare type JiraSprintField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
33122
33441
|
fieldId: Scalars['String']['output'];
|
|
33123
33442
|
id: Scalars['ID']['output'];
|
|
33124
33443
|
name: Scalars['String']['output'];
|
|
33444
|
+
nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
|
|
33125
33445
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
33126
33446
|
selectedSprints?: Maybe<Array<Maybe<JiraSprint>>>;
|
|
33127
33447
|
selectedSprintsConnection?: Maybe<JiraSprintConnection>;
|
|
@@ -33534,6 +33854,22 @@ export declare type JiraUiExposedError = {
|
|
|
33534
33854
|
__typename?: 'JiraUIExposedError';
|
|
33535
33855
|
message?: Maybe<Scalars['String']['output']>;
|
|
33536
33856
|
};
|
|
33857
|
+
export declare type JiraUiModification = {
|
|
33858
|
+
__typename?: 'JiraUiModification';
|
|
33859
|
+
appEnvId: Scalars['String']['output'];
|
|
33860
|
+
data?: Maybe<Scalars['String']['output']>;
|
|
33861
|
+
id: Scalars['ID']['output'];
|
|
33862
|
+
};
|
|
33863
|
+
export declare type JiraUiModificationsContextInput = {
|
|
33864
|
+
issueTypeId: Scalars['ID']['input'];
|
|
33865
|
+
projectId: Scalars['ID']['input'];
|
|
33866
|
+
viewType: JiraUiModificationsViewType;
|
|
33867
|
+
};
|
|
33868
|
+
export declare enum JiraUiModificationsViewType {
|
|
33869
|
+
Gic = "GIC",
|
|
33870
|
+
IssueTransition = "IssueTransition",
|
|
33871
|
+
IssueView = "IssueView"
|
|
33872
|
+
}
|
|
33537
33873
|
export declare type JiraUnlinkIssuesFromIncidentMutationInput = {
|
|
33538
33874
|
incidentId: Scalars['ID']['input'];
|
|
33539
33875
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -33624,6 +33960,10 @@ export declare type JiraUpdateMultipleSelectFieldInput = {
|
|
|
33624
33960
|
id: Scalars['ID']['input'];
|
|
33625
33961
|
operations: Array<JiraMultipleSelectFieldOperationInput>;
|
|
33626
33962
|
};
|
|
33963
|
+
export declare type JiraUpdateMultipleVersionPickerFieldInput = {
|
|
33964
|
+
id: Scalars['ID']['input'];
|
|
33965
|
+
operations: Array<JiraMultipleVersionPickerFieldOperationInput>;
|
|
33966
|
+
};
|
|
33627
33967
|
export declare type JiraUpdateNotificationOptionsInput = {
|
|
33628
33968
|
emailMimeType?: InputMaybe<JiraEmailMimeType>;
|
|
33629
33969
|
isEmailNotificationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35402,6 +35742,7 @@ export declare type MarketplaceStoreInstallAppTargetInput = {
|
|
|
35402
35742
|
product: MarketplaceStoreInstallationTargetProduct;
|
|
35403
35743
|
};
|
|
35404
35744
|
export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
35745
|
+
Compass = "COMPASS",
|
|
35405
35746
|
Confluence = "CONFLUENCE",
|
|
35406
35747
|
Jira = "JIRA"
|
|
35407
35748
|
}
|
|
@@ -35604,6 +35945,7 @@ export declare type Mutation = {
|
|
|
35604
35945
|
helpExternalResource?: Maybe<HelpExternalResourceMutationApi>;
|
|
35605
35946
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
35606
35947
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
35948
|
+
insightsMutation?: Maybe<InsightsMutation>;
|
|
35607
35949
|
installApp?: Maybe<AppInstallationResponse>;
|
|
35608
35950
|
invokeAuxEffects?: Maybe<InvokeAuxEffectsResponse>;
|
|
35609
35951
|
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
@@ -38369,6 +38711,8 @@ export declare type Query = {
|
|
|
38369
38711
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
38370
38712
|
team?: Maybe<TeamQuery>;
|
|
38371
38713
|
template?: Maybe<ContentPlatformTemplate>;
|
|
38714
|
+
templateCollection?: Maybe<ContentPlatformTemplateCollection>;
|
|
38715
|
+
templateCollections: ContentPlatformTemplateCollectionContentSearchConnection;
|
|
38372
38716
|
templates: ContentPlatformTemplateContentSearchConnection;
|
|
38373
38717
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
38374
38718
|
testing?: Maybe<Testing>;
|
|
@@ -38779,6 +39123,13 @@ export declare type QueryTemplateArgs = {
|
|
|
38779
39123
|
id: Scalars['String']['input'];
|
|
38780
39124
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38781
39125
|
};
|
|
39126
|
+
export declare type QueryTemplateCollectionArgs = {
|
|
39127
|
+
id: Scalars['String']['input'];
|
|
39128
|
+
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39129
|
+
};
|
|
39130
|
+
export declare type QueryTemplateCollectionsArgs = {
|
|
39131
|
+
search: ContentPlatformSearchApIv2Query;
|
|
39132
|
+
};
|
|
38782
39133
|
export declare type QueryTemplatesArgs = {
|
|
38783
39134
|
search: ContentPlatformSearchApIv2Query;
|
|
38784
39135
|
};
|
|
@@ -40562,8 +40913,10 @@ export declare type ShepherdActivityHighlight = {
|
|
|
40562
40913
|
action?: Maybe<ShepherdActionType>;
|
|
40563
40914
|
actor?: Maybe<ShepherdActor>;
|
|
40564
40915
|
actorSessionInfo?: Maybe<ShepherdActorSessionInfo>;
|
|
40916
|
+
categorizedMetadata?: Maybe<Array<ShepherdCategorizedAlertMetadata>>;
|
|
40565
40917
|
eventIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
40566
40918
|
histogram?: Maybe<Array<ShepherdActivityHistogramBucket>>;
|
|
40919
|
+
resourceEvents?: Maybe<Array<ShepherdResourceEvent>>;
|
|
40567
40920
|
subject?: Maybe<ShepherdSubject>;
|
|
40568
40921
|
time?: Maybe<ShepherdTime>;
|
|
40569
40922
|
};
|
|
@@ -40759,6 +41112,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
40759
41112
|
ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
|
|
40760
41113
|
GrantAssignedJiraPermissionScheme = "GRANT_ASSIGNED_JIRA_PERMISSION_SCHEME",
|
|
40761
41114
|
IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
|
|
41115
|
+
ImpossibleTravel = "IMPOSSIBLE_TRAVEL",
|
|
40762
41116
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
40763
41117
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
40764
41118
|
LoginFromMaliciousIpAddress = "LOGIN_FROM_MALICIOUS_IP_ADDRESS",
|
|
@@ -40799,6 +41153,11 @@ export declare enum ShepherdAtlassianProduct {
|
|
|
40799
41153
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
40800
41154
|
Marketplace = "MARKETPLACE"
|
|
40801
41155
|
}
|
|
41156
|
+
export declare type ShepherdCategorizedAlertMetadata = {
|
|
41157
|
+
__typename?: 'ShepherdCategorizedAlertMetadata';
|
|
41158
|
+
category: Scalars['String']['output'];
|
|
41159
|
+
values: Array<Scalars['String']['output']>;
|
|
41160
|
+
};
|
|
40802
41161
|
export declare type ShepherdCreateAlertInput = {
|
|
40803
41162
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
40804
41163
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -41112,6 +41471,11 @@ export declare type ShepherdResourceActivity = {
|
|
|
41112
41471
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
41113
41472
|
time: Scalars['DateTime']['output'];
|
|
41114
41473
|
};
|
|
41474
|
+
export declare type ShepherdResourceEvent = {
|
|
41475
|
+
__typename?: 'ShepherdResourceEvent';
|
|
41476
|
+
ari: Scalars['String']['output'];
|
|
41477
|
+
time: Scalars['DateTime']['output'];
|
|
41478
|
+
};
|
|
41115
41479
|
export declare type ShepherdSite = {
|
|
41116
41480
|
__typename?: 'ShepherdSite';
|
|
41117
41481
|
cloudId: Scalars['ID']['output'];
|