@forge/cli-shared 9.1.1-next.1 → 9.1.1-next.2
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 +7 -0
- package/out/graphql/graphql-types.d.ts +971 -2
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +107 -47
- package/package.json +2 -2
|
@@ -525,6 +525,7 @@ export declare enum AiOpsIncidentTimelineIccCategory {
|
|
|
525
525
|
IncidentCreated = "INCIDENT_CREATED",
|
|
526
526
|
InvestigationCompleted = "INVESTIGATION_COMPLETED",
|
|
527
527
|
InvestigationStarted = "INVESTIGATION_STARTED",
|
|
528
|
+
LinkedAlertCreated = "LINKED_ALERT_CREATED",
|
|
528
529
|
MajorIncidentDeclared = "MAJOR_INCIDENT_DECLARED",
|
|
529
530
|
PriorityChanged = "PRIORITY_CHANGED",
|
|
530
531
|
Resolved = "RESOLVED",
|
|
@@ -688,6 +689,16 @@ export declare enum AiOpsRcaMode {
|
|
|
688
689
|
Deep = "DEEP",
|
|
689
690
|
Fast = "FAST"
|
|
690
691
|
}
|
|
692
|
+
export type AiOpsRegenerateIncidentSuggestionInput = {
|
|
693
|
+
cloudId: Scalars['ID']['input'];
|
|
694
|
+
issueKeyOrId: Scalars['String']['input'];
|
|
695
|
+
};
|
|
696
|
+
export type AiOpsRegenerateIncidentSuggestionPayload = Payload & {
|
|
697
|
+
__typename?: 'AIOpsRegenerateIncidentSuggestionPayload';
|
|
698
|
+
errors?: Maybe<Array<MutationError>>;
|
|
699
|
+
result?: Maybe<AiOpsIncidentSuggestionAsyncResult>;
|
|
700
|
+
success: Scalars['Boolean']['output'];
|
|
701
|
+
};
|
|
691
702
|
export type AiOpsRelatedAlert = AiOpsRelatedAlertEntry & {
|
|
692
703
|
__typename?: 'AIOpsRelatedAlert';
|
|
693
704
|
alertDetailsPagePath?: Maybe<Scalars['String']['output']>;
|
|
@@ -3879,6 +3890,7 @@ export type AdminAuditLogBackgroundQueryConnection = {
|
|
|
3879
3890
|
export type AdminAuditLogBackgroundQueryFilterInput = {
|
|
3880
3891
|
actions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
3881
3892
|
actors?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
3893
|
+
apps?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
3882
3894
|
from?: InputMaybe<Scalars['String']['input']>;
|
|
3883
3895
|
ips?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
3884
3896
|
locations?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -3888,6 +3900,7 @@ export type AdminAuditLogBackgroundQueryFiltersType = {
|
|
|
3888
3900
|
__typename?: 'AdminAuditLogBackgroundQueryFiltersType';
|
|
3889
3901
|
actions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
3890
3902
|
actors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
3903
|
+
apps?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
3891
3904
|
from?: Maybe<Scalars['String']['output']>;
|
|
3892
3905
|
ips?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
3893
3906
|
locations?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -5989,10 +6002,21 @@ export type AgentStudioAgentTemplate = {
|
|
|
5989
6002
|
category?: Maybe<Scalars['String']['output']>;
|
|
5990
6003
|
conversationStarters?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
5991
6004
|
description?: Maybe<Scalars['String']['output']>;
|
|
6005
|
+
howItWorks?: Maybe<Array<Maybe<AgentStudioAgentTemplateHowItWorksStep>>>;
|
|
5992
6006
|
id: Scalars['ID']['output'];
|
|
5993
6007
|
name?: Maybe<Scalars['String']['output']>;
|
|
5994
6008
|
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
5995
6009
|
};
|
|
6010
|
+
export declare enum AgentStudioAgentTemplateHowItWorksRole {
|
|
6011
|
+
Action = "ACTION",
|
|
6012
|
+
Knowledge = "KNOWLEDGE",
|
|
6013
|
+
Reasoning = "REASONING"
|
|
6014
|
+
}
|
|
6015
|
+
export type AgentStudioAgentTemplateHowItWorksStep = {
|
|
6016
|
+
__typename?: 'AgentStudioAgentTemplateHowItWorksStep';
|
|
6017
|
+
role?: Maybe<AgentStudioAgentTemplateHowItWorksRole>;
|
|
6018
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
6019
|
+
};
|
|
5996
6020
|
export declare enum AgentStudioAgentType {
|
|
5997
6021
|
Assistant = "ASSISTANT",
|
|
5998
6022
|
ServiceAgent = "SERVICE_AGENT"
|
|
@@ -7304,6 +7328,7 @@ export declare enum AgentStudioToolConfigurationUiSchemaType {
|
|
|
7304
7328
|
export declare enum AgentStudioToolDefinitionSource {
|
|
7305
7329
|
ConvoAi = "CONVO_AI",
|
|
7306
7330
|
Forge = "FORGE",
|
|
7331
|
+
ForgeMcp = "FORGE_MCP",
|
|
7307
7332
|
IntegrationsService = "INTEGRATIONS_SERVICE",
|
|
7308
7333
|
McpServer = "MCP_SERVER",
|
|
7309
7334
|
McpTool = "MCP_TOOL"
|
|
@@ -8251,6 +8276,7 @@ export type AgentWorkspaceRebalancingRecommendation = {
|
|
|
8251
8276
|
export type AgentWorkspaceRebalancingRecommendationsPayload = {
|
|
8252
8277
|
__typename?: 'AgentWorkspaceRebalancingRecommendationsPayload';
|
|
8253
8278
|
candidateWorkItems: Array<AgentWorkspaceRebalancingCandidateWorkItem>;
|
|
8279
|
+
noRecommendationsHint?: Maybe<Scalars['String']['output']>;
|
|
8254
8280
|
recommendations: Array<AgentWorkspaceIssueRebalancingRecommendation>;
|
|
8255
8281
|
};
|
|
8256
8282
|
export type AgentWorkspaceRecommendationError = {
|
|
@@ -13596,6 +13622,7 @@ export type AssetsDmObjectsListDataRowItem = {
|
|
|
13596
13622
|
__typename?: 'AssetsDMObjectsListDataRowItem';
|
|
13597
13623
|
columnName: Scalars['String']['output'];
|
|
13598
13624
|
columnType: AssetsDmObjectsListColumnType;
|
|
13625
|
+
reasonLabel?: Maybe<Scalars['String']['output']>;
|
|
13599
13626
|
value?: Maybe<Scalars['JSON']['output']>;
|
|
13600
13627
|
};
|
|
13601
13628
|
export type AssetsDmObjectsListDataRows = {
|
|
@@ -13820,6 +13847,7 @@ export type AssetsDmSavedSearch = {
|
|
|
13820
13847
|
export type AssetsDmSavedSearchDetails = {
|
|
13821
13848
|
__typename?: 'AssetsDMSavedSearchDetails';
|
|
13822
13849
|
name: Scalars['String']['output'];
|
|
13850
|
+
resultCount?: Maybe<Scalars['Int']['output']>;
|
|
13823
13851
|
savedSearchId: Scalars['ID']['output'];
|
|
13824
13852
|
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
13825
13853
|
};
|
|
@@ -20026,6 +20054,13 @@ export type CloudifyCloudProjectTargetInput = {
|
|
|
20026
20054
|
projectId: Scalars['ID']['input'];
|
|
20027
20055
|
siteId: Scalars['ID']['input'];
|
|
20028
20056
|
};
|
|
20057
|
+
export type CloudifyDcInstanceTarget = {
|
|
20058
|
+
__typename?: 'CloudifyDcInstanceTarget';
|
|
20059
|
+
srsLinkId: CloudifySrsLinkId;
|
|
20060
|
+
};
|
|
20061
|
+
export type CloudifyDcInstanceTargetInput = {
|
|
20062
|
+
srsLinkId: Scalars['ID']['input'];
|
|
20063
|
+
};
|
|
20029
20064
|
export type CloudifyEnactment = {
|
|
20030
20065
|
__typename?: 'CloudifyEnactment';
|
|
20031
20066
|
completedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -20068,6 +20103,7 @@ export type CloudifyRecommendation = {
|
|
|
20068
20103
|
export type CloudifyRecommendationFilterInput = {
|
|
20069
20104
|
cloudProject?: InputMaybe<CloudifyCloudProjectTargetInput>;
|
|
20070
20105
|
siteId?: InputMaybe<Scalars['ID']['input']>;
|
|
20106
|
+
srsLinkId?: InputMaybe<Scalars['ID']['input']>;
|
|
20071
20107
|
};
|
|
20072
20108
|
export type CloudifyRecommendationId = {
|
|
20073
20109
|
__typename?: 'CloudifyRecommendationId';
|
|
@@ -20093,7 +20129,7 @@ export type CloudifyRecommendationStep = {
|
|
|
20093
20129
|
title: Scalars['String']['output'];
|
|
20094
20130
|
toolId: CloudifyToolId;
|
|
20095
20131
|
};
|
|
20096
|
-
export type CloudifyRecommendationTarget = CloudifyCloudProjectTarget | CloudifySiteTarget;
|
|
20132
|
+
export type CloudifyRecommendationTarget = CloudifyCloudProjectTarget | CloudifyDcInstanceTarget | CloudifySiteTarget;
|
|
20097
20133
|
export type CloudifySiteTarget = {
|
|
20098
20134
|
__typename?: 'CloudifySiteTarget';
|
|
20099
20135
|
siteId: Scalars['ID']['output'];
|
|
@@ -20101,6 +20137,10 @@ export type CloudifySiteTarget = {
|
|
|
20101
20137
|
export type CloudifySiteTargetInput = {
|
|
20102
20138
|
siteId: Scalars['ID']['input'];
|
|
20103
20139
|
};
|
|
20140
|
+
export type CloudifySrsLinkId = {
|
|
20141
|
+
__typename?: 'CloudifySrsLinkId';
|
|
20142
|
+
value: Scalars['String']['output'];
|
|
20143
|
+
};
|
|
20104
20144
|
export type CloudifyStepInput = {
|
|
20105
20145
|
arguments: Array<CloudifyArgumentInput>;
|
|
20106
20146
|
reasoning: Scalars['String']['input'];
|
|
@@ -20109,6 +20149,7 @@ export type CloudifyStepInput = {
|
|
|
20109
20149
|
};
|
|
20110
20150
|
export type CloudifyTargetInput = {
|
|
20111
20151
|
cloudProject?: InputMaybe<CloudifyCloudProjectTargetInput>;
|
|
20152
|
+
dcInstance?: InputMaybe<CloudifyDcInstanceTargetInput>;
|
|
20112
20153
|
site?: InputMaybe<CloudifySiteTargetInput>;
|
|
20113
20154
|
};
|
|
20114
20155
|
export type CloudifyToolId = {
|
|
@@ -40318,6 +40359,7 @@ export type CsmAiAgentToolSelectionInput = {
|
|
|
40318
40359
|
export declare enum CsmAiAgentToolSource {
|
|
40319
40360
|
ConvoAi = "CONVO_AI",
|
|
40320
40361
|
Forge = "FORGE",
|
|
40362
|
+
ForgeMcp = "FORGE_MCP",
|
|
40321
40363
|
IntegrationsService = "INTEGRATIONS_SERVICE",
|
|
40322
40364
|
McpServer = "MCP_SERVER",
|
|
40323
40365
|
McpTool = "MCP_TOOL"
|
|
@@ -43530,6 +43572,17 @@ export declare enum DevAiAutodevLogStatus {
|
|
|
43530
43572
|
Failed = "FAILED",
|
|
43531
43573
|
InProgress = "IN_PROGRESS"
|
|
43532
43574
|
}
|
|
43575
|
+
export type DevAiAutodevNextAddExcludedRepositoriesInput = {
|
|
43576
|
+
cloudId: Scalars['ID']['input'];
|
|
43577
|
+
repositoryAris: Array<Scalars['ID']['input']>;
|
|
43578
|
+
workstreamId: Scalars['ID']['input'];
|
|
43579
|
+
};
|
|
43580
|
+
export type DevAiAutodevNextAddExcludedRepositoriesPayload = Payload & {
|
|
43581
|
+
__typename?: 'DevAiAutodevNextAddExcludedRepositoriesPayload';
|
|
43582
|
+
errors?: Maybe<Array<MutationError>>;
|
|
43583
|
+
excludedRepositories?: Maybe<Array<DevAiAutodevNextExcludedRepository>>;
|
|
43584
|
+
success: Scalars['Boolean']['output'];
|
|
43585
|
+
};
|
|
43533
43586
|
export type DevAiAutodevNextAddMembersInput = {
|
|
43534
43587
|
cloudId: Scalars['ID']['input'];
|
|
43535
43588
|
members: Array<DevAiAutodevNextMemberItemInput>;
|
|
@@ -43637,6 +43690,12 @@ export type DevAiAutodevNextDeleteWorkstreamPayload = Payload & {
|
|
|
43637
43690
|
errors?: Maybe<Array<MutationError>>;
|
|
43638
43691
|
success: Scalars['Boolean']['output'];
|
|
43639
43692
|
};
|
|
43693
|
+
export type DevAiAutodevNextExcludedRepository = {
|
|
43694
|
+
__typename?: 'DevAiAutodevNextExcludedRepository';
|
|
43695
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43696
|
+
id: Scalars['ID']['output'];
|
|
43697
|
+
repositoryAri: Scalars['ID']['output'];
|
|
43698
|
+
};
|
|
43640
43699
|
export type DevAiAutodevNextGlobalDashboard = {
|
|
43641
43700
|
__typename?: 'DevAiAutodevNextGlobalDashboard';
|
|
43642
43701
|
activeSpaceCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -43728,6 +43787,16 @@ export type DevAiAutodevNextReassignWorkItemPayload = Payload & {
|
|
|
43728
43787
|
success: Scalars['Boolean']['output'];
|
|
43729
43788
|
workItem?: Maybe<DevAiAutodevNextWorkItem>;
|
|
43730
43789
|
};
|
|
43790
|
+
export type DevAiAutodevNextRemoveExcludedRepositoriesInput = {
|
|
43791
|
+
cloudId: Scalars['ID']['input'];
|
|
43792
|
+
repositoryAris: Array<Scalars['ID']['input']>;
|
|
43793
|
+
workstreamId: Scalars['ID']['input'];
|
|
43794
|
+
};
|
|
43795
|
+
export type DevAiAutodevNextRemoveExcludedRepositoriesPayload = Payload & {
|
|
43796
|
+
__typename?: 'DevAiAutodevNextRemoveExcludedRepositoriesPayload';
|
|
43797
|
+
errors?: Maybe<Array<MutationError>>;
|
|
43798
|
+
success: Scalars['Boolean']['output'];
|
|
43799
|
+
};
|
|
43731
43800
|
export type DevAiAutodevNextRemoveMembersInput = {
|
|
43732
43801
|
cloudId: Scalars['ID']['input'];
|
|
43733
43802
|
userIds: Array<Scalars['ID']['input']>;
|
|
@@ -43751,10 +43820,12 @@ export type DevAiAutodevNextRemoveProjectsPayload = Payload & {
|
|
|
43751
43820
|
export type DevAiAutodevNextScanSchedule = {
|
|
43752
43821
|
__typename?: 'DevAiAutodevNextScanSchedule';
|
|
43753
43822
|
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
43823
|
+
timeOfDay?: Maybe<Scalars['String']['output']>;
|
|
43754
43824
|
timezone: Scalars['String']['output'];
|
|
43755
43825
|
};
|
|
43756
43826
|
export type DevAiAutodevNextScanScheduleInput = {
|
|
43757
43827
|
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
43828
|
+
timeOfDay?: InputMaybe<Scalars['String']['input']>;
|
|
43758
43829
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
43759
43830
|
};
|
|
43760
43831
|
export type DevAiAutodevNextScanTargetItemInput = {
|
|
@@ -43893,6 +43964,7 @@ export declare enum DevAiAutodevNextWorkItemState {
|
|
|
43893
43964
|
export type DevAiAutodevNextWorkstream = {
|
|
43894
43965
|
__typename?: 'DevAiAutodevNextWorkstream';
|
|
43895
43966
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
43967
|
+
excludedRepositories?: Maybe<Array<DevAiAutodevNextExcludedRepository>>;
|
|
43896
43968
|
findWorkMode: DevAiAutodevNextWorkstreamFindWorkMode;
|
|
43897
43969
|
id: Scalars['ID']['output'];
|
|
43898
43970
|
lastSweep?: Maybe<DevAiAutodevNextWorkstreamLastSweep>;
|
|
@@ -43960,6 +44032,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
43960
44032
|
pullRequestMessage?: Maybe<Scalars['String']['output']>;
|
|
43961
44033
|
pullRequestPrefix?: Maybe<Scalars['String']['output']>;
|
|
43962
44034
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
44035
|
+
scanSchedules?: Maybe<Array<DevAiAutodevNextScanSchedule>>;
|
|
43963
44036
|
sessionPrompt?: Maybe<Scalars['String']['output']>;
|
|
43964
44037
|
suggestedJql?: Maybe<Scalars['String']['output']>;
|
|
43965
44038
|
taskOverdueAfterDays?: Maybe<Scalars['Int']['output']>;
|
|
@@ -43978,6 +44051,7 @@ export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
43978
44051
|
pullRequestMessage?: InputMaybe<Scalars['String']['input']>;
|
|
43979
44052
|
pullRequestPrefix?: InputMaybe<Scalars['String']['input']>;
|
|
43980
44053
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
44054
|
+
scanSchedules?: InputMaybe<Array<DevAiAutodevNextScanScheduleInput>>;
|
|
43981
44055
|
sessionPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
43982
44056
|
suggestedJql?: InputMaybe<Scalars['String']['input']>;
|
|
43983
44057
|
taskOverdueAfterDays?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -47229,6 +47303,17 @@ export type EcosystemDataClassificationsContext = {
|
|
|
47229
47303
|
hasConstraints?: Maybe<Scalars['Boolean']['output']>;
|
|
47230
47304
|
id: Scalars['ID']['output'];
|
|
47231
47305
|
};
|
|
47306
|
+
export type EcosystemExecuteOrderInput = {
|
|
47307
|
+
invoiceGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
47308
|
+
items: Array<EcosystemOrderItemRequestInput>;
|
|
47309
|
+
orderId: Scalars['String']['input'];
|
|
47310
|
+
transactionAccountId: Scalars['String']['input'];
|
|
47311
|
+
};
|
|
47312
|
+
export type EcosystemExecuteOrderResponse = {
|
|
47313
|
+
__typename?: 'EcosystemExecuteOrderResponse';
|
|
47314
|
+
errors?: Maybe<Array<MutationError>>;
|
|
47315
|
+
success: Scalars['Boolean']['output'];
|
|
47316
|
+
};
|
|
47232
47317
|
export type EcosystemGlobalInstallationConfigInput = {
|
|
47233
47318
|
cloudId: Scalars['ID']['input'];
|
|
47234
47319
|
config: Array<EcosystemGlobalInstallationOverrideInput>;
|
|
@@ -47387,6 +47472,7 @@ export type EcosystemMutation = {
|
|
|
47387
47472
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
47388
47473
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
47389
47474
|
devConsole?: Maybe<DevConsoleMutation>;
|
|
47475
|
+
executeOrder?: Maybe<EcosystemExecuteOrderResponse>;
|
|
47390
47476
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
47391
47477
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
47392
47478
|
forgeObservability?: Maybe<ForgeObservabilityMutation>;
|
|
@@ -47430,6 +47516,9 @@ export type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
|
47430
47516
|
export type EcosystemMutationDeleteUserGrantArgs = {
|
|
47431
47517
|
input: DeleteUserGrantInput;
|
|
47432
47518
|
};
|
|
47519
|
+
export type EcosystemMutationExecuteOrderArgs = {
|
|
47520
|
+
input: EcosystemExecuteOrderInput;
|
|
47521
|
+
};
|
|
47433
47522
|
export type EcosystemMutationForgeAlertsArgs = {
|
|
47434
47523
|
appId: Scalars['ID']['input'];
|
|
47435
47524
|
};
|
|
@@ -47473,6 +47562,34 @@ export type EcosystemMutationUpdateInstallationRemoteRegionArgs = {
|
|
|
47473
47562
|
export type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
47474
47563
|
input: UpdateUserInstallationRulesInput;
|
|
47475
47564
|
};
|
|
47565
|
+
export type EcosystemOrderEntitlementInput = {
|
|
47566
|
+
id: Scalars['String']['input'];
|
|
47567
|
+
version: Scalars['Int']['input'];
|
|
47568
|
+
};
|
|
47569
|
+
export type EcosystemOrderItemChargingDetailsInput = {
|
|
47570
|
+
pricingPlanId: Scalars['String']['input'];
|
|
47571
|
+
};
|
|
47572
|
+
export type EcosystemOrderItemOptedUsageOptionsInput = {
|
|
47573
|
+
chargingDetails?: InputMaybe<EcosystemOrderItemChargingDetailsInput>;
|
|
47574
|
+
trial: EcosystemOrderItemTrialOptionsInput;
|
|
47575
|
+
};
|
|
47576
|
+
export type EcosystemOrderItemRequestInput = {
|
|
47577
|
+
entitlement: EcosystemOrderEntitlementInput;
|
|
47578
|
+
itemId: Scalars['String']['input'];
|
|
47579
|
+
nextBillingAnchorTimestamp?: InputMaybe<Scalars['Float']['input']>;
|
|
47580
|
+
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
47581
|
+
optedUsageOptions?: InputMaybe<EcosystemOrderItemOptedUsageOptionsInput>;
|
|
47582
|
+
reasonCode?: InputMaybe<Scalars['String']['input']>;
|
|
47583
|
+
type: EcosystemOrderType;
|
|
47584
|
+
};
|
|
47585
|
+
export type EcosystemOrderItemTrialOptionsInput = {
|
|
47586
|
+
skipTrial: Scalars['Boolean']['input'];
|
|
47587
|
+
};
|
|
47588
|
+
export declare enum EcosystemOrderType {
|
|
47589
|
+
AmendmentOrder = "AMENDMENT_ORDER",
|
|
47590
|
+
CancellationOrder = "CANCELLATION_ORDER",
|
|
47591
|
+
ReactivationOrder = "REACTIVATION_ORDER"
|
|
47592
|
+
}
|
|
47476
47593
|
export type EcosystemOrgUnit = {
|
|
47477
47594
|
__typename?: 'EcosystemOrgUnit';
|
|
47478
47595
|
id: Scalars['ID']['output'];
|
|
@@ -52844,6 +52961,48 @@ export type GraphInferenceGetSimilarJiraItemsResponse = {
|
|
|
52844
52961
|
meta: GraphInferenceSimilarJiraItemsMeta;
|
|
52845
52962
|
root: GraphInferenceSimilarJiraItemsRoot;
|
|
52846
52963
|
};
|
|
52964
|
+
export type GraphInferenceGraphclawOption = {
|
|
52965
|
+
__typename?: 'GraphInferenceGraphclawOption';
|
|
52966
|
+
enabled: Scalars['Boolean']['output'];
|
|
52967
|
+
id: Scalars['String']['output'];
|
|
52968
|
+
name: Scalars['String']['output'];
|
|
52969
|
+
};
|
|
52970
|
+
export type GraphInferenceInferenceApp = {
|
|
52971
|
+
__typename?: 'GraphInferenceInferenceApp';
|
|
52972
|
+
enabled: Scalars['Boolean']['output'];
|
|
52973
|
+
id: Scalars['String']['output'];
|
|
52974
|
+
inferenceTarget: Scalars['String']['output'];
|
|
52975
|
+
inferenceType: Scalars['String']['output'];
|
|
52976
|
+
name: Scalars['String']['output'];
|
|
52977
|
+
product: Scalars['String']['output'];
|
|
52978
|
+
realtime: Scalars['Boolean']['output'];
|
|
52979
|
+
};
|
|
52980
|
+
export type GraphInferenceInferenceAppAddInput = {
|
|
52981
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52982
|
+
inferenceTarget: Scalars['String']['input'];
|
|
52983
|
+
inferenceType: Scalars['String']['input'];
|
|
52984
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
52985
|
+
product: Scalars['String']['input'];
|
|
52986
|
+
realtime?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52987
|
+
};
|
|
52988
|
+
export type GraphInferenceInferenceAppDeleteInput = {
|
|
52989
|
+
id: Scalars['String']['input'];
|
|
52990
|
+
};
|
|
52991
|
+
export type GraphInferenceInferenceAppEditInput = {
|
|
52992
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52993
|
+
id: Scalars['String']['input'];
|
|
52994
|
+
inferenceTarget?: InputMaybe<Scalars['String']['input']>;
|
|
52995
|
+
inferenceType?: InputMaybe<Scalars['String']['input']>;
|
|
52996
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
52997
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
52998
|
+
realtime?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52999
|
+
};
|
|
53000
|
+
export type GraphInferenceInferenceAppMutationPayload = {
|
|
53001
|
+
__typename?: 'GraphInferenceInferenceAppMutationPayload';
|
|
53002
|
+
app?: Maybe<GraphInferenceInferenceApp>;
|
|
53003
|
+
errors: Array<GraphInferenceMutationError>;
|
|
53004
|
+
success: Scalars['Boolean']['output'];
|
|
53005
|
+
};
|
|
52847
53006
|
export type GraphInferenceInferredProjectContext = {
|
|
52848
53007
|
__typename?: 'GraphInferenceInferredProjectContext';
|
|
52849
53008
|
cloudId: Scalars['String']['output'];
|
|
@@ -52880,6 +53039,7 @@ export type GraphInferenceJiraEntityContextCandidate = {
|
|
|
52880
53039
|
reasonCodes: Array<Scalars['String']['output']>;
|
|
52881
53040
|
score: Scalars['Float']['output'];
|
|
52882
53041
|
scoreMl?: Maybe<Scalars['Float']['output']>;
|
|
53042
|
+
sourceBucketCounts: GraphInferenceJiraEntityContextSourceBucketCounts;
|
|
52883
53043
|
title?: Maybe<Scalars['String']['output']>;
|
|
52884
53044
|
url?: Maybe<Scalars['String']['output']>;
|
|
52885
53045
|
};
|
|
@@ -52917,6 +53077,17 @@ export type GraphInferenceJiraEntityContextRoot = {
|
|
|
52917
53077
|
key?: Maybe<Scalars['String']['output']>;
|
|
52918
53078
|
url?: Maybe<Scalars['String']['output']>;
|
|
52919
53079
|
};
|
|
53080
|
+
export type GraphInferenceJiraEntityContextSourceBucketCounts = {
|
|
53081
|
+
__typename?: 'GraphInferenceJiraEntityContextSourceBucketCounts';
|
|
53082
|
+
issue: Scalars['Int']['output'];
|
|
53083
|
+
memory: Scalars['Int']['output'];
|
|
53084
|
+
space: Scalars['Int']['output'];
|
|
53085
|
+
};
|
|
53086
|
+
export type GraphInferenceMutationError = {
|
|
53087
|
+
__typename?: 'GraphInferenceMutationError';
|
|
53088
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
53089
|
+
message: Scalars['String']['output'];
|
|
53090
|
+
};
|
|
52920
53091
|
export type GraphInferenceRelatedRepoCandidate = {
|
|
52921
53092
|
__typename?: 'GraphInferenceRelatedRepoCandidate';
|
|
52922
53093
|
ari: Scalars['String']['output'];
|
|
@@ -53512,6 +53683,45 @@ export type GraphIntegrationMcpToolNodeEdge = {
|
|
|
53512
53683
|
cursor: Scalars['String']['output'];
|
|
53513
53684
|
node?: Maybe<GraphIntegrationMcpToolNode>;
|
|
53514
53685
|
};
|
|
53686
|
+
export type GraphIntegrationRbacCreateRecordInput = {
|
|
53687
|
+
cloudId: Scalars['ID']['input'];
|
|
53688
|
+
principalId: Scalars['String']['input'];
|
|
53689
|
+
principalType: GraphIntegrationRbacPrincipalType;
|
|
53690
|
+
resourceAri: Scalars['ID']['input'];
|
|
53691
|
+
role: Scalars['String']['input'];
|
|
53692
|
+
workspaceAri: Scalars['ID']['input'];
|
|
53693
|
+
};
|
|
53694
|
+
export type GraphIntegrationRbacCreateRecordPayload = Payload & {
|
|
53695
|
+
__typename?: 'GraphIntegrationRbacCreateRecordPayload';
|
|
53696
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53697
|
+
record?: Maybe<GraphIntegrationRbacRecord>;
|
|
53698
|
+
success: Scalars['Boolean']['output'];
|
|
53699
|
+
};
|
|
53700
|
+
export type GraphIntegrationRbacDeleteRecordInput = {
|
|
53701
|
+
cloudId: Scalars['ID']['input'];
|
|
53702
|
+
principalId: Scalars['String']['input'];
|
|
53703
|
+
principalType: GraphIntegrationRbacPrincipalType;
|
|
53704
|
+
resourceAri: Scalars['ID']['input'];
|
|
53705
|
+
role: Scalars['String']['input'];
|
|
53706
|
+
workspaceAri: Scalars['ID']['input'];
|
|
53707
|
+
};
|
|
53708
|
+
export type GraphIntegrationRbacDeleteRecordPayload = Payload & {
|
|
53709
|
+
__typename?: 'GraphIntegrationRbacDeleteRecordPayload';
|
|
53710
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53711
|
+
success: Scalars['Boolean']['output'];
|
|
53712
|
+
};
|
|
53713
|
+
export declare enum GraphIntegrationRbacPrincipalType {
|
|
53714
|
+
Group = "GROUP",
|
|
53715
|
+
User = "USER"
|
|
53716
|
+
}
|
|
53717
|
+
export type GraphIntegrationRbacRecord = {
|
|
53718
|
+
__typename?: 'GraphIntegrationRbacRecord';
|
|
53719
|
+
id: Scalars['ID']['output'];
|
|
53720
|
+
principalAri: Scalars['ID']['output'];
|
|
53721
|
+
resourceAri: Scalars['ID']['output'];
|
|
53722
|
+
role: Scalars['String']['output'];
|
|
53723
|
+
workspaceAri: Scalars['ID']['output'];
|
|
53724
|
+
};
|
|
53515
53725
|
export type GraphIntegrationRemoveTwgCapabilityContainerInput = {
|
|
53516
53726
|
contextAri: Scalars['ID']['input'];
|
|
53517
53727
|
id: Scalars['String']['input'];
|
|
@@ -53665,6 +53875,7 @@ export declare enum GraphIntegrationStatus {
|
|
|
53665
53875
|
}
|
|
53666
53876
|
export declare enum GraphIntegrationSurface {
|
|
53667
53877
|
Automation = "AUTOMATION",
|
|
53878
|
+
Csm = "CSM",
|
|
53668
53879
|
Pollinator = "POLLINATOR",
|
|
53669
53880
|
Rovo = "ROVO",
|
|
53670
53881
|
RovoAgents = "ROVO_AGENTS",
|
|
@@ -56511,6 +56722,8 @@ export type GraphStore = {
|
|
|
56511
56722
|
atlassianUserCreatedExternalExperimentalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalExperimentalInverseConnection>;
|
|
56512
56723
|
atlassianUserCreatedExternalLead?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalLeadConnection>;
|
|
56513
56724
|
atlassianUserCreatedExternalLeadInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalLeadInverseConnection>;
|
|
56725
|
+
atlassianUserCreatedExternalServicenowBusinessApp?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppConnection>;
|
|
56726
|
+
atlassianUserCreatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseConnection>;
|
|
56514
56727
|
atlassianUserCreatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection>;
|
|
56515
56728
|
atlassianUserCreatedExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseConnection>;
|
|
56516
56729
|
atlassianUserCreatedExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionConnection>;
|
|
@@ -56547,6 +56760,8 @@ export type GraphStore = {
|
|
|
56547
56760
|
atlassianUserOwnsExternalExperimentalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalExperimentalInverseConnection>;
|
|
56548
56761
|
atlassianUserOwnsExternalLead?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalLeadConnection>;
|
|
56549
56762
|
atlassianUserOwnsExternalLeadInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalLeadInverseConnection>;
|
|
56763
|
+
atlassianUserOwnsExternalServicenowBusinessApp?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppConnection>;
|
|
56764
|
+
atlassianUserOwnsExternalServicenowBusinessAppInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseConnection>;
|
|
56550
56765
|
atlassianUserOwnsExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection>;
|
|
56551
56766
|
atlassianUserOwnsExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseConnection>;
|
|
56552
56767
|
atlassianUserOwnsExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionConnection>;
|
|
@@ -56572,6 +56787,8 @@ export type GraphStore = {
|
|
|
56572
56787
|
atlassianUserUpdatedExternalExperimentalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalExperimentalInverseConnection>;
|
|
56573
56788
|
atlassianUserUpdatedExternalLead?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalLeadConnection>;
|
|
56574
56789
|
atlassianUserUpdatedExternalLeadInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalLeadInverseConnection>;
|
|
56790
|
+
atlassianUserUpdatedExternalServicenowBusinessApp?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppConnection>;
|
|
56791
|
+
atlassianUserUpdatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseConnection>;
|
|
56575
56792
|
atlassianUserUpdatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection>;
|
|
56576
56793
|
atlassianUserUpdatedExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseConnection>;
|
|
56577
56794
|
atlassianUserUpdatedExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionConnection>;
|
|
@@ -58300,6 +58517,22 @@ export type GraphStoreAtlassianUserCreatedExternalLeadInverseArgs = {
|
|
|
58300
58517
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58301
58518
|
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalLeadSortInput>;
|
|
58302
58519
|
};
|
|
58520
|
+
export type GraphStoreAtlassianUserCreatedExternalServicenowBusinessAppArgs = {
|
|
58521
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58522
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58523
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58524
|
+
id: Scalars['ID']['input'];
|
|
58525
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58526
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
58527
|
+
};
|
|
58528
|
+
export type GraphStoreAtlassianUserCreatedExternalServicenowBusinessAppInverseArgs = {
|
|
58529
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58530
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58531
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58532
|
+
id: Scalars['ID']['input'];
|
|
58533
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58534
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
58535
|
+
};
|
|
58303
58536
|
export type GraphStoreAtlassianUserCreatedExternalTeamArgs = {
|
|
58304
58537
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58305
58538
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58588,6 +58821,22 @@ export type GraphStoreAtlassianUserOwnsExternalLeadInverseArgs = {
|
|
|
58588
58821
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58589
58822
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalLeadSortInput>;
|
|
58590
58823
|
};
|
|
58824
|
+
export type GraphStoreAtlassianUserOwnsExternalServicenowBusinessAppArgs = {
|
|
58825
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58826
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58827
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58828
|
+
id: Scalars['ID']['input'];
|
|
58829
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58830
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
58831
|
+
};
|
|
58832
|
+
export type GraphStoreAtlassianUserOwnsExternalServicenowBusinessAppInverseArgs = {
|
|
58833
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58834
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58835
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58836
|
+
id: Scalars['ID']['input'];
|
|
58837
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58838
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
58839
|
+
};
|
|
58591
58840
|
export type GraphStoreAtlassianUserOwnsExternalTeamArgs = {
|
|
58592
58841
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58593
58842
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58788,6 +59037,22 @@ export type GraphStoreAtlassianUserUpdatedExternalLeadInverseArgs = {
|
|
|
58788
59037
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58789
59038
|
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalLeadSortInput>;
|
|
58790
59039
|
};
|
|
59040
|
+
export type GraphStoreAtlassianUserUpdatedExternalServicenowBusinessAppArgs = {
|
|
59041
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59042
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59043
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59044
|
+
id: Scalars['ID']['input'];
|
|
59045
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
59046
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
59047
|
+
};
|
|
59048
|
+
export type GraphStoreAtlassianUserUpdatedExternalServicenowBusinessAppInverseArgs = {
|
|
59049
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59050
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59051
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59052
|
+
id: Scalars['ID']['input'];
|
|
59053
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
59054
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
59055
|
+
};
|
|
58791
59056
|
export type GraphStoreAtlassianUserUpdatedExternalTeamArgs = {
|
|
58792
59057
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58793
59058
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67175,6 +67440,9 @@ export type GraphStoreAtlassianUserCreatedExternalExperimentalSortInput = {
|
|
|
67175
67440
|
export type GraphStoreAtlassianUserCreatedExternalLeadSortInput = {
|
|
67176
67441
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67177
67442
|
};
|
|
67443
|
+
export type GraphStoreAtlassianUserCreatedExternalServicenowBusinessAppSortInput = {
|
|
67444
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67445
|
+
};
|
|
67178
67446
|
export type GraphStoreAtlassianUserCreatedExternalTeamSortInput = {
|
|
67179
67447
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67180
67448
|
};
|
|
@@ -67268,6 +67536,9 @@ export type GraphStoreAtlassianUserOwnsExternalExperimentalSortInput = {
|
|
|
67268
67536
|
export type GraphStoreAtlassianUserOwnsExternalLeadSortInput = {
|
|
67269
67537
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67270
67538
|
};
|
|
67539
|
+
export type GraphStoreAtlassianUserOwnsExternalServicenowBusinessAppSortInput = {
|
|
67540
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67541
|
+
};
|
|
67271
67542
|
export type GraphStoreAtlassianUserOwnsExternalTeamSortInput = {
|
|
67272
67543
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67273
67544
|
};
|
|
@@ -67310,6 +67581,9 @@ export type GraphStoreAtlassianUserUpdatedExternalExperimentalSortInput = {
|
|
|
67310
67581
|
export type GraphStoreAtlassianUserUpdatedExternalLeadSortInput = {
|
|
67311
67582
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67312
67583
|
};
|
|
67584
|
+
export type GraphStoreAtlassianUserUpdatedExternalServicenowBusinessAppSortInput = {
|
|
67585
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67586
|
+
};
|
|
67313
67587
|
export type GraphStoreAtlassianUserUpdatedExternalTeamSortInput = {
|
|
67314
67588
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67315
67589
|
};
|
|
@@ -74468,9 +74742,22 @@ export type GraphStoreIncidentLinkedJswIssueSortInput = {
|
|
|
74468
74742
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74469
74743
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
74470
74744
|
};
|
|
74745
|
+
export type GraphStoreInferredEntityMetadata = GraphStoreInferredProjectMetadata;
|
|
74746
|
+
export type GraphStoreInferredEntityResponse = {
|
|
74747
|
+
__typename?: 'GraphStoreInferredEntityResponse';
|
|
74748
|
+
entityType: Scalars['String']['output'];
|
|
74749
|
+
id: Scalars['String']['output'];
|
|
74750
|
+
metadata?: Maybe<GraphStoreInferredEntityMetadata>;
|
|
74751
|
+
workspaceId: Scalars['String']['output'];
|
|
74752
|
+
};
|
|
74471
74753
|
export type GraphStoreInferredProjectLinksEntitySortInput = {
|
|
74472
74754
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74473
74755
|
};
|
|
74756
|
+
export type GraphStoreInferredProjectMetadata = {
|
|
74757
|
+
__typename?: 'GraphStoreInferredProjectMetadata';
|
|
74758
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
74759
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
74760
|
+
};
|
|
74474
74761
|
export type GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
74475
74762
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74476
74763
|
};
|
|
@@ -76941,6 +77228,34 @@ export type GraphStoreSimplifiedAtlassianUserCreatedExternalLeadInverseEdge = {
|
|
|
76941
77228
|
};
|
|
76942
77229
|
export type GraphStoreSimplifiedAtlassianUserCreatedExternalLeadInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76943
77230
|
export type GraphStoreSimplifiedAtlassianUserCreatedExternalLeadUnion = ExternalLead;
|
|
77231
|
+
export type GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppConnection = HasPageInfo & {
|
|
77232
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppConnection';
|
|
77233
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppEdge>>>;
|
|
77234
|
+
pageInfo: PageInfo;
|
|
77235
|
+
};
|
|
77236
|
+
export type GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppEdge = {
|
|
77237
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppEdge';
|
|
77238
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77239
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77240
|
+
id: Scalars['ID']['output'];
|
|
77241
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77242
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppUnion>;
|
|
77243
|
+
};
|
|
77244
|
+
export type GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseConnection = HasPageInfo & {
|
|
77245
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseConnection';
|
|
77246
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseEdge>>>;
|
|
77247
|
+
pageInfo: PageInfo;
|
|
77248
|
+
};
|
|
77249
|
+
export type GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseEdge = {
|
|
77250
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseEdge';
|
|
77251
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77252
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77253
|
+
id: Scalars['ID']['output'];
|
|
77254
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77255
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseUnion>;
|
|
77256
|
+
};
|
|
77257
|
+
export type GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
77258
|
+
export type GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppUnion = ExternalServicenowBusinessApp;
|
|
76944
77259
|
export type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection = HasPageInfo & {
|
|
76945
77260
|
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection';
|
|
76946
77261
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamEdge>>>;
|
|
@@ -77393,6 +77708,34 @@ export type GraphStoreSimplifiedAtlassianUserOwnsExternalLeadInverseEdge = {
|
|
|
77393
77708
|
};
|
|
77394
77709
|
export type GraphStoreSimplifiedAtlassianUserOwnsExternalLeadInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
77395
77710
|
export type GraphStoreSimplifiedAtlassianUserOwnsExternalLeadUnion = ExternalLead;
|
|
77711
|
+
export type GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppConnection = HasPageInfo & {
|
|
77712
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppConnection';
|
|
77713
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppEdge>>>;
|
|
77714
|
+
pageInfo: PageInfo;
|
|
77715
|
+
};
|
|
77716
|
+
export type GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppEdge = {
|
|
77717
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppEdge';
|
|
77718
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77719
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77720
|
+
id: Scalars['ID']['output'];
|
|
77721
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77722
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppUnion>;
|
|
77723
|
+
};
|
|
77724
|
+
export type GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseConnection = HasPageInfo & {
|
|
77725
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseConnection';
|
|
77726
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseEdge>>>;
|
|
77727
|
+
pageInfo: PageInfo;
|
|
77728
|
+
};
|
|
77729
|
+
export type GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseEdge = {
|
|
77730
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseEdge';
|
|
77731
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77732
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77733
|
+
id: Scalars['ID']['output'];
|
|
77734
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77735
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseUnion>;
|
|
77736
|
+
};
|
|
77737
|
+
export type GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
77738
|
+
export type GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppUnion = ExternalServicenowBusinessApp;
|
|
77396
77739
|
export type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection = HasPageInfo & {
|
|
77397
77740
|
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection';
|
|
77398
77741
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamEdge>>>;
|
|
@@ -77743,6 +78086,34 @@ export type GraphStoreSimplifiedAtlassianUserUpdatedExternalLeadInverseEdge = {
|
|
|
77743
78086
|
};
|
|
77744
78087
|
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalLeadInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
77745
78088
|
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalLeadUnion = ExternalLead;
|
|
78089
|
+
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppConnection = HasPageInfo & {
|
|
78090
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppConnection';
|
|
78091
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppEdge>>>;
|
|
78092
|
+
pageInfo: PageInfo;
|
|
78093
|
+
};
|
|
78094
|
+
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppEdge = {
|
|
78095
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppEdge';
|
|
78096
|
+
createdAt: Scalars['DateTime']['output'];
|
|
78097
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
78098
|
+
id: Scalars['ID']['output'];
|
|
78099
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
78100
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppUnion>;
|
|
78101
|
+
};
|
|
78102
|
+
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseConnection = HasPageInfo & {
|
|
78103
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseConnection';
|
|
78104
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseEdge>>>;
|
|
78105
|
+
pageInfo: PageInfo;
|
|
78106
|
+
};
|
|
78107
|
+
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseEdge = {
|
|
78108
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseEdge';
|
|
78109
|
+
createdAt: Scalars['DateTime']['output'];
|
|
78110
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
78111
|
+
id: Scalars['ID']['output'];
|
|
78112
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
78113
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseUnion>;
|
|
78114
|
+
};
|
|
78115
|
+
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
78116
|
+
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppUnion = ExternalServicenowBusinessApp;
|
|
77746
78117
|
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection = HasPageInfo & {
|
|
77747
78118
|
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection';
|
|
77748
78119
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamEdge>>>;
|
|
@@ -90892,6 +91263,8 @@ export type GraphStoreV2 = {
|
|
|
90892
91263
|
externalUserCreatedExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalMessageInverseConnection>;
|
|
90893
91264
|
externalUserCreatedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestConnection>;
|
|
90894
91265
|
externalUserCreatedExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestInverseConnection>;
|
|
91266
|
+
externalUserCreatedExternalServicenowBusinessApp?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppConnection>;
|
|
91267
|
+
externalUserCreatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseConnection>;
|
|
90895
91268
|
externalUserCreatedExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalSoftwareServiceConnection>;
|
|
90896
91269
|
externalUserCreatedExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalSoftwareServiceInverseConnection>;
|
|
90897
91270
|
externalUserCreatedExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalSpaceConnection>;
|
|
@@ -90943,6 +91316,8 @@ export type GraphStoreV2 = {
|
|
|
90943
91316
|
externalUserOwnsExternalLeadInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalLeadInverseConnection>;
|
|
90944
91317
|
externalUserOwnsExternalRepository?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryConnection>;
|
|
90945
91318
|
externalUserOwnsExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseConnection>;
|
|
91319
|
+
externalUserOwnsExternalServicenowBusinessApp?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppConnection>;
|
|
91320
|
+
externalUserOwnsExternalServicenowBusinessAppInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseConnection>;
|
|
90946
91321
|
externalUserOwnsExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceConnection>;
|
|
90947
91322
|
externalUserOwnsExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceInverseConnection>;
|
|
90948
91323
|
externalUserOwnsExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSpaceConnection>;
|
|
@@ -90984,6 +91359,8 @@ export type GraphStoreV2 = {
|
|
|
90984
91359
|
externalUserUpdatedExternalExperimentalInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalExperimentalInverseConnection>;
|
|
90985
91360
|
externalUserUpdatedExternalLead?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalLeadConnection>;
|
|
90986
91361
|
externalUserUpdatedExternalLeadInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalLeadInverseConnection>;
|
|
91362
|
+
externalUserUpdatedExternalServicenowBusinessApp?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppConnection>;
|
|
91363
|
+
externalUserUpdatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseConnection>;
|
|
90987
91364
|
externalUserUpdatedExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceConnection>;
|
|
90988
91365
|
externalUserUpdatedExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceInverseConnection>;
|
|
90989
91366
|
externalUserUpdatedExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSpaceConnection>;
|
|
@@ -91056,6 +91433,7 @@ export type GraphStoreV2 = {
|
|
|
91056
91433
|
focusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverseConnection>;
|
|
91057
91434
|
focusStrategicPlanScenarioInvestmentHasInvestmentEntity?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityConnection>;
|
|
91058
91435
|
focusStrategicPlanScenarioInvestmentHasInvestmentEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseConnection>;
|
|
91436
|
+
inferredEntities?: Maybe<Array<GraphStoreInferredEntityResponse>>;
|
|
91059
91437
|
inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
91060
91438
|
inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
91061
91439
|
jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
|
|
@@ -94926,6 +95304,20 @@ export type GraphStoreV2ExternalUserCreatedExternalPullRequestInverseArgs = {
|
|
|
94926
95304
|
id: Scalars['ID']['input'];
|
|
94927
95305
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalPullRequestSortInput>;
|
|
94928
95306
|
};
|
|
95307
|
+
export type GraphStoreV2ExternalUserCreatedExternalServicenowBusinessAppArgs = {
|
|
95308
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95309
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95310
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95311
|
+
id: Scalars['ID']['input'];
|
|
95312
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
95313
|
+
};
|
|
95314
|
+
export type GraphStoreV2ExternalUserCreatedExternalServicenowBusinessAppInverseArgs = {
|
|
95315
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95316
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95317
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95318
|
+
id: Scalars['ID']['input'];
|
|
95319
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
95320
|
+
};
|
|
94929
95321
|
export type GraphStoreV2ExternalUserCreatedExternalSoftwareServiceArgs = {
|
|
94930
95322
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
94931
95323
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -95283,6 +95675,20 @@ export type GraphStoreV2ExternalUserOwnsExternalRepositoryInverseArgs = {
|
|
|
95283
95675
|
id: Scalars['ID']['input'];
|
|
95284
95676
|
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalRepositorySortInput>;
|
|
95285
95677
|
};
|
|
95678
|
+
export type GraphStoreV2ExternalUserOwnsExternalServicenowBusinessAppArgs = {
|
|
95679
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95680
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95681
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95682
|
+
id: Scalars['ID']['input'];
|
|
95683
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
95684
|
+
};
|
|
95685
|
+
export type GraphStoreV2ExternalUserOwnsExternalServicenowBusinessAppInverseArgs = {
|
|
95686
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95687
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95688
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95689
|
+
id: Scalars['ID']['input'];
|
|
95690
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
95691
|
+
};
|
|
95286
95692
|
export type GraphStoreV2ExternalUserOwnsExternalSoftwareServiceArgs = {
|
|
95287
95693
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95288
95694
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -95570,6 +95976,20 @@ export type GraphStoreV2ExternalUserUpdatedExternalLeadInverseArgs = {
|
|
|
95570
95976
|
id: Scalars['ID']['input'];
|
|
95571
95977
|
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalLeadSortInput>;
|
|
95572
95978
|
};
|
|
95979
|
+
export type GraphStoreV2ExternalUserUpdatedExternalServicenowBusinessAppArgs = {
|
|
95980
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95981
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95982
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95983
|
+
id: Scalars['ID']['input'];
|
|
95984
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
95985
|
+
};
|
|
95986
|
+
export type GraphStoreV2ExternalUserUpdatedExternalServicenowBusinessAppInverseArgs = {
|
|
95987
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95988
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95989
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95990
|
+
id: Scalars['ID']['input'];
|
|
95991
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
95992
|
+
};
|
|
95573
95993
|
export type GraphStoreV2ExternalUserUpdatedExternalSoftwareServiceArgs = {
|
|
95574
95994
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95575
95995
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -96074,6 +96494,9 @@ export type GraphStoreV2FocusStrategicPlanScenarioInvestmentHasInvestmentEntityI
|
|
|
96074
96494
|
id: Scalars['ID']['input'];
|
|
96075
96495
|
sort?: InputMaybe<GraphStoreV2FocusStrategicPlanScenarioInvestmentHasInvestmentEntitySortInput>;
|
|
96076
96496
|
};
|
|
96497
|
+
export type GraphStoreV2InferredEntitiesArgs = {
|
|
96498
|
+
ids: Array<Scalars['String']['input']>;
|
|
96499
|
+
};
|
|
96077
96500
|
export type GraphStoreV2InferredProjectLinksEntityArgs = {
|
|
96078
96501
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96079
96502
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -99524,6 +99947,9 @@ export type GraphStoreV2ExternalUserCreatedExternalMessageSortInput = {
|
|
|
99524
99947
|
export type GraphStoreV2ExternalUserCreatedExternalPullRequestSortInput = {
|
|
99525
99948
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99526
99949
|
};
|
|
99950
|
+
export type GraphStoreV2ExternalUserCreatedExternalServicenowBusinessAppSortInput = {
|
|
99951
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99952
|
+
};
|
|
99527
99953
|
export type GraphStoreV2ExternalUserCreatedExternalSoftwareServiceSortInput = {
|
|
99528
99954
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99529
99955
|
};
|
|
@@ -99602,6 +100028,9 @@ export type GraphStoreV2ExternalUserOwnsExternalLeadSortInput = {
|
|
|
99602
100028
|
export type GraphStoreV2ExternalUserOwnsExternalRepositorySortInput = {
|
|
99603
100029
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99604
100030
|
};
|
|
100031
|
+
export type GraphStoreV2ExternalUserOwnsExternalServicenowBusinessAppSortInput = {
|
|
100032
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
100033
|
+
};
|
|
99605
100034
|
export type GraphStoreV2ExternalUserOwnsExternalSoftwareServiceSortInput = {
|
|
99606
100035
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99607
100036
|
};
|
|
@@ -99665,6 +100094,9 @@ export type GraphStoreV2ExternalUserUpdatedExternalExperimentalSortInput = {
|
|
|
99665
100094
|
export type GraphStoreV2ExternalUserUpdatedExternalLeadSortInput = {
|
|
99666
100095
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99667
100096
|
};
|
|
100097
|
+
export type GraphStoreV2ExternalUserUpdatedExternalServicenowBusinessAppSortInput = {
|
|
100098
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
100099
|
+
};
|
|
99668
100100
|
export type GraphStoreV2ExternalUserUpdatedExternalSoftwareServiceSortInput = {
|
|
99669
100101
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99670
100102
|
};
|
|
@@ -108751,6 +109183,34 @@ export type GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestInverseE
|
|
|
108751
109183
|
};
|
|
108752
109184
|
export type GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
108753
109185
|
export type GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
109186
|
+
export type GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppConnection = HasPageInfo & {
|
|
109187
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppConnection';
|
|
109188
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppEdge>>>;
|
|
109189
|
+
pageInfo: PageInfo;
|
|
109190
|
+
};
|
|
109191
|
+
export type GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppEdge = {
|
|
109192
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppEdge';
|
|
109193
|
+
createdAt: Scalars['DateTime']['output'];
|
|
109194
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
109195
|
+
id: Scalars['ID']['output'];
|
|
109196
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
109197
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppUnion>;
|
|
109198
|
+
};
|
|
109199
|
+
export type GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseConnection = HasPageInfo & {
|
|
109200
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseConnection';
|
|
109201
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseEdge>>>;
|
|
109202
|
+
pageInfo: PageInfo;
|
|
109203
|
+
};
|
|
109204
|
+
export type GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseEdge = {
|
|
109205
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseEdge';
|
|
109206
|
+
createdAt: Scalars['DateTime']['output'];
|
|
109207
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
109208
|
+
id: Scalars['ID']['output'];
|
|
109209
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
109210
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseUnion>;
|
|
109211
|
+
};
|
|
109212
|
+
export type GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
109213
|
+
export type GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppUnion = ExternalServicenowBusinessApp;
|
|
108754
109214
|
export type GraphStoreV2SimplifiedExternalUserCreatedExternalSoftwareServiceConnection = HasPageInfo & {
|
|
108755
109215
|
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalSoftwareServiceConnection';
|
|
108756
109216
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalSoftwareServiceEdge>>>;
|
|
@@ -109465,6 +109925,34 @@ export type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseEdge
|
|
|
109465
109925
|
};
|
|
109466
109926
|
export type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
109467
109927
|
export type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
109928
|
+
export type GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppConnection = HasPageInfo & {
|
|
109929
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppConnection';
|
|
109930
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppEdge>>>;
|
|
109931
|
+
pageInfo: PageInfo;
|
|
109932
|
+
};
|
|
109933
|
+
export type GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppEdge = {
|
|
109934
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppEdge';
|
|
109935
|
+
createdAt: Scalars['DateTime']['output'];
|
|
109936
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
109937
|
+
id: Scalars['ID']['output'];
|
|
109938
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
109939
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppUnion>;
|
|
109940
|
+
};
|
|
109941
|
+
export type GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseConnection = HasPageInfo & {
|
|
109942
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseConnection';
|
|
109943
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseEdge>>>;
|
|
109944
|
+
pageInfo: PageInfo;
|
|
109945
|
+
};
|
|
109946
|
+
export type GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseEdge = {
|
|
109947
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseEdge';
|
|
109948
|
+
createdAt: Scalars['DateTime']['output'];
|
|
109949
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
109950
|
+
id: Scalars['ID']['output'];
|
|
109951
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
109952
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseUnion>;
|
|
109953
|
+
};
|
|
109954
|
+
export type GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
109955
|
+
export type GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppUnion = ExternalServicenowBusinessApp;
|
|
109468
109956
|
export type GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceConnection = HasPageInfo & {
|
|
109469
109957
|
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceConnection';
|
|
109470
109958
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceEdge>>>;
|
|
@@ -110039,6 +110527,34 @@ export type GraphStoreV2SimplifiedExternalUserUpdatedExternalLeadInverseEdge = {
|
|
|
110039
110527
|
};
|
|
110040
110528
|
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalLeadInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
110041
110529
|
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalLeadUnion = ExternalLead;
|
|
110530
|
+
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppConnection = HasPageInfo & {
|
|
110531
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppConnection';
|
|
110532
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppEdge>>>;
|
|
110533
|
+
pageInfo: PageInfo;
|
|
110534
|
+
};
|
|
110535
|
+
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppEdge = {
|
|
110536
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppEdge';
|
|
110537
|
+
createdAt: Scalars['DateTime']['output'];
|
|
110538
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
110539
|
+
id: Scalars['ID']['output'];
|
|
110540
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
110541
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppUnion>;
|
|
110542
|
+
};
|
|
110543
|
+
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseConnection = HasPageInfo & {
|
|
110544
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseConnection';
|
|
110545
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseEdge>>>;
|
|
110546
|
+
pageInfo: PageInfo;
|
|
110547
|
+
};
|
|
110548
|
+
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseEdge = {
|
|
110549
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseEdge';
|
|
110550
|
+
createdAt: Scalars['DateTime']['output'];
|
|
110551
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
110552
|
+
id: Scalars['ID']['output'];
|
|
110553
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
110554
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseUnion>;
|
|
110555
|
+
};
|
|
110556
|
+
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
110557
|
+
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppUnion = ExternalServicenowBusinessApp;
|
|
110042
110558
|
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceConnection = HasPageInfo & {
|
|
110043
110559
|
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceConnection';
|
|
110044
110560
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceEdge>>>;
|
|
@@ -123474,6 +123990,7 @@ export declare enum JiraCollapsibleSection {
|
|
|
123474
123990
|
Attachments = "ATTACHMENTS",
|
|
123475
123991
|
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
123476
123992
|
Description = "DESCRIPTION",
|
|
123993
|
+
IncidentSuggestedResourcesServicedesk = "INCIDENT_SUGGESTED_RESOURCES_SERVICEDESK",
|
|
123477
123994
|
IncidentSummaryServicedesk = "INCIDENT_SUMMARY_SERVICEDESK",
|
|
123478
123995
|
IncidentTimelineServicedesk = "INCIDENT_TIMELINE_SERVICEDESK",
|
|
123479
123996
|
LinkedWorkItem = "LINKED_WORK_ITEM",
|
|
@@ -126827,6 +127344,12 @@ export type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
126827
127344
|
type: Scalars['String']['output'];
|
|
126828
127345
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
126829
127346
|
};
|
|
127347
|
+
export type JiraForgeDatetimeFieldPayload = Payload & {
|
|
127348
|
+
__typename?: 'JiraForgeDatetimeFieldPayload';
|
|
127349
|
+
errors?: Maybe<Array<MutationError>>;
|
|
127350
|
+
field?: Maybe<JiraForgeDatetimeField>;
|
|
127351
|
+
success: Scalars['Boolean']['output'];
|
|
127352
|
+
};
|
|
126830
127353
|
export declare enum JiraForgeEnvironmentType {
|
|
126831
127354
|
Development = "DEVELOPMENT",
|
|
126832
127355
|
Production = "PRODUCTION",
|
|
@@ -126892,6 +127415,12 @@ export type JiraForgeGroupFieldGroupsArgs = {
|
|
|
126892
127415
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126893
127416
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
126894
127417
|
};
|
|
127418
|
+
export type JiraForgeGroupFieldPayload = Payload & {
|
|
127419
|
+
__typename?: 'JiraForgeGroupFieldPayload';
|
|
127420
|
+
errors?: Maybe<Array<MutationError>>;
|
|
127421
|
+
field?: Maybe<JiraForgeGroupField>;
|
|
127422
|
+
success: Scalars['Boolean']['output'];
|
|
127423
|
+
};
|
|
126895
127424
|
export type JiraForgeGroupsField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
126896
127425
|
__typename?: 'JiraForgeGroupsField';
|
|
126897
127426
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -127149,6 +127678,12 @@ export type JiraForgeUserFieldUsersArgs = {
|
|
|
127149
127678
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
127150
127679
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
127151
127680
|
};
|
|
127681
|
+
export type JiraForgeUserFieldPayload = Payload & {
|
|
127682
|
+
__typename?: 'JiraForgeUserFieldPayload';
|
|
127683
|
+
errors?: Maybe<Array<MutationError>>;
|
|
127684
|
+
field?: Maybe<JiraForgeUserField>;
|
|
127685
|
+
success: Scalars['Boolean']['output'];
|
|
127686
|
+
};
|
|
127152
127687
|
export type JiraForgeUsersField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraSelectedUsersField & JiraUserIssueFieldConfiguration & Node & {
|
|
127153
127688
|
__typename?: 'JiraForgeUsersField';
|
|
127154
127689
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -127488,6 +128023,15 @@ export type JiraFormulaReferencedFieldType = {
|
|
|
127488
128023
|
jfxType?: Maybe<JiraFormulaFieldParameterType>;
|
|
127489
128024
|
key: Scalars['String']['output'];
|
|
127490
128025
|
};
|
|
128026
|
+
export declare enum JiraGicFallbackReason {
|
|
128027
|
+
AdminDisabledModernGic = "ADMIN_DISABLED_MODERN_GIC",
|
|
128028
|
+
CustomCreateScreenConfigured = "CUSTOM_CREATE_SCREEN_CONFIGURED",
|
|
128029
|
+
MultipleTabsConfigured = "MULTIPLE_TABS_CONFIGURED",
|
|
128030
|
+
RequiredFieldUnsupportedType = "REQUIRED_FIELD_UNSUPPORTED_TYPE",
|
|
128031
|
+
TooManyRequiredFields = "TOO_MANY_REQUIRED_FIELDS",
|
|
128032
|
+
UiModificationsEnabled = "UI_MODIFICATIONS_ENABLED",
|
|
128033
|
+
Unknown = "UNKNOWN"
|
|
128034
|
+
}
|
|
127491
128035
|
export type JiraGenerateIssueAiSummaryInput = {
|
|
127492
128036
|
issueId: Scalars['ID']['input'];
|
|
127493
128037
|
};
|
|
@@ -128275,6 +128819,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
128275
128819
|
id: Scalars['ID']['output'];
|
|
128276
128820
|
incidentActionItems?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
128277
128821
|
incidentLinkedJswIssues?: Maybe<GraphIncidentLinkedJswIssueRelationshipConnection>;
|
|
128822
|
+
incidentSuggestedResources?: Maybe<AiOpsIncidentSuggestedResourcesResult>;
|
|
128278
128823
|
incidentSuggestion?: Maybe<AiOpsIncidentSuggestionAsyncResult>;
|
|
128279
128824
|
incidentTimeline?: Maybe<AiOpsIncidentTimelineIccResponse>;
|
|
128280
128825
|
isAboveThreshold?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -129100,6 +129645,17 @@ export type JiraIssueContextPanelEdge = {
|
|
|
129100
129645
|
cursor: Scalars['String']['output'];
|
|
129101
129646
|
node?: Maybe<JiraIssueViewContextPanel>;
|
|
129102
129647
|
};
|
|
129648
|
+
export type JiraIssueCreateAdditionalServices = {
|
|
129649
|
+
__typename?: 'JiraIssueCreateAdditionalServices';
|
|
129650
|
+
services?: Maybe<JiraIssueCreateServiceConnection>;
|
|
129651
|
+
};
|
|
129652
|
+
export type JiraIssueCreateAdditionalServicesServicesArgs = {
|
|
129653
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129654
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
129655
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129656
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129657
|
+
};
|
|
129658
|
+
export type JiraIssueCreateAdditionalServicesResult = JiraIssueCreateAdditionalServices | QueryError;
|
|
129103
129659
|
export type JiraIssueCreateFieldValidationRule = {
|
|
129104
129660
|
errorMessage?: InputMaybe<Scalars['String']['input']>;
|
|
129105
129661
|
fields: Array<Scalars['String']['input']>;
|
|
@@ -129108,6 +129664,20 @@ export type JiraIssueCreateFieldValidationRule = {
|
|
|
129108
129664
|
export declare enum JiraIssueCreateFieldValidationType {
|
|
129109
129665
|
Fieldrequiredvalidator = "FIELDREQUIREDVALIDATOR"
|
|
129110
129666
|
}
|
|
129667
|
+
export type JiraIssueCreateFields = {
|
|
129668
|
+
__typename?: 'JiraIssueCreateFields';
|
|
129669
|
+
errors: Array<QueryError>;
|
|
129670
|
+
fallbackReason?: Maybe<Array<JiraGicFallbackReason>>;
|
|
129671
|
+
fields?: Maybe<JiraIssueFieldConnection>;
|
|
129672
|
+
forceLegacyCreateExperience?: Maybe<Scalars['Boolean']['output']>;
|
|
129673
|
+
miniMode?: Maybe<Scalars['Boolean']['output']>;
|
|
129674
|
+
uiModifications: Array<JiraAppUiModifications>;
|
|
129675
|
+
};
|
|
129676
|
+
export declare enum JiraIssueCreateFieldsFilter {
|
|
129677
|
+
AdminConfiguredFields = "ADMIN_CONFIGURED_FIELDS",
|
|
129678
|
+
UserConfiguredFields = "USER_CONFIGURED_FIELDS"
|
|
129679
|
+
}
|
|
129680
|
+
export type JiraIssueCreateFieldsResult = JiraIssueCreateFields | QueryError;
|
|
129111
129681
|
export type JiraIssueCreateInput = {
|
|
129112
129682
|
fields: JiraIssueFieldsInput;
|
|
129113
129683
|
issueTypeId: Scalars['ID']['input'];
|
|
@@ -129132,13 +129702,49 @@ export type JiraIssueCreatePayload = Payload & {
|
|
|
129132
129702
|
issue?: Maybe<JiraIssue>;
|
|
129133
129703
|
success: Scalars['Boolean']['output'];
|
|
129134
129704
|
};
|
|
129705
|
+
export type JiraIssueCreateProformaConfiguration = JiraIssueCreateService & {
|
|
129706
|
+
__typename?: 'JiraIssueCreateProformaConfiguration';
|
|
129707
|
+
proforma?: Maybe<JiraIssueCreateProformaForms>;
|
|
129708
|
+
serviceId: Scalars['String']['output'];
|
|
129709
|
+
};
|
|
129710
|
+
export type JiraIssueCreateProformaForms = {
|
|
129711
|
+
__typename?: 'JiraIssueCreateProformaForms';
|
|
129712
|
+
hasProformaForm?: Maybe<Scalars['Boolean']['output']>;
|
|
129713
|
+
portalLink?: Maybe<Scalars['String']['output']>;
|
|
129714
|
+
};
|
|
129135
129715
|
export type JiraIssueCreateRankInput = {
|
|
129136
129716
|
afterIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
129137
129717
|
beforeIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
129138
129718
|
};
|
|
129719
|
+
export type JiraIssueCreateService = {
|
|
129720
|
+
serviceId: Scalars['String']['output'];
|
|
129721
|
+
};
|
|
129722
|
+
export type JiraIssueCreateServiceConnection = {
|
|
129723
|
+
__typename?: 'JiraIssueCreateServiceConnection';
|
|
129724
|
+
edges?: Maybe<Array<Maybe<JiraIssueCreateServiceEdge>>>;
|
|
129725
|
+
pageInfo: PageInfo;
|
|
129726
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
129727
|
+
};
|
|
129728
|
+
export type JiraIssueCreateServiceEdge = {
|
|
129729
|
+
__typename?: 'JiraIssueCreateServiceEdge';
|
|
129730
|
+
cursor: Scalars['String']['output'];
|
|
129731
|
+
node?: Maybe<JiraIssueCreateService>;
|
|
129732
|
+
};
|
|
129139
129733
|
export type JiraIssueCreateValidationRule = {
|
|
129140
129734
|
fieldValidations?: InputMaybe<Array<JiraIssueCreateFieldValidationRule>>;
|
|
129141
129735
|
};
|
|
129736
|
+
export type JiraIssueCreateWatchersConfiguration = JiraIssueCreateService & {
|
|
129737
|
+
__typename?: 'JiraIssueCreateWatchersConfiguration';
|
|
129738
|
+
defaultWatchers?: Maybe<JiraUserConnection>;
|
|
129739
|
+
permissions?: Maybe<JiraWatchersPermissions>;
|
|
129740
|
+
serviceId: Scalars['String']['output'];
|
|
129741
|
+
};
|
|
129742
|
+
export type JiraIssueCreateWatchersConfigurationDefaultWatchersArgs = {
|
|
129743
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129744
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
129745
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129746
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129747
|
+
};
|
|
129142
129748
|
export type JiraIssueCreatedProformaFormsField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
129143
129749
|
__typename?: 'JiraIssueCreatedProformaFormsField';
|
|
129144
129750
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -129604,6 +130210,13 @@ export type JiraIssueFieldUnsupportedErrorExtension = QueryErrorExtension & {
|
|
|
129604
130210
|
isUserPreferredField?: Maybe<Scalars['Boolean']['output']>;
|
|
129605
130211
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
129606
130212
|
};
|
|
130213
|
+
export type JiraIssueFieldValueValidationErrorExtension = QueryErrorExtension & {
|
|
130214
|
+
__typename?: 'JiraIssueFieldValueValidationErrorExtension';
|
|
130215
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
130216
|
+
inputValue?: Maybe<Scalars['String']['output']>;
|
|
130217
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
130218
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
130219
|
+
};
|
|
129607
130220
|
export type JiraIssueFieldsByContainerType = {
|
|
129608
130221
|
__typename?: 'JiraIssueFieldsByContainerType';
|
|
129609
130222
|
containerType: JiraIssueItemSystemContainerType;
|
|
@@ -130248,6 +130861,7 @@ export type JiraIssueSearchAggregationConfigInput = {
|
|
|
130248
130861
|
aggregationFields?: InputMaybe<Array<JiraIssueSearchFieldAggregationInput>>;
|
|
130249
130862
|
canEnableAggregation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130250
130863
|
fieldAggregationQueryInput?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
130864
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
130251
130865
|
};
|
|
130252
130866
|
export type JiraIssueSearchAggregationConfigSettings = {
|
|
130253
130867
|
__typename?: 'JiraIssueSearchAggregationConfigSettings';
|
|
@@ -130338,6 +130952,7 @@ export type JiraIssueSearchByJqlContentByFieldSetIdsArgs = {
|
|
|
130338
130952
|
};
|
|
130339
130953
|
export type JiraIssueSearchByJqlResult = JiraIssueSearchByJql | QueryError;
|
|
130340
130954
|
export type JiraIssueSearchChildIssuesInput = {
|
|
130955
|
+
applyJqlFilter?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130341
130956
|
filterByProjectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
130342
130957
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
130343
130958
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -132684,6 +133299,7 @@ export type JiraLoomWorkItemUpdateSuggestionItem = {
|
|
|
132684
133299
|
messageId?: Maybe<Scalars['ID']['output']>;
|
|
132685
133300
|
product?: Maybe<Scalars['String']['output']>;
|
|
132686
133301
|
recipientAgentNamedId?: Maybe<Scalars['String']['output']>;
|
|
133302
|
+
sourceUrl?: Maybe<Scalars['String']['output']>;
|
|
132687
133303
|
updates?: Maybe<Array<JiraLoomWorkItemUpdate>>;
|
|
132688
133304
|
};
|
|
132689
133305
|
export type JiraLoomWorkItemUpdateSuggestions = JiraBaseNextActionsEntity & {
|
|
@@ -133309,9 +133925,12 @@ export type JiraMutation = {
|
|
|
133309
133925
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
133310
133926
|
updateFlagField?: Maybe<JiraUpdateFlagFieldPayload>;
|
|
133311
133927
|
updateForgeDateField?: Maybe<JiraForgeDateFieldPayload>;
|
|
133928
|
+
updateForgeDateTimeField?: Maybe<JiraForgeDatetimeFieldPayload>;
|
|
133929
|
+
updateForgeGroupField?: Maybe<JiraForgeGroupFieldPayload>;
|
|
133312
133930
|
updateForgeNumberField?: Maybe<JiraForgeNumberFieldPayload>;
|
|
133313
133931
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
133314
133932
|
updateForgeStringField?: Maybe<JiraForgeStringFieldPayload>;
|
|
133933
|
+
updateForgeUserField?: Maybe<JiraForgeUserFieldPayload>;
|
|
133315
133934
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
133316
133935
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
133317
133936
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
@@ -133937,6 +134556,13 @@ export type JiraMutationUpdateFlagFieldArgs = {
|
|
|
133937
134556
|
export type JiraMutationUpdateForgeDateFieldArgs = {
|
|
133938
134557
|
input: JiraUpdateDateFieldInput;
|
|
133939
134558
|
};
|
|
134559
|
+
export type JiraMutationUpdateForgeDateTimeFieldArgs = {
|
|
134560
|
+
input: JiraUpdateDateTimeFieldInput;
|
|
134561
|
+
};
|
|
134562
|
+
export type JiraMutationUpdateForgeGroupFieldArgs = {
|
|
134563
|
+
cloudId: Scalars['ID']['input'];
|
|
134564
|
+
input: JiraUpdateForgeSingleGroupPickerFieldInput;
|
|
134565
|
+
};
|
|
133940
134566
|
export type JiraMutationUpdateForgeNumberFieldArgs = {
|
|
133941
134567
|
input: JiraUpdateNumberFieldInput;
|
|
133942
134568
|
};
|
|
@@ -133946,6 +134572,10 @@ export type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
|
133946
134572
|
export type JiraMutationUpdateForgeStringFieldArgs = {
|
|
133947
134573
|
input: JiraUpdateSingleLineTextFieldInput;
|
|
133948
134574
|
};
|
|
134575
|
+
export type JiraMutationUpdateForgeUserFieldArgs = {
|
|
134576
|
+
cloudId: Scalars['ID']['input'];
|
|
134577
|
+
input: JiraUpdateForgeSingleUserPickerFieldInput;
|
|
134578
|
+
};
|
|
133949
134579
|
export type JiraMutationUpdateFormattingRuleArgs = {
|
|
133950
134580
|
input: JiraUpdateFormattingRuleInput;
|
|
133951
134581
|
};
|
|
@@ -137257,6 +137887,7 @@ export type JiraQuery = {
|
|
|
137257
137887
|
__typename?: 'JiraQuery';
|
|
137258
137888
|
activeBackgroundDetails?: Maybe<JiraActiveBackgroundDetailsResult>;
|
|
137259
137889
|
advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
|
|
137890
|
+
agentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
137260
137891
|
aiAgentSessionEnrichment?: Maybe<JiraAiAgentSession>;
|
|
137261
137892
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
137262
137893
|
allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
|
|
@@ -137529,6 +138160,15 @@ export type JiraQueryActiveBackgroundDetailsArgs = {
|
|
|
137529
138160
|
export type JiraQueryAdvancedRoadmapsNavigationArgs = {
|
|
137530
138161
|
cloudId: Scalars['ID']['input'];
|
|
137531
138162
|
};
|
|
138163
|
+
export type JiraQueryAgentSessionsArgs = {
|
|
138164
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
138165
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
138166
|
+
cloudId: Scalars['ID']['input'];
|
|
138167
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138168
|
+
isDeleted: Scalars['Boolean']['input'];
|
|
138169
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
138170
|
+
state?: InputMaybe<JiraAgentSessionStateCategory>;
|
|
138171
|
+
};
|
|
137532
138172
|
export type JiraQueryAiAgentSessionEnrichmentArgs = {
|
|
137533
138173
|
input: JiraAiAgentSessionEnrichmentInput;
|
|
137534
138174
|
};
|
|
@@ -141895,6 +142535,7 @@ export type JiraServiceManagementSlaError = {
|
|
|
141895
142535
|
};
|
|
141896
142536
|
export declare enum JiraServiceManagementSlaErrorCode {
|
|
141897
142537
|
GoalNotFound = "GOAL_NOT_FOUND",
|
|
142538
|
+
RestrictedToAgents = "RESTRICTED_TO_AGENTS",
|
|
141898
142539
|
TimeMetricsNotFound = "TIME_METRICS_NOT_FOUND",
|
|
141899
142540
|
Unrecognized = "UNRECOGNIZED"
|
|
141900
142541
|
}
|
|
@@ -143323,6 +143964,7 @@ export type JiraSpreadsheetGroupConnection = {
|
|
|
143323
143964
|
groupByField?: Maybe<Scalars['String']['output']>;
|
|
143324
143965
|
jql?: Maybe<Scalars['String']['output']>;
|
|
143325
143966
|
pageInfo: PageInfo;
|
|
143967
|
+
searchWarnings?: Maybe<Array<JiraIssueSearchWarning>>;
|
|
143326
143968
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
143327
143969
|
};
|
|
143328
143970
|
export type JiraSpreadsheetGroupEdge = {
|
|
@@ -144463,8 +145105,10 @@ export type JiraTimelineViewSettings = {
|
|
|
144463
145105
|
hideDependencies?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144464
145106
|
hideDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144465
145107
|
hideReleases?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145108
|
+
hideUnParentedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144466
145109
|
hideWarnings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144467
145110
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
145111
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
144468
145112
|
rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
|
|
144469
145113
|
};
|
|
144470
145114
|
export type JiraTimelineVirtualField = {
|
|
@@ -144583,6 +145227,9 @@ export type JiraTransition = Node & {
|
|
|
144583
145227
|
to?: Maybe<JiraStatus>;
|
|
144584
145228
|
transitionId?: Maybe<Scalars['Int']['output']>;
|
|
144585
145229
|
};
|
|
145230
|
+
export type JiraTransitionAgentRulesArgs = {
|
|
145231
|
+
agentAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
145232
|
+
};
|
|
144586
145233
|
export type JiraTransitionAgent = {
|
|
144587
145234
|
__typename?: 'JiraTransitionAgent';
|
|
144588
145235
|
accountId: Scalars['ID']['output'];
|
|
@@ -144950,6 +145597,10 @@ export type JiraUpdateForgeSingleGroupPickerFieldInput = {
|
|
|
144950
145597
|
id: Scalars['ID']['input'];
|
|
144951
145598
|
operation: JiraForgeSingleGroupPickerFieldOperationInput;
|
|
144952
145599
|
};
|
|
145600
|
+
export type JiraUpdateForgeSingleUserPickerFieldInput = {
|
|
145601
|
+
id: Scalars['ID']['input'];
|
|
145602
|
+
operation: JiraSingleSelectUserPickerFieldOperationInput;
|
|
145603
|
+
};
|
|
144953
145604
|
export type JiraUpdateFormattingRuleInput = {
|
|
144954
145605
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144955
145606
|
color?: InputMaybe<JiraFormattingColor>;
|
|
@@ -145590,6 +146241,7 @@ export type JiraUserPreferences = {
|
|
|
145590
146241
|
showRedactionChangeBoardingOnIssueViewAsViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
145591
146242
|
showUnscheduledIssuesCalendarPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
145592
146243
|
workItemFavouriteFields?: Maybe<Scalars['String']['output']>;
|
|
146244
|
+
workItemViewAdaptiveLayoutSectionsOrder?: Maybe<Scalars['String']['output']>;
|
|
145593
146245
|
workItemViewContextGroupSections?: Maybe<Scalars['String']['output']>;
|
|
145594
146246
|
workItemViewFavouriteFields?: Maybe<Scalars['String']['output']>;
|
|
145595
146247
|
};
|
|
@@ -145628,6 +146280,9 @@ export type JiraUserPreferencesWorkItemFavouriteFieldsArgs = {
|
|
|
145628
146280
|
issueTypeId: Scalars['String']['input'];
|
|
145629
146281
|
projectKey: Scalars['String']['input'];
|
|
145630
146282
|
};
|
|
146283
|
+
export type JiraUserPreferencesWorkItemViewAdaptiveLayoutSectionsOrderArgs = {
|
|
146284
|
+
issueKey: Scalars['String']['input'];
|
|
146285
|
+
};
|
|
145631
146286
|
export type JiraUserPreferencesWorkItemViewContextGroupSectionsArgs = {
|
|
145632
146287
|
issueKey: Scalars['String']['input'];
|
|
145633
146288
|
};
|
|
@@ -146372,6 +147027,13 @@ export type JiraWatch = {
|
|
|
146372
147027
|
count?: Maybe<Scalars['Long']['output']>;
|
|
146373
147028
|
isWatching?: Maybe<Scalars['Boolean']['output']>;
|
|
146374
147029
|
};
|
|
147030
|
+
export type JiraWatchersPermissions = {
|
|
147031
|
+
__typename?: 'JiraWatchersPermissions';
|
|
147032
|
+
canManageWatchers?: Maybe<Scalars['Boolean']['output']>;
|
|
147033
|
+
canViewWatchers?: Maybe<Scalars['Boolean']['output']>;
|
|
147034
|
+
isAutoWatchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
147035
|
+
isWatchersEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
147036
|
+
};
|
|
146375
147037
|
export type JiraWatchesField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraSelectedUsersField & JiraUserIssueFieldConfiguration & Node & {
|
|
146376
147038
|
__typename?: 'JiraWatchesField';
|
|
146377
147039
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -150189,6 +150851,8 @@ export type KitsuneInsight = Node & {
|
|
|
150189
150851
|
id: Scalars['ID']['output'];
|
|
150190
150852
|
ideas: Array<KitsuneIdeaNode>;
|
|
150191
150853
|
jiraIssue?: Maybe<JiraIssue>;
|
|
150854
|
+
nbCustomers: Scalars['Int']['output'];
|
|
150855
|
+
nbOrganizations: Scalars['Int']['output'];
|
|
150192
150856
|
nbSnippets: Scalars['Int']['output'];
|
|
150193
150857
|
snippets: KitsuneSnippetConnection;
|
|
150194
150858
|
spaceAri: Scalars['ID']['output'];
|
|
@@ -150353,10 +151017,14 @@ export type KitsuneSnippet = Node & {
|
|
|
150353
151017
|
createdAt: Scalars['DateTime']['output'];
|
|
150354
151018
|
creator?: Maybe<User>;
|
|
150355
151019
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
151020
|
+
customer?: Maybe<CustomerServiceCsmCustomer>;
|
|
151021
|
+
customerId?: Maybe<Scalars['ID']['output']>;
|
|
150356
151022
|
feedback?: Maybe<KitsuneFeedback>;
|
|
150357
151023
|
id: Scalars['ID']['output'];
|
|
150358
151024
|
insight?: Maybe<KitsuneInsight>;
|
|
150359
151025
|
markId?: Maybe<Scalars['ID']['output']>;
|
|
151026
|
+
organization?: Maybe<CustomerServiceCsmOrganization>;
|
|
151027
|
+
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
150360
151028
|
};
|
|
150361
151029
|
export type KitsuneSnippetConnection = KitsuneConnection & {
|
|
150362
151030
|
__typename?: 'KitsuneSnippetConnection';
|
|
@@ -152782,6 +153450,24 @@ export declare enum LoomPhraseRangeType {
|
|
|
152782
153450
|
Punct = "punct",
|
|
152783
153451
|
Text = "text"
|
|
152784
153452
|
}
|
|
153453
|
+
export type LoomPlaylist = Node & {
|
|
153454
|
+
__typename?: 'LoomPlaylist';
|
|
153455
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
153456
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
153457
|
+
id: Scalars['ID']['output'];
|
|
153458
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
153459
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
153460
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
153461
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
153462
|
+
videoCount?: Maybe<Scalars['Int']['output']>;
|
|
153463
|
+
videos?: Maybe<Array<LoomPlaylistVideo>>;
|
|
153464
|
+
visibility?: Maybe<LoomVideoVisibility>;
|
|
153465
|
+
};
|
|
153466
|
+
export type LoomPlaylistVideo = {
|
|
153467
|
+
__typename?: 'LoomPlaylistVideo';
|
|
153468
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
153469
|
+
videoAri: Scalars['ID']['output'];
|
|
153470
|
+
};
|
|
152785
153471
|
export type LoomSettings = {
|
|
152786
153472
|
__typename?: 'LoomSettings';
|
|
152787
153473
|
meetingNotesAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -152981,6 +153667,11 @@ export type LoomVideoViewCounts = {
|
|
|
152981
153667
|
distinct?: Maybe<Scalars['Int']['output']>;
|
|
152982
153668
|
total?: Maybe<Scalars['Int']['output']>;
|
|
152983
153669
|
};
|
|
153670
|
+
export declare enum LoomVideoVisibility {
|
|
153671
|
+
Owner = "OWNER",
|
|
153672
|
+
Public = "PUBLIC",
|
|
153673
|
+
Workspace = "WORKSPACE"
|
|
153674
|
+
}
|
|
152984
153675
|
export type LoomWorkspace = Node & {
|
|
152985
153676
|
__typename?: 'LoomWorkspace';
|
|
152986
153677
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -153456,6 +154147,7 @@ export type MarketplaceBugBountyProgramHostingStatus = {
|
|
|
153456
154147
|
export type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
153457
154148
|
__typename?: 'MarketplaceCloudAppDeployment';
|
|
153458
154149
|
additionalCompatibleProducts: Array<CompatibleAtlassianProduct>;
|
|
154150
|
+
appType?: Maybe<MarketplaceCloudAppType>;
|
|
153459
154151
|
cloudAppEnvironmentId: Scalars['ID']['output'];
|
|
153460
154152
|
cloudAppId: Scalars['ID']['output'];
|
|
153461
154153
|
cloudAppVersionId: Scalars['ID']['output'];
|
|
@@ -153463,6 +154155,12 @@ export type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
|
153463
154155
|
scopes: Array<CloudAppScope>;
|
|
153464
154156
|
scopesFetchError?: Maybe<Scalars['String']['output']>;
|
|
153465
154157
|
};
|
|
154158
|
+
export declare enum MarketplaceCloudAppType {
|
|
154159
|
+
CrossContext = "CROSS_CONTEXT",
|
|
154160
|
+
Embedded = "EMBEDDED",
|
|
154161
|
+
Global = "GLOBAL",
|
|
154162
|
+
GlobalStandalone = "GLOBAL_STANDALONE"
|
|
154163
|
+
}
|
|
153466
154164
|
export type MarketplaceCloudFortified = {
|
|
153467
154165
|
__typename?: 'MarketplaceCloudFortified';
|
|
153468
154166
|
programStatus?: Maybe<MarketplaceProgramStatus>;
|
|
@@ -163650,7 +164348,8 @@ export type MercuryRequestPositionsChangeInput = {
|
|
|
163650
164348
|
export type MercuryRerankFocusAreaAbsoluteInput = {
|
|
163651
164349
|
containerId: Scalars['ID']['input'];
|
|
163652
164350
|
containerType: MercuryRankingContainerType;
|
|
163653
|
-
focusAreaId
|
|
164351
|
+
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
164352
|
+
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
163654
164353
|
newRank?: InputMaybe<Scalars['Int']['input']>;
|
|
163655
164354
|
};
|
|
163656
164355
|
export type MercuryRerankFocusAreaAbsolutePayload = Payload & {
|
|
@@ -166228,6 +166927,7 @@ export type Mutation = {
|
|
|
166228
166927
|
aiManagedObject_execute?: Maybe<AiManagedObjectExecutionResult>;
|
|
166229
166928
|
aiManagedObject_reactivateAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
166230
166929
|
aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
|
|
166930
|
+
aiops_regenerateIncidentSuggestion?: Maybe<AiOpsRegenerateIncidentSuggestionPayload>;
|
|
166231
166931
|
aiops_terminateInvestigation?: Maybe<AiOpsInvestigation>;
|
|
166232
166932
|
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
166233
166933
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
@@ -166766,12 +167466,14 @@ export type Mutation = {
|
|
|
166766
167466
|
devai_addContainerConfigSecret?: Maybe<DevAiAddContainerConfigSecretPayload>;
|
|
166767
167467
|
devai_addContainerConfigVariable?: Maybe<DevAiAddContainerConfigVariablePayload>;
|
|
166768
167468
|
devai_archiveTechnicalPlannerJob?: Maybe<DevAiArchivedTechnicalPlannerJobPayload>;
|
|
167469
|
+
devai_autodevNextAddExcludedRepositories?: Maybe<DevAiAutodevNextAddExcludedRepositoriesPayload>;
|
|
166769
167470
|
devai_autodevNextAddMembers?: Maybe<DevAiAutodevNextAddMembersPayload>;
|
|
166770
167471
|
devai_autodevNextAddProjects?: Maybe<DevAiAutodevNextAddProjectsPayload>;
|
|
166771
167472
|
devai_autodevNextCompleteWorkItemRefinement?: Maybe<DevAiAutodevNextCompleteWorkItemRefinementPayload>;
|
|
166772
167473
|
devai_autodevNextCreateWorkstream?: Maybe<DevAiAutodevNextCreateWorkstreamPayload>;
|
|
166773
167474
|
devai_autodevNextDeleteWorkstream?: Maybe<DevAiAutodevNextDeleteWorkstreamPayload>;
|
|
166774
167475
|
devai_autodevNextReassignWorkItem?: Maybe<DevAiAutodevNextReassignWorkItemPayload>;
|
|
167476
|
+
devai_autodevNextRemoveExcludedRepositories?: Maybe<DevAiAutodevNextRemoveExcludedRepositoriesPayload>;
|
|
166775
167477
|
devai_autodevNextRemoveMembers?: Maybe<DevAiAutodevNextRemoveMembersPayload>;
|
|
166776
167478
|
devai_autodevNextRemoveProjects?: Maybe<DevAiAutodevNextRemoveProjectsPayload>;
|
|
166777
167479
|
devai_autodevNextSendWorkstreamNudges?: Maybe<DevAiAutodevNextSendWorkstreamNudgesPayload>;
|
|
@@ -166893,6 +167595,9 @@ export type Mutation = {
|
|
|
166893
167595
|
goals_updateAppPermissionPolicies?: Maybe<TownsquareUpdateGoalsAppPermissionPoliciesPayload>;
|
|
166894
167596
|
goals_updateSlackSubscription?: Maybe<TownsquareGoalsUpdateSlackSubscriptionPayload>;
|
|
166895
167597
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
167598
|
+
graphInference_inferenceAppAdd?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
167599
|
+
graphInference_inferenceAppDelete?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
167600
|
+
graphInference_inferenceAppEdit?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
166896
167601
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
166897
167602
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
166898
167603
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -166906,6 +167611,8 @@ export type Mutation = {
|
|
|
166906
167611
|
graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
|
|
166907
167612
|
graphIntegration_mcpServerRequestReject?: Maybe<GraphIntegrationMcpServerRequestRejectPayload>;
|
|
166908
167613
|
graphIntegration_mcpServerRequestSubmit?: Maybe<GraphIntegrationMcpServerRequestSubmitPayload>;
|
|
167614
|
+
graphIntegration_rbacCreateRecord?: Maybe<GraphIntegrationRbacCreateRecordPayload>;
|
|
167615
|
+
graphIntegration_rbacDeleteRecord?: Maybe<GraphIntegrationRbacDeleteRecordPayload>;
|
|
166909
167616
|
graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
|
|
166910
167617
|
graphIntegration_setTwgPlatformCapabilityGlobalAdminSetting?: Maybe<GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload>;
|
|
166911
167618
|
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
@@ -168210,6 +168917,9 @@ export type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
|
|
|
168210
168917
|
id: Scalars['ID']['input'];
|
|
168211
168918
|
input: AiManagedObjectUpdateInput;
|
|
168212
168919
|
};
|
|
168920
|
+
export type MutationAiops_RegenerateIncidentSuggestionArgs = {
|
|
168921
|
+
input: AiOpsRegenerateIncidentSuggestionInput;
|
|
168922
|
+
};
|
|
168213
168923
|
export type MutationAiops_TerminateInvestigationArgs = {
|
|
168214
168924
|
cloudId: Scalars['ID']['input'];
|
|
168215
168925
|
investigationId: Scalars['ID']['input'];
|
|
@@ -170238,6 +170948,9 @@ export type MutationDevai_ArchiveTechnicalPlannerJobArgs = {
|
|
|
170238
170948
|
cloudId: Scalars['ID']['input'];
|
|
170239
170949
|
jobId: Scalars['ID']['input'];
|
|
170240
170950
|
};
|
|
170951
|
+
export type MutationDevai_AutodevNextAddExcludedRepositoriesArgs = {
|
|
170952
|
+
input: DevAiAutodevNextAddExcludedRepositoriesInput;
|
|
170953
|
+
};
|
|
170241
170954
|
export type MutationDevai_AutodevNextAddMembersArgs = {
|
|
170242
170955
|
input: DevAiAutodevNextAddMembersInput;
|
|
170243
170956
|
};
|
|
@@ -170256,6 +170969,9 @@ export type MutationDevai_AutodevNextDeleteWorkstreamArgs = {
|
|
|
170256
170969
|
export type MutationDevai_AutodevNextReassignWorkItemArgs = {
|
|
170257
170970
|
input: DevAiAutodevNextReassignWorkItemInput;
|
|
170258
170971
|
};
|
|
170972
|
+
export type MutationDevai_AutodevNextRemoveExcludedRepositoriesArgs = {
|
|
170973
|
+
input: DevAiAutodevNextRemoveExcludedRepositoriesInput;
|
|
170974
|
+
};
|
|
170259
170975
|
export type MutationDevai_AutodevNextRemoveMembersArgs = {
|
|
170260
170976
|
input: DevAiAutodevNextRemoveMembersInput;
|
|
170261
170977
|
};
|
|
@@ -170635,6 +171351,15 @@ export type MutationGoals_UpdateSlackSubscriptionArgs = {
|
|
|
170635
171351
|
export type MutationGrantContentAccessArgs = {
|
|
170636
171352
|
grantContentAccessInput: GrantContentAccessInput;
|
|
170637
171353
|
};
|
|
171354
|
+
export type MutationGraphInference_InferenceAppAddArgs = {
|
|
171355
|
+
input: GraphInferenceInferenceAppAddInput;
|
|
171356
|
+
};
|
|
171357
|
+
export type MutationGraphInference_InferenceAppDeleteArgs = {
|
|
171358
|
+
input: GraphInferenceInferenceAppDeleteInput;
|
|
171359
|
+
};
|
|
171360
|
+
export type MutationGraphInference_InferenceAppEditArgs = {
|
|
171361
|
+
input: GraphInferenceInferenceAppEditInput;
|
|
171362
|
+
};
|
|
170638
171363
|
export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
|
|
170639
171364
|
input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
|
|
170640
171365
|
};
|
|
@@ -170674,6 +171399,12 @@ export type MutationGraphIntegration_McpServerRequestRejectArgs = {
|
|
|
170674
171399
|
export type MutationGraphIntegration_McpServerRequestSubmitArgs = {
|
|
170675
171400
|
input: GraphIntegrationMcpServerRequestSubmitInput;
|
|
170676
171401
|
};
|
|
171402
|
+
export type MutationGraphIntegration_RbacCreateRecordArgs = {
|
|
171403
|
+
input: GraphIntegrationRbacCreateRecordInput;
|
|
171404
|
+
};
|
|
171405
|
+
export type MutationGraphIntegration_RbacDeleteRecordArgs = {
|
|
171406
|
+
input: GraphIntegrationRbacDeleteRecordInput;
|
|
171407
|
+
};
|
|
170677
171408
|
export type MutationGraphIntegration_RemoveTwgCapabilityContainerArgs = {
|
|
170678
171409
|
input: GraphIntegrationRemoveTwgCapabilityContainerInput;
|
|
170679
171410
|
};
|
|
@@ -177220,6 +177951,7 @@ export type Query = {
|
|
|
177220
177951
|
devai_autodevNextUsageTransitionCounts?: Maybe<DevAiAutodevNextTransitionUsageCounts>;
|
|
177221
177952
|
devai_autodevNextWorkstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
177222
177953
|
devai_autodevNextWorkstreamSweepSummary?: Maybe<DevAiAutodevNextWorkstreamSweepSummaryPayload>;
|
|
177954
|
+
devai_autodevNextWorkstreamTask?: Maybe<DevAiAutodevNextWorkItem>;
|
|
177223
177955
|
devai_autodevNextWorkstreamTasks?: Maybe<DevAiAutodevNextWorkstreamTaskConnection>;
|
|
177224
177956
|
devai_autodevNextWorkstreams?: Maybe<DevAiAutodevNextWorkstreamConnection>;
|
|
177225
177957
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
@@ -177344,6 +178076,10 @@ export type Query = {
|
|
|
177344
178076
|
graphInference_getRelatedReposV2?: Maybe<GraphInferenceGetRelatedReposV2Response>;
|
|
177345
178077
|
graphInference_getRelatedReposV3?: Maybe<GraphInferenceGetRelatedReposV3Response>;
|
|
177346
178078
|
graphInference_getSimilarJiraItems?: Maybe<GraphInferenceGetSimilarJiraItemsResponse>;
|
|
178079
|
+
graphInference_graphclawInferenceTargets?: Maybe<Array<GraphInferenceGraphclawOption>>;
|
|
178080
|
+
graphInference_graphclawInferenceType?: Maybe<Array<GraphInferenceGraphclawOption>>;
|
|
178081
|
+
graphInference_graphclawProductOptions?: Maybe<Array<GraphInferenceGraphclawOption>>;
|
|
178082
|
+
graphInference_inferenceAppList?: Maybe<Array<GraphInferenceInferenceApp>>;
|
|
177347
178083
|
graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
|
|
177348
178084
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
177349
178085
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
@@ -177360,6 +178096,7 @@ export type Query = {
|
|
|
177360
178096
|
graphIntegration_mcpServerUserRequests?: Maybe<GraphIntegrationMcpServerUserRequestConnection>;
|
|
177361
178097
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
177362
178098
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
178099
|
+
graphIntegration_rbacRecords?: Maybe<Array<GraphIntegrationRbacRecord>>;
|
|
177363
178100
|
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
177364
178101
|
graphIntegration_skillDimensionMetadata?: Maybe<GraphIntegrationSkillDimensionMetadata>;
|
|
177365
178102
|
graphIntegration_skillItems?: Maybe<Array<Maybe<GraphIntegrationSkillItem>>>;
|
|
@@ -177892,6 +178629,8 @@ export type Query = {
|
|
|
177892
178629
|
graphStoreV2_externalUserCreatedExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalMessageInverseConnection>;
|
|
177893
178630
|
graphStoreV2_externalUserCreatedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestConnection>;
|
|
177894
178631
|
graphStoreV2_externalUserCreatedExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestInverseConnection>;
|
|
178632
|
+
graphStoreV2_externalUserCreatedExternalServicenowBusinessApp?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppConnection>;
|
|
178633
|
+
graphStoreV2_externalUserCreatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseConnection>;
|
|
177895
178634
|
graphStoreV2_externalUserCreatedExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalSoftwareServiceConnection>;
|
|
177896
178635
|
graphStoreV2_externalUserCreatedExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalSoftwareServiceInverseConnection>;
|
|
177897
178636
|
graphStoreV2_externalUserCreatedExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalSpaceConnection>;
|
|
@@ -177943,6 +178682,8 @@ export type Query = {
|
|
|
177943
178682
|
graphStoreV2_externalUserOwnsExternalLeadInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalLeadInverseConnection>;
|
|
177944
178683
|
graphStoreV2_externalUserOwnsExternalRepository?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryConnection>;
|
|
177945
178684
|
graphStoreV2_externalUserOwnsExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseConnection>;
|
|
178685
|
+
graphStoreV2_externalUserOwnsExternalServicenowBusinessApp?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppConnection>;
|
|
178686
|
+
graphStoreV2_externalUserOwnsExternalServicenowBusinessAppInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseConnection>;
|
|
177946
178687
|
graphStoreV2_externalUserOwnsExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceConnection>;
|
|
177947
178688
|
graphStoreV2_externalUserOwnsExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceInverseConnection>;
|
|
177948
178689
|
graphStoreV2_externalUserOwnsExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSpaceConnection>;
|
|
@@ -177984,6 +178725,8 @@ export type Query = {
|
|
|
177984
178725
|
graphStoreV2_externalUserUpdatedExternalExperimentalInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalExperimentalInverseConnection>;
|
|
177985
178726
|
graphStoreV2_externalUserUpdatedExternalLead?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalLeadConnection>;
|
|
177986
178727
|
graphStoreV2_externalUserUpdatedExternalLeadInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalLeadInverseConnection>;
|
|
178728
|
+
graphStoreV2_externalUserUpdatedExternalServicenowBusinessApp?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppConnection>;
|
|
178729
|
+
graphStoreV2_externalUserUpdatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseConnection>;
|
|
177987
178730
|
graphStoreV2_externalUserUpdatedExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceConnection>;
|
|
177988
178731
|
graphStoreV2_externalUserUpdatedExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceInverseConnection>;
|
|
177989
178732
|
graphStoreV2_externalUserUpdatedExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSpaceConnection>;
|
|
@@ -178056,6 +178799,7 @@ export type Query = {
|
|
|
178056
178799
|
graphStoreV2_focusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverseConnection>;
|
|
178057
178800
|
graphStoreV2_focusStrategicPlanScenarioInvestmentHasInvestmentEntity?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityConnection>;
|
|
178058
178801
|
graphStoreV2_focusStrategicPlanScenarioInvestmentHasInvestmentEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseConnection>;
|
|
178802
|
+
graphStoreV2_inferredEntities?: Maybe<Array<GraphStoreInferredEntityResponse>>;
|
|
178059
178803
|
graphStoreV2_inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
178060
178804
|
graphStoreV2_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
178061
178805
|
graphStoreV2_jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
|
|
@@ -178328,6 +179072,8 @@ export type Query = {
|
|
|
178328
179072
|
graphStore_atlassianUserCreatedExternalExperimentalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalExperimentalInverseConnection>;
|
|
178329
179073
|
graphStore_atlassianUserCreatedExternalLead?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalLeadConnection>;
|
|
178330
179074
|
graphStore_atlassianUserCreatedExternalLeadInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalLeadInverseConnection>;
|
|
179075
|
+
graphStore_atlassianUserCreatedExternalServicenowBusinessApp?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppConnection>;
|
|
179076
|
+
graphStore_atlassianUserCreatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseConnection>;
|
|
178331
179077
|
graphStore_atlassianUserCreatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection>;
|
|
178332
179078
|
graphStore_atlassianUserCreatedExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseConnection>;
|
|
178333
179079
|
graphStore_atlassianUserCreatedExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionConnection>;
|
|
@@ -178364,6 +179110,8 @@ export type Query = {
|
|
|
178364
179110
|
graphStore_atlassianUserOwnsExternalExperimentalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalExperimentalInverseConnection>;
|
|
178365
179111
|
graphStore_atlassianUserOwnsExternalLead?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalLeadConnection>;
|
|
178366
179112
|
graphStore_atlassianUserOwnsExternalLeadInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalLeadInverseConnection>;
|
|
179113
|
+
graphStore_atlassianUserOwnsExternalServicenowBusinessApp?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppConnection>;
|
|
179114
|
+
graphStore_atlassianUserOwnsExternalServicenowBusinessAppInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseConnection>;
|
|
178367
179115
|
graphStore_atlassianUserOwnsExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection>;
|
|
178368
179116
|
graphStore_atlassianUserOwnsExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseConnection>;
|
|
178369
179117
|
graphStore_atlassianUserOwnsExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionConnection>;
|
|
@@ -178389,6 +179137,8 @@ export type Query = {
|
|
|
178389
179137
|
graphStore_atlassianUserUpdatedExternalExperimentalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalExperimentalInverseConnection>;
|
|
178390
179138
|
graphStore_atlassianUserUpdatedExternalLead?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalLeadConnection>;
|
|
178391
179139
|
graphStore_atlassianUserUpdatedExternalLeadInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalLeadInverseConnection>;
|
|
179140
|
+
graphStore_atlassianUserUpdatedExternalServicenowBusinessApp?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppConnection>;
|
|
179141
|
+
graphStore_atlassianUserUpdatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseConnection>;
|
|
178392
179142
|
graphStore_atlassianUserUpdatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection>;
|
|
178393
179143
|
graphStore_atlassianUserUpdatedExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseConnection>;
|
|
178394
179144
|
graphStore_atlassianUserUpdatedExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionConnection>;
|
|
@@ -179539,6 +180289,8 @@ export type Query = {
|
|
|
179539
180289
|
jira_isBetaAiFeaturesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
179540
180290
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
179541
180291
|
jira_isTenantConvertedToNfa?: Maybe<Scalars['Boolean']['output']>;
|
|
180292
|
+
jira_issueCreateAdditionalServices?: Maybe<JiraIssueCreateAdditionalServicesResult>;
|
|
180293
|
+
jira_issueCreateFields?: Maybe<JiraIssueCreateFieldsResult>;
|
|
179542
180294
|
jira_issueCreateLayout?: Maybe<JiraIssueCreateLayoutResult>;
|
|
179543
180295
|
jira_issueCreateLayoutWithML?: Maybe<JiraIssueCreateLayoutResult>;
|
|
179544
180296
|
jira_issueSearchTopLevelIssueFieldsAggregation?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -179680,6 +180432,8 @@ export type Query = {
|
|
|
179680
180432
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
179681
180433
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
179682
180434
|
loom_meetingsSearch?: Maybe<LoomMeetings>;
|
|
180435
|
+
loom_playlist?: Maybe<LoomPlaylist>;
|
|
180436
|
+
loom_playlists?: Maybe<Array<Maybe<LoomPlaylist>>>;
|
|
179683
180437
|
loom_settings?: Maybe<LoomSettings>;
|
|
179684
180438
|
loom_space?: Maybe<LoomSpace>;
|
|
179685
180439
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
@@ -179834,6 +180588,8 @@ export type Query = {
|
|
|
179834
180588
|
quickReload?: Maybe<QuickReload>;
|
|
179835
180589
|
radar_aiConnectorById?: Maybe<RadarAiConnector>;
|
|
179836
180590
|
radar_aiConnectors?: Maybe<RadarAiConnectorsConnection>;
|
|
180591
|
+
radar_aiScopedBudgetPolicies?: Maybe<RadarAiScopedBudgetPolicyConnection>;
|
|
180592
|
+
radar_aiWorkspaceBudgetPolicy?: Maybe<RadarAiWorkspaceBudgetPolicy>;
|
|
179837
180593
|
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
179838
180594
|
radar_benchmarks?: Maybe<Array<RadarMetricSettings>>;
|
|
179839
180595
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
@@ -183264,6 +184020,7 @@ export type QueryContentAnalyticsViewsByDateArgs = {
|
|
|
183264
184020
|
};
|
|
183265
184021
|
export type QueryContentAnalyticsViewsByUserArgs = {
|
|
183266
184022
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
184023
|
+
actorType?: InputMaybe<ConfluencePageAnalyticsActorType>;
|
|
183267
184024
|
contentId: Scalars['ID']['input'];
|
|
183268
184025
|
engageTimeThreshold?: InputMaybe<Scalars['Int']['input']>;
|
|
183269
184026
|
isPrivacyModeEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -183917,6 +184674,11 @@ export type QueryDevai_AutodevNextWorkstreamSweepSummaryArgs = {
|
|
|
183917
184674
|
cloudId: Scalars['ID']['input'];
|
|
183918
184675
|
workstreamId: Scalars['ID']['input'];
|
|
183919
184676
|
};
|
|
184677
|
+
export type QueryDevai_AutodevNextWorkstreamTaskArgs = {
|
|
184678
|
+
cloudId: Scalars['ID']['input'];
|
|
184679
|
+
workItemId: Scalars['ID']['input'];
|
|
184680
|
+
workspaceId: Scalars['ID']['input'];
|
|
184681
|
+
};
|
|
183920
184682
|
export type QueryDevai_AutodevNextWorkstreamTasksArgs = {
|
|
183921
184683
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
183922
184684
|
assigneeUserAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -184505,6 +185267,11 @@ export type QueryGraphIntegration_McpToolsArgs = {
|
|
|
184505
185267
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
184506
185268
|
ids: Array<Scalars['ID']['input']>;
|
|
184507
185269
|
};
|
|
185270
|
+
export type QueryGraphIntegration_RbacRecordsArgs = {
|
|
185271
|
+
cloudId: Scalars['ID']['input'];
|
|
185272
|
+
resourceAri: Scalars['ID']['input'];
|
|
185273
|
+
workspaceAri: Scalars['ID']['input'];
|
|
185274
|
+
};
|
|
184508
185275
|
export type QueryGraphIntegration_SkillArgs = {
|
|
184509
185276
|
contextAri: Scalars['ID']['input'];
|
|
184510
185277
|
resolvePlatformToolNames?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -188216,6 +188983,20 @@ export type QueryGraphStoreV2_ExternalUserCreatedExternalPullRequestInverseArgs
|
|
|
188216
188983
|
id: Scalars['ID']['input'];
|
|
188217
188984
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalPullRequestSortInput>;
|
|
188218
188985
|
};
|
|
188986
|
+
export type QueryGraphStoreV2_ExternalUserCreatedExternalServicenowBusinessAppArgs = {
|
|
188987
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
188988
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
188989
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
188990
|
+
id: Scalars['ID']['input'];
|
|
188991
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
188992
|
+
};
|
|
188993
|
+
export type QueryGraphStoreV2_ExternalUserCreatedExternalServicenowBusinessAppInverseArgs = {
|
|
188994
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
188995
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
188996
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
188997
|
+
id: Scalars['ID']['input'];
|
|
188998
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
188999
|
+
};
|
|
188219
189000
|
export type QueryGraphStoreV2_ExternalUserCreatedExternalSoftwareServiceArgs = {
|
|
188220
189001
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188221
189002
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -188573,6 +189354,20 @@ export type QueryGraphStoreV2_ExternalUserOwnsExternalRepositoryInverseArgs = {
|
|
|
188573
189354
|
id: Scalars['ID']['input'];
|
|
188574
189355
|
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalRepositorySortInput>;
|
|
188575
189356
|
};
|
|
189357
|
+
export type QueryGraphStoreV2_ExternalUserOwnsExternalServicenowBusinessAppArgs = {
|
|
189358
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189359
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189360
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189361
|
+
id: Scalars['ID']['input'];
|
|
189362
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
189363
|
+
};
|
|
189364
|
+
export type QueryGraphStoreV2_ExternalUserOwnsExternalServicenowBusinessAppInverseArgs = {
|
|
189365
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189366
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189367
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189368
|
+
id: Scalars['ID']['input'];
|
|
189369
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
189370
|
+
};
|
|
188576
189371
|
export type QueryGraphStoreV2_ExternalUserOwnsExternalSoftwareServiceArgs = {
|
|
188577
189372
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188578
189373
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -188860,6 +189655,20 @@ export type QueryGraphStoreV2_ExternalUserUpdatedExternalLeadInverseArgs = {
|
|
|
188860
189655
|
id: Scalars['ID']['input'];
|
|
188861
189656
|
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalLeadSortInput>;
|
|
188862
189657
|
};
|
|
189658
|
+
export type QueryGraphStoreV2_ExternalUserUpdatedExternalServicenowBusinessAppArgs = {
|
|
189659
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189660
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189661
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189662
|
+
id: Scalars['ID']['input'];
|
|
189663
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
189664
|
+
};
|
|
189665
|
+
export type QueryGraphStoreV2_ExternalUserUpdatedExternalServicenowBusinessAppInverseArgs = {
|
|
189666
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189667
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189668
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189669
|
+
id: Scalars['ID']['input'];
|
|
189670
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
189671
|
+
};
|
|
188863
189672
|
export type QueryGraphStoreV2_ExternalUserUpdatedExternalSoftwareServiceArgs = {
|
|
188864
189673
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188865
189674
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -189364,6 +190173,9 @@ export type QueryGraphStoreV2_FocusStrategicPlanScenarioInvestmentHasInvestmentE
|
|
|
189364
190173
|
id: Scalars['ID']['input'];
|
|
189365
190174
|
sort?: InputMaybe<GraphStoreV2FocusStrategicPlanScenarioInvestmentHasInvestmentEntitySortInput>;
|
|
189366
190175
|
};
|
|
190176
|
+
export type QueryGraphStoreV2_InferredEntitiesArgs = {
|
|
190177
|
+
ids: Array<Scalars['String']['input']>;
|
|
190178
|
+
};
|
|
189367
190179
|
export type QueryGraphStoreV2_InferredProjectLinksEntityArgs = {
|
|
189368
190180
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
189369
190181
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -191372,6 +192184,22 @@ export type QueryGraphStore_AtlassianUserCreatedExternalLeadInverseArgs = {
|
|
|
191372
192184
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
191373
192185
|
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalLeadSortInput>;
|
|
191374
192186
|
};
|
|
192187
|
+
export type QueryGraphStore_AtlassianUserCreatedExternalServicenowBusinessAppArgs = {
|
|
192188
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192189
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192190
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192191
|
+
id: Scalars['ID']['input'];
|
|
192192
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192193
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
192194
|
+
};
|
|
192195
|
+
export type QueryGraphStore_AtlassianUserCreatedExternalServicenowBusinessAppInverseArgs = {
|
|
192196
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192197
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192198
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192199
|
+
id: Scalars['ID']['input'];
|
|
192200
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192201
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
192202
|
+
};
|
|
191375
192203
|
export type QueryGraphStore_AtlassianUserCreatedExternalTeamArgs = {
|
|
191376
192204
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
191377
192205
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -191660,6 +192488,22 @@ export type QueryGraphStore_AtlassianUserOwnsExternalLeadInverseArgs = {
|
|
|
191660
192488
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
191661
192489
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalLeadSortInput>;
|
|
191662
192490
|
};
|
|
192491
|
+
export type QueryGraphStore_AtlassianUserOwnsExternalServicenowBusinessAppArgs = {
|
|
192492
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192493
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192494
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192495
|
+
id: Scalars['ID']['input'];
|
|
192496
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192497
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
192498
|
+
};
|
|
192499
|
+
export type QueryGraphStore_AtlassianUserOwnsExternalServicenowBusinessAppInverseArgs = {
|
|
192500
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192501
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192502
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192503
|
+
id: Scalars['ID']['input'];
|
|
192504
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192505
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
192506
|
+
};
|
|
191663
192507
|
export type QueryGraphStore_AtlassianUserOwnsExternalTeamArgs = {
|
|
191664
192508
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
191665
192509
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -191860,6 +192704,22 @@ export type QueryGraphStore_AtlassianUserUpdatedExternalLeadInverseArgs = {
|
|
|
191860
192704
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
191861
192705
|
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalLeadSortInput>;
|
|
191862
192706
|
};
|
|
192707
|
+
export type QueryGraphStore_AtlassianUserUpdatedExternalServicenowBusinessAppArgs = {
|
|
192708
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192709
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192710
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192711
|
+
id: Scalars['ID']['input'];
|
|
192712
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192713
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
192714
|
+
};
|
|
192715
|
+
export type QueryGraphStore_AtlassianUserUpdatedExternalServicenowBusinessAppInverseArgs = {
|
|
192716
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192717
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192718
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192719
|
+
id: Scalars['ID']['input'];
|
|
192720
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192721
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
192722
|
+
};
|
|
191863
192723
|
export type QueryGraphStore_AtlassianUserUpdatedExternalTeamArgs = {
|
|
191864
192724
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
191865
192725
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -200373,6 +201233,25 @@ export type QueryJira_IsRovoLlmEnabledArgs = {
|
|
|
200373
201233
|
export type QueryJira_IsTenantConvertedToNfaArgs = {
|
|
200374
201234
|
cloudId: Scalars['ID']['input'];
|
|
200375
201235
|
};
|
|
201236
|
+
export type QueryJira_IssueCreateAdditionalServicesArgs = {
|
|
201237
|
+
cloudId: Scalars['ID']['input'];
|
|
201238
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
201239
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
201240
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
201241
|
+
};
|
|
201242
|
+
export type QueryJira_IssueCreateFieldsArgs = {
|
|
201243
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
201244
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
201245
|
+
cloudId: Scalars['ID']['input'];
|
|
201246
|
+
defaultValues?: InputMaybe<JiraIssueFieldsInput>;
|
|
201247
|
+
evaluateMiniMode?: InputMaybe<Scalars['Boolean']['input']>;
|
|
201248
|
+
fieldsFilter?: InputMaybe<JiraIssueCreateFieldsFilter>;
|
|
201249
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
201250
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
201251
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
201252
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
201253
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
201254
|
+
};
|
|
200376
201255
|
export type QueryJira_IssueCreateLayoutArgs = {
|
|
200377
201256
|
cloudId: Scalars['ID']['input'];
|
|
200378
201257
|
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
@@ -200928,6 +201807,12 @@ export type QueryLoom_MeetingsArgs = {
|
|
|
200928
201807
|
export type QueryLoom_MeetingsSearchArgs = {
|
|
200929
201808
|
id: Scalars['ID']['input'];
|
|
200930
201809
|
};
|
|
201810
|
+
export type QueryLoom_PlaylistArgs = {
|
|
201811
|
+
id: Scalars['ID']['input'];
|
|
201812
|
+
};
|
|
201813
|
+
export type QueryLoom_PlaylistsArgs = {
|
|
201814
|
+
ids: Array<Scalars['ID']['input']>;
|
|
201815
|
+
};
|
|
200931
201816
|
export type QueryLoom_SettingsArgs = {
|
|
200932
201817
|
siteId: Scalars['ID']['input'];
|
|
200933
201818
|
};
|
|
@@ -201463,6 +202348,14 @@ export type QueryRadar_AiConnectorsArgs = {
|
|
|
201463
202348
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
201464
202349
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
201465
202350
|
};
|
|
202351
|
+
export type QueryRadar_AiScopedBudgetPoliciesArgs = {
|
|
202352
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
202353
|
+
cloudId: Scalars['ID']['input'];
|
|
202354
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
202355
|
+
};
|
|
202356
|
+
export type QueryRadar_AiWorkspaceBudgetPolicyArgs = {
|
|
202357
|
+
cloudId: Scalars['ID']['input'];
|
|
202358
|
+
};
|
|
201466
202359
|
export type QueryRadar_AvailableCustomFieldsFromLastSyncArgs = {
|
|
201467
202360
|
cloudId: Scalars['ID']['input'];
|
|
201468
202361
|
};
|
|
@@ -202677,6 +203570,18 @@ export type RadarAiScopedBudgetPolicy = {
|
|
|
202677
203570
|
id: Scalars['ID']['output'];
|
|
202678
203571
|
scopeFieldValue: Scalars['String']['output'];
|
|
202679
203572
|
};
|
|
203573
|
+
export type RadarAiScopedBudgetPolicyConnection = RadarConnection & {
|
|
203574
|
+
__typename?: 'RadarAiScopedBudgetPolicyConnection';
|
|
203575
|
+
edges?: Maybe<Array<RadarAiScopedBudgetPolicyEdge>>;
|
|
203576
|
+
nodes?: Maybe<Array<RadarAiScopedBudgetPolicy>>;
|
|
203577
|
+
pageInfo: PageInfo;
|
|
203578
|
+
totalCount: Scalars['Int']['output'];
|
|
203579
|
+
};
|
|
203580
|
+
export type RadarAiScopedBudgetPolicyEdge = RadarEdge & {
|
|
203581
|
+
__typename?: 'RadarAiScopedBudgetPolicyEdge';
|
|
203582
|
+
cursor: Scalars['String']['output'];
|
|
203583
|
+
node: RadarAiScopedBudgetPolicy;
|
|
203584
|
+
};
|
|
202680
203585
|
export type RadarAiWorkspaceBudgetPolicy = {
|
|
202681
203586
|
__typename?: 'RadarAiWorkspaceBudgetPolicy';
|
|
202682
203587
|
allowanceAmount: Scalars['Int']['output'];
|
|
@@ -202833,6 +203738,7 @@ export type RadarEntityFieldValuesArgs = {
|
|
|
202833
203738
|
export declare enum RadarEntityType {
|
|
202834
203739
|
AiConnector = "aiConnector",
|
|
202835
203740
|
AiMonthlyUsage = "aiMonthlyUsage",
|
|
203741
|
+
AiUsage = "aiUsage",
|
|
202836
203742
|
FocusArea = "focusArea",
|
|
202837
203743
|
FocusAreaType = "focusAreaType",
|
|
202838
203744
|
Position = "position",
|
|
@@ -236531,6 +237437,7 @@ export type TownsquareShareProjectUserInput = {
|
|
|
236531
237437
|
};
|
|
236532
237438
|
export type TownsquareSlackChannel = {
|
|
236533
237439
|
__typename?: 'TownsquareSlackChannel';
|
|
237440
|
+
channelId?: Maybe<Scalars['String']['output']>;
|
|
236534
237441
|
loggedIn?: Maybe<Scalars['Boolean']['output']>;
|
|
236535
237442
|
name?: Maybe<Scalars['String']['output']>;
|
|
236536
237443
|
numMembers?: Maybe<Scalars['Int']['output']>;
|
|
@@ -237990,6 +238897,47 @@ export type TrelloBoardEdge = {
|
|
|
237990
238897
|
cursor: Scalars['String']['output'];
|
|
237991
238898
|
node: TrelloBaseBoard;
|
|
237992
238899
|
};
|
|
238900
|
+
export type TrelloBoardHistory = {
|
|
238901
|
+
__typename?: 'TrelloBoardHistory';
|
|
238902
|
+
cardsPerDueDateStatus: TrelloBoardHistoryTimeSeries;
|
|
238903
|
+
cardsPerLabel: TrelloBoardHistoryTimeSeries;
|
|
238904
|
+
cardsPerList: TrelloBoardHistoryTimeSeries;
|
|
238905
|
+
cardsPerMember: TrelloBoardHistoryTimeSeries;
|
|
238906
|
+
};
|
|
238907
|
+
export type TrelloBoardHistoryCardsPerDueDateStatusArgs = {
|
|
238908
|
+
statuses?: InputMaybe<Array<TrelloBoardHistoryDueDateStatus>>;
|
|
238909
|
+
};
|
|
238910
|
+
export type TrelloBoardHistoryCardsPerLabelArgs = {
|
|
238911
|
+
labelIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
238912
|
+
};
|
|
238913
|
+
export type TrelloBoardHistoryCardsPerListArgs = {
|
|
238914
|
+
listIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
238915
|
+
};
|
|
238916
|
+
export type TrelloBoardHistoryCardsPerMemberArgs = {
|
|
238917
|
+
memberIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
238918
|
+
};
|
|
238919
|
+
export type TrelloBoardHistoryDatapoint = {
|
|
238920
|
+
__typename?: 'TrelloBoardHistoryDatapoint';
|
|
238921
|
+
dateTime: Scalars['DateTime']['output'];
|
|
238922
|
+
value: Scalars['Int']['output'];
|
|
238923
|
+
};
|
|
238924
|
+
export declare enum TrelloBoardHistoryDueDateStatus {
|
|
238925
|
+
Done = "DONE",
|
|
238926
|
+
DueLater = "DUE_LATER",
|
|
238927
|
+
DueSoon = "DUE_SOON",
|
|
238928
|
+
NoDueDate = "NO_DUE_DATE",
|
|
238929
|
+
Overdue = "OVERDUE"
|
|
238930
|
+
}
|
|
238931
|
+
export type TrelloBoardHistorySeriesEntry = {
|
|
238932
|
+
__typename?: 'TrelloBoardHistorySeriesEntry';
|
|
238933
|
+
datapoints: Array<TrelloBoardHistoryDatapoint>;
|
|
238934
|
+
id: Scalars['String']['output'];
|
|
238935
|
+
};
|
|
238936
|
+
export type TrelloBoardHistoryTimeSeries = {
|
|
238937
|
+
__typename?: 'TrelloBoardHistoryTimeSeries';
|
|
238938
|
+
complete: Scalars['Boolean']['output'];
|
|
238939
|
+
series: Array<TrelloBoardHistorySeriesEntry>;
|
|
238940
|
+
};
|
|
237993
238941
|
export type TrelloBoardId = TrelloBaseBoardId & {
|
|
237994
238942
|
__typename?: 'TrelloBoardId';
|
|
237995
238943
|
id: Scalars['ID']['output'];
|
|
@@ -238214,6 +239162,7 @@ export type TrelloBoardViewer = {
|
|
|
238214
239162
|
aiBrowserExtensionEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
238215
239163
|
aiConfluenceEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
238216
239164
|
aiEmailEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
239165
|
+
aiGoogleChatEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
238217
239166
|
aiMSTeamsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
238218
239167
|
aiSlackEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
238219
239168
|
calendarKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -240901,6 +241850,7 @@ export type TrelloMutationApi = {
|
|
|
240901
241850
|
updateBoardViewerAIBrowserExtension?: Maybe<TrelloUpdateBoardViewerAiBrowserExtensionPayload>;
|
|
240902
241851
|
updateBoardViewerAIConfluence?: Maybe<TrelloUpdateBoardViewerAiConfluencePayload>;
|
|
240903
241852
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
241853
|
+
updateBoardViewerAIGoogleChat?: Maybe<TrelloUpdateBoardViewerAiGoogleChatPayload>;
|
|
240904
241854
|
updateBoardViewerAIMSTeams?: Maybe<TrelloUpdateBoardViewerAimsTeamsPayload>;
|
|
240905
241855
|
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
240906
241856
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
@@ -241249,6 +242199,9 @@ export type TrelloMutationApiUpdateBoardViewerAiConfluenceArgs = {
|
|
|
241249
242199
|
export type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
241250
242200
|
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
241251
242201
|
};
|
|
242202
|
+
export type TrelloMutationApiUpdateBoardViewerAiGoogleChatArgs = {
|
|
242203
|
+
input: TrelloUpdateBoardViewerAiGoogleChatInput;
|
|
242204
|
+
};
|
|
241252
242205
|
export type TrelloMutationApiUpdateBoardViewerAimsTeamsArgs = {
|
|
241253
242206
|
input: TrelloUpdateBoardViewerAimsTeamsInput;
|
|
241254
242207
|
};
|
|
@@ -242276,6 +243229,7 @@ export type TrelloQueryApi = {
|
|
|
242276
243229
|
attachmentsById?: Maybe<Array<Maybe<TrelloAttachment>>>;
|
|
242277
243230
|
board?: Maybe<TrelloBoard>;
|
|
242278
243231
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
243232
|
+
boardHistory?: Maybe<TrelloBoardHistory>;
|
|
242279
243233
|
boardMirrorCardInfo?: Maybe<TrelloBoardMirrorCards>;
|
|
242280
243234
|
boardOrInbox?: Maybe<TrelloBaseBoard>;
|
|
242281
243235
|
card?: Maybe<TrelloCard>;
|
|
@@ -242332,6 +243286,11 @@ export type TrelloQueryApiBoardArgs = {
|
|
|
242332
243286
|
export type TrelloQueryApiBoardByShortLinkArgs = {
|
|
242333
243287
|
shortLink: Scalars['TrelloShortLink']['input'];
|
|
242334
243288
|
};
|
|
243289
|
+
export type TrelloQueryApiBoardHistoryArgs = {
|
|
243290
|
+
boardId: Scalars['ID']['input'];
|
|
243291
|
+
from?: InputMaybe<Scalars['DateTime']['input']>;
|
|
243292
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
243293
|
+
};
|
|
242335
243294
|
export type TrelloQueryApiBoardMirrorCardInfoArgs = {
|
|
242336
243295
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
242337
243296
|
shortLink?: InputMaybe<Scalars['TrelloShortLink']['input']>;
|
|
@@ -243129,6 +244088,16 @@ export type TrelloUpdateBoardViewerAiEmailPayload = Payload & {
|
|
|
243129
244088
|
success: Scalars['Boolean']['output'];
|
|
243130
244089
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
243131
244090
|
};
|
|
244091
|
+
export type TrelloUpdateBoardViewerAiGoogleChatInput = {
|
|
244092
|
+
boardId: Scalars['ID']['input'];
|
|
244093
|
+
value: Scalars['Boolean']['input'];
|
|
244094
|
+
};
|
|
244095
|
+
export type TrelloUpdateBoardViewerAiGoogleChatPayload = Payload & {
|
|
244096
|
+
__typename?: 'TrelloUpdateBoardViewerAIGoogleChatPayload';
|
|
244097
|
+
errors?: Maybe<Array<MutationError>>;
|
|
244098
|
+
success: Scalars['Boolean']['output'];
|
|
244099
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
244100
|
+
};
|
|
243132
244101
|
export type TrelloUpdateBoardViewerAimsTeamsInput = {
|
|
243133
244102
|
boardId: Scalars['ID']['input'];
|
|
243134
244103
|
value: Scalars['Boolean']['input'];
|