@forge/cli-shared 9.1.1-next.1 → 9.2.0-next.3
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 +13 -0
- package/out/graphql/graphql-types.d.ts +1264 -2
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +134 -47
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -0
- 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 = {
|
|
@@ -10744,6 +10770,47 @@ export type AppPermission = {
|
|
|
10744
10770
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermission>>;
|
|
10745
10771
|
supportsConfigurableEgress?: Maybe<Scalars['Boolean']['output']>;
|
|
10746
10772
|
};
|
|
10773
|
+
export type AppPreDeploymentCheckChange = {
|
|
10774
|
+
__typename?: 'AppPreDeploymentCheckChange';
|
|
10775
|
+
added?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
10776
|
+
key: Scalars['String']['output'];
|
|
10777
|
+
removed?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
10778
|
+
};
|
|
10779
|
+
export type AppPreDeploymentCheckError = {
|
|
10780
|
+
__typename?: 'AppPreDeploymentCheckError';
|
|
10781
|
+
column?: Maybe<Scalars['Int']['output']>;
|
|
10782
|
+
key: Scalars['String']['output'];
|
|
10783
|
+
line?: Maybe<Scalars['Int']['output']>;
|
|
10784
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
10785
|
+
};
|
|
10786
|
+
export type AppPreDeploymentCheckInput = {
|
|
10787
|
+
appId: Scalars['ID']['input'];
|
|
10788
|
+
bypassRules?: InputMaybe<Array<AppPreDeploymentCheckRules>>;
|
|
10789
|
+
environmentKey: Scalars['String']['input'];
|
|
10790
|
+
manifestUrl: Scalars['URL']['input'];
|
|
10791
|
+
};
|
|
10792
|
+
export type AppPreDeploymentCheckOutcome = {
|
|
10793
|
+
__typename?: 'AppPreDeploymentCheckOutcome';
|
|
10794
|
+
category: AppPreDeploymentCheckRuleCategory;
|
|
10795
|
+
changes?: Maybe<Array<Maybe<AppPreDeploymentCheckChange>>>;
|
|
10796
|
+
errors?: Maybe<Array<Maybe<AppPreDeploymentCheckError>>>;
|
|
10797
|
+
reason: Scalars['String']['output'];
|
|
10798
|
+
rule: Scalars['String']['output'];
|
|
10799
|
+
value: Scalars['Boolean']['output'];
|
|
10800
|
+
};
|
|
10801
|
+
export type AppPreDeploymentCheckResponse = {
|
|
10802
|
+
__typename?: 'AppPreDeploymentCheckResponse';
|
|
10803
|
+
outcome?: Maybe<Array<Maybe<AppPreDeploymentCheckOutcome>>>;
|
|
10804
|
+
};
|
|
10805
|
+
export declare enum AppPreDeploymentCheckRuleCategory {
|
|
10806
|
+
Approval = "APPROVAL",
|
|
10807
|
+
Error = "ERROR"
|
|
10808
|
+
}
|
|
10809
|
+
export declare enum AppPreDeploymentCheckRules {
|
|
10810
|
+
MajorVersionRule = "MAJOR_VERSION_RULE",
|
|
10811
|
+
ManifestInvalidRule = "MANIFEST_INVALID_RULE",
|
|
10812
|
+
SystemUserChangeRule = "SYSTEM_USER_CHANGE_RULE"
|
|
10813
|
+
}
|
|
10747
10814
|
export type AppPrincipal = {
|
|
10748
10815
|
__typename?: 'AppPrincipal';
|
|
10749
10816
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -13596,6 +13663,7 @@ export type AssetsDmObjectsListDataRowItem = {
|
|
|
13596
13663
|
__typename?: 'AssetsDMObjectsListDataRowItem';
|
|
13597
13664
|
columnName: Scalars['String']['output'];
|
|
13598
13665
|
columnType: AssetsDmObjectsListColumnType;
|
|
13666
|
+
reasonLabel?: Maybe<Scalars['String']['output']>;
|
|
13599
13667
|
value?: Maybe<Scalars['JSON']['output']>;
|
|
13600
13668
|
};
|
|
13601
13669
|
export type AssetsDmObjectsListDataRows = {
|
|
@@ -13820,6 +13888,7 @@ export type AssetsDmSavedSearch = {
|
|
|
13820
13888
|
export type AssetsDmSavedSearchDetails = {
|
|
13821
13889
|
__typename?: 'AssetsDMSavedSearchDetails';
|
|
13822
13890
|
name: Scalars['String']['output'];
|
|
13891
|
+
resultCount?: Maybe<Scalars['Int']['output']>;
|
|
13823
13892
|
savedSearchId: Scalars['ID']['output'];
|
|
13824
13893
|
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
13825
13894
|
};
|
|
@@ -20026,6 +20095,13 @@ export type CloudifyCloudProjectTargetInput = {
|
|
|
20026
20095
|
projectId: Scalars['ID']['input'];
|
|
20027
20096
|
siteId: Scalars['ID']['input'];
|
|
20028
20097
|
};
|
|
20098
|
+
export type CloudifyDcInstanceTarget = {
|
|
20099
|
+
__typename?: 'CloudifyDcInstanceTarget';
|
|
20100
|
+
srsLinkId: CloudifySrsLinkId;
|
|
20101
|
+
};
|
|
20102
|
+
export type CloudifyDcInstanceTargetInput = {
|
|
20103
|
+
srsLinkId: Scalars['ID']['input'];
|
|
20104
|
+
};
|
|
20029
20105
|
export type CloudifyEnactment = {
|
|
20030
20106
|
__typename?: 'CloudifyEnactment';
|
|
20031
20107
|
completedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -20068,6 +20144,7 @@ export type CloudifyRecommendation = {
|
|
|
20068
20144
|
export type CloudifyRecommendationFilterInput = {
|
|
20069
20145
|
cloudProject?: InputMaybe<CloudifyCloudProjectTargetInput>;
|
|
20070
20146
|
siteId?: InputMaybe<Scalars['ID']['input']>;
|
|
20147
|
+
srsLinkId?: InputMaybe<Scalars['ID']['input']>;
|
|
20071
20148
|
};
|
|
20072
20149
|
export type CloudifyRecommendationId = {
|
|
20073
20150
|
__typename?: 'CloudifyRecommendationId';
|
|
@@ -20093,7 +20170,7 @@ export type CloudifyRecommendationStep = {
|
|
|
20093
20170
|
title: Scalars['String']['output'];
|
|
20094
20171
|
toolId: CloudifyToolId;
|
|
20095
20172
|
};
|
|
20096
|
-
export type CloudifyRecommendationTarget = CloudifyCloudProjectTarget | CloudifySiteTarget;
|
|
20173
|
+
export type CloudifyRecommendationTarget = CloudifyCloudProjectTarget | CloudifyDcInstanceTarget | CloudifySiteTarget;
|
|
20097
20174
|
export type CloudifySiteTarget = {
|
|
20098
20175
|
__typename?: 'CloudifySiteTarget';
|
|
20099
20176
|
siteId: Scalars['ID']['output'];
|
|
@@ -20101,6 +20178,10 @@ export type CloudifySiteTarget = {
|
|
|
20101
20178
|
export type CloudifySiteTargetInput = {
|
|
20102
20179
|
siteId: Scalars['ID']['input'];
|
|
20103
20180
|
};
|
|
20181
|
+
export type CloudifySrsLinkId = {
|
|
20182
|
+
__typename?: 'CloudifySrsLinkId';
|
|
20183
|
+
value: Scalars['String']['output'];
|
|
20184
|
+
};
|
|
20104
20185
|
export type CloudifyStepInput = {
|
|
20105
20186
|
arguments: Array<CloudifyArgumentInput>;
|
|
20106
20187
|
reasoning: Scalars['String']['input'];
|
|
@@ -20109,6 +20190,7 @@ export type CloudifyStepInput = {
|
|
|
20109
20190
|
};
|
|
20110
20191
|
export type CloudifyTargetInput = {
|
|
20111
20192
|
cloudProject?: InputMaybe<CloudifyCloudProjectTargetInput>;
|
|
20193
|
+
dcInstance?: InputMaybe<CloudifyDcInstanceTargetInput>;
|
|
20112
20194
|
site?: InputMaybe<CloudifySiteTargetInput>;
|
|
20113
20195
|
};
|
|
20114
20196
|
export type CloudifyToolId = {
|
|
@@ -39499,6 +39581,16 @@ export type CreateAppInput = {
|
|
|
39499
39581
|
developerSpaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
39500
39582
|
name: Scalars['String']['input'];
|
|
39501
39583
|
};
|
|
39584
|
+
export type CreateAppManifestUploadUrlInput = {
|
|
39585
|
+
appId: Scalars['ID']['input'];
|
|
39586
|
+
environmentKey: Scalars['String']['input'];
|
|
39587
|
+
};
|
|
39588
|
+
export type CreateAppManifestUploadUrlResponse = Payload & {
|
|
39589
|
+
__typename?: 'CreateAppManifestUploadUrlResponse';
|
|
39590
|
+
errors?: Maybe<Array<MutationError>>;
|
|
39591
|
+
preSignedUrl?: Maybe<Scalars['String']['output']>;
|
|
39592
|
+
success: Scalars['Boolean']['output'];
|
|
39593
|
+
};
|
|
39502
39594
|
export type CreateAppResponse = Payload & {
|
|
39503
39595
|
__typename?: 'CreateAppResponse';
|
|
39504
39596
|
app?: Maybe<App>;
|
|
@@ -40318,6 +40410,7 @@ export type CsmAiAgentToolSelectionInput = {
|
|
|
40318
40410
|
export declare enum CsmAiAgentToolSource {
|
|
40319
40411
|
ConvoAi = "CONVO_AI",
|
|
40320
40412
|
Forge = "FORGE",
|
|
40413
|
+
ForgeMcp = "FORGE_MCP",
|
|
40321
40414
|
IntegrationsService = "INTEGRATIONS_SERVICE",
|
|
40322
40415
|
McpServer = "MCP_SERVER",
|
|
40323
40416
|
McpTool = "MCP_TOOL"
|
|
@@ -43530,6 +43623,17 @@ export declare enum DevAiAutodevLogStatus {
|
|
|
43530
43623
|
Failed = "FAILED",
|
|
43531
43624
|
InProgress = "IN_PROGRESS"
|
|
43532
43625
|
}
|
|
43626
|
+
export type DevAiAutodevNextAddExcludedRepositoriesInput = {
|
|
43627
|
+
cloudId: Scalars['ID']['input'];
|
|
43628
|
+
repositoryAris: Array<Scalars['ID']['input']>;
|
|
43629
|
+
workstreamId: Scalars['ID']['input'];
|
|
43630
|
+
};
|
|
43631
|
+
export type DevAiAutodevNextAddExcludedRepositoriesPayload = Payload & {
|
|
43632
|
+
__typename?: 'DevAiAutodevNextAddExcludedRepositoriesPayload';
|
|
43633
|
+
errors?: Maybe<Array<MutationError>>;
|
|
43634
|
+
excludedRepositories?: Maybe<Array<DevAiAutodevNextExcludedRepository>>;
|
|
43635
|
+
success: Scalars['Boolean']['output'];
|
|
43636
|
+
};
|
|
43533
43637
|
export type DevAiAutodevNextAddMembersInput = {
|
|
43534
43638
|
cloudId: Scalars['ID']['input'];
|
|
43535
43639
|
members: Array<DevAiAutodevNextMemberItemInput>;
|
|
@@ -43637,6 +43741,12 @@ export type DevAiAutodevNextDeleteWorkstreamPayload = Payload & {
|
|
|
43637
43741
|
errors?: Maybe<Array<MutationError>>;
|
|
43638
43742
|
success: Scalars['Boolean']['output'];
|
|
43639
43743
|
};
|
|
43744
|
+
export type DevAiAutodevNextExcludedRepository = {
|
|
43745
|
+
__typename?: 'DevAiAutodevNextExcludedRepository';
|
|
43746
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43747
|
+
id: Scalars['ID']['output'];
|
|
43748
|
+
repositoryAri: Scalars['ID']['output'];
|
|
43749
|
+
};
|
|
43640
43750
|
export type DevAiAutodevNextGlobalDashboard = {
|
|
43641
43751
|
__typename?: 'DevAiAutodevNextGlobalDashboard';
|
|
43642
43752
|
activeSpaceCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -43728,6 +43838,16 @@ export type DevAiAutodevNextReassignWorkItemPayload = Payload & {
|
|
|
43728
43838
|
success: Scalars['Boolean']['output'];
|
|
43729
43839
|
workItem?: Maybe<DevAiAutodevNextWorkItem>;
|
|
43730
43840
|
};
|
|
43841
|
+
export type DevAiAutodevNextRemoveExcludedRepositoriesInput = {
|
|
43842
|
+
cloudId: Scalars['ID']['input'];
|
|
43843
|
+
repositoryAris: Array<Scalars['ID']['input']>;
|
|
43844
|
+
workstreamId: Scalars['ID']['input'];
|
|
43845
|
+
};
|
|
43846
|
+
export type DevAiAutodevNextRemoveExcludedRepositoriesPayload = Payload & {
|
|
43847
|
+
__typename?: 'DevAiAutodevNextRemoveExcludedRepositoriesPayload';
|
|
43848
|
+
errors?: Maybe<Array<MutationError>>;
|
|
43849
|
+
success: Scalars['Boolean']['output'];
|
|
43850
|
+
};
|
|
43731
43851
|
export type DevAiAutodevNextRemoveMembersInput = {
|
|
43732
43852
|
cloudId: Scalars['ID']['input'];
|
|
43733
43853
|
userIds: Array<Scalars['ID']['input']>;
|
|
@@ -43751,10 +43871,12 @@ export type DevAiAutodevNextRemoveProjectsPayload = Payload & {
|
|
|
43751
43871
|
export type DevAiAutodevNextScanSchedule = {
|
|
43752
43872
|
__typename?: 'DevAiAutodevNextScanSchedule';
|
|
43753
43873
|
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
43874
|
+
timeOfDay?: Maybe<Scalars['String']['output']>;
|
|
43754
43875
|
timezone: Scalars['String']['output'];
|
|
43755
43876
|
};
|
|
43756
43877
|
export type DevAiAutodevNextScanScheduleInput = {
|
|
43757
43878
|
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
43879
|
+
timeOfDay?: InputMaybe<Scalars['String']['input']>;
|
|
43758
43880
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
43759
43881
|
};
|
|
43760
43882
|
export type DevAiAutodevNextScanTargetItemInput = {
|
|
@@ -43893,6 +44015,7 @@ export declare enum DevAiAutodevNextWorkItemState {
|
|
|
43893
44015
|
export type DevAiAutodevNextWorkstream = {
|
|
43894
44016
|
__typename?: 'DevAiAutodevNextWorkstream';
|
|
43895
44017
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
44018
|
+
excludedRepositories?: Maybe<Array<DevAiAutodevNextExcludedRepository>>;
|
|
43896
44019
|
findWorkMode: DevAiAutodevNextWorkstreamFindWorkMode;
|
|
43897
44020
|
id: Scalars['ID']['output'];
|
|
43898
44021
|
lastSweep?: Maybe<DevAiAutodevNextWorkstreamLastSweep>;
|
|
@@ -43960,6 +44083,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
43960
44083
|
pullRequestMessage?: Maybe<Scalars['String']['output']>;
|
|
43961
44084
|
pullRequestPrefix?: Maybe<Scalars['String']['output']>;
|
|
43962
44085
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
44086
|
+
scanSchedules?: Maybe<Array<DevAiAutodevNextScanSchedule>>;
|
|
43963
44087
|
sessionPrompt?: Maybe<Scalars['String']['output']>;
|
|
43964
44088
|
suggestedJql?: Maybe<Scalars['String']['output']>;
|
|
43965
44089
|
taskOverdueAfterDays?: Maybe<Scalars['Int']['output']>;
|
|
@@ -43978,6 +44102,7 @@ export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
43978
44102
|
pullRequestMessage?: InputMaybe<Scalars['String']['input']>;
|
|
43979
44103
|
pullRequestPrefix?: InputMaybe<Scalars['String']['input']>;
|
|
43980
44104
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
44105
|
+
scanSchedules?: InputMaybe<Array<DevAiAutodevNextScanScheduleInput>>;
|
|
43981
44106
|
sessionPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
43982
44107
|
suggestedJql?: InputMaybe<Scalars['String']['input']>;
|
|
43983
44108
|
taskOverdueAfterDays?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -47229,6 +47354,17 @@ export type EcosystemDataClassificationsContext = {
|
|
|
47229
47354
|
hasConstraints?: Maybe<Scalars['Boolean']['output']>;
|
|
47230
47355
|
id: Scalars['ID']['output'];
|
|
47231
47356
|
};
|
|
47357
|
+
export type EcosystemExecuteOrderInput = {
|
|
47358
|
+
invoiceGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
47359
|
+
items: Array<EcosystemOrderItemRequestInput>;
|
|
47360
|
+
orderId: Scalars['String']['input'];
|
|
47361
|
+
transactionAccountId: Scalars['String']['input'];
|
|
47362
|
+
};
|
|
47363
|
+
export type EcosystemExecuteOrderResponse = {
|
|
47364
|
+
__typename?: 'EcosystemExecuteOrderResponse';
|
|
47365
|
+
errors?: Maybe<Array<MutationError>>;
|
|
47366
|
+
success: Scalars['Boolean']['output'];
|
|
47367
|
+
};
|
|
47232
47368
|
export type EcosystemGlobalInstallationConfigInput = {
|
|
47233
47369
|
cloudId: Scalars['ID']['input'];
|
|
47234
47370
|
config: Array<EcosystemGlobalInstallationOverrideInput>;
|
|
@@ -47253,6 +47389,7 @@ export declare enum EcosystemGlobalInstallationOverrideKeys {
|
|
|
47253
47389
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
47254
47390
|
AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
|
|
47255
47391
|
AllowLogsAccess = "ALLOW_LOGS_ACCESS",
|
|
47392
|
+
AllowPersonalApps = "ALLOW_PERSONAL_APPS",
|
|
47256
47393
|
AllowRestApis = "ALLOW_REST_APIS"
|
|
47257
47394
|
}
|
|
47258
47395
|
export type EcosystemInstallationConfigInput = {
|
|
@@ -47387,6 +47524,7 @@ export type EcosystemMutation = {
|
|
|
47387
47524
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
47388
47525
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
47389
47526
|
devConsole?: Maybe<DevConsoleMutation>;
|
|
47527
|
+
executeOrder?: Maybe<EcosystemExecuteOrderResponse>;
|
|
47390
47528
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
47391
47529
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
47392
47530
|
forgeObservability?: Maybe<ForgeObservabilityMutation>;
|
|
@@ -47430,6 +47568,9 @@ export type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
|
47430
47568
|
export type EcosystemMutationDeleteUserGrantArgs = {
|
|
47431
47569
|
input: DeleteUserGrantInput;
|
|
47432
47570
|
};
|
|
47571
|
+
export type EcosystemMutationExecuteOrderArgs = {
|
|
47572
|
+
input: EcosystemExecuteOrderInput;
|
|
47573
|
+
};
|
|
47433
47574
|
export type EcosystemMutationForgeAlertsArgs = {
|
|
47434
47575
|
appId: Scalars['ID']['input'];
|
|
47435
47576
|
};
|
|
@@ -47473,6 +47614,34 @@ export type EcosystemMutationUpdateInstallationRemoteRegionArgs = {
|
|
|
47473
47614
|
export type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
47474
47615
|
input: UpdateUserInstallationRulesInput;
|
|
47475
47616
|
};
|
|
47617
|
+
export type EcosystemOrderEntitlementInput = {
|
|
47618
|
+
id: Scalars['String']['input'];
|
|
47619
|
+
version: Scalars['Int']['input'];
|
|
47620
|
+
};
|
|
47621
|
+
export type EcosystemOrderItemChargingDetailsInput = {
|
|
47622
|
+
pricingPlanId: Scalars['String']['input'];
|
|
47623
|
+
};
|
|
47624
|
+
export type EcosystemOrderItemOptedUsageOptionsInput = {
|
|
47625
|
+
chargingDetails?: InputMaybe<EcosystemOrderItemChargingDetailsInput>;
|
|
47626
|
+
trial: EcosystemOrderItemTrialOptionsInput;
|
|
47627
|
+
};
|
|
47628
|
+
export type EcosystemOrderItemRequestInput = {
|
|
47629
|
+
entitlement: EcosystemOrderEntitlementInput;
|
|
47630
|
+
itemId: Scalars['String']['input'];
|
|
47631
|
+
nextBillingAnchorTimestamp?: InputMaybe<Scalars['Float']['input']>;
|
|
47632
|
+
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
47633
|
+
optedUsageOptions?: InputMaybe<EcosystemOrderItemOptedUsageOptionsInput>;
|
|
47634
|
+
reasonCode?: InputMaybe<Scalars['String']['input']>;
|
|
47635
|
+
type: EcosystemOrderType;
|
|
47636
|
+
};
|
|
47637
|
+
export type EcosystemOrderItemTrialOptionsInput = {
|
|
47638
|
+
skipTrial: Scalars['Boolean']['input'];
|
|
47639
|
+
};
|
|
47640
|
+
export declare enum EcosystemOrderType {
|
|
47641
|
+
AmendmentOrder = "AMENDMENT_ORDER",
|
|
47642
|
+
CancellationOrder = "CANCELLATION_ORDER",
|
|
47643
|
+
ReactivationOrder = "REACTIVATION_ORDER"
|
|
47644
|
+
}
|
|
47476
47645
|
export type EcosystemOrgUnit = {
|
|
47477
47646
|
__typename?: 'EcosystemOrgUnit';
|
|
47478
47647
|
id: Scalars['ID']['output'];
|
|
@@ -52844,6 +53013,48 @@ export type GraphInferenceGetSimilarJiraItemsResponse = {
|
|
|
52844
53013
|
meta: GraphInferenceSimilarJiraItemsMeta;
|
|
52845
53014
|
root: GraphInferenceSimilarJiraItemsRoot;
|
|
52846
53015
|
};
|
|
53016
|
+
export type GraphInferenceGraphclawOption = {
|
|
53017
|
+
__typename?: 'GraphInferenceGraphclawOption';
|
|
53018
|
+
enabled: Scalars['Boolean']['output'];
|
|
53019
|
+
id: Scalars['String']['output'];
|
|
53020
|
+
name: Scalars['String']['output'];
|
|
53021
|
+
};
|
|
53022
|
+
export type GraphInferenceInferenceApp = {
|
|
53023
|
+
__typename?: 'GraphInferenceInferenceApp';
|
|
53024
|
+
enabled: Scalars['Boolean']['output'];
|
|
53025
|
+
id: Scalars['String']['output'];
|
|
53026
|
+
inferenceTarget: Scalars['String']['output'];
|
|
53027
|
+
inferenceType: Scalars['String']['output'];
|
|
53028
|
+
name: Scalars['String']['output'];
|
|
53029
|
+
product: Scalars['String']['output'];
|
|
53030
|
+
realtime: Scalars['Boolean']['output'];
|
|
53031
|
+
};
|
|
53032
|
+
export type GraphInferenceInferenceAppAddInput = {
|
|
53033
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53034
|
+
inferenceTarget: Scalars['String']['input'];
|
|
53035
|
+
inferenceType: Scalars['String']['input'];
|
|
53036
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
53037
|
+
product: Scalars['String']['input'];
|
|
53038
|
+
realtime?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53039
|
+
};
|
|
53040
|
+
export type GraphInferenceInferenceAppDeleteInput = {
|
|
53041
|
+
id: Scalars['String']['input'];
|
|
53042
|
+
};
|
|
53043
|
+
export type GraphInferenceInferenceAppEditInput = {
|
|
53044
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53045
|
+
id: Scalars['String']['input'];
|
|
53046
|
+
inferenceTarget?: InputMaybe<Scalars['String']['input']>;
|
|
53047
|
+
inferenceType?: InputMaybe<Scalars['String']['input']>;
|
|
53048
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
53049
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
53050
|
+
realtime?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53051
|
+
};
|
|
53052
|
+
export type GraphInferenceInferenceAppMutationPayload = {
|
|
53053
|
+
__typename?: 'GraphInferenceInferenceAppMutationPayload';
|
|
53054
|
+
app?: Maybe<GraphInferenceInferenceApp>;
|
|
53055
|
+
errors: Array<GraphInferenceMutationError>;
|
|
53056
|
+
success: Scalars['Boolean']['output'];
|
|
53057
|
+
};
|
|
52847
53058
|
export type GraphInferenceInferredProjectContext = {
|
|
52848
53059
|
__typename?: 'GraphInferenceInferredProjectContext';
|
|
52849
53060
|
cloudId: Scalars['String']['output'];
|
|
@@ -52880,6 +53091,7 @@ export type GraphInferenceJiraEntityContextCandidate = {
|
|
|
52880
53091
|
reasonCodes: Array<Scalars['String']['output']>;
|
|
52881
53092
|
score: Scalars['Float']['output'];
|
|
52882
53093
|
scoreMl?: Maybe<Scalars['Float']['output']>;
|
|
53094
|
+
sourceBucketCounts: GraphInferenceJiraEntityContextSourceBucketCounts;
|
|
52883
53095
|
title?: Maybe<Scalars['String']['output']>;
|
|
52884
53096
|
url?: Maybe<Scalars['String']['output']>;
|
|
52885
53097
|
};
|
|
@@ -52917,6 +53129,17 @@ export type GraphInferenceJiraEntityContextRoot = {
|
|
|
52917
53129
|
key?: Maybe<Scalars['String']['output']>;
|
|
52918
53130
|
url?: Maybe<Scalars['String']['output']>;
|
|
52919
53131
|
};
|
|
53132
|
+
export type GraphInferenceJiraEntityContextSourceBucketCounts = {
|
|
53133
|
+
__typename?: 'GraphInferenceJiraEntityContextSourceBucketCounts';
|
|
53134
|
+
issue: Scalars['Int']['output'];
|
|
53135
|
+
memory: Scalars['Int']['output'];
|
|
53136
|
+
space: Scalars['Int']['output'];
|
|
53137
|
+
};
|
|
53138
|
+
export type GraphInferenceMutationError = {
|
|
53139
|
+
__typename?: 'GraphInferenceMutationError';
|
|
53140
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
53141
|
+
message: Scalars['String']['output'];
|
|
53142
|
+
};
|
|
52920
53143
|
export type GraphInferenceRelatedRepoCandidate = {
|
|
52921
53144
|
__typename?: 'GraphInferenceRelatedRepoCandidate';
|
|
52922
53145
|
ari: Scalars['String']['output'];
|
|
@@ -53512,6 +53735,45 @@ export type GraphIntegrationMcpToolNodeEdge = {
|
|
|
53512
53735
|
cursor: Scalars['String']['output'];
|
|
53513
53736
|
node?: Maybe<GraphIntegrationMcpToolNode>;
|
|
53514
53737
|
};
|
|
53738
|
+
export type GraphIntegrationRbacCreateRecordInput = {
|
|
53739
|
+
cloudId: Scalars['ID']['input'];
|
|
53740
|
+
principalId: Scalars['String']['input'];
|
|
53741
|
+
principalType: GraphIntegrationRbacPrincipalType;
|
|
53742
|
+
resourceAri: Scalars['ID']['input'];
|
|
53743
|
+
role: Scalars['String']['input'];
|
|
53744
|
+
workspaceAri: Scalars['ID']['input'];
|
|
53745
|
+
};
|
|
53746
|
+
export type GraphIntegrationRbacCreateRecordPayload = Payload & {
|
|
53747
|
+
__typename?: 'GraphIntegrationRbacCreateRecordPayload';
|
|
53748
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53749
|
+
record?: Maybe<GraphIntegrationRbacRecord>;
|
|
53750
|
+
success: Scalars['Boolean']['output'];
|
|
53751
|
+
};
|
|
53752
|
+
export type GraphIntegrationRbacDeleteRecordInput = {
|
|
53753
|
+
cloudId: Scalars['ID']['input'];
|
|
53754
|
+
principalId: Scalars['String']['input'];
|
|
53755
|
+
principalType: GraphIntegrationRbacPrincipalType;
|
|
53756
|
+
resourceAri: Scalars['ID']['input'];
|
|
53757
|
+
role: Scalars['String']['input'];
|
|
53758
|
+
workspaceAri: Scalars['ID']['input'];
|
|
53759
|
+
};
|
|
53760
|
+
export type GraphIntegrationRbacDeleteRecordPayload = Payload & {
|
|
53761
|
+
__typename?: 'GraphIntegrationRbacDeleteRecordPayload';
|
|
53762
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53763
|
+
success: Scalars['Boolean']['output'];
|
|
53764
|
+
};
|
|
53765
|
+
export declare enum GraphIntegrationRbacPrincipalType {
|
|
53766
|
+
Group = "GROUP",
|
|
53767
|
+
User = "USER"
|
|
53768
|
+
}
|
|
53769
|
+
export type GraphIntegrationRbacRecord = {
|
|
53770
|
+
__typename?: 'GraphIntegrationRbacRecord';
|
|
53771
|
+
id: Scalars['ID']['output'];
|
|
53772
|
+
principalAri: Scalars['ID']['output'];
|
|
53773
|
+
resourceAri: Scalars['ID']['output'];
|
|
53774
|
+
role: Scalars['String']['output'];
|
|
53775
|
+
workspaceAri: Scalars['ID']['output'];
|
|
53776
|
+
};
|
|
53515
53777
|
export type GraphIntegrationRemoveTwgCapabilityContainerInput = {
|
|
53516
53778
|
contextAri: Scalars['ID']['input'];
|
|
53517
53779
|
id: Scalars['String']['input'];
|
|
@@ -53665,6 +53927,7 @@ export declare enum GraphIntegrationStatus {
|
|
|
53665
53927
|
}
|
|
53666
53928
|
export declare enum GraphIntegrationSurface {
|
|
53667
53929
|
Automation = "AUTOMATION",
|
|
53930
|
+
Csm = "CSM",
|
|
53668
53931
|
Pollinator = "POLLINATOR",
|
|
53669
53932
|
Rovo = "ROVO",
|
|
53670
53933
|
RovoAgents = "ROVO_AGENTS",
|
|
@@ -56511,6 +56774,8 @@ export type GraphStore = {
|
|
|
56511
56774
|
atlassianUserCreatedExternalExperimentalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalExperimentalInverseConnection>;
|
|
56512
56775
|
atlassianUserCreatedExternalLead?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalLeadConnection>;
|
|
56513
56776
|
atlassianUserCreatedExternalLeadInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalLeadInverseConnection>;
|
|
56777
|
+
atlassianUserCreatedExternalServicenowBusinessApp?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppConnection>;
|
|
56778
|
+
atlassianUserCreatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseConnection>;
|
|
56514
56779
|
atlassianUserCreatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection>;
|
|
56515
56780
|
atlassianUserCreatedExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseConnection>;
|
|
56516
56781
|
atlassianUserCreatedExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionConnection>;
|
|
@@ -56547,6 +56812,8 @@ export type GraphStore = {
|
|
|
56547
56812
|
atlassianUserOwnsExternalExperimentalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalExperimentalInverseConnection>;
|
|
56548
56813
|
atlassianUserOwnsExternalLead?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalLeadConnection>;
|
|
56549
56814
|
atlassianUserOwnsExternalLeadInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalLeadInverseConnection>;
|
|
56815
|
+
atlassianUserOwnsExternalServicenowBusinessApp?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppConnection>;
|
|
56816
|
+
atlassianUserOwnsExternalServicenowBusinessAppInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseConnection>;
|
|
56550
56817
|
atlassianUserOwnsExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection>;
|
|
56551
56818
|
atlassianUserOwnsExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseConnection>;
|
|
56552
56819
|
atlassianUserOwnsExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionConnection>;
|
|
@@ -56572,6 +56839,8 @@ export type GraphStore = {
|
|
|
56572
56839
|
atlassianUserUpdatedExternalExperimentalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalExperimentalInverseConnection>;
|
|
56573
56840
|
atlassianUserUpdatedExternalLead?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalLeadConnection>;
|
|
56574
56841
|
atlassianUserUpdatedExternalLeadInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalLeadInverseConnection>;
|
|
56842
|
+
atlassianUserUpdatedExternalServicenowBusinessApp?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppConnection>;
|
|
56843
|
+
atlassianUserUpdatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseConnection>;
|
|
56575
56844
|
atlassianUserUpdatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection>;
|
|
56576
56845
|
atlassianUserUpdatedExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseConnection>;
|
|
56577
56846
|
atlassianUserUpdatedExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionConnection>;
|
|
@@ -58300,6 +58569,22 @@ export type GraphStoreAtlassianUserCreatedExternalLeadInverseArgs = {
|
|
|
58300
58569
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58301
58570
|
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalLeadSortInput>;
|
|
58302
58571
|
};
|
|
58572
|
+
export type GraphStoreAtlassianUserCreatedExternalServicenowBusinessAppArgs = {
|
|
58573
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58574
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58575
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58576
|
+
id: Scalars['ID']['input'];
|
|
58577
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58578
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
58579
|
+
};
|
|
58580
|
+
export type GraphStoreAtlassianUserCreatedExternalServicenowBusinessAppInverseArgs = {
|
|
58581
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58582
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58583
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58584
|
+
id: Scalars['ID']['input'];
|
|
58585
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58586
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
58587
|
+
};
|
|
58303
58588
|
export type GraphStoreAtlassianUserCreatedExternalTeamArgs = {
|
|
58304
58589
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58305
58590
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58588,6 +58873,22 @@ export type GraphStoreAtlassianUserOwnsExternalLeadInverseArgs = {
|
|
|
58588
58873
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58589
58874
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalLeadSortInput>;
|
|
58590
58875
|
};
|
|
58876
|
+
export type GraphStoreAtlassianUserOwnsExternalServicenowBusinessAppArgs = {
|
|
58877
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58878
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58879
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58880
|
+
id: Scalars['ID']['input'];
|
|
58881
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58882
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
58883
|
+
};
|
|
58884
|
+
export type GraphStoreAtlassianUserOwnsExternalServicenowBusinessAppInverseArgs = {
|
|
58885
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58886
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58887
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58888
|
+
id: Scalars['ID']['input'];
|
|
58889
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58890
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
58891
|
+
};
|
|
58591
58892
|
export type GraphStoreAtlassianUserOwnsExternalTeamArgs = {
|
|
58592
58893
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58593
58894
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58788,6 +59089,22 @@ export type GraphStoreAtlassianUserUpdatedExternalLeadInverseArgs = {
|
|
|
58788
59089
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58789
59090
|
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalLeadSortInput>;
|
|
58790
59091
|
};
|
|
59092
|
+
export type GraphStoreAtlassianUserUpdatedExternalServicenowBusinessAppArgs = {
|
|
59093
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59094
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59095
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59096
|
+
id: Scalars['ID']['input'];
|
|
59097
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
59098
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
59099
|
+
};
|
|
59100
|
+
export type GraphStoreAtlassianUserUpdatedExternalServicenowBusinessAppInverseArgs = {
|
|
59101
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59102
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59103
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59104
|
+
id: Scalars['ID']['input'];
|
|
59105
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
59106
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
59107
|
+
};
|
|
58791
59108
|
export type GraphStoreAtlassianUserUpdatedExternalTeamArgs = {
|
|
58792
59109
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58793
59110
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67175,6 +67492,9 @@ export type GraphStoreAtlassianUserCreatedExternalExperimentalSortInput = {
|
|
|
67175
67492
|
export type GraphStoreAtlassianUserCreatedExternalLeadSortInput = {
|
|
67176
67493
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67177
67494
|
};
|
|
67495
|
+
export type GraphStoreAtlassianUserCreatedExternalServicenowBusinessAppSortInput = {
|
|
67496
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67497
|
+
};
|
|
67178
67498
|
export type GraphStoreAtlassianUserCreatedExternalTeamSortInput = {
|
|
67179
67499
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67180
67500
|
};
|
|
@@ -67268,6 +67588,9 @@ export type GraphStoreAtlassianUserOwnsExternalExperimentalSortInput = {
|
|
|
67268
67588
|
export type GraphStoreAtlassianUserOwnsExternalLeadSortInput = {
|
|
67269
67589
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67270
67590
|
};
|
|
67591
|
+
export type GraphStoreAtlassianUserOwnsExternalServicenowBusinessAppSortInput = {
|
|
67592
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67593
|
+
};
|
|
67271
67594
|
export type GraphStoreAtlassianUserOwnsExternalTeamSortInput = {
|
|
67272
67595
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67273
67596
|
};
|
|
@@ -67310,6 +67633,9 @@ export type GraphStoreAtlassianUserUpdatedExternalExperimentalSortInput = {
|
|
|
67310
67633
|
export type GraphStoreAtlassianUserUpdatedExternalLeadSortInput = {
|
|
67311
67634
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67312
67635
|
};
|
|
67636
|
+
export type GraphStoreAtlassianUserUpdatedExternalServicenowBusinessAppSortInput = {
|
|
67637
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67638
|
+
};
|
|
67313
67639
|
export type GraphStoreAtlassianUserUpdatedExternalTeamSortInput = {
|
|
67314
67640
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
67315
67641
|
};
|
|
@@ -74468,9 +74794,22 @@ export type GraphStoreIncidentLinkedJswIssueSortInput = {
|
|
|
74468
74794
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74469
74795
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
74470
74796
|
};
|
|
74797
|
+
export type GraphStoreInferredEntityMetadata = GraphStoreInferredProjectMetadata;
|
|
74798
|
+
export type GraphStoreInferredEntityResponse = {
|
|
74799
|
+
__typename?: 'GraphStoreInferredEntityResponse';
|
|
74800
|
+
entityType: Scalars['String']['output'];
|
|
74801
|
+
id: Scalars['String']['output'];
|
|
74802
|
+
metadata?: Maybe<GraphStoreInferredEntityMetadata>;
|
|
74803
|
+
workspaceId: Scalars['String']['output'];
|
|
74804
|
+
};
|
|
74471
74805
|
export type GraphStoreInferredProjectLinksEntitySortInput = {
|
|
74472
74806
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74473
74807
|
};
|
|
74808
|
+
export type GraphStoreInferredProjectMetadata = {
|
|
74809
|
+
__typename?: 'GraphStoreInferredProjectMetadata';
|
|
74810
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
74811
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
74812
|
+
};
|
|
74474
74813
|
export type GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
74475
74814
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74476
74815
|
};
|
|
@@ -76941,6 +77280,34 @@ export type GraphStoreSimplifiedAtlassianUserCreatedExternalLeadInverseEdge = {
|
|
|
76941
77280
|
};
|
|
76942
77281
|
export type GraphStoreSimplifiedAtlassianUserCreatedExternalLeadInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76943
77282
|
export type GraphStoreSimplifiedAtlassianUserCreatedExternalLeadUnion = ExternalLead;
|
|
77283
|
+
export type GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppConnection = HasPageInfo & {
|
|
77284
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppConnection';
|
|
77285
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppEdge>>>;
|
|
77286
|
+
pageInfo: PageInfo;
|
|
77287
|
+
};
|
|
77288
|
+
export type GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppEdge = {
|
|
77289
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppEdge';
|
|
77290
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77291
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77292
|
+
id: Scalars['ID']['output'];
|
|
77293
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77294
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppUnion>;
|
|
77295
|
+
};
|
|
77296
|
+
export type GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseConnection = HasPageInfo & {
|
|
77297
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseConnection';
|
|
77298
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseEdge>>>;
|
|
77299
|
+
pageInfo: PageInfo;
|
|
77300
|
+
};
|
|
77301
|
+
export type GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseEdge = {
|
|
77302
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseEdge';
|
|
77303
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77304
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77305
|
+
id: Scalars['ID']['output'];
|
|
77306
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77307
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseUnion>;
|
|
77308
|
+
};
|
|
77309
|
+
export type GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
77310
|
+
export type GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppUnion = ExternalServicenowBusinessApp;
|
|
76944
77311
|
export type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection = HasPageInfo & {
|
|
76945
77312
|
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection';
|
|
76946
77313
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamEdge>>>;
|
|
@@ -77393,6 +77760,34 @@ export type GraphStoreSimplifiedAtlassianUserOwnsExternalLeadInverseEdge = {
|
|
|
77393
77760
|
};
|
|
77394
77761
|
export type GraphStoreSimplifiedAtlassianUserOwnsExternalLeadInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
77395
77762
|
export type GraphStoreSimplifiedAtlassianUserOwnsExternalLeadUnion = ExternalLead;
|
|
77763
|
+
export type GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppConnection = HasPageInfo & {
|
|
77764
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppConnection';
|
|
77765
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppEdge>>>;
|
|
77766
|
+
pageInfo: PageInfo;
|
|
77767
|
+
};
|
|
77768
|
+
export type GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppEdge = {
|
|
77769
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppEdge';
|
|
77770
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77771
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77772
|
+
id: Scalars['ID']['output'];
|
|
77773
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77774
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppUnion>;
|
|
77775
|
+
};
|
|
77776
|
+
export type GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseConnection = HasPageInfo & {
|
|
77777
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseConnection';
|
|
77778
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseEdge>>>;
|
|
77779
|
+
pageInfo: PageInfo;
|
|
77780
|
+
};
|
|
77781
|
+
export type GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseEdge = {
|
|
77782
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseEdge';
|
|
77783
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77784
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77785
|
+
id: Scalars['ID']['output'];
|
|
77786
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77787
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseUnion>;
|
|
77788
|
+
};
|
|
77789
|
+
export type GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
77790
|
+
export type GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppUnion = ExternalServicenowBusinessApp;
|
|
77396
77791
|
export type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection = HasPageInfo & {
|
|
77397
77792
|
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection';
|
|
77398
77793
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamEdge>>>;
|
|
@@ -77743,6 +78138,34 @@ export type GraphStoreSimplifiedAtlassianUserUpdatedExternalLeadInverseEdge = {
|
|
|
77743
78138
|
};
|
|
77744
78139
|
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalLeadInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
77745
78140
|
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalLeadUnion = ExternalLead;
|
|
78141
|
+
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppConnection = HasPageInfo & {
|
|
78142
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppConnection';
|
|
78143
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppEdge>>>;
|
|
78144
|
+
pageInfo: PageInfo;
|
|
78145
|
+
};
|
|
78146
|
+
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppEdge = {
|
|
78147
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppEdge';
|
|
78148
|
+
createdAt: Scalars['DateTime']['output'];
|
|
78149
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
78150
|
+
id: Scalars['ID']['output'];
|
|
78151
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
78152
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppUnion>;
|
|
78153
|
+
};
|
|
78154
|
+
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseConnection = HasPageInfo & {
|
|
78155
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseConnection';
|
|
78156
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseEdge>>>;
|
|
78157
|
+
pageInfo: PageInfo;
|
|
78158
|
+
};
|
|
78159
|
+
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseEdge = {
|
|
78160
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseEdge';
|
|
78161
|
+
createdAt: Scalars['DateTime']['output'];
|
|
78162
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
78163
|
+
id: Scalars['ID']['output'];
|
|
78164
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
78165
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseUnion>;
|
|
78166
|
+
};
|
|
78167
|
+
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
78168
|
+
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppUnion = ExternalServicenowBusinessApp;
|
|
77746
78169
|
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection = HasPageInfo & {
|
|
77747
78170
|
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection';
|
|
77748
78171
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamEdge>>>;
|
|
@@ -90892,6 +91315,8 @@ export type GraphStoreV2 = {
|
|
|
90892
91315
|
externalUserCreatedExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalMessageInverseConnection>;
|
|
90893
91316
|
externalUserCreatedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestConnection>;
|
|
90894
91317
|
externalUserCreatedExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestInverseConnection>;
|
|
91318
|
+
externalUserCreatedExternalServicenowBusinessApp?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppConnection>;
|
|
91319
|
+
externalUserCreatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseConnection>;
|
|
90895
91320
|
externalUserCreatedExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalSoftwareServiceConnection>;
|
|
90896
91321
|
externalUserCreatedExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalSoftwareServiceInverseConnection>;
|
|
90897
91322
|
externalUserCreatedExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalSpaceConnection>;
|
|
@@ -90943,6 +91368,8 @@ export type GraphStoreV2 = {
|
|
|
90943
91368
|
externalUserOwnsExternalLeadInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalLeadInverseConnection>;
|
|
90944
91369
|
externalUserOwnsExternalRepository?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryConnection>;
|
|
90945
91370
|
externalUserOwnsExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseConnection>;
|
|
91371
|
+
externalUserOwnsExternalServicenowBusinessApp?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppConnection>;
|
|
91372
|
+
externalUserOwnsExternalServicenowBusinessAppInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseConnection>;
|
|
90946
91373
|
externalUserOwnsExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceConnection>;
|
|
90947
91374
|
externalUserOwnsExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceInverseConnection>;
|
|
90948
91375
|
externalUserOwnsExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSpaceConnection>;
|
|
@@ -90984,6 +91411,8 @@ export type GraphStoreV2 = {
|
|
|
90984
91411
|
externalUserUpdatedExternalExperimentalInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalExperimentalInverseConnection>;
|
|
90985
91412
|
externalUserUpdatedExternalLead?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalLeadConnection>;
|
|
90986
91413
|
externalUserUpdatedExternalLeadInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalLeadInverseConnection>;
|
|
91414
|
+
externalUserUpdatedExternalServicenowBusinessApp?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppConnection>;
|
|
91415
|
+
externalUserUpdatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseConnection>;
|
|
90987
91416
|
externalUserUpdatedExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceConnection>;
|
|
90988
91417
|
externalUserUpdatedExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceInverseConnection>;
|
|
90989
91418
|
externalUserUpdatedExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSpaceConnection>;
|
|
@@ -91056,6 +91485,7 @@ export type GraphStoreV2 = {
|
|
|
91056
91485
|
focusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverseConnection>;
|
|
91057
91486
|
focusStrategicPlanScenarioInvestmentHasInvestmentEntity?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityConnection>;
|
|
91058
91487
|
focusStrategicPlanScenarioInvestmentHasInvestmentEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseConnection>;
|
|
91488
|
+
inferredEntities?: Maybe<Array<GraphStoreInferredEntityResponse>>;
|
|
91059
91489
|
inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
91060
91490
|
inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
91061
91491
|
jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
|
|
@@ -94926,6 +95356,20 @@ export type GraphStoreV2ExternalUserCreatedExternalPullRequestInverseArgs = {
|
|
|
94926
95356
|
id: Scalars['ID']['input'];
|
|
94927
95357
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalPullRequestSortInput>;
|
|
94928
95358
|
};
|
|
95359
|
+
export type GraphStoreV2ExternalUserCreatedExternalServicenowBusinessAppArgs = {
|
|
95360
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95361
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95362
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95363
|
+
id: Scalars['ID']['input'];
|
|
95364
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
95365
|
+
};
|
|
95366
|
+
export type GraphStoreV2ExternalUserCreatedExternalServicenowBusinessAppInverseArgs = {
|
|
95367
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95368
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95369
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95370
|
+
id: Scalars['ID']['input'];
|
|
95371
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
95372
|
+
};
|
|
94929
95373
|
export type GraphStoreV2ExternalUserCreatedExternalSoftwareServiceArgs = {
|
|
94930
95374
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
94931
95375
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -95283,6 +95727,20 @@ export type GraphStoreV2ExternalUserOwnsExternalRepositoryInverseArgs = {
|
|
|
95283
95727
|
id: Scalars['ID']['input'];
|
|
95284
95728
|
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalRepositorySortInput>;
|
|
95285
95729
|
};
|
|
95730
|
+
export type GraphStoreV2ExternalUserOwnsExternalServicenowBusinessAppArgs = {
|
|
95731
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95732
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95733
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95734
|
+
id: Scalars['ID']['input'];
|
|
95735
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
95736
|
+
};
|
|
95737
|
+
export type GraphStoreV2ExternalUserOwnsExternalServicenowBusinessAppInverseArgs = {
|
|
95738
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95739
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95740
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95741
|
+
id: Scalars['ID']['input'];
|
|
95742
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
95743
|
+
};
|
|
95286
95744
|
export type GraphStoreV2ExternalUserOwnsExternalSoftwareServiceArgs = {
|
|
95287
95745
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95288
95746
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -95570,6 +96028,20 @@ export type GraphStoreV2ExternalUserUpdatedExternalLeadInverseArgs = {
|
|
|
95570
96028
|
id: Scalars['ID']['input'];
|
|
95571
96029
|
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalLeadSortInput>;
|
|
95572
96030
|
};
|
|
96031
|
+
export type GraphStoreV2ExternalUserUpdatedExternalServicenowBusinessAppArgs = {
|
|
96032
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96033
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96034
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96035
|
+
id: Scalars['ID']['input'];
|
|
96036
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
96037
|
+
};
|
|
96038
|
+
export type GraphStoreV2ExternalUserUpdatedExternalServicenowBusinessAppInverseArgs = {
|
|
96039
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96040
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96041
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96042
|
+
id: Scalars['ID']['input'];
|
|
96043
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
96044
|
+
};
|
|
95573
96045
|
export type GraphStoreV2ExternalUserUpdatedExternalSoftwareServiceArgs = {
|
|
95574
96046
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95575
96047
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -96074,6 +96546,9 @@ export type GraphStoreV2FocusStrategicPlanScenarioInvestmentHasInvestmentEntityI
|
|
|
96074
96546
|
id: Scalars['ID']['input'];
|
|
96075
96547
|
sort?: InputMaybe<GraphStoreV2FocusStrategicPlanScenarioInvestmentHasInvestmentEntitySortInput>;
|
|
96076
96548
|
};
|
|
96549
|
+
export type GraphStoreV2InferredEntitiesArgs = {
|
|
96550
|
+
ids: Array<Scalars['String']['input']>;
|
|
96551
|
+
};
|
|
96077
96552
|
export type GraphStoreV2InferredProjectLinksEntityArgs = {
|
|
96078
96553
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96079
96554
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -99524,6 +99999,9 @@ export type GraphStoreV2ExternalUserCreatedExternalMessageSortInput = {
|
|
|
99524
99999
|
export type GraphStoreV2ExternalUserCreatedExternalPullRequestSortInput = {
|
|
99525
100000
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99526
100001
|
};
|
|
100002
|
+
export type GraphStoreV2ExternalUserCreatedExternalServicenowBusinessAppSortInput = {
|
|
100003
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
100004
|
+
};
|
|
99527
100005
|
export type GraphStoreV2ExternalUserCreatedExternalSoftwareServiceSortInput = {
|
|
99528
100006
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99529
100007
|
};
|
|
@@ -99602,6 +100080,9 @@ export type GraphStoreV2ExternalUserOwnsExternalLeadSortInput = {
|
|
|
99602
100080
|
export type GraphStoreV2ExternalUserOwnsExternalRepositorySortInput = {
|
|
99603
100081
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99604
100082
|
};
|
|
100083
|
+
export type GraphStoreV2ExternalUserOwnsExternalServicenowBusinessAppSortInput = {
|
|
100084
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
100085
|
+
};
|
|
99605
100086
|
export type GraphStoreV2ExternalUserOwnsExternalSoftwareServiceSortInput = {
|
|
99606
100087
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99607
100088
|
};
|
|
@@ -99665,6 +100146,9 @@ export type GraphStoreV2ExternalUserUpdatedExternalExperimentalSortInput = {
|
|
|
99665
100146
|
export type GraphStoreV2ExternalUserUpdatedExternalLeadSortInput = {
|
|
99666
100147
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99667
100148
|
};
|
|
100149
|
+
export type GraphStoreV2ExternalUserUpdatedExternalServicenowBusinessAppSortInput = {
|
|
100150
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
100151
|
+
};
|
|
99668
100152
|
export type GraphStoreV2ExternalUserUpdatedExternalSoftwareServiceSortInput = {
|
|
99669
100153
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99670
100154
|
};
|
|
@@ -108751,6 +109235,34 @@ export type GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestInverseE
|
|
|
108751
109235
|
};
|
|
108752
109236
|
export type GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
108753
109237
|
export type GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
109238
|
+
export type GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppConnection = HasPageInfo & {
|
|
109239
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppConnection';
|
|
109240
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppEdge>>>;
|
|
109241
|
+
pageInfo: PageInfo;
|
|
109242
|
+
};
|
|
109243
|
+
export type GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppEdge = {
|
|
109244
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppEdge';
|
|
109245
|
+
createdAt: Scalars['DateTime']['output'];
|
|
109246
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
109247
|
+
id: Scalars['ID']['output'];
|
|
109248
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
109249
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppUnion>;
|
|
109250
|
+
};
|
|
109251
|
+
export type GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseConnection = HasPageInfo & {
|
|
109252
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseConnection';
|
|
109253
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseEdge>>>;
|
|
109254
|
+
pageInfo: PageInfo;
|
|
109255
|
+
};
|
|
109256
|
+
export type GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseEdge = {
|
|
109257
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseEdge';
|
|
109258
|
+
createdAt: Scalars['DateTime']['output'];
|
|
109259
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
109260
|
+
id: Scalars['ID']['output'];
|
|
109261
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
109262
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseUnion>;
|
|
109263
|
+
};
|
|
109264
|
+
export type GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
109265
|
+
export type GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppUnion = ExternalServicenowBusinessApp;
|
|
108754
109266
|
export type GraphStoreV2SimplifiedExternalUserCreatedExternalSoftwareServiceConnection = HasPageInfo & {
|
|
108755
109267
|
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalSoftwareServiceConnection';
|
|
108756
109268
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalSoftwareServiceEdge>>>;
|
|
@@ -109465,6 +109977,34 @@ export type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseEdge
|
|
|
109465
109977
|
};
|
|
109466
109978
|
export type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
109467
109979
|
export type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
109980
|
+
export type GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppConnection = HasPageInfo & {
|
|
109981
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppConnection';
|
|
109982
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppEdge>>>;
|
|
109983
|
+
pageInfo: PageInfo;
|
|
109984
|
+
};
|
|
109985
|
+
export type GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppEdge = {
|
|
109986
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppEdge';
|
|
109987
|
+
createdAt: Scalars['DateTime']['output'];
|
|
109988
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
109989
|
+
id: Scalars['ID']['output'];
|
|
109990
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
109991
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppUnion>;
|
|
109992
|
+
};
|
|
109993
|
+
export type GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseConnection = HasPageInfo & {
|
|
109994
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseConnection';
|
|
109995
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseEdge>>>;
|
|
109996
|
+
pageInfo: PageInfo;
|
|
109997
|
+
};
|
|
109998
|
+
export type GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseEdge = {
|
|
109999
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseEdge';
|
|
110000
|
+
createdAt: Scalars['DateTime']['output'];
|
|
110001
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
110002
|
+
id: Scalars['ID']['output'];
|
|
110003
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
110004
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseUnion>;
|
|
110005
|
+
};
|
|
110006
|
+
export type GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
110007
|
+
export type GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppUnion = ExternalServicenowBusinessApp;
|
|
109468
110008
|
export type GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceConnection = HasPageInfo & {
|
|
109469
110009
|
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceConnection';
|
|
109470
110010
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceEdge>>>;
|
|
@@ -110039,6 +110579,34 @@ export type GraphStoreV2SimplifiedExternalUserUpdatedExternalLeadInverseEdge = {
|
|
|
110039
110579
|
};
|
|
110040
110580
|
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalLeadInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
110041
110581
|
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalLeadUnion = ExternalLead;
|
|
110582
|
+
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppConnection = HasPageInfo & {
|
|
110583
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppConnection';
|
|
110584
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppEdge>>>;
|
|
110585
|
+
pageInfo: PageInfo;
|
|
110586
|
+
};
|
|
110587
|
+
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppEdge = {
|
|
110588
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppEdge';
|
|
110589
|
+
createdAt: Scalars['DateTime']['output'];
|
|
110590
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
110591
|
+
id: Scalars['ID']['output'];
|
|
110592
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
110593
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppUnion>;
|
|
110594
|
+
};
|
|
110595
|
+
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseConnection = HasPageInfo & {
|
|
110596
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseConnection';
|
|
110597
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseEdge>>>;
|
|
110598
|
+
pageInfo: PageInfo;
|
|
110599
|
+
};
|
|
110600
|
+
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseEdge = {
|
|
110601
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseEdge';
|
|
110602
|
+
createdAt: Scalars['DateTime']['output'];
|
|
110603
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
110604
|
+
id: Scalars['ID']['output'];
|
|
110605
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
110606
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseUnion>;
|
|
110607
|
+
};
|
|
110608
|
+
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
110609
|
+
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppUnion = ExternalServicenowBusinessApp;
|
|
110042
110610
|
export type GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceConnection = HasPageInfo & {
|
|
110043
110611
|
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceConnection';
|
|
110044
110612
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceEdge>>>;
|
|
@@ -123474,6 +124042,7 @@ export declare enum JiraCollapsibleSection {
|
|
|
123474
124042
|
Attachments = "ATTACHMENTS",
|
|
123475
124043
|
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
123476
124044
|
Description = "DESCRIPTION",
|
|
124045
|
+
IncidentSuggestedResourcesServicedesk = "INCIDENT_SUGGESTED_RESOURCES_SERVICEDESK",
|
|
123477
124046
|
IncidentSummaryServicedesk = "INCIDENT_SUMMARY_SERVICEDESK",
|
|
123478
124047
|
IncidentTimelineServicedesk = "INCIDENT_TIMELINE_SERVICEDESK",
|
|
123479
124048
|
LinkedWorkItem = "LINKED_WORK_ITEM",
|
|
@@ -126827,6 +127396,12 @@ export type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
126827
127396
|
type: Scalars['String']['output'];
|
|
126828
127397
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
126829
127398
|
};
|
|
127399
|
+
export type JiraForgeDatetimeFieldPayload = Payload & {
|
|
127400
|
+
__typename?: 'JiraForgeDatetimeFieldPayload';
|
|
127401
|
+
errors?: Maybe<Array<MutationError>>;
|
|
127402
|
+
field?: Maybe<JiraForgeDatetimeField>;
|
|
127403
|
+
success: Scalars['Boolean']['output'];
|
|
127404
|
+
};
|
|
126830
127405
|
export declare enum JiraForgeEnvironmentType {
|
|
126831
127406
|
Development = "DEVELOPMENT",
|
|
126832
127407
|
Production = "PRODUCTION",
|
|
@@ -126892,6 +127467,12 @@ export type JiraForgeGroupFieldGroupsArgs = {
|
|
|
126892
127467
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126893
127468
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
126894
127469
|
};
|
|
127470
|
+
export type JiraForgeGroupFieldPayload = Payload & {
|
|
127471
|
+
__typename?: 'JiraForgeGroupFieldPayload';
|
|
127472
|
+
errors?: Maybe<Array<MutationError>>;
|
|
127473
|
+
field?: Maybe<JiraForgeGroupField>;
|
|
127474
|
+
success: Scalars['Boolean']['output'];
|
|
127475
|
+
};
|
|
126895
127476
|
export type JiraForgeGroupsField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
126896
127477
|
__typename?: 'JiraForgeGroupsField';
|
|
126897
127478
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -127149,6 +127730,12 @@ export type JiraForgeUserFieldUsersArgs = {
|
|
|
127149
127730
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
127150
127731
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
127151
127732
|
};
|
|
127733
|
+
export type JiraForgeUserFieldPayload = Payload & {
|
|
127734
|
+
__typename?: 'JiraForgeUserFieldPayload';
|
|
127735
|
+
errors?: Maybe<Array<MutationError>>;
|
|
127736
|
+
field?: Maybe<JiraForgeUserField>;
|
|
127737
|
+
success: Scalars['Boolean']['output'];
|
|
127738
|
+
};
|
|
127152
127739
|
export type JiraForgeUsersField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraSelectedUsersField & JiraUserIssueFieldConfiguration & Node & {
|
|
127153
127740
|
__typename?: 'JiraForgeUsersField';
|
|
127154
127741
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -127488,6 +128075,15 @@ export type JiraFormulaReferencedFieldType = {
|
|
|
127488
128075
|
jfxType?: Maybe<JiraFormulaFieldParameterType>;
|
|
127489
128076
|
key: Scalars['String']['output'];
|
|
127490
128077
|
};
|
|
128078
|
+
export declare enum JiraGicFallbackReason {
|
|
128079
|
+
AdminDisabledModernGic = "ADMIN_DISABLED_MODERN_GIC",
|
|
128080
|
+
CustomCreateScreenConfigured = "CUSTOM_CREATE_SCREEN_CONFIGURED",
|
|
128081
|
+
MultipleTabsConfigured = "MULTIPLE_TABS_CONFIGURED",
|
|
128082
|
+
RequiredFieldUnsupportedType = "REQUIRED_FIELD_UNSUPPORTED_TYPE",
|
|
128083
|
+
TooManyRequiredFields = "TOO_MANY_REQUIRED_FIELDS",
|
|
128084
|
+
UiModificationsEnabled = "UI_MODIFICATIONS_ENABLED",
|
|
128085
|
+
Unknown = "UNKNOWN"
|
|
128086
|
+
}
|
|
127491
128087
|
export type JiraGenerateIssueAiSummaryInput = {
|
|
127492
128088
|
issueId: Scalars['ID']['input'];
|
|
127493
128089
|
};
|
|
@@ -128275,6 +128871,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
128275
128871
|
id: Scalars['ID']['output'];
|
|
128276
128872
|
incidentActionItems?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
128277
128873
|
incidentLinkedJswIssues?: Maybe<GraphIncidentLinkedJswIssueRelationshipConnection>;
|
|
128874
|
+
incidentSuggestedResources?: Maybe<AiOpsIncidentSuggestedResourcesResult>;
|
|
128278
128875
|
incidentSuggestion?: Maybe<AiOpsIncidentSuggestionAsyncResult>;
|
|
128279
128876
|
incidentTimeline?: Maybe<AiOpsIncidentTimelineIccResponse>;
|
|
128280
128877
|
isAboveThreshold?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -129100,6 +129697,17 @@ export type JiraIssueContextPanelEdge = {
|
|
|
129100
129697
|
cursor: Scalars['String']['output'];
|
|
129101
129698
|
node?: Maybe<JiraIssueViewContextPanel>;
|
|
129102
129699
|
};
|
|
129700
|
+
export type JiraIssueCreateAdditionalServices = {
|
|
129701
|
+
__typename?: 'JiraIssueCreateAdditionalServices';
|
|
129702
|
+
services?: Maybe<JiraIssueCreateServiceConnection>;
|
|
129703
|
+
};
|
|
129704
|
+
export type JiraIssueCreateAdditionalServicesServicesArgs = {
|
|
129705
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129706
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
129707
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129708
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129709
|
+
};
|
|
129710
|
+
export type JiraIssueCreateAdditionalServicesResult = JiraIssueCreateAdditionalServices | QueryError;
|
|
129103
129711
|
export type JiraIssueCreateFieldValidationRule = {
|
|
129104
129712
|
errorMessage?: InputMaybe<Scalars['String']['input']>;
|
|
129105
129713
|
fields: Array<Scalars['String']['input']>;
|
|
@@ -129108,6 +129716,20 @@ export type JiraIssueCreateFieldValidationRule = {
|
|
|
129108
129716
|
export declare enum JiraIssueCreateFieldValidationType {
|
|
129109
129717
|
Fieldrequiredvalidator = "FIELDREQUIREDVALIDATOR"
|
|
129110
129718
|
}
|
|
129719
|
+
export type JiraIssueCreateFields = {
|
|
129720
|
+
__typename?: 'JiraIssueCreateFields';
|
|
129721
|
+
errors: Array<QueryError>;
|
|
129722
|
+
fallbackReason?: Maybe<Array<JiraGicFallbackReason>>;
|
|
129723
|
+
fields?: Maybe<JiraIssueFieldConnection>;
|
|
129724
|
+
forceLegacyCreateExperience?: Maybe<Scalars['Boolean']['output']>;
|
|
129725
|
+
miniMode?: Maybe<Scalars['Boolean']['output']>;
|
|
129726
|
+
uiModifications: Array<JiraAppUiModifications>;
|
|
129727
|
+
};
|
|
129728
|
+
export declare enum JiraIssueCreateFieldsFilter {
|
|
129729
|
+
AdminConfiguredFields = "ADMIN_CONFIGURED_FIELDS",
|
|
129730
|
+
UserConfiguredFields = "USER_CONFIGURED_FIELDS"
|
|
129731
|
+
}
|
|
129732
|
+
export type JiraIssueCreateFieldsResult = JiraIssueCreateFields | QueryError;
|
|
129111
129733
|
export type JiraIssueCreateInput = {
|
|
129112
129734
|
fields: JiraIssueFieldsInput;
|
|
129113
129735
|
issueTypeId: Scalars['ID']['input'];
|
|
@@ -129132,13 +129754,49 @@ export type JiraIssueCreatePayload = Payload & {
|
|
|
129132
129754
|
issue?: Maybe<JiraIssue>;
|
|
129133
129755
|
success: Scalars['Boolean']['output'];
|
|
129134
129756
|
};
|
|
129757
|
+
export type JiraIssueCreateProformaConfiguration = JiraIssueCreateService & {
|
|
129758
|
+
__typename?: 'JiraIssueCreateProformaConfiguration';
|
|
129759
|
+
proforma?: Maybe<JiraIssueCreateProformaForms>;
|
|
129760
|
+
serviceId: Scalars['String']['output'];
|
|
129761
|
+
};
|
|
129762
|
+
export type JiraIssueCreateProformaForms = {
|
|
129763
|
+
__typename?: 'JiraIssueCreateProformaForms';
|
|
129764
|
+
hasProformaForm?: Maybe<Scalars['Boolean']['output']>;
|
|
129765
|
+
portalLink?: Maybe<Scalars['String']['output']>;
|
|
129766
|
+
};
|
|
129135
129767
|
export type JiraIssueCreateRankInput = {
|
|
129136
129768
|
afterIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
129137
129769
|
beforeIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
129138
129770
|
};
|
|
129771
|
+
export type JiraIssueCreateService = {
|
|
129772
|
+
serviceId: Scalars['String']['output'];
|
|
129773
|
+
};
|
|
129774
|
+
export type JiraIssueCreateServiceConnection = {
|
|
129775
|
+
__typename?: 'JiraIssueCreateServiceConnection';
|
|
129776
|
+
edges?: Maybe<Array<Maybe<JiraIssueCreateServiceEdge>>>;
|
|
129777
|
+
pageInfo: PageInfo;
|
|
129778
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
129779
|
+
};
|
|
129780
|
+
export type JiraIssueCreateServiceEdge = {
|
|
129781
|
+
__typename?: 'JiraIssueCreateServiceEdge';
|
|
129782
|
+
cursor: Scalars['String']['output'];
|
|
129783
|
+
node?: Maybe<JiraIssueCreateService>;
|
|
129784
|
+
};
|
|
129139
129785
|
export type JiraIssueCreateValidationRule = {
|
|
129140
129786
|
fieldValidations?: InputMaybe<Array<JiraIssueCreateFieldValidationRule>>;
|
|
129141
129787
|
};
|
|
129788
|
+
export type JiraIssueCreateWatchersConfiguration = JiraIssueCreateService & {
|
|
129789
|
+
__typename?: 'JiraIssueCreateWatchersConfiguration';
|
|
129790
|
+
defaultWatchers?: Maybe<JiraUserConnection>;
|
|
129791
|
+
permissions?: Maybe<JiraWatchersPermissions>;
|
|
129792
|
+
serviceId: Scalars['String']['output'];
|
|
129793
|
+
};
|
|
129794
|
+
export type JiraIssueCreateWatchersConfigurationDefaultWatchersArgs = {
|
|
129795
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129796
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
129797
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129798
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129799
|
+
};
|
|
129142
129800
|
export type JiraIssueCreatedProformaFormsField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
129143
129801
|
__typename?: 'JiraIssueCreatedProformaFormsField';
|
|
129144
129802
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -129604,6 +130262,13 @@ export type JiraIssueFieldUnsupportedErrorExtension = QueryErrorExtension & {
|
|
|
129604
130262
|
isUserPreferredField?: Maybe<Scalars['Boolean']['output']>;
|
|
129605
130263
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
129606
130264
|
};
|
|
130265
|
+
export type JiraIssueFieldValueValidationErrorExtension = QueryErrorExtension & {
|
|
130266
|
+
__typename?: 'JiraIssueFieldValueValidationErrorExtension';
|
|
130267
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
130268
|
+
inputValue?: Maybe<Scalars['String']['output']>;
|
|
130269
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
130270
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
130271
|
+
};
|
|
129607
130272
|
export type JiraIssueFieldsByContainerType = {
|
|
129608
130273
|
__typename?: 'JiraIssueFieldsByContainerType';
|
|
129609
130274
|
containerType: JiraIssueItemSystemContainerType;
|
|
@@ -130248,6 +130913,7 @@ export type JiraIssueSearchAggregationConfigInput = {
|
|
|
130248
130913
|
aggregationFields?: InputMaybe<Array<JiraIssueSearchFieldAggregationInput>>;
|
|
130249
130914
|
canEnableAggregation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130250
130915
|
fieldAggregationQueryInput?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
130916
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
130251
130917
|
};
|
|
130252
130918
|
export type JiraIssueSearchAggregationConfigSettings = {
|
|
130253
130919
|
__typename?: 'JiraIssueSearchAggregationConfigSettings';
|
|
@@ -130338,6 +131004,7 @@ export type JiraIssueSearchByJqlContentByFieldSetIdsArgs = {
|
|
|
130338
131004
|
};
|
|
130339
131005
|
export type JiraIssueSearchByJqlResult = JiraIssueSearchByJql | QueryError;
|
|
130340
131006
|
export type JiraIssueSearchChildIssuesInput = {
|
|
131007
|
+
applyJqlFilter?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130341
131008
|
filterByProjectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
130342
131009
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
130343
131010
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -132684,6 +133351,7 @@ export type JiraLoomWorkItemUpdateSuggestionItem = {
|
|
|
132684
133351
|
messageId?: Maybe<Scalars['ID']['output']>;
|
|
132685
133352
|
product?: Maybe<Scalars['String']['output']>;
|
|
132686
133353
|
recipientAgentNamedId?: Maybe<Scalars['String']['output']>;
|
|
133354
|
+
sourceUrl?: Maybe<Scalars['String']['output']>;
|
|
132687
133355
|
updates?: Maybe<Array<JiraLoomWorkItemUpdate>>;
|
|
132688
133356
|
};
|
|
132689
133357
|
export type JiraLoomWorkItemUpdateSuggestions = JiraBaseNextActionsEntity & {
|
|
@@ -133309,9 +133977,12 @@ export type JiraMutation = {
|
|
|
133309
133977
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
133310
133978
|
updateFlagField?: Maybe<JiraUpdateFlagFieldPayload>;
|
|
133311
133979
|
updateForgeDateField?: Maybe<JiraForgeDateFieldPayload>;
|
|
133980
|
+
updateForgeDateTimeField?: Maybe<JiraForgeDatetimeFieldPayload>;
|
|
133981
|
+
updateForgeGroupField?: Maybe<JiraForgeGroupFieldPayload>;
|
|
133312
133982
|
updateForgeNumberField?: Maybe<JiraForgeNumberFieldPayload>;
|
|
133313
133983
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
133314
133984
|
updateForgeStringField?: Maybe<JiraForgeStringFieldPayload>;
|
|
133985
|
+
updateForgeUserField?: Maybe<JiraForgeUserFieldPayload>;
|
|
133315
133986
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
133316
133987
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
133317
133988
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
@@ -133937,6 +134608,13 @@ export type JiraMutationUpdateFlagFieldArgs = {
|
|
|
133937
134608
|
export type JiraMutationUpdateForgeDateFieldArgs = {
|
|
133938
134609
|
input: JiraUpdateDateFieldInput;
|
|
133939
134610
|
};
|
|
134611
|
+
export type JiraMutationUpdateForgeDateTimeFieldArgs = {
|
|
134612
|
+
input: JiraUpdateDateTimeFieldInput;
|
|
134613
|
+
};
|
|
134614
|
+
export type JiraMutationUpdateForgeGroupFieldArgs = {
|
|
134615
|
+
cloudId: Scalars['ID']['input'];
|
|
134616
|
+
input: JiraUpdateForgeSingleGroupPickerFieldInput;
|
|
134617
|
+
};
|
|
133940
134618
|
export type JiraMutationUpdateForgeNumberFieldArgs = {
|
|
133941
134619
|
input: JiraUpdateNumberFieldInput;
|
|
133942
134620
|
};
|
|
@@ -133946,6 +134624,10 @@ export type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
|
133946
134624
|
export type JiraMutationUpdateForgeStringFieldArgs = {
|
|
133947
134625
|
input: JiraUpdateSingleLineTextFieldInput;
|
|
133948
134626
|
};
|
|
134627
|
+
export type JiraMutationUpdateForgeUserFieldArgs = {
|
|
134628
|
+
cloudId: Scalars['ID']['input'];
|
|
134629
|
+
input: JiraUpdateForgeSingleUserPickerFieldInput;
|
|
134630
|
+
};
|
|
133949
134631
|
export type JiraMutationUpdateFormattingRuleArgs = {
|
|
133950
134632
|
input: JiraUpdateFormattingRuleInput;
|
|
133951
134633
|
};
|
|
@@ -137257,6 +137939,7 @@ export type JiraQuery = {
|
|
|
137257
137939
|
__typename?: 'JiraQuery';
|
|
137258
137940
|
activeBackgroundDetails?: Maybe<JiraActiveBackgroundDetailsResult>;
|
|
137259
137941
|
advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
|
|
137942
|
+
agentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
137260
137943
|
aiAgentSessionEnrichment?: Maybe<JiraAiAgentSession>;
|
|
137261
137944
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
137262
137945
|
allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
|
|
@@ -137529,6 +138212,15 @@ export type JiraQueryActiveBackgroundDetailsArgs = {
|
|
|
137529
138212
|
export type JiraQueryAdvancedRoadmapsNavigationArgs = {
|
|
137530
138213
|
cloudId: Scalars['ID']['input'];
|
|
137531
138214
|
};
|
|
138215
|
+
export type JiraQueryAgentSessionsArgs = {
|
|
138216
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
138217
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
138218
|
+
cloudId: Scalars['ID']['input'];
|
|
138219
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138220
|
+
isDeleted: Scalars['Boolean']['input'];
|
|
138221
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
138222
|
+
state?: InputMaybe<JiraAgentSessionStateCategory>;
|
|
138223
|
+
};
|
|
137532
138224
|
export type JiraQueryAiAgentSessionEnrichmentArgs = {
|
|
137533
138225
|
input: JiraAiAgentSessionEnrichmentInput;
|
|
137534
138226
|
};
|
|
@@ -141895,6 +142587,7 @@ export type JiraServiceManagementSlaError = {
|
|
|
141895
142587
|
};
|
|
141896
142588
|
export declare enum JiraServiceManagementSlaErrorCode {
|
|
141897
142589
|
GoalNotFound = "GOAL_NOT_FOUND",
|
|
142590
|
+
RestrictedToAgents = "RESTRICTED_TO_AGENTS",
|
|
141898
142591
|
TimeMetricsNotFound = "TIME_METRICS_NOT_FOUND",
|
|
141899
142592
|
Unrecognized = "UNRECOGNIZED"
|
|
141900
142593
|
}
|
|
@@ -143323,6 +144016,7 @@ export type JiraSpreadsheetGroupConnection = {
|
|
|
143323
144016
|
groupByField?: Maybe<Scalars['String']['output']>;
|
|
143324
144017
|
jql?: Maybe<Scalars['String']['output']>;
|
|
143325
144018
|
pageInfo: PageInfo;
|
|
144019
|
+
searchWarnings?: Maybe<Array<JiraIssueSearchWarning>>;
|
|
143326
144020
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
143327
144021
|
};
|
|
143328
144022
|
export type JiraSpreadsheetGroupEdge = {
|
|
@@ -144463,8 +145157,10 @@ export type JiraTimelineViewSettings = {
|
|
|
144463
145157
|
hideDependencies?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144464
145158
|
hideDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144465
145159
|
hideReleases?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145160
|
+
hideUnParentedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144466
145161
|
hideWarnings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144467
145162
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
145163
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
144468
145164
|
rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
|
|
144469
145165
|
};
|
|
144470
145166
|
export type JiraTimelineVirtualField = {
|
|
@@ -144583,6 +145279,9 @@ export type JiraTransition = Node & {
|
|
|
144583
145279
|
to?: Maybe<JiraStatus>;
|
|
144584
145280
|
transitionId?: Maybe<Scalars['Int']['output']>;
|
|
144585
145281
|
};
|
|
145282
|
+
export type JiraTransitionAgentRulesArgs = {
|
|
145283
|
+
agentAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
145284
|
+
};
|
|
144586
145285
|
export type JiraTransitionAgent = {
|
|
144587
145286
|
__typename?: 'JiraTransitionAgent';
|
|
144588
145287
|
accountId: Scalars['ID']['output'];
|
|
@@ -144950,6 +145649,10 @@ export type JiraUpdateForgeSingleGroupPickerFieldInput = {
|
|
|
144950
145649
|
id: Scalars['ID']['input'];
|
|
144951
145650
|
operation: JiraForgeSingleGroupPickerFieldOperationInput;
|
|
144952
145651
|
};
|
|
145652
|
+
export type JiraUpdateForgeSingleUserPickerFieldInput = {
|
|
145653
|
+
id: Scalars['ID']['input'];
|
|
145654
|
+
operation: JiraSingleSelectUserPickerFieldOperationInput;
|
|
145655
|
+
};
|
|
144953
145656
|
export type JiraUpdateFormattingRuleInput = {
|
|
144954
145657
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144955
145658
|
color?: InputMaybe<JiraFormattingColor>;
|
|
@@ -145590,6 +146293,7 @@ export type JiraUserPreferences = {
|
|
|
145590
146293
|
showRedactionChangeBoardingOnIssueViewAsViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
145591
146294
|
showUnscheduledIssuesCalendarPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
145592
146295
|
workItemFavouriteFields?: Maybe<Scalars['String']['output']>;
|
|
146296
|
+
workItemViewAdaptiveLayoutSectionsOrder?: Maybe<Scalars['String']['output']>;
|
|
145593
146297
|
workItemViewContextGroupSections?: Maybe<Scalars['String']['output']>;
|
|
145594
146298
|
workItemViewFavouriteFields?: Maybe<Scalars['String']['output']>;
|
|
145595
146299
|
};
|
|
@@ -145628,6 +146332,9 @@ export type JiraUserPreferencesWorkItemFavouriteFieldsArgs = {
|
|
|
145628
146332
|
issueTypeId: Scalars['String']['input'];
|
|
145629
146333
|
projectKey: Scalars['String']['input'];
|
|
145630
146334
|
};
|
|
146335
|
+
export type JiraUserPreferencesWorkItemViewAdaptiveLayoutSectionsOrderArgs = {
|
|
146336
|
+
issueKey: Scalars['String']['input'];
|
|
146337
|
+
};
|
|
145631
146338
|
export type JiraUserPreferencesWorkItemViewContextGroupSectionsArgs = {
|
|
145632
146339
|
issueKey: Scalars['String']['input'];
|
|
145633
146340
|
};
|
|
@@ -146372,6 +147079,13 @@ export type JiraWatch = {
|
|
|
146372
147079
|
count?: Maybe<Scalars['Long']['output']>;
|
|
146373
147080
|
isWatching?: Maybe<Scalars['Boolean']['output']>;
|
|
146374
147081
|
};
|
|
147082
|
+
export type JiraWatchersPermissions = {
|
|
147083
|
+
__typename?: 'JiraWatchersPermissions';
|
|
147084
|
+
canManageWatchers?: Maybe<Scalars['Boolean']['output']>;
|
|
147085
|
+
canViewWatchers?: Maybe<Scalars['Boolean']['output']>;
|
|
147086
|
+
isAutoWatchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
147087
|
+
isWatchersEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
147088
|
+
};
|
|
146375
147089
|
export type JiraWatchesField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraSelectedUsersField & JiraUserIssueFieldConfiguration & Node & {
|
|
146376
147090
|
__typename?: 'JiraWatchesField';
|
|
146377
147091
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -150189,6 +150903,8 @@ export type KitsuneInsight = Node & {
|
|
|
150189
150903
|
id: Scalars['ID']['output'];
|
|
150190
150904
|
ideas: Array<KitsuneIdeaNode>;
|
|
150191
150905
|
jiraIssue?: Maybe<JiraIssue>;
|
|
150906
|
+
nbCustomers: Scalars['Int']['output'];
|
|
150907
|
+
nbOrganizations: Scalars['Int']['output'];
|
|
150192
150908
|
nbSnippets: Scalars['Int']['output'];
|
|
150193
150909
|
snippets: KitsuneSnippetConnection;
|
|
150194
150910
|
spaceAri: Scalars['ID']['output'];
|
|
@@ -150353,10 +151069,14 @@ export type KitsuneSnippet = Node & {
|
|
|
150353
151069
|
createdAt: Scalars['DateTime']['output'];
|
|
150354
151070
|
creator?: Maybe<User>;
|
|
150355
151071
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
151072
|
+
customer?: Maybe<CustomerServiceCsmCustomer>;
|
|
151073
|
+
customerId?: Maybe<Scalars['ID']['output']>;
|
|
150356
151074
|
feedback?: Maybe<KitsuneFeedback>;
|
|
150357
151075
|
id: Scalars['ID']['output'];
|
|
150358
151076
|
insight?: Maybe<KitsuneInsight>;
|
|
150359
151077
|
markId?: Maybe<Scalars['ID']['output']>;
|
|
151078
|
+
organization?: Maybe<CustomerServiceCsmOrganization>;
|
|
151079
|
+
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
150360
151080
|
};
|
|
150361
151081
|
export type KitsuneSnippetConnection = KitsuneConnection & {
|
|
150362
151082
|
__typename?: 'KitsuneSnippetConnection';
|
|
@@ -152663,6 +153383,19 @@ export type LoomCommentEdge = {
|
|
|
152663
153383
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
152664
153384
|
node?: Maybe<LoomComment>;
|
|
152665
153385
|
};
|
|
153386
|
+
export type LoomCompleteVideoFileUploadInput = {
|
|
153387
|
+
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
153388
|
+
folderId?: InputMaybe<Scalars['String']['input']>;
|
|
153389
|
+
keyPath: Scalars['String']['input'];
|
|
153390
|
+
spaceId?: InputMaybe<Scalars['String']['input']>;
|
|
153391
|
+
videoPropertiesJson?: InputMaybe<Scalars['String']['input']>;
|
|
153392
|
+
workspaceId: Scalars['ID']['input'];
|
|
153393
|
+
};
|
|
153394
|
+
export type LoomCompleteVideoFileUploadPayload = {
|
|
153395
|
+
__typename?: 'LoomCompleteVideoFileUploadPayload';
|
|
153396
|
+
success: Scalars['Boolean']['output'];
|
|
153397
|
+
video?: Maybe<LoomVideo>;
|
|
153398
|
+
};
|
|
152666
153399
|
export type LoomConnectedCalendar = {
|
|
152667
153400
|
__typename?: 'LoomConnectedCalendar';
|
|
152668
153401
|
guid: Scalars['ID']['output'];
|
|
@@ -152676,6 +153409,53 @@ export type LoomConnectedCalendarMeetingsArgs = {
|
|
|
152676
153409
|
rangeEnd?: InputMaybe<Scalars['String']['input']>;
|
|
152677
153410
|
rangeStart?: InputMaybe<Scalars['String']['input']>;
|
|
152678
153411
|
};
|
|
153412
|
+
export type LoomCreateFileUploadCredentialsPayload = {
|
|
153413
|
+
__typename?: 'LoomCreateFileUploadCredentialsPayload';
|
|
153414
|
+
credentials?: Maybe<LoomUploadInfo>;
|
|
153415
|
+
success: Scalars['Boolean']['output'];
|
|
153416
|
+
};
|
|
153417
|
+
export type LoomCreateFolderError = {
|
|
153418
|
+
__typename?: 'LoomCreateFolderError';
|
|
153419
|
+
errorType: Scalars['String']['output'];
|
|
153420
|
+
message: Scalars['String']['output'];
|
|
153421
|
+
statusCode: Scalars['Int']['output'];
|
|
153422
|
+
};
|
|
153423
|
+
export type LoomCreateFolderInput = {
|
|
153424
|
+
id: Scalars['ID']['input'];
|
|
153425
|
+
name: Scalars['String']['input'];
|
|
153426
|
+
parentFolderId?: InputMaybe<Scalars['ID']['input']>;
|
|
153427
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
153428
|
+
visibility?: InputMaybe<LoomFolderVisibilityType>;
|
|
153429
|
+
};
|
|
153430
|
+
export type LoomCreateFolderPayload = {
|
|
153431
|
+
__typename?: 'LoomCreateFolderPayload';
|
|
153432
|
+
errors: Array<LoomCreateFolderError>;
|
|
153433
|
+
folder?: Maybe<LoomFolder>;
|
|
153434
|
+
success: Scalars['Boolean']['output'];
|
|
153435
|
+
};
|
|
153436
|
+
export type LoomCreateVideoCommentInput = {
|
|
153437
|
+
content: Scalars['String']['input'];
|
|
153438
|
+
id: Scalars['ID']['input'];
|
|
153439
|
+
timestamp?: InputMaybe<Scalars['Int']['input']>;
|
|
153440
|
+
};
|
|
153441
|
+
export type LoomCreateVideoCommentPayload = {
|
|
153442
|
+
__typename?: 'LoomCreateVideoCommentPayload';
|
|
153443
|
+
comment?: Maybe<LoomComment>;
|
|
153444
|
+
success: Scalars['Boolean']['output'];
|
|
153445
|
+
};
|
|
153446
|
+
export type LoomCreateVideoReactionInput = {
|
|
153447
|
+
category?: InputMaybe<Scalars['String']['input']>;
|
|
153448
|
+
id: Scalars['ID']['input'];
|
|
153449
|
+
password?: InputMaybe<Scalars['String']['input']>;
|
|
153450
|
+
reactionName: Scalars['String']['input'];
|
|
153451
|
+
reactionType?: InputMaybe<LoomVideoReactionType>;
|
|
153452
|
+
timestamp?: InputMaybe<Scalars['Int']['input']>;
|
|
153453
|
+
};
|
|
153454
|
+
export type LoomCreateVideoReactionPayload = {
|
|
153455
|
+
__typename?: 'LoomCreateVideoReactionPayload';
|
|
153456
|
+
reaction?: Maybe<LoomVideoReaction>;
|
|
153457
|
+
success: Scalars['Boolean']['output'];
|
|
153458
|
+
};
|
|
152679
153459
|
export type LoomDeleteVideo = {
|
|
152680
153460
|
__typename?: 'LoomDeleteVideo';
|
|
152681
153461
|
failed?: Maybe<Array<Maybe<LoomDeleteVideoFailure>>>;
|
|
@@ -152686,12 +153466,24 @@ export type LoomDeleteVideoFailure = {
|
|
|
152686
153466
|
ari: Scalars['ID']['output'];
|
|
152687
153467
|
error: Scalars['String']['output'];
|
|
152688
153468
|
};
|
|
153469
|
+
export type LoomEnqueueVideoDownloadInput = {
|
|
153470
|
+
id: Scalars['ID']['input'];
|
|
153471
|
+
};
|
|
153472
|
+
export type LoomEnqueueVideoDownloadPayload = {
|
|
153473
|
+
__typename?: 'LoomEnqueueVideoDownloadPayload';
|
|
153474
|
+
status: LoomVideoDownloadStatus;
|
|
153475
|
+
success: Scalars['Boolean']['output'];
|
|
153476
|
+
};
|
|
152689
153477
|
export type LoomFolder = {
|
|
152690
153478
|
__typename?: 'LoomFolder';
|
|
152691
153479
|
id: Scalars['ID']['output'];
|
|
152692
153480
|
name: Scalars['String']['output'];
|
|
152693
153481
|
parentSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
152694
153482
|
};
|
|
153483
|
+
export declare enum LoomFolderVisibilityType {
|
|
153484
|
+
Owner = "owner",
|
|
153485
|
+
Workspace = "workspace"
|
|
153486
|
+
}
|
|
152695
153487
|
export type LoomJoinWorkspace = {
|
|
152696
153488
|
__typename?: 'LoomJoinWorkspace';
|
|
152697
153489
|
status: Scalars['String']['output'];
|
|
@@ -152720,6 +153512,12 @@ export type LoomMeeting = Node & {
|
|
|
152720
153512
|
title: Scalars['String']['output'];
|
|
152721
153513
|
video?: Maybe<LoomVideo>;
|
|
152722
153514
|
};
|
|
153515
|
+
export type LoomMeetingActionItem = {
|
|
153516
|
+
__typename?: 'LoomMeetingActionItem';
|
|
153517
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
153518
|
+
id: Scalars['ID']['output'];
|
|
153519
|
+
timestampSeconds?: Maybe<Scalars['Int']['output']>;
|
|
153520
|
+
};
|
|
152723
153521
|
export type LoomMeetingConnection = {
|
|
152724
153522
|
__typename?: 'LoomMeetingConnection';
|
|
152725
153523
|
edges?: Maybe<Array<Maybe<LoomMeetingEdge>>>;
|
|
@@ -152757,6 +153555,30 @@ export type LoomMeetings = {
|
|
|
152757
153555
|
recurring?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
152758
153556
|
single?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
152759
153557
|
};
|
|
153558
|
+
export type LoomMoveVideoToFolderInput = {
|
|
153559
|
+
folderId: Scalars['ID']['input'];
|
|
153560
|
+
id: Scalars['ID']['input'];
|
|
153561
|
+
};
|
|
153562
|
+
export type LoomMoveVideoToFolderPayload = {
|
|
153563
|
+
__typename?: 'LoomMoveVideoToFolderPayload';
|
|
153564
|
+
success: Scalars['Boolean']['output'];
|
|
153565
|
+
};
|
|
153566
|
+
export type LoomObjectStoreAuthToken = {
|
|
153567
|
+
__typename?: 'LoomObjectStoreAuthToken';
|
|
153568
|
+
expiration?: Maybe<Scalars['String']['output']>;
|
|
153569
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
153570
|
+
};
|
|
153571
|
+
export type LoomObjectStoreUploadInfo = {
|
|
153572
|
+
__typename?: 'LoomObjectStoreUploadInfo';
|
|
153573
|
+
activationId?: Maybe<Scalars['String']['output']>;
|
|
153574
|
+
bucket?: Maybe<Scalars['String']['output']>;
|
|
153575
|
+
credentialType?: Maybe<Scalars['String']['output']>;
|
|
153576
|
+
hostname?: Maybe<Scalars['String']['output']>;
|
|
153577
|
+
siteId?: Maybe<Scalars['String']['output']>;
|
|
153578
|
+
token?: Maybe<LoomObjectStoreAuthToken>;
|
|
153579
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
153580
|
+
workspaceType?: Maybe<Scalars['String']['output']>;
|
|
153581
|
+
};
|
|
152760
153582
|
export type LoomPageInfo = {
|
|
152761
153583
|
__typename?: 'LoomPageInfo';
|
|
152762
153584
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -152782,11 +153604,67 @@ export declare enum LoomPhraseRangeType {
|
|
|
152782
153604
|
Punct = "punct",
|
|
152783
153605
|
Text = "text"
|
|
152784
153606
|
}
|
|
153607
|
+
export type LoomPlaylist = Node & {
|
|
153608
|
+
__typename?: 'LoomPlaylist';
|
|
153609
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
153610
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
153611
|
+
id: Scalars['ID']['output'];
|
|
153612
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
153613
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
153614
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
153615
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
153616
|
+
videoCount?: Maybe<Scalars['Int']['output']>;
|
|
153617
|
+
videos?: Maybe<Array<LoomPlaylistVideo>>;
|
|
153618
|
+
visibility?: Maybe<LoomVideoVisibility>;
|
|
153619
|
+
};
|
|
153620
|
+
export type LoomPlaylistVideo = {
|
|
153621
|
+
__typename?: 'LoomPlaylistVideo';
|
|
153622
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
153623
|
+
videoAri: Scalars['ID']['output'];
|
|
153624
|
+
};
|
|
153625
|
+
export type LoomRecoverVideoError = {
|
|
153626
|
+
__typename?: 'LoomRecoverVideoError';
|
|
153627
|
+
errorType: Scalars['String']['output'];
|
|
153628
|
+
message: Scalars['String']['output'];
|
|
153629
|
+
statusCode: Scalars['Int']['output'];
|
|
153630
|
+
};
|
|
153631
|
+
export type LoomRecoverVideoInput = {
|
|
153632
|
+
force: Scalars['Boolean']['input'];
|
|
153633
|
+
id: Scalars['ID']['input'];
|
|
153634
|
+
};
|
|
153635
|
+
export type LoomRecoverVideoPayload = {
|
|
153636
|
+
__typename?: 'LoomRecoverVideoPayload';
|
|
153637
|
+
didRecoverVideo: Scalars['Boolean']['output'];
|
|
153638
|
+
errors: Array<LoomRecoverVideoError>;
|
|
153639
|
+
success: Scalars['Boolean']['output'];
|
|
153640
|
+
video?: Maybe<LoomVideo>;
|
|
153641
|
+
};
|
|
153642
|
+
export type LoomS3UploadInfo = {
|
|
153643
|
+
__typename?: 'LoomS3UploadInfo';
|
|
153644
|
+
accessKeyId?: Maybe<Scalars['String']['output']>;
|
|
153645
|
+
bucket?: Maybe<Scalars['String']['output']>;
|
|
153646
|
+
credentialType?: Maybe<Scalars['String']['output']>;
|
|
153647
|
+
durationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
153648
|
+
endpoint?: Maybe<Scalars['String']['output']>;
|
|
153649
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
153650
|
+
region?: Maybe<Scalars['String']['output']>;
|
|
153651
|
+
secretAccessKey?: Maybe<Scalars['String']['output']>;
|
|
153652
|
+
sessionToken?: Maybe<Scalars['String']['output']>;
|
|
153653
|
+
};
|
|
152785
153654
|
export type LoomSettings = {
|
|
152786
153655
|
__typename?: 'LoomSettings';
|
|
152787
153656
|
meetingNotesAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
152788
153657
|
meetingNotesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
152789
153658
|
};
|
|
153659
|
+
export type LoomShareVideoInput = {
|
|
153660
|
+
id: Scalars['ID']['input'];
|
|
153661
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
153662
|
+
userAris: Array<Scalars['ID']['input']>;
|
|
153663
|
+
};
|
|
153664
|
+
export type LoomShareVideoPayload = {
|
|
153665
|
+
__typename?: 'LoomShareVideoPayload';
|
|
153666
|
+
success: Scalars['Boolean']['output'];
|
|
153667
|
+
};
|
|
152790
153668
|
export declare enum LoomSortDirection {
|
|
152791
153669
|
Asc = "ASC",
|
|
152792
153670
|
Desc = "DESC"
|
|
@@ -152924,6 +153802,27 @@ export type LoomUnauthenticatedUserPrimaryAuthType = {
|
|
|
152924
153802
|
hasActiveMemberships?: Maybe<Scalars['Boolean']['output']>;
|
|
152925
153803
|
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
152926
153804
|
};
|
|
153805
|
+
export type LoomUpdateVideoPermissionsInput = {
|
|
153806
|
+
id: Scalars['ID']['input'];
|
|
153807
|
+
visibility: LoomVideoVisibility;
|
|
153808
|
+
};
|
|
153809
|
+
export type LoomUpdateVideoPermissionsPayload = {
|
|
153810
|
+
__typename?: 'LoomUpdateVideoPermissionsPayload';
|
|
153811
|
+
changed: Scalars['Boolean']['output'];
|
|
153812
|
+
success: Scalars['Boolean']['output'];
|
|
153813
|
+
video?: Maybe<LoomVideo>;
|
|
153814
|
+
};
|
|
153815
|
+
export type LoomUpdateVideoTitleInput = {
|
|
153816
|
+
id: Scalars['ID']['input'];
|
|
153817
|
+
title: Scalars['String']['input'];
|
|
153818
|
+
};
|
|
153819
|
+
export type LoomUpdateVideoTitlePayload = {
|
|
153820
|
+
__typename?: 'LoomUpdateVideoTitlePayload';
|
|
153821
|
+
changed: Scalars['Boolean']['output'];
|
|
153822
|
+
success: Scalars['Boolean']['output'];
|
|
153823
|
+
video?: Maybe<LoomVideo>;
|
|
153824
|
+
};
|
|
153825
|
+
export type LoomUploadInfo = LoomObjectStoreUploadInfo | LoomS3UploadInfo;
|
|
152927
153826
|
export declare enum LoomUserStatus {
|
|
152928
153827
|
Linked = "LINKED",
|
|
152929
153828
|
LinkedEnterprise = "LINKED_ENTERPRISE",
|
|
@@ -152971,16 +153870,39 @@ export type LoomVideoDefaultThumbnailsSources = {
|
|
|
152971
153870
|
default?: Maybe<Scalars['String']['output']>;
|
|
152972
153871
|
static?: Maybe<Scalars['String']['output']>;
|
|
152973
153872
|
};
|
|
153873
|
+
export declare enum LoomVideoDownloadStatus {
|
|
153874
|
+
NotReady = "NOT_READY",
|
|
153875
|
+
Ready = "READY"
|
|
153876
|
+
}
|
|
153877
|
+
export type LoomVideoDownloadUrl = {
|
|
153878
|
+
__typename?: 'LoomVideoDownloadUrl';
|
|
153879
|
+
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
153880
|
+
status: LoomVideoDownloadStatus;
|
|
153881
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
153882
|
+
};
|
|
152974
153883
|
export type LoomVideoDurations = {
|
|
152975
153884
|
__typename?: 'LoomVideoDurations';
|
|
152976
153885
|
playableDuration?: Maybe<Scalars['Float']['output']>;
|
|
152977
153886
|
sourceDuration?: Maybe<Scalars['Float']['output']>;
|
|
152978
153887
|
};
|
|
153888
|
+
export type LoomVideoReaction = {
|
|
153889
|
+
__typename?: 'LoomVideoReaction';
|
|
153890
|
+
id: Scalars['ID']['output'];
|
|
153891
|
+
};
|
|
153892
|
+
export declare enum LoomVideoReactionType {
|
|
153893
|
+
Extended = "EXTENDED",
|
|
153894
|
+
Loom = "LOOM"
|
|
153895
|
+
}
|
|
152979
153896
|
export type LoomVideoViewCounts = {
|
|
152980
153897
|
__typename?: 'LoomVideoViewCounts';
|
|
152981
153898
|
distinct?: Maybe<Scalars['Int']['output']>;
|
|
152982
153899
|
total?: Maybe<Scalars['Int']['output']>;
|
|
152983
153900
|
};
|
|
153901
|
+
export declare enum LoomVideoVisibility {
|
|
153902
|
+
Owner = "OWNER",
|
|
153903
|
+
Public = "PUBLIC",
|
|
153904
|
+
Workspace = "WORKSPACE"
|
|
153905
|
+
}
|
|
152984
153906
|
export type LoomWorkspace = Node & {
|
|
152985
153907
|
__typename?: 'LoomWorkspace';
|
|
152986
153908
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -153456,6 +154378,7 @@ export type MarketplaceBugBountyProgramHostingStatus = {
|
|
|
153456
154378
|
export type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
153457
154379
|
__typename?: 'MarketplaceCloudAppDeployment';
|
|
153458
154380
|
additionalCompatibleProducts: Array<CompatibleAtlassianProduct>;
|
|
154381
|
+
appType?: Maybe<MarketplaceCloudAppType>;
|
|
153459
154382
|
cloudAppEnvironmentId: Scalars['ID']['output'];
|
|
153460
154383
|
cloudAppId: Scalars['ID']['output'];
|
|
153461
154384
|
cloudAppVersionId: Scalars['ID']['output'];
|
|
@@ -153463,6 +154386,12 @@ export type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
|
153463
154386
|
scopes: Array<CloudAppScope>;
|
|
153464
154387
|
scopesFetchError?: Maybe<Scalars['String']['output']>;
|
|
153465
154388
|
};
|
|
154389
|
+
export declare enum MarketplaceCloudAppType {
|
|
154390
|
+
CrossContext = "CROSS_CONTEXT",
|
|
154391
|
+
Embedded = "EMBEDDED",
|
|
154392
|
+
Global = "GLOBAL",
|
|
154393
|
+
GlobalStandalone = "GLOBAL_STANDALONE"
|
|
154394
|
+
}
|
|
153466
154395
|
export type MarketplaceCloudFortified = {
|
|
153467
154396
|
__typename?: 'MarketplaceCloudFortified';
|
|
153468
154397
|
programStatus?: Maybe<MarketplaceProgramStatus>;
|
|
@@ -163650,7 +164579,8 @@ export type MercuryRequestPositionsChangeInput = {
|
|
|
163650
164579
|
export type MercuryRerankFocusAreaAbsoluteInput = {
|
|
163651
164580
|
containerId: Scalars['ID']['input'];
|
|
163652
164581
|
containerType: MercuryRankingContainerType;
|
|
163653
|
-
focusAreaId
|
|
164582
|
+
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
164583
|
+
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
163654
164584
|
newRank?: InputMaybe<Scalars['Int']['input']>;
|
|
163655
164585
|
};
|
|
163656
164586
|
export type MercuryRerankFocusAreaAbsolutePayload = Payload & {
|
|
@@ -166228,6 +167158,7 @@ export type Mutation = {
|
|
|
166228
167158
|
aiManagedObject_execute?: Maybe<AiManagedObjectExecutionResult>;
|
|
166229
167159
|
aiManagedObject_reactivateAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
166230
167160
|
aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
|
|
167161
|
+
aiops_regenerateIncidentSuggestion?: Maybe<AiOpsRegenerateIncidentSuggestionPayload>;
|
|
166231
167162
|
aiops_terminateInvestigation?: Maybe<AiOpsInvestigation>;
|
|
166232
167163
|
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
166233
167164
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
@@ -166626,6 +167557,7 @@ export type Mutation = {
|
|
|
166626
167557
|
createAppCustomScopes?: Maybe<CreateAppCustomScopesPayload>;
|
|
166627
167558
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
166628
167559
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
167560
|
+
createAppManifestUploadUrl?: Maybe<CreateAppManifestUploadUrlResponse>;
|
|
166629
167561
|
createAppTunnels?: Maybe<CreateAppTunnelResponse>;
|
|
166630
167562
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
166631
167563
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
@@ -166766,12 +167698,14 @@ export type Mutation = {
|
|
|
166766
167698
|
devai_addContainerConfigSecret?: Maybe<DevAiAddContainerConfigSecretPayload>;
|
|
166767
167699
|
devai_addContainerConfigVariable?: Maybe<DevAiAddContainerConfigVariablePayload>;
|
|
166768
167700
|
devai_archiveTechnicalPlannerJob?: Maybe<DevAiArchivedTechnicalPlannerJobPayload>;
|
|
167701
|
+
devai_autodevNextAddExcludedRepositories?: Maybe<DevAiAutodevNextAddExcludedRepositoriesPayload>;
|
|
166769
167702
|
devai_autodevNextAddMembers?: Maybe<DevAiAutodevNextAddMembersPayload>;
|
|
166770
167703
|
devai_autodevNextAddProjects?: Maybe<DevAiAutodevNextAddProjectsPayload>;
|
|
166771
167704
|
devai_autodevNextCompleteWorkItemRefinement?: Maybe<DevAiAutodevNextCompleteWorkItemRefinementPayload>;
|
|
166772
167705
|
devai_autodevNextCreateWorkstream?: Maybe<DevAiAutodevNextCreateWorkstreamPayload>;
|
|
166773
167706
|
devai_autodevNextDeleteWorkstream?: Maybe<DevAiAutodevNextDeleteWorkstreamPayload>;
|
|
166774
167707
|
devai_autodevNextReassignWorkItem?: Maybe<DevAiAutodevNextReassignWorkItemPayload>;
|
|
167708
|
+
devai_autodevNextRemoveExcludedRepositories?: Maybe<DevAiAutodevNextRemoveExcludedRepositoriesPayload>;
|
|
166775
167709
|
devai_autodevNextRemoveMembers?: Maybe<DevAiAutodevNextRemoveMembersPayload>;
|
|
166776
167710
|
devai_autodevNextRemoveProjects?: Maybe<DevAiAutodevNextRemoveProjectsPayload>;
|
|
166777
167711
|
devai_autodevNextSendWorkstreamNudges?: Maybe<DevAiAutodevNextSendWorkstreamNudgesPayload>;
|
|
@@ -166893,6 +167827,9 @@ export type Mutation = {
|
|
|
166893
167827
|
goals_updateAppPermissionPolicies?: Maybe<TownsquareUpdateGoalsAppPermissionPoliciesPayload>;
|
|
166894
167828
|
goals_updateSlackSubscription?: Maybe<TownsquareGoalsUpdateSlackSubscriptionPayload>;
|
|
166895
167829
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
167830
|
+
graphInference_inferenceAppAdd?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
167831
|
+
graphInference_inferenceAppDelete?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
167832
|
+
graphInference_inferenceAppEdit?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
166896
167833
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
166897
167834
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
166898
167835
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -166906,6 +167843,8 @@ export type Mutation = {
|
|
|
166906
167843
|
graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
|
|
166907
167844
|
graphIntegration_mcpServerRequestReject?: Maybe<GraphIntegrationMcpServerRequestRejectPayload>;
|
|
166908
167845
|
graphIntegration_mcpServerRequestSubmit?: Maybe<GraphIntegrationMcpServerRequestSubmitPayload>;
|
|
167846
|
+
graphIntegration_rbacCreateRecord?: Maybe<GraphIntegrationRbacCreateRecordPayload>;
|
|
167847
|
+
graphIntegration_rbacDeleteRecord?: Maybe<GraphIntegrationRbacDeleteRecordPayload>;
|
|
166909
167848
|
graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
|
|
166910
167849
|
graphIntegration_setTwgPlatformCapabilityGlobalAdminSetting?: Maybe<GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload>;
|
|
166911
167850
|
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
@@ -167326,9 +168265,20 @@ export type Mutation = {
|
|
|
167326
168265
|
liveChat_sendTypingSignal?: Maybe<LiveChatTypingSignalPayload>;
|
|
167327
168266
|
liveChat_sendUserMessage?: Maybe<LiveChatUserMessagePayload>;
|
|
167328
168267
|
loom_acceptOrganizationInvite?: Maybe<LoomAcceptOrganizationInvitation>;
|
|
168268
|
+
loom_completeVideoFileUpload?: Maybe<LoomCompleteVideoFileUploadPayload>;
|
|
168269
|
+
loom_createFileUploadCredentials?: Maybe<LoomCreateFileUploadCredentialsPayload>;
|
|
168270
|
+
loom_createFolder?: Maybe<LoomCreateFolderPayload>;
|
|
168271
|
+
loom_createVideoComment?: Maybe<LoomCreateVideoCommentPayload>;
|
|
168272
|
+
loom_createVideoReaction?: Maybe<LoomCreateVideoReactionPayload>;
|
|
167329
168273
|
loom_deleteVideos?: Maybe<LoomDeleteVideo>;
|
|
168274
|
+
loom_enqueueVideoDownload?: Maybe<LoomEnqueueVideoDownloadPayload>;
|
|
167330
168275
|
loom_joinWorkspace?: Maybe<LoomJoinWorkspace>;
|
|
168276
|
+
loom_moveVideoToFolder?: Maybe<LoomMoveVideoToFolderPayload>;
|
|
168277
|
+
loom_recoverVideo?: Maybe<LoomRecoverVideoPayload>;
|
|
168278
|
+
loom_shareVideo?: Maybe<LoomShareVideoPayload>;
|
|
167331
168279
|
loom_spaceCreate?: Maybe<LoomSpace>;
|
|
168280
|
+
loom_updateVideoPermissions?: Maybe<LoomUpdateVideoPermissionsPayload>;
|
|
168281
|
+
loom_updateVideoTitle?: Maybe<LoomUpdateVideoTitlePayload>;
|
|
167332
168282
|
markCommentsAsRead?: Maybe<MarkCommentsAsReadPayload>;
|
|
167333
168283
|
markFeatureDiscovered?: Maybe<FeatureDiscoveryPayload>;
|
|
167334
168284
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
@@ -168210,6 +169160,9 @@ export type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
|
|
|
168210
169160
|
id: Scalars['ID']['input'];
|
|
168211
169161
|
input: AiManagedObjectUpdateInput;
|
|
168212
169162
|
};
|
|
169163
|
+
export type MutationAiops_RegenerateIncidentSuggestionArgs = {
|
|
169164
|
+
input: AiOpsRegenerateIncidentSuggestionInput;
|
|
169165
|
+
};
|
|
168213
169166
|
export type MutationAiops_TerminateInvestigationArgs = {
|
|
168214
169167
|
cloudId: Scalars['ID']['input'];
|
|
168215
169168
|
investigationId: Scalars['ID']['input'];
|
|
@@ -169715,6 +170668,9 @@ export type MutationCreateAppDeploymentArgs = {
|
|
|
169715
170668
|
export type MutationCreateAppDeploymentUrlArgs = {
|
|
169716
170669
|
input: CreateAppDeploymentUrlInput;
|
|
169717
170670
|
};
|
|
170671
|
+
export type MutationCreateAppManifestUploadUrlArgs = {
|
|
170672
|
+
input: CreateAppManifestUploadUrlInput;
|
|
170673
|
+
};
|
|
169718
170674
|
export type MutationCreateAppTunnelsArgs = {
|
|
169719
170675
|
input: CreateAppTunnelsInput;
|
|
169720
170676
|
};
|
|
@@ -170238,6 +171194,9 @@ export type MutationDevai_ArchiveTechnicalPlannerJobArgs = {
|
|
|
170238
171194
|
cloudId: Scalars['ID']['input'];
|
|
170239
171195
|
jobId: Scalars['ID']['input'];
|
|
170240
171196
|
};
|
|
171197
|
+
export type MutationDevai_AutodevNextAddExcludedRepositoriesArgs = {
|
|
171198
|
+
input: DevAiAutodevNextAddExcludedRepositoriesInput;
|
|
171199
|
+
};
|
|
170241
171200
|
export type MutationDevai_AutodevNextAddMembersArgs = {
|
|
170242
171201
|
input: DevAiAutodevNextAddMembersInput;
|
|
170243
171202
|
};
|
|
@@ -170256,6 +171215,9 @@ export type MutationDevai_AutodevNextDeleteWorkstreamArgs = {
|
|
|
170256
171215
|
export type MutationDevai_AutodevNextReassignWorkItemArgs = {
|
|
170257
171216
|
input: DevAiAutodevNextReassignWorkItemInput;
|
|
170258
171217
|
};
|
|
171218
|
+
export type MutationDevai_AutodevNextRemoveExcludedRepositoriesArgs = {
|
|
171219
|
+
input: DevAiAutodevNextRemoveExcludedRepositoriesInput;
|
|
171220
|
+
};
|
|
170259
171221
|
export type MutationDevai_AutodevNextRemoveMembersArgs = {
|
|
170260
171222
|
input: DevAiAutodevNextRemoveMembersInput;
|
|
170261
171223
|
};
|
|
@@ -170635,6 +171597,15 @@ export type MutationGoals_UpdateSlackSubscriptionArgs = {
|
|
|
170635
171597
|
export type MutationGrantContentAccessArgs = {
|
|
170636
171598
|
grantContentAccessInput: GrantContentAccessInput;
|
|
170637
171599
|
};
|
|
171600
|
+
export type MutationGraphInference_InferenceAppAddArgs = {
|
|
171601
|
+
input: GraphInferenceInferenceAppAddInput;
|
|
171602
|
+
};
|
|
171603
|
+
export type MutationGraphInference_InferenceAppDeleteArgs = {
|
|
171604
|
+
input: GraphInferenceInferenceAppDeleteInput;
|
|
171605
|
+
};
|
|
171606
|
+
export type MutationGraphInference_InferenceAppEditArgs = {
|
|
171607
|
+
input: GraphInferenceInferenceAppEditInput;
|
|
171608
|
+
};
|
|
170638
171609
|
export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
|
|
170639
171610
|
input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
|
|
170640
171611
|
};
|
|
@@ -170674,6 +171645,12 @@ export type MutationGraphIntegration_McpServerRequestRejectArgs = {
|
|
|
170674
171645
|
export type MutationGraphIntegration_McpServerRequestSubmitArgs = {
|
|
170675
171646
|
input: GraphIntegrationMcpServerRequestSubmitInput;
|
|
170676
171647
|
};
|
|
171648
|
+
export type MutationGraphIntegration_RbacCreateRecordArgs = {
|
|
171649
|
+
input: GraphIntegrationRbacCreateRecordInput;
|
|
171650
|
+
};
|
|
171651
|
+
export type MutationGraphIntegration_RbacDeleteRecordArgs = {
|
|
171652
|
+
input: GraphIntegrationRbacDeleteRecordInput;
|
|
171653
|
+
};
|
|
170677
171654
|
export type MutationGraphIntegration_RemoveTwgCapabilityContainerArgs = {
|
|
170678
171655
|
input: GraphIntegrationRemoveTwgCapabilityContainerInput;
|
|
170679
171656
|
};
|
|
@@ -172081,20 +173058,53 @@ export type MutationLoom_AcceptOrganizationInviteArgs = {
|
|
|
172081
173058
|
inviteLinkId?: InputMaybe<Scalars['ID']['input']>;
|
|
172082
173059
|
orgToken?: InputMaybe<Scalars['String']['input']>;
|
|
172083
173060
|
};
|
|
173061
|
+
export type MutationLoom_CompleteVideoFileUploadArgs = {
|
|
173062
|
+
input: LoomCompleteVideoFileUploadInput;
|
|
173063
|
+
};
|
|
173064
|
+
export type MutationLoom_CreateFileUploadCredentialsArgs = {
|
|
173065
|
+
siteId: Scalars['ID']['input'];
|
|
173066
|
+
};
|
|
173067
|
+
export type MutationLoom_CreateFolderArgs = {
|
|
173068
|
+
input: LoomCreateFolderInput;
|
|
173069
|
+
};
|
|
173070
|
+
export type MutationLoom_CreateVideoCommentArgs = {
|
|
173071
|
+
input: LoomCreateVideoCommentInput;
|
|
173072
|
+
};
|
|
173073
|
+
export type MutationLoom_CreateVideoReactionArgs = {
|
|
173074
|
+
input: LoomCreateVideoReactionInput;
|
|
173075
|
+
};
|
|
172084
173076
|
export type MutationLoom_DeleteVideosArgs = {
|
|
172085
173077
|
ids: Array<Scalars['ID']['input']>;
|
|
172086
173078
|
};
|
|
173079
|
+
export type MutationLoom_EnqueueVideoDownloadArgs = {
|
|
173080
|
+
input: LoomEnqueueVideoDownloadInput;
|
|
173081
|
+
};
|
|
172087
173082
|
export type MutationLoom_JoinWorkspaceArgs = {
|
|
172088
173083
|
extraLoomProperties?: InputMaybe<Scalars['JSON']['input']>;
|
|
172089
173084
|
flowTraceId?: InputMaybe<Scalars['String']['input']>;
|
|
172090
173085
|
workspaceId: Scalars['String']['input'];
|
|
172091
173086
|
};
|
|
173087
|
+
export type MutationLoom_MoveVideoToFolderArgs = {
|
|
173088
|
+
input: LoomMoveVideoToFolderInput;
|
|
173089
|
+
};
|
|
173090
|
+
export type MutationLoom_RecoverVideoArgs = {
|
|
173091
|
+
input: LoomRecoverVideoInput;
|
|
173092
|
+
};
|
|
173093
|
+
export type MutationLoom_ShareVideoArgs = {
|
|
173094
|
+
input: LoomShareVideoInput;
|
|
173095
|
+
};
|
|
172092
173096
|
export type MutationLoom_SpaceCreateArgs = {
|
|
172093
173097
|
analyticsSource?: InputMaybe<Scalars['String']['input']>;
|
|
172094
173098
|
name: Scalars['String']['input'];
|
|
172095
173099
|
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
172096
173100
|
siteId: Scalars['ID']['input'];
|
|
172097
173101
|
};
|
|
173102
|
+
export type MutationLoom_UpdateVideoPermissionsArgs = {
|
|
173103
|
+
input: LoomUpdateVideoPermissionsInput;
|
|
173104
|
+
};
|
|
173105
|
+
export type MutationLoom_UpdateVideoTitleArgs = {
|
|
173106
|
+
input: LoomUpdateVideoTitleInput;
|
|
173107
|
+
};
|
|
172098
173108
|
export type MutationMarkCommentsAsReadArgs = {
|
|
172099
173109
|
input: MarkCommentsAsReadInput;
|
|
172100
173110
|
};
|
|
@@ -176652,6 +177662,7 @@ export type Query = {
|
|
|
176652
177662
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
176653
177663
|
appLogs?: Maybe<AppLogConnection>;
|
|
176654
177664
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
177665
|
+
appPreDeploymentCheck?: Maybe<AppPreDeploymentCheckResponse>;
|
|
176655
177666
|
appServices?: Maybe<AppServicesConnection>;
|
|
176656
177667
|
appStorage_admin?: Maybe<AppStorageAdmin>;
|
|
176657
177668
|
appStorage_kvsAdmin?: Maybe<AppStorageKvsAdminQuery>;
|
|
@@ -177220,6 +178231,7 @@ export type Query = {
|
|
|
177220
178231
|
devai_autodevNextUsageTransitionCounts?: Maybe<DevAiAutodevNextTransitionUsageCounts>;
|
|
177221
178232
|
devai_autodevNextWorkstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
177222
178233
|
devai_autodevNextWorkstreamSweepSummary?: Maybe<DevAiAutodevNextWorkstreamSweepSummaryPayload>;
|
|
178234
|
+
devai_autodevNextWorkstreamTask?: Maybe<DevAiAutodevNextWorkItem>;
|
|
177223
178235
|
devai_autodevNextWorkstreamTasks?: Maybe<DevAiAutodevNextWorkstreamTaskConnection>;
|
|
177224
178236
|
devai_autodevNextWorkstreams?: Maybe<DevAiAutodevNextWorkstreamConnection>;
|
|
177225
178237
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
@@ -177344,6 +178356,10 @@ export type Query = {
|
|
|
177344
178356
|
graphInference_getRelatedReposV2?: Maybe<GraphInferenceGetRelatedReposV2Response>;
|
|
177345
178357
|
graphInference_getRelatedReposV3?: Maybe<GraphInferenceGetRelatedReposV3Response>;
|
|
177346
178358
|
graphInference_getSimilarJiraItems?: Maybe<GraphInferenceGetSimilarJiraItemsResponse>;
|
|
178359
|
+
graphInference_graphclawInferenceTargets?: Maybe<Array<GraphInferenceGraphclawOption>>;
|
|
178360
|
+
graphInference_graphclawInferenceType?: Maybe<Array<GraphInferenceGraphclawOption>>;
|
|
178361
|
+
graphInference_graphclawProductOptions?: Maybe<Array<GraphInferenceGraphclawOption>>;
|
|
178362
|
+
graphInference_inferenceAppList?: Maybe<Array<GraphInferenceInferenceApp>>;
|
|
177347
178363
|
graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
|
|
177348
178364
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
177349
178365
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
@@ -177360,6 +178376,7 @@ export type Query = {
|
|
|
177360
178376
|
graphIntegration_mcpServerUserRequests?: Maybe<GraphIntegrationMcpServerUserRequestConnection>;
|
|
177361
178377
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
177362
178378
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
178379
|
+
graphIntegration_rbacRecords?: Maybe<Array<GraphIntegrationRbacRecord>>;
|
|
177363
178380
|
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
177364
178381
|
graphIntegration_skillDimensionMetadata?: Maybe<GraphIntegrationSkillDimensionMetadata>;
|
|
177365
178382
|
graphIntegration_skillItems?: Maybe<Array<Maybe<GraphIntegrationSkillItem>>>;
|
|
@@ -177892,6 +178909,8 @@ export type Query = {
|
|
|
177892
178909
|
graphStoreV2_externalUserCreatedExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalMessageInverseConnection>;
|
|
177893
178910
|
graphStoreV2_externalUserCreatedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestConnection>;
|
|
177894
178911
|
graphStoreV2_externalUserCreatedExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestInverseConnection>;
|
|
178912
|
+
graphStoreV2_externalUserCreatedExternalServicenowBusinessApp?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppConnection>;
|
|
178913
|
+
graphStoreV2_externalUserCreatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalServicenowBusinessAppInverseConnection>;
|
|
177895
178914
|
graphStoreV2_externalUserCreatedExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalSoftwareServiceConnection>;
|
|
177896
178915
|
graphStoreV2_externalUserCreatedExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalSoftwareServiceInverseConnection>;
|
|
177897
178916
|
graphStoreV2_externalUserCreatedExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalSpaceConnection>;
|
|
@@ -177943,6 +178962,8 @@ export type Query = {
|
|
|
177943
178962
|
graphStoreV2_externalUserOwnsExternalLeadInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalLeadInverseConnection>;
|
|
177944
178963
|
graphStoreV2_externalUserOwnsExternalRepository?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryConnection>;
|
|
177945
178964
|
graphStoreV2_externalUserOwnsExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseConnection>;
|
|
178965
|
+
graphStoreV2_externalUserOwnsExternalServicenowBusinessApp?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppConnection>;
|
|
178966
|
+
graphStoreV2_externalUserOwnsExternalServicenowBusinessAppInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalServicenowBusinessAppInverseConnection>;
|
|
177946
178967
|
graphStoreV2_externalUserOwnsExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceConnection>;
|
|
177947
178968
|
graphStoreV2_externalUserOwnsExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceInverseConnection>;
|
|
177948
178969
|
graphStoreV2_externalUserOwnsExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSpaceConnection>;
|
|
@@ -177984,6 +179005,8 @@ export type Query = {
|
|
|
177984
179005
|
graphStoreV2_externalUserUpdatedExternalExperimentalInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalExperimentalInverseConnection>;
|
|
177985
179006
|
graphStoreV2_externalUserUpdatedExternalLead?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalLeadConnection>;
|
|
177986
179007
|
graphStoreV2_externalUserUpdatedExternalLeadInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalLeadInverseConnection>;
|
|
179008
|
+
graphStoreV2_externalUserUpdatedExternalServicenowBusinessApp?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppConnection>;
|
|
179009
|
+
graphStoreV2_externalUserUpdatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalServicenowBusinessAppInverseConnection>;
|
|
177987
179010
|
graphStoreV2_externalUserUpdatedExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceConnection>;
|
|
177988
179011
|
graphStoreV2_externalUserUpdatedExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceInverseConnection>;
|
|
177989
179012
|
graphStoreV2_externalUserUpdatedExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSpaceConnection>;
|
|
@@ -178056,6 +179079,7 @@ export type Query = {
|
|
|
178056
179079
|
graphStoreV2_focusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverseConnection>;
|
|
178057
179080
|
graphStoreV2_focusStrategicPlanScenarioInvestmentHasInvestmentEntity?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityConnection>;
|
|
178058
179081
|
graphStoreV2_focusStrategicPlanScenarioInvestmentHasInvestmentEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseConnection>;
|
|
179082
|
+
graphStoreV2_inferredEntities?: Maybe<Array<GraphStoreInferredEntityResponse>>;
|
|
178059
179083
|
graphStoreV2_inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
178060
179084
|
graphStoreV2_inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
178061
179085
|
graphStoreV2_jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
|
|
@@ -178328,6 +179352,8 @@ export type Query = {
|
|
|
178328
179352
|
graphStore_atlassianUserCreatedExternalExperimentalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalExperimentalInverseConnection>;
|
|
178329
179353
|
graphStore_atlassianUserCreatedExternalLead?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalLeadConnection>;
|
|
178330
179354
|
graphStore_atlassianUserCreatedExternalLeadInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalLeadInverseConnection>;
|
|
179355
|
+
graphStore_atlassianUserCreatedExternalServicenowBusinessApp?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppConnection>;
|
|
179356
|
+
graphStore_atlassianUserCreatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalServicenowBusinessAppInverseConnection>;
|
|
178331
179357
|
graphStore_atlassianUserCreatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection>;
|
|
178332
179358
|
graphStore_atlassianUserCreatedExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseConnection>;
|
|
178333
179359
|
graphStore_atlassianUserCreatedExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionConnection>;
|
|
@@ -178364,6 +179390,8 @@ export type Query = {
|
|
|
178364
179390
|
graphStore_atlassianUserOwnsExternalExperimentalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalExperimentalInverseConnection>;
|
|
178365
179391
|
graphStore_atlassianUserOwnsExternalLead?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalLeadConnection>;
|
|
178366
179392
|
graphStore_atlassianUserOwnsExternalLeadInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalLeadInverseConnection>;
|
|
179393
|
+
graphStore_atlassianUserOwnsExternalServicenowBusinessApp?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppConnection>;
|
|
179394
|
+
graphStore_atlassianUserOwnsExternalServicenowBusinessAppInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalServicenowBusinessAppInverseConnection>;
|
|
178367
179395
|
graphStore_atlassianUserOwnsExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection>;
|
|
178368
179396
|
graphStore_atlassianUserOwnsExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseConnection>;
|
|
178369
179397
|
graphStore_atlassianUserOwnsExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionConnection>;
|
|
@@ -178389,6 +179417,8 @@ export type Query = {
|
|
|
178389
179417
|
graphStore_atlassianUserUpdatedExternalExperimentalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalExperimentalInverseConnection>;
|
|
178390
179418
|
graphStore_atlassianUserUpdatedExternalLead?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalLeadConnection>;
|
|
178391
179419
|
graphStore_atlassianUserUpdatedExternalLeadInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalLeadInverseConnection>;
|
|
179420
|
+
graphStore_atlassianUserUpdatedExternalServicenowBusinessApp?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppConnection>;
|
|
179421
|
+
graphStore_atlassianUserUpdatedExternalServicenowBusinessAppInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalServicenowBusinessAppInverseConnection>;
|
|
178392
179422
|
graphStore_atlassianUserUpdatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection>;
|
|
178393
179423
|
graphStore_atlassianUserUpdatedExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseConnection>;
|
|
178394
179424
|
graphStore_atlassianUserUpdatedExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionConnection>;
|
|
@@ -179539,6 +180569,8 @@ export type Query = {
|
|
|
179539
180569
|
jira_isBetaAiFeaturesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
179540
180570
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
179541
180571
|
jira_isTenantConvertedToNfa?: Maybe<Scalars['Boolean']['output']>;
|
|
180572
|
+
jira_issueCreateAdditionalServices?: Maybe<JiraIssueCreateAdditionalServicesResult>;
|
|
180573
|
+
jira_issueCreateFields?: Maybe<JiraIssueCreateFieldsResult>;
|
|
179542
180574
|
jira_issueCreateLayout?: Maybe<JiraIssueCreateLayoutResult>;
|
|
179543
180575
|
jira_issueCreateLayoutWithML?: Maybe<JiraIssueCreateLayoutResult>;
|
|
179544
180576
|
jira_issueSearchTopLevelIssueFieldsAggregation?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -179676,10 +180708,13 @@ export type Query = {
|
|
|
179676
180708
|
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
179677
180709
|
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
179678
180710
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
180711
|
+
loom_meetingActionItems?: Maybe<Array<Maybe<LoomMeetingActionItem>>>;
|
|
179679
180712
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
179680
180713
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
179681
180714
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
179682
180715
|
loom_meetingsSearch?: Maybe<LoomMeetings>;
|
|
180716
|
+
loom_playlist?: Maybe<LoomPlaylist>;
|
|
180717
|
+
loom_playlists?: Maybe<Array<Maybe<LoomPlaylist>>>;
|
|
179683
180718
|
loom_settings?: Maybe<LoomSettings>;
|
|
179684
180719
|
loom_space?: Maybe<LoomSpace>;
|
|
179685
180720
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
@@ -179687,6 +180722,7 @@ export type Query = {
|
|
|
179687
180722
|
loom_tagsSearch?: Maybe<Array<LoomTag>>;
|
|
179688
180723
|
loom_validateSlackUserIds?: Maybe<Array<Maybe<LoomValidateSlackUserIds>>>;
|
|
179689
180724
|
loom_video?: Maybe<LoomVideo>;
|
|
180725
|
+
loom_videoDownloadUrl?: Maybe<LoomVideoDownloadUrl>;
|
|
179690
180726
|
loom_videoDurations?: Maybe<LoomVideoDurations>;
|
|
179691
180727
|
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
179692
180728
|
loom_viewableVideo?: Maybe<LoomVideo>;
|
|
@@ -179834,6 +180870,8 @@ export type Query = {
|
|
|
179834
180870
|
quickReload?: Maybe<QuickReload>;
|
|
179835
180871
|
radar_aiConnectorById?: Maybe<RadarAiConnector>;
|
|
179836
180872
|
radar_aiConnectors?: Maybe<RadarAiConnectorsConnection>;
|
|
180873
|
+
radar_aiScopedBudgetPolicies?: Maybe<RadarAiScopedBudgetPolicyConnection>;
|
|
180874
|
+
radar_aiWorkspaceBudgetPolicy?: Maybe<RadarAiWorkspaceBudgetPolicy>;
|
|
179837
180875
|
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
179838
180876
|
radar_benchmarks?: Maybe<Array<RadarMetricSettings>>;
|
|
179839
180877
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
@@ -180908,6 +181946,8 @@ export type QueryAgentWorkspace_ServicesArgs = {
|
|
|
180908
181946
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180909
181947
|
projectId: Scalars['ID']['input'];
|
|
180910
181948
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
181949
|
+
serviceFieldId?: InputMaybe<Scalars['ID']['input']>;
|
|
181950
|
+
serviceFieldType?: InputMaybe<AgentWorkspaceSmartRoutingServiceFieldType>;
|
|
180911
181951
|
};
|
|
180912
181952
|
export type QueryAgentWorkspace_ServicesConfiguredInProjectArgs = {
|
|
180913
181953
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -181239,6 +182279,9 @@ export type QueryAppLogsWithMetaDataArgs = {
|
|
|
181239
182279
|
query?: InputMaybe<LogQueryInput>;
|
|
181240
182280
|
queryStartTime: Scalars['String']['input'];
|
|
181241
182281
|
};
|
|
182282
|
+
export type QueryAppPreDeploymentCheckArgs = {
|
|
182283
|
+
input: AppPreDeploymentCheckInput;
|
|
182284
|
+
};
|
|
181242
182285
|
export type QueryAppServicesArgs = {
|
|
181243
182286
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
181244
182287
|
appId: Scalars['ID']['input'];
|
|
@@ -183264,6 +184307,7 @@ export type QueryContentAnalyticsViewsByDateArgs = {
|
|
|
183264
184307
|
};
|
|
183265
184308
|
export type QueryContentAnalyticsViewsByUserArgs = {
|
|
183266
184309
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
184310
|
+
actorType?: InputMaybe<ConfluencePageAnalyticsActorType>;
|
|
183267
184311
|
contentId: Scalars['ID']['input'];
|
|
183268
184312
|
engageTimeThreshold?: InputMaybe<Scalars['Int']['input']>;
|
|
183269
184313
|
isPrivacyModeEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -183917,6 +184961,11 @@ export type QueryDevai_AutodevNextWorkstreamSweepSummaryArgs = {
|
|
|
183917
184961
|
cloudId: Scalars['ID']['input'];
|
|
183918
184962
|
workstreamId: Scalars['ID']['input'];
|
|
183919
184963
|
};
|
|
184964
|
+
export type QueryDevai_AutodevNextWorkstreamTaskArgs = {
|
|
184965
|
+
cloudId: Scalars['ID']['input'];
|
|
184966
|
+
workItemId: Scalars['ID']['input'];
|
|
184967
|
+
workspaceId: Scalars['ID']['input'];
|
|
184968
|
+
};
|
|
183920
184969
|
export type QueryDevai_AutodevNextWorkstreamTasksArgs = {
|
|
183921
184970
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
183922
184971
|
assigneeUserAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -184505,6 +185554,11 @@ export type QueryGraphIntegration_McpToolsArgs = {
|
|
|
184505
185554
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
184506
185555
|
ids: Array<Scalars['ID']['input']>;
|
|
184507
185556
|
};
|
|
185557
|
+
export type QueryGraphIntegration_RbacRecordsArgs = {
|
|
185558
|
+
cloudId: Scalars['ID']['input'];
|
|
185559
|
+
resourceAri: Scalars['ID']['input'];
|
|
185560
|
+
workspaceAri: Scalars['ID']['input'];
|
|
185561
|
+
};
|
|
184508
185562
|
export type QueryGraphIntegration_SkillArgs = {
|
|
184509
185563
|
contextAri: Scalars['ID']['input'];
|
|
184510
185564
|
resolvePlatformToolNames?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -188216,6 +189270,20 @@ export type QueryGraphStoreV2_ExternalUserCreatedExternalPullRequestInverseArgs
|
|
|
188216
189270
|
id: Scalars['ID']['input'];
|
|
188217
189271
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalPullRequestSortInput>;
|
|
188218
189272
|
};
|
|
189273
|
+
export type QueryGraphStoreV2_ExternalUserCreatedExternalServicenowBusinessAppArgs = {
|
|
189274
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189275
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189276
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189277
|
+
id: Scalars['ID']['input'];
|
|
189278
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
189279
|
+
};
|
|
189280
|
+
export type QueryGraphStoreV2_ExternalUserCreatedExternalServicenowBusinessAppInverseArgs = {
|
|
189281
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189282
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189283
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189284
|
+
id: Scalars['ID']['input'];
|
|
189285
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
189286
|
+
};
|
|
188219
189287
|
export type QueryGraphStoreV2_ExternalUserCreatedExternalSoftwareServiceArgs = {
|
|
188220
189288
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188221
189289
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -188573,6 +189641,20 @@ export type QueryGraphStoreV2_ExternalUserOwnsExternalRepositoryInverseArgs = {
|
|
|
188573
189641
|
id: Scalars['ID']['input'];
|
|
188574
189642
|
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalRepositorySortInput>;
|
|
188575
189643
|
};
|
|
189644
|
+
export type QueryGraphStoreV2_ExternalUserOwnsExternalServicenowBusinessAppArgs = {
|
|
189645
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189646
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189647
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189648
|
+
id: Scalars['ID']['input'];
|
|
189649
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
189650
|
+
};
|
|
189651
|
+
export type QueryGraphStoreV2_ExternalUserOwnsExternalServicenowBusinessAppInverseArgs = {
|
|
189652
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189653
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189654
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189655
|
+
id: Scalars['ID']['input'];
|
|
189656
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
189657
|
+
};
|
|
188576
189658
|
export type QueryGraphStoreV2_ExternalUserOwnsExternalSoftwareServiceArgs = {
|
|
188577
189659
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188578
189660
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -188860,6 +189942,20 @@ export type QueryGraphStoreV2_ExternalUserUpdatedExternalLeadInverseArgs = {
|
|
|
188860
189942
|
id: Scalars['ID']['input'];
|
|
188861
189943
|
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalLeadSortInput>;
|
|
188862
189944
|
};
|
|
189945
|
+
export type QueryGraphStoreV2_ExternalUserUpdatedExternalServicenowBusinessAppArgs = {
|
|
189946
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189947
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189948
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189949
|
+
id: Scalars['ID']['input'];
|
|
189950
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
189951
|
+
};
|
|
189952
|
+
export type QueryGraphStoreV2_ExternalUserUpdatedExternalServicenowBusinessAppInverseArgs = {
|
|
189953
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189954
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189955
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189956
|
+
id: Scalars['ID']['input'];
|
|
189957
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
189958
|
+
};
|
|
188863
189959
|
export type QueryGraphStoreV2_ExternalUserUpdatedExternalSoftwareServiceArgs = {
|
|
188864
189960
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188865
189961
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -189364,6 +190460,9 @@ export type QueryGraphStoreV2_FocusStrategicPlanScenarioInvestmentHasInvestmentE
|
|
|
189364
190460
|
id: Scalars['ID']['input'];
|
|
189365
190461
|
sort?: InputMaybe<GraphStoreV2FocusStrategicPlanScenarioInvestmentHasInvestmentEntitySortInput>;
|
|
189366
190462
|
};
|
|
190463
|
+
export type QueryGraphStoreV2_InferredEntitiesArgs = {
|
|
190464
|
+
ids: Array<Scalars['String']['input']>;
|
|
190465
|
+
};
|
|
189367
190466
|
export type QueryGraphStoreV2_InferredProjectLinksEntityArgs = {
|
|
189368
190467
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
189369
190468
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -191372,6 +192471,22 @@ export type QueryGraphStore_AtlassianUserCreatedExternalLeadInverseArgs = {
|
|
|
191372
192471
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
191373
192472
|
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalLeadSortInput>;
|
|
191374
192473
|
};
|
|
192474
|
+
export type QueryGraphStore_AtlassianUserCreatedExternalServicenowBusinessAppArgs = {
|
|
192475
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192476
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192477
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192478
|
+
id: Scalars['ID']['input'];
|
|
192479
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192480
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
192481
|
+
};
|
|
192482
|
+
export type QueryGraphStore_AtlassianUserCreatedExternalServicenowBusinessAppInverseArgs = {
|
|
192483
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192484
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192485
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192486
|
+
id: Scalars['ID']['input'];
|
|
192487
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192488
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalServicenowBusinessAppSortInput>;
|
|
192489
|
+
};
|
|
191375
192490
|
export type QueryGraphStore_AtlassianUserCreatedExternalTeamArgs = {
|
|
191376
192491
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
191377
192492
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -191660,6 +192775,22 @@ export type QueryGraphStore_AtlassianUserOwnsExternalLeadInverseArgs = {
|
|
|
191660
192775
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
191661
192776
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalLeadSortInput>;
|
|
191662
192777
|
};
|
|
192778
|
+
export type QueryGraphStore_AtlassianUserOwnsExternalServicenowBusinessAppArgs = {
|
|
192779
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192780
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192781
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192782
|
+
id: Scalars['ID']['input'];
|
|
192783
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192784
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
192785
|
+
};
|
|
192786
|
+
export type QueryGraphStore_AtlassianUserOwnsExternalServicenowBusinessAppInverseArgs = {
|
|
192787
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192788
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192789
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192790
|
+
id: Scalars['ID']['input'];
|
|
192791
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192792
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalServicenowBusinessAppSortInput>;
|
|
192793
|
+
};
|
|
191663
192794
|
export type QueryGraphStore_AtlassianUserOwnsExternalTeamArgs = {
|
|
191664
192795
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
191665
192796
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -191860,6 +192991,22 @@ export type QueryGraphStore_AtlassianUserUpdatedExternalLeadInverseArgs = {
|
|
|
191860
192991
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
191861
192992
|
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalLeadSortInput>;
|
|
191862
192993
|
};
|
|
192994
|
+
export type QueryGraphStore_AtlassianUserUpdatedExternalServicenowBusinessAppArgs = {
|
|
192995
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192996
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192997
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192998
|
+
id: Scalars['ID']['input'];
|
|
192999
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
193000
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
193001
|
+
};
|
|
193002
|
+
export type QueryGraphStore_AtlassianUserUpdatedExternalServicenowBusinessAppInverseArgs = {
|
|
193003
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
193004
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
193005
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
193006
|
+
id: Scalars['ID']['input'];
|
|
193007
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
193008
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalServicenowBusinessAppSortInput>;
|
|
193009
|
+
};
|
|
191863
193010
|
export type QueryGraphStore_AtlassianUserUpdatedExternalTeamArgs = {
|
|
191864
193011
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
191865
193012
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -200373,6 +201520,25 @@ export type QueryJira_IsRovoLlmEnabledArgs = {
|
|
|
200373
201520
|
export type QueryJira_IsTenantConvertedToNfaArgs = {
|
|
200374
201521
|
cloudId: Scalars['ID']['input'];
|
|
200375
201522
|
};
|
|
201523
|
+
export type QueryJira_IssueCreateAdditionalServicesArgs = {
|
|
201524
|
+
cloudId: Scalars['ID']['input'];
|
|
201525
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
201526
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
201527
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
201528
|
+
};
|
|
201529
|
+
export type QueryJira_IssueCreateFieldsArgs = {
|
|
201530
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
201531
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
201532
|
+
cloudId: Scalars['ID']['input'];
|
|
201533
|
+
defaultValues?: InputMaybe<JiraIssueFieldsInput>;
|
|
201534
|
+
evaluateMiniMode?: InputMaybe<Scalars['Boolean']['input']>;
|
|
201535
|
+
fieldsFilter?: InputMaybe<JiraIssueCreateFieldsFilter>;
|
|
201536
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
201537
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
201538
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
201539
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
201540
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
201541
|
+
};
|
|
200376
201542
|
export type QueryJira_IssueCreateLayoutArgs = {
|
|
200377
201543
|
cloudId: Scalars['ID']['input'];
|
|
200378
201544
|
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
@@ -200916,6 +202082,9 @@ export type QueryLoom_FoldersSearchArgs = {
|
|
|
200916
202082
|
export type QueryLoom_MeetingArgs = {
|
|
200917
202083
|
id: Scalars['ID']['input'];
|
|
200918
202084
|
};
|
|
202085
|
+
export type QueryLoom_MeetingActionItemsArgs = {
|
|
202086
|
+
id: Scalars['ID']['input'];
|
|
202087
|
+
};
|
|
200919
202088
|
export type QueryLoom_MeetingRecurrenceArgs = {
|
|
200920
202089
|
id: Scalars['ID']['input'];
|
|
200921
202090
|
};
|
|
@@ -200928,6 +202097,12 @@ export type QueryLoom_MeetingsArgs = {
|
|
|
200928
202097
|
export type QueryLoom_MeetingsSearchArgs = {
|
|
200929
202098
|
id: Scalars['ID']['input'];
|
|
200930
202099
|
};
|
|
202100
|
+
export type QueryLoom_PlaylistArgs = {
|
|
202101
|
+
id: Scalars['ID']['input'];
|
|
202102
|
+
};
|
|
202103
|
+
export type QueryLoom_PlaylistsArgs = {
|
|
202104
|
+
ids: Array<Scalars['ID']['input']>;
|
|
202105
|
+
};
|
|
200931
202106
|
export type QueryLoom_SettingsArgs = {
|
|
200932
202107
|
siteId: Scalars['ID']['input'];
|
|
200933
202108
|
};
|
|
@@ -200952,6 +202127,9 @@ export type QueryLoom_ValidateSlackUserIdsArgs = {
|
|
|
200952
202127
|
export type QueryLoom_VideoArgs = {
|
|
200953
202128
|
id: Scalars['ID']['input'];
|
|
200954
202129
|
};
|
|
202130
|
+
export type QueryLoom_VideoDownloadUrlArgs = {
|
|
202131
|
+
id: Scalars['ID']['input'];
|
|
202132
|
+
};
|
|
200955
202133
|
export type QueryLoom_VideoDurationsArgs = {
|
|
200956
202134
|
id: Scalars['ID']['input'];
|
|
200957
202135
|
};
|
|
@@ -201463,6 +202641,14 @@ export type QueryRadar_AiConnectorsArgs = {
|
|
|
201463
202641
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
201464
202642
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
201465
202643
|
};
|
|
202644
|
+
export type QueryRadar_AiScopedBudgetPoliciesArgs = {
|
|
202645
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
202646
|
+
cloudId: Scalars['ID']['input'];
|
|
202647
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
202648
|
+
};
|
|
202649
|
+
export type QueryRadar_AiWorkspaceBudgetPolicyArgs = {
|
|
202650
|
+
cloudId: Scalars['ID']['input'];
|
|
202651
|
+
};
|
|
201466
202652
|
export type QueryRadar_AvailableCustomFieldsFromLastSyncArgs = {
|
|
201467
202653
|
cloudId: Scalars['ID']['input'];
|
|
201468
202654
|
};
|
|
@@ -202677,6 +203863,18 @@ export type RadarAiScopedBudgetPolicy = {
|
|
|
202677
203863
|
id: Scalars['ID']['output'];
|
|
202678
203864
|
scopeFieldValue: Scalars['String']['output'];
|
|
202679
203865
|
};
|
|
203866
|
+
export type RadarAiScopedBudgetPolicyConnection = RadarConnection & {
|
|
203867
|
+
__typename?: 'RadarAiScopedBudgetPolicyConnection';
|
|
203868
|
+
edges?: Maybe<Array<RadarAiScopedBudgetPolicyEdge>>;
|
|
203869
|
+
nodes?: Maybe<Array<RadarAiScopedBudgetPolicy>>;
|
|
203870
|
+
pageInfo: PageInfo;
|
|
203871
|
+
totalCount: Scalars['Int']['output'];
|
|
203872
|
+
};
|
|
203873
|
+
export type RadarAiScopedBudgetPolicyEdge = RadarEdge & {
|
|
203874
|
+
__typename?: 'RadarAiScopedBudgetPolicyEdge';
|
|
203875
|
+
cursor: Scalars['String']['output'];
|
|
203876
|
+
node: RadarAiScopedBudgetPolicy;
|
|
203877
|
+
};
|
|
202680
203878
|
export type RadarAiWorkspaceBudgetPolicy = {
|
|
202681
203879
|
__typename?: 'RadarAiWorkspaceBudgetPolicy';
|
|
202682
203880
|
allowanceAmount: Scalars['Int']['output'];
|
|
@@ -202833,6 +204031,7 @@ export type RadarEntityFieldValuesArgs = {
|
|
|
202833
204031
|
export declare enum RadarEntityType {
|
|
202834
204032
|
AiConnector = "aiConnector",
|
|
202835
204033
|
AiMonthlyUsage = "aiMonthlyUsage",
|
|
204034
|
+
AiUsage = "aiUsage",
|
|
202836
204035
|
FocusArea = "focusArea",
|
|
202837
204036
|
FocusAreaType = "focusAreaType",
|
|
202838
204037
|
Position = "position",
|
|
@@ -236531,6 +237730,7 @@ export type TownsquareShareProjectUserInput = {
|
|
|
236531
237730
|
};
|
|
236532
237731
|
export type TownsquareSlackChannel = {
|
|
236533
237732
|
__typename?: 'TownsquareSlackChannel';
|
|
237733
|
+
channelId?: Maybe<Scalars['String']['output']>;
|
|
236534
237734
|
loggedIn?: Maybe<Scalars['Boolean']['output']>;
|
|
236535
237735
|
name?: Maybe<Scalars['String']['output']>;
|
|
236536
237736
|
numMembers?: Maybe<Scalars['Int']['output']>;
|
|
@@ -237990,6 +239190,47 @@ export type TrelloBoardEdge = {
|
|
|
237990
239190
|
cursor: Scalars['String']['output'];
|
|
237991
239191
|
node: TrelloBaseBoard;
|
|
237992
239192
|
};
|
|
239193
|
+
export type TrelloBoardHistory = {
|
|
239194
|
+
__typename?: 'TrelloBoardHistory';
|
|
239195
|
+
cardsPerDueDateStatus: TrelloBoardHistoryTimeSeries;
|
|
239196
|
+
cardsPerLabel: TrelloBoardHistoryTimeSeries;
|
|
239197
|
+
cardsPerList: TrelloBoardHistoryTimeSeries;
|
|
239198
|
+
cardsPerMember: TrelloBoardHistoryTimeSeries;
|
|
239199
|
+
};
|
|
239200
|
+
export type TrelloBoardHistoryCardsPerDueDateStatusArgs = {
|
|
239201
|
+
statuses?: InputMaybe<Array<TrelloBoardHistoryDueDateStatus>>;
|
|
239202
|
+
};
|
|
239203
|
+
export type TrelloBoardHistoryCardsPerLabelArgs = {
|
|
239204
|
+
labelIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
239205
|
+
};
|
|
239206
|
+
export type TrelloBoardHistoryCardsPerListArgs = {
|
|
239207
|
+
listIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
239208
|
+
};
|
|
239209
|
+
export type TrelloBoardHistoryCardsPerMemberArgs = {
|
|
239210
|
+
memberIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
239211
|
+
};
|
|
239212
|
+
export type TrelloBoardHistoryDatapoint = {
|
|
239213
|
+
__typename?: 'TrelloBoardHistoryDatapoint';
|
|
239214
|
+
dateTime: Scalars['DateTime']['output'];
|
|
239215
|
+
value: Scalars['Int']['output'];
|
|
239216
|
+
};
|
|
239217
|
+
export declare enum TrelloBoardHistoryDueDateStatus {
|
|
239218
|
+
Done = "DONE",
|
|
239219
|
+
DueLater = "DUE_LATER",
|
|
239220
|
+
DueSoon = "DUE_SOON",
|
|
239221
|
+
NoDueDate = "NO_DUE_DATE",
|
|
239222
|
+
Overdue = "OVERDUE"
|
|
239223
|
+
}
|
|
239224
|
+
export type TrelloBoardHistorySeriesEntry = {
|
|
239225
|
+
__typename?: 'TrelloBoardHistorySeriesEntry';
|
|
239226
|
+
datapoints: Array<TrelloBoardHistoryDatapoint>;
|
|
239227
|
+
id: Scalars['String']['output'];
|
|
239228
|
+
};
|
|
239229
|
+
export type TrelloBoardHistoryTimeSeries = {
|
|
239230
|
+
__typename?: 'TrelloBoardHistoryTimeSeries';
|
|
239231
|
+
complete: Scalars['Boolean']['output'];
|
|
239232
|
+
series: Array<TrelloBoardHistorySeriesEntry>;
|
|
239233
|
+
};
|
|
237993
239234
|
export type TrelloBoardId = TrelloBaseBoardId & {
|
|
237994
239235
|
__typename?: 'TrelloBoardId';
|
|
237995
239236
|
id: Scalars['ID']['output'];
|
|
@@ -238214,6 +239455,7 @@ export type TrelloBoardViewer = {
|
|
|
238214
239455
|
aiBrowserExtensionEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
238215
239456
|
aiConfluenceEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
238216
239457
|
aiEmailEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
239458
|
+
aiGoogleChatEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
238217
239459
|
aiMSTeamsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
238218
239460
|
aiSlackEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
238219
239461
|
calendarKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -240901,6 +242143,7 @@ export type TrelloMutationApi = {
|
|
|
240901
242143
|
updateBoardViewerAIBrowserExtension?: Maybe<TrelloUpdateBoardViewerAiBrowserExtensionPayload>;
|
|
240902
242144
|
updateBoardViewerAIConfluence?: Maybe<TrelloUpdateBoardViewerAiConfluencePayload>;
|
|
240903
242145
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
242146
|
+
updateBoardViewerAIGoogleChat?: Maybe<TrelloUpdateBoardViewerAiGoogleChatPayload>;
|
|
240904
242147
|
updateBoardViewerAIMSTeams?: Maybe<TrelloUpdateBoardViewerAimsTeamsPayload>;
|
|
240905
242148
|
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
240906
242149
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
@@ -241249,6 +242492,9 @@ export type TrelloMutationApiUpdateBoardViewerAiConfluenceArgs = {
|
|
|
241249
242492
|
export type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
241250
242493
|
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
241251
242494
|
};
|
|
242495
|
+
export type TrelloMutationApiUpdateBoardViewerAiGoogleChatArgs = {
|
|
242496
|
+
input: TrelloUpdateBoardViewerAiGoogleChatInput;
|
|
242497
|
+
};
|
|
241252
242498
|
export type TrelloMutationApiUpdateBoardViewerAimsTeamsArgs = {
|
|
241253
242499
|
input: TrelloUpdateBoardViewerAimsTeamsInput;
|
|
241254
242500
|
};
|
|
@@ -242276,6 +243522,7 @@ export type TrelloQueryApi = {
|
|
|
242276
243522
|
attachmentsById?: Maybe<Array<Maybe<TrelloAttachment>>>;
|
|
242277
243523
|
board?: Maybe<TrelloBoard>;
|
|
242278
243524
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
243525
|
+
boardHistory?: Maybe<TrelloBoardHistory>;
|
|
242279
243526
|
boardMirrorCardInfo?: Maybe<TrelloBoardMirrorCards>;
|
|
242280
243527
|
boardOrInbox?: Maybe<TrelloBaseBoard>;
|
|
242281
243528
|
card?: Maybe<TrelloCard>;
|
|
@@ -242332,6 +243579,11 @@ export type TrelloQueryApiBoardArgs = {
|
|
|
242332
243579
|
export type TrelloQueryApiBoardByShortLinkArgs = {
|
|
242333
243580
|
shortLink: Scalars['TrelloShortLink']['input'];
|
|
242334
243581
|
};
|
|
243582
|
+
export type TrelloQueryApiBoardHistoryArgs = {
|
|
243583
|
+
boardId: Scalars['ID']['input'];
|
|
243584
|
+
from?: InputMaybe<Scalars['DateTime']['input']>;
|
|
243585
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
243586
|
+
};
|
|
242335
243587
|
export type TrelloQueryApiBoardMirrorCardInfoArgs = {
|
|
242336
243588
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
242337
243589
|
shortLink?: InputMaybe<Scalars['TrelloShortLink']['input']>;
|
|
@@ -243129,6 +244381,16 @@ export type TrelloUpdateBoardViewerAiEmailPayload = Payload & {
|
|
|
243129
244381
|
success: Scalars['Boolean']['output'];
|
|
243130
244382
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
243131
244383
|
};
|
|
244384
|
+
export type TrelloUpdateBoardViewerAiGoogleChatInput = {
|
|
244385
|
+
boardId: Scalars['ID']['input'];
|
|
244386
|
+
value: Scalars['Boolean']['input'];
|
|
244387
|
+
};
|
|
244388
|
+
export type TrelloUpdateBoardViewerAiGoogleChatPayload = Payload & {
|
|
244389
|
+
__typename?: 'TrelloUpdateBoardViewerAIGoogleChatPayload';
|
|
244390
|
+
errors?: Maybe<Array<MutationError>>;
|
|
244391
|
+
success: Scalars['Boolean']['output'];
|
|
244392
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
244393
|
+
};
|
|
243132
244394
|
export type TrelloUpdateBoardViewerAimsTeamsInput = {
|
|
243133
244395
|
boardId: Scalars['ID']['input'];
|
|
243134
244396
|
value: Scalars['Boolean']['input'];
|