@forge/cli-shared 6.6.1-next.15 → 6.6.1-next.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/out/graphql/graphql-types.d.ts +193 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +2 -0
- package/out/service/supported-products-service.d.ts +3 -3
- package/out/service/supported-products-service.d.ts.map +1 -1
- package/out/service/supported-products-service.js +30 -15
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.6.1-next.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2086b3d: Remove node-fetch as a dependency
|
|
8
|
+
- Updated dependencies [2086b3d]
|
|
9
|
+
- @forge/manifest@8.7.0-next.9
|
|
10
|
+
|
|
11
|
+
## 6.6.1-next.16
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- fa34240: Improved code quality of SupportedProductsService
|
|
16
|
+
|
|
3
17
|
## 6.6.1-next.15
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -596,7 +596,7 @@ export declare type ActivityObject = {
|
|
|
596
596
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
597
597
|
type: Scalars['String']['output'];
|
|
598
598
|
};
|
|
599
|
-
export declare type ActivityObjectData = BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
599
|
+
export declare type ActivityObjectData = BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
600
600
|
export declare enum ActivityObjectType {
|
|
601
601
|
Blogpost = "BLOGPOST",
|
|
602
602
|
Comment = "COMMENT",
|
|
@@ -1082,6 +1082,7 @@ export declare enum ApiGroup {
|
|
|
1082
1082
|
Jira = "JIRA",
|
|
1083
1083
|
Papi = "PAPI",
|
|
1084
1084
|
Polaris = "POLARIS",
|
|
1085
|
+
ServiceHubAgentConfiguration = "SERVICE_HUB_AGENT_CONFIGURATION",
|
|
1085
1086
|
SurfacePlatform = "SURFACE_PLATFORM",
|
|
1086
1087
|
Teams = "TEAMS",
|
|
1087
1088
|
VirtualAgent = "VIRTUAL_AGENT",
|
|
@@ -19543,6 +19544,60 @@ export declare enum CustomUserFieldInputComparators {
|
|
|
19543
19544
|
IsSet = "IS_SET",
|
|
19544
19545
|
NotSet = "NOT_SET"
|
|
19545
19546
|
}
|
|
19547
|
+
export declare type CustomerHubAgentConfiguration = {
|
|
19548
|
+
__typename?: 'CustomerHubAgentConfiguration';
|
|
19549
|
+
agentIdentity?: Maybe<CustomerHubAgentConfigurationIdentityResult>;
|
|
19550
|
+
id: Scalars['ID']['output'];
|
|
19551
|
+
};
|
|
19552
|
+
export declare type CustomerHubAgentConfigurationIdentity = {
|
|
19553
|
+
__typename?: 'CustomerHubAgentConfigurationIdentity';
|
|
19554
|
+
conversationStarters?: Maybe<Array<CustomerHubAgentConfigurationIdentityConversationStarter>>;
|
|
19555
|
+
id: Scalars['ID']['output'];
|
|
19556
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19557
|
+
purpose?: Maybe<Scalars['String']['output']>;
|
|
19558
|
+
tone?: Maybe<CustomerHubAgentConfigurationIdentityTone>;
|
|
19559
|
+
};
|
|
19560
|
+
export declare type CustomerHubAgentConfigurationIdentityConversationStarter = {
|
|
19561
|
+
__typename?: 'CustomerHubAgentConfigurationIdentityConversationStarter';
|
|
19562
|
+
id: Scalars['ID']['output'];
|
|
19563
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
19564
|
+
};
|
|
19565
|
+
export declare type CustomerHubAgentConfigurationIdentityMapping = {
|
|
19566
|
+
__typename?: 'CustomerHubAgentConfigurationIdentityMapping';
|
|
19567
|
+
conversationStarters?: Maybe<Array<CustomerHubAgentConfigurationIdentityConversationStarter>>;
|
|
19568
|
+
id: Scalars['ID']['output'];
|
|
19569
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19570
|
+
};
|
|
19571
|
+
export declare type CustomerHubAgentConfigurationIdentityMappingResult = CustomerHubAgentConfigurationIdentityMapping | QueryError;
|
|
19572
|
+
export declare type CustomerHubAgentConfigurationIdentityResult = CustomerHubAgentConfigurationIdentity | QueryError;
|
|
19573
|
+
export declare type CustomerHubAgentConfigurationIdentityTone = {
|
|
19574
|
+
__typename?: 'CustomerHubAgentConfigurationIdentityTone';
|
|
19575
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19576
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
19577
|
+
};
|
|
19578
|
+
export declare type CustomerHubAgentConfigurationIdentityToneInput = {
|
|
19579
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
19580
|
+
type: Scalars['String']['input'];
|
|
19581
|
+
};
|
|
19582
|
+
export declare type CustomerHubAgentConfigurationResult = CustomerHubAgentConfiguration | QueryError;
|
|
19583
|
+
export declare type CustomerHubAgentConfigurationUpdateIdentityConfigurationInput = {
|
|
19584
|
+
addedConversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
19585
|
+
deletedConversationStarters?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
19586
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
19587
|
+
purpose?: InputMaybe<Scalars['String']['input']>;
|
|
19588
|
+
tone?: InputMaybe<CustomerHubAgentConfigurationIdentityToneInput>;
|
|
19589
|
+
updatedConversationStarters?: InputMaybe<Array<CustomerHubAgentConfigurationUpdateIdentityConversationStarterInput>>;
|
|
19590
|
+
};
|
|
19591
|
+
export declare type CustomerHubAgentConfigurationUpdateIdentityConversationStarterInput = {
|
|
19592
|
+
id: Scalars['ID']['input'];
|
|
19593
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
19594
|
+
};
|
|
19595
|
+
export declare type CustomerHubAgentConfigurationUpdateIdentityPayload = Payload & {
|
|
19596
|
+
__typename?: 'CustomerHubAgentConfigurationUpdateIdentityPayload';
|
|
19597
|
+
agentIdentity?: Maybe<CustomerHubAgentConfigurationIdentity>;
|
|
19598
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19599
|
+
success: Scalars['Boolean']['output'];
|
|
19600
|
+
};
|
|
19546
19601
|
export declare type CustomerServiceAttribute = Node & {
|
|
19547
19602
|
__typename?: 'CustomerServiceAttribute';
|
|
19548
19603
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
@@ -21438,6 +21493,12 @@ export declare type DevAiTriggerAutofixScanPayload = Payload & {
|
|
|
21438
21493
|
errors?: Maybe<Array<MutationError>>;
|
|
21439
21494
|
success: Scalars['Boolean']['output'];
|
|
21440
21495
|
};
|
|
21496
|
+
export declare type DevAiUser = {
|
|
21497
|
+
__typename?: 'DevAiUser';
|
|
21498
|
+
atlassianAccountId: Scalars['ID']['output'];
|
|
21499
|
+
hasProductAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
21500
|
+
isAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
21501
|
+
};
|
|
21441
21502
|
export declare type DevAiWorkflowRunError = {
|
|
21442
21503
|
__typename?: 'DevAiWorkflowRunError';
|
|
21443
21504
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -23384,6 +23445,7 @@ export declare type EcosystemMutation = {
|
|
|
23384
23445
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
23385
23446
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
23386
23447
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
23448
|
+
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
23387
23449
|
publishAppClientEvent?: Maybe<EcosystemPublishEventBody>;
|
|
23388
23450
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
23389
23451
|
updateAppContributorRole?: Maybe<UpdateAppContributorRoleResponsePayload>;
|
|
@@ -23419,6 +23481,9 @@ export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
|
23419
23481
|
export declare type EcosystemMutationForgeAlertsArgs = {
|
|
23420
23482
|
appId: Scalars['ID']['input'];
|
|
23421
23483
|
};
|
|
23484
|
+
export declare type EcosystemMutationForgeMetricsArgs = {
|
|
23485
|
+
appId: Scalars['ID']['input'];
|
|
23486
|
+
};
|
|
23422
23487
|
export declare type EcosystemMutationPublishAppClientEventArgs = {
|
|
23423
23488
|
appId: Scalars['ID']['input'];
|
|
23424
23489
|
channel: Scalars['String']['input'];
|
|
@@ -24440,7 +24505,7 @@ export declare type ExternalEntitiesV2ForHydrationWorkerArgs = {
|
|
|
24440
24505
|
};
|
|
24441
24506
|
export declare type ExternalEntitiesV2ForHydrationInput = {
|
|
24442
24507
|
ari?: InputMaybe<Scalars['ID']['input']>;
|
|
24443
|
-
|
|
24508
|
+
siteOrGraphWorkspaceAri: Scalars['ID']['input'];
|
|
24444
24509
|
};
|
|
24445
24510
|
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
24446
24511
|
export declare type ExternalEnvironment = {
|
|
@@ -24861,6 +24926,7 @@ export declare type ExternalWorkItem = Node & {
|
|
|
24861
24926
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
24862
24927
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
24863
24928
|
url?: Maybe<Scalars['String']['output']>;
|
|
24929
|
+
workItemProject?: Maybe<ExternalWorkItemProject>;
|
|
24864
24930
|
};
|
|
24865
24931
|
export declare type ExternalWorkItemAttachment = {
|
|
24866
24932
|
__typename?: 'ExternalWorkItemAttachment';
|
|
@@ -24870,12 +24936,18 @@ export declare type ExternalWorkItemAttachment = {
|
|
|
24870
24936
|
title?: Maybe<Scalars['String']['output']>;
|
|
24871
24937
|
url?: Maybe<Scalars['String']['output']>;
|
|
24872
24938
|
};
|
|
24939
|
+
export declare type ExternalWorkItemProject = {
|
|
24940
|
+
__typename?: 'ExternalWorkItemProject';
|
|
24941
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
24942
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
24943
|
+
};
|
|
24873
24944
|
export declare enum ExternalWorkItemSubtype {
|
|
24874
24945
|
Approval = "APPROVAL",
|
|
24875
24946
|
Bug = "BUG",
|
|
24876
24947
|
DefaultTask = "DEFAULT_TASK",
|
|
24877
24948
|
Epic = "EPIC",
|
|
24878
24949
|
Incident = "INCIDENT",
|
|
24950
|
+
Issue = "ISSUE",
|
|
24879
24951
|
Milestone = "MILESTONE",
|
|
24880
24952
|
Other = "OTHER",
|
|
24881
24953
|
Problem = "PROBLEM",
|
|
@@ -25755,9 +25827,33 @@ export declare enum ForgeMetricsChartName {
|
|
|
25755
25827
|
InvocationLatency = "INVOCATION_LATENCY",
|
|
25756
25828
|
InvocationSuccessRate = "INVOCATION_SUCCESS_RATE"
|
|
25757
25829
|
}
|
|
25830
|
+
export declare type ForgeMetricsCustomCreateQueryInput = {
|
|
25831
|
+
creatorId: Scalars['String']['input'];
|
|
25832
|
+
customMetric: Scalars['String']['input'];
|
|
25833
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
25834
|
+
};
|
|
25835
|
+
export declare type ForgeMetricsCustomData = {
|
|
25836
|
+
__typename?: 'ForgeMetricsCustomData';
|
|
25837
|
+
appId: Scalars['ID']['output'];
|
|
25838
|
+
createdAt: Scalars['String']['output'];
|
|
25839
|
+
createdBy?: Maybe<User>;
|
|
25840
|
+
creatorId: Scalars['String']['output'];
|
|
25841
|
+
customMetricName: Scalars['String']['output'];
|
|
25842
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
25843
|
+
id: Scalars['ID']['output'];
|
|
25844
|
+
type: Scalars['String']['output'];
|
|
25845
|
+
updatedAt: Scalars['String']['output'];
|
|
25846
|
+
};
|
|
25847
|
+
export declare type ForgeMetricsCustomDeleteQueryInput = {
|
|
25848
|
+
nodeId: Scalars['ID']['input'];
|
|
25849
|
+
};
|
|
25758
25850
|
export declare enum ForgeMetricsCustomGroupByDimensions {
|
|
25759
25851
|
CustomMetricName = "CUSTOM_METRIC_NAME"
|
|
25760
25852
|
}
|
|
25853
|
+
export declare type ForgeMetricsCustomMetaData = {
|
|
25854
|
+
__typename?: 'ForgeMetricsCustomMetaData';
|
|
25855
|
+
customMetricNames: Array<ForgeMetricsCustomData>;
|
|
25856
|
+
};
|
|
25761
25857
|
export declare type ForgeMetricsCustomQueryFilters = {
|
|
25762
25858
|
appVersions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
25763
25859
|
contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -25769,6 +25865,16 @@ export declare type ForgeMetricsCustomQueryInput = {
|
|
|
25769
25865
|
filters: ForgeMetricsCustomQueryFilters;
|
|
25770
25866
|
groupBy?: InputMaybe<Array<ForgeMetricsCustomGroupByDimensions>>;
|
|
25771
25867
|
};
|
|
25868
|
+
export declare type ForgeMetricsCustomResult = ForgeMetricsCustomMetaData | QueryError;
|
|
25869
|
+
export declare type ForgeMetricsCustomSuccessStatus = {
|
|
25870
|
+
__typename?: 'ForgeMetricsCustomSuccessStatus';
|
|
25871
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
25872
|
+
success: Scalars['Boolean']['output'];
|
|
25873
|
+
};
|
|
25874
|
+
export declare type ForgeMetricsCustomUpdateQueryInput = {
|
|
25875
|
+
customMetric: Scalars['String']['input'];
|
|
25876
|
+
nodeId: Scalars['ID']['input'];
|
|
25877
|
+
};
|
|
25772
25878
|
export declare type ForgeMetricsData = {
|
|
25773
25879
|
name: Scalars['String']['output'];
|
|
25774
25880
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
@@ -25899,6 +26005,22 @@ export declare type ForgeMetricsLatencyBucketsQueryInput = {
|
|
|
25899
26005
|
filters: ForgeMetricsLatencyBucketsQueryFilters;
|
|
25900
26006
|
groupBy?: InputMaybe<Array<ForgeMetricsGroupByDimensions>>;
|
|
25901
26007
|
};
|
|
26008
|
+
export declare type ForgeMetricsMutation = {
|
|
26009
|
+
__typename?: 'ForgeMetricsMutation';
|
|
26010
|
+
appId: Scalars['ID']['output'];
|
|
26011
|
+
createCustomMetric: ForgeMetricsCustomSuccessStatus;
|
|
26012
|
+
deleteCustomMetric: ForgeMetricsCustomSuccessStatus;
|
|
26013
|
+
updateCustomMetric: ForgeMetricsCustomSuccessStatus;
|
|
26014
|
+
};
|
|
26015
|
+
export declare type ForgeMetricsMutationCreateCustomMetricArgs = {
|
|
26016
|
+
query: ForgeMetricsCustomCreateQueryInput;
|
|
26017
|
+
};
|
|
26018
|
+
export declare type ForgeMetricsMutationDeleteCustomMetricArgs = {
|
|
26019
|
+
query: ForgeMetricsCustomDeleteQueryInput;
|
|
26020
|
+
};
|
|
26021
|
+
export declare type ForgeMetricsMutationUpdateCustomMetricArgs = {
|
|
26022
|
+
query: ForgeMetricsCustomUpdateQueryInput;
|
|
26023
|
+
};
|
|
25902
26024
|
export declare type ForgeMetricsOtlpData = {
|
|
25903
26025
|
__typename?: 'ForgeMetricsOtlpData';
|
|
25904
26026
|
resourceMetrics: Scalars['JSON']['output'];
|
|
@@ -25924,6 +26046,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
25924
26046
|
cacheHitRate: ForgeMetricsSuccessRateResult;
|
|
25925
26047
|
chartInsight: ForgeMetricsChartInsightResult;
|
|
25926
26048
|
customMetrics: ForgeMetricsInvocationsResult;
|
|
26049
|
+
customMetricsMetaData: ForgeMetricsCustomResult;
|
|
25927
26050
|
errors: ForgeMetricsErrorsResult;
|
|
25928
26051
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
25929
26052
|
invocations: ForgeMetricsInvocationsResult;
|
|
@@ -48909,7 +49032,7 @@ export declare type HelpCenterPage = Node & {
|
|
|
48909
49032
|
};
|
|
48910
49033
|
export declare type HelpCenterPageCreateInput = {
|
|
48911
49034
|
clonePageAri?: InputMaybe<Scalars['String']['input']>;
|
|
48912
|
-
description
|
|
49035
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
48913
49036
|
helpCenterAri: Scalars['String']['input'];
|
|
48914
49037
|
name: Scalars['String']['input'];
|
|
48915
49038
|
};
|
|
@@ -48930,7 +49053,7 @@ export declare type HelpCenterPageDeletePayload = Payload & {
|
|
|
48930
49053
|
};
|
|
48931
49054
|
export declare type HelpCenterPageDescription = {
|
|
48932
49055
|
__typename?: 'HelpCenterPageDescription';
|
|
48933
|
-
default
|
|
49056
|
+
default?: Maybe<Scalars['String']['output']>;
|
|
48934
49057
|
};
|
|
48935
49058
|
export declare type HelpCenterPageLayout = {
|
|
48936
49059
|
__typename?: 'HelpCenterPageLayout';
|
|
@@ -48956,7 +49079,7 @@ export declare enum HelpCenterPageType {
|
|
|
48956
49079
|
Custom = "CUSTOM"
|
|
48957
49080
|
}
|
|
48958
49081
|
export declare type HelpCenterPageUpdateInput = {
|
|
48959
|
-
description
|
|
49082
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
48960
49083
|
helpCenterPageAri: Scalars['String']['input'];
|
|
48961
49084
|
name: Scalars['String']['input'];
|
|
48962
49085
|
};
|
|
@@ -48970,6 +49093,7 @@ export declare type HelpCenterPermissionSettings = {
|
|
|
48970
49093
|
__typename?: 'HelpCenterPermissionSettings';
|
|
48971
49094
|
accessControlType: HelpCenterAccessControlType;
|
|
48972
49095
|
allowedAccessGroups?: Maybe<Array<Scalars['String']['output']>>;
|
|
49096
|
+
hydratedAllowedAccessGroups?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
48973
49097
|
};
|
|
48974
49098
|
export declare type HelpCenterPermissionSettingsInput = {
|
|
48975
49099
|
accessControlType: HelpCenterAccessControlType;
|
|
@@ -49092,7 +49216,11 @@ export declare type HelpCenterQueryApiHelpCenterPagesArgs = {
|
|
|
49092
49216
|
helpCenterAri: Scalars['ID']['input'];
|
|
49093
49217
|
};
|
|
49094
49218
|
export declare type HelpCenterQueryApiHelpCenterPermissionSettingsArgs = {
|
|
49219
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
49220
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
49221
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49095
49222
|
helpCenterAri: Scalars['ID']['input'];
|
|
49223
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49096
49224
|
};
|
|
49097
49225
|
export declare type HelpCenterQueryApiHelpCenterReportingByIdArgs = {
|
|
49098
49226
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -54938,6 +55066,24 @@ export declare type JiraEstimate = {
|
|
|
54938
55066
|
export declare type JiraEstimateInput = {
|
|
54939
55067
|
timeInSeconds: Scalars['Long']['input'];
|
|
54940
55068
|
};
|
|
55069
|
+
export declare type JiraExportIssueDetailsInput = {
|
|
55070
|
+
includeComments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55071
|
+
includeFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55072
|
+
includeHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55073
|
+
includeWorklogs?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55074
|
+
issueId: Scalars['ID']['input'];
|
|
55075
|
+
};
|
|
55076
|
+
export declare type JiraExportIssueDetailsResponse = {
|
|
55077
|
+
__typename?: 'JiraExportIssueDetailsResponse';
|
|
55078
|
+
errors?: Maybe<Array<QueryError>>;
|
|
55079
|
+
taskResponse?: Maybe<JiraExportIssueDetailsTaskResponse>;
|
|
55080
|
+
};
|
|
55081
|
+
export declare type JiraExportIssueDetailsTaskResponse = {
|
|
55082
|
+
__typename?: 'JiraExportIssueDetailsTaskResponse';
|
|
55083
|
+
taskDescription?: Maybe<Scalars['String']['output']>;
|
|
55084
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
55085
|
+
taskStatus?: Maybe<JiraLongRunningTaskStatus>;
|
|
55086
|
+
};
|
|
54941
55087
|
export declare type JiraExtensionRenderingContextInput = {
|
|
54942
55088
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
54943
55089
|
portalId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -56021,6 +56167,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
56021
56167
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
56022
56168
|
comments?: Maybe<JiraCommentConnection>;
|
|
56023
56169
|
configurationUrl?: Maybe<Scalars['URL']['output']>;
|
|
56170
|
+
confluenceMentionedLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
56024
56171
|
contentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
56025
56172
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
56026
56173
|
createdField?: Maybe<JiraDateTimePickerField>;
|
|
@@ -56148,6 +56295,12 @@ export declare type JiraIssueCommentsArgs = {
|
|
|
56148
56295
|
sortBy?: InputMaybe<JiraCommentSortInput>;
|
|
56149
56296
|
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
56150
56297
|
};
|
|
56298
|
+
export declare type JiraIssueConfluenceMentionedLinksArgs = {
|
|
56299
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
56300
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
56301
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56302
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
56303
|
+
};
|
|
56151
56304
|
export declare type JiraIssueContentPanelsArgs = {
|
|
56152
56305
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
56153
56306
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -60892,6 +61045,7 @@ export declare type JiraProject = Node & {
|
|
|
60892
61045
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60893
61046
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
60894
61047
|
isLiveTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
61048
|
+
isPlaybooksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60895
61049
|
isVirtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60896
61050
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
60897
61051
|
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
|
|
@@ -61659,6 +61813,7 @@ export declare type JiraQuery = {
|
|
|
61659
61813
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
61660
61814
|
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
61661
61815
|
epicLinkFieldKey?: Maybe<Scalars['String']['output']>;
|
|
61816
|
+
exportIssueDetails?: Maybe<JiraExportIssueDetailsResponse>;
|
|
61662
61817
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
61663
61818
|
favourites?: Maybe<JiraFavouriteConnection>;
|
|
61664
61819
|
fieldSetViewQueryByProject?: Maybe<JiraFieldSetViewResult>;
|
|
@@ -61954,6 +62109,9 @@ export declare type JiraQueryDevOpsProvidersArgs = {
|
|
|
61954
62109
|
export declare type JiraQueryEpicLinkFieldKeyArgs = {
|
|
61955
62110
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
61956
62111
|
};
|
|
62112
|
+
export declare type JiraQueryExportIssueDetailsArgs = {
|
|
62113
|
+
input: JiraExportIssueDetailsInput;
|
|
62114
|
+
};
|
|
61957
62115
|
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
61958
62116
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61959
62117
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -71820,6 +71978,7 @@ export declare type MarketplaceStorePartnerListing = {
|
|
|
71820
71978
|
slug?: Maybe<Scalars['String']['output']>;
|
|
71821
71979
|
supportAvailability?: Maybe<MarketplaceStorePartnerSupportAvailability>;
|
|
71822
71980
|
supportContact?: Maybe<MarketplaceStorePartnerSupportContact>;
|
|
71981
|
+
trustCenterUrl?: Maybe<Scalars['String']['output']>;
|
|
71823
71982
|
};
|
|
71824
71983
|
export declare type MarketplaceStorePartnerResponse = {
|
|
71825
71984
|
__typename?: 'MarketplaceStorePartnerResponse';
|
|
@@ -73886,6 +74045,7 @@ export declare type Mutation = {
|
|
|
73886
74045
|
createSystemSpace?: Maybe<Space>;
|
|
73887
74046
|
createTemplate?: Maybe<ContentTemplate>;
|
|
73888
74047
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
74048
|
+
customerHubAgentConfiguration_updateIdentityConfiguration?: Maybe<CustomerHubAgentConfigurationUpdateIdentityPayload>;
|
|
73889
74049
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
73890
74050
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
73891
74051
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -75013,6 +75173,11 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
75013
75173
|
forceCreate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75014
75174
|
input: WebTriggerUrlInput;
|
|
75015
75175
|
};
|
|
75176
|
+
export declare type MutationCustomerHubAgentConfiguration_UpdateIdentityConfigurationArgs = {
|
|
75177
|
+
agentConfigurationId: Scalars['ID']['input'];
|
|
75178
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
75179
|
+
input?: InputMaybe<CustomerHubAgentConfigurationUpdateIdentityConfigurationInput>;
|
|
75180
|
+
};
|
|
75016
75181
|
export declare type MutationCustomerServiceArgs = {
|
|
75017
75182
|
cloudId: Scalars['ID']['input'];
|
|
75018
75183
|
};
|
|
@@ -78739,6 +78904,8 @@ export declare type Query = {
|
|
|
78739
78904
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
78740
78905
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
78741
78906
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
78907
|
+
customerHubAgentConfiguration_configurationByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationResult>;
|
|
78908
|
+
customerHubAgentConfiguration_mappingByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationIdentityMappingResult>;
|
|
78742
78909
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
78743
78910
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
78744
78911
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
@@ -78775,6 +78942,7 @@ export declare type Query = {
|
|
|
78775
78942
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
78776
78943
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
78777
78944
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
78945
|
+
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
78778
78946
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
78779
78947
|
devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
78780
78948
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
@@ -80550,6 +80718,12 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
80550
80718
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
80551
80719
|
startTime: Scalars['String']['input'];
|
|
80552
80720
|
};
|
|
80721
|
+
export declare type QueryCustomerHubAgentConfiguration_ConfigurationByHelpCenterAriArgs = {
|
|
80722
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
80723
|
+
};
|
|
80724
|
+
export declare type QueryCustomerHubAgentConfiguration_MappingByHelpCenterAriArgs = {
|
|
80725
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
80726
|
+
};
|
|
80553
80727
|
export declare type QueryCustomerServiceArgs = {
|
|
80554
80728
|
cloudId: Scalars['ID']['input'];
|
|
80555
80729
|
};
|
|
@@ -80693,6 +80867,10 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
80693
80867
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
80694
80868
|
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
80695
80869
|
};
|
|
80870
|
+
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
80871
|
+
atlassianAccountId: Scalars['ID']['input'];
|
|
80872
|
+
cloudId: Scalars['ID']['input'];
|
|
80873
|
+
};
|
|
80696
80874
|
export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
|
|
80697
80875
|
cloudId: Scalars['ID']['input'];
|
|
80698
80876
|
jobId: Scalars['ID']['input'];
|
|
@@ -92040,11 +92218,13 @@ export declare type UnifiedConsentObj = {
|
|
|
92040
92218
|
consent_key: Scalars['String']['output'];
|
|
92041
92219
|
consent_status: Scalars['String']['output'];
|
|
92042
92220
|
created_at: Scalars['String']['output'];
|
|
92221
|
+
data_source?: Maybe<Scalars['String']['output']>;
|
|
92043
92222
|
updated_at: Scalars['String']['output'];
|
|
92044
92223
|
};
|
|
92045
92224
|
export declare type UnifiedConsentObjInput = {
|
|
92046
92225
|
consent_key: Scalars['String']['input'];
|
|
92047
92226
|
consent_status: Scalars['String']['input'];
|
|
92227
|
+
displayed_text?: InputMaybe<Scalars['String']['input']>;
|
|
92048
92228
|
};
|
|
92049
92229
|
export declare type UnifiedConsentPayload = UnifiedPayload & {
|
|
92050
92230
|
__typename?: 'UnifiedConsentPayload';
|
|
@@ -92433,6 +92613,7 @@ export declare type UnifiedMutation = {
|
|
|
92433
92613
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
92434
92614
|
gating?: Maybe<UnifiedGatingMutation>;
|
|
92435
92615
|
linking?: Maybe<UnifiedLinkingMutation>;
|
|
92616
|
+
profile?: Maybe<UnifiedProfileMutation>;
|
|
92436
92617
|
updateUnifiedProfile?: Maybe<UnifiedProfilePayload>;
|
|
92437
92618
|
};
|
|
92438
92619
|
export declare type UnifiedMutationCreateUnifiedSystemArgs = {
|
|
@@ -92533,6 +92714,13 @@ export declare type UnifiedProfileInput = {
|
|
|
92533
92714
|
xUrl?: InputMaybe<Scalars['String']['input']>;
|
|
92534
92715
|
youtubeUrl?: InputMaybe<Scalars['String']['input']>;
|
|
92535
92716
|
};
|
|
92717
|
+
export declare type UnifiedProfileMutation = {
|
|
92718
|
+
__typename?: 'UnifiedProfileMutation';
|
|
92719
|
+
getExistingOrNewProfileFromKhorosUserId?: Maybe<UnifiedProfilePayload>;
|
|
92720
|
+
};
|
|
92721
|
+
export declare type UnifiedProfileMutationGetExistingOrNewProfileFromKhorosUserIdArgs = {
|
|
92722
|
+
khorosUserId: Scalars['String']['input'];
|
|
92723
|
+
};
|
|
92536
92724
|
export declare type UnifiedProfilePayload = UnifiedPayload & {
|
|
92537
92725
|
__typename?: 'UnifiedProfilePayload';
|
|
92538
92726
|
errors?: Maybe<Array<UnifiedMutationError>>;
|