@forge/cli-shared 3.25.0-next.3 → 3.25.0-next.4
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 +12 -0
- package/out/graphql/graphql-types.d.ts +175 -187
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +20 -7
- package/package.json +4 -4
|
@@ -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 {
|
|
@@ -27920,6 +27927,13 @@ export declare enum JiraConfigStateProviderType {
|
|
|
27920
27927
|
Security = "SECURITY",
|
|
27921
27928
|
Unknown = "UNKNOWN"
|
|
27922
27929
|
}
|
|
27930
|
+
export declare type JiraConfluenceRemoteIssueLink = {
|
|
27931
|
+
__typename?: 'JiraConfluenceRemoteIssueLink';
|
|
27932
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
27933
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
27934
|
+
relationship?: Maybe<Scalars['String']['output']>;
|
|
27935
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
27936
|
+
};
|
|
27923
27937
|
export declare type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
27924
27938
|
__typename?: 'JiraConnectDateTimeField';
|
|
27925
27939
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -28176,6 +28190,23 @@ export declare enum JiraCustomIssueSearchErrorType {
|
|
|
28176
28190
|
InvalidAri = "INVALID_ARI",
|
|
28177
28191
|
UnsupportedAri = "UNSUPPORTED_ARI"
|
|
28178
28192
|
}
|
|
28193
|
+
export declare type JiraCustomRemoteIssueLink = {
|
|
28194
|
+
__typename?: 'JiraCustomRemoteIssueLink';
|
|
28195
|
+
applicationName?: Maybe<Scalars['String']['output']>;
|
|
28196
|
+
applicationType?: Maybe<Scalars['String']['output']>;
|
|
28197
|
+
globalId?: Maybe<Scalars['String']['output']>;
|
|
28198
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
28199
|
+
iconTooltipSuffix?: Maybe<Scalars['String']['output']>;
|
|
28200
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28201
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
28202
|
+
relationship?: Maybe<Scalars['String']['output']>;
|
|
28203
|
+
resolved?: Maybe<Scalars['Boolean']['output']>;
|
|
28204
|
+
statusIconTooltip?: Maybe<Scalars['String']['output']>;
|
|
28205
|
+
statusIconTooltipLink?: Maybe<Scalars['String']['output']>;
|
|
28206
|
+
statusIconUrl?: Maybe<Scalars['String']['output']>;
|
|
28207
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
28208
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
28209
|
+
};
|
|
28179
28210
|
export declare type JiraDataClassification = {
|
|
28180
28211
|
__typename?: 'JiraDataClassification';
|
|
28181
28212
|
color?: Maybe<JiraColor>;
|
|
@@ -29929,6 +29960,13 @@ export declare type JiraIssuePullRequests = {
|
|
|
29929
29960
|
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
29930
29961
|
details?: Maybe<Array<JiraDevOpsPullRequestDetails>>;
|
|
29931
29962
|
};
|
|
29963
|
+
export declare type JiraIssueRemoteIssueLink = {
|
|
29964
|
+
__typename?: 'JiraIssueRemoteIssueLink';
|
|
29965
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
29966
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
29967
|
+
relationship?: Maybe<Scalars['String']['output']>;
|
|
29968
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
29969
|
+
};
|
|
29932
29970
|
export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
29933
29971
|
__typename?: 'JiraIssueRestrictionField';
|
|
29934
29972
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -30967,6 +31005,17 @@ export declare type JiraMediaUploadToken = {
|
|
|
30967
31005
|
tokenDurationInMin?: Maybe<Scalars['Int']['output']>;
|
|
30968
31006
|
};
|
|
30969
31007
|
export declare type JiraMediaUploadTokenResult = JiraMediaUploadToken | QueryError;
|
|
31008
|
+
export declare type JiraMergeVersionInput = {
|
|
31009
|
+
id: Scalars['ID']['input'];
|
|
31010
|
+
targetVersionId: Scalars['ID']['input'];
|
|
31011
|
+
};
|
|
31012
|
+
export declare type JiraMergeVersionPayload = Payload & {
|
|
31013
|
+
__typename?: 'JiraMergeVersionPayload';
|
|
31014
|
+
deletedVersionId?: Maybe<Scalars['ID']['output']>;
|
|
31015
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31016
|
+
success: Scalars['Boolean']['output'];
|
|
31017
|
+
targetVersion?: Maybe<JiraVersion>;
|
|
31018
|
+
};
|
|
30970
31019
|
export declare type JiraMoveIssuesToFixVersionInput = {
|
|
30971
31020
|
issueIds: Array<Scalars['ID']['input']>;
|
|
30972
31021
|
originalVersionId: Scalars['ID']['input'];
|
|
@@ -30980,6 +31029,12 @@ export declare type JiraMoveIssuesToFixVersionPayload = Payload & {
|
|
|
30980
31029
|
originalVersion?: Maybe<JiraVersion>;
|
|
30981
31030
|
success: Scalars['Boolean']['output'];
|
|
30982
31031
|
};
|
|
31032
|
+
export declare type JiraMoveVersionToEndInput = {
|
|
31033
|
+
id: Scalars['ID']['input'];
|
|
31034
|
+
};
|
|
31035
|
+
export declare type JiraMoveVersionToStartInput = {
|
|
31036
|
+
id: Scalars['ID']['input'];
|
|
31037
|
+
};
|
|
30983
31038
|
export declare type JiraMultiSelectComponentFieldInput = {
|
|
30984
31039
|
bulkEditMultiSelectFieldOption?: InputMaybe<JiraBulkEditMultiSelectFieldOptions>;
|
|
30985
31040
|
components?: InputMaybe<Array<JiraComponentInput>>;
|
|
@@ -31209,7 +31264,10 @@ export declare type JiraMutation = {
|
|
|
31209
31264
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
31210
31265
|
linkIssuesToIncident?: Maybe<JiraLinkIssuesToIncidentMutationPayload>;
|
|
31211
31266
|
makeTransition?: Maybe<JiraIssueTransitionResponse>;
|
|
31267
|
+
mergeJiraVersion?: Maybe<JiraMergeVersionPayload>;
|
|
31212
31268
|
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
31269
|
+
moveJiraVersionToEnd?: Maybe<JiraUpdateVersionPayload>;
|
|
31270
|
+
moveJiraVersionToStart?: Maybe<JiraUpdateVersionPayload>;
|
|
31213
31271
|
rankIssues?: Maybe<JiraRankMutationPayload>;
|
|
31214
31272
|
rankNavigationItem?: Maybe<JiraRankNavigationItemPayload>;
|
|
31215
31273
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
@@ -31242,6 +31300,7 @@ export declare type JiraMutation = {
|
|
|
31242
31300
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
31243
31301
|
updateJiraVersionApproverStatus?: Maybe<JiraVersionUpdateApproverStatusPayload>;
|
|
31244
31302
|
updateJiraVersionDriver?: Maybe<JiraUpdateVersionPayload>;
|
|
31303
|
+
updateJiraVersionPosition?: Maybe<JiraUpdateVersionPayload>;
|
|
31245
31304
|
updateJiraVersionRichTextSectionContent?: Maybe<JiraUpdateVersionPayload>;
|
|
31246
31305
|
updateJiraVersionRichTextSectionTitle?: Maybe<JiraUpdateVersionPayload>;
|
|
31247
31306
|
updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
|
|
@@ -31406,9 +31465,18 @@ export declare type JiraMutationLinkIssuesToIncidentArgs = {
|
|
|
31406
31465
|
export declare type JiraMutationMakeTransitionArgs = {
|
|
31407
31466
|
input: JiraUpdateIssueTransitionInput;
|
|
31408
31467
|
};
|
|
31468
|
+
export declare type JiraMutationMergeJiraVersionArgs = {
|
|
31469
|
+
input: JiraMergeVersionInput;
|
|
31470
|
+
};
|
|
31409
31471
|
export declare type JiraMutationMoveIssuesToFixVersionArgs = {
|
|
31410
31472
|
input: JiraMoveIssuesToFixVersionInput;
|
|
31411
31473
|
};
|
|
31474
|
+
export declare type JiraMutationMoveJiraVersionToEndArgs = {
|
|
31475
|
+
input: JiraMoveVersionToEndInput;
|
|
31476
|
+
};
|
|
31477
|
+
export declare type JiraMutationMoveJiraVersionToStartArgs = {
|
|
31478
|
+
input: JiraMoveVersionToStartInput;
|
|
31479
|
+
};
|
|
31412
31480
|
export declare type JiraMutationRankIssuesArgs = {
|
|
31413
31481
|
rankInput: JiraRankMutationInput;
|
|
31414
31482
|
};
|
|
@@ -31512,6 +31580,9 @@ export declare type JiraMutationUpdateJiraVersionApproverStatusArgs = {
|
|
|
31512
31580
|
export declare type JiraMutationUpdateJiraVersionDriverArgs = {
|
|
31513
31581
|
input: JiraUpdateVersionDriverInput;
|
|
31514
31582
|
};
|
|
31583
|
+
export declare type JiraMutationUpdateJiraVersionPositionArgs = {
|
|
31584
|
+
input: JiraUpdateVersionPositionInput;
|
|
31585
|
+
};
|
|
31515
31586
|
export declare type JiraMutationUpdateJiraVersionRichTextSectionContentArgs = {
|
|
31516
31587
|
input: JiraUpdateVersionRichTextSectionContentInput;
|
|
31517
31588
|
};
|
|
@@ -33081,7 +33152,9 @@ export declare type JiraQuery = {
|
|
|
33081
33152
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
33082
33153
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
33083
33154
|
projectListViewTemplates?: Maybe<JiraProjectListViewTemplateConnection>;
|
|
33155
|
+
projectRequestTypesFromTemplate?: Maybe<Array<JiraServiceManagementRequestTypeFromTemplate>>;
|
|
33084
33156
|
projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
|
|
33157
|
+
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
33085
33158
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
33086
33159
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
33087
33160
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -33579,6 +33652,10 @@ export declare type JiraQueryProjectListViewTemplatesArgs = {
|
|
|
33579
33652
|
experimentKey?: InputMaybe<Scalars['String']['input']>;
|
|
33580
33653
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33581
33654
|
};
|
|
33655
|
+
export declare type JiraQueryProjectRequestTypesFromTemplateArgs = {
|
|
33656
|
+
cloudId: Scalars['ID']['input'];
|
|
33657
|
+
projectId: Scalars['ID']['input'];
|
|
33658
|
+
};
|
|
33582
33659
|
export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
33583
33660
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33584
33661
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -33588,6 +33665,9 @@ export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
|
33588
33665
|
statuses?: InputMaybe<Array<InputMaybe<JiraResourceUsageRecommendationStatus>>>;
|
|
33589
33666
|
userStatus?: InputMaybe<JiraProjectRoleActorUserStatus>;
|
|
33590
33667
|
};
|
|
33668
|
+
export declare type JiraQueryRemoteIssueLinksByIdArgs = {
|
|
33669
|
+
ids: Array<Scalars['ID']['input']>;
|
|
33670
|
+
};
|
|
33591
33671
|
export declare type JiraQueryRequestTypeTemplateByIdArgs = {
|
|
33592
33672
|
cloudId: Scalars['ID']['input'];
|
|
33593
33673
|
templateId: Scalars['ID']['input'];
|
|
@@ -33931,6 +34011,7 @@ export declare type JiraReleasesTimeWindowInput = {
|
|
|
33931
34011
|
after: Scalars['DateTime']['input'];
|
|
33932
34012
|
before: Scalars['DateTime']['input'];
|
|
33933
34013
|
};
|
|
34014
|
+
export declare type JiraRemoteIssueLink = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
33934
34015
|
export declare type JiraRemoveIssuesFromAllFixVersionsInput = {
|
|
33935
34016
|
issueIds: Array<Scalars['ID']['input']>;
|
|
33936
34017
|
};
|
|
@@ -35028,6 +35109,13 @@ export declare type JiraServiceManagementRequestTypeFieldCommon = {
|
|
|
35028
35109
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
35029
35110
|
type?: Maybe<Scalars['String']['output']>;
|
|
35030
35111
|
};
|
|
35112
|
+
export declare type JiraServiceManagementRequestTypeFromTemplate = {
|
|
35113
|
+
__typename?: 'JiraServiceManagementRequestTypeFromTemplate';
|
|
35114
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
35115
|
+
id: Scalars['ID']['output'];
|
|
35116
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
35117
|
+
templateId: Scalars['String']['output'];
|
|
35118
|
+
};
|
|
35031
35119
|
export declare type JiraServiceManagementRequestTypePractice = {
|
|
35032
35120
|
__typename?: 'JiraServiceManagementRequestTypePractice';
|
|
35033
35121
|
key?: Maybe<JiraServiceManagementPractice>;
|
|
@@ -36268,6 +36356,10 @@ export declare type JiraUpdateVersionPayload = Payload & {
|
|
|
36268
36356
|
success: Scalars['Boolean']['output'];
|
|
36269
36357
|
version?: Maybe<JiraVersion>;
|
|
36270
36358
|
};
|
|
36359
|
+
export declare type JiraUpdateVersionPositionInput = {
|
|
36360
|
+
afterVersionId: Scalars['ID']['input'];
|
|
36361
|
+
id: Scalars['ID']['input'];
|
|
36362
|
+
};
|
|
36271
36363
|
export declare type JiraUpdateVersionRelatedWorkGenericLinkInput = {
|
|
36272
36364
|
category: Scalars['String']['input'];
|
|
36273
36365
|
relatedWorkId: Scalars['ID']['input'];
|
|
@@ -37068,6 +37160,14 @@ export declare enum JiraWatchesOperations {
|
|
|
37068
37160
|
Add = "ADD",
|
|
37069
37161
|
Remove = "REMOVE"
|
|
37070
37162
|
}
|
|
37163
|
+
export declare type JiraWebRemoteIssueLink = {
|
|
37164
|
+
__typename?: 'JiraWebRemoteIssueLink';
|
|
37165
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
37166
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
37167
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
37168
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
37169
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
37170
|
+
};
|
|
37071
37171
|
export declare type JiraWorkCategory = {
|
|
37072
37172
|
__typename?: 'JiraWorkCategory';
|
|
37073
37173
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -38019,6 +38119,11 @@ export declare enum MarketplaceProgramStatus {
|
|
|
38019
38119
|
NotAParticipant = "NOT_A_PARTICIPANT",
|
|
38020
38120
|
Rejected = "REJECTED"
|
|
38021
38121
|
}
|
|
38122
|
+
export declare type MarketplaceStoreAlgoliaFilter = {
|
|
38123
|
+
__typename?: 'MarketplaceStoreAlgoliaFilter';
|
|
38124
|
+
key: Scalars['String']['output'];
|
|
38125
|
+
value: Array<Scalars['String']['output']>;
|
|
38126
|
+
};
|
|
38022
38127
|
export declare type MarketplaceStoreAlgoliaQueryFilter = {
|
|
38023
38128
|
__typename?: 'MarketplaceStoreAlgoliaQueryFilter';
|
|
38024
38129
|
marketingLabels: Array<Scalars['String']['output']>;
|
|
@@ -38026,6 +38131,7 @@ export declare type MarketplaceStoreAlgoliaQueryFilter = {
|
|
|
38026
38131
|
export declare type MarketplaceStoreAlgoliaQueryMetadata = {
|
|
38027
38132
|
__typename?: 'MarketplaceStoreAlgoliaQueryMetadata';
|
|
38028
38133
|
filter: MarketplaceStoreAlgoliaQueryFilter;
|
|
38134
|
+
filters: Array<MarketplaceStoreAlgoliaFilter>;
|
|
38029
38135
|
searchIndex: Scalars['String']['output'];
|
|
38030
38136
|
sort?: Maybe<MarketplaceStoreAlgoliaQuerySort>;
|
|
38031
38137
|
};
|
|
@@ -38293,14 +38399,11 @@ export declare type Mutation = {
|
|
|
38293
38399
|
createJiraProjectAndOpsgenieTeamRelationship?: Maybe<CreateJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
38294
38400
|
createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
|
|
38295
38401
|
createJwmOverview?: Maybe<JiraWorkManagementCreateOverviewPayload>;
|
|
38296
|
-
createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
|
|
38297
38402
|
createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
|
|
38298
|
-
createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
|
|
38299
38403
|
createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
|
|
38300
38404
|
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
38301
38405
|
createPolarisPlay?: Maybe<CreatePolarisPlayPayload>;
|
|
38302
38406
|
createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
|
|
38303
|
-
createPolarisStandardField?: Maybe<CreatePolarisStandardFieldPayload>;
|
|
38304
38407
|
createPolarisView?: Maybe<CreatePolarisViewPayload>;
|
|
38305
38408
|
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
38306
38409
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
@@ -38326,9 +38429,6 @@ export declare type Mutation = {
|
|
|
38326
38429
|
deleteJiraProjectAndOpsgenieTeamRelationship?: Maybe<DeleteJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
38327
38430
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
38328
38431
|
deleteJwmOverview?: Maybe<JiraWorkManagementDeleteOverviewPayload>;
|
|
38329
|
-
deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
|
|
38330
|
-
deletePolarisField?: Maybe<DeletePolarisFieldPayload>;
|
|
38331
|
-
deletePolarisFieldOption?: Maybe<DeletePolarisFieldOptionPayload>;
|
|
38332
38432
|
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
38333
38433
|
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
38334
38434
|
deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
|
|
@@ -38411,12 +38511,7 @@ export declare type Mutation = {
|
|
|
38411
38511
|
updateJiraProjectAndOpsgenieTeamRelationship?: Maybe<UpdateJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
38412
38512
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
38413
38513
|
updateJwmOverview?: Maybe<JiraWorkManagementUpdateOverviewPayload>;
|
|
38414
|
-
updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
|
|
38415
38514
|
updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
|
|
38416
|
-
updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
|
|
38417
|
-
updatePolarisField?: Maybe<UpdatePolarisFieldPayload>;
|
|
38418
|
-
updatePolarisFieldEmoji?: Maybe<UpdatePolarisFieldEmojiPayload>;
|
|
38419
|
-
updatePolarisFieldOptionWeight?: Maybe<UpdatePolarisFieldOptionWeightPayload>;
|
|
38420
38515
|
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
38421
38516
|
updatePolarisIdeaTemplate?: Maybe<UpdatePolarisIdeaTemplatePayload>;
|
|
38422
38517
|
updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
|
|
@@ -38511,15 +38606,9 @@ export declare type MutationCreateJwmOverviewArgs = {
|
|
|
38511
38606
|
cloudId: Scalars['ID']['input'];
|
|
38512
38607
|
input: JiraWorkManagementCreateOverviewInput;
|
|
38513
38608
|
};
|
|
38514
|
-
export declare type MutationCreatePolarisCalculatedFieldArgs = {
|
|
38515
|
-
input: CreatePolarisCalculatedField;
|
|
38516
|
-
};
|
|
38517
38609
|
export declare type MutationCreatePolarisCommentArgs = {
|
|
38518
38610
|
input: CreatePolarisCommentInput;
|
|
38519
38611
|
};
|
|
38520
|
-
export declare type MutationCreatePolarisDecorationArgs = {
|
|
38521
|
-
input: CreatePolarisDecorationInput;
|
|
38522
|
-
};
|
|
38523
38612
|
export declare type MutationCreatePolarisIdeaTemplateArgs = {
|
|
38524
38613
|
input: CreatePolarisIdeaTemplateInput;
|
|
38525
38614
|
};
|
|
@@ -38532,9 +38621,6 @@ export declare type MutationCreatePolarisPlayArgs = {
|
|
|
38532
38621
|
export declare type MutationCreatePolarisPlayContributionArgs = {
|
|
38533
38622
|
input: CreatePolarisPlayContribution;
|
|
38534
38623
|
};
|
|
38535
|
-
export declare type MutationCreatePolarisStandardFieldArgs = {
|
|
38536
|
-
input: CreatePolarisStandardFieldInput;
|
|
38537
|
-
};
|
|
38538
38624
|
export declare type MutationCreatePolarisViewArgs = {
|
|
38539
38625
|
input: CreatePolarisViewInput;
|
|
38540
38626
|
};
|
|
@@ -38627,15 +38713,6 @@ export declare type MutationDeleteJwmOverviewArgs = {
|
|
|
38627
38713
|
cloudId: Scalars['ID']['input'];
|
|
38628
38714
|
input: JiraWorkManagementDeleteOverviewInput;
|
|
38629
38715
|
};
|
|
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
38716
|
export declare type MutationDeletePolarisIdeaTemplateArgs = {
|
|
38640
38717
|
input: DeletePolarisIdeaTemplateInput;
|
|
38641
38718
|
};
|
|
@@ -38830,26 +38907,9 @@ export declare type MutationUpdateJwmOverviewArgs = {
|
|
|
38830
38907
|
cloudId: Scalars['ID']['input'];
|
|
38831
38908
|
input: JiraWorkManagementUpdateOverviewInput;
|
|
38832
38909
|
};
|
|
38833
|
-
export declare type MutationUpdatePolarisCalculatedFieldArgs = {
|
|
38834
|
-
input: UpdatePolarisCalculatedFieldInput;
|
|
38835
|
-
};
|
|
38836
38910
|
export declare type MutationUpdatePolarisCommentArgs = {
|
|
38837
38911
|
input: UpdatePolarisCommentInput;
|
|
38838
38912
|
};
|
|
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
38913
|
export declare type MutationUpdatePolarisIdeaArgs = {
|
|
38854
38914
|
idea: Scalars['ID']['input'];
|
|
38855
38915
|
project: Scalars['ID']['input'];
|
|
@@ -39817,11 +39877,6 @@ export declare type PolarisDecoration = {
|
|
|
39817
39877
|
valueDecoration: PolarisValueDecoration;
|
|
39818
39878
|
valueRules: Array<PolarisValueRule>;
|
|
39819
39879
|
};
|
|
39820
|
-
export declare type PolarisDecorationScheme = {
|
|
39821
|
-
__typename?: 'PolarisDecorationScheme';
|
|
39822
|
-
fields: Array<PolarisIdeaField>;
|
|
39823
|
-
id: Scalars['ID']['output'];
|
|
39824
|
-
};
|
|
39825
39880
|
export declare type PolarisDelegationToken = {
|
|
39826
39881
|
__typename?: 'PolarisDelegationToken';
|
|
39827
39882
|
expires: Scalars['String']['output'];
|
|
@@ -40522,10 +40577,6 @@ export declare type PolarisPresentation = {
|
|
|
40522
40577
|
parameters?: Maybe<Scalars['JSON']['output']>;
|
|
40523
40578
|
type: Scalars['String']['output'];
|
|
40524
40579
|
};
|
|
40525
|
-
export declare type PolarisPresentationInput = {
|
|
40526
|
-
parameters?: InputMaybe<Scalars['JSON']['input']>;
|
|
40527
|
-
type: Scalars['String']['input'];
|
|
40528
|
-
};
|
|
40529
40580
|
export declare type PolarisProject = {
|
|
40530
40581
|
__typename?: 'PolarisProject';
|
|
40531
40582
|
activationId?: Maybe<Scalars['String']['output']>;
|
|
@@ -40759,11 +40810,6 @@ export declare type PolarisValueDecoration = {
|
|
|
40759
40810
|
emoji?: Maybe<Scalars['String']['output']>;
|
|
40760
40811
|
highlightContainer?: Maybe<Scalars['Boolean']['output']>;
|
|
40761
40812
|
};
|
|
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
40813
|
export declare enum PolarisValueOperator {
|
|
40768
40814
|
Eq = "EQ",
|
|
40769
40815
|
Gt = "GT",
|
|
@@ -40776,10 +40822,6 @@ export declare type PolarisValueRule = {
|
|
|
40776
40822
|
operator: PolarisValueOperator;
|
|
40777
40823
|
value: Scalars['String']['output'];
|
|
40778
40824
|
};
|
|
40779
|
-
export declare type PolarisValueRuleInput = {
|
|
40780
|
-
operator: PolarisValueOperator;
|
|
40781
|
-
value: Scalars['String']['input'];
|
|
40782
|
-
};
|
|
40783
40825
|
export declare type PolarisView = {
|
|
40784
40826
|
__typename?: 'PolarisView';
|
|
40785
40827
|
collabServiceDelegation?: Maybe<PolarisDelegationToken>;
|
|
@@ -42316,7 +42358,9 @@ export declare type RoadmapUpdateItemPayload = Payload & {
|
|
|
42316
42358
|
};
|
|
42317
42359
|
export declare type RoadmapUpdateItemResponse = {
|
|
42318
42360
|
__typename?: 'RoadmapUpdateItemResponse';
|
|
42361
|
+
issue?: Maybe<JiraIssue>;
|
|
42319
42362
|
item?: Maybe<RoadmapItem>;
|
|
42363
|
+
itemId?: Maybe<Scalars['ID']['output']>;
|
|
42320
42364
|
};
|
|
42321
42365
|
export declare type RoadmapUpdateSettingsInput = {
|
|
42322
42366
|
childIssuePlanningEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -43753,7 +43797,7 @@ export declare type ShepherdCustomContentScanningDetection = {
|
|
|
43753
43797
|
};
|
|
43754
43798
|
export declare type ShepherdCustomDetection = {
|
|
43755
43799
|
__typename?: 'ShepherdCustomDetection';
|
|
43756
|
-
description
|
|
43800
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
43757
43801
|
id: Scalars['ID']['output'];
|
|
43758
43802
|
products: Array<Maybe<ShepherdAtlassianProduct>>;
|
|
43759
43803
|
settings?: Maybe<Array<ShepherdDetectionSetting>>;
|
|
@@ -43884,6 +43928,7 @@ export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
|
43884
43928
|
export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
|
|
43885
43929
|
__typename?: 'ShepherdGenericMutationErrorExtension';
|
|
43886
43930
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
43931
|
+
inputField?: Maybe<Scalars['String']['output']>;
|
|
43887
43932
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
43888
43933
|
type?: Maybe<ShepherdMutationErrorType>;
|
|
43889
43934
|
};
|
|
@@ -44266,7 +44311,7 @@ export declare type ShepherdWorkspaceConnection = {
|
|
|
44266
44311
|
edges?: Maybe<Array<Maybe<ShepherdWorkspaceEdge>>>;
|
|
44267
44312
|
};
|
|
44268
44313
|
export declare type ShepherdWorkspaceCreateCustomDetectionInput = {
|
|
44269
|
-
description
|
|
44314
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
44270
44315
|
products: Array<ShepherdAtlassianProduct>;
|
|
44271
44316
|
rules: Array<ShepherdCustomScanningRuleInput>;
|
|
44272
44317
|
title: Scalars['String']['input'];
|
|
@@ -47576,19 +47621,6 @@ export declare type UpdateJiraProjectAndRepositoryRelationshipPayload = Payload
|
|
|
47576
47621
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
47577
47622
|
success: Scalars['Boolean']['output'];
|
|
47578
47623
|
};
|
|
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
47624
|
export declare type UpdatePolarisCommentInput = {
|
|
47593
47625
|
content?: InputMaybe<Scalars['JSON']['input']>;
|
|
47594
47626
|
delete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -47600,50 +47632,6 @@ export declare type UpdatePolarisCommentPayload = Payload & {
|
|
|
47600
47632
|
node?: Maybe<PolarisComment>;
|
|
47601
47633
|
success: Scalars['Boolean']['output'];
|
|
47602
47634
|
};
|
|
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
47635
|
export declare type UpdatePolarisIdeaInput = {
|
|
47648
47636
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
47649
47637
|
lastCommentsViewedTimestamp?: InputMaybe<Scalars['String']['input']>;
|