@forge/cli-shared 9.4.1-next.5-experimental-d477002 → 9.4.1-next.6
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 +2 -9
- package/out/graphql/graphql-types.d.ts +872 -22
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +124 -46
- package/package.json +2 -2
|
@@ -2115,6 +2115,7 @@ export type AvpCopyDashboardInput = {
|
|
|
2115
2115
|
dashboardAri: Scalars['ID']['input'];
|
|
2116
2116
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
2117
2117
|
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
2118
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
2118
2119
|
};
|
|
2119
2120
|
export type AvpCopyDashboardPayload = Payload & {
|
|
2120
2121
|
__typename?: 'AVPCopyDashboardPayload';
|
|
@@ -2616,6 +2617,7 @@ export declare enum AvpIntegrationId {
|
|
|
2616
2617
|
AssetsVertical = "ASSETS_VERTICAL",
|
|
2617
2618
|
AtlassianAnalytics = "ATLASSIAN_ANALYTICS",
|
|
2618
2619
|
JiraDashboards = "JIRA_DASHBOARDS",
|
|
2620
|
+
JiraSpaceDashboardsBusiness = "JIRA_SPACE_DASHBOARDS_BUSINESS",
|
|
2619
2621
|
JiraSpaceDashboardsKanban = "JIRA_SPACE_DASHBOARDS_KANBAN",
|
|
2620
2622
|
JiraSpaceDashboardsScrum = "JIRA_SPACE_DASHBOARDS_SCRUM",
|
|
2621
2623
|
JiraSummaryPage = "JIRA_SUMMARY_PAGE",
|
|
@@ -6936,6 +6938,14 @@ export declare enum AgentStudioCreateAgentPermissionMode {
|
|
|
6936
6938
|
NoOne = "NO_ONE",
|
|
6937
6939
|
Selected = "SELECTED"
|
|
6938
6940
|
}
|
|
6941
|
+
export type AgentStudioCreateAgentTriggerInput = {
|
|
6942
|
+
automationConfig?: InputMaybe<Scalars['JSON']['input']>;
|
|
6943
|
+
};
|
|
6944
|
+
export type AgentStudioCreateAgentTriggerPayload = {
|
|
6945
|
+
__typename?: 'AgentStudioCreateAgentTriggerPayload';
|
|
6946
|
+
errors?: Maybe<Array<Maybe<MutationError>>>;
|
|
6947
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
6948
|
+
};
|
|
6939
6949
|
export type AgentStudioCreateBatchEvaluationJobInput = {
|
|
6940
6950
|
agentId: Scalars['String']['input'];
|
|
6941
6951
|
agentVersionId: Scalars['String']['input'];
|
|
@@ -19846,6 +19856,7 @@ export type CcpPricingPlanItem = {
|
|
|
19846
19856
|
prorateOnUsageChange?: Maybe<CcpProrateOnUsageChange>;
|
|
19847
19857
|
tiers?: Maybe<Array<Maybe<CcpPricingPlanTier>>>;
|
|
19848
19858
|
tiersMode?: Maybe<CcpTiersMode>;
|
|
19859
|
+
transformQuantity?: Maybe<CcpTransformQuantity>;
|
|
19849
19860
|
usageUpdateCadence?: Maybe<CcpUsageUpdateCadence>;
|
|
19850
19861
|
};
|
|
19851
19862
|
export type CcpPricingPlanRelationship = {
|
|
@@ -20752,6 +20763,15 @@ export declare enum CcpTransactionAccountType {
|
|
|
20752
20763
|
Partner = "PARTNER",
|
|
20753
20764
|
UnaffiliatedReseller = "UNAFFILIATED_RESELLER"
|
|
20754
20765
|
}
|
|
20766
|
+
export type CcpTransformQuantity = {
|
|
20767
|
+
__typename?: 'CcpTransformQuantity';
|
|
20768
|
+
divideBy?: Maybe<Scalars['Int']['output']>;
|
|
20769
|
+
round?: Maybe<CcpTransformQuantityRound>;
|
|
20770
|
+
};
|
|
20771
|
+
export declare enum CcpTransformQuantityRound {
|
|
20772
|
+
Down = "DOWN",
|
|
20773
|
+
Up = "UP"
|
|
20774
|
+
}
|
|
20755
20775
|
export type CcpTrial = CommerceTrial & {
|
|
20756
20776
|
__typename?: 'CcpTrial';
|
|
20757
20777
|
endBehaviour?: Maybe<CcpTrialEndBehaviour>;
|
|
@@ -22052,6 +22072,7 @@ export type CommerceExpAchPaymentMethodPaginatedEntitlementsArgs = {
|
|
|
22052
22072
|
};
|
|
22053
22073
|
export type CommerceExpActivateEntitlementInfo = {
|
|
22054
22074
|
entitlementId?: InputMaybe<Scalars['String']['input']>;
|
|
22075
|
+
familyContainerId?: InputMaybe<Scalars['String']['input']>;
|
|
22055
22076
|
offeringId: Scalars['String']['input'];
|
|
22056
22077
|
resourceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
22057
22078
|
};
|
|
@@ -38536,6 +38557,26 @@ export type ConfluenceUpdateMarkdownModePayload = Payload & {
|
|
|
38536
38557
|
success: Scalars['Boolean']['output'];
|
|
38537
38558
|
title?: Maybe<Scalars['String']['output']>;
|
|
38538
38559
|
};
|
|
38560
|
+
export declare enum ConfluenceUpdateModeChangeAsyncErrorCode {
|
|
38561
|
+
AlreadyInRolesMode = "ALREADY_IN_ROLES_MODE",
|
|
38562
|
+
ExperimentDisabled = "EXPERIMENT_DISABLED",
|
|
38563
|
+
InternalError = "INTERNAL_ERROR",
|
|
38564
|
+
NotInRolesTransitionMode = "NOT_IN_ROLES_TRANSITION_MODE",
|
|
38565
|
+
PermissionDenied = "PERMISSION_DENIED"
|
|
38566
|
+
}
|
|
38567
|
+
export type ConfluenceUpdateModeChangeAsyncMutationErrorExtension = MutationErrorExtension & {
|
|
38568
|
+
__typename?: 'ConfluenceUpdateModeChangeAsyncMutationErrorExtension';
|
|
38569
|
+
code: ConfluenceUpdateModeChangeAsyncErrorCode;
|
|
38570
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
38571
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
38572
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
38573
|
+
};
|
|
38574
|
+
export type ConfluenceUpdateModeChangeAsyncPayload = Payload & {
|
|
38575
|
+
__typename?: 'ConfluenceUpdateModeChangeAsyncPayload';
|
|
38576
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38577
|
+
longTaskId?: Maybe<Scalars['ID']['output']>;
|
|
38578
|
+
success: Scalars['Boolean']['output'];
|
|
38579
|
+
};
|
|
38539
38580
|
export declare enum ConfluenceUpdateModeChangeErrorCode {
|
|
38540
38581
|
AlreadyInRolesMode = "ALREADY_IN_ROLES_MODE",
|
|
38541
38582
|
ExperimentDisabled = "EXPERIMENT_DISABLED",
|
|
@@ -54438,7 +54479,7 @@ export type ForgeObservabilityFrontendLogContextInput = {
|
|
|
54438
54479
|
appId: Scalars['ID']['input'];
|
|
54439
54480
|
contextAri: Scalars['ID']['input'];
|
|
54440
54481
|
extensionId: Scalars['ID']['input'];
|
|
54441
|
-
installationId
|
|
54482
|
+
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
54442
54483
|
userAgent: Scalars['String']['input'];
|
|
54443
54484
|
};
|
|
54444
54485
|
export type ForgeObservabilityFrontendLogEntryInput = {
|
|
@@ -55900,6 +55941,8 @@ export type GraphInferenceDecisionInsight = GraphInferenceInsight & {
|
|
|
55900
55941
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
55901
55942
|
decision: GraphInferenceDecisionDetails;
|
|
55902
55943
|
id: Scalars['ID']['output'];
|
|
55944
|
+
inferenceAppId?: Maybe<Scalars['String']['output']>;
|
|
55945
|
+
inferenceAppVersion?: Maybe<Scalars['Int']['output']>;
|
|
55903
55946
|
insightType: GraphInferenceInsightType;
|
|
55904
55947
|
sources: Array<GraphInferenceInsightSource>;
|
|
55905
55948
|
subtype?: Maybe<GraphInferenceInsightSubtype>;
|
|
@@ -56161,6 +56204,12 @@ export type GraphInferenceInferenceAppMutationPayloadV3 = {
|
|
|
56161
56204
|
errors: Array<GraphInferenceMutationErrorV3>;
|
|
56162
56205
|
success: Scalars['Boolean']['output'];
|
|
56163
56206
|
};
|
|
56207
|
+
export type GraphInferenceInferenceAppPermissions = {
|
|
56208
|
+
__typename?: 'GraphInferenceInferenceAppPermissions';
|
|
56209
|
+
canManage: Scalars['Boolean']['output'];
|
|
56210
|
+
canRunInference: Scalars['Boolean']['output'];
|
|
56211
|
+
canView: Scalars['Boolean']['output'];
|
|
56212
|
+
};
|
|
56164
56213
|
export type GraphInferenceInferenceAppStoredAnchor = {
|
|
56165
56214
|
__typename?: 'GraphInferenceInferenceAppStoredAnchor';
|
|
56166
56215
|
ari: Scalars['String']['output'];
|
|
@@ -56173,6 +56222,7 @@ export type GraphInferenceInferenceAppStoredInferenceNode = {
|
|
|
56173
56222
|
ari: Scalars['String']['output'];
|
|
56174
56223
|
description?: Maybe<Scalars['String']['output']>;
|
|
56175
56224
|
title: Scalars['String']['output'];
|
|
56225
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
56176
56226
|
};
|
|
56177
56227
|
export type GraphInferenceInferenceAppStoredLinkedEntity = {
|
|
56178
56228
|
__typename?: 'GraphInferenceInferenceAppStoredLinkedEntity';
|
|
@@ -56286,6 +56336,22 @@ export type GraphInferenceInferenceModelsResponse = {
|
|
|
56286
56336
|
runtimeSelectionSupported: Scalars['Boolean']['output'];
|
|
56287
56337
|
useCaseId: Scalars['String']['output'];
|
|
56288
56338
|
};
|
|
56339
|
+
export type GraphInferenceInferencePreviewInput = {
|
|
56340
|
+
ai: GraphInferenceAiInput;
|
|
56341
|
+
explicitAnchorAris: Array<Scalars['String']['input']>;
|
|
56342
|
+
infer: Scalars['String']['input'];
|
|
56343
|
+
promptOverride?: InputMaybe<Scalars['String']['input']>;
|
|
56344
|
+
source: Scalars['String']['input'];
|
|
56345
|
+
sourceAri: Scalars['String']['input'];
|
|
56346
|
+
targetCapabilityIds: Array<Scalars['String']['input']>;
|
|
56347
|
+
};
|
|
56348
|
+
export type GraphInferenceInferencePreviewResponse = {
|
|
56349
|
+
__typename?: 'GraphInferenceInferencePreviewResponse';
|
|
56350
|
+
explicitAnchorAris: Array<Scalars['String']['output']>;
|
|
56351
|
+
result: Scalars['JSON']['output'];
|
|
56352
|
+
sourceAri: Scalars['String']['output'];
|
|
56353
|
+
status: Scalars['String']['output'];
|
|
56354
|
+
};
|
|
56289
56355
|
export type GraphInferenceInferenceQualityBucket = {
|
|
56290
56356
|
__typename?: 'GraphInferenceInferenceQualityBucket';
|
|
56291
56357
|
bucketStart?: Maybe<Scalars['String']['output']>;
|
|
@@ -56406,6 +56472,8 @@ export type GraphInferenceInsight = {
|
|
|
56406
56472
|
contentFormat: GraphInferenceInsightContentFormat;
|
|
56407
56473
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
56408
56474
|
id: Scalars['ID']['output'];
|
|
56475
|
+
inferenceAppId?: Maybe<Scalars['String']['output']>;
|
|
56476
|
+
inferenceAppVersion?: Maybe<Scalars['Int']['output']>;
|
|
56409
56477
|
insightType: GraphInferenceInsightType;
|
|
56410
56478
|
sources: Array<GraphInferenceInsightSource>;
|
|
56411
56479
|
subtype?: Maybe<GraphInferenceInsightSubtype>;
|
|
@@ -60706,8 +60774,12 @@ export type GraphStore = {
|
|
|
60706
60774
|
dynamicRelationshipAssetToProjectInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseConnection>;
|
|
60707
60775
|
dynamicRelationshipAssetToRepo?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoConnection>;
|
|
60708
60776
|
dynamicRelationshipAssetToRepoInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseConnection>;
|
|
60777
|
+
dynamicRelationshipAssetToTeam?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamConnection>;
|
|
60778
|
+
dynamicRelationshipAssetToTeamInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseConnection>;
|
|
60709
60779
|
dynamicRelationshipAssetToUser?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserConnection>;
|
|
60710
60780
|
dynamicRelationshipAssetToUserInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection>;
|
|
60781
|
+
entityAuthorisesAtlassianMemory?: Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryConnection>;
|
|
60782
|
+
entityAuthorisesAtlassianMemoryInverse?: Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseConnection>;
|
|
60711
60783
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
60712
60784
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
60713
60785
|
entityRepresentsConfluenceSpace?: Maybe<GraphStoreSimplifiedEntityRepresentsConfluenceSpaceConnection>;
|
|
@@ -60876,6 +60948,8 @@ export type GraphStore = {
|
|
|
60876
60948
|
inferredDecisionImpactsEntityInverse?: Maybe<GraphStoreSimplifiedInferredDecisionImpactsEntityInverseConnection>;
|
|
60877
60949
|
inferredDecisionSourceLineageEntity?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection>;
|
|
60878
60950
|
inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
|
|
60951
|
+
inferredProjectHasRelatedEntity?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection>;
|
|
60952
|
+
inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection>;
|
|
60879
60953
|
inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
|
|
60880
60954
|
inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
|
|
60881
60955
|
inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
|
|
@@ -63870,6 +63944,22 @@ export type GraphStoreDynamicRelationshipAssetToRepoInverseArgs = {
|
|
|
63870
63944
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
63871
63945
|
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToRepoSortInput>;
|
|
63872
63946
|
};
|
|
63947
|
+
export type GraphStoreDynamicRelationshipAssetToTeamArgs = {
|
|
63948
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
63949
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63950
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63951
|
+
id: Scalars['ID']['input'];
|
|
63952
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
63953
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToTeamSortInput>;
|
|
63954
|
+
};
|
|
63955
|
+
export type GraphStoreDynamicRelationshipAssetToTeamInverseArgs = {
|
|
63956
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
63957
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63958
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63959
|
+
id: Scalars['ID']['input'];
|
|
63960
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
63961
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToTeamSortInput>;
|
|
63962
|
+
};
|
|
63873
63963
|
export type GraphStoreDynamicRelationshipAssetToUserArgs = {
|
|
63874
63964
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63875
63965
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -63886,6 +63976,22 @@ export type GraphStoreDynamicRelationshipAssetToUserInverseArgs = {
|
|
|
63886
63976
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
63887
63977
|
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToUserSortInput>;
|
|
63888
63978
|
};
|
|
63979
|
+
export type GraphStoreEntityAuthorisesAtlassianMemoryArgs = {
|
|
63980
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
63981
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63982
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63983
|
+
id: Scalars['ID']['input'];
|
|
63984
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
63985
|
+
sort?: InputMaybe<GraphStoreEntityAuthorisesAtlassianMemorySortInput>;
|
|
63986
|
+
};
|
|
63987
|
+
export type GraphStoreEntityAuthorisesAtlassianMemoryInverseArgs = {
|
|
63988
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
63989
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63990
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63991
|
+
id: Scalars['ID']['input'];
|
|
63992
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
63993
|
+
sort?: InputMaybe<GraphStoreEntityAuthorisesAtlassianMemorySortInput>;
|
|
63994
|
+
};
|
|
63889
63995
|
export type GraphStoreEntityIsRelatedToEntityArgs = {
|
|
63890
63996
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63891
63997
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -65185,6 +65291,22 @@ export type GraphStoreInferredDecisionSourceLineageEntityInverseArgs = {
|
|
|
65185
65291
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
65186
65292
|
sort?: InputMaybe<GraphStoreInferredDecisionSourceLineageEntitySortInput>;
|
|
65187
65293
|
};
|
|
65294
|
+
export type GraphStoreInferredProjectHasRelatedEntityArgs = {
|
|
65295
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
65296
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65297
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65298
|
+
id: Scalars['ID']['input'];
|
|
65299
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
65300
|
+
sort?: InputMaybe<GraphStoreInferredProjectHasRelatedEntitySortInput>;
|
|
65301
|
+
};
|
|
65302
|
+
export type GraphStoreInferredProjectHasRelatedEntityInverseArgs = {
|
|
65303
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
65304
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65305
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65306
|
+
id: Scalars['ID']['input'];
|
|
65307
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
65308
|
+
sort?: InputMaybe<GraphStoreInferredProjectHasRelatedEntitySortInput>;
|
|
65309
|
+
};
|
|
65188
65310
|
export type GraphStoreInferredProjectLinksEntityArgs = {
|
|
65189
65311
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65190
65312
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -71529,6 +71651,7 @@ export declare enum GraphStoreAtlassianUserDismissedJiraForYouRecommendationEnti
|
|
|
71529
71651
|
CommentMention = "COMMENT_MENTION",
|
|
71530
71652
|
CommentReply = "COMMENT_REPLY",
|
|
71531
71653
|
ConfluenceLinkedIssues = "CONFLUENCE_LINKED_ISSUES",
|
|
71654
|
+
DelegateToAgent = "DELEGATE_TO_AGENT",
|
|
71532
71655
|
IssueApproval = "ISSUE_APPROVAL",
|
|
71533
71656
|
IssueBlockedByMe = "ISSUE_BLOCKED_BY_ME",
|
|
71534
71657
|
IssueBlockingMe = "ISSUE_BLOCKING_ME",
|
|
@@ -73772,6 +73895,7 @@ export declare enum GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendati
|
|
|
73772
73895
|
CommentMention = "COMMENT_MENTION",
|
|
73773
73896
|
CommentReply = "COMMENT_REPLY",
|
|
73774
73897
|
ConfluenceLinkedIssues = "CONFLUENCE_LINKED_ISSUES",
|
|
73898
|
+
DelegateToAgent = "DELEGATE_TO_AGENT",
|
|
73775
73899
|
IssueApproval = "ISSUE_APPROVAL",
|
|
73776
73900
|
IssueBlockedByMe = "ISSUE_BLOCKED_BY_ME",
|
|
73777
73901
|
IssueBlockingMe = "ISSUE_BLOCKING_ME",
|
|
@@ -75291,6 +75415,9 @@ export type GraphStoreDynamicRelationshipAssetToProjectSortInput = {
|
|
|
75291
75415
|
export type GraphStoreDynamicRelationshipAssetToRepoSortInput = {
|
|
75292
75416
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75293
75417
|
};
|
|
75418
|
+
export type GraphStoreDynamicRelationshipAssetToTeamSortInput = {
|
|
75419
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75420
|
+
};
|
|
75294
75421
|
export type GraphStoreDynamicRelationshipAssetToUserSortInput = {
|
|
75295
75422
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75296
75423
|
};
|
|
@@ -75317,6 +75444,9 @@ export type GraphStoreDynamicRelationshipTypeEdge = {
|
|
|
75317
75444
|
cursor: Scalars['String']['output'];
|
|
75318
75445
|
node: GraphStoreDynamicRelationshipType;
|
|
75319
75446
|
};
|
|
75447
|
+
export type GraphStoreEntityAuthorisesAtlassianMemorySortInput = {
|
|
75448
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75449
|
+
};
|
|
75320
75450
|
export type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
75321
75451
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75322
75452
|
};
|
|
@@ -79070,22 +79200,12 @@ export type GraphStoreInferredDecisionNodeProvenanceOutput = {
|
|
|
79070
79200
|
export type GraphStoreInferredDecisionSourceLineageEntitySortInput = {
|
|
79071
79201
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79072
79202
|
};
|
|
79073
|
-
export type
|
|
79074
|
-
|
|
79075
|
-
__typename?: 'GraphStoreInferredEntityResponse';
|
|
79076
|
-
entityType: Scalars['String']['output'];
|
|
79077
|
-
id: Scalars['String']['output'];
|
|
79078
|
-
metadata?: Maybe<GraphStoreInferredEntityMetadata>;
|
|
79079
|
-
workspaceId: Scalars['String']['output'];
|
|
79203
|
+
export type GraphStoreInferredProjectHasRelatedEntitySortInput = {
|
|
79204
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79080
79205
|
};
|
|
79081
79206
|
export type GraphStoreInferredProjectLinksEntitySortInput = {
|
|
79082
79207
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79083
79208
|
};
|
|
79084
|
-
export type GraphStoreInferredProjectMetadata = {
|
|
79085
|
-
__typename?: 'GraphStoreInferredProjectMetadata';
|
|
79086
|
-
summary?: Maybe<Scalars['String']['output']>;
|
|
79087
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
79088
|
-
};
|
|
79089
79209
|
export declare enum GraphStoreInferredProjectNodeInferredProjectStatusOutput {
|
|
79090
79210
|
Active = "ACTIVE",
|
|
79091
79211
|
Inactive = "INACTIVE",
|
|
@@ -81378,7 +81498,7 @@ export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityInverseEdge = {
|
|
|
81378
81498
|
node?: Maybe<GraphStoreSimplifiedAtlassianProjectHasRelatedEntityInverseUnion>;
|
|
81379
81499
|
};
|
|
81380
81500
|
export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityInverseUnion = TownsquareProject;
|
|
81381
|
-
export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage;
|
|
81501
|
+
export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
|
|
81382
81502
|
export type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection = HasPageInfo & {
|
|
81383
81503
|
__typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection';
|
|
81384
81504
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge>>>;
|
|
@@ -83977,6 +84097,34 @@ export type GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseEdge = {
|
|
|
83977
84097
|
};
|
|
83978
84098
|
export type GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseUnion = AssetsObject;
|
|
83979
84099
|
export type GraphStoreSimplifiedDynamicRelationshipAssetToRepoUnion = BitbucketRepository;
|
|
84100
|
+
export type GraphStoreSimplifiedDynamicRelationshipAssetToTeamConnection = HasPageInfo & {
|
|
84101
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToTeamConnection';
|
|
84102
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamEdge>>>;
|
|
84103
|
+
pageInfo: PageInfo;
|
|
84104
|
+
};
|
|
84105
|
+
export type GraphStoreSimplifiedDynamicRelationshipAssetToTeamEdge = {
|
|
84106
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToTeamEdge';
|
|
84107
|
+
createdAt: Scalars['DateTime']['output'];
|
|
84108
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
84109
|
+
id: Scalars['ID']['output'];
|
|
84110
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
84111
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamUnion>;
|
|
84112
|
+
};
|
|
84113
|
+
export type GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseConnection = HasPageInfo & {
|
|
84114
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseConnection';
|
|
84115
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseEdge>>>;
|
|
84116
|
+
pageInfo: PageInfo;
|
|
84117
|
+
};
|
|
84118
|
+
export type GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseEdge = {
|
|
84119
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseEdge';
|
|
84120
|
+
createdAt: Scalars['DateTime']['output'];
|
|
84121
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
84122
|
+
id: Scalars['ID']['output'];
|
|
84123
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
84124
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseUnion>;
|
|
84125
|
+
};
|
|
84126
|
+
export type GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseUnion = AssetsObject;
|
|
84127
|
+
export type GraphStoreSimplifiedDynamicRelationshipAssetToTeamUnion = TeamV2;
|
|
83980
84128
|
export type GraphStoreSimplifiedDynamicRelationshipAssetToUserConnection = HasPageInfo & {
|
|
83981
84129
|
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToUserConnection';
|
|
83982
84130
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserEdge>>>;
|
|
@@ -84005,6 +84153,34 @@ export type GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseEdge = {
|
|
|
84005
84153
|
};
|
|
84006
84154
|
export type GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseUnion = AssetsObject;
|
|
84007
84155
|
export type GraphStoreSimplifiedDynamicRelationshipAssetToUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
84156
|
+
export type GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryConnection = HasPageInfo & {
|
|
84157
|
+
__typename?: 'GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryConnection';
|
|
84158
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryEdge>>>;
|
|
84159
|
+
pageInfo: PageInfo;
|
|
84160
|
+
};
|
|
84161
|
+
export type GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryEdge = {
|
|
84162
|
+
__typename?: 'GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryEdge';
|
|
84163
|
+
createdAt: Scalars['DateTime']['output'];
|
|
84164
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
84165
|
+
id: Scalars['ID']['output'];
|
|
84166
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
84167
|
+
node?: Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryUnion>;
|
|
84168
|
+
};
|
|
84169
|
+
export type GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseConnection = HasPageInfo & {
|
|
84170
|
+
__typename?: 'GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseConnection';
|
|
84171
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseEdge>>>;
|
|
84172
|
+
pageInfo: PageInfo;
|
|
84173
|
+
};
|
|
84174
|
+
export type GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseEdge = {
|
|
84175
|
+
__typename?: 'GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseEdge';
|
|
84176
|
+
createdAt: Scalars['DateTime']['output'];
|
|
84177
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
84178
|
+
id: Scalars['ID']['output'];
|
|
84179
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
84180
|
+
node?: Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseUnion>;
|
|
84181
|
+
};
|
|
84182
|
+
export type GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
84183
|
+
export type GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryUnion = GraphStoreNodeResponse;
|
|
84008
84184
|
export type GraphStoreSimplifiedEntityIsRelatedToEntityConnection = HasPageInfo & {
|
|
84009
84185
|
__typename?: 'GraphStoreSimplifiedEntityIsRelatedToEntityConnection';
|
|
84010
84186
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityEdge>>>;
|
|
@@ -85895,6 +86071,34 @@ export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseEdge =
|
|
|
85895
86071
|
};
|
|
85896
86072
|
export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
|
|
85897
86073
|
export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | LoomVideo;
|
|
86074
|
+
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
|
|
86075
|
+
__typename?: 'GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection';
|
|
86076
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityEdge>>>;
|
|
86077
|
+
pageInfo: PageInfo;
|
|
86078
|
+
};
|
|
86079
|
+
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityEdge = {
|
|
86080
|
+
__typename?: 'GraphStoreSimplifiedInferredProjectHasRelatedEntityEdge';
|
|
86081
|
+
createdAt: Scalars['DateTime']['output'];
|
|
86082
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86083
|
+
id: Scalars['ID']['output'];
|
|
86084
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
86085
|
+
node?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityUnion>;
|
|
86086
|
+
};
|
|
86087
|
+
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection = HasPageInfo & {
|
|
86088
|
+
__typename?: 'GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection';
|
|
86089
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseEdge>>>;
|
|
86090
|
+
pageInfo: PageInfo;
|
|
86091
|
+
};
|
|
86092
|
+
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseEdge = {
|
|
86093
|
+
__typename?: 'GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseEdge';
|
|
86094
|
+
createdAt: Scalars['DateTime']['output'];
|
|
86095
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86096
|
+
id: Scalars['ID']['output'];
|
|
86097
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
86098
|
+
node?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseUnion>;
|
|
86099
|
+
};
|
|
86100
|
+
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseUnion = GraphStoreNodeResponse;
|
|
86101
|
+
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
|
|
85898
86102
|
export type GraphStoreSimplifiedInferredProjectLinksEntityConnection = HasPageInfo & {
|
|
85899
86103
|
__typename?: 'GraphStoreSimplifiedInferredProjectLinksEntityConnection';
|
|
85900
86104
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectLinksEntityEdge>>>;
|
|
@@ -95831,6 +96035,8 @@ export type GraphStoreV2 = {
|
|
|
95831
96035
|
customer360CustomerLinksJiraWorkItem?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemConnection>;
|
|
95832
96036
|
customer360CustomerLinksJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemInverseConnection>;
|
|
95833
96037
|
cypherQueryV2: GraphStoreV2CypherQueryV2Connection;
|
|
96038
|
+
entityAuthorisesAtlassianMemory?: Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryConnection>;
|
|
96039
|
+
entityAuthorisesAtlassianMemoryInverse?: Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseConnection>;
|
|
95834
96040
|
entityLinksEntity?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityConnection>;
|
|
95835
96041
|
entityLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityInverseConnection>;
|
|
95836
96042
|
entityRepresentsConfluenceSpace?: Maybe<GraphStoreV2SimplifiedEntityRepresentsConfluenceSpaceConnection>;
|
|
@@ -96196,7 +96402,8 @@ export type GraphStoreV2 = {
|
|
|
96196
96402
|
inferredDecisionLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseConnection>;
|
|
96197
96403
|
inferredDecisionSourceLineageEntity?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection>;
|
|
96198
96404
|
inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
|
|
96199
|
-
|
|
96405
|
+
inferredProjectHasRelatedEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection>;
|
|
96406
|
+
inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection>;
|
|
96200
96407
|
inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
96201
96408
|
inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
|
|
96202
96409
|
inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
|
|
@@ -98825,6 +99032,20 @@ export type GraphStoreV2CypherQueryV2Args = {
|
|
|
98825
99032
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
98826
99033
|
version?: InputMaybe<GraphStoreV2CypherQueryV2VersionEnum>;
|
|
98827
99034
|
};
|
|
99035
|
+
export type GraphStoreV2EntityAuthorisesAtlassianMemoryArgs = {
|
|
99036
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99037
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99038
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99039
|
+
id: Scalars['ID']['input'];
|
|
99040
|
+
sort?: InputMaybe<GraphStoreV2EntityAuthorisesAtlassianMemorySortInput>;
|
|
99041
|
+
};
|
|
99042
|
+
export type GraphStoreV2EntityAuthorisesAtlassianMemoryInverseArgs = {
|
|
99043
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99044
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99045
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99046
|
+
id: Scalars['ID']['input'];
|
|
99047
|
+
sort?: InputMaybe<GraphStoreV2EntityAuthorisesAtlassianMemorySortInput>;
|
|
99048
|
+
};
|
|
98828
99049
|
export type GraphStoreV2EntityLinksEntityArgs = {
|
|
98829
99050
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
98830
99051
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -101386,8 +101607,19 @@ export type GraphStoreV2InferredDecisionSourceLineageEntityInverseArgs = {
|
|
|
101386
101607
|
id: Scalars['ID']['input'];
|
|
101387
101608
|
sort?: InputMaybe<GraphStoreV2InferredDecisionSourceLineageEntitySortInput>;
|
|
101388
101609
|
};
|
|
101389
|
-
export type
|
|
101390
|
-
|
|
101610
|
+
export type GraphStoreV2InferredProjectHasRelatedEntityArgs = {
|
|
101611
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
101612
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101613
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101614
|
+
id: Scalars['ID']['input'];
|
|
101615
|
+
sort?: InputMaybe<GraphStoreV2InferredProjectHasRelatedEntitySortInput>;
|
|
101616
|
+
};
|
|
101617
|
+
export type GraphStoreV2InferredProjectHasRelatedEntityInverseArgs = {
|
|
101618
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
101619
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101620
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101621
|
+
id: Scalars['ID']['input'];
|
|
101622
|
+
sort?: InputMaybe<GraphStoreV2InferredProjectHasRelatedEntitySortInput>;
|
|
101391
101623
|
};
|
|
101392
101624
|
export type GraphStoreV2InferredProjectLinksEntityArgs = {
|
|
101393
101625
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -103051,6 +103283,7 @@ export declare enum GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEn
|
|
|
103051
103283
|
CommentMention = "COMMENT_MENTION",
|
|
103052
103284
|
CommentReply = "COMMENT_REPLY",
|
|
103053
103285
|
ConfluenceLinkedIssues = "CONFLUENCE_LINKED_ISSUES",
|
|
103286
|
+
DelegateToAgent = "DELEGATE_TO_AGENT",
|
|
103054
103287
|
IssueApproval = "ISSUE_APPROVAL",
|
|
103055
103288
|
IssueBlockedByMe = "ISSUE_BLOCKED_BY_ME",
|
|
103056
103289
|
IssueBlockingMe = "ISSUE_BLOCKING_ME",
|
|
@@ -103511,6 +103744,7 @@ export declare enum GraphStoreV2CreateAtlassianUserDismissedJiraForYouRecommenda
|
|
|
103511
103744
|
CommentMention = "COMMENT_MENTION",
|
|
103512
103745
|
CommentReply = "COMMENT_REPLY",
|
|
103513
103746
|
ConfluenceLinkedIssues = "CONFLUENCE_LINKED_ISSUES",
|
|
103747
|
+
DelegateToAgent = "DELEGATE_TO_AGENT",
|
|
103514
103748
|
IssueApproval = "ISSUE_APPROVAL",
|
|
103515
103749
|
IssueBlockedByMe = "ISSUE_BLOCKED_BY_ME",
|
|
103516
103750
|
IssueBlockingMe = "ISSUE_BLOCKING_ME",
|
|
@@ -104611,6 +104845,9 @@ export type GraphStoreV2DeleteRovoAgentHasJiraProjectAgentKnowledgeContextPayloa
|
|
|
104611
104845
|
errors?: Maybe<Array<MutationError>>;
|
|
104612
104846
|
success: Scalars['Boolean']['output'];
|
|
104613
104847
|
};
|
|
104848
|
+
export type GraphStoreV2EntityAuthorisesAtlassianMemorySortInput = {
|
|
104849
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
104850
|
+
};
|
|
104614
104851
|
export type GraphStoreV2EntityLinksEntitySortInput = {
|
|
104615
104852
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
104616
104853
|
};
|
|
@@ -105260,6 +105497,9 @@ export type GraphStoreV2InferredDecisionLinksEntitySortInput = {
|
|
|
105260
105497
|
export type GraphStoreV2InferredDecisionSourceLineageEntitySortInput = {
|
|
105261
105498
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
105262
105499
|
};
|
|
105500
|
+
export type GraphStoreV2InferredProjectHasRelatedEntitySortInput = {
|
|
105501
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
105502
|
+
};
|
|
105263
105503
|
export type GraphStoreV2InferredProjectLinksEntitySortInput = {
|
|
105264
105504
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
105265
105505
|
};
|
|
@@ -107298,7 +107538,7 @@ export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityInverseEdge =
|
|
|
107298
107538
|
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityInverseUnion>;
|
|
107299
107539
|
};
|
|
107300
107540
|
export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityInverseUnion = TownsquareProject;
|
|
107301
|
-
export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage;
|
|
107541
|
+
export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
|
|
107302
107542
|
export type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection = HasPageInfo & {
|
|
107303
107543
|
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection';
|
|
107304
107544
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectEdge>>>;
|
|
@@ -111743,6 +111983,34 @@ export type GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemInverseEdg
|
|
|
111743
111983
|
};
|
|
111744
111984
|
export type GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemInverseUnion = Customer360Customer;
|
|
111745
111985
|
export type GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemUnion = JiraIssue;
|
|
111986
|
+
export type GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryConnection = HasPageInfo & {
|
|
111987
|
+
__typename?: 'GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryConnection';
|
|
111988
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryEdge>>>;
|
|
111989
|
+
pageInfo: PageInfo;
|
|
111990
|
+
};
|
|
111991
|
+
export type GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryEdge = {
|
|
111992
|
+
__typename?: 'GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryEdge';
|
|
111993
|
+
createdAt: Scalars['DateTime']['output'];
|
|
111994
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
111995
|
+
id: Scalars['ID']['output'];
|
|
111996
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
111997
|
+
node?: Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryUnion>;
|
|
111998
|
+
};
|
|
111999
|
+
export type GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseConnection = HasPageInfo & {
|
|
112000
|
+
__typename?: 'GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseConnection';
|
|
112001
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseEdge>>>;
|
|
112002
|
+
pageInfo: PageInfo;
|
|
112003
|
+
};
|
|
112004
|
+
export type GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseEdge = {
|
|
112005
|
+
__typename?: 'GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseEdge';
|
|
112006
|
+
createdAt: Scalars['DateTime']['output'];
|
|
112007
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
112008
|
+
id: Scalars['ID']['output'];
|
|
112009
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
112010
|
+
node?: Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseUnion>;
|
|
112011
|
+
};
|
|
112012
|
+
export type GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
112013
|
+
export type GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryUnion = GraphStoreNodeResponse;
|
|
111746
112014
|
export type GraphStoreV2SimplifiedEntityLinksEntityConnection = HasPageInfo & {
|
|
111747
112015
|
__typename?: 'GraphStoreV2SimplifiedEntityLinksEntityConnection';
|
|
111748
112016
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedEntityLinksEntityEdge>>>;
|
|
@@ -116885,6 +117153,34 @@ export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseEdge
|
|
|
116885
117153
|
};
|
|
116886
117154
|
export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
|
|
116887
117155
|
export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | LoomVideo;
|
|
117156
|
+
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
|
|
117157
|
+
__typename?: 'GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection';
|
|
117158
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityEdge>>>;
|
|
117159
|
+
pageInfo: PageInfo;
|
|
117160
|
+
};
|
|
117161
|
+
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityEdge = {
|
|
117162
|
+
__typename?: 'GraphStoreV2SimplifiedInferredProjectHasRelatedEntityEdge';
|
|
117163
|
+
createdAt: Scalars['DateTime']['output'];
|
|
117164
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
117165
|
+
id: Scalars['ID']['output'];
|
|
117166
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
117167
|
+
node?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityUnion>;
|
|
117168
|
+
};
|
|
117169
|
+
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection = HasPageInfo & {
|
|
117170
|
+
__typename?: 'GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection';
|
|
117171
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseEdge>>>;
|
|
117172
|
+
pageInfo: PageInfo;
|
|
117173
|
+
};
|
|
117174
|
+
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseEdge = {
|
|
117175
|
+
__typename?: 'GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseEdge';
|
|
117176
|
+
createdAt: Scalars['DateTime']['output'];
|
|
117177
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
117178
|
+
id: Scalars['ID']['output'];
|
|
117179
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
117180
|
+
node?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseUnion>;
|
|
117181
|
+
};
|
|
117182
|
+
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseUnion = GraphStoreNodeResponse;
|
|
117183
|
+
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
|
|
116888
117184
|
export type GraphStoreV2SimplifiedInferredProjectLinksEntityConnection = HasPageInfo & {
|
|
116889
117185
|
__typename?: 'GraphStoreV2SimplifiedInferredProjectLinksEntityConnection';
|
|
116890
117186
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityEdge>>>;
|
|
@@ -120820,8 +121116,56 @@ export type GrowthRecRerankCandidate = {
|
|
|
120820
121116
|
context?: InputMaybe<Scalars['JSON']['input']>;
|
|
120821
121117
|
entityId: Scalars['String']['input'];
|
|
120822
121118
|
};
|
|
121119
|
+
export type GrowthUnifiedProfileAccountCompanyRecord = {
|
|
121120
|
+
__typename?: 'GrowthUnifiedProfileAccountCompanyRecord';
|
|
121121
|
+
accountSegment?: Maybe<Scalars['String']['output']>;
|
|
121122
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
121123
|
+
addressCity?: Maybe<Scalars['String']['output']>;
|
|
121124
|
+
addressCountry?: Maybe<Scalars['String']['output']>;
|
|
121125
|
+
addressState?: Maybe<Scalars['String']['output']>;
|
|
121126
|
+
annualRevenue?: Maybe<Scalars['Float']['output']>;
|
|
121127
|
+
businessName?: Maybe<Scalars['String']['output']>;
|
|
121128
|
+
companyEnterpriseSized?: Maybe<Scalars['Boolean']['output']>;
|
|
121129
|
+
companyId: Scalars['String']['output'];
|
|
121130
|
+
companySize?: Maybe<Scalars['String']['output']>;
|
|
121131
|
+
companyType?: Maybe<Scalars['String']['output']>;
|
|
121132
|
+
countryCode?: Maybe<Scalars['String']['output']>;
|
|
121133
|
+
createdDate?: Maybe<Scalars['String']['output']>;
|
|
121134
|
+
customerAccountId?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
121135
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
121136
|
+
developersCount?: Maybe<Scalars['Int']['output']>;
|
|
121137
|
+
domain: Scalars['String']['output'];
|
|
121138
|
+
employeesRange?: Maybe<Scalars['String']['output']>;
|
|
121139
|
+
enrichmentSource?: Maybe<Scalars['String']['output']>;
|
|
121140
|
+
enterpriseAccountStatus?: Maybe<Scalars['String']['output']>;
|
|
121141
|
+
estimatedAnnualRevenue?: Maybe<Scalars['String']['output']>;
|
|
121142
|
+
industry?: Maybe<Scalars['String']['output']>;
|
|
121143
|
+
industryGroup?: Maybe<Scalars['String']['output']>;
|
|
121144
|
+
itAgentsCount?: Maybe<Scalars['Int']['output']>;
|
|
121145
|
+
knowledgeWorkersCount?: Maybe<Scalars['Int']['output']>;
|
|
121146
|
+
marketCap?: Maybe<Scalars['String']['output']>;
|
|
121147
|
+
naicsCode?: Maybe<Scalars['String']['output']>;
|
|
121148
|
+
numberOfEmployees?: Maybe<Scalars['Int']['output']>;
|
|
121149
|
+
phone?: Maybe<Scalars['String']['output']>;
|
|
121150
|
+
postalCode?: Maybe<Scalars['String']['output']>;
|
|
121151
|
+
recordNumber?: Maybe<Scalars['Int']['output']>;
|
|
121152
|
+
recordStatus?: Maybe<Scalars['String']['output']>;
|
|
121153
|
+
refreshDate?: Maybe<Scalars['String']['output']>;
|
|
121154
|
+
region?: Maybe<Scalars['String']['output']>;
|
|
121155
|
+
revenueCurrency?: Maybe<Scalars['String']['output']>;
|
|
121156
|
+
sector?: Maybe<Scalars['String']['output']>;
|
|
121157
|
+
sectorRaw?: Maybe<Scalars['String']['output']>;
|
|
121158
|
+
sicCode?: Maybe<Scalars['String']['output']>;
|
|
121159
|
+
sourceSequenceIso?: Maybe<Scalars['String']['output']>;
|
|
121160
|
+
stockTicker?: Maybe<Scalars['String']['output']>;
|
|
121161
|
+
subIndustry?: Maybe<Scalars['String']['output']>;
|
|
121162
|
+
techsUsed?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
121163
|
+
website?: Maybe<Scalars['String']['output']>;
|
|
121164
|
+
};
|
|
120823
121165
|
export type GrowthUnifiedProfileAccountProfileResult = {
|
|
120824
121166
|
__typename?: 'GrowthUnifiedProfileAccountProfileResult';
|
|
121167
|
+
companyProductUsage?: Maybe<GrowthUnifiedProfileCompanyProductUsageRecord>;
|
|
121168
|
+
companyProfile?: Maybe<GrowthUnifiedProfileAccountCompanyRecord>;
|
|
120825
121169
|
paidFeatureUsage: Array<GrowthUnifiedProfilePfuResult>;
|
|
120826
121170
|
recommendations?: Maybe<GrowthUnifiedProfileUserRecommendations>;
|
|
120827
121171
|
userProfile?: Maybe<GrowthUnifiedProfileAccountUserProfile>;
|
|
@@ -120925,6 +121269,12 @@ export type GrowthUnifiedProfileCompany = {
|
|
|
120925
121269
|
size?: Maybe<GrowthUnifiedProfileCompanySize>;
|
|
120926
121270
|
type?: Maybe<GrowthUnifiedProfileCompanyType>;
|
|
120927
121271
|
};
|
|
121272
|
+
export type GrowthUnifiedProfileCompanyProductUsageRecord = {
|
|
121273
|
+
__typename?: 'GrowthUnifiedProfileCompanyProductUsageRecord';
|
|
121274
|
+
domain: Scalars['String']['output'];
|
|
121275
|
+
productUsageAggregateMetrics?: Maybe<Array<Maybe<GrowthUnifiedProfileProductUsageMetric>>>;
|
|
121276
|
+
snapshotDay: Scalars['String']['output'];
|
|
121277
|
+
};
|
|
120928
121278
|
export type GrowthUnifiedProfileCompanyProfile = {
|
|
120929
121279
|
__typename?: 'GrowthUnifiedProfileCompanyProfile';
|
|
120930
121280
|
companyType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
@@ -121282,6 +121632,10 @@ export type GrowthUnifiedProfileMarketingUtmInput = {
|
|
|
121282
121632
|
sfdcCampaignId?: InputMaybe<Scalars['String']['input']>;
|
|
121283
121633
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
121284
121634
|
};
|
|
121635
|
+
export declare enum GrowthUnifiedProfileMetric {
|
|
121636
|
+
Mau = "MAU",
|
|
121637
|
+
MauVariation = "MAU_VARIATION"
|
|
121638
|
+
}
|
|
121285
121639
|
export type GrowthUnifiedProfileNbpUserRecommendationProduct = {
|
|
121286
121640
|
__typename?: 'GrowthUnifiedProfileNBPUserRecommendationProduct';
|
|
121287
121641
|
key: Scalars['String']['output'];
|
|
@@ -121421,6 +121775,17 @@ export type GrowthUnifiedProfileProductNbe = {
|
|
|
121421
121775
|
edition?: Maybe<GrowthUnifiedProfileProductEdition>;
|
|
121422
121776
|
recommendationDate?: Maybe<Scalars['String']['output']>;
|
|
121423
121777
|
};
|
|
121778
|
+
export type GrowthUnifiedProfileProductRecord = {
|
|
121779
|
+
__typename?: 'GrowthUnifiedProfileProductRecord';
|
|
121780
|
+
metric: GrowthUnifiedProfileMetric;
|
|
121781
|
+
platform?: Maybe<Scalars['String']['output']>;
|
|
121782
|
+
value: Scalars['Float']['output'];
|
|
121783
|
+
};
|
|
121784
|
+
export type GrowthUnifiedProfileProductUsageMetric = {
|
|
121785
|
+
__typename?: 'GrowthUnifiedProfileProductUsageMetric';
|
|
121786
|
+
metrics?: Maybe<Array<Maybe<GrowthUnifiedProfileProductRecord>>>;
|
|
121787
|
+
product: Scalars['String']['output'];
|
|
121788
|
+
};
|
|
121424
121789
|
export type GrowthUnifiedProfileResult = {
|
|
121425
121790
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
121426
121791
|
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
@@ -128070,6 +128435,22 @@ export type JiraBacklogViewGlobalConfig = {
|
|
|
128070
128435
|
export type JiraBacklogViewInput = {
|
|
128071
128436
|
jiraBacklogViewQueryInput: JiraBacklogViewQueryInput;
|
|
128072
128437
|
};
|
|
128438
|
+
export type JiraBacklogViewIssueListCardList = JiraBacklogViewCardList & Node & {
|
|
128439
|
+
__typename?: 'JiraBacklogViewIssueListCardList';
|
|
128440
|
+
estimationDetails?: Maybe<JiraBacklogViewEstimationDetails>;
|
|
128441
|
+
id: Scalars['ID']['output'];
|
|
128442
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
128443
|
+
};
|
|
128444
|
+
export type JiraBacklogViewIssueListCardListEstimationDetailsArgs = {
|
|
128445
|
+
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
128446
|
+
};
|
|
128447
|
+
export type JiraBacklogViewIssueListCardListIssuesArgs = {
|
|
128448
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128449
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
128450
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128451
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
128452
|
+
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
128453
|
+
};
|
|
128073
128454
|
export type JiraBacklogViewPermissions = {
|
|
128074
128455
|
__typename?: 'JiraBacklogViewPermissions';
|
|
128075
128456
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -133102,6 +133483,29 @@ export type JiraField = {
|
|
|
133102
133483
|
typeKey?: Maybe<Scalars['String']['output']>;
|
|
133103
133484
|
typeName?: Maybe<Scalars['String']['output']>;
|
|
133104
133485
|
};
|
|
133486
|
+
export type JiraFieldActionFieldResult = {
|
|
133487
|
+
__typename?: 'JiraFieldActionFieldResult';
|
|
133488
|
+
errorCode?: Maybe<Scalars['String']['output']>;
|
|
133489
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
133490
|
+
fieldId: Scalars['String']['output'];
|
|
133491
|
+
status: JiraFieldSuggestionStatus;
|
|
133492
|
+
};
|
|
133493
|
+
export type JiraFieldActionInput = {
|
|
133494
|
+
agentSource: Scalars['String']['input'];
|
|
133495
|
+
fieldId: Scalars['String']['input'];
|
|
133496
|
+
fieldValue?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
133497
|
+
routingContext?: InputMaybe<Scalars['String']['input']>;
|
|
133498
|
+
};
|
|
133499
|
+
export type JiraFieldActionResult = {
|
|
133500
|
+
__typename?: 'JiraFieldActionResult';
|
|
133501
|
+
fieldResults: Array<JiraFieldActionFieldResult>;
|
|
133502
|
+
status: JiraFieldActionStatus;
|
|
133503
|
+
};
|
|
133504
|
+
export declare enum JiraFieldActionStatus {
|
|
133505
|
+
Error = "ERROR",
|
|
133506
|
+
PartialSuccess = "PARTIAL_SUCCESS",
|
|
133507
|
+
Success = "SUCCESS"
|
|
133508
|
+
}
|
|
133105
133509
|
export type JiraFieldAggregationByBoardQuery = {
|
|
133106
133510
|
boardId: Scalars['Long']['input'];
|
|
133107
133511
|
cloudId: Scalars['ID']['input'];
|
|
@@ -133621,6 +134025,17 @@ export declare enum JiraFieldStatusType {
|
|
|
133621
134025
|
Active = "ACTIVE",
|
|
133622
134026
|
Trashed = "TRASHED"
|
|
133623
134027
|
}
|
|
134028
|
+
export declare enum JiraFieldSuggestionAction {
|
|
134029
|
+
Accept = "ACCEPT",
|
|
134030
|
+
Decline = "DECLINE"
|
|
134031
|
+
}
|
|
134032
|
+
export declare enum JiraFieldSuggestionStatus {
|
|
134033
|
+
Error = "ERROR",
|
|
134034
|
+
FieldValidationError = "FIELD_VALIDATION_ERROR",
|
|
134035
|
+
PermissionDenied = "PERMISSION_DENIED",
|
|
134036
|
+
StaleSuggestion = "STALE_SUGGESTION",
|
|
134037
|
+
Success = "SUCCESS"
|
|
134038
|
+
}
|
|
133624
134039
|
export type JiraFieldToFieldConfigSchemeAssociationsInput = {
|
|
133625
134040
|
fieldId: Scalars['ID']['input'];
|
|
133626
134041
|
schemeIdsToAdd: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
@@ -140564,6 +140979,7 @@ export type JiraMultipleVersionPickerFieldPayload = Payload & {
|
|
|
140564
140979
|
};
|
|
140565
140980
|
export type JiraMutation = {
|
|
140566
140981
|
__typename?: 'JiraMutation';
|
|
140982
|
+
actionFieldSuggestions?: Maybe<JiraFieldActionResult>;
|
|
140567
140983
|
activitySortOrder?: Maybe<JiraActivitySortOrderPayload>;
|
|
140568
140984
|
activitySortPreference?: Maybe<JiraActivitySortPreferencePayload>;
|
|
140569
140985
|
addAttachment?: Maybe<JiraAddAttachmentPayload>;
|
|
@@ -140830,6 +141246,12 @@ export type JiraMutation = {
|
|
|
140830
141246
|
updateWorklog?: Maybe<JiraWorklogPayload>;
|
|
140831
141247
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
140832
141248
|
};
|
|
141249
|
+
export type JiraMutationActionFieldSuggestionsArgs = {
|
|
141250
|
+
action: JiraFieldSuggestionAction;
|
|
141251
|
+
cloudId: Scalars['ID']['input'];
|
|
141252
|
+
fields: Array<JiraFieldActionInput>;
|
|
141253
|
+
issueId: Scalars['ID']['input'];
|
|
141254
|
+
};
|
|
140833
141255
|
export type JiraMutationActivitySortOrderArgs = {
|
|
140834
141256
|
cloudId: Scalars['ID']['input'];
|
|
140835
141257
|
orderBy: JiraIssueViewActivityFeedSortOrder;
|
|
@@ -141850,6 +142272,7 @@ export declare enum JiraNextActionInteractionType {
|
|
|
141850
142272
|
Interactive = "INTERACTIVE"
|
|
141851
142273
|
}
|
|
141852
142274
|
export declare enum JiraNotificationCategoryType {
|
|
142275
|
+
AgentStateChanged = "AGENT_STATE_CHANGED",
|
|
141853
142276
|
CommentChanges = "COMMENT_CHANGES",
|
|
141854
142277
|
IssueAssigned = "ISSUE_ASSIGNED",
|
|
141855
142278
|
IssueChanges = "ISSUE_CHANGES",
|
|
@@ -141907,6 +142330,8 @@ export type JiraNotificationPreferenceInput = {
|
|
|
141907
142330
|
};
|
|
141908
142331
|
export type JiraNotificationPreferences = {
|
|
141909
142332
|
__typename?: 'JiraNotificationPreferences';
|
|
142333
|
+
agentInputRequiredNotification?: Maybe<JiraNotificationPreference>;
|
|
142334
|
+
agentWorkCompletedNotification?: Maybe<JiraNotificationPreference>;
|
|
141910
142335
|
commentCreated?: Maybe<JiraNotificationPreference>;
|
|
141911
142336
|
commentDeleted?: Maybe<JiraNotificationPreference>;
|
|
141912
142337
|
commentEdited?: Maybe<JiraNotificationPreference>;
|
|
@@ -141937,6 +142362,8 @@ export type JiraNotificationProjectPreferences = {
|
|
|
141937
142362
|
project?: Maybe<JiraProject>;
|
|
141938
142363
|
};
|
|
141939
142364
|
export declare enum JiraNotificationType {
|
|
142365
|
+
AgentInputRequiredNotification = "AGENT_INPUT_REQUIRED_NOTIFICATION",
|
|
142366
|
+
AgentWorkCompletedNotification = "AGENT_WORK_COMPLETED_NOTIFICATION",
|
|
141940
142367
|
CommentCreated = "COMMENT_CREATED",
|
|
141941
142368
|
CommentDeleted = "COMMENT_DELETED",
|
|
141942
142369
|
CommentEdited = "COMMENT_EDITED",
|
|
@@ -149703,11 +150130,15 @@ export declare enum JiraServiceManagementSlaCalendarKind {
|
|
|
149703
150130
|
export type JiraServiceManagementSlaCompleteGoal = {
|
|
149704
150131
|
__typename?: 'JiraServiceManagementSlaCompleteGoal';
|
|
149705
150132
|
breachTime?: Maybe<Scalars['String']['output']>;
|
|
150133
|
+
breachTimeInEpochMillis?: Maybe<Scalars['Long']['output']>;
|
|
149706
150134
|
failed?: Maybe<Scalars['Boolean']['output']>;
|
|
149707
150135
|
goalTime?: Maybe<Scalars['String']['output']>;
|
|
150136
|
+
goalTimeLong?: Maybe<Scalars['String']['output']>;
|
|
149708
150137
|
remainingTime?: Maybe<Scalars['String']['output']>;
|
|
150138
|
+
remainingTimeLong?: Maybe<Scalars['String']['output']>;
|
|
149709
150139
|
startTime?: Maybe<Scalars['String']['output']>;
|
|
149710
150140
|
stopTime?: Maybe<Scalars['String']['output']>;
|
|
150141
|
+
stopTimeInEpochMillis?: Maybe<Scalars['Long']['output']>;
|
|
149711
150142
|
};
|
|
149712
150143
|
export type JiraServiceManagementSlaCompletedCycle = {
|
|
149713
150144
|
__typename?: 'JiraServiceManagementSlaCompletedCycle';
|
|
@@ -149785,6 +150216,7 @@ export type JiraServiceManagementSlaGoalDetailedView = {
|
|
|
149785
150216
|
__typename?: 'JiraServiceManagementSlaGoalDetailedView';
|
|
149786
150217
|
active?: Maybe<Scalars['Boolean']['output']>;
|
|
149787
150218
|
breachTime?: Maybe<Scalars['String']['output']>;
|
|
150219
|
+
breachTimeInEpochMillis?: Maybe<Scalars['Long']['output']>;
|
|
149788
150220
|
calendarName?: Maybe<Scalars['String']['output']>;
|
|
149789
150221
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
149790
150222
|
completeGoals?: Maybe<Array<JiraServiceManagementSlaCompleteGoal>>;
|
|
@@ -149802,6 +150234,7 @@ export type JiraServiceManagementSlaGoalDetailedView = {
|
|
|
149802
150234
|
slaDisplayFormat?: Maybe<Scalars['String']['output']>;
|
|
149803
150235
|
startTime?: Maybe<Scalars['String']['output']>;
|
|
149804
150236
|
stopTime?: Maybe<Scalars['String']['output']>;
|
|
150237
|
+
stopTimeInEpochMillis?: Maybe<Scalars['Long']['output']>;
|
|
149805
150238
|
};
|
|
149806
150239
|
export type JiraServiceManagementSlaGoalView = {
|
|
149807
150240
|
__typename?: 'JiraServiceManagementSlaGoalView';
|
|
@@ -155651,6 +156084,7 @@ export type JpdView = {
|
|
|
155651
156084
|
emoji?: Maybe<Scalars['String']['output']>;
|
|
155652
156085
|
globalViewId?: Maybe<Scalars['ID']['output']>;
|
|
155653
156086
|
id: Scalars['ID']['output'];
|
|
156087
|
+
legacyId?: Maybe<Scalars['ID']['output']>;
|
|
155654
156088
|
name: Scalars['String']['output'];
|
|
155655
156089
|
ownerAaid?: Maybe<Scalars['String']['output']>;
|
|
155656
156090
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -156666,6 +157100,15 @@ export type JsmChannelsCustomPlanNodeAttribute = {
|
|
|
156666
157100
|
key: Scalars['String']['output'];
|
|
156667
157101
|
value: Scalars['String']['output'];
|
|
156668
157102
|
};
|
|
157103
|
+
export type JsmChannelsDegradedMode = {
|
|
157104
|
+
__typename?: 'JsmChannelsDegradedMode';
|
|
157105
|
+
creditsResetAt?: Maybe<Scalars['Date']['output']>;
|
|
157106
|
+
status: JsmChannelsDegradedModeStatus;
|
|
157107
|
+
};
|
|
157108
|
+
export declare enum JsmChannelsDegradedModeStatus {
|
|
157109
|
+
CreditsExhausted = "CREDITS_EXHAUSTED",
|
|
157110
|
+
Normal = "NORMAL"
|
|
157111
|
+
}
|
|
156669
157112
|
export type JsmChannelsEnabledRovoServiceToolsConfiguration = {
|
|
156670
157113
|
__typename?: 'JsmChannelsEnabledRovoServiceToolsConfiguration';
|
|
156671
157114
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -157196,6 +157639,7 @@ export type JsmChannelsTaskAgentsResult = JsmChannelsTaskAgentsQueryPayload | Qu
|
|
|
157196
157639
|
export type JsmChannelsTicketServiceAgentResolutionState = {
|
|
157197
157640
|
__typename?: 'JsmChannelsTicketServiceAgentResolutionState';
|
|
157198
157641
|
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
157642
|
+
degradedMode: JsmChannelsDegradedMode;
|
|
157199
157643
|
isLoading: Scalars['Boolean']['output'];
|
|
157200
157644
|
message?: Maybe<Scalars['String']['output']>;
|
|
157201
157645
|
plan?: Maybe<JsmChannelsServiceAgentResolutionPlan>;
|
|
@@ -159202,6 +159646,17 @@ export type KeyValueHierarchyMap = {
|
|
|
159202
159646
|
key?: Maybe<Scalars['String']['output']>;
|
|
159203
159647
|
value?: Maybe<Scalars['String']['output']>;
|
|
159204
159648
|
};
|
|
159649
|
+
export type KitsuneBackfillAutoTaggingInput = {
|
|
159650
|
+
fieldId: Scalars['ID']['input'];
|
|
159651
|
+
searchInput?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
159652
|
+
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
159653
|
+
};
|
|
159654
|
+
export type KitsuneBackfillAutoTaggingPayload = Payload & {
|
|
159655
|
+
__typename?: 'KitsuneBackfillAutoTaggingPayload';
|
|
159656
|
+
errors?: Maybe<Array<MutationError>>;
|
|
159657
|
+
job?: Maybe<KitsuneJob>;
|
|
159658
|
+
success: Scalars['Boolean']['output'];
|
|
159659
|
+
};
|
|
159205
159660
|
export type KitsuneBooleanValue = {
|
|
159206
159661
|
__typename?: 'KitsuneBooleanValue';
|
|
159207
159662
|
_id: Scalars['ID']['output'];
|
|
@@ -160696,6 +161151,7 @@ export type KnowledgeBaseDataSourceStatusList = {
|
|
|
160696
161151
|
entries: Array<KnowledgeBaseDataSourceStatusEntry>;
|
|
160697
161152
|
};
|
|
160698
161153
|
export type KnowledgeBaseDataSourceStatusResponse = KnowledgeBaseDataSourceStatusList | QueryError;
|
|
161154
|
+
export type KnowledgeBaseDataSourceSyncStatusResponse = KnowledgeBaseSyncCompleted | KnowledgeBaseSyncInProgress | QueryError;
|
|
160699
161155
|
export declare enum KnowledgeBaseDataSourceType {
|
|
160700
161156
|
Confluence = "CONFLUENCE",
|
|
160701
161157
|
GoogleDrive = "GOOGLE_DRIVE",
|
|
@@ -160832,11 +161288,30 @@ export type KnowledgeBaseNotAvailableThirdPartyDataSource = {
|
|
|
160832
161288
|
__typename?: 'KnowledgeBaseNotAvailableThirdPartyDataSource';
|
|
160833
161289
|
notAvailableMarker?: Maybe<Scalars['Boolean']['output']>;
|
|
160834
161290
|
};
|
|
161291
|
+
export type KnowledgeBaseOrgAdmin = {
|
|
161292
|
+
__typename?: 'KnowledgeBaseOrgAdmin';
|
|
161293
|
+
isOrgAdmin: Scalars['Boolean']['output'];
|
|
161294
|
+
};
|
|
161295
|
+
export type KnowledgeBaseOrgAdminResponse = KnowledgeBaseOrgAdmin | QueryError;
|
|
160835
161296
|
export type KnowledgeBasePermissionUpdateRequest = {
|
|
160836
161297
|
sourceARI?: InputMaybe<Scalars['ID']['input']>;
|
|
160837
161298
|
sourceVisibility?: InputMaybe<Scalars['String']['input']>;
|
|
160838
161299
|
viewPermission?: InputMaybe<Scalars['String']['input']>;
|
|
160839
161300
|
};
|
|
161301
|
+
export type KnowledgeBasePermissions = {
|
|
161302
|
+
__typename?: 'KnowledgeBasePermissions';
|
|
161303
|
+
isOrgAdmin?: Maybe<KnowledgeBaseOrgAdminResponse>;
|
|
161304
|
+
isProjectAdmin?: Maybe<KnowledgeBaseProjectAdminResponse>;
|
|
161305
|
+
};
|
|
161306
|
+
export type KnowledgeBasePermissionsIsProjectAdminArgs = {
|
|
161307
|
+
projectId: Scalars['ID']['input'];
|
|
161308
|
+
};
|
|
161309
|
+
export type KnowledgeBasePermissionsResponse = KnowledgeBasePermissions | QueryError;
|
|
161310
|
+
export type KnowledgeBaseProjectAdmin = {
|
|
161311
|
+
__typename?: 'KnowledgeBaseProjectAdmin';
|
|
161312
|
+
isProjectAdmin: Scalars['Boolean']['output'];
|
|
161313
|
+
};
|
|
161314
|
+
export type KnowledgeBaseProjectAdminResponse = KnowledgeBaseProjectAdmin | QueryError;
|
|
160840
161315
|
export type KnowledgeBaseQueryApi = {
|
|
160841
161316
|
__typename?: 'KnowledgeBaseQueryApi';
|
|
160842
161317
|
knowledgeBase?: Maybe<KnowledgeBaseResponse>;
|
|
@@ -160969,6 +161444,19 @@ export type KnowledgeBaseSuggestionFilters = {
|
|
|
160969
161444
|
sourceType?: InputMaybe<Scalars['String']['input']>;
|
|
160970
161445
|
sourceVisibility?: InputMaybe<Scalars['String']['input']>;
|
|
160971
161446
|
};
|
|
161447
|
+
export type KnowledgeBaseSyncCompleted = {
|
|
161448
|
+
__typename?: 'KnowledgeBaseSyncCompleted';
|
|
161449
|
+
isFullSyncCompleted: Scalars['Boolean']['output'];
|
|
161450
|
+
};
|
|
161451
|
+
export type KnowledgeBaseSyncInProgress = {
|
|
161452
|
+
__typename?: 'KnowledgeBaseSyncInProgress';
|
|
161453
|
+
progress: KnowledgeBaseSyncProgress;
|
|
161454
|
+
};
|
|
161455
|
+
export type KnowledgeBaseSyncProgress = {
|
|
161456
|
+
__typename?: 'KnowledgeBaseSyncProgress';
|
|
161457
|
+
completed: Scalars['Int']['output'];
|
|
161458
|
+
total: Scalars['Int']['output'];
|
|
161459
|
+
};
|
|
160972
161460
|
export type KnowledgeBaseThirdPartyArticle = {
|
|
160973
161461
|
__typename?: 'KnowledgeBaseThirdPartyArticle';
|
|
160974
161462
|
id: Scalars['ID']['output'];
|
|
@@ -164246,6 +164734,23 @@ export type MarketplaceConsoleCreatePrivateAppVersionMutationResponse = {
|
|
|
164246
164734
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
164247
164735
|
success: Scalars['Boolean']['output'];
|
|
164248
164736
|
};
|
|
164737
|
+
export type MarketplaceConsoleCreatePrivateOfferInput = {
|
|
164738
|
+
billingCycle: Scalars['String']['input'];
|
|
164739
|
+
currency: Scalars['String']['input'];
|
|
164740
|
+
customerOrgId: Scalars['ID']['input'];
|
|
164741
|
+
developerId: Scalars['ID']['input'];
|
|
164742
|
+
discountType: MarketplaceConsolePrivateOfferDiscountType;
|
|
164743
|
+
discountValue?: InputMaybe<Scalars['Int']['input']>;
|
|
164744
|
+
edition: Scalars['String']['input'];
|
|
164745
|
+
expiryDate: Scalars['String']['input'];
|
|
164746
|
+
hostingType: Scalars['String']['input'];
|
|
164747
|
+
listPriceCents?: InputMaybe<Scalars['Int']['input']>;
|
|
164748
|
+
productId: Scalars['ID']['input'];
|
|
164749
|
+
quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
164750
|
+
requestId?: InputMaybe<Scalars['ID']['input']>;
|
|
164751
|
+
siteId?: InputMaybe<Scalars['ID']['input']>;
|
|
164752
|
+
termMonths?: InputMaybe<Scalars['Int']['input']>;
|
|
164753
|
+
};
|
|
164249
164754
|
export type MarketplaceConsoleCreateVersionAssetsInput = {
|
|
164250
164755
|
highlights?: InputMaybe<Array<MarketplaceConsoleHighlightAssetInput>>;
|
|
164251
164756
|
screenshots?: InputMaybe<Array<MarketplaceConsoleImageAssetInput>>;
|
|
@@ -164912,10 +165417,12 @@ export type MarketplaceConsoleMutationApi = {
|
|
|
164912
165417
|
createMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
164913
165418
|
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
|
|
164914
165419
|
createPrivateAppWithVersion?: Maybe<MarketplaceConsoleCreatePrivateAppMutationOutput>;
|
|
165420
|
+
createPrivateOffer?: Maybe<MarketplaceConsolePrivateOffer>;
|
|
164915
165421
|
deleteApp?: Maybe<MarketplaceConsoleProductLifecycleJobResponse>;
|
|
164916
165422
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
164917
165423
|
deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
|
|
164918
165424
|
deleteMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
165425
|
+
deletePrivateOffer?: Maybe<Scalars['Boolean']['output']>;
|
|
164919
165426
|
editAppVersion?: Maybe<MarketplaceConsoleEditVersionMutationResponse>;
|
|
164920
165427
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
164921
165428
|
makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
|
|
@@ -164924,6 +165431,7 @@ export type MarketplaceConsoleMutationApi = {
|
|
|
164924
165431
|
refreshAppPublishWizardScreen?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
164925
165432
|
regenerateAppPublishWizardField?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
164926
165433
|
restartAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardReadinessResponse>;
|
|
165434
|
+
sharePrivateOffer?: Maybe<MarketplaceConsolePrivateOffer>;
|
|
164927
165435
|
startAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
164928
165436
|
submitAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardReadinessResponse>;
|
|
164929
165437
|
subscribeToDeveloperNewsletter: MarketplaceConsoleDeveloperNewsletterSubscribeResponse;
|
|
@@ -164932,12 +165440,14 @@ export type MarketplaceConsoleMutationApi = {
|
|
|
164932
165440
|
updateAppPublishWizardField?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
164933
165441
|
updateMakerAccountAndMakerListing?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
164934
165442
|
updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
165443
|
+
updatePrivateOffer?: Maybe<MarketplaceConsolePrivateOffer>;
|
|
164935
165444
|
updateProductListingApprovalStatus: MarketplaceConsoleUpdateProductListingApprovalStatusResponse;
|
|
164936
165445
|
updateProductListingReleaseStatus: MarketplaceConsoleUpdateProductListingReleaseStatusResponse;
|
|
164937
165446
|
updateVersionListingApprovalStatus: MarketplaceConsoleUpdateVersionListingApprovalStatusResponse;
|
|
164938
165447
|
upsertMakerPaymentDetails?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
164939
165448
|
upsertProgramEnrollment?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
164940
165449
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
165450
|
+
withdrawPrivateOffer?: Maybe<MarketplaceConsolePrivateOffer>;
|
|
164941
165451
|
};
|
|
164942
165452
|
export type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
164943
165453
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
@@ -164978,6 +165488,9 @@ export type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
|
164978
165488
|
export type MarketplaceConsoleMutationApiCreatePrivateAppWithVersionArgs = {
|
|
164979
165489
|
app: MarketplaceConsoleAppInput;
|
|
164980
165490
|
};
|
|
165491
|
+
export type MarketplaceConsoleMutationApiCreatePrivateOfferArgs = {
|
|
165492
|
+
input: MarketplaceConsoleCreatePrivateOfferInput;
|
|
165493
|
+
};
|
|
164981
165494
|
export type MarketplaceConsoleMutationApiDeleteAppArgs = {
|
|
164982
165495
|
deleteAppRequest: MarketplaceConsoleDeleteAppRequest;
|
|
164983
165496
|
};
|
|
@@ -164991,6 +165504,9 @@ export type MarketplaceConsoleMutationApiDeleteAppVersionArgs = {
|
|
|
164991
165504
|
export type MarketplaceConsoleMutationApiDeleteMakerContactArgs = {
|
|
164992
165505
|
input: MarketplaceConsoleMakerContactDeleteInput;
|
|
164993
165506
|
};
|
|
165507
|
+
export type MarketplaceConsoleMutationApiDeletePrivateOfferArgs = {
|
|
165508
|
+
offerId: Scalars['ID']['input'];
|
|
165509
|
+
};
|
|
164994
165510
|
export type MarketplaceConsoleMutationApiEditAppVersionArgs = {
|
|
164995
165511
|
editAppVersionRequest: MarketplaceConsoleEditAppVersionRequest;
|
|
164996
165512
|
};
|
|
@@ -165024,6 +165540,9 @@ export type MarketplaceConsoleMutationApiRestartAppPublishWizardSessionArgs = {
|
|
|
165024
165540
|
appSoftwareId: Scalars['ID']['input'];
|
|
165025
165541
|
submissionId: Scalars['ID']['input'];
|
|
165026
165542
|
};
|
|
165543
|
+
export type MarketplaceConsoleMutationApiSharePrivateOfferArgs = {
|
|
165544
|
+
offerId: Scalars['ID']['input'];
|
|
165545
|
+
};
|
|
165027
165546
|
export type MarketplaceConsoleMutationApiStartAppPublishWizardSessionArgs = {
|
|
165028
165547
|
appSoftwareId: Scalars['ID']['input'];
|
|
165029
165548
|
input: MarketplaceConsoleStartAppPublishWizardInput;
|
|
@@ -165051,6 +165570,9 @@ export type MarketplaceConsoleMutationApiUpdateMakerAccountAndMakerListingArgs =
|
|
|
165051
165570
|
export type MarketplaceConsoleMutationApiUpdateMakerContactArgs = {
|
|
165052
165571
|
input: MarketplaceConsoleMakerContactUpdateInput;
|
|
165053
165572
|
};
|
|
165573
|
+
export type MarketplaceConsoleMutationApiUpdatePrivateOfferArgs = {
|
|
165574
|
+
input: MarketplaceConsoleUpdatePrivateOfferInput;
|
|
165575
|
+
};
|
|
165054
165576
|
export type MarketplaceConsoleMutationApiUpdateProductListingApprovalStatusArgs = {
|
|
165055
165577
|
input: MarketplaceConsoleUpdateProductListingApprovalStatusInput;
|
|
165056
165578
|
};
|
|
@@ -165069,6 +165591,9 @@ export type MarketplaceConsoleMutationApiUpsertProgramEnrollmentArgs = {
|
|
|
165069
165591
|
export type MarketplaceConsoleMutationApiValidateArtifactUrlArgs = {
|
|
165070
165592
|
url: Scalars['String']['input'];
|
|
165071
165593
|
};
|
|
165594
|
+
export type MarketplaceConsoleMutationApiWithdrawPrivateOfferArgs = {
|
|
165595
|
+
offerId: Scalars['ID']['input'];
|
|
165596
|
+
};
|
|
165072
165597
|
export type MarketplaceConsoleMutationPartialSuccessResponse = {
|
|
165073
165598
|
__typename?: 'MarketplaceConsoleMutationPartialSuccessResponse';
|
|
165074
165599
|
developerId: Scalars['ID']['output'];
|
|
@@ -165261,6 +165786,52 @@ export type MarketplaceConsolePrivateListingsTokens = {
|
|
|
165261
165786
|
latestConnectVersion?: Maybe<MarketplaceConsoleLatestConnectVersion>;
|
|
165262
165787
|
tokens: Array<Maybe<MarketplaceConsoleTokenDetails>>;
|
|
165263
165788
|
};
|
|
165789
|
+
export type MarketplaceConsolePrivateOffer = {
|
|
165790
|
+
__typename?: 'MarketplaceConsolePrivateOffer';
|
|
165791
|
+
acceptedAt?: Maybe<Scalars['String']['output']>;
|
|
165792
|
+
actorAccountId: Scalars['String']['output'];
|
|
165793
|
+
assignedDeveloperUserId?: Maybe<Scalars['String']['output']>;
|
|
165794
|
+
billingCycle: Scalars['String']['output'];
|
|
165795
|
+
commerceCorrelationId?: Maybe<Scalars['String']['output']>;
|
|
165796
|
+
createdAt: Scalars['String']['output'];
|
|
165797
|
+
currency: Scalars['String']['output'];
|
|
165798
|
+
customerOrgId: Scalars['ID']['output'];
|
|
165799
|
+
developerId: Scalars['ID']['output'];
|
|
165800
|
+
discountType: MarketplaceConsolePrivateOfferDiscountType;
|
|
165801
|
+
discountValue?: Maybe<Scalars['Int']['output']>;
|
|
165802
|
+
edition: Scalars['String']['output'];
|
|
165803
|
+
expiryDate: Scalars['String']['output'];
|
|
165804
|
+
hostingType: Scalars['String']['output'];
|
|
165805
|
+
latest: Scalars['Int']['output'];
|
|
165806
|
+
legalTermsArtifact?: Maybe<Scalars['String']['output']>;
|
|
165807
|
+
listPriceCents?: Maybe<Scalars['Int']['output']>;
|
|
165808
|
+
offerId: Scalars['ID']['output'];
|
|
165809
|
+
productId: Scalars['ID']['output'];
|
|
165810
|
+
quantity?: Maybe<Scalars['Int']['output']>;
|
|
165811
|
+
requestId?: Maybe<Scalars['ID']['output']>;
|
|
165812
|
+
siteId?: Maybe<Scalars['ID']['output']>;
|
|
165813
|
+
status: MarketplaceConsolePrivateOfferStatus;
|
|
165814
|
+
termMonths?: Maybe<Scalars['Int']['output']>;
|
|
165815
|
+
updatedAt: Scalars['String']['output'];
|
|
165816
|
+
version: Scalars['Int']['output'];
|
|
165817
|
+
viewedAt?: Maybe<Scalars['String']['output']>;
|
|
165818
|
+
viewedByAccountId?: Maybe<Scalars['String']['output']>;
|
|
165819
|
+
withdrawReason?: Maybe<Scalars['String']['output']>;
|
|
165820
|
+
};
|
|
165821
|
+
export declare enum MarketplaceConsolePrivateOfferDiscountType {
|
|
165822
|
+
FixedAmount = "FIXED_AMOUNT",
|
|
165823
|
+
Percentage = "PERCENTAGE"
|
|
165824
|
+
}
|
|
165825
|
+
export declare enum MarketplaceConsolePrivateOfferStatus {
|
|
165826
|
+
Accepted = "ACCEPTED",
|
|
165827
|
+
Completed = "COMPLETED",
|
|
165828
|
+
Draft = "DRAFT",
|
|
165829
|
+
Expired = "EXPIRED",
|
|
165830
|
+
InProcess = "IN_PROCESS",
|
|
165831
|
+
Shared = "SHARED",
|
|
165832
|
+
Viewed = "VIEWED",
|
|
165833
|
+
Withdrawn = "WITHDRAWN"
|
|
165834
|
+
}
|
|
165264
165835
|
export type MarketplaceConsoleProduct = {
|
|
165265
165836
|
__typename?: 'MarketplaceConsoleProduct';
|
|
165266
165837
|
appKey: Scalars['ID']['output'];
|
|
@@ -165494,6 +166065,8 @@ export type MarketplaceConsoleQueryApi = {
|
|
|
165494
166065
|
offerings?: Maybe<Array<Maybe<MarketplaceConsoleOffering>>>;
|
|
165495
166066
|
parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
|
|
165496
166067
|
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
166068
|
+
privateOffer?: Maybe<MarketplaceConsolePrivateOffer>;
|
|
166069
|
+
privateOffers?: Maybe<Array<MarketplaceConsolePrivateOffer>>;
|
|
165497
166070
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
165498
166071
|
productLifecycleJobs?: Maybe<Array<MarketplaceConsoleProductLifecycleJob>>;
|
|
165499
166072
|
productListingAdditionalChecks?: Maybe<MarketplaceConsoleProductListingAdditionalChecks>;
|
|
@@ -165597,6 +166170,15 @@ export type MarketplaceConsoleQueryApiOfferingsArgs = {
|
|
|
165597
166170
|
export type MarketplaceConsoleQueryApiParentProductPricingArgs = {
|
|
165598
166171
|
product: MarketplaceConsoleParentSoftwarePricingQueryInput;
|
|
165599
166172
|
};
|
|
166173
|
+
export type MarketplaceConsoleQueryApiPrivateOfferArgs = {
|
|
166174
|
+
offerId: Scalars['ID']['input'];
|
|
166175
|
+
};
|
|
166176
|
+
export type MarketplaceConsoleQueryApiPrivateOffersArgs = {
|
|
166177
|
+
customerOrgId?: InputMaybe<Scalars['ID']['input']>;
|
|
166178
|
+
developerId: Scalars['ID']['input'];
|
|
166179
|
+
productId?: InputMaybe<Scalars['ID']['input']>;
|
|
166180
|
+
status?: InputMaybe<MarketplaceConsolePrivateOfferStatus>;
|
|
166181
|
+
};
|
|
165600
166182
|
export type MarketplaceConsoleQueryApiProductArgs = {
|
|
165601
166183
|
appKey: Scalars['ID']['input'];
|
|
165602
166184
|
productId: Scalars['ID']['input'];
|
|
@@ -165756,6 +166338,25 @@ export type MarketplaceConsoleUpdateMakerListingInput = {
|
|
|
165756
166338
|
developerSpaceListing: MarketplaceConsoleDevSpaceListingInput;
|
|
165757
166339
|
makerName: Scalars['String']['input'];
|
|
165758
166340
|
};
|
|
166341
|
+
export type MarketplaceConsoleUpdatePrivateOfferInput = {
|
|
166342
|
+
billingCycle: Scalars['String']['input'];
|
|
166343
|
+
currency: Scalars['String']['input'];
|
|
166344
|
+
customerOrgId: Scalars['ID']['input'];
|
|
166345
|
+
developerId: Scalars['ID']['input'];
|
|
166346
|
+
discountType: MarketplaceConsolePrivateOfferDiscountType;
|
|
166347
|
+
discountValue?: InputMaybe<Scalars['Int']['input']>;
|
|
166348
|
+
edition: Scalars['String']['input'];
|
|
166349
|
+
expiryDate: Scalars['String']['input'];
|
|
166350
|
+
hostingType: Scalars['String']['input'];
|
|
166351
|
+
listPriceCents?: InputMaybe<Scalars['Int']['input']>;
|
|
166352
|
+
offerId: Scalars['ID']['input'];
|
|
166353
|
+
productId: Scalars['ID']['input'];
|
|
166354
|
+
quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
166355
|
+
requestId?: InputMaybe<Scalars['ID']['input']>;
|
|
166356
|
+
siteId?: InputMaybe<Scalars['ID']['input']>;
|
|
166357
|
+
termMonths?: InputMaybe<Scalars['Int']['input']>;
|
|
166358
|
+
version: Scalars['Int']['input'];
|
|
166359
|
+
};
|
|
165759
166360
|
export type MarketplaceConsoleUpdateProductListingApprovalStatusInput = {
|
|
165760
166361
|
productId: Scalars['ID']['input'];
|
|
165761
166362
|
reason?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -167672,6 +168273,11 @@ export type MarketplaceStoreReviewNodeWithProductListing = MarketplaceStoreAppRe
|
|
|
167672
168273
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
167673
168274
|
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
167674
168275
|
};
|
|
168276
|
+
export type MarketplaceStoreReviewRatingCount = {
|
|
168277
|
+
__typename?: 'MarketplaceStoreReviewRatingCount';
|
|
168278
|
+
count: Scalars['Int']['output'];
|
|
168279
|
+
rating: Scalars['Int']['output'];
|
|
168280
|
+
};
|
|
167675
168281
|
export type MarketplaceStoreReviewSummaryContent = {
|
|
167676
168282
|
__typename?: 'MarketplaceStoreReviewSummaryContent';
|
|
167677
168283
|
overallFeedback: Scalars['String']['output'];
|
|
@@ -167689,6 +168295,7 @@ export type MarketplaceStoreReviewsByUserResponse = {
|
|
|
167689
168295
|
export type MarketplaceStoreReviewsResponse = {
|
|
167690
168296
|
__typename?: 'MarketplaceStoreReviewsResponse';
|
|
167691
168297
|
averageStars: Scalars['Float']['output'];
|
|
168298
|
+
countPerRating?: Maybe<Array<MarketplaceStoreReviewRatingCount>>;
|
|
167692
168299
|
id: Scalars['ID']['output'];
|
|
167693
168300
|
reviews: Array<Maybe<MarketplaceStoreReviewNode>>;
|
|
167694
168301
|
totalCount: Scalars['Int']['output'];
|
|
@@ -168405,6 +169012,9 @@ export type MercuryAsk = Node & {
|
|
|
168405
169012
|
owner?: Maybe<User>;
|
|
168406
169013
|
ownerId?: Maybe<Scalars['ID']['output']>;
|
|
168407
169014
|
priority: MercuryAskPriority;
|
|
169015
|
+
promoted?: Maybe<Scalars['Boolean']['output']>;
|
|
169016
|
+
promotedItem?: Maybe<MercuryAskPromotedItem>;
|
|
169017
|
+
promotedItemId?: Maybe<Scalars['ID']['output']>;
|
|
168408
169018
|
proposedBy?: Maybe<User>;
|
|
168409
169019
|
proposedDate?: Maybe<MercuryAskTargetDate>;
|
|
168410
169020
|
receivingOrganization?: Maybe<MercuryOrganization>;
|
|
@@ -168740,6 +169350,7 @@ export declare enum MercuryAskPriority {
|
|
|
168740
169350
|
Low = "LOW",
|
|
168741
169351
|
Medium = "MEDIUM"
|
|
168742
169352
|
}
|
|
169353
|
+
export type MercuryAskPromotedItem = JiraIssue | MercuryFocusArea;
|
|
168743
169354
|
export type MercuryAskResult = MercuryAsk | QueryError;
|
|
168744
169355
|
export declare enum MercuryAskStatusEnum {
|
|
168745
169356
|
Accepted = "ACCEPTED",
|
|
@@ -168912,9 +169523,14 @@ export type MercuryBaselineRevision = Node & {
|
|
|
168912
169523
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
168913
169524
|
endYearMonth: Scalars['String']['output'];
|
|
168914
169525
|
financialVersion?: Maybe<MercuryFinancialVersion>;
|
|
169526
|
+
focusAreas?: Maybe<MercuryBaselineRevisionFocusAreaConnection>;
|
|
168915
169527
|
id: Scalars['ID']['output'];
|
|
168916
169528
|
startYearMonth: Scalars['String']['output'];
|
|
168917
169529
|
};
|
|
169530
|
+
export type MercuryBaselineRevisionFocusAreasArgs = {
|
|
169531
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
169532
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
169533
|
+
};
|
|
168918
169534
|
export type MercuryBaselineRevisionConnection = {
|
|
168919
169535
|
__typename?: 'MercuryBaselineRevisionConnection';
|
|
168920
169536
|
edges?: Maybe<Array<MercuryBaselineRevisionEdge>>;
|
|
@@ -168926,6 +169542,17 @@ export type MercuryBaselineRevisionEdge = {
|
|
|
168926
169542
|
cursor: Scalars['String']['output'];
|
|
168927
169543
|
node?: Maybe<MercuryBaselineRevision>;
|
|
168928
169544
|
};
|
|
169545
|
+
export type MercuryBaselineRevisionFocusAreaConnection = {
|
|
169546
|
+
__typename?: 'MercuryBaselineRevisionFocusAreaConnection';
|
|
169547
|
+
edges?: Maybe<Array<MercuryBaselineRevisionFocusAreaEdge>>;
|
|
169548
|
+
pageInfo: PageInfo;
|
|
169549
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
169550
|
+
};
|
|
169551
|
+
export type MercuryBaselineRevisionFocusAreaEdge = {
|
|
169552
|
+
__typename?: 'MercuryBaselineRevisionFocusAreaEdge';
|
|
169553
|
+
cursor: Scalars['String']['output'];
|
|
169554
|
+
node?: Maybe<MercuryFocusArea>;
|
|
169555
|
+
};
|
|
168929
169556
|
export type MercuryBenefitItem = Node & {
|
|
168930
169557
|
__typename?: 'MercuryBenefitItem';
|
|
168931
169558
|
benefitItemSummary?: Maybe<MercuryBenefitItemSummary>;
|
|
@@ -170958,12 +171585,25 @@ export type MercuryDismissedTownsquareProjectInsight = MercuryDismissedCompoundI
|
|
|
170958
171585
|
dismissalType: MercuryDismissalType;
|
|
170959
171586
|
insightData?: Maybe<TownsquareProject>;
|
|
170960
171587
|
};
|
|
171588
|
+
export type MercuryDuplicateAskInput = {
|
|
171589
|
+
id: Scalars['ID']['input'];
|
|
171590
|
+
ownerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
171591
|
+
receivingOrganizationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
171592
|
+
receivingTeamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
171593
|
+
};
|
|
171594
|
+
export type MercuryDuplicateAskPayload = Payload & {
|
|
171595
|
+
__typename?: 'MercuryDuplicateAskPayload';
|
|
171596
|
+
duplicateAskJobId: Scalars['ID']['output'];
|
|
171597
|
+
errors?: Maybe<Array<MutationError>>;
|
|
171598
|
+
success: Scalars['Boolean']['output'];
|
|
171599
|
+
};
|
|
170961
171600
|
export declare enum MercuryEntityType {
|
|
170962
171601
|
Ask = "ASK",
|
|
170963
171602
|
ChangeProposal = "CHANGE_PROPOSAL",
|
|
170964
171603
|
Comment = "COMMENT",
|
|
170965
171604
|
FocusArea = "FOCUS_AREA",
|
|
170966
171605
|
FocusAreaStatusUpdate = "FOCUS_AREA_STATUS_UPDATE",
|
|
171606
|
+
Organization = "ORGANIZATION",
|
|
170967
171607
|
OrganizationStatusUpdate = "ORGANIZATION_STATUS_UPDATE",
|
|
170968
171608
|
Program = "PROGRAM",
|
|
170969
171609
|
ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE",
|
|
@@ -173182,6 +173822,7 @@ export type MercuryMutationApi = {
|
|
|
173182
173822
|
updateFocusAreaStartDate?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
173183
173823
|
updateFocusAreaStatusUpdate?: Maybe<MercuryUpdateFocusAreaStatusUpdatePayload>;
|
|
173184
173824
|
updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
173825
|
+
updateFocusAreaTypeFieldConfigurations?: Maybe<MercuryUpdateFieldConfigurationsPayload>;
|
|
173185
173826
|
updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
173186
173827
|
updateUserNotificationSettings?: Maybe<MercuryUpdateUserNotificationSettingsPayload>;
|
|
173187
173828
|
validateFocusAreaArchival?: Maybe<MercuryArchiveFocusAreaValidationPayload>;
|
|
@@ -173355,6 +173996,9 @@ export type MercuryMutationApiUpdateFocusAreaStatusUpdateArgs = {
|
|
|
173355
173996
|
export type MercuryMutationApiUpdateFocusAreaTargetDateArgs = {
|
|
173356
173997
|
input: MercuryUpdateFocusAreaTargetDateInput;
|
|
173357
173998
|
};
|
|
173999
|
+
export type MercuryMutationApiUpdateFocusAreaTypeFieldConfigurationsArgs = {
|
|
174000
|
+
input: MercuryUpdateFocusAreaTypeFieldConfigurationsInput;
|
|
174001
|
+
};
|
|
173358
174002
|
export type MercuryMutationApiUpdatePortfolioNameArgs = {
|
|
173359
174003
|
input: MercuryUpdatePortfolioNameInput;
|
|
173360
174004
|
};
|
|
@@ -173404,6 +174048,7 @@ export type MercuryNormalizedWork = HasMercuryProjectFields & {
|
|
|
173404
174048
|
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
173405
174049
|
mercuryProjectType?: Maybe<MercuryProjectType>;
|
|
173406
174050
|
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
174051
|
+
mercuryStartDate?: Maybe<Scalars['DateTime']['output']>;
|
|
173407
174052
|
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
173408
174053
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
173409
174054
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -173643,6 +174288,29 @@ export type MercuryOrganizationActivityHistoryEdge = {
|
|
|
173643
174288
|
export type MercuryOrganizationActivitySort = {
|
|
173644
174289
|
order: SortOrder;
|
|
173645
174290
|
};
|
|
174291
|
+
export type MercuryOrganizationAvailabilityRange = {
|
|
174292
|
+
__typename?: 'MercuryOrganizationAvailabilityRange';
|
|
174293
|
+
createdBy?: Maybe<User>;
|
|
174294
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
174295
|
+
endDate?: Maybe<Scalars['Date']['output']>;
|
|
174296
|
+
id: Scalars['ID']['output'];
|
|
174297
|
+
organizationMembershipId: Scalars['ID']['output'];
|
|
174298
|
+
role?: Maybe<MercuryFunctionalRole>;
|
|
174299
|
+
startDate: Scalars['Date']['output'];
|
|
174300
|
+
updatedBy?: Maybe<User>;
|
|
174301
|
+
updatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
174302
|
+
};
|
|
174303
|
+
export type MercuryOrganizationAvailabilityRangeConnection = {
|
|
174304
|
+
__typename?: 'MercuryOrganizationAvailabilityRangeConnection';
|
|
174305
|
+
edges?: Maybe<Array<Maybe<MercuryOrganizationAvailabilityRangeEdge>>>;
|
|
174306
|
+
pageInfo: PageInfo;
|
|
174307
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
174308
|
+
};
|
|
174309
|
+
export type MercuryOrganizationAvailabilityRangeEdge = {
|
|
174310
|
+
__typename?: 'MercuryOrganizationAvailabilityRangeEdge';
|
|
174311
|
+
cursor: Scalars['String']['output'];
|
|
174312
|
+
node?: Maybe<MercuryOrganizationAvailabilityRange>;
|
|
174313
|
+
};
|
|
173646
174314
|
export type MercuryOrganizationCapacity = {
|
|
173647
174315
|
__typename?: 'MercuryOrganizationCapacity';
|
|
173648
174316
|
count: Scalars['BigDecimal']['output'];
|
|
@@ -173791,6 +174459,7 @@ export type MercuryOrganizationListSummary = {
|
|
|
173791
174459
|
};
|
|
173792
174460
|
export type MercuryOrganizationMembership = Node & {
|
|
173793
174461
|
__typename?: 'MercuryOrganizationMembership';
|
|
174462
|
+
availabilityRanges?: Maybe<MercuryOrganizationAvailabilityRangeConnection>;
|
|
173794
174463
|
createdBy?: Maybe<User>;
|
|
173795
174464
|
createdDate: Scalars['DateTime']['output'];
|
|
173796
174465
|
endDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -173802,6 +174471,10 @@ export type MercuryOrganizationMembership = Node & {
|
|
|
173802
174471
|
updatedDate: Scalars['DateTime']['output'];
|
|
173803
174472
|
user?: Maybe<User>;
|
|
173804
174473
|
};
|
|
174474
|
+
export type MercuryOrganizationMembershipAvailabilityRangesArgs = {
|
|
174475
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
174476
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
174477
|
+
};
|
|
173805
174478
|
export type MercuryOrganizationMembershipTeamsArgs = {
|
|
173806
174479
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
173807
174480
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -174585,6 +175258,7 @@ export type MercuryPlan = Node & {
|
|
|
174585
175258
|
organizationPlanAuthority?: Maybe<MercuryPlanOrganizationAuthority>;
|
|
174586
175259
|
startDate: Scalars['Date']['output'];
|
|
174587
175260
|
type: MercuryPlanType;
|
|
175261
|
+
userPermissions?: Maybe<Array<MercuryPlanPermission>>;
|
|
174588
175262
|
};
|
|
174589
175263
|
export type MercuryPlanFocusAreaLinksArgs = {
|
|
174590
175264
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -174679,6 +175353,13 @@ export type MercuryPlanOrganizationAuthority = {
|
|
|
174679
175353
|
__typename?: 'MercuryPlanOrganizationAuthority';
|
|
174680
175354
|
organizationPlanAuthorityPosition?: Maybe<MercuryOrganizationPlanAuthorityPosition>;
|
|
174681
175355
|
};
|
|
175356
|
+
export declare enum MercuryPlanPermission {
|
|
175357
|
+
DeleteDraftOrganizationPlan = "DELETE_DRAFT_ORGANIZATION_PLAN",
|
|
175358
|
+
EditDraftOrganizationPlan = "EDIT_DRAFT_ORGANIZATION_PLAN",
|
|
175359
|
+
EditLiveOrganizationPlan = "EDIT_LIVE_ORGANIZATION_PLAN",
|
|
175360
|
+
EditOrganizationPlanFocusArea = "EDIT_ORGANIZATION_PLAN_FOCUS_AREA",
|
|
175361
|
+
EditOrganizationPlanWork = "EDIT_ORGANIZATION_PLAN_WORK"
|
|
175362
|
+
}
|
|
174682
175363
|
export declare enum MercuryPlanType {
|
|
174683
175364
|
Baseline = "BASELINE",
|
|
174684
175365
|
Draft = "DRAFT"
|
|
@@ -175234,6 +175915,7 @@ export type MercuryQueryApi = {
|
|
|
175234
175915
|
focusAreaCount?: Maybe<Scalars['Int']['output']>;
|
|
175235
175916
|
focusAreaCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
175236
175917
|
focusAreaCustomFields?: Maybe<Array<MercuryFocusAreaCustomFieldValuesByFocusArea>>;
|
|
175918
|
+
focusAreaFieldDefinitions?: Maybe<MercuryFieldDefinitionConnection>;
|
|
175237
175919
|
focusAreaHierarchies?: Maybe<Array<MercuryFocusAreaHierarchy>>;
|
|
175238
175920
|
focusAreaHierarchiesSearch?: Maybe<MercuryFocusAreaHierarchyConnection>;
|
|
175239
175921
|
focusAreaHierarchy?: Maybe<MercuryFocusAreaHierarchy>;
|
|
@@ -175336,6 +176018,9 @@ export type MercuryQueryApiFocusAreaCustomFieldsArgs = {
|
|
|
175336
176018
|
customFieldDefinitionIds: Array<Scalars['ID']['input']>;
|
|
175337
176019
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
175338
176020
|
};
|
|
176021
|
+
export type MercuryQueryApiFocusAreaFieldDefinitionsArgs = {
|
|
176022
|
+
cloudId: Scalars['ID']['input'];
|
|
176023
|
+
};
|
|
175339
176024
|
export type MercuryQueryApiFocusAreaHierarchiesArgs = {
|
|
175340
176025
|
ids: Array<Scalars['ID']['input']>;
|
|
175341
176026
|
};
|
|
@@ -177219,6 +177904,11 @@ export type MercuryUpdateAskDescriptionInput = {
|
|
|
177219
177904
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
177220
177905
|
id: Scalars['ID']['input'];
|
|
177221
177906
|
};
|
|
177907
|
+
export type MercuryUpdateAskGlobalFieldConfigurationInput = {
|
|
177908
|
+
cloudId: Scalars['ID']['input'];
|
|
177909
|
+
searchKey: Scalars['ID']['input'];
|
|
177910
|
+
visible: Scalars['Boolean']['input'];
|
|
177911
|
+
};
|
|
177222
177912
|
export type MercuryUpdateAskImpactedWorkInput = {
|
|
177223
177913
|
id: Scalars['ID']['input'];
|
|
177224
177914
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -177623,6 +178313,10 @@ export type MercuryUpdateFocusAreaTargetDateInput = {
|
|
|
177623
178313
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
177624
178314
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
177625
178315
|
};
|
|
178316
|
+
export type MercuryUpdateFocusAreaTypeFieldConfigurationsInput = {
|
|
178317
|
+
configurations: Array<MercuryTypeFieldConfigurationUpdateInput>;
|
|
178318
|
+
typeId: Scalars['ID']['input'];
|
|
178319
|
+
};
|
|
177626
178320
|
export type MercuryUpdateFunctionalRoleInput = {
|
|
177627
178321
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
177628
178322
|
id: Scalars['ID']['input'];
|
|
@@ -177634,6 +178328,12 @@ export type MercuryUpdateFunctionalRolePayload = Payload & {
|
|
|
177634
178328
|
success: Scalars['Boolean']['output'];
|
|
177635
178329
|
updatedFunctionalRole?: Maybe<MercuryFunctionalRole>;
|
|
177636
178330
|
};
|
|
178331
|
+
export type MercuryUpdateGlobalFieldConfigurationPayload = Payload & {
|
|
178332
|
+
__typename?: 'MercuryUpdateGlobalFieldConfigurationPayload';
|
|
178333
|
+
configuration?: Maybe<MercuryGlobalFieldConfiguration>;
|
|
178334
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178335
|
+
success: Scalars['Boolean']['output'];
|
|
178336
|
+
};
|
|
177637
178337
|
export type MercuryUpdateInsightWidgetInput = {
|
|
177638
178338
|
cloudId: Scalars['ID']['input'];
|
|
177639
178339
|
insightWidgetId: Scalars['ID']['input'];
|
|
@@ -178575,6 +179275,7 @@ export type Mutation = {
|
|
|
178575
179275
|
agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
178576
179276
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
178577
179277
|
agentStudio_createAgentFromTemplate?: Maybe<AgentStudioCreateAgentPayload>;
|
|
179278
|
+
agentStudio_createAgentTrigger?: Maybe<AgentStudioCreateAgentTriggerPayload>;
|
|
178578
179279
|
agentStudio_createAndRunBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
178579
179280
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
178580
179281
|
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
@@ -179025,6 +179726,7 @@ export type Mutation = {
|
|
|
179025
179726
|
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
179026
179727
|
confluence_updateMarkdownMode?: Maybe<ConfluenceUpdateMarkdownModePayload>;
|
|
179027
179728
|
confluence_updateModeChange?: Maybe<ConfluenceUpdateModeChangePayload>;
|
|
179729
|
+
confluence_updateModeChangeAsync?: Maybe<ConfluenceUpdateModeChangeAsyncPayload>;
|
|
179028
179730
|
confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
|
|
179029
179731
|
confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
|
|
179030
179732
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
@@ -179386,6 +180088,7 @@ export type Mutation = {
|
|
|
179386
180088
|
graphInference_inferenceAppEditV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
|
|
179387
180089
|
graphInference_inferenceEval?: Maybe<GraphInferenceInferenceEvalResponse>;
|
|
179388
180090
|
graphInference_inferenceEvalStart?: Maybe<GraphInferenceInferenceEvalStartResponse>;
|
|
180091
|
+
graphInference_inferencePreview?: Maybe<GraphInferenceInferencePreviewResponse>;
|
|
179389
180092
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
179390
180093
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
179391
180094
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -179812,6 +180515,7 @@ export type Mutation = {
|
|
|
179812
180515
|
jsmTelemetry_upsertDashboardChart?: Maybe<JsmTelemetryUpsertDashboardChartResponse>;
|
|
179813
180516
|
jsmTelemetry_validateTelemetryConnection?: Maybe<JsmTelemetryValidateTelemetryConnectionPayload>;
|
|
179814
180517
|
jsw?: Maybe<JswMutation>;
|
|
180518
|
+
kitsune_backfillAutoTagging?: Maybe<KitsuneBackfillAutoTaggingPayload>;
|
|
179815
180519
|
kitsune_createConnectorConfig?: Maybe<KitsuneCreateConnectorConfigPayload>;
|
|
179816
180520
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
179817
180521
|
kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
@@ -179951,6 +180655,7 @@ export type Mutation = {
|
|
|
179951
180655
|
mercury_deleteAskCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
|
|
179952
180656
|
mercury_deleteAskLink?: Maybe<MercuryDeleteAskLinkPayload>;
|
|
179953
180657
|
mercury_deleteAskStatusUpdate?: Maybe<MercuryDeleteAskStatusUpdatePayload>;
|
|
180658
|
+
mercury_duplicateAsk?: Maybe<MercuryDuplicateAskPayload>;
|
|
179954
180659
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
179955
180660
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
179956
180661
|
mercury_organizations?: Maybe<MercuryOrganizationsMutationApi>;
|
|
@@ -179969,6 +180674,7 @@ export type Mutation = {
|
|
|
179969
180674
|
mercury_updateAskCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
179970
180675
|
mercury_updateAskCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
179971
180676
|
mercury_updateAskDescription?: Maybe<MercuryUpsertAskPayload>;
|
|
180677
|
+
mercury_updateAskGlobalFieldConfiguration?: Maybe<MercuryUpdateGlobalFieldConfigurationPayload>;
|
|
179972
180678
|
mercury_updateAskImpactedWork?: Maybe<MercuryUpsertAskPayload>;
|
|
179973
180679
|
mercury_updateAskJustification?: Maybe<MercuryUpsertAskPayload>;
|
|
179974
180680
|
mercury_updateAskName?: Maybe<MercuryUpsertAskPayload>;
|
|
@@ -180592,6 +181298,10 @@ export type MutationAgentStudio_CreateAgentFromTemplateArgs = {
|
|
|
180592
181298
|
templateId: Scalars['ID']['input'];
|
|
180593
181299
|
usePermission?: InputMaybe<AgentStudioTemplateUsePermission>;
|
|
180594
181300
|
};
|
|
181301
|
+
export type MutationAgentStudio_CreateAgentTriggerArgs = {
|
|
181302
|
+
id: Scalars['ID']['input'];
|
|
181303
|
+
input: AgentStudioCreateAgentTriggerInput;
|
|
181304
|
+
};
|
|
180595
181305
|
export type MutationAgentStudio_CreateAndRunBatchEvaluationJobArgs = {
|
|
180596
181306
|
cloudId: Scalars['String']['input'];
|
|
180597
181307
|
input: AgentStudioCreateBatchEvaluationJobInput;
|
|
@@ -182309,6 +183019,9 @@ export type MutationConfluence_UpdateMarkdownModeArgs = {
|
|
|
182309
183019
|
export type MutationConfluence_UpdateModeChangeArgs = {
|
|
182310
183020
|
cloudId: Scalars['ID']['input'];
|
|
182311
183021
|
};
|
|
183022
|
+
export type MutationConfluence_UpdateModeChangeAsyncArgs = {
|
|
183023
|
+
cloudId: Scalars['ID']['input'];
|
|
183024
|
+
};
|
|
182312
183025
|
export type MutationConfluence_UpdateNcsPdfExportConfigurationArgs = {
|
|
182313
183026
|
cloudId: Scalars['ID']['input'];
|
|
182314
183027
|
input: ConfluenceUpdatePdfExportNoCodeStylingConfigInput;
|
|
@@ -183549,6 +184262,9 @@ export type MutationGraphInference_InferenceEvalArgs = {
|
|
|
183549
184262
|
export type MutationGraphInference_InferenceEvalStartArgs = {
|
|
183550
184263
|
input: GraphInferenceInferenceEvalInput;
|
|
183551
184264
|
};
|
|
184265
|
+
export type MutationGraphInference_InferencePreviewArgs = {
|
|
184266
|
+
input: GraphInferenceInferencePreviewInput;
|
|
184267
|
+
};
|
|
183552
184268
|
export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
|
|
183553
184269
|
input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
|
|
183554
184270
|
};
|
|
@@ -184913,6 +185629,9 @@ export type MutationJsmTelemetry_ValidateTelemetryConnectionArgs = {
|
|
|
184913
185629
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
184914
185630
|
input: JsmTelemetryValidateTelemetryConnectionInput;
|
|
184915
185631
|
};
|
|
185632
|
+
export type MutationKitsune_BackfillAutoTaggingArgs = {
|
|
185633
|
+
input: KitsuneBackfillAutoTaggingInput;
|
|
185634
|
+
};
|
|
184916
185635
|
export type MutationKitsune_CreateConnectorConfigArgs = {
|
|
184917
185636
|
input: KitsuneCreateConnectorConfigInput;
|
|
184918
185637
|
};
|
|
@@ -185437,6 +186156,9 @@ export type MutationMercury_DeleteAskLinkArgs = {
|
|
|
185437
186156
|
export type MutationMercury_DeleteAskStatusUpdateArgs = {
|
|
185438
186157
|
input: MercuryDeleteAskStatusUpdateInput;
|
|
185439
186158
|
};
|
|
186159
|
+
export type MutationMercury_DuplicateAskArgs = {
|
|
186160
|
+
input: MercuryDuplicateAskInput;
|
|
186161
|
+
};
|
|
185440
186162
|
export type MutationMercury_PromoteWorkItemToImpactedWorkArgs = {
|
|
185441
186163
|
input: MercuryPromoteWorkItemToImpactedWorkInput;
|
|
185442
186164
|
};
|
|
@@ -185467,6 +186189,9 @@ export type MutationMercury_UpdateAskCustomFieldDefinitionOptionArgs = {
|
|
|
185467
186189
|
export type MutationMercury_UpdateAskDescriptionArgs = {
|
|
185468
186190
|
input: MercuryUpdateAskDescriptionInput;
|
|
185469
186191
|
};
|
|
186192
|
+
export type MutationMercury_UpdateAskGlobalFieldConfigurationArgs = {
|
|
186193
|
+
input: MercuryUpdateAskGlobalFieldConfigurationInput;
|
|
186194
|
+
};
|
|
185470
186195
|
export type MutationMercury_UpdateAskImpactedWorkArgs = {
|
|
185471
186196
|
input: MercuryUpdateAskImpactedWorkInput;
|
|
185472
186197
|
};
|
|
@@ -189364,6 +190089,7 @@ export type PsmActiveSensor = {
|
|
|
189364
190089
|
};
|
|
189365
190090
|
export type PsmActiveSensors = {
|
|
189366
190091
|
__typename?: 'PsmActiveSensors';
|
|
190092
|
+
errors?: Maybe<Array<QueryError>>;
|
|
189367
190093
|
generatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
189368
190094
|
sensors?: Maybe<Array<PsmActiveSensor>>;
|
|
189369
190095
|
};
|
|
@@ -189897,7 +190623,8 @@ export declare enum PsmRemediationStatus {
|
|
|
189897
190623
|
Failed = "FAILED",
|
|
189898
190624
|
NotAttempted = "NOT_ATTEMPTED",
|
|
189899
190625
|
PendingApproval = "PENDING_APPROVAL",
|
|
189900
|
-
Running = "RUNNING"
|
|
190626
|
+
Running = "RUNNING",
|
|
190627
|
+
Success = "SUCCESS"
|
|
189901
190628
|
}
|
|
189902
190629
|
export declare enum PsmRemediationTrigger {
|
|
189903
190630
|
Agent = "AGENT",
|
|
@@ -191011,6 +191738,7 @@ export type Query = {
|
|
|
191011
191738
|
confluence_getActiveWorkflowApplication?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
191012
191739
|
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
191013
191740
|
confluence_getAudioPreference?: Maybe<ConfluenceAudioPreference>;
|
|
191741
|
+
confluence_getCloudAIConfig?: Maybe<AiConfigResponse>;
|
|
191014
191742
|
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
191015
191743
|
confluence_getCutoverRoleConfig?: Maybe<ConfluenceCutoverRoleConfig>;
|
|
191016
191744
|
confluence_getLatestPendingRequests?: Maybe<ConfluenceLatestPendingRequests>;
|
|
@@ -191427,6 +192155,7 @@ export type Query = {
|
|
|
191427
192155
|
graphInference_inferenceAppList?: Maybe<Array<GraphInferenceInferenceApp>>;
|
|
191428
192156
|
graphInference_inferenceAppListV2?: Maybe<Array<GraphInferenceInferenceAppV2>>;
|
|
191429
192157
|
graphInference_inferenceAppListV3?: Maybe<Array<GraphInferenceInferenceAppV3>>;
|
|
192158
|
+
graphInference_inferenceAppPermissions?: Maybe<GraphInferenceInferenceAppPermissions>;
|
|
191430
192159
|
graphInference_inferenceAppStoredResults?: Maybe<Array<GraphInferenceInferenceAppStoredResult>>;
|
|
191431
192160
|
graphInference_inferenceEvalPromptPreview?: Maybe<GraphInferenceInferenceEvalPromptPreviewResponse>;
|
|
191432
192161
|
graphInference_inferenceEvalRun?: Maybe<GraphInferenceInferenceEvalRunResponse>;
|
|
@@ -191814,6 +192543,8 @@ export type Query = {
|
|
|
191814
192543
|
graphStoreV2_customer360CustomerLinksJiraWorkItem?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemConnection>;
|
|
191815
192544
|
graphStoreV2_customer360CustomerLinksJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemInverseConnection>;
|
|
191816
192545
|
graphStoreV2_cypherQueryV2?: Maybe<GraphStoreV2CypherQueryV2Connection>;
|
|
192546
|
+
graphStoreV2_entityAuthorisesAtlassianMemory?: Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryConnection>;
|
|
192547
|
+
graphStoreV2_entityAuthorisesAtlassianMemoryInverse?: Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseConnection>;
|
|
191817
192548
|
graphStoreV2_entityLinksEntity?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityConnection>;
|
|
191818
192549
|
graphStoreV2_entityLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityInverseConnection>;
|
|
191819
192550
|
graphStoreV2_entityRepresentsConfluenceSpace?: Maybe<GraphStoreV2SimplifiedEntityRepresentsConfluenceSpaceConnection>;
|
|
@@ -192179,7 +192910,8 @@ export type Query = {
|
|
|
192179
192910
|
graphStoreV2_inferredDecisionLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseConnection>;
|
|
192180
192911
|
graphStoreV2_inferredDecisionSourceLineageEntity?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection>;
|
|
192181
192912
|
graphStoreV2_inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
|
|
192182
|
-
|
|
192913
|
+
graphStoreV2_inferredProjectHasRelatedEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection>;
|
|
192914
|
+
graphStoreV2_inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection>;
|
|
192183
192915
|
graphStoreV2_inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
192184
192916
|
graphStoreV2_inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
|
|
192185
192917
|
graphStoreV2_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
|
|
@@ -192658,8 +193390,12 @@ export type Query = {
|
|
|
192658
193390
|
graphStore_dynamicRelationshipAssetToProjectInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseConnection>;
|
|
192659
193391
|
graphStore_dynamicRelationshipAssetToRepo?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoConnection>;
|
|
192660
193392
|
graphStore_dynamicRelationshipAssetToRepoInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseConnection>;
|
|
193393
|
+
graphStore_dynamicRelationshipAssetToTeam?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamConnection>;
|
|
193394
|
+
graphStore_dynamicRelationshipAssetToTeamInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseConnection>;
|
|
192661
193395
|
graphStore_dynamicRelationshipAssetToUser?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserConnection>;
|
|
192662
193396
|
graphStore_dynamicRelationshipAssetToUserInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection>;
|
|
193397
|
+
graphStore_entityAuthorisesAtlassianMemory?: Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryConnection>;
|
|
193398
|
+
graphStore_entityAuthorisesAtlassianMemoryInverse?: Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseConnection>;
|
|
192663
193399
|
graphStore_entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
192664
193400
|
graphStore_entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
192665
193401
|
graphStore_entityRepresentsConfluenceSpace?: Maybe<GraphStoreSimplifiedEntityRepresentsConfluenceSpaceConnection>;
|
|
@@ -192828,6 +193564,8 @@ export type Query = {
|
|
|
192828
193564
|
graphStore_inferredDecisionImpactsEntityInverse?: Maybe<GraphStoreSimplifiedInferredDecisionImpactsEntityInverseConnection>;
|
|
192829
193565
|
graphStore_inferredDecisionSourceLineageEntity?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection>;
|
|
192830
193566
|
graphStore_inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
|
|
193567
|
+
graphStore_inferredProjectHasRelatedEntity?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection>;
|
|
193568
|
+
graphStore_inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection>;
|
|
192831
193569
|
graphStore_inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
|
|
192832
193570
|
graphStore_inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
|
|
192833
193571
|
graphStore_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
|
|
@@ -193848,12 +194586,14 @@ export type Query = {
|
|
|
193848
194586
|
knowledgeBase_capabilities?: Maybe<KnowledgeBaseCapabilitiesResponse>;
|
|
193849
194587
|
knowledgeBase_confluenceAppLinkDetails?: Maybe<KnowledgeBaseConfluenceAppLinkDetailsResponse>;
|
|
193850
194588
|
knowledgeBase_dataSourceStatus?: Maybe<KnowledgeBaseDataSourceStatusResponse>;
|
|
194589
|
+
knowledgeBase_dataSourceSyncStatus?: Maybe<KnowledgeBaseDataSourceSyncStatusResponse>;
|
|
193851
194590
|
knowledgeBase_eligibleDataSources?: Maybe<KnowledgeBaseEligibleDataSourcesResponse>;
|
|
193852
194591
|
knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
|
|
193853
194592
|
knowledgeBase_healthDashboard?: Maybe<KnowledgeBaseHealthDashboardResponse>;
|
|
193854
194593
|
knowledgeBase_hydrateArticles?: Maybe<KnowledgeBaseHydrateArticlesResponse>;
|
|
193855
194594
|
knowledgeBase_linkedSources?: Maybe<KnowledgeBaseLinkedSourcesResponse>;
|
|
193856
194595
|
knowledgeBase_monthlyActiveUsers?: Maybe<KnowledgeBaseMonthlyActiveUsersResponse>;
|
|
194596
|
+
knowledgeBase_permissions?: Maybe<KnowledgeBasePermissionsResponse>;
|
|
193857
194597
|
knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
|
|
193858
194598
|
knowledgeBase_searchConversionMetrics?: Maybe<KnowledgeBaseSearchConversionMetricsResponse>;
|
|
193859
194599
|
knowledgeBase_sourceSuggestions?: Maybe<KnowledgeBaseSourceSuggestionsResponse>;
|
|
@@ -194095,6 +194835,7 @@ export type Query = {
|
|
|
194095
194835
|
radar_focusAreaRecommendation?: Maybe<RadarFocusAreaRecommendationConnection>;
|
|
194096
194836
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
194097
194837
|
radar_lastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
194838
|
+
radar_metricInsight?: Maybe<RadarMetricInsight>;
|
|
194098
194839
|
radar_metricsSettings?: Maybe<Array<RadarMetricSettings>>;
|
|
194099
194840
|
radar_metricsSummary?: Maybe<RadarMetricsSummary>;
|
|
194100
194841
|
radar_notificationSettings?: Maybe<Array<RadarNotification>>;
|
|
@@ -196467,6 +197208,7 @@ export type QueryAvp_GetReadOnlyDashboardArgs = {
|
|
|
196467
197208
|
};
|
|
196468
197209
|
export type QueryAvp_GetRecentDashboardsArgs = {
|
|
196469
197210
|
cloudId: Scalars['ID']['input'];
|
|
197211
|
+
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
196470
197212
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
196471
197213
|
workspaceAri: Scalars['ID']['input'];
|
|
196472
197214
|
};
|
|
@@ -197155,6 +197897,9 @@ export type QueryConfluence_GetAllAppsArgs = {
|
|
|
197155
197897
|
export type QueryConfluence_GetAudioPreferenceArgs = {
|
|
197156
197898
|
cloudId: Scalars['ID']['input'];
|
|
197157
197899
|
};
|
|
197900
|
+
export type QueryConfluence_GetCloudAiConfigArgs = {
|
|
197901
|
+
siteAri: Scalars['ID']['input'];
|
|
197902
|
+
};
|
|
197158
197903
|
export type QueryConfluence_GetCustomContentPermissionAssignmentsArgs = {
|
|
197159
197904
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
197160
197905
|
appId: Scalars['ID']['input'];
|
|
@@ -198033,6 +198778,7 @@ export type QueryCpls_PeopleViewArgs = {
|
|
|
198033
198778
|
filters?: InputMaybe<CplsFiltersInput>;
|
|
198034
198779
|
id: Scalars['ID']['input'];
|
|
198035
198780
|
includeSuggestions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
198781
|
+
timeScale?: InputMaybe<CplsTimeScaleType>;
|
|
198036
198782
|
};
|
|
198037
198783
|
export type QueryCpls_RecommendWorkArgs = {
|
|
198038
198784
|
jiraContext: CplsJiraRecommendationContext;
|
|
@@ -198054,6 +198800,7 @@ export type QueryCpls_TimeCellsArgs = {
|
|
|
198054
198800
|
export type QueryCpls_WorkViewArgs = {
|
|
198055
198801
|
filters?: InputMaybe<CplsFiltersInput>;
|
|
198056
198802
|
id: Scalars['ID']['input'];
|
|
198803
|
+
timeScale?: InputMaybe<CplsTimeScaleType>;
|
|
198057
198804
|
};
|
|
198058
198805
|
export type QueryCrossProjectIssueMentionsInCommentsArgs = {
|
|
198059
198806
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -199061,6 +199808,9 @@ export type QueryGraphInference_GetSimilarJiraItemsArgs = {
|
|
|
199061
199808
|
export type QueryGraphInference_GraphclawInferV3Args = {
|
|
199062
199809
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
199063
199810
|
};
|
|
199811
|
+
export type QueryGraphInference_InferenceAppPermissionsArgs = {
|
|
199812
|
+
cloudId: Scalars['ID']['input'];
|
|
199813
|
+
};
|
|
199064
199814
|
export type QueryGraphInference_InferenceAppStoredResultsArgs = {
|
|
199065
199815
|
input: GraphInferenceInferenceAppStoredResultsInput;
|
|
199066
199816
|
};
|
|
@@ -201666,6 +202416,20 @@ export type QueryGraphStoreV2_CypherQueryV2Args = {
|
|
|
201666
202416
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
201667
202417
|
version?: InputMaybe<GraphStoreV2CypherQueryV2VersionEnum>;
|
|
201668
202418
|
};
|
|
202419
|
+
export type QueryGraphStoreV2_EntityAuthorisesAtlassianMemoryArgs = {
|
|
202420
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
202421
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202422
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
202423
|
+
id: Scalars['ID']['input'];
|
|
202424
|
+
sort?: InputMaybe<GraphStoreV2EntityAuthorisesAtlassianMemorySortInput>;
|
|
202425
|
+
};
|
|
202426
|
+
export type QueryGraphStoreV2_EntityAuthorisesAtlassianMemoryInverseArgs = {
|
|
202427
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
202428
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202429
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
202430
|
+
id: Scalars['ID']['input'];
|
|
202431
|
+
sort?: InputMaybe<GraphStoreV2EntityAuthorisesAtlassianMemorySortInput>;
|
|
202432
|
+
};
|
|
201669
202433
|
export type QueryGraphStoreV2_EntityLinksEntityArgs = {
|
|
201670
202434
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
201671
202435
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -204227,8 +204991,19 @@ export type QueryGraphStoreV2_InferredDecisionSourceLineageEntityInverseArgs = {
|
|
|
204227
204991
|
id: Scalars['ID']['input'];
|
|
204228
204992
|
sort?: InputMaybe<GraphStoreV2InferredDecisionSourceLineageEntitySortInput>;
|
|
204229
204993
|
};
|
|
204230
|
-
export type
|
|
204231
|
-
|
|
204994
|
+
export type QueryGraphStoreV2_InferredProjectHasRelatedEntityArgs = {
|
|
204995
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
204996
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
204997
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
204998
|
+
id: Scalars['ID']['input'];
|
|
204999
|
+
sort?: InputMaybe<GraphStoreV2InferredProjectHasRelatedEntitySortInput>;
|
|
205000
|
+
};
|
|
205001
|
+
export type QueryGraphStoreV2_InferredProjectHasRelatedEntityInverseArgs = {
|
|
205002
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
205003
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
205004
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
205005
|
+
id: Scalars['ID']['input'];
|
|
205006
|
+
sort?: InputMaybe<GraphStoreV2InferredProjectHasRelatedEntitySortInput>;
|
|
204232
205007
|
};
|
|
204233
205008
|
export type QueryGraphStoreV2_InferredProjectLinksEntityArgs = {
|
|
204234
205009
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -207839,6 +208614,22 @@ export type QueryGraphStore_DynamicRelationshipAssetToRepoInverseArgs = {
|
|
|
207839
208614
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
207840
208615
|
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToRepoSortInput>;
|
|
207841
208616
|
};
|
|
208617
|
+
export type QueryGraphStore_DynamicRelationshipAssetToTeamArgs = {
|
|
208618
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208619
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
208620
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208621
|
+
id: Scalars['ID']['input'];
|
|
208622
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
208623
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToTeamSortInput>;
|
|
208624
|
+
};
|
|
208625
|
+
export type QueryGraphStore_DynamicRelationshipAssetToTeamInverseArgs = {
|
|
208626
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208627
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
208628
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208629
|
+
id: Scalars['ID']['input'];
|
|
208630
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
208631
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToTeamSortInput>;
|
|
208632
|
+
};
|
|
207842
208633
|
export type QueryGraphStore_DynamicRelationshipAssetToUserArgs = {
|
|
207843
208634
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
207844
208635
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -207855,6 +208646,22 @@ export type QueryGraphStore_DynamicRelationshipAssetToUserInverseArgs = {
|
|
|
207855
208646
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
207856
208647
|
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToUserSortInput>;
|
|
207857
208648
|
};
|
|
208649
|
+
export type QueryGraphStore_EntityAuthorisesAtlassianMemoryArgs = {
|
|
208650
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208651
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
208652
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208653
|
+
id: Scalars['ID']['input'];
|
|
208654
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
208655
|
+
sort?: InputMaybe<GraphStoreEntityAuthorisesAtlassianMemorySortInput>;
|
|
208656
|
+
};
|
|
208657
|
+
export type QueryGraphStore_EntityAuthorisesAtlassianMemoryInverseArgs = {
|
|
208658
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208659
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
208660
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208661
|
+
id: Scalars['ID']['input'];
|
|
208662
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
208663
|
+
sort?: InputMaybe<GraphStoreEntityAuthorisesAtlassianMemorySortInput>;
|
|
208664
|
+
};
|
|
207858
208665
|
export type QueryGraphStore_EntityIsRelatedToEntityArgs = {
|
|
207859
208666
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
207860
208667
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -209154,6 +209961,22 @@ export type QueryGraphStore_InferredDecisionSourceLineageEntityInverseArgs = {
|
|
|
209154
209961
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
209155
209962
|
sort?: InputMaybe<GraphStoreInferredDecisionSourceLineageEntitySortInput>;
|
|
209156
209963
|
};
|
|
209964
|
+
export type QueryGraphStore_InferredProjectHasRelatedEntityArgs = {
|
|
209965
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
209966
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
209967
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
209968
|
+
id: Scalars['ID']['input'];
|
|
209969
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
209970
|
+
sort?: InputMaybe<GraphStoreInferredProjectHasRelatedEntitySortInput>;
|
|
209971
|
+
};
|
|
209972
|
+
export type QueryGraphStore_InferredProjectHasRelatedEntityInverseArgs = {
|
|
209973
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
209974
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
209975
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
209976
|
+
id: Scalars['ID']['input'];
|
|
209977
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
209978
|
+
sort?: InputMaybe<GraphStoreInferredProjectHasRelatedEntitySortInput>;
|
|
209979
|
+
};
|
|
209157
209980
|
export type QueryGraphStore_InferredProjectLinksEntityArgs = {
|
|
209158
209981
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
209159
209982
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -216261,6 +217084,11 @@ export type QueryKnowledgeBase_DataSourceStatusArgs = {
|
|
|
216261
217084
|
cloudId: Scalars['ID']['input'];
|
|
216262
217085
|
types: Array<KnowledgeBaseDataSourceType>;
|
|
216263
217086
|
};
|
|
217087
|
+
export type QueryKnowledgeBase_DataSourceSyncStatusArgs = {
|
|
217088
|
+
cloudId: Scalars['ID']['input'];
|
|
217089
|
+
dataSourceId: Scalars['ID']['input'];
|
|
217090
|
+
sourceType: KnowledgeBaseDataSourceType;
|
|
217091
|
+
};
|
|
216264
217092
|
export type QueryKnowledgeBase_EligibleDataSourcesArgs = {
|
|
216265
217093
|
cloudId: Scalars['ID']['input'];
|
|
216266
217094
|
};
|
|
@@ -216283,6 +217111,9 @@ export type QueryKnowledgeBase_MonthlyActiveUsersArgs = {
|
|
|
216283
217111
|
cloudId: Scalars['ID']['input'];
|
|
216284
217112
|
projectIdentifier: Scalars['String']['input'];
|
|
216285
217113
|
};
|
|
217114
|
+
export type QueryKnowledgeBase_PermissionsArgs = {
|
|
217115
|
+
cloudId: Scalars['ID']['input'];
|
|
217116
|
+
};
|
|
216286
217117
|
export type QueryKnowledgeBase_SearchArticlesArgs = {
|
|
216287
217118
|
searchInput?: InputMaybe<KnowledgeBaseArticleSearchInput>;
|
|
216288
217119
|
};
|
|
@@ -217160,6 +217991,9 @@ export type QueryRadar_LastAppliedFilterArgs = {
|
|
|
217160
217991
|
cloudId: Scalars['ID']['input'];
|
|
217161
217992
|
pageName: Scalars['String']['input'];
|
|
217162
217993
|
};
|
|
217994
|
+
export type QueryRadar_MetricInsightArgs = {
|
|
217995
|
+
input: RadarMetricInsightInput;
|
|
217996
|
+
};
|
|
217163
217997
|
export type QueryRadar_MetricsSettingsArgs = {
|
|
217164
217998
|
cloudId: Scalars['ID']['input'];
|
|
217165
217999
|
metricKey?: InputMaybe<RadarOrgMetric>;
|
|
@@ -218791,6 +219625,20 @@ export type RadarLongFieldValue = {
|
|
|
218791
219625
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
218792
219626
|
value?: Maybe<Scalars['Long']['output']>;
|
|
218793
219627
|
};
|
|
219628
|
+
export type RadarMetricInsight = {
|
|
219629
|
+
__typename?: 'RadarMetricInsight';
|
|
219630
|
+
content: Scalars['String']['output'];
|
|
219631
|
+
entityAri: Scalars['ID']['output'];
|
|
219632
|
+
id: Scalars['ID']['output'];
|
|
219633
|
+
metadata: RadarAiGenerationMetadata;
|
|
219634
|
+
metricKey: RadarOrgMetric;
|
|
219635
|
+
};
|
|
219636
|
+
export type RadarMetricInsightInput = {
|
|
219637
|
+
cloudId: Scalars['ID']['input'];
|
|
219638
|
+
entityAri: Scalars['ID']['input'];
|
|
219639
|
+
entityType: RadarMetricsSummaryEntityType;
|
|
219640
|
+
metricKey: RadarOrgMetric;
|
|
219641
|
+
};
|
|
218794
219642
|
export declare enum RadarMetricScopeType {
|
|
218795
219643
|
All = "ALL",
|
|
218796
219644
|
FocusArea = "FOCUS_AREA",
|
|
@@ -221024,6 +221872,7 @@ export declare enum Scope {
|
|
|
221024
221872
|
ReadArtifactArtifacts = "READ_ARTIFACT_ARTIFACTS",
|
|
221025
221873
|
ReadAssetsTwgCli = "READ_ASSETS_TWG_CLI",
|
|
221026
221874
|
ReadCapacityPlanning = "READ_CAPACITY_PLANNING",
|
|
221875
|
+
ReadCapacityPlanningAgentInterface = "READ_CAPACITY_PLANNING_AGENT_INTERFACE",
|
|
221027
221876
|
ReadCmdbAttributeJira = "READ_CMDB_ATTRIBUTE_JIRA",
|
|
221028
221877
|
ReadCmdbObjectJira = "READ_CMDB_OBJECT_JIRA",
|
|
221029
221878
|
ReadCmdbSchemaJira = "READ_CMDB_SCHEMA_JIRA",
|
|
@@ -221211,6 +222060,7 @@ export declare enum Scope {
|
|
|
221211
222060
|
WriteArtifactArtifacts = "WRITE_ARTIFACT_ARTIFACTS",
|
|
221212
222061
|
WriteAssetsTwgCli = "WRITE_ASSETS_TWG_CLI",
|
|
221213
222062
|
WriteCapacityPlanning = "WRITE_CAPACITY_PLANNING",
|
|
222063
|
+
WriteCapacityPlanningAgentInterface = "WRITE_CAPACITY_PLANNING_AGENT_INTERFACE",
|
|
221214
222064
|
WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
|
|
221215
222065
|
WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
|
|
221216
222066
|
WriteCompassEvent = "WRITE_COMPASS_EVENT",
|