@forge/cli-shared 3.25.0-next.3 → 3.25.0-next.5
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 +24 -0
- package/out/graphql/graphql-types.d.ts +248 -189
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +20 -7
- package/package.json +6 -6
|
@@ -1766,7 +1766,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
1766
1766
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
1767
1767
|
id: Scalars['ID']['output'];
|
|
1768
1768
|
};
|
|
1769
|
-
export declare type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsIncidentDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraIssue | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
1769
|
+
export declare type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsIncidentDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
1770
1770
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
1771
1771
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
1772
1772
|
from?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2822,6 +2822,10 @@ export declare enum CcpTiersMode {
|
|
|
2822
2822
|
export declare type CcpTransactionAccount = CommerceTransactionAccount & {
|
|
2823
2823
|
__typename?: 'CcpTransactionAccount';
|
|
2824
2824
|
experienceCapabilities?: Maybe<CcpTransactionAccountExperienceCapabilities>;
|
|
2825
|
+
id: Scalars['ID']['output'];
|
|
2826
|
+
isBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2827
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
2828
|
+
partner?: Maybe<Scalars['Boolean']['output']>;
|
|
2825
2829
|
};
|
|
2826
2830
|
export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransactionAccountExperienceCapabilities & {
|
|
2827
2831
|
__typename?: 'CcpTransactionAccountExperienceCapabilities';
|
|
@@ -2962,6 +2966,7 @@ export declare type CommerceEntitlementExperienceCapabilitiesChangeOfferingV2Arg
|
|
|
2962
2966
|
};
|
|
2963
2967
|
export declare type CommerceEntitlementFilter = {
|
|
2964
2968
|
AND?: InputMaybe<Array<InputMaybe<CommerceEntitlementFilter>>>;
|
|
2969
|
+
OR?: InputMaybe<Array<InputMaybe<CommerceEntitlementFilter>>>;
|
|
2965
2970
|
inTrialOrPreDunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2966
2971
|
};
|
|
2967
2972
|
export declare type CommerceEntitlementInfo = {
|
|
@@ -3020,6 +3025,9 @@ export declare type CommerceSubscription = {
|
|
|
3020
3025
|
};
|
|
3021
3026
|
export declare type CommerceTransactionAccount = {
|
|
3022
3027
|
experienceCapabilities?: Maybe<CommerceTransactionAccountExperienceCapabilities>;
|
|
3028
|
+
isBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
3029
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
3030
|
+
partner?: Maybe<Scalars['Boolean']['output']>;
|
|
3023
3031
|
};
|
|
3024
3032
|
export declare type CommerceTransactionAccountExperienceCapabilities = {
|
|
3025
3033
|
addPaymentMethod?: Maybe<CommerceExperienceCapability>;
|
|
@@ -7478,18 +7486,6 @@ export declare type CreateJiraProjectAndRepositoryRelationshipPayload = Payload
|
|
|
7478
7486
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
7479
7487
|
success: Scalars['Boolean']['output'];
|
|
7480
7488
|
};
|
|
7481
|
-
export declare type CreatePolarisCalculatedField = {
|
|
7482
|
-
formula: Scalars['JSON']['input'];
|
|
7483
|
-
label: Scalars['String']['input'];
|
|
7484
|
-
presentation?: InputMaybe<PolarisPresentationInput>;
|
|
7485
|
-
project: Scalars['ID']['input'];
|
|
7486
|
-
};
|
|
7487
|
-
export declare type CreatePolarisCalculatedFieldPayload = Payload & {
|
|
7488
|
-
__typename?: 'CreatePolarisCalculatedFieldPayload';
|
|
7489
|
-
errors?: Maybe<Array<MutationError>>;
|
|
7490
|
-
node?: Maybe<PolarisIdeaField>;
|
|
7491
|
-
success: Scalars['Boolean']['output'];
|
|
7492
|
-
};
|
|
7493
7489
|
export declare type CreatePolarisCommentInput = {
|
|
7494
7490
|
content?: InputMaybe<Scalars['JSON']['input']>;
|
|
7495
7491
|
kind?: InputMaybe<PolarisCommentKind>;
|
|
@@ -7501,16 +7497,6 @@ export declare type CreatePolarisCommentPayload = Payload & {
|
|
|
7501
7497
|
node?: Maybe<PolarisComment>;
|
|
7502
7498
|
success: Scalars['Boolean']['output'];
|
|
7503
7499
|
};
|
|
7504
|
-
export declare type CreatePolarisDecorationInput = {
|
|
7505
|
-
field: Scalars['ID']['input'];
|
|
7506
|
-
update: UpdatePolarisDecorationInput;
|
|
7507
|
-
};
|
|
7508
|
-
export declare type CreatePolarisDecorationPayload = Payload & {
|
|
7509
|
-
__typename?: 'CreatePolarisDecorationPayload';
|
|
7510
|
-
errors?: Maybe<Array<MutationError>>;
|
|
7511
|
-
node?: Maybe<PolarisDecoration>;
|
|
7512
|
-
success: Scalars['Boolean']['output'];
|
|
7513
|
-
};
|
|
7514
7500
|
export declare type CreatePolarisIdeaTemplateInput = {
|
|
7515
7501
|
color?: InputMaybe<Scalars['String']['input']>;
|
|
7516
7502
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7578,19 +7564,6 @@ export declare type CreatePolarisSnippetInput = {
|
|
|
7578
7564
|
properties?: InputMaybe<Scalars['JSON']['input']>;
|
|
7579
7565
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
7580
7566
|
};
|
|
7581
|
-
export declare type CreatePolarisStandardFieldInput = {
|
|
7582
|
-
fieldType: PolarisFieldType;
|
|
7583
|
-
ideaType: Scalars['ID']['input'];
|
|
7584
|
-
name: Scalars['String']['input'];
|
|
7585
|
-
presentation?: InputMaybe<PolarisPresentationInput>;
|
|
7586
|
-
project: Scalars['ID']['input'];
|
|
7587
|
-
};
|
|
7588
|
-
export declare type CreatePolarisStandardFieldPayload = Payload & {
|
|
7589
|
-
__typename?: 'CreatePolarisStandardFieldPayload';
|
|
7590
|
-
errors?: Maybe<Array<MutationError>>;
|
|
7591
|
-
node?: Maybe<PolarisIdeaField>;
|
|
7592
|
-
success: Scalars['Boolean']['output'];
|
|
7593
|
-
};
|
|
7594
7567
|
export declare type CreatePolarisViewInput = {
|
|
7595
7568
|
container: Scalars['ID']['input'];
|
|
7596
7569
|
copyView?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -8767,32 +8740,6 @@ export declare type DeleteJiraProjectAndRepositoryRelationshipPayload = Payload
|
|
|
8767
8740
|
errors?: Maybe<Array<MutationError>>;
|
|
8768
8741
|
success: Scalars['Boolean']['output'];
|
|
8769
8742
|
};
|
|
8770
|
-
export declare type DeletePolarisDecorationInput = {
|
|
8771
|
-
backgroundColor?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8772
|
-
emoji?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8773
|
-
highlightContainer?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8774
|
-
};
|
|
8775
|
-
export declare type DeletePolarisDecorationPayload = Payload & {
|
|
8776
|
-
__typename?: 'DeletePolarisDecorationPayload';
|
|
8777
|
-
errors?: Maybe<Array<MutationError>>;
|
|
8778
|
-
success: Scalars['Boolean']['output'];
|
|
8779
|
-
};
|
|
8780
|
-
export declare type DeletePolarisFieldOptionInput = {
|
|
8781
|
-
field: Scalars['ID']['input'];
|
|
8782
|
-
ideaType: Scalars['ID']['input'];
|
|
8783
|
-
option: Scalars['ID']['input'];
|
|
8784
|
-
project: Scalars['ID']['input'];
|
|
8785
|
-
};
|
|
8786
|
-
export declare type DeletePolarisFieldOptionPayload = Payload & {
|
|
8787
|
-
__typename?: 'DeletePolarisFieldOptionPayload';
|
|
8788
|
-
errors?: Maybe<Array<MutationError>>;
|
|
8789
|
-
success: Scalars['Boolean']['output'];
|
|
8790
|
-
};
|
|
8791
|
-
export declare type DeletePolarisFieldPayload = Payload & {
|
|
8792
|
-
__typename?: 'DeletePolarisFieldPayload';
|
|
8793
|
-
errors?: Maybe<Array<MutationError>>;
|
|
8794
|
-
success: Scalars['Boolean']['output'];
|
|
8795
|
-
};
|
|
8796
8743
|
export declare type DeletePolarisIdeaTemplateInput = {
|
|
8797
8744
|
id: Scalars['ID']['input'];
|
|
8798
8745
|
project: Scalars['ID']['input'];
|
|
@@ -11025,15 +10972,43 @@ export declare type ForgeAuditLogsContributorsActivityData = {
|
|
|
11025
10972
|
contributors: Array<ForgeAuditLogsContributorActivity>;
|
|
11026
10973
|
};
|
|
11027
10974
|
export declare type ForgeAuditLogsContributorsActivityResult = ForgeAuditLogsContributorsActivityData | QueryError;
|
|
10975
|
+
export declare type ForgeAuditLogsDaResAppData = {
|
|
10976
|
+
__typename?: 'ForgeAuditLogsDaResAppData';
|
|
10977
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
10978
|
+
appInstalledVersion?: Maybe<Scalars['String']['output']>;
|
|
10979
|
+
appName?: Maybe<Scalars['String']['output']>;
|
|
10980
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
10981
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
10982
|
+
destinationLocation?: Maybe<Scalars['String']['output']>;
|
|
10983
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
10984
|
+
environmentId?: Maybe<Scalars['String']['output']>;
|
|
10985
|
+
eventId?: Maybe<Scalars['String']['output']>;
|
|
10986
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
10987
|
+
sourceLocation?: Maybe<Scalars['String']['output']>;
|
|
10988
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
10989
|
+
};
|
|
10990
|
+
export declare type ForgeAuditLogsDaResQueryInput = {
|
|
10991
|
+
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
10992
|
+
startTime?: InputMaybe<Scalars['String']['input']>;
|
|
10993
|
+
};
|
|
10994
|
+
export declare type ForgeAuditLogsDaResResponse = {
|
|
10995
|
+
__typename?: 'ForgeAuditLogsDaResResponse';
|
|
10996
|
+
data?: Maybe<Array<Maybe<ForgeAuditLogsDaResAppData>>>;
|
|
10997
|
+
};
|
|
10998
|
+
export declare type ForgeAuditLogsDaResResult = ForgeAuditLogsDaResResponse | QueryError;
|
|
11028
10999
|
export declare type ForgeAuditLogsQuery = {
|
|
11029
11000
|
__typename?: 'ForgeAuditLogsQuery';
|
|
11030
11001
|
appId: Scalars['ID']['output'];
|
|
11031
11002
|
auditLogs?: Maybe<ForgeAuditLogsResult>;
|
|
11032
11003
|
contributors?: Maybe<ForgeAuditLogsAppContributorResult>;
|
|
11004
|
+
daResAuditLogs?: Maybe<ForgeAuditLogsDaResResult>;
|
|
11033
11005
|
};
|
|
11034
11006
|
export declare type ForgeAuditLogsQueryAuditLogsArgs = {
|
|
11035
11007
|
input: ForgeAuditLogsQueryInput;
|
|
11036
11008
|
};
|
|
11009
|
+
export declare type ForgeAuditLogsQueryDaResAuditLogsArgs = {
|
|
11010
|
+
input: ForgeAuditLogsDaResQueryInput;
|
|
11011
|
+
};
|
|
11037
11012
|
export declare type ForgeAuditLogsQueryInput = {
|
|
11038
11013
|
actions?: InputMaybe<Array<ForgeAuditLogsActionType>>;
|
|
11039
11014
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -24462,6 +24437,9 @@ export declare type HamsSubscription = CommerceSubscription & {
|
|
|
24462
24437
|
export declare type HamsTransactionAccount = CommerceTransactionAccount & {
|
|
24463
24438
|
__typename?: 'HamsTransactionAccount';
|
|
24464
24439
|
experienceCapabilities?: Maybe<HamsTransactionAccountExperienceCapabilities>;
|
|
24440
|
+
isBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
24441
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
24442
|
+
partner?: Maybe<Scalars['Boolean']['output']>;
|
|
24465
24443
|
};
|
|
24466
24444
|
export declare type HamsTransactionAccountExperienceCapabilities = CommerceTransactionAccountExperienceCapabilities & {
|
|
24467
24445
|
__typename?: 'HamsTransactionAccountExperienceCapabilities';
|
|
@@ -24577,6 +24555,17 @@ export declare type HelpCenterBulkDeleteTopicInput = {
|
|
|
24577
24555
|
export declare type HelpCenterBulkUpdateTopicInput = {
|
|
24578
24556
|
helpCenterUpdateTopicInputItem: Array<HelpCenterUpdateTopicInput>;
|
|
24579
24557
|
};
|
|
24558
|
+
export declare type HelpCenterContentGapIndicator = {
|
|
24559
|
+
__typename?: 'HelpCenterContentGapIndicator';
|
|
24560
|
+
clusterId: Scalars['ID']['output'];
|
|
24561
|
+
coverage: Scalars['Float']['output'];
|
|
24562
|
+
keywords: Scalars['String']['output'];
|
|
24563
|
+
questionsCount: Scalars['Int']['output'];
|
|
24564
|
+
};
|
|
24565
|
+
export declare type HelpCenterContentGapIndicatorsWithMetaData = {
|
|
24566
|
+
__typename?: 'HelpCenterContentGapIndicatorsWithMetaData';
|
|
24567
|
+
contentGapIndicators?: Maybe<Array<HelpCenterContentGapIndicator>>;
|
|
24568
|
+
};
|
|
24580
24569
|
export declare type HelpCenterConversation = {
|
|
24581
24570
|
__typename?: 'HelpCenterConversation';
|
|
24582
24571
|
compositeFailureMessageAdf?: Maybe<Scalars['String']['output']>;
|
|
@@ -24854,9 +24843,9 @@ export declare type HelpCenterQueryApiMediaConfigArgs = {
|
|
|
24854
24843
|
export declare type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
24855
24844
|
export declare type HelpCenterReporting = {
|
|
24856
24845
|
__typename?: 'HelpCenterReporting';
|
|
24846
|
+
contentGapIndicatorsWithMetaData?: Maybe<HelpCenterContentGapIndicatorsWithMetaData>;
|
|
24857
24847
|
helpCenterId: Scalars['ID']['output'];
|
|
24858
|
-
|
|
24859
|
-
refreshedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
24848
|
+
performanceIndicatorsWithMetaData?: Maybe<HelpCenterReportingPerformanceIndicatorsWithMetaData>;
|
|
24860
24849
|
};
|
|
24861
24850
|
export declare type HelpCenterReportingPerformanceIndicator = {
|
|
24862
24851
|
__typename?: 'HelpCenterReportingPerformanceIndicator';
|
|
@@ -24865,6 +24854,11 @@ export declare type HelpCenterReportingPerformanceIndicator = {
|
|
|
24865
24854
|
previousValue?: Maybe<Scalars['String']['output']>;
|
|
24866
24855
|
timeWindow?: Maybe<Scalars['String']['output']>;
|
|
24867
24856
|
};
|
|
24857
|
+
export declare type HelpCenterReportingPerformanceIndicatorsWithMetaData = {
|
|
24858
|
+
__typename?: 'HelpCenterReportingPerformanceIndicatorsWithMetaData';
|
|
24859
|
+
performanceIndicators?: Maybe<Array<HelpCenterReportingPerformanceIndicator>>;
|
|
24860
|
+
refreshedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
24861
|
+
};
|
|
24868
24862
|
export declare type HelpCenterReportingResult = HelpCenterReporting | QueryError;
|
|
24869
24863
|
export declare type HelpCenterSuccessfullyCreatedTopicIds = {
|
|
24870
24864
|
__typename?: 'HelpCenterSuccessfullyCreatedTopicIds';
|
|
@@ -25694,6 +25688,17 @@ export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Nod
|
|
|
25694
25688
|
title?: Maybe<Scalars['String']['output']>;
|
|
25695
25689
|
};
|
|
25696
25690
|
export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreQueryError | HelpObjectStoreRequestForm;
|
|
25691
|
+
export declare enum HelpObjectStoreSearchAlgorithm {
|
|
25692
|
+
KeywordSearchOnIssues = "KEYWORD_SEARCH_ON_ISSUES",
|
|
25693
|
+
KeywordSearchOnPortalsBm25 = "KEYWORD_SEARCH_ON_PORTALS_BM25",
|
|
25694
|
+
KeywordSearchOnPortalsExactMatch = "KEYWORD_SEARCH_ON_PORTALS_EXACT_MATCH",
|
|
25695
|
+
KeywordSearchOnRequestTypesBm25 = "KEYWORD_SEARCH_ON_REQUEST_TYPES_BM25",
|
|
25696
|
+
KeywordSearchOnRequestTypesExactMatch = "KEYWORD_SEARCH_ON_REQUEST_TYPES_EXACT_MATCH"
|
|
25697
|
+
}
|
|
25698
|
+
export declare enum HelpObjectStoreSearchBackend {
|
|
25699
|
+
Jira = "JIRA",
|
|
25700
|
+
SearchPlatform = "SEARCH_PLATFORM"
|
|
25701
|
+
}
|
|
25697
25702
|
export declare enum HelpObjectStoreSearchEntityType {
|
|
25698
25703
|
Article = "ARTICLE",
|
|
25699
25704
|
Channel = "CHANNEL",
|
|
@@ -25724,6 +25729,8 @@ export declare type HelpObjectStoreSearchResult = Node & {
|
|
|
25724
25729
|
id: Scalars['ID']['output'];
|
|
25725
25730
|
isExternal: Scalars['Boolean']['output'];
|
|
25726
25731
|
metaData?: Maybe<HelpObjectStoreSearchMetaData>;
|
|
25732
|
+
searchAlgorithm?: Maybe<HelpObjectStoreSearchAlgorithm>;
|
|
25733
|
+
searchBackend?: Maybe<HelpObjectStoreSearchBackend>;
|
|
25727
25734
|
title: Scalars['String']['output'];
|
|
25728
25735
|
};
|
|
25729
25736
|
export declare enum HelpObjectStoreSearchableEntityType {
|
|
@@ -26014,6 +26021,15 @@ export declare type InsightsBlockingIssueDetails = {
|
|
|
26014
26021
|
issueIconUrl: Scalars['String']['output'];
|
|
26015
26022
|
issueId: Scalars['String']['output'];
|
|
26016
26023
|
};
|
|
26024
|
+
export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
|
|
26025
|
+
__typename?: 'InsightsBlockingIssueTask';
|
|
26026
|
+
blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
|
|
26027
|
+
id: Scalars['String']['output'];
|
|
26028
|
+
issueIconUrl: Scalars['String']['output'];
|
|
26029
|
+
issueId: Scalars['String']['output'];
|
|
26030
|
+
title: Scalars['String']['output'];
|
|
26031
|
+
url: Scalars['String']['output'];
|
|
26032
|
+
};
|
|
26017
26033
|
export declare type InsightsBuildDetails = {
|
|
26018
26034
|
__typename?: 'InsightsBuildDetails';
|
|
26019
26035
|
buildNumber: Scalars['Int']['output'];
|
|
@@ -26023,10 +26039,33 @@ export declare type InsightsBuildDetails = {
|
|
|
26023
26039
|
lastUpdated: Scalars['String']['output'];
|
|
26024
26040
|
numberOfFailedBuilds: Scalars['Int']['output'];
|
|
26025
26041
|
};
|
|
26042
|
+
export declare type InsightsBuildTask = InsightsNextBestTaskCommon & {
|
|
26043
|
+
__typename?: 'InsightsBuildTask';
|
|
26044
|
+
buildNumber: Scalars['Int']['output'];
|
|
26045
|
+
id: Scalars['String']['output'];
|
|
26046
|
+
issueId: Scalars['String']['output'];
|
|
26047
|
+
issueKey: Scalars['String']['output'];
|
|
26048
|
+
issueName: Scalars['String']['output'];
|
|
26049
|
+
lastUpdated: Scalars['String']['output'];
|
|
26050
|
+
numberOfFailedBuilds: Scalars['Int']['output'];
|
|
26051
|
+
title: Scalars['String']['output'];
|
|
26052
|
+
url: Scalars['String']['output'];
|
|
26053
|
+
};
|
|
26026
26054
|
export declare type InsightsContextAri = {
|
|
26027
26055
|
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
26028
26056
|
sprintAri?: InputMaybe<Scalars['ID']['input']>;
|
|
26029
26057
|
};
|
|
26058
|
+
export declare type InsightsCriticalVulnerabilityTask = InsightsNextBestTaskCommon & {
|
|
26059
|
+
__typename?: 'InsightsCriticalVulnerabilityTask';
|
|
26060
|
+
id: Scalars['String']['output'];
|
|
26061
|
+
introducedDate: Scalars['String']['output'];
|
|
26062
|
+
issueId: Scalars['String']['output'];
|
|
26063
|
+
issueKey: Scalars['String']['output'];
|
|
26064
|
+
securityContainerName: Scalars['String']['output'];
|
|
26065
|
+
status: InsightsVulnerabilityStatus;
|
|
26066
|
+
title: Scalars['String']['output'];
|
|
26067
|
+
url: Scalars['String']['output'];
|
|
26068
|
+
};
|
|
26030
26069
|
export declare type InsightsDeploymentDetails = {
|
|
26031
26070
|
__typename?: 'InsightsDeploymentDetails';
|
|
26032
26071
|
environmentNames: Array<Scalars['String']['output']>;
|
|
@@ -26038,6 +26077,20 @@ export declare type InsightsDeploymentDetails = {
|
|
|
26038
26077
|
numberOfFailedDeployments: Scalars['Int']['output'];
|
|
26039
26078
|
pipelineName: Scalars['String']['output'];
|
|
26040
26079
|
};
|
|
26080
|
+
export declare type InsightsDeploymentTask = InsightsNextBestTaskCommon & {
|
|
26081
|
+
__typename?: 'InsightsDeploymentTask';
|
|
26082
|
+
environmentNames: Array<Scalars['String']['output']>;
|
|
26083
|
+
environmentType: InsightsEnvironmentType;
|
|
26084
|
+
id: Scalars['String']['output'];
|
|
26085
|
+
issueId: Scalars['String']['output'];
|
|
26086
|
+
issueKey: Scalars['String']['output'];
|
|
26087
|
+
issueName: Scalars['String']['output'];
|
|
26088
|
+
lastUpdated: Scalars['String']['output'];
|
|
26089
|
+
numberOfFailedDeployments: Scalars['Int']['output'];
|
|
26090
|
+
pipelineName: Scalars['String']['output'];
|
|
26091
|
+
title: Scalars['String']['output'];
|
|
26092
|
+
url: Scalars['String']['output'];
|
|
26093
|
+
};
|
|
26041
26094
|
export declare enum InsightsEnvironmentType {
|
|
26042
26095
|
Development = "DEVELOPMENT",
|
|
26043
26096
|
Production = "PRODUCTION",
|
|
@@ -26079,10 +26132,15 @@ export declare enum InsightsNextBestTaskAction {
|
|
|
26079
26132
|
Remove = "REMOVE",
|
|
26080
26133
|
Snooze = "SNOOZE"
|
|
26081
26134
|
}
|
|
26135
|
+
export declare type InsightsNextBestTaskCommon = {
|
|
26136
|
+
id: Scalars['String']['output'];
|
|
26137
|
+
title: Scalars['String']['output'];
|
|
26138
|
+
url: Scalars['String']['output'];
|
|
26139
|
+
};
|
|
26082
26140
|
export declare type InsightsNextBestTaskConnection = {
|
|
26083
26141
|
__typename?: 'InsightsNextBestTaskConnection';
|
|
26084
26142
|
edges: Array<Maybe<InsightsNextBestTaskEdge>>;
|
|
26085
|
-
nodes: Array<Maybe<
|
|
26143
|
+
nodes: Array<Maybe<InsightsNextBestTaskCommon>>;
|
|
26086
26144
|
pageInfo: PageInfo;
|
|
26087
26145
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
26088
26146
|
};
|
|
@@ -26090,7 +26148,7 @@ export declare type InsightsNextBestTaskDetails = InsightsBlockingIssueDetails |
|
|
|
26090
26148
|
export declare type InsightsNextBestTaskEdge = {
|
|
26091
26149
|
__typename?: 'InsightsNextBestTaskEdge';
|
|
26092
26150
|
cursor: Scalars['String']['output'];
|
|
26093
|
-
node?: Maybe<
|
|
26151
|
+
node?: Maybe<InsightsNextBestTaskCommon>;
|
|
26094
26152
|
};
|
|
26095
26153
|
export declare type InsightsPullRequestNeedsWorkDetails = {
|
|
26096
26154
|
__typename?: 'InsightsPullRequestNeedsWorkDetails';
|
|
@@ -26099,6 +26157,16 @@ export declare type InsightsPullRequestNeedsWorkDetails = {
|
|
|
26099
26157
|
needsWorkCount: Scalars['Int']['output'];
|
|
26100
26158
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
26101
26159
|
};
|
|
26160
|
+
export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommon & {
|
|
26161
|
+
__typename?: 'InsightsPullRequestNeedsWorkTask';
|
|
26162
|
+
commentCount: Scalars['Int']['output'];
|
|
26163
|
+
id: Scalars['String']['output'];
|
|
26164
|
+
lastUpdated: Scalars['String']['output'];
|
|
26165
|
+
needsWorkCount: Scalars['Int']['output'];
|
|
26166
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
26167
|
+
title: Scalars['String']['output'];
|
|
26168
|
+
url: Scalars['String']['output'];
|
|
26169
|
+
};
|
|
26102
26170
|
export declare type InsightsPullRequestReviewDetails = {
|
|
26103
26171
|
__typename?: 'InsightsPullRequestReviewDetails';
|
|
26104
26172
|
approvalsCount: Scalars['Int']['output'];
|
|
@@ -26106,6 +26174,16 @@ export declare type InsightsPullRequestReviewDetails = {
|
|
|
26106
26174
|
lastUpdated: Scalars['String']['output'];
|
|
26107
26175
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
26108
26176
|
};
|
|
26177
|
+
export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon & {
|
|
26178
|
+
__typename?: 'InsightsPullRequestReviewTask';
|
|
26179
|
+
approvalsCount: Scalars['Int']['output'];
|
|
26180
|
+
commentCount: Scalars['Int']['output'];
|
|
26181
|
+
id: Scalars['String']['output'];
|
|
26182
|
+
lastUpdated: Scalars['String']['output'];
|
|
26183
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
26184
|
+
title: Scalars['String']['output'];
|
|
26185
|
+
url: Scalars['String']['output'];
|
|
26186
|
+
};
|
|
26109
26187
|
export declare type InsightsPurgeUserActionStateInput = {
|
|
26110
26188
|
cloudId: Scalars['ID']['input'];
|
|
26111
26189
|
};
|
|
@@ -27920,6 +27998,13 @@ export declare enum JiraConfigStateProviderType {
|
|
|
27920
27998
|
Security = "SECURITY",
|
|
27921
27999
|
Unknown = "UNKNOWN"
|
|
27922
28000
|
}
|
|
28001
|
+
export declare type JiraConfluenceRemoteIssueLink = {
|
|
28002
|
+
__typename?: 'JiraConfluenceRemoteIssueLink';
|
|
28003
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
28004
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
28005
|
+
relationship?: Maybe<Scalars['String']['output']>;
|
|
28006
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
28007
|
+
};
|
|
27923
28008
|
export declare type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
27924
28009
|
__typename?: 'JiraConnectDateTimeField';
|
|
27925
28010
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -28176,6 +28261,23 @@ export declare enum JiraCustomIssueSearchErrorType {
|
|
|
28176
28261
|
InvalidAri = "INVALID_ARI",
|
|
28177
28262
|
UnsupportedAri = "UNSUPPORTED_ARI"
|
|
28178
28263
|
}
|
|
28264
|
+
export declare type JiraCustomRemoteIssueLink = {
|
|
28265
|
+
__typename?: 'JiraCustomRemoteIssueLink';
|
|
28266
|
+
applicationName?: Maybe<Scalars['String']['output']>;
|
|
28267
|
+
applicationType?: Maybe<Scalars['String']['output']>;
|
|
28268
|
+
globalId?: Maybe<Scalars['String']['output']>;
|
|
28269
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
28270
|
+
iconTooltipSuffix?: Maybe<Scalars['String']['output']>;
|
|
28271
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28272
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
28273
|
+
relationship?: Maybe<Scalars['String']['output']>;
|
|
28274
|
+
resolved?: Maybe<Scalars['Boolean']['output']>;
|
|
28275
|
+
statusIconTooltip?: Maybe<Scalars['String']['output']>;
|
|
28276
|
+
statusIconTooltipLink?: Maybe<Scalars['String']['output']>;
|
|
28277
|
+
statusIconUrl?: Maybe<Scalars['String']['output']>;
|
|
28278
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
28279
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
28280
|
+
};
|
|
28179
28281
|
export declare type JiraDataClassification = {
|
|
28180
28282
|
__typename?: 'JiraDataClassification';
|
|
28181
28283
|
color?: Maybe<JiraColor>;
|
|
@@ -29929,6 +30031,13 @@ export declare type JiraIssuePullRequests = {
|
|
|
29929
30031
|
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
29930
30032
|
details?: Maybe<Array<JiraDevOpsPullRequestDetails>>;
|
|
29931
30033
|
};
|
|
30034
|
+
export declare type JiraIssueRemoteIssueLink = {
|
|
30035
|
+
__typename?: 'JiraIssueRemoteIssueLink';
|
|
30036
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
30037
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
30038
|
+
relationship?: Maybe<Scalars['String']['output']>;
|
|
30039
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
30040
|
+
};
|
|
29932
30041
|
export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
29933
30042
|
__typename?: 'JiraIssueRestrictionField';
|
|
29934
30043
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -30967,6 +31076,17 @@ export declare type JiraMediaUploadToken = {
|
|
|
30967
31076
|
tokenDurationInMin?: Maybe<Scalars['Int']['output']>;
|
|
30968
31077
|
};
|
|
30969
31078
|
export declare type JiraMediaUploadTokenResult = JiraMediaUploadToken | QueryError;
|
|
31079
|
+
export declare type JiraMergeVersionInput = {
|
|
31080
|
+
id: Scalars['ID']['input'];
|
|
31081
|
+
targetVersionId: Scalars['ID']['input'];
|
|
31082
|
+
};
|
|
31083
|
+
export declare type JiraMergeVersionPayload = Payload & {
|
|
31084
|
+
__typename?: 'JiraMergeVersionPayload';
|
|
31085
|
+
deletedVersionId?: Maybe<Scalars['ID']['output']>;
|
|
31086
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31087
|
+
success: Scalars['Boolean']['output'];
|
|
31088
|
+
targetVersion?: Maybe<JiraVersion>;
|
|
31089
|
+
};
|
|
30970
31090
|
export declare type JiraMoveIssuesToFixVersionInput = {
|
|
30971
31091
|
issueIds: Array<Scalars['ID']['input']>;
|
|
30972
31092
|
originalVersionId: Scalars['ID']['input'];
|
|
@@ -30980,6 +31100,12 @@ export declare type JiraMoveIssuesToFixVersionPayload = Payload & {
|
|
|
30980
31100
|
originalVersion?: Maybe<JiraVersion>;
|
|
30981
31101
|
success: Scalars['Boolean']['output'];
|
|
30982
31102
|
};
|
|
31103
|
+
export declare type JiraMoveVersionToEndInput = {
|
|
31104
|
+
id: Scalars['ID']['input'];
|
|
31105
|
+
};
|
|
31106
|
+
export declare type JiraMoveVersionToStartInput = {
|
|
31107
|
+
id: Scalars['ID']['input'];
|
|
31108
|
+
};
|
|
30983
31109
|
export declare type JiraMultiSelectComponentFieldInput = {
|
|
30984
31110
|
bulkEditMultiSelectFieldOption?: InputMaybe<JiraBulkEditMultiSelectFieldOptions>;
|
|
30985
31111
|
components?: InputMaybe<Array<JiraComponentInput>>;
|
|
@@ -31209,7 +31335,10 @@ export declare type JiraMutation = {
|
|
|
31209
31335
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
31210
31336
|
linkIssuesToIncident?: Maybe<JiraLinkIssuesToIncidentMutationPayload>;
|
|
31211
31337
|
makeTransition?: Maybe<JiraIssueTransitionResponse>;
|
|
31338
|
+
mergeJiraVersion?: Maybe<JiraMergeVersionPayload>;
|
|
31212
31339
|
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
31340
|
+
moveJiraVersionToEnd?: Maybe<JiraUpdateVersionPayload>;
|
|
31341
|
+
moveJiraVersionToStart?: Maybe<JiraUpdateVersionPayload>;
|
|
31213
31342
|
rankIssues?: Maybe<JiraRankMutationPayload>;
|
|
31214
31343
|
rankNavigationItem?: Maybe<JiraRankNavigationItemPayload>;
|
|
31215
31344
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
@@ -31242,6 +31371,7 @@ export declare type JiraMutation = {
|
|
|
31242
31371
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
31243
31372
|
updateJiraVersionApproverStatus?: Maybe<JiraVersionUpdateApproverStatusPayload>;
|
|
31244
31373
|
updateJiraVersionDriver?: Maybe<JiraUpdateVersionPayload>;
|
|
31374
|
+
updateJiraVersionPosition?: Maybe<JiraUpdateVersionPayload>;
|
|
31245
31375
|
updateJiraVersionRichTextSectionContent?: Maybe<JiraUpdateVersionPayload>;
|
|
31246
31376
|
updateJiraVersionRichTextSectionTitle?: Maybe<JiraUpdateVersionPayload>;
|
|
31247
31377
|
updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
|
|
@@ -31406,9 +31536,18 @@ export declare type JiraMutationLinkIssuesToIncidentArgs = {
|
|
|
31406
31536
|
export declare type JiraMutationMakeTransitionArgs = {
|
|
31407
31537
|
input: JiraUpdateIssueTransitionInput;
|
|
31408
31538
|
};
|
|
31539
|
+
export declare type JiraMutationMergeJiraVersionArgs = {
|
|
31540
|
+
input: JiraMergeVersionInput;
|
|
31541
|
+
};
|
|
31409
31542
|
export declare type JiraMutationMoveIssuesToFixVersionArgs = {
|
|
31410
31543
|
input: JiraMoveIssuesToFixVersionInput;
|
|
31411
31544
|
};
|
|
31545
|
+
export declare type JiraMutationMoveJiraVersionToEndArgs = {
|
|
31546
|
+
input: JiraMoveVersionToEndInput;
|
|
31547
|
+
};
|
|
31548
|
+
export declare type JiraMutationMoveJiraVersionToStartArgs = {
|
|
31549
|
+
input: JiraMoveVersionToStartInput;
|
|
31550
|
+
};
|
|
31412
31551
|
export declare type JiraMutationRankIssuesArgs = {
|
|
31413
31552
|
rankInput: JiraRankMutationInput;
|
|
31414
31553
|
};
|
|
@@ -31512,6 +31651,9 @@ export declare type JiraMutationUpdateJiraVersionApproverStatusArgs = {
|
|
|
31512
31651
|
export declare type JiraMutationUpdateJiraVersionDriverArgs = {
|
|
31513
31652
|
input: JiraUpdateVersionDriverInput;
|
|
31514
31653
|
};
|
|
31654
|
+
export declare type JiraMutationUpdateJiraVersionPositionArgs = {
|
|
31655
|
+
input: JiraUpdateVersionPositionInput;
|
|
31656
|
+
};
|
|
31515
31657
|
export declare type JiraMutationUpdateJiraVersionRichTextSectionContentArgs = {
|
|
31516
31658
|
input: JiraUpdateVersionRichTextSectionContentInput;
|
|
31517
31659
|
};
|
|
@@ -33081,7 +33223,9 @@ export declare type JiraQuery = {
|
|
|
33081
33223
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
33082
33224
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
33083
33225
|
projectListViewTemplates?: Maybe<JiraProjectListViewTemplateConnection>;
|
|
33226
|
+
projectRequestTypesFromTemplate?: Maybe<Array<JiraServiceManagementRequestTypeFromTemplate>>;
|
|
33084
33227
|
projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
|
|
33228
|
+
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
33085
33229
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
33086
33230
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
33087
33231
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -33579,6 +33723,10 @@ export declare type JiraQueryProjectListViewTemplatesArgs = {
|
|
|
33579
33723
|
experimentKey?: InputMaybe<Scalars['String']['input']>;
|
|
33580
33724
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33581
33725
|
};
|
|
33726
|
+
export declare type JiraQueryProjectRequestTypesFromTemplateArgs = {
|
|
33727
|
+
cloudId: Scalars['ID']['input'];
|
|
33728
|
+
projectId: Scalars['ID']['input'];
|
|
33729
|
+
};
|
|
33582
33730
|
export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
33583
33731
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33584
33732
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -33588,6 +33736,9 @@ export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
|
33588
33736
|
statuses?: InputMaybe<Array<InputMaybe<JiraResourceUsageRecommendationStatus>>>;
|
|
33589
33737
|
userStatus?: InputMaybe<JiraProjectRoleActorUserStatus>;
|
|
33590
33738
|
};
|
|
33739
|
+
export declare type JiraQueryRemoteIssueLinksByIdArgs = {
|
|
33740
|
+
ids: Array<Scalars['ID']['input']>;
|
|
33741
|
+
};
|
|
33591
33742
|
export declare type JiraQueryRequestTypeTemplateByIdArgs = {
|
|
33592
33743
|
cloudId: Scalars['ID']['input'];
|
|
33593
33744
|
templateId: Scalars['ID']['input'];
|
|
@@ -33931,6 +34082,7 @@ export declare type JiraReleasesTimeWindowInput = {
|
|
|
33931
34082
|
after: Scalars['DateTime']['input'];
|
|
33932
34083
|
before: Scalars['DateTime']['input'];
|
|
33933
34084
|
};
|
|
34085
|
+
export declare type JiraRemoteIssueLink = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
33934
34086
|
export declare type JiraRemoveIssuesFromAllFixVersionsInput = {
|
|
33935
34087
|
issueIds: Array<Scalars['ID']['input']>;
|
|
33936
34088
|
};
|
|
@@ -35028,6 +35180,13 @@ export declare type JiraServiceManagementRequestTypeFieldCommon = {
|
|
|
35028
35180
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
35029
35181
|
type?: Maybe<Scalars['String']['output']>;
|
|
35030
35182
|
};
|
|
35183
|
+
export declare type JiraServiceManagementRequestTypeFromTemplate = {
|
|
35184
|
+
__typename?: 'JiraServiceManagementRequestTypeFromTemplate';
|
|
35185
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
35186
|
+
id: Scalars['ID']['output'];
|
|
35187
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
35188
|
+
templateId: Scalars['String']['output'];
|
|
35189
|
+
};
|
|
35031
35190
|
export declare type JiraServiceManagementRequestTypePractice = {
|
|
35032
35191
|
__typename?: 'JiraServiceManagementRequestTypePractice';
|
|
35033
35192
|
key?: Maybe<JiraServiceManagementPractice>;
|
|
@@ -36268,6 +36427,10 @@ export declare type JiraUpdateVersionPayload = Payload & {
|
|
|
36268
36427
|
success: Scalars['Boolean']['output'];
|
|
36269
36428
|
version?: Maybe<JiraVersion>;
|
|
36270
36429
|
};
|
|
36430
|
+
export declare type JiraUpdateVersionPositionInput = {
|
|
36431
|
+
afterVersionId: Scalars['ID']['input'];
|
|
36432
|
+
id: Scalars['ID']['input'];
|
|
36433
|
+
};
|
|
36271
36434
|
export declare type JiraUpdateVersionRelatedWorkGenericLinkInput = {
|
|
36272
36435
|
category: Scalars['String']['input'];
|
|
36273
36436
|
relatedWorkId: Scalars['ID']['input'];
|
|
@@ -37068,6 +37231,14 @@ export declare enum JiraWatchesOperations {
|
|
|
37068
37231
|
Add = "ADD",
|
|
37069
37232
|
Remove = "REMOVE"
|
|
37070
37233
|
}
|
|
37234
|
+
export declare type JiraWebRemoteIssueLink = {
|
|
37235
|
+
__typename?: 'JiraWebRemoteIssueLink';
|
|
37236
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
37237
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
37238
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
37239
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
37240
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
37241
|
+
};
|
|
37071
37242
|
export declare type JiraWorkCategory = {
|
|
37072
37243
|
__typename?: 'JiraWorkCategory';
|
|
37073
37244
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -38019,6 +38190,11 @@ export declare enum MarketplaceProgramStatus {
|
|
|
38019
38190
|
NotAParticipant = "NOT_A_PARTICIPANT",
|
|
38020
38191
|
Rejected = "REJECTED"
|
|
38021
38192
|
}
|
|
38193
|
+
export declare type MarketplaceStoreAlgoliaFilter = {
|
|
38194
|
+
__typename?: 'MarketplaceStoreAlgoliaFilter';
|
|
38195
|
+
key: Scalars['String']['output'];
|
|
38196
|
+
value: Array<Scalars['String']['output']>;
|
|
38197
|
+
};
|
|
38022
38198
|
export declare type MarketplaceStoreAlgoliaQueryFilter = {
|
|
38023
38199
|
__typename?: 'MarketplaceStoreAlgoliaQueryFilter';
|
|
38024
38200
|
marketingLabels: Array<Scalars['String']['output']>;
|
|
@@ -38026,6 +38202,7 @@ export declare type MarketplaceStoreAlgoliaQueryFilter = {
|
|
|
38026
38202
|
export declare type MarketplaceStoreAlgoliaQueryMetadata = {
|
|
38027
38203
|
__typename?: 'MarketplaceStoreAlgoliaQueryMetadata';
|
|
38028
38204
|
filter: MarketplaceStoreAlgoliaQueryFilter;
|
|
38205
|
+
filters: Array<MarketplaceStoreAlgoliaFilter>;
|
|
38029
38206
|
searchIndex: Scalars['String']['output'];
|
|
38030
38207
|
sort?: Maybe<MarketplaceStoreAlgoliaQuerySort>;
|
|
38031
38208
|
};
|
|
@@ -38293,14 +38470,11 @@ export declare type Mutation = {
|
|
|
38293
38470
|
createJiraProjectAndOpsgenieTeamRelationship?: Maybe<CreateJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
38294
38471
|
createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
|
|
38295
38472
|
createJwmOverview?: Maybe<JiraWorkManagementCreateOverviewPayload>;
|
|
38296
|
-
createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
|
|
38297
38473
|
createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
|
|
38298
|
-
createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
|
|
38299
38474
|
createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
|
|
38300
38475
|
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
38301
38476
|
createPolarisPlay?: Maybe<CreatePolarisPlayPayload>;
|
|
38302
38477
|
createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
|
|
38303
|
-
createPolarisStandardField?: Maybe<CreatePolarisStandardFieldPayload>;
|
|
38304
38478
|
createPolarisView?: Maybe<CreatePolarisViewPayload>;
|
|
38305
38479
|
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
38306
38480
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
@@ -38326,9 +38500,6 @@ export declare type Mutation = {
|
|
|
38326
38500
|
deleteJiraProjectAndOpsgenieTeamRelationship?: Maybe<DeleteJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
38327
38501
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
38328
38502
|
deleteJwmOverview?: Maybe<JiraWorkManagementDeleteOverviewPayload>;
|
|
38329
|
-
deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
|
|
38330
|
-
deletePolarisField?: Maybe<DeletePolarisFieldPayload>;
|
|
38331
|
-
deletePolarisFieldOption?: Maybe<DeletePolarisFieldOptionPayload>;
|
|
38332
38503
|
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
38333
38504
|
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
38334
38505
|
deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
|
|
@@ -38411,12 +38582,7 @@ export declare type Mutation = {
|
|
|
38411
38582
|
updateJiraProjectAndOpsgenieTeamRelationship?: Maybe<UpdateJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
38412
38583
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
38413
38584
|
updateJwmOverview?: Maybe<JiraWorkManagementUpdateOverviewPayload>;
|
|
38414
|
-
updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
|
|
38415
38585
|
updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
|
|
38416
|
-
updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
|
|
38417
|
-
updatePolarisField?: Maybe<UpdatePolarisFieldPayload>;
|
|
38418
|
-
updatePolarisFieldEmoji?: Maybe<UpdatePolarisFieldEmojiPayload>;
|
|
38419
|
-
updatePolarisFieldOptionWeight?: Maybe<UpdatePolarisFieldOptionWeightPayload>;
|
|
38420
38586
|
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
38421
38587
|
updatePolarisIdeaTemplate?: Maybe<UpdatePolarisIdeaTemplatePayload>;
|
|
38422
38588
|
updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
|
|
@@ -38511,15 +38677,9 @@ export declare type MutationCreateJwmOverviewArgs = {
|
|
|
38511
38677
|
cloudId: Scalars['ID']['input'];
|
|
38512
38678
|
input: JiraWorkManagementCreateOverviewInput;
|
|
38513
38679
|
};
|
|
38514
|
-
export declare type MutationCreatePolarisCalculatedFieldArgs = {
|
|
38515
|
-
input: CreatePolarisCalculatedField;
|
|
38516
|
-
};
|
|
38517
38680
|
export declare type MutationCreatePolarisCommentArgs = {
|
|
38518
38681
|
input: CreatePolarisCommentInput;
|
|
38519
38682
|
};
|
|
38520
|
-
export declare type MutationCreatePolarisDecorationArgs = {
|
|
38521
|
-
input: CreatePolarisDecorationInput;
|
|
38522
|
-
};
|
|
38523
38683
|
export declare type MutationCreatePolarisIdeaTemplateArgs = {
|
|
38524
38684
|
input: CreatePolarisIdeaTemplateInput;
|
|
38525
38685
|
};
|
|
@@ -38532,9 +38692,6 @@ export declare type MutationCreatePolarisPlayArgs = {
|
|
|
38532
38692
|
export declare type MutationCreatePolarisPlayContributionArgs = {
|
|
38533
38693
|
input: CreatePolarisPlayContribution;
|
|
38534
38694
|
};
|
|
38535
|
-
export declare type MutationCreatePolarisStandardFieldArgs = {
|
|
38536
|
-
input: CreatePolarisStandardFieldInput;
|
|
38537
|
-
};
|
|
38538
38695
|
export declare type MutationCreatePolarisViewArgs = {
|
|
38539
38696
|
input: CreatePolarisViewInput;
|
|
38540
38697
|
};
|
|
@@ -38627,15 +38784,6 @@ export declare type MutationDeleteJwmOverviewArgs = {
|
|
|
38627
38784
|
cloudId: Scalars['ID']['input'];
|
|
38628
38785
|
input: JiraWorkManagementDeleteOverviewInput;
|
|
38629
38786
|
};
|
|
38630
|
-
export declare type MutationDeletePolarisDecorationArgs = {
|
|
38631
|
-
id: Scalars['ID']['input'];
|
|
38632
|
-
};
|
|
38633
|
-
export declare type MutationDeletePolarisFieldArgs = {
|
|
38634
|
-
id: Scalars['ID']['input'];
|
|
38635
|
-
};
|
|
38636
|
-
export declare type MutationDeletePolarisFieldOptionArgs = {
|
|
38637
|
-
input: DeletePolarisFieldOptionInput;
|
|
38638
|
-
};
|
|
38639
38787
|
export declare type MutationDeletePolarisIdeaTemplateArgs = {
|
|
38640
38788
|
input: DeletePolarisIdeaTemplateInput;
|
|
38641
38789
|
};
|
|
@@ -38830,26 +38978,9 @@ export declare type MutationUpdateJwmOverviewArgs = {
|
|
|
38830
38978
|
cloudId: Scalars['ID']['input'];
|
|
38831
38979
|
input: JiraWorkManagementUpdateOverviewInput;
|
|
38832
38980
|
};
|
|
38833
|
-
export declare type MutationUpdatePolarisCalculatedFieldArgs = {
|
|
38834
|
-
input: UpdatePolarisCalculatedFieldInput;
|
|
38835
|
-
};
|
|
38836
38981
|
export declare type MutationUpdatePolarisCommentArgs = {
|
|
38837
38982
|
input: UpdatePolarisCommentInput;
|
|
38838
38983
|
};
|
|
38839
|
-
export declare type MutationUpdatePolarisDecorationArgs = {
|
|
38840
|
-
delete?: InputMaybe<DeletePolarisDecorationInput>;
|
|
38841
|
-
id: Scalars['ID']['input'];
|
|
38842
|
-
update?: InputMaybe<UpdatePolarisDecorationInput>;
|
|
38843
|
-
};
|
|
38844
|
-
export declare type MutationUpdatePolarisFieldArgs = {
|
|
38845
|
-
input: UpdatePolarisFieldInput;
|
|
38846
|
-
};
|
|
38847
|
-
export declare type MutationUpdatePolarisFieldEmojiArgs = {
|
|
38848
|
-
input: UpdatePolarisFieldEmojiInput;
|
|
38849
|
-
};
|
|
38850
|
-
export declare type MutationUpdatePolarisFieldOptionWeightArgs = {
|
|
38851
|
-
input: UpdatePolarisFieldOptionWeightInput;
|
|
38852
|
-
};
|
|
38853
38984
|
export declare type MutationUpdatePolarisIdeaArgs = {
|
|
38854
38985
|
idea: Scalars['ID']['input'];
|
|
38855
38986
|
project: Scalars['ID']['input'];
|
|
@@ -39817,11 +39948,6 @@ export declare type PolarisDecoration = {
|
|
|
39817
39948
|
valueDecoration: PolarisValueDecoration;
|
|
39818
39949
|
valueRules: Array<PolarisValueRule>;
|
|
39819
39950
|
};
|
|
39820
|
-
export declare type PolarisDecorationScheme = {
|
|
39821
|
-
__typename?: 'PolarisDecorationScheme';
|
|
39822
|
-
fields: Array<PolarisIdeaField>;
|
|
39823
|
-
id: Scalars['ID']['output'];
|
|
39824
|
-
};
|
|
39825
39951
|
export declare type PolarisDelegationToken = {
|
|
39826
39952
|
__typename?: 'PolarisDelegationToken';
|
|
39827
39953
|
expires: Scalars['String']['output'];
|
|
@@ -40522,10 +40648,6 @@ export declare type PolarisPresentation = {
|
|
|
40522
40648
|
parameters?: Maybe<Scalars['JSON']['output']>;
|
|
40523
40649
|
type: Scalars['String']['output'];
|
|
40524
40650
|
};
|
|
40525
|
-
export declare type PolarisPresentationInput = {
|
|
40526
|
-
parameters?: InputMaybe<Scalars['JSON']['input']>;
|
|
40527
|
-
type: Scalars['String']['input'];
|
|
40528
|
-
};
|
|
40529
40651
|
export declare type PolarisProject = {
|
|
40530
40652
|
__typename?: 'PolarisProject';
|
|
40531
40653
|
activationId?: Maybe<Scalars['String']['output']>;
|
|
@@ -40759,11 +40881,6 @@ export declare type PolarisValueDecoration = {
|
|
|
40759
40881
|
emoji?: Maybe<Scalars['String']['output']>;
|
|
40760
40882
|
highlightContainer?: Maybe<Scalars['Boolean']['output']>;
|
|
40761
40883
|
};
|
|
40762
|
-
export declare type PolarisValueDecorationInput = {
|
|
40763
|
-
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
40764
|
-
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
40765
|
-
highlightContainer?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40766
|
-
};
|
|
40767
40884
|
export declare enum PolarisValueOperator {
|
|
40768
40885
|
Eq = "EQ",
|
|
40769
40886
|
Gt = "GT",
|
|
@@ -40776,10 +40893,6 @@ export declare type PolarisValueRule = {
|
|
|
40776
40893
|
operator: PolarisValueOperator;
|
|
40777
40894
|
value: Scalars['String']['output'];
|
|
40778
40895
|
};
|
|
40779
|
-
export declare type PolarisValueRuleInput = {
|
|
40780
|
-
operator: PolarisValueOperator;
|
|
40781
|
-
value: Scalars['String']['input'];
|
|
40782
|
-
};
|
|
40783
40896
|
export declare type PolarisView = {
|
|
40784
40897
|
__typename?: 'PolarisView';
|
|
40785
40898
|
collabServiceDelegation?: Maybe<PolarisDelegationToken>;
|
|
@@ -42316,7 +42429,9 @@ export declare type RoadmapUpdateItemPayload = Payload & {
|
|
|
42316
42429
|
};
|
|
42317
42430
|
export declare type RoadmapUpdateItemResponse = {
|
|
42318
42431
|
__typename?: 'RoadmapUpdateItemResponse';
|
|
42432
|
+
issue?: Maybe<JiraIssue>;
|
|
42319
42433
|
item?: Maybe<RoadmapItem>;
|
|
42434
|
+
itemId?: Maybe<Scalars['ID']['output']>;
|
|
42320
42435
|
};
|
|
42321
42436
|
export declare type RoadmapUpdateSettingsInput = {
|
|
42322
42437
|
childIssuePlanningEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -43753,7 +43868,7 @@ export declare type ShepherdCustomContentScanningDetection = {
|
|
|
43753
43868
|
};
|
|
43754
43869
|
export declare type ShepherdCustomDetection = {
|
|
43755
43870
|
__typename?: 'ShepherdCustomDetection';
|
|
43756
|
-
description
|
|
43871
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
43757
43872
|
id: Scalars['ID']['output'];
|
|
43758
43873
|
products: Array<Maybe<ShepherdAtlassianProduct>>;
|
|
43759
43874
|
settings?: Maybe<Array<ShepherdDetectionSetting>>;
|
|
@@ -43884,6 +43999,7 @@ export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
|
43884
43999
|
export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
|
|
43885
44000
|
__typename?: 'ShepherdGenericMutationErrorExtension';
|
|
43886
44001
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
44002
|
+
inputField?: Maybe<Scalars['String']['output']>;
|
|
43887
44003
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
43888
44004
|
type?: Maybe<ShepherdMutationErrorType>;
|
|
43889
44005
|
};
|
|
@@ -44266,7 +44382,7 @@ export declare type ShepherdWorkspaceConnection = {
|
|
|
44266
44382
|
edges?: Maybe<Array<Maybe<ShepherdWorkspaceEdge>>>;
|
|
44267
44383
|
};
|
|
44268
44384
|
export declare type ShepherdWorkspaceCreateCustomDetectionInput = {
|
|
44269
|
-
description
|
|
44385
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
44270
44386
|
products: Array<ShepherdAtlassianProduct>;
|
|
44271
44387
|
rules: Array<ShepherdCustomScanningRuleInput>;
|
|
44272
44388
|
title: Scalars['String']['input'];
|
|
@@ -47576,19 +47692,6 @@ export declare type UpdateJiraProjectAndRepositoryRelationshipPayload = Payload
|
|
|
47576
47692
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
47577
47693
|
success: Scalars['Boolean']['output'];
|
|
47578
47694
|
};
|
|
47579
|
-
export declare type UpdatePolarisCalculatedFieldInput = {
|
|
47580
|
-
field: Scalars['ID']['input'];
|
|
47581
|
-
formula: Scalars['JSON']['input'];
|
|
47582
|
-
label: Scalars['String']['input'];
|
|
47583
|
-
presentation?: InputMaybe<PolarisPresentationInput>;
|
|
47584
|
-
project: Scalars['ID']['input'];
|
|
47585
|
-
};
|
|
47586
|
-
export declare type UpdatePolarisCalculatedFieldPayload = Payload & {
|
|
47587
|
-
__typename?: 'UpdatePolarisCalculatedFieldPayload';
|
|
47588
|
-
errors?: Maybe<Array<MutationError>>;
|
|
47589
|
-
node?: Maybe<PolarisIdeaField>;
|
|
47590
|
-
success: Scalars['Boolean']['output'];
|
|
47591
|
-
};
|
|
47592
47695
|
export declare type UpdatePolarisCommentInput = {
|
|
47593
47696
|
content?: InputMaybe<Scalars['JSON']['input']>;
|
|
47594
47697
|
delete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -47600,50 +47703,6 @@ export declare type UpdatePolarisCommentPayload = Payload & {
|
|
|
47600
47703
|
node?: Maybe<PolarisComment>;
|
|
47601
47704
|
success: Scalars['Boolean']['output'];
|
|
47602
47705
|
};
|
|
47603
|
-
export declare type UpdatePolarisDecorationInput = {
|
|
47604
|
-
valueDecoration: PolarisValueDecorationInput;
|
|
47605
|
-
valueRules: Array<PolarisValueRuleInput>;
|
|
47606
|
-
};
|
|
47607
|
-
export declare type UpdatePolarisDecorationPayload = Payload & {
|
|
47608
|
-
__typename?: 'UpdatePolarisDecorationPayload';
|
|
47609
|
-
errors?: Maybe<Array<MutationError>>;
|
|
47610
|
-
node?: Maybe<PolarisDecoration>;
|
|
47611
|
-
success: Scalars['Boolean']['output'];
|
|
47612
|
-
};
|
|
47613
|
-
export declare type UpdatePolarisFieldEmojiInput = {
|
|
47614
|
-
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
47615
|
-
field: Scalars['ID']['input'];
|
|
47616
|
-
ideaType: Scalars['ID']['input'];
|
|
47617
|
-
};
|
|
47618
|
-
export declare type UpdatePolarisFieldEmojiPayload = Payload & {
|
|
47619
|
-
__typename?: 'UpdatePolarisFieldEmojiPayload';
|
|
47620
|
-
errors?: Maybe<Array<MutationError>>;
|
|
47621
|
-
node?: Maybe<PolarisIdeaField>;
|
|
47622
|
-
success: Scalars['Boolean']['output'];
|
|
47623
|
-
};
|
|
47624
|
-
export declare type UpdatePolarisFieldInput = {
|
|
47625
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
47626
|
-
field: Scalars['ID']['input'];
|
|
47627
|
-
ideaType: Scalars['ID']['input'];
|
|
47628
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
47629
|
-
};
|
|
47630
|
-
export declare type UpdatePolarisFieldOptionWeightInput = {
|
|
47631
|
-
field: Scalars['ID']['input'];
|
|
47632
|
-
option: Scalars['ID']['input'];
|
|
47633
|
-
project: Scalars['ID']['input'];
|
|
47634
|
-
weight: Scalars['Int']['input'];
|
|
47635
|
-
};
|
|
47636
|
-
export declare type UpdatePolarisFieldOptionWeightPayload = Payload & {
|
|
47637
|
-
__typename?: 'UpdatePolarisFieldOptionWeightPayload';
|
|
47638
|
-
errors?: Maybe<Array<MutationError>>;
|
|
47639
|
-
success: Scalars['Boolean']['output'];
|
|
47640
|
-
};
|
|
47641
|
-
export declare type UpdatePolarisFieldPayload = Payload & {
|
|
47642
|
-
__typename?: 'UpdatePolarisFieldPayload';
|
|
47643
|
-
errors?: Maybe<Array<MutationError>>;
|
|
47644
|
-
node?: Maybe<PolarisIdeaField>;
|
|
47645
|
-
success: Scalars['Boolean']['output'];
|
|
47646
|
-
};
|
|
47647
47706
|
export declare type UpdatePolarisIdeaInput = {
|
|
47648
47707
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
47649
47708
|
lastCommentsViewedTimestamp?: InputMaybe<Scalars['String']['input']>;
|