@forge/cli-shared 9.0.1-next.1 → 9.0.1-next.2-experimental-9423de1
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 +16 -0
- package/out/graphql/graphql-types.d.ts +1363 -86
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +209 -65
- package/package.json +2 -2
|
@@ -232,7 +232,7 @@ export type AiOpsDeploymentDetail = {
|
|
|
232
232
|
};
|
|
233
233
|
export type AiOpsDeploymentPullRequest = {
|
|
234
234
|
__typename?: 'AIOpsDeploymentPullRequest';
|
|
235
|
-
author?: Maybe<
|
|
235
|
+
author?: Maybe<User>;
|
|
236
236
|
destinationBranch?: Maybe<Scalars['String']['output']>;
|
|
237
237
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
238
238
|
pullRequestId?: Maybe<Scalars['String']['output']>;
|
|
@@ -596,6 +596,7 @@ export type AiOpsInvestigationInputContext = {
|
|
|
596
596
|
inScopeServiceIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
597
597
|
sourceEntityId: Scalars['String']['output'];
|
|
598
598
|
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
599
|
+
sourceJiraIssue?: Maybe<JiraIssue>;
|
|
599
600
|
};
|
|
600
601
|
export type AiOpsInvestigationProgressItem = {
|
|
601
602
|
__typename?: 'AIOpsInvestigationProgressItem';
|
|
@@ -840,6 +841,7 @@ export declare enum AvpAnalyticsAcknowledgeableError {
|
|
|
840
841
|
export type AvpAnalyticsAcknowledgeableMutationErrorExtension = MutationErrorExtension & {
|
|
841
842
|
__typename?: 'AVPAnalyticsAcknowledgeableMutationErrorExtension';
|
|
842
843
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
844
|
+
impactedMetrics?: Maybe<Array<AvpAnalyticsImpactedMetric>>;
|
|
843
845
|
needAcknowledgement?: Maybe<AvpAnalyticsAcknowledgeableError>;
|
|
844
846
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
845
847
|
};
|
|
@@ -1179,6 +1181,11 @@ export type AvpAnalyticsGetModelsInput = {
|
|
|
1179
1181
|
export type AvpAnalyticsGetPermissionInput = {
|
|
1180
1182
|
resourceAri: Scalars['ID']['input'];
|
|
1181
1183
|
};
|
|
1184
|
+
export type AvpAnalyticsImpactedMetric = {
|
|
1185
|
+
__typename?: 'AVPAnalyticsImpactedMetric';
|
|
1186
|
+
metricAri: Scalars['ID']['output'];
|
|
1187
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1188
|
+
};
|
|
1182
1189
|
export type AvpAnalyticsJoinColumnPairs = {
|
|
1183
1190
|
__typename?: 'AVPAnalyticsJoinColumnPairs';
|
|
1184
1191
|
joinOnOperator: AvpAnalyticsJoinOnOperator;
|
|
@@ -1592,6 +1599,9 @@ export type AvpAnalyticsPrincipalPermissionInput = {
|
|
|
1592
1599
|
export type AvpAnalyticsPurgeMetricInput = {
|
|
1593
1600
|
metricId: Scalars['ID']['input'];
|
|
1594
1601
|
};
|
|
1602
|
+
export type AvpAnalyticsPurgeModelInput = {
|
|
1603
|
+
modelId: Scalars['ID']['input'];
|
|
1604
|
+
};
|
|
1595
1605
|
export type AvpAnalyticsRangeValue = {
|
|
1596
1606
|
__typename?: 'AVPAnalyticsRangeValue';
|
|
1597
1607
|
fromExpression?: Maybe<Scalars['String']['output']>;
|
|
@@ -8071,6 +8081,7 @@ export type AgentWorkspaceProjectSkillCategoryConnection = {
|
|
|
8071
8081
|
__typename?: 'AgentWorkspaceProjectSkillCategoryConnection';
|
|
8072
8082
|
edges?: Maybe<Array<AgentWorkspaceProjectSkillCategoryEdge>>;
|
|
8073
8083
|
errors?: Maybe<Array<QueryError>>;
|
|
8084
|
+
hasAnyCategories: Scalars['Boolean']['output'];
|
|
8074
8085
|
nodes?: Maybe<Array<Maybe<AgentWorkspaceProjectSkillCategory>>>;
|
|
8075
8086
|
pageInfo: PageInfo;
|
|
8076
8087
|
totalCategoryCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -8525,6 +8536,10 @@ export type AgentWorkspaceShiftsSummary = {
|
|
|
8525
8536
|
totalGaps: Scalars['Int']['output'];
|
|
8526
8537
|
totalShifts: Scalars['Int']['output'];
|
|
8527
8538
|
};
|
|
8539
|
+
export type AgentWorkspaceSiteWfoStatus = {
|
|
8540
|
+
__typename?: 'AgentWorkspaceSiteWfoStatus';
|
|
8541
|
+
hasProjectEnabledWfo: Scalars['Boolean']['output'];
|
|
8542
|
+
};
|
|
8528
8543
|
export type AgentWorkspaceSkill = {
|
|
8529
8544
|
__typename?: 'AgentWorkspaceSkill';
|
|
8530
8545
|
assignedAgents?: Maybe<Array<AgentWorkspaceSkillAgentAssignment>>;
|
|
@@ -8604,6 +8619,7 @@ export type AgentWorkspaceSkillCreateInput = {
|
|
|
8604
8619
|
export type AgentWorkspaceSkillCreatePayload = {
|
|
8605
8620
|
__typename?: 'AgentWorkspaceSkillCreatePayload';
|
|
8606
8621
|
errors?: Maybe<Array<MutationError>>;
|
|
8622
|
+
skill?: Maybe<AgentWorkspaceSkill>;
|
|
8607
8623
|
success: Scalars['Boolean']['output'];
|
|
8608
8624
|
};
|
|
8609
8625
|
export type AgentWorkspaceSkillEdge = {
|
|
@@ -8680,6 +8696,33 @@ export declare enum AgentWorkspaceSmartRoutingDryRunStatus {
|
|
|
8680
8696
|
Running = "RUNNING",
|
|
8681
8697
|
Timeout = "TIMEOUT"
|
|
8682
8698
|
}
|
|
8699
|
+
export type AgentWorkspaceSmartRoutingDryRunTicket = {
|
|
8700
|
+
__typename?: 'AgentWorkspaceSmartRoutingDryRunTicket';
|
|
8701
|
+
groundTruthInTable: Scalars['Boolean']['output'];
|
|
8702
|
+
groundTruthServiceId?: Maybe<Scalars['String']['output']>;
|
|
8703
|
+
issueId: Scalars['ID']['output'];
|
|
8704
|
+
label: AgentWorkspaceSmartRoutingRoutingOutcomeLabel;
|
|
8705
|
+
occurredAt: Scalars['DateTime']['output'];
|
|
8706
|
+
predictedServiceId?: Maybe<Scalars['String']['output']>;
|
|
8707
|
+
};
|
|
8708
|
+
export type AgentWorkspaceSmartRoutingDryRunTicketsInput = {
|
|
8709
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
8710
|
+
cloudId: Scalars['ID']['input'];
|
|
8711
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8712
|
+
labels?: InputMaybe<Array<AgentWorkspaceSmartRoutingRoutingOutcomeLabel>>;
|
|
8713
|
+
projectKey: Scalars['String']['input'];
|
|
8714
|
+
runId: Scalars['ID']['input'];
|
|
8715
|
+
};
|
|
8716
|
+
export type AgentWorkspaceSmartRoutingDryRunTicketsPageInfo = {
|
|
8717
|
+
__typename?: 'AgentWorkspaceSmartRoutingDryRunTicketsPageInfo';
|
|
8718
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
8719
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
8720
|
+
};
|
|
8721
|
+
export type AgentWorkspaceSmartRoutingDryRunTicketsPayload = {
|
|
8722
|
+
__typename?: 'AgentWorkspaceSmartRoutingDryRunTicketsPayload';
|
|
8723
|
+
pageInfo: AgentWorkspaceSmartRoutingDryRunTicketsPageInfo;
|
|
8724
|
+
tickets: Array<AgentWorkspaceSmartRoutingDryRunTicket>;
|
|
8725
|
+
};
|
|
8683
8726
|
export type AgentWorkspaceSmartRoutingPerServiceStat = {
|
|
8684
8727
|
__typename?: 'AgentWorkspaceSmartRoutingPerServiceStat';
|
|
8685
8728
|
covered: Scalars['Boolean']['output'];
|
|
@@ -8690,6 +8733,13 @@ export type AgentWorkspaceSmartRoutingPerServiceStat = {
|
|
|
8690
8733
|
trueNegatives: Scalars['Int']['output'];
|
|
8691
8734
|
truePositives: Scalars['Int']['output'];
|
|
8692
8735
|
};
|
|
8736
|
+
export declare enum AgentWorkspaceSmartRoutingRoutingOutcomeLabel {
|
|
8737
|
+
Excluded = "EXCLUDED",
|
|
8738
|
+
FalseNegative = "FALSE_NEGATIVE",
|
|
8739
|
+
FalsePositive = "FALSE_POSITIVE",
|
|
8740
|
+
TrueNegative = "TRUE_NEGATIVE",
|
|
8741
|
+
TruePositive = "TRUE_POSITIVE"
|
|
8742
|
+
}
|
|
8693
8743
|
export declare enum AgentWorkspaceSmartRoutingServiceFieldType {
|
|
8694
8744
|
AffectedServices = "AFFECTED_SERVICES",
|
|
8695
8745
|
Asset = "ASSET",
|
|
@@ -11466,6 +11516,7 @@ export type AssetsBundleInstantiationResult = AssetsBundleInstantiation | QueryE
|
|
|
11466
11516
|
export type AssetsBundleResult = AssetsBundle | QueryError;
|
|
11467
11517
|
export declare enum AssetsBundleType {
|
|
11468
11518
|
Cdm = "CDM",
|
|
11519
|
+
Foundations = "FOUNDATIONS",
|
|
11469
11520
|
Ham = "HAM",
|
|
11470
11521
|
Osc = "OSC"
|
|
11471
11522
|
}
|
|
@@ -11622,11 +11673,6 @@ export type AssetsDmBigfixDefaultQueryResponse = {
|
|
|
11622
11673
|
isSuccessful: Scalars['Boolean']['output'];
|
|
11623
11674
|
query: Scalars['String']['output'];
|
|
11624
11675
|
};
|
|
11625
|
-
export type AssetsDmChangeDataSourceStatusArgs = {
|
|
11626
|
-
cloudId: Scalars['ID']['input'];
|
|
11627
|
-
input: AssetsDmChangeDataSourceStatusInput;
|
|
11628
|
-
workspaceId: Scalars['ID']['input'];
|
|
11629
|
-
};
|
|
11630
11676
|
export type AssetsDmChangeDataSourceStatusInput = {
|
|
11631
11677
|
dataSourceId: Scalars['ID']['input'];
|
|
11632
11678
|
status: AssetsDmDataSourceStatus;
|
|
@@ -11740,16 +11786,8 @@ export type AssetsDmCreateDataDictionaryGroupValueResponse = {
|
|
|
11740
11786
|
isSuccessful: Scalars['Boolean']['output'];
|
|
11741
11787
|
message: Scalars['String']['output'];
|
|
11742
11788
|
};
|
|
11743
|
-
export type AssetsDmCreateDataSourceArgs = {
|
|
11744
|
-
cloudId: Scalars['ID']['input'];
|
|
11745
|
-
input: AssetsDmCreateDataSourceInput;
|
|
11746
|
-
workspaceId: Scalars['ID']['input'];
|
|
11747
|
-
};
|
|
11748
11789
|
export type AssetsDmCreateDataSourceInput = {
|
|
11749
|
-
dataSourceTypeId: Scalars['ID']['input'];
|
|
11750
11790
|
enabled: Scalars['Boolean']['input'];
|
|
11751
|
-
name: Scalars['String']['input'];
|
|
11752
|
-
objectId: Scalars['ID']['input'];
|
|
11753
11791
|
priority: Scalars['Int']['input'];
|
|
11754
11792
|
refreshGap: Scalars['Int']['input'];
|
|
11755
11793
|
tableName: Scalars['String']['input'];
|
|
@@ -11802,19 +11840,6 @@ export type AssetsDmCreateObjectAttributeResponse = {
|
|
|
11802
11840
|
name?: Maybe<Scalars['String']['output']>;
|
|
11803
11841
|
objectAttributeId?: Maybe<Scalars['ID']['output']>;
|
|
11804
11842
|
};
|
|
11805
|
-
export declare enum AssetsDmDataDictionaryColumnName {
|
|
11806
|
-
ComputeDictionaryId = "computeDictionaryId",
|
|
11807
|
-
DestinationObjectAttributeId = "destinationObjectAttributeId",
|
|
11808
|
-
DmComputeDictionaryDate = "dmComputeDictionaryDate",
|
|
11809
|
-
DmComputeDictionaryId = "dmComputeDictionaryId",
|
|
11810
|
-
Name = "name",
|
|
11811
|
-
ObjectId = "objectId",
|
|
11812
|
-
Priority = "priority",
|
|
11813
|
-
Scope = "scope",
|
|
11814
|
-
SourceObjectAttributeId = "sourceObjectAttributeId",
|
|
11815
|
-
SourceObjectAttributeId2 = "sourceObjectAttributeId2",
|
|
11816
|
-
TenantId = "tenantId"
|
|
11817
|
-
}
|
|
11818
11843
|
export type AssetsDmDataDictionaryFilter = {
|
|
11819
11844
|
columnName: AssetsDmDataDictionaryFilterColumn;
|
|
11820
11845
|
value: Scalars['String']['input'];
|
|
@@ -11878,7 +11903,6 @@ export type AssetsDmDataDictionaryRow = {
|
|
|
11878
11903
|
destinationObjectAttributeId: Scalars['ID']['output'];
|
|
11879
11904
|
dmComputeDictionaryDate: Scalars['String']['output'];
|
|
11880
11905
|
dmComputeDictionaryId?: Maybe<Scalars['ID']['output']>;
|
|
11881
|
-
latestDictionaryUpdateDate?: Maybe<Scalars['String']['output']>;
|
|
11882
11906
|
name: Scalars['String']['output'];
|
|
11883
11907
|
objectId: Scalars['ID']['output'];
|
|
11884
11908
|
priority: Scalars['Int']['output'];
|
|
@@ -11923,11 +11947,6 @@ export type AssetsDmDataSource = {
|
|
|
11923
11947
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
11924
11948
|
statusText?: Maybe<Scalars['String']['output']>;
|
|
11925
11949
|
};
|
|
11926
|
-
export type AssetsDmDataSourceArgs = {
|
|
11927
|
-
cloudId: Scalars['ID']['input'];
|
|
11928
|
-
dataSourceId: Scalars['ID']['input'];
|
|
11929
|
-
workspaceId: Scalars['ID']['input'];
|
|
11930
|
-
};
|
|
11931
11950
|
export type AssetsDmDataSourceCleansingCleansingExecutive = {
|
|
11932
11951
|
__typename?: 'AssetsDMDataSourceCleansingCleansingExecutive';
|
|
11933
11952
|
cleansingExecutiveId: Scalars['ID']['output'];
|
|
@@ -12185,13 +12204,6 @@ export type AssetsDmDataSourceDetail = {
|
|
|
12185
12204
|
tableName: Scalars['String']['output'];
|
|
12186
12205
|
tenantId: Scalars['ID']['output'];
|
|
12187
12206
|
};
|
|
12188
|
-
export type AssetsDmDataSourceDetailResponse = {
|
|
12189
|
-
__typename?: 'AssetsDMDataSourceDetailResponse';
|
|
12190
|
-
dataSource?: Maybe<AssetsDmDataSourceDetail>;
|
|
12191
|
-
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
12192
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
12193
|
-
success: Scalars['Boolean']['output'];
|
|
12194
|
-
};
|
|
12195
12207
|
export type AssetsDmDataSourceDetails = {
|
|
12196
12208
|
__typename?: 'AssetsDMDataSourceDetails';
|
|
12197
12209
|
canBeScheduled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -12570,12 +12582,6 @@ export type AssetsDmDataSourcesList = {
|
|
|
12570
12582
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
12571
12583
|
totalCount: Scalars['Int']['output'];
|
|
12572
12584
|
};
|
|
12573
|
-
export type AssetsDmDataSourcesListArgs = {
|
|
12574
|
-
cloudId: Scalars['ID']['input'];
|
|
12575
|
-
search?: InputMaybe<AssetsDmDataSourceSearch>;
|
|
12576
|
-
sortBy?: InputMaybe<AssetsDmDataSourceSort>;
|
|
12577
|
-
workspaceId: Scalars['ID']['input'];
|
|
12578
|
-
};
|
|
12579
12585
|
export type AssetsDmDateFormatMutationResponse = {
|
|
12580
12586
|
__typename?: 'AssetsDMDateFormatMutationResponse';
|
|
12581
12587
|
isSuccessful: Scalars['Boolean']['output'];
|
|
@@ -12677,7 +12683,6 @@ export type AssetsDmDefaultAttributeMappingRow = {
|
|
|
12677
12683
|
isPrimaryKey: Scalars['Boolean']['output'];
|
|
12678
12684
|
isSecondaryKey: Scalars['Boolean']['output'];
|
|
12679
12685
|
objectAttributeId: Scalars['ID']['output'];
|
|
12680
|
-
objectClassId: Scalars['ID']['output'];
|
|
12681
12686
|
sourceColumn: Scalars['String']['output'];
|
|
12682
12687
|
};
|
|
12683
12688
|
export type AssetsDmDefaultAttributeMappingSortBy = {
|
|
@@ -12778,11 +12783,6 @@ export type AssetsDmDeleteDataDictionaryResponse = {
|
|
|
12778
12783
|
isSuccessful: Scalars['Boolean']['output'];
|
|
12779
12784
|
message: Scalars['String']['output'];
|
|
12780
12785
|
};
|
|
12781
|
-
export type AssetsDmDeleteDataSourceArgs = {
|
|
12782
|
-
cloudId: Scalars['ID']['input'];
|
|
12783
|
-
input: AssetsDmDeleteDataSourceInput;
|
|
12784
|
-
workspaceId: Scalars['ID']['input'];
|
|
12785
|
-
};
|
|
12786
12786
|
export type AssetsDmDeleteDataSourceConfigPayload = {
|
|
12787
12787
|
__typename?: 'AssetsDMDeleteDataSourceConfigPayload';
|
|
12788
12788
|
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -13395,11 +13395,6 @@ export type AssetsDmObjectsListExportRequestCreateResponse = {
|
|
|
13395
13395
|
isSuccessful: Scalars['Boolean']['output'];
|
|
13396
13396
|
message: Scalars['String']['output'];
|
|
13397
13397
|
};
|
|
13398
|
-
export declare enum AssetsDmObjectsListIconType {
|
|
13399
|
-
Failed = "FAILED",
|
|
13400
|
-
Success = "SUCCESS",
|
|
13401
|
-
Unknown = "UNKNOWN"
|
|
13402
|
-
}
|
|
13403
13398
|
export type AssetsDmObjectsListPageInfo = {
|
|
13404
13399
|
__typename?: 'AssetsDMObjectsListPageInfo';
|
|
13405
13400
|
currentPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
@@ -13561,8 +13556,8 @@ export type AssetsDmQualysReport = {
|
|
|
13561
13556
|
};
|
|
13562
13557
|
export type AssetsDmRawDataFilter = {
|
|
13563
13558
|
__typename?: 'AssetsDMRawDataFilter';
|
|
13564
|
-
name
|
|
13565
|
-
type
|
|
13559
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13560
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
13566
13561
|
value?: Maybe<Scalars['String']['output']>;
|
|
13567
13562
|
valueTo?: Maybe<Scalars['String']['output']>;
|
|
13568
13563
|
};
|
|
@@ -13732,11 +13727,6 @@ export type AssetsDmUpdateCleansingReasonResponse = {
|
|
|
13732
13727
|
isSuccessful: Scalars['Boolean']['output'];
|
|
13733
13728
|
message: Scalars['String']['output'];
|
|
13734
13729
|
};
|
|
13735
|
-
export type AssetsDmUpdateDataSourceArgs = {
|
|
13736
|
-
cloudId: Scalars['ID']['input'];
|
|
13737
|
-
input: AssetsDmUpdateDataSourceInput;
|
|
13738
|
-
workspaceId: Scalars['ID']['input'];
|
|
13739
|
-
};
|
|
13740
13730
|
export type AssetsDmUpdateDataSourceInput = {
|
|
13741
13731
|
dataSourceId: Scalars['ID']['input'];
|
|
13742
13732
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -13751,11 +13741,6 @@ export type AssetsDmUpdateDataSourcePayload = {
|
|
|
13751
13741
|
message?: Maybe<Scalars['String']['output']>;
|
|
13752
13742
|
success: Scalars['Boolean']['output'];
|
|
13753
13743
|
};
|
|
13754
|
-
export type AssetsDmUpdateDataSourcePriorityArgs = {
|
|
13755
|
-
cloudId: Scalars['ID']['input'];
|
|
13756
|
-
input: AssetsDmUpdateDataSourcePriorityInput;
|
|
13757
|
-
workspaceId: Scalars['ID']['input'];
|
|
13758
|
-
};
|
|
13759
13744
|
export type AssetsDmUpdateDataSourcePriorityInput = {
|
|
13760
13745
|
dataSourceId: Scalars['ID']['input'];
|
|
13761
13746
|
increase: Scalars['Boolean']['input'];
|
|
@@ -14107,6 +14092,7 @@ export type AssetsProjectAttribute = AssetsObjectTypeAttribute & {
|
|
|
14107
14092
|
name?: Maybe<Scalars['String']['output']>;
|
|
14108
14093
|
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
14109
14094
|
position?: Maybe<Scalars['Int']['output']>;
|
|
14095
|
+
sitePickerEntry?: Maybe<AssetsSitePickerEntry>;
|
|
14110
14096
|
};
|
|
14111
14097
|
export type AssetsProjectAttributeOnObject = AssetsAttributeOnObject & {
|
|
14112
14098
|
__typename?: 'AssetsProjectAttributeOnObject';
|
|
@@ -14184,6 +14170,12 @@ export type AssetsServiceObject = AssetsObjectNode & Node & {
|
|
|
14184
14170
|
export type AssetsServiceObjectAttributesArgs = {
|
|
14185
14171
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
14186
14172
|
};
|
|
14173
|
+
export type AssetsSitePickerEntry = {
|
|
14174
|
+
__typename?: 'AssetsSitePickerEntry';
|
|
14175
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14176
|
+
displayUrl?: Maybe<Scalars['String']['output']>;
|
|
14177
|
+
siteCloudId?: Maybe<Scalars['String']['output']>;
|
|
14178
|
+
};
|
|
14187
14179
|
export type AssetsSpaceAttribute = AssetsObjectTypeAttribute & {
|
|
14188
14180
|
__typename?: 'AssetsSpaceAttribute';
|
|
14189
14181
|
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -14736,6 +14728,7 @@ export type AssetsVerticalDepreciationRuleAssetTypeInput = {
|
|
|
14736
14728
|
objSchemaId: Scalars['ID']['input'];
|
|
14737
14729
|
objTypeId: Scalars['ID']['input'];
|
|
14738
14730
|
};
|
|
14731
|
+
export type AssetsVerticalDepreciationRuleByAssetTypesTrackingResult = AssetsVerticalDepreciationRule | QueryError;
|
|
14739
14732
|
export type AssetsVerticalDepreciationRuleConnection = {
|
|
14740
14733
|
__typename?: 'AssetsVerticalDepreciationRuleConnection';
|
|
14741
14734
|
edges: Array<AssetsVerticalDepreciationRuleEdge>;
|
|
@@ -17015,6 +17008,83 @@ export type CcpCompareOfferingsHighlightedOfferingInput = {
|
|
|
17015
17008
|
export type CcpCompareOfferingsInput = {
|
|
17016
17009
|
highlightedOffering?: InputMaybe<CcpCompareOfferingsHighlightedOfferingInput>;
|
|
17017
17010
|
};
|
|
17011
|
+
export type CcpConcession = Node & {
|
|
17012
|
+
__typename?: 'CcpConcession';
|
|
17013
|
+
applicationReason?: Maybe<CcpConcessionApplicationReasonWithCustomisable>;
|
|
17014
|
+
benefits?: Maybe<Array<Maybe<CcpConcessionBenefit>>>;
|
|
17015
|
+
catalogAccountKey?: Maybe<Scalars['ID']['output']>;
|
|
17016
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
17017
|
+
eligibilityRules?: Maybe<CcpConcessionEligibilityRule>;
|
|
17018
|
+
eligibleWindow?: Maybe<CcpConcessionEligibleWindow>;
|
|
17019
|
+
id: Scalars['ID']['output'];
|
|
17020
|
+
promotionCodeConfig?: Maybe<CcpConcessionPromotionCodeConfig>;
|
|
17021
|
+
status?: Maybe<CcpConcessionStatus>;
|
|
17022
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
17023
|
+
type?: Maybe<CcpConcessionType>;
|
|
17024
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
17025
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
17026
|
+
};
|
|
17027
|
+
export declare enum CcpConcessionAllowedRedemptionMethod {
|
|
17028
|
+
Promotion = "PROMOTION",
|
|
17029
|
+
PromotionCode = "PROMOTION_CODE"
|
|
17030
|
+
}
|
|
17031
|
+
export type CcpConcessionApplicationReasonWithCustomisable = {
|
|
17032
|
+
__typename?: 'CcpConcessionApplicationReasonWithCustomisable';
|
|
17033
|
+
customisable?: Maybe<CcpCustomisableApplicationReason>;
|
|
17034
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
17035
|
+
readableName?: Maybe<Scalars['String']['output']>;
|
|
17036
|
+
};
|
|
17037
|
+
export type CcpConcessionBenefit = {
|
|
17038
|
+
__typename?: 'CcpConcessionBenefit';
|
|
17039
|
+
benefitType?: Maybe<CcpPromotionBenefitType>;
|
|
17040
|
+
customisable?: Maybe<CcpPromotionBenefitCustomisable>;
|
|
17041
|
+
duration?: Maybe<CcpDuration>;
|
|
17042
|
+
iterations?: Maybe<Scalars['Int']['output']>;
|
|
17043
|
+
subBenefitType?: Maybe<CcpPromotionSubBenefitType>;
|
|
17044
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
17045
|
+
values?: Maybe<Array<Maybe<CcpBenefitValue>>>;
|
|
17046
|
+
};
|
|
17047
|
+
export type CcpConcessionEligibilityRule = {
|
|
17048
|
+
__typename?: 'CcpConcessionEligibilityRule';
|
|
17049
|
+
currencies?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
17050
|
+
pricingType?: Maybe<Array<Maybe<CcpPromotionEligibilityPricingType>>>;
|
|
17051
|
+
ruleCondition?: Maybe<CcpPromotionAndOrRuleCondition>;
|
|
17052
|
+
};
|
|
17053
|
+
export type CcpConcessionEligibleWindow = {
|
|
17054
|
+
__typename?: 'CcpConcessionEligibleWindow';
|
|
17055
|
+
endTime?: Maybe<Scalars['Float']['output']>;
|
|
17056
|
+
startTime?: Maybe<Scalars['Float']['output']>;
|
|
17057
|
+
};
|
|
17058
|
+
export type CcpConcessionPromotionCodeConfig = {
|
|
17059
|
+
__typename?: 'CcpConcessionPromotionCodeConfig';
|
|
17060
|
+
allowedRedemptionMethods?: Maybe<Array<Maybe<CcpConcessionAllowedRedemptionMethod>>>;
|
|
17061
|
+
maxRedemptions?: Maybe<Scalars['Int']['output']>;
|
|
17062
|
+
promotionCodeType?: Maybe<CcpConcessionPromotionCodeType>;
|
|
17063
|
+
};
|
|
17064
|
+
export declare enum CcpConcessionPromotionCodeType {
|
|
17065
|
+
None = "NONE",
|
|
17066
|
+
Shared = "SHARED",
|
|
17067
|
+
Unique = "UNIQUE"
|
|
17068
|
+
}
|
|
17069
|
+
export declare enum CcpConcessionStatus {
|
|
17070
|
+
Active = "ACTIVE",
|
|
17071
|
+
Cancelled = "CANCELLED",
|
|
17072
|
+
Drafted = "DRAFTED",
|
|
17073
|
+
Expired = "EXPIRED",
|
|
17074
|
+
Inactive = "INACTIVE",
|
|
17075
|
+
Withdrawn = "WITHDRAWN"
|
|
17076
|
+
}
|
|
17077
|
+
export declare enum CcpConcessionType {
|
|
17078
|
+
DealRegistrationMargin = "DEAL_REGISTRATION_MARGIN",
|
|
17079
|
+
DiscretionaryDiscount = "DISCRETIONARY_DISCOUNT",
|
|
17080
|
+
ListPrice = "LIST_PRICE",
|
|
17081
|
+
ListPriceAdjustment = "LIST_PRICE_ADJUSTMENT",
|
|
17082
|
+
LoyaltyDiscount = "LOYALTY_DISCOUNT",
|
|
17083
|
+
PartnerDiscount = "PARTNER_DISCOUNT",
|
|
17084
|
+
PartnerMargin = "PARTNER_MARGIN",
|
|
17085
|
+
PromoCode = "PROMO_CODE",
|
|
17086
|
+
TrialExtension = "TRIAL_EXTENSION"
|
|
17087
|
+
}
|
|
17018
17088
|
export type CcpConfigurePaymentMethodExperienceCapability = CommerceExperienceCapability & {
|
|
17019
17089
|
__typename?: 'CcpConfigurePaymentMethodExperienceCapability';
|
|
17020
17090
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -21279,6 +21349,7 @@ export type CommerceExpCcpTransactionAccount = {
|
|
|
21279
21349
|
paginatedInvoiceGroupsResult?: Maybe<CommerceExpInvoiceGroupResultConnection>;
|
|
21280
21350
|
paymentMethods?: Maybe<Array<Maybe<CommerceExpPaymentMethod>>>;
|
|
21281
21351
|
quotes?: Maybe<Array<Maybe<CommerceExpCcpQuote>>>;
|
|
21352
|
+
quotes2?: Maybe<CommerceExpQuoteConnection>;
|
|
21282
21353
|
shipToParties?: Maybe<Array<Maybe<CommerceExpShipToParty>>>;
|
|
21283
21354
|
slug?: Maybe<Scalars['String']['output']>;
|
|
21284
21355
|
status?: Maybe<CommerceExpTransactionAccountStatus>;
|
|
@@ -21314,6 +21385,14 @@ export type CommerceExpCcpTransactionAccountQuotesArgs = {
|
|
|
21314
21385
|
filter?: InputMaybe<CommerceExpQuoteFilter>;
|
|
21315
21386
|
sort?: InputMaybe<Array<CommerceExpSort>>;
|
|
21316
21387
|
};
|
|
21388
|
+
export type CommerceExpCcpTransactionAccountQuotes2Args = {
|
|
21389
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
21390
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
21391
|
+
filter?: InputMaybe<CommerceExpQuoteFilter>;
|
|
21392
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21393
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
21394
|
+
sort?: InputMaybe<Array<CommerceExpSort>>;
|
|
21395
|
+
};
|
|
21317
21396
|
export type CommerceExpChargeDetails = {
|
|
21318
21397
|
__typename?: 'CommerceExpChargeDetails';
|
|
21319
21398
|
chargeQuantities?: Maybe<Array<Maybe<CommerceExpChargeQuantity>>>;
|
|
@@ -23376,6 +23455,16 @@ export type CommerceExpPurchaseOrderInput = {
|
|
|
23376
23455
|
number: Scalars['String']['input'];
|
|
23377
23456
|
oneTimeUse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23378
23457
|
};
|
|
23458
|
+
export type CommerceExpQuoteConnection = {
|
|
23459
|
+
__typename?: 'CommerceExpQuoteConnection';
|
|
23460
|
+
edges?: Maybe<Array<Maybe<CommerceExpQuoteEdge>>>;
|
|
23461
|
+
pageInfo: PageInfo;
|
|
23462
|
+
};
|
|
23463
|
+
export type CommerceExpQuoteEdge = {
|
|
23464
|
+
__typename?: 'CommerceExpQuoteEdge';
|
|
23465
|
+
cursor: Scalars['String']['output'];
|
|
23466
|
+
node?: Maybe<CommerceExpCcpQuote>;
|
|
23467
|
+
};
|
|
23379
23468
|
export type CommerceExpQuoteFilter = {
|
|
23380
23469
|
status?: InputMaybe<CommerceExpQuoteStatusFilter>;
|
|
23381
23470
|
};
|
|
@@ -37228,11 +37317,15 @@ export type ContentBody = {
|
|
|
37228
37317
|
links?: Maybe<LinksContextBase>;
|
|
37229
37318
|
macroRenderedOutput?: Maybe<FormattedBody>;
|
|
37230
37319
|
macroRenderedRepresentation?: Maybe<Scalars['String']['output']>;
|
|
37320
|
+
mediaItems?: Maybe<Array<Maybe<MediaItem>>>;
|
|
37231
37321
|
mediaToken?: Maybe<EmbeddedMediaToken>;
|
|
37232
37322
|
representation?: Maybe<Scalars['String']['output']>;
|
|
37233
37323
|
value?: Maybe<Scalars['String']['output']>;
|
|
37234
37324
|
webresource?: Maybe<WebResourceDependencies>;
|
|
37235
37325
|
};
|
|
37326
|
+
export type ContentBodyMediaItemsArgs = {
|
|
37327
|
+
cloudId: Scalars['ID']['input'];
|
|
37328
|
+
};
|
|
37236
37329
|
export type ContentBodyInput = {
|
|
37237
37330
|
representation: Scalars['String']['input'];
|
|
37238
37331
|
value: Scalars['String']['input'];
|
|
@@ -37720,6 +37813,7 @@ export type ConvoAiConfluenceSpaceRecommendation = {
|
|
|
37720
37813
|
export type ConvoAiConversationMessage = ConvoAiAgentMessage & {
|
|
37721
37814
|
__typename?: 'ConvoAiConversationMessage';
|
|
37722
37815
|
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
37816
|
+
agentSessionState?: Maybe<Scalars['String']['output']>;
|
|
37723
37817
|
artifacts?: Maybe<Array<ConvoAiMessageArtifact>>;
|
|
37724
37818
|
authorId?: Maybe<Scalars['String']['output']>;
|
|
37725
37819
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
@@ -37964,6 +38058,69 @@ export declare enum ConvoAiRelatedLinksMode {
|
|
|
37964
38058
|
ThirdParty = "THIRD_PARTY",
|
|
37965
38059
|
Unified = "UNIFIED"
|
|
37966
38060
|
}
|
|
38061
|
+
export declare enum ConvoAiSearchAgentEffort {
|
|
38062
|
+
Agentic = "AGENTIC",
|
|
38063
|
+
Light = "LIGHT"
|
|
38064
|
+
}
|
|
38065
|
+
export type ConvoAiSearchAgentInput = {
|
|
38066
|
+
cloudId: Scalars['ID']['input'];
|
|
38067
|
+
effort?: InputMaybe<ConvoAiSearchAgentEffort>;
|
|
38068
|
+
maxSources?: InputMaybe<Scalars['Int']['input']>;
|
|
38069
|
+
query: Scalars['String']['input'];
|
|
38070
|
+
responseMode?: InputMaybe<ConvoAiSearchAgentResponseMode>;
|
|
38071
|
+
sources?: InputMaybe<Array<ConvoAiSearchAgentSource>>;
|
|
38072
|
+
userQuery?: InputMaybe<Scalars['String']['input']>;
|
|
38073
|
+
};
|
|
38074
|
+
export type ConvoAiSearchAgentPayload = {
|
|
38075
|
+
__typename?: 'ConvoAiSearchAgentPayload';
|
|
38076
|
+
answer?: Maybe<Scalars['String']['output']>;
|
|
38077
|
+
errors?: Maybe<Array<Maybe<QueryError>>>;
|
|
38078
|
+
model?: Maybe<Scalars['String']['output']>;
|
|
38079
|
+
ranking?: Maybe<Array<Maybe<ConvoAiSearchAgentRankedDocument>>>;
|
|
38080
|
+
sources?: Maybe<Array<Maybe<ConvoAiSearchAgentSourceResult>>>;
|
|
38081
|
+
timing?: Maybe<ConvoAiSearchAgentTiming>;
|
|
38082
|
+
};
|
|
38083
|
+
export type ConvoAiSearchAgentRankedDocument = {
|
|
38084
|
+
__typename?: 'ConvoAiSearchAgentRankedDocument';
|
|
38085
|
+
coverageOfSubquestions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
38086
|
+
evidenceSnippets?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
38087
|
+
rank?: Maybe<Scalars['Int']['output']>;
|
|
38088
|
+
scoreTotal?: Maybe<Scalars['Int']['output']>;
|
|
38089
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
38090
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
38091
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
38092
|
+
versionStatus?: Maybe<Scalars['String']['output']>;
|
|
38093
|
+
};
|
|
38094
|
+
export declare enum ConvoAiSearchAgentResponseMode {
|
|
38095
|
+
AnswerAndSources = "ANSWER_AND_SOURCES",
|
|
38096
|
+
SourcesOnly = "SOURCES_ONLY"
|
|
38097
|
+
}
|
|
38098
|
+
export declare enum ConvoAiSearchAgentSource {
|
|
38099
|
+
Confluence = "CONFLUENCE",
|
|
38100
|
+
GoogleDocs = "GOOGLE_DOCS",
|
|
38101
|
+
Slack = "SLACK",
|
|
38102
|
+
ThirdParty = "THIRD_PARTY",
|
|
38103
|
+
Townsquare = "TOWNSQUARE"
|
|
38104
|
+
}
|
|
38105
|
+
export type ConvoAiSearchAgentSourceResult = {
|
|
38106
|
+
__typename?: 'ConvoAiSearchAgentSourceResult';
|
|
38107
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
38108
|
+
entityType?: Maybe<Scalars['String']['output']>;
|
|
38109
|
+
lastModified?: Maybe<Scalars['String']['output']>;
|
|
38110
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
38111
|
+
rank?: Maybe<Scalars['Int']['output']>;
|
|
38112
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
38113
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
38114
|
+
};
|
|
38115
|
+
export type ConvoAiSearchAgentTiming = {
|
|
38116
|
+
__typename?: 'ConvoAiSearchAgentTiming';
|
|
38117
|
+
iterations?: Maybe<Scalars['Int']['output']>;
|
|
38118
|
+
llmCallsCount?: Maybe<Scalars['Int']['output']>;
|
|
38119
|
+
llmCallsMs?: Maybe<Scalars['Long']['output']>;
|
|
38120
|
+
overallMs?: Maybe<Scalars['Long']['output']>;
|
|
38121
|
+
toolExecutionsCount?: Maybe<Scalars['Int']['output']>;
|
|
38122
|
+
toolExecutionsMs?: Maybe<Scalars['Long']['output']>;
|
|
38123
|
+
};
|
|
37967
38124
|
export type ConvoAiSkill = {
|
|
37968
38125
|
__typename?: 'ConvoAiSkill';
|
|
37969
38126
|
category?: Maybe<Scalars['String']['output']>;
|
|
@@ -38015,6 +38172,7 @@ export type ConvoAiThirdPartyRelatedLink = {
|
|
|
38015
38172
|
};
|
|
38016
38173
|
export type ConvoAiTraceMessage = ConvoAiAgentMessage & {
|
|
38017
38174
|
__typename?: 'ConvoAiTraceMessage';
|
|
38175
|
+
agentSessionState?: Maybe<Scalars['String']['output']>;
|
|
38018
38176
|
contentIsMarkdown?: Maybe<Scalars['Boolean']['output']>;
|
|
38019
38177
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
38020
38178
|
messageTemplate: Scalars['String']['output'];
|
|
@@ -38378,7 +38536,7 @@ export type CplsCopyContributorToWorksPayload = Payload & {
|
|
|
38378
38536
|
errors?: Maybe<Array<MutationError>>;
|
|
38379
38537
|
success: Scalars['Boolean']['output'];
|
|
38380
38538
|
workContributorAssociationsByScope?: Maybe<Array<CplsWorkContributorEdge>>;
|
|
38381
|
-
worksByScope?: Maybe<Array<
|
|
38539
|
+
worksByScope?: Maybe<Array<CplsWorkEdge>>;
|
|
38382
38540
|
};
|
|
38383
38541
|
export type CplsCopyContributorToWorksPayloadWorkContributorAssociationsByScopeArgs = {
|
|
38384
38542
|
scopeId: Scalars['ID']['input'];
|
|
@@ -38397,7 +38555,7 @@ export type CplsCopyWorkToContributorsInput = {
|
|
|
38397
38555
|
export type CplsCopyWorkToContributorsPayload = Payload & {
|
|
38398
38556
|
__typename?: 'CplsCopyWorkToContributorsPayload';
|
|
38399
38557
|
contributorWorkAssociationsByScope?: Maybe<Array<CplsContributorWorkEdge>>;
|
|
38400
|
-
contributorsByScope?: Maybe<Array<
|
|
38558
|
+
contributorsByScope?: Maybe<Array<CplsContributorEdge>>;
|
|
38401
38559
|
errors?: Maybe<Array<MutationError>>;
|
|
38402
38560
|
success: Scalars['Boolean']['output'];
|
|
38403
38561
|
};
|
|
@@ -39730,6 +39888,47 @@ export type CsmAiAgentToneInput = {
|
|
|
39730
39888
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
39731
39889
|
type: Scalars['String']['input'];
|
|
39732
39890
|
};
|
|
39891
|
+
export type CsmAiAgentTool = {
|
|
39892
|
+
__typename?: 'CsmAiAgentTool';
|
|
39893
|
+
configuration?: Maybe<CsmAiAgentToolConfiguration>;
|
|
39894
|
+
definitionId: Scalars['String']['output'];
|
|
39895
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
39896
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
39897
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
39898
|
+
id: Scalars['ID']['output'];
|
|
39899
|
+
isResolved: Scalars['Boolean']['output'];
|
|
39900
|
+
source: CsmAiAgentToolSource;
|
|
39901
|
+
};
|
|
39902
|
+
export type CsmAiAgentToolConfiguration = {
|
|
39903
|
+
__typename?: 'CsmAiAgentToolConfiguration';
|
|
39904
|
+
properties?: Maybe<Array<CsmAiAgentToolPropertyConfiguration>>;
|
|
39905
|
+
requiresConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
39906
|
+
};
|
|
39907
|
+
export type CsmAiAgentToolConfigurationInput = {
|
|
39908
|
+
properties?: InputMaybe<Array<CsmAiAgentToolPropertyConfigurationInput>>;
|
|
39909
|
+
requiresConfirmation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39910
|
+
};
|
|
39911
|
+
export type CsmAiAgentToolPropertyConfiguration = {
|
|
39912
|
+
__typename?: 'CsmAiAgentToolPropertyConfiguration';
|
|
39913
|
+
allowedValues?: Maybe<Array<Scalars['String']['output']>>;
|
|
39914
|
+
id: Scalars['String']['output'];
|
|
39915
|
+
};
|
|
39916
|
+
export type CsmAiAgentToolPropertyConfigurationInput = {
|
|
39917
|
+
allowedValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
39918
|
+
id: Scalars['String']['input'];
|
|
39919
|
+
};
|
|
39920
|
+
export type CsmAiAgentToolResult = CsmAiAgentTool | QueryError;
|
|
39921
|
+
export type CsmAiAgentToolSelectionInput = {
|
|
39922
|
+
definitionId: Scalars['String']['input'];
|
|
39923
|
+
source: CsmAiAgentToolSource;
|
|
39924
|
+
};
|
|
39925
|
+
export declare enum CsmAiAgentToolSource {
|
|
39926
|
+
ConvoAi = "CONVO_AI",
|
|
39927
|
+
Forge = "FORGE",
|
|
39928
|
+
IntegrationsService = "INTEGRATIONS_SERVICE",
|
|
39929
|
+
McpServer = "MCP_SERVER",
|
|
39930
|
+
McpTool = "MCP_TOOL"
|
|
39931
|
+
}
|
|
39733
39932
|
export type CsmAiAgentVersion = {
|
|
39734
39933
|
__typename?: 'CsmAiAgentVersion';
|
|
39735
39934
|
actions?: Maybe<Array<CsmAiActionResult>>;
|
|
@@ -39738,6 +39937,7 @@ export type CsmAiAgentVersion = {
|
|
|
39738
39937
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfigResult>>;
|
|
39739
39938
|
knowledgeCollection?: Maybe<CsmAiKnowledgeCollectionResult>;
|
|
39740
39939
|
publishedAt?: Maybe<Scalars['Long']['output']>;
|
|
39940
|
+
tools?: Maybe<Array<CsmAiAgentToolResult>>;
|
|
39741
39941
|
versionId: Scalars['ID']['output'];
|
|
39742
39942
|
versionNumber?: Maybe<Scalars['Int']['output']>;
|
|
39743
39943
|
versionType?: Maybe<Scalars['String']['output']>;
|
|
@@ -40112,6 +40312,21 @@ export type CsmAiUpdateAgentPayload = Payload & {
|
|
|
40112
40312
|
errors?: Maybe<Array<MutationError>>;
|
|
40113
40313
|
success: Scalars['Boolean']['output'];
|
|
40114
40314
|
};
|
|
40315
|
+
export type CsmAiUpdateAgentToolConfigurationPayload = Payload & {
|
|
40316
|
+
__typename?: 'CsmAiUpdateAgentToolConfigurationPayload';
|
|
40317
|
+
errors?: Maybe<Array<MutationError>>;
|
|
40318
|
+
success: Scalars['Boolean']['output'];
|
|
40319
|
+
tool?: Maybe<CsmAiAgentTool>;
|
|
40320
|
+
};
|
|
40321
|
+
export type CsmAiUpdateAgentToolsInput = {
|
|
40322
|
+
tools: Array<CsmAiAgentToolSelectionInput>;
|
|
40323
|
+
};
|
|
40324
|
+
export type CsmAiUpdateAgentToolsPayload = Payload & {
|
|
40325
|
+
__typename?: 'CsmAiUpdateAgentToolsPayload';
|
|
40326
|
+
errors?: Maybe<Array<MutationError>>;
|
|
40327
|
+
success: Scalars['Boolean']['output'];
|
|
40328
|
+
tools?: Maybe<Array<CsmAiAgentTool>>;
|
|
40329
|
+
};
|
|
40115
40330
|
export type CsmAiUpdateCoachingContentInput = {
|
|
40116
40331
|
coachingContent?: InputMaybe<CsmAiAuthoredCoachingContentInput>;
|
|
40117
40332
|
coachingContentType?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -40582,6 +40797,48 @@ export declare enum CustomerServiceAiSurface {
|
|
|
40582
40797
|
CustomerProfile = "CUSTOMER_PROFILE",
|
|
40583
40798
|
OrganizationProfile = "ORGANIZATION_PROFILE"
|
|
40584
40799
|
}
|
|
40800
|
+
export type CustomerServiceAssetsAvatar = {
|
|
40801
|
+
__typename?: 'CustomerServiceAssetsAvatar';
|
|
40802
|
+
mediaClientConfig?: Maybe<CustomerServiceAssetsMediaClientConfig>;
|
|
40803
|
+
url48?: Maybe<Scalars['String']['output']>;
|
|
40804
|
+
};
|
|
40805
|
+
export type CustomerServiceAssetsFieldConfig = {
|
|
40806
|
+
__typename?: 'CustomerServiceAssetsFieldConfig';
|
|
40807
|
+
objectType: CustomerServiceAssetsFieldObjectTypeMetadata;
|
|
40808
|
+
schema: CustomerServiceAssetsFieldSchemaMetadata;
|
|
40809
|
+
};
|
|
40810
|
+
export type CustomerServiceAssetsFieldObject = {
|
|
40811
|
+
__typename?: 'CustomerServiceAssetsFieldObject';
|
|
40812
|
+
avatar?: Maybe<CustomerServiceAssetsAvatar>;
|
|
40813
|
+
id: Scalars['ID']['output'];
|
|
40814
|
+
label: Scalars['String']['output'];
|
|
40815
|
+
objectSchemaId: Scalars['ID']['output'];
|
|
40816
|
+
objectTypeId: Scalars['ID']['output'];
|
|
40817
|
+
};
|
|
40818
|
+
export type CustomerServiceAssetsFieldObjectTypeMetadata = {
|
|
40819
|
+
__typename?: 'CustomerServiceAssetsFieldObjectTypeMetadata';
|
|
40820
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
40821
|
+
icon?: Maybe<CustomerServiceAssetsObjectTypeIcon>;
|
|
40822
|
+
id: Scalars['ID']['output'];
|
|
40823
|
+
name: Scalars['String']['output'];
|
|
40824
|
+
};
|
|
40825
|
+
export type CustomerServiceAssetsFieldSchemaMetadata = {
|
|
40826
|
+
__typename?: 'CustomerServiceAssetsFieldSchemaMetadata';
|
|
40827
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
40828
|
+
id: Scalars['ID']['output'];
|
|
40829
|
+
name: Scalars['String']['output'];
|
|
40830
|
+
};
|
|
40831
|
+
export type CustomerServiceAssetsMediaClientConfig = {
|
|
40832
|
+
__typename?: 'CustomerServiceAssetsMediaClientConfig';
|
|
40833
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
40834
|
+
fileId?: Maybe<Scalars['String']['output']>;
|
|
40835
|
+
mediaBaseUrl?: Maybe<Scalars['String']['output']>;
|
|
40836
|
+
mediaJwtToken?: Maybe<Scalars['String']['output']>;
|
|
40837
|
+
};
|
|
40838
|
+
export type CustomerServiceAssetsObjectTypeIcon = {
|
|
40839
|
+
__typename?: 'CustomerServiceAssetsObjectTypeIcon';
|
|
40840
|
+
url48?: Maybe<Scalars['String']['output']>;
|
|
40841
|
+
};
|
|
40585
40842
|
export type CustomerServiceAttribute = Node & {
|
|
40586
40843
|
__typename?: 'CustomerServiceAttribute';
|
|
40587
40844
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
@@ -40634,6 +40891,7 @@ export type CustomerServiceAttributeType = {
|
|
|
40634
40891
|
options?: Maybe<Array<Scalars['String']['output']>>;
|
|
40635
40892
|
};
|
|
40636
40893
|
export declare enum CustomerServiceAttributeTypeName {
|
|
40894
|
+
AssetsObject = "ASSETS_OBJECT",
|
|
40637
40895
|
Boolean = "BOOLEAN",
|
|
40638
40896
|
Date = "DATE",
|
|
40639
40897
|
Email = "EMAIL",
|
|
@@ -40745,6 +41003,14 @@ export type CustomerServiceBrandingUpsertPayload = {
|
|
|
40745
41003
|
errors?: Maybe<Array<MutationError>>;
|
|
40746
41004
|
success: Scalars['Boolean']['output'];
|
|
40747
41005
|
};
|
|
41006
|
+
export type CustomerServiceConnectedFieldConfig = {
|
|
41007
|
+
__typename?: 'CustomerServiceConnectedFieldConfig';
|
|
41008
|
+
assetsField?: Maybe<CustomerServiceAssetsFieldConfig>;
|
|
41009
|
+
};
|
|
41010
|
+
export type CustomerServiceConnectedFieldData = {
|
|
41011
|
+
__typename?: 'CustomerServiceConnectedFieldData';
|
|
41012
|
+
assetsObjects?: Maybe<Array<CustomerServiceAssetsFieldObject>>;
|
|
41013
|
+
};
|
|
40748
41014
|
export type CustomerServiceContext = {
|
|
40749
41015
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
40750
41016
|
type: CustomerServiceContextType;
|
|
@@ -40805,6 +41071,7 @@ export type CustomerServiceCustomAttributeStyleConfigurationInput = {
|
|
|
40805
41071
|
export type CustomerServiceCustomDetail = Node & {
|
|
40806
41072
|
__typename?: 'CustomerServiceCustomDetail';
|
|
40807
41073
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
41074
|
+
connectedFieldConfig?: Maybe<CustomerServiceConnectedFieldConfig>;
|
|
40808
41075
|
editPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
|
|
40809
41076
|
id: Scalars['ID']['output'];
|
|
40810
41077
|
isDefaultField?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -40893,6 +41160,7 @@ export type CustomerServiceCustomDetailType = {
|
|
|
40893
41160
|
options?: Maybe<Array<Scalars['String']['output']>>;
|
|
40894
41161
|
};
|
|
40895
41162
|
export declare enum CustomerServiceCustomDetailTypeName {
|
|
41163
|
+
AssetsObject = "ASSETS_OBJECT",
|
|
40896
41164
|
Boolean = "BOOLEAN",
|
|
40897
41165
|
Date = "DATE",
|
|
40898
41166
|
Email = "EMAIL",
|
|
@@ -40923,6 +41191,7 @@ export type CustomerServiceCustomDetailValue = Node & {
|
|
|
40923
41191
|
__typename?: 'CustomerServiceCustomDetailValue';
|
|
40924
41192
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
40925
41193
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
41194
|
+
connectedFieldData?: Maybe<CustomerServiceConnectedFieldData>;
|
|
40926
41195
|
id: Scalars['ID']['output'];
|
|
40927
41196
|
name: Scalars['String']['output'];
|
|
40928
41197
|
platformValue?: Maybe<CustomerServicePlatformDetailValue>;
|
|
@@ -42786,6 +43055,11 @@ export type DevAiAutodevNextCurrentUsageCounts = {
|
|
|
42786
43055
|
__typename?: 'DevAiAutodevNextCurrentUsageCounts';
|
|
42787
43056
|
counts?: Maybe<Array<DevAiAutodevNextUsageStageCount>>;
|
|
42788
43057
|
};
|
|
43058
|
+
export type DevAiAutodevNextDailyCompletedWorkItemCount = {
|
|
43059
|
+
__typename?: 'DevAiAutodevNextDailyCompletedWorkItemCount';
|
|
43060
|
+
completedWorkItemCount?: Maybe<Scalars['Int']['output']>;
|
|
43061
|
+
date?: Maybe<Scalars['Date']['output']>;
|
|
43062
|
+
};
|
|
42789
43063
|
export declare enum DevAiAutodevNextDayOfWeek {
|
|
42790
43064
|
Friday = "FRIDAY",
|
|
42791
43065
|
Monday = "MONDAY",
|
|
@@ -42804,6 +43078,12 @@ export type DevAiAutodevNextDeleteWorkstreamPayload = Payload & {
|
|
|
42804
43078
|
errors?: Maybe<Array<MutationError>>;
|
|
42805
43079
|
success: Scalars['Boolean']['output'];
|
|
42806
43080
|
};
|
|
43081
|
+
export type DevAiAutodevNextGlobalDashboard = {
|
|
43082
|
+
__typename?: 'DevAiAutodevNextGlobalDashboard';
|
|
43083
|
+
activeSpaceCount?: Maybe<Scalars['Int']['output']>;
|
|
43084
|
+
completedWorkItemCounts?: Maybe<Array<DevAiAutodevNextDailyCompletedWorkItemCount>>;
|
|
43085
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
43086
|
+
};
|
|
42807
43087
|
export type DevAiAutodevNextJiraProjectAvailabilityPayload = {
|
|
42808
43088
|
__typename?: 'DevAiAutodevNextJiraProjectAvailabilityPayload';
|
|
42809
43089
|
results: Array<DevAiAutodevNextJiraProjectAvailabilityResult>;
|
|
@@ -42982,6 +43262,7 @@ export type DevAiAutodevNextWorkItem = {
|
|
|
42982
43262
|
__typename?: 'DevAiAutodevNextWorkItem';
|
|
42983
43263
|
assignedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
42984
43264
|
assignee?: Maybe<User>;
|
|
43265
|
+
classification?: Maybe<DevAiAutodevNextWorkItemClassification>;
|
|
42985
43266
|
id: Scalars['ID']['output'];
|
|
42986
43267
|
isOverdue?: Maybe<Scalars['Boolean']['output']>;
|
|
42987
43268
|
jiraIssue?: Maybe<JiraIssue>;
|
|
@@ -42991,6 +43272,21 @@ export type DevAiAutodevNextWorkItem = {
|
|
|
42991
43272
|
workItemState?: Maybe<Scalars['ID']['output']>;
|
|
42992
43273
|
workstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
42993
43274
|
};
|
|
43275
|
+
export type DevAiAutodevNextWorkItemChangeSite = {
|
|
43276
|
+
__typename?: 'DevAiAutodevNextWorkItemChangeSite';
|
|
43277
|
+
file?: Maybe<Scalars['String']['output']>;
|
|
43278
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
43279
|
+
};
|
|
43280
|
+
export type DevAiAutodevNextWorkItemClassification = {
|
|
43281
|
+
__typename?: 'DevAiAutodevNextWorkItemClassification';
|
|
43282
|
+
changeSites?: Maybe<Array<DevAiAutodevNextWorkItemChangeSite>>;
|
|
43283
|
+
clarificationQuestions?: Maybe<Array<Scalars['String']['output']>>;
|
|
43284
|
+
enrichedContext?: Maybe<DevAiAutodevNextWorkItemEnrichedContext>;
|
|
43285
|
+
feedback?: Maybe<Scalars['String']['output']>;
|
|
43286
|
+
repositories?: Maybe<Array<Scalars['String']['output']>>;
|
|
43287
|
+
status?: Maybe<Scalars['ID']['output']>;
|
|
43288
|
+
tShirtSize?: Maybe<Scalars['ID']['output']>;
|
|
43289
|
+
};
|
|
42994
43290
|
export type DevAiAutodevNextWorkItemConnection = {
|
|
42995
43291
|
__typename?: 'DevAiAutodevNextWorkItemConnection';
|
|
42996
43292
|
edges?: Maybe<Array<DevAiAutodevNextWorkItemEdge>>;
|
|
@@ -43002,6 +43298,14 @@ export type DevAiAutodevNextWorkItemEdge = {
|
|
|
43002
43298
|
cursor: Scalars['String']['output'];
|
|
43003
43299
|
node: DevAiAutodevNextWorkItem;
|
|
43004
43300
|
};
|
|
43301
|
+
export type DevAiAutodevNextWorkItemEnrichedContext = {
|
|
43302
|
+
__typename?: 'DevAiAutodevNextWorkItemEnrichedContext';
|
|
43303
|
+
notes?: Maybe<Scalars['String']['output']>;
|
|
43304
|
+
recommendedAssignees?: Maybe<Array<User>>;
|
|
43305
|
+
relatedFiles?: Maybe<Array<Scalars['String']['output']>>;
|
|
43306
|
+
relatedPrs?: Maybe<Array<Scalars['String']['output']>>;
|
|
43307
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
43308
|
+
};
|
|
43005
43309
|
export declare enum DevAiAutodevNextWorkItemState {
|
|
43006
43310
|
CompletedNoWork = "COMPLETED_NO_WORK",
|
|
43007
43311
|
DetailsRequested = "DETAILS_REQUESTED",
|
|
@@ -43118,6 +43422,20 @@ export type DevAiAutodevNextWorkstreamSweepWorkItemStateCount = {
|
|
|
43118
43422
|
count?: Maybe<Scalars['Int']['output']>;
|
|
43119
43423
|
state?: Maybe<Scalars['ID']['output']>;
|
|
43120
43424
|
};
|
|
43425
|
+
export type DevAiAutodevNextWorkstreamTaskConnection = {
|
|
43426
|
+
__typename?: 'DevAiAutodevNextWorkstreamTaskConnection';
|
|
43427
|
+
edges?: Maybe<Array<DevAiAutodevNextWorkItemEdge>>;
|
|
43428
|
+
nodes?: Maybe<Array<DevAiAutodevNextWorkItem>>;
|
|
43429
|
+
pageInfo: PageInfo;
|
|
43430
|
+
stats?: Maybe<DevAiAutodevNextWorkstreamTaskStats>;
|
|
43431
|
+
};
|
|
43432
|
+
export type DevAiAutodevNextWorkstreamTaskStats = {
|
|
43433
|
+
__typename?: 'DevAiAutodevNextWorkstreamTaskStats';
|
|
43434
|
+
needsRequirementsOverdue: Scalars['Int']['output'];
|
|
43435
|
+
needsRequirementsTotal: Scalars['Int']['output'];
|
|
43436
|
+
needsReviewOverdue: Scalars['Int']['output'];
|
|
43437
|
+
needsReviewTotal: Scalars['Int']['output'];
|
|
43438
|
+
};
|
|
43121
43439
|
export type DevAiAutofixConfiguration = {
|
|
43122
43440
|
__typename?: 'DevAiAutofixConfiguration';
|
|
43123
43441
|
autofixScans?: Maybe<DevAiAutofixScansConnection>;
|
|
@@ -48638,6 +48956,7 @@ export type ExternalSoftwareService = Node & {
|
|
|
48638
48956
|
createdBy?: Maybe<ExternalUser>;
|
|
48639
48957
|
description?: Maybe<Scalars['String']['output']>;
|
|
48640
48958
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
48959
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
48641
48960
|
environment?: Maybe<Scalars['String']['output']>;
|
|
48642
48961
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
48643
48962
|
id: Scalars['ID']['output'];
|
|
@@ -49619,6 +49938,7 @@ export type ForgeAlertsRuleFiltersData = {
|
|
|
49619
49938
|
};
|
|
49620
49939
|
export type ForgeAlertsRuleFiltersInput = {
|
|
49621
49940
|
environment: Scalars['String']['input'];
|
|
49941
|
+
isCustomMetricUseCase?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49622
49942
|
};
|
|
49623
49943
|
export type ForgeAlertsRuleFiltersResponse = {
|
|
49624
49944
|
__typename?: 'ForgeAlertsRuleFiltersResponse';
|
|
@@ -50291,6 +50611,9 @@ export type ForgeMetricsQuery = {
|
|
|
50291
50611
|
latencies: ForgeMetricsLatenciesResult;
|
|
50292
50612
|
latencyBuckets: ForgeMetricsLatenciesResult;
|
|
50293
50613
|
requestUrls: ForgeMetricsRequestUrlsResult;
|
|
50614
|
+
serviceCpuUsage: ForgeMetricsServiceCpuUsageResult;
|
|
50615
|
+
serviceInstancesCount: ForgeMetricsServiceInstancesCountResult;
|
|
50616
|
+
serviceMemoryUsage: ForgeMetricsServiceMemoryUsageResult;
|
|
50294
50617
|
sites: ForgeMetricsSitesResult;
|
|
50295
50618
|
successRate: ForgeMetricsSuccessRateResult;
|
|
50296
50619
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
@@ -50351,6 +50674,15 @@ export type ForgeMetricsQueryLatencyBucketsArgs = {
|
|
|
50351
50674
|
export type ForgeMetricsQueryRequestUrlsArgs = {
|
|
50352
50675
|
query: ForgeMetricsApiRequestQueryInput;
|
|
50353
50676
|
};
|
|
50677
|
+
export type ForgeMetricsQueryServiceCpuUsageArgs = {
|
|
50678
|
+
query: ForgeMetricsServiceQueryInput;
|
|
50679
|
+
};
|
|
50680
|
+
export type ForgeMetricsQueryServiceInstancesCountArgs = {
|
|
50681
|
+
query: ForgeMetricsServiceQueryInput;
|
|
50682
|
+
};
|
|
50683
|
+
export type ForgeMetricsQueryServiceMemoryUsageArgs = {
|
|
50684
|
+
query: ForgeMetricsServiceQueryInput;
|
|
50685
|
+
};
|
|
50354
50686
|
export type ForgeMetricsQuerySitesArgs = {
|
|
50355
50687
|
query: ForgeMetricsQueryInput;
|
|
50356
50688
|
};
|
|
@@ -50387,6 +50719,61 @@ export declare enum ForgeMetricsResolutionUnit {
|
|
|
50387
50719
|
export type ForgeMetricsSeries = {
|
|
50388
50720
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
50389
50721
|
};
|
|
50722
|
+
export type ForgeMetricsServiceCpuUsageResult = ForgeMetricsServiceCpuUsageValueData | QueryError;
|
|
50723
|
+
export type ForgeMetricsServiceCpuUsageValueData = {
|
|
50724
|
+
__typename?: 'ForgeMetricsServiceCpuUsageValueData';
|
|
50725
|
+
interval: ForgeMetricsIntervalRange;
|
|
50726
|
+
series: Array<ForgeMetricsServiceDataSeries>;
|
|
50727
|
+
type: ForgeMetricsDataType;
|
|
50728
|
+
};
|
|
50729
|
+
export type ForgeMetricsServiceDataPoint = {
|
|
50730
|
+
__typename?: 'ForgeMetricsServiceDataPoint';
|
|
50731
|
+
region: Scalars['String']['output'];
|
|
50732
|
+
serviceKey: Scalars['String']['output'];
|
|
50733
|
+
value: Scalars['Float']['output'];
|
|
50734
|
+
};
|
|
50735
|
+
export type ForgeMetricsServiceDataSeries = {
|
|
50736
|
+
__typename?: 'ForgeMetricsServiceDataSeries';
|
|
50737
|
+
data: Array<ForgeMetricsServiceDataPoint>;
|
|
50738
|
+
};
|
|
50739
|
+
export declare enum ForgeMetricsServiceGroupByDimensions {
|
|
50740
|
+
Region = "REGION",
|
|
50741
|
+
ServiceKey = "SERVICE_KEY"
|
|
50742
|
+
}
|
|
50743
|
+
export type ForgeMetricsServiceInstanceCountDataPoint = {
|
|
50744
|
+
__typename?: 'ForgeMetricsServiceInstanceCountDataPoint';
|
|
50745
|
+
count: Scalars['Int']['output'];
|
|
50746
|
+
region: Scalars['String']['output'];
|
|
50747
|
+
serviceKey: Scalars['String']['output'];
|
|
50748
|
+
};
|
|
50749
|
+
export type ForgeMetricsServiceInstanceCountDataSeries = {
|
|
50750
|
+
__typename?: 'ForgeMetricsServiceInstanceCountDataSeries';
|
|
50751
|
+
data: Array<ForgeMetricsServiceInstanceCountDataPoint>;
|
|
50752
|
+
};
|
|
50753
|
+
export type ForgeMetricsServiceInstancesCountResult = ForgeMetricsServiceInstancesCountValueData | QueryError;
|
|
50754
|
+
export type ForgeMetricsServiceInstancesCountValueData = {
|
|
50755
|
+
__typename?: 'ForgeMetricsServiceInstancesCountValueData';
|
|
50756
|
+
interval: ForgeMetricsIntervalRange;
|
|
50757
|
+
series: Array<ForgeMetricsServiceInstanceCountDataSeries>;
|
|
50758
|
+
type: ForgeMetricsDataType;
|
|
50759
|
+
};
|
|
50760
|
+
export type ForgeMetricsServiceMemoryUsageResult = ForgeMetricsServiceMemoryUsageValueData | QueryError;
|
|
50761
|
+
export type ForgeMetricsServiceMemoryUsageValueData = {
|
|
50762
|
+
__typename?: 'ForgeMetricsServiceMemoryUsageValueData';
|
|
50763
|
+
interval: ForgeMetricsIntervalRange;
|
|
50764
|
+
series: Array<ForgeMetricsServiceDataSeries>;
|
|
50765
|
+
type: ForgeMetricsDataType;
|
|
50766
|
+
};
|
|
50767
|
+
export type ForgeMetricsServiceQueryFilters = {
|
|
50768
|
+
environment: Scalars['ID']['input'];
|
|
50769
|
+
interval: ForgeMetricsIntervalInput;
|
|
50770
|
+
regions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
50771
|
+
services?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
50772
|
+
};
|
|
50773
|
+
export type ForgeMetricsServiceQueryInput = {
|
|
50774
|
+
filters: ForgeMetricsServiceQueryFilters;
|
|
50775
|
+
groupBy?: InputMaybe<Array<ForgeMetricsServiceGroupByDimensions>>;
|
|
50776
|
+
};
|
|
50390
50777
|
export declare enum ForgeMetricsSiteFilterCategory {
|
|
50391
50778
|
All = "ALL",
|
|
50392
50779
|
HighestInvocationCount = "HIGHEST_INVOCATION_COUNT",
|
|
@@ -51717,6 +52104,8 @@ export type GraphInferenceGetJiraEntityContextInput = {
|
|
|
51717
52104
|
jiraEntityAri: Scalars['String']['input'];
|
|
51718
52105
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
51719
52106
|
nodeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
52107
|
+
recursionDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
52108
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
51720
52109
|
};
|
|
51721
52110
|
export type GraphInferenceGetJiraEntityContextResponse = {
|
|
51722
52111
|
__typename?: 'GraphInferenceGetJiraEntityContextResponse';
|
|
@@ -51752,6 +52141,17 @@ export type GraphInferenceGetRelatedReposV3Response = {
|
|
|
51752
52141
|
repos: Array<GraphInferenceRelatedRepoCandidate>;
|
|
51753
52142
|
root: GraphInferenceRelatedReposRoot;
|
|
51754
52143
|
};
|
|
52144
|
+
export type GraphInferenceGetSimilarJiraItemsInput = {
|
|
52145
|
+
jiraItemAri: Scalars['String']['input'];
|
|
52146
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
52147
|
+
};
|
|
52148
|
+
export type GraphInferenceGetSimilarJiraItemsResponse = {
|
|
52149
|
+
__typename?: 'GraphInferenceGetSimilarJiraItemsResponse';
|
|
52150
|
+
apiVersion: Scalars['String']['output'];
|
|
52151
|
+
items: Array<GraphInferenceSimilarJiraItemCandidate>;
|
|
52152
|
+
meta: GraphInferenceSimilarJiraItemsMeta;
|
|
52153
|
+
root: GraphInferenceSimilarJiraItemsRoot;
|
|
52154
|
+
};
|
|
51755
52155
|
export type GraphInferenceJiraEntityContextCandidate = {
|
|
51756
52156
|
__typename?: 'GraphInferenceJiraEntityContextCandidate';
|
|
51757
52157
|
ari: Scalars['String']['output'];
|
|
@@ -51779,7 +52179,9 @@ export type GraphInferenceJiraEntityContextEvidence = {
|
|
|
51779
52179
|
};
|
|
51780
52180
|
export type GraphInferenceJiraEntityContextMeta = {
|
|
51781
52181
|
__typename?: 'GraphInferenceJiraEntityContextMeta';
|
|
52182
|
+
contextRetrievalId: Scalars['String']['output'];
|
|
51782
52183
|
degraded: Array<Scalars['String']['output']>;
|
|
52184
|
+
retrievalInvocationId: Scalars['String']['output'];
|
|
51783
52185
|
servedBy: Scalars['String']['output'];
|
|
51784
52186
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
51785
52187
|
warnings: Array<Scalars['String']['output']>;
|
|
@@ -51809,6 +52211,27 @@ export type GraphInferenceRelatedReposRoot = {
|
|
|
51809
52211
|
__typename?: 'GraphInferenceRelatedReposRoot';
|
|
51810
52212
|
ari: Scalars['String']['output'];
|
|
51811
52213
|
};
|
|
52214
|
+
export type GraphInferenceSimilarJiraItemCandidate = {
|
|
52215
|
+
__typename?: 'GraphInferenceSimilarJiraItemCandidate';
|
|
52216
|
+
ari: Scalars['String']['output'];
|
|
52217
|
+
distance: Scalars['Float']['output'];
|
|
52218
|
+
entity?: Maybe<JiraIssue>;
|
|
52219
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
52220
|
+
score: Scalars['Float']['output'];
|
|
52221
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
52222
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
52223
|
+
};
|
|
52224
|
+
export type GraphInferenceSimilarJiraItemsMeta = {
|
|
52225
|
+
__typename?: 'GraphInferenceSimilarJiraItemsMeta';
|
|
52226
|
+
degraded: Array<Scalars['String']['output']>;
|
|
52227
|
+
servedBy: Scalars['String']['output'];
|
|
52228
|
+
traceId?: Maybe<Scalars['String']['output']>;
|
|
52229
|
+
warnings: Array<Scalars['String']['output']>;
|
|
52230
|
+
};
|
|
52231
|
+
export type GraphInferenceSimilarJiraItemsRoot = {
|
|
52232
|
+
__typename?: 'GraphInferenceSimilarJiraItemsRoot';
|
|
52233
|
+
ari: Scalars['String']['output'];
|
|
52234
|
+
};
|
|
51812
52235
|
export type GraphIntegrationActionAdminManagementActionConfiguration = {
|
|
51813
52236
|
__typename?: 'GraphIntegrationActionAdminManagementActionConfiguration';
|
|
51814
52237
|
readonly: Scalars['Boolean']['output'];
|
|
@@ -51958,6 +52381,7 @@ export type GraphIntegrationDirectoryItemEdge = {
|
|
|
51958
52381
|
export declare enum GraphIntegrationDirectoryItemType {
|
|
51959
52382
|
Action = "ACTION",
|
|
51960
52383
|
CustomSkill = "CUSTOM_SKILL",
|
|
52384
|
+
ForgeTool = "FORGE_TOOL",
|
|
51961
52385
|
McpServer = "MCP_SERVER",
|
|
51962
52386
|
McpTool = "MCP_TOOL",
|
|
51963
52387
|
PlatformSkill = "PLATFORM_SKILL",
|
|
@@ -52271,6 +52695,7 @@ export type GraphIntegrationMcpServerRequestNode = {
|
|
|
52271
52695
|
sourceId: Scalars['ID']['output'];
|
|
52272
52696
|
sourceType: GraphIntegrationMcpServerRequestSourceType;
|
|
52273
52697
|
status: GraphIntegrationMcpServerRequestStatus;
|
|
52698
|
+
templateId?: Maybe<Scalars['ID']['output']>;
|
|
52274
52699
|
};
|
|
52275
52700
|
export type GraphIntegrationMcpServerRequestRejectInput = {
|
|
52276
52701
|
aggregateRequestId: Scalars['ID']['input'];
|
|
@@ -55405,6 +55830,7 @@ export type GraphStore = {
|
|
|
55405
55830
|
atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
55406
55831
|
atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
55407
55832
|
atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
55833
|
+
atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
55408
55834
|
atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
|
|
55409
55835
|
atlassianUserUpdatedExternalCampaignInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignInverseConnection>;
|
|
55410
55836
|
atlassianUserUpdatedExternalCase?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCaseConnection>;
|
|
@@ -55863,6 +56289,10 @@ export type GraphStore = {
|
|
|
55863
56289
|
mercuryOrganizationHasAtlasGoalInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasAtlasGoalConnection>;
|
|
55864
56290
|
mercuryOrganizationHasMercuryOrganizationMembership?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipConnection>;
|
|
55865
56291
|
mercuryOrganizationHasMercuryOrganizationMembershipInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipInverseConnection>;
|
|
56292
|
+
mercuryOrganizationSponsorsFocusArea?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
56293
|
+
mercuryOrganizationSponsorsFocusAreaBatch?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
56294
|
+
mercuryOrganizationSponsorsFocusAreaInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseConnection>;
|
|
56295
|
+
mercuryOrganizationSponsorsFocusAreaInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
55866
56296
|
onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
|
|
55867
56297
|
onPremProjectHasIssueInverse?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueInverseConnection>;
|
|
55868
56298
|
operationsContainerImpactedByIncident?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentConnection>;
|
|
@@ -56011,6 +56441,7 @@ export type GraphStore = {
|
|
|
56011
56441
|
riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
56012
56442
|
rovoAgentActsAsIdentityUser?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserConnection>;
|
|
56013
56443
|
rovoAgentActsAsIdentityUserInverse?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseConnection>;
|
|
56444
|
+
rovoAgentHasAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection>;
|
|
56014
56445
|
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
56015
56446
|
scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
56016
56447
|
secodaDownstreamLineageBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
@@ -57496,6 +57927,14 @@ export type GraphStoreAtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
|
57496
57927
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57497
57928
|
sort?: InputMaybe<GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput>;
|
|
57498
57929
|
};
|
|
57930
|
+
export type GraphStoreAtlassianUserTriggeredAtlassianAgentSessionInverseArgs = {
|
|
57931
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57932
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57933
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57934
|
+
id: Scalars['ID']['input'];
|
|
57935
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57936
|
+
sort?: InputMaybe<GraphStoreAtlassianUserTriggeredAtlassianAgentSessionSortInput>;
|
|
57937
|
+
};
|
|
57499
57938
|
export type GraphStoreAtlassianUserUpdatedExternalCampaignArgs = {
|
|
57500
57939
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57501
57940
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61004,6 +61443,36 @@ export type GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipInverse
|
|
|
61004
61443
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61005
61444
|
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipSortInput>;
|
|
61006
61445
|
};
|
|
61446
|
+
export type GraphStoreMercuryOrganizationSponsorsFocusAreaArgs = {
|
|
61447
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61448
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61449
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61450
|
+
id: Scalars['ID']['input'];
|
|
61451
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61452
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
61453
|
+
};
|
|
61454
|
+
export type GraphStoreMercuryOrganizationSponsorsFocusAreaBatchArgs = {
|
|
61455
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61456
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61457
|
+
ids: Array<Scalars['ID']['input']>;
|
|
61458
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61459
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
61460
|
+
};
|
|
61461
|
+
export type GraphStoreMercuryOrganizationSponsorsFocusAreaInverseArgs = {
|
|
61462
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61463
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61464
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61465
|
+
id: Scalars['ID']['input'];
|
|
61466
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61467
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
61468
|
+
};
|
|
61469
|
+
export type GraphStoreMercuryOrganizationSponsorsFocusAreaInverseBatchArgs = {
|
|
61470
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61471
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61472
|
+
ids: Array<Scalars['ID']['input']>;
|
|
61473
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61474
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
61475
|
+
};
|
|
61007
61476
|
export type GraphStoreOnPremProjectHasIssueArgs = {
|
|
61008
61477
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61009
61478
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -62126,6 +62595,14 @@ export type GraphStoreRovoAgentActsAsIdentityUserInverseArgs = {
|
|
|
62126
62595
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62127
62596
|
sort?: InputMaybe<GraphStoreRovoAgentActsAsIdentityUserSortInput>;
|
|
62128
62597
|
};
|
|
62598
|
+
export type GraphStoreRovoAgentHasAtlassianAgentSessionInverseArgs = {
|
|
62599
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62600
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62601
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62602
|
+
id: Scalars['ID']['input'];
|
|
62603
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62604
|
+
sort?: InputMaybe<GraphStoreRovoAgentHasAtlassianAgentSessionSortInput>;
|
|
62605
|
+
};
|
|
62129
62606
|
export type GraphStoreScorecardHasAtlasGoalArgs = {
|
|
62130
62607
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
62131
62608
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -65959,6 +66436,9 @@ export type GraphStoreAtlassianUserOwnsInferredProjectSortInput = {
|
|
|
65959
66436
|
export type GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput = {
|
|
65960
66437
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65961
66438
|
};
|
|
66439
|
+
export type GraphStoreAtlassianUserTriggeredAtlassianAgentSessionSortInput = {
|
|
66440
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66441
|
+
};
|
|
65962
66442
|
export type GraphStoreAtlassianUserUpdatedExternalCampaignSortInput = {
|
|
65963
66443
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65964
66444
|
};
|
|
@@ -67261,6 +67741,47 @@ export type GraphStoreBatchMercuryOrganizationHasAtlasGoalStartNode = {
|
|
|
67261
67741
|
id: Scalars['ID']['output'];
|
|
67262
67742
|
};
|
|
67263
67743
|
export type GraphStoreBatchMercuryOrganizationHasAtlasGoalStartUnion = MercuryOrganization;
|
|
67744
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection = HasPageInfo & {
|
|
67745
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection';
|
|
67746
|
+
edges: Array<Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEdge>>;
|
|
67747
|
+
nodes: Array<Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaNode>>;
|
|
67748
|
+
pageInfo: PageInfo;
|
|
67749
|
+
};
|
|
67750
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEdge = {
|
|
67751
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEdge';
|
|
67752
|
+
node: GraphStoreBatchMercuryOrganizationSponsorsFocusAreaInnerConnection;
|
|
67753
|
+
};
|
|
67754
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEndNode = {
|
|
67755
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEndNode';
|
|
67756
|
+
data?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEndUnion>;
|
|
67757
|
+
id: Scalars['ID']['output'];
|
|
67758
|
+
};
|
|
67759
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEndUnion = MercuryFocusArea;
|
|
67760
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaInnerConnection = {
|
|
67761
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaInnerConnection';
|
|
67762
|
+
edges: Array<Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaInnerEdge>>;
|
|
67763
|
+
nodes: Array<Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaNode>>;
|
|
67764
|
+
requestedId: Scalars['ID']['output'];
|
|
67765
|
+
};
|
|
67766
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaInnerEdge = {
|
|
67767
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaInnerEdge';
|
|
67768
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67769
|
+
node: GraphStoreBatchMercuryOrganizationSponsorsFocusAreaNode;
|
|
67770
|
+
};
|
|
67771
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaNode = Node & {
|
|
67772
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaNode';
|
|
67773
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67774
|
+
from: GraphStoreBatchMercuryOrganizationSponsorsFocusAreaStartNode;
|
|
67775
|
+
id: Scalars['ID']['output'];
|
|
67776
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67777
|
+
to: GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEndNode;
|
|
67778
|
+
};
|
|
67779
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaStartNode = {
|
|
67780
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaStartNode';
|
|
67781
|
+
data?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaStartUnion>;
|
|
67782
|
+
id: Scalars['ID']['output'];
|
|
67783
|
+
};
|
|
67784
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaStartUnion = MercuryOrganization;
|
|
67264
67785
|
export type GraphStoreBatchProjectLinksToEntityConnection = HasPageInfo & {
|
|
67265
67786
|
__typename?: 'GraphStoreBatchProjectLinksToEntityConnection';
|
|
67266
67787
|
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityEdge>>;
|
|
@@ -73404,6 +73925,9 @@ export type GraphStoreMercuryOrganizationHasAtlasGoalSortInput = {
|
|
|
73404
73925
|
export type GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipSortInput = {
|
|
73405
73926
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73406
73927
|
};
|
|
73928
|
+
export type GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput = {
|
|
73929
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73930
|
+
};
|
|
73407
73931
|
export type GraphStoreMutation = {
|
|
73408
73932
|
__typename?: 'GraphStoreMutation';
|
|
73409
73933
|
createAtlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityPayload>;
|
|
@@ -74278,6 +74802,9 @@ export type GraphStoreRiskHasProjectSortInput = {
|
|
|
74278
74802
|
export type GraphStoreRovoAgentActsAsIdentityUserSortInput = {
|
|
74279
74803
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74280
74804
|
};
|
|
74805
|
+
export type GraphStoreRovoAgentHasAtlassianAgentSessionSortInput = {
|
|
74806
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74807
|
+
};
|
|
74281
74808
|
export type GraphStoreScorecardHasAtlasGoalSortInput = {
|
|
74282
74809
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74283
74810
|
};
|
|
@@ -76016,6 +76543,20 @@ export type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEd
|
|
|
76016
76543
|
node?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion>;
|
|
76017
76544
|
};
|
|
76018
76545
|
export type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76546
|
+
export type GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection = HasPageInfo & {
|
|
76547
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection';
|
|
76548
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseEdge>>>;
|
|
76549
|
+
pageInfo: PageInfo;
|
|
76550
|
+
};
|
|
76551
|
+
export type GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseEdge = {
|
|
76552
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseEdge';
|
|
76553
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76554
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76555
|
+
id: Scalars['ID']['output'];
|
|
76556
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76557
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseUnion>;
|
|
76558
|
+
};
|
|
76559
|
+
export type GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76019
76560
|
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection = HasPageInfo & {
|
|
76020
76561
|
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection';
|
|
76021
76562
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignEdge>>>;
|
|
@@ -80912,6 +81453,34 @@ export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembers
|
|
|
80912
81453
|
};
|
|
80913
81454
|
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipInverseUnion = MercuryOrganization;
|
|
80914
81455
|
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipUnion = MercuryOrganizationMembership;
|
|
81456
|
+
export type GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection = HasPageInfo & {
|
|
81457
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection';
|
|
81458
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaEdge>>>;
|
|
81459
|
+
pageInfo: PageInfo;
|
|
81460
|
+
};
|
|
81461
|
+
export type GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaEdge = {
|
|
81462
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaEdge';
|
|
81463
|
+
createdAt: Scalars['DateTime']['output'];
|
|
81464
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
81465
|
+
id: Scalars['ID']['output'];
|
|
81466
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
81467
|
+
node?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaUnion>;
|
|
81468
|
+
};
|
|
81469
|
+
export type GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseConnection = HasPageInfo & {
|
|
81470
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseConnection';
|
|
81471
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseEdge>>>;
|
|
81472
|
+
pageInfo: PageInfo;
|
|
81473
|
+
};
|
|
81474
|
+
export type GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseEdge = {
|
|
81475
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseEdge';
|
|
81476
|
+
createdAt: Scalars['DateTime']['output'];
|
|
81477
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
81478
|
+
id: Scalars['ID']['output'];
|
|
81479
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
81480
|
+
node?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseUnion>;
|
|
81481
|
+
};
|
|
81482
|
+
export type GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseUnion = MercuryOrganization;
|
|
81483
|
+
export type GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaUnion = MercuryFocusArea;
|
|
80915
81484
|
export type GraphStoreSimplifiedOnPremProjectHasIssueConnection = HasPageInfo & {
|
|
80916
81485
|
__typename?: 'GraphStoreSimplifiedOnPremProjectHasIssueConnection';
|
|
80917
81486
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOnPremProjectHasIssueEdge>>>;
|
|
@@ -82304,6 +82873,20 @@ export type GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseEdge = {
|
|
|
82304
82873
|
};
|
|
82305
82874
|
export type GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
82306
82875
|
export type GraphStoreSimplifiedRovoAgentActsAsIdentityUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
82876
|
+
export type GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection = HasPageInfo & {
|
|
82877
|
+
__typename?: 'GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection';
|
|
82878
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseEdge>>>;
|
|
82879
|
+
pageInfo: PageInfo;
|
|
82880
|
+
};
|
|
82881
|
+
export type GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseEdge = {
|
|
82882
|
+
__typename?: 'GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseEdge';
|
|
82883
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82884
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82885
|
+
id: Scalars['ID']['output'];
|
|
82886
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82887
|
+
node?: Maybe<GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseUnion>;
|
|
82888
|
+
};
|
|
82889
|
+
export type GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
82307
82890
|
export type GraphStoreSimplifiedScorecardHasAtlasGoalConnection = HasPageInfo & {
|
|
82308
82891
|
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalConnection';
|
|
82309
82892
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalEdge>>>;
|
|
@@ -88906,6 +89489,7 @@ export type GraphStoreV2 = {
|
|
|
88906
89489
|
atlassianUserSubmittedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSubmittedFocusAskInverseConnection>;
|
|
88907
89490
|
atlassianUserTrashedConfluenceContent?: Maybe<GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentConnection>;
|
|
88908
89491
|
atlassianUserTrashedConfluenceContentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentInverseConnection>;
|
|
89492
|
+
atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
88909
89493
|
atlassianUserTriggeredExternalDeployment?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentConnection>;
|
|
88910
89494
|
atlassianUserTriggeredExternalDeploymentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentInverseConnection>;
|
|
88911
89495
|
atlassianUserUpdatedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianGoalConnection>;
|
|
@@ -89350,6 +89934,8 @@ export type GraphStoreV2 = {
|
|
|
89350
89934
|
focusOrganizationHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalInverseConnection>;
|
|
89351
89935
|
focusOrganizationHasFocusOrganizationMembership?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipConnection>;
|
|
89352
89936
|
focusOrganizationHasFocusOrganizationMembershipInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipInverseConnection>;
|
|
89937
|
+
focusOrganizationSponsorsFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection>;
|
|
89938
|
+
focusOrganizationSponsorsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseConnection>;
|
|
89353
89939
|
focusRiskHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection>;
|
|
89354
89940
|
focusRiskHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection>;
|
|
89355
89941
|
focusStrategicPlanContributesToFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection>;
|
|
@@ -89538,6 +90124,7 @@ export type GraphStoreV2 = {
|
|
|
89538
90124
|
repositoryEntityIsBitbucketRepositoryInverse?: Maybe<GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryInverseConnection>;
|
|
89539
90125
|
rovoAgentActsAsAtlassianUser?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserConnection>;
|
|
89540
90126
|
rovoAgentActsAsAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseConnection>;
|
|
90127
|
+
rovoAgentHasAtlassianAgentSessionInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection>;
|
|
89541
90128
|
talentPositionLinksExternalPosition?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection>;
|
|
89542
90129
|
talentPositionLinksExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionInverseConnection>;
|
|
89543
90130
|
talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
|
|
@@ -91115,6 +91702,13 @@ export type GraphStoreV2AtlassianUserTrashedConfluenceContentInverseArgs = {
|
|
|
91115
91702
|
id: Scalars['ID']['input'];
|
|
91116
91703
|
sort?: InputMaybe<GraphStoreV2AtlassianUserTrashedConfluenceContentSortInput>;
|
|
91117
91704
|
};
|
|
91705
|
+
export type GraphStoreV2AtlassianUserTriggeredAtlassianAgentSessionInverseArgs = {
|
|
91706
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91707
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
91708
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91709
|
+
id: Scalars['ID']['input'];
|
|
91710
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserTriggeredAtlassianAgentSessionSortInput>;
|
|
91711
|
+
};
|
|
91118
91712
|
export type GraphStoreV2AtlassianUserTriggeredExternalDeploymentArgs = {
|
|
91119
91713
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91120
91714
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -94230,6 +94824,20 @@ export type GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipInverseAr
|
|
|
94230
94824
|
id: Scalars['ID']['input'];
|
|
94231
94825
|
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipSortInput>;
|
|
94232
94826
|
};
|
|
94827
|
+
export type GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaArgs = {
|
|
94828
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94829
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
94830
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94831
|
+
id: Scalars['ID']['input'];
|
|
94832
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaSortInput>;
|
|
94833
|
+
};
|
|
94834
|
+
export type GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaInverseArgs = {
|
|
94835
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94836
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
94837
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94838
|
+
id: Scalars['ID']['input'];
|
|
94839
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaSortInput>;
|
|
94840
|
+
};
|
|
94233
94841
|
export type GraphStoreV2FocusRiskHasWorkEntityArgs = {
|
|
94234
94842
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
94235
94843
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -95586,6 +96194,13 @@ export type GraphStoreV2RovoAgentActsAsAtlassianUserInverseArgs = {
|
|
|
95586
96194
|
id: Scalars['ID']['input'];
|
|
95587
96195
|
sort?: InputMaybe<GraphStoreV2RovoAgentActsAsAtlassianUserSortInput>;
|
|
95588
96196
|
};
|
|
96197
|
+
export type GraphStoreV2RovoAgentHasAtlassianAgentSessionInverseArgs = {
|
|
96198
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96199
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96200
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96201
|
+
id: Scalars['ID']['input'];
|
|
96202
|
+
sort?: InputMaybe<GraphStoreV2RovoAgentHasAtlassianAgentSessionSortInput>;
|
|
96203
|
+
};
|
|
95589
96204
|
export type GraphStoreV2TalentPositionLinksExternalPositionArgs = {
|
|
95590
96205
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95591
96206
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -96102,6 +96717,9 @@ export type GraphStoreV2AtlassianUserSubmittedFocusAskSortInput = {
|
|
|
96102
96717
|
export type GraphStoreV2AtlassianUserTrashedConfluenceContentSortInput = {
|
|
96103
96718
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96104
96719
|
};
|
|
96720
|
+
export type GraphStoreV2AtlassianUserTriggeredAtlassianAgentSessionSortInput = {
|
|
96721
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96722
|
+
};
|
|
96105
96723
|
export type GraphStoreV2AtlassianUserTriggeredExternalDeploymentSortInput = {
|
|
96106
96724
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96107
96725
|
};
|
|
@@ -97957,6 +98575,9 @@ export type GraphStoreV2FocusOrganizationHasAtlassianGoalSortInput = {
|
|
|
97957
98575
|
export type GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipSortInput = {
|
|
97958
98576
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
97959
98577
|
};
|
|
98578
|
+
export type GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaSortInput = {
|
|
98579
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
98580
|
+
};
|
|
97960
98581
|
export type GraphStoreV2FocusRiskHasWorkEntitySortInput = {
|
|
97961
98582
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
97962
98583
|
};
|
|
@@ -99536,6 +100157,9 @@ export type GraphStoreV2RepositoryEntityIsBitbucketRepositorySortInput = {
|
|
|
99536
100157
|
export type GraphStoreV2RovoAgentActsAsAtlassianUserSortInput = {
|
|
99537
100158
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99538
100159
|
};
|
|
100160
|
+
export type GraphStoreV2RovoAgentHasAtlassianAgentSessionSortInput = {
|
|
100161
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
100162
|
+
};
|
|
99539
100163
|
export type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection = HasPageInfo & {
|
|
99540
100164
|
__typename?: 'GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection';
|
|
99541
100165
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeEdge>>>;
|
|
@@ -102706,6 +103330,20 @@ export type GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentInverseEd
|
|
|
102706
103330
|
};
|
|
102707
103331
|
export type GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
102708
103332
|
export type GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentUnion = ConfluenceSpace;
|
|
103333
|
+
export type GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection = HasPageInfo & {
|
|
103334
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection';
|
|
103335
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseEdge>>>;
|
|
103336
|
+
pageInfo: PageInfo;
|
|
103337
|
+
};
|
|
103338
|
+
export type GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseEdge = {
|
|
103339
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseEdge';
|
|
103340
|
+
createdAt: Scalars['DateTime']['output'];
|
|
103341
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
103342
|
+
id: Scalars['ID']['output'];
|
|
103343
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
103344
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseUnion>;
|
|
103345
|
+
};
|
|
103346
|
+
export type GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
102709
103347
|
export type GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentConnection = HasPageInfo & {
|
|
102710
103348
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentConnection';
|
|
102711
103349
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentEdge>>>;
|
|
@@ -108944,6 +109582,34 @@ export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershi
|
|
|
108944
109582
|
};
|
|
108945
109583
|
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipInverseUnion = MercuryOrganization;
|
|
108946
109584
|
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipUnion = MercuryOrganizationMembership;
|
|
109585
|
+
export type GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection = HasPageInfo & {
|
|
109586
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection';
|
|
109587
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaEdge>>>;
|
|
109588
|
+
pageInfo: PageInfo;
|
|
109589
|
+
};
|
|
109590
|
+
export type GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaEdge = {
|
|
109591
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaEdge';
|
|
109592
|
+
createdAt: Scalars['DateTime']['output'];
|
|
109593
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
109594
|
+
id: Scalars['ID']['output'];
|
|
109595
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
109596
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaUnion>;
|
|
109597
|
+
};
|
|
109598
|
+
export type GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseConnection = HasPageInfo & {
|
|
109599
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseConnection';
|
|
109600
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseEdge>>>;
|
|
109601
|
+
pageInfo: PageInfo;
|
|
109602
|
+
};
|
|
109603
|
+
export type GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseEdge = {
|
|
109604
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseEdge';
|
|
109605
|
+
createdAt: Scalars['DateTime']['output'];
|
|
109606
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
109607
|
+
id: Scalars['ID']['output'];
|
|
109608
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
109609
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseUnion>;
|
|
109610
|
+
};
|
|
109611
|
+
export type GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseUnion = MercuryOrganization;
|
|
109612
|
+
export type GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaUnion = MercuryFocusArea;
|
|
108947
109613
|
export type GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection = HasPageInfo & {
|
|
108948
109614
|
__typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection';
|
|
108949
109615
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityEdge>>>;
|
|
@@ -111808,6 +112474,20 @@ export type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseEdge = {
|
|
|
111808
112474
|
};
|
|
111809
112475
|
export type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
111810
112476
|
export type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
112477
|
+
export type GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection = HasPageInfo & {
|
|
112478
|
+
__typename?: 'GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection';
|
|
112479
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseEdge>>>;
|
|
112480
|
+
pageInfo: PageInfo;
|
|
112481
|
+
};
|
|
112482
|
+
export type GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseEdge = {
|
|
112483
|
+
__typename?: 'GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseEdge';
|
|
112484
|
+
createdAt: Scalars['DateTime']['output'];
|
|
112485
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
112486
|
+
id: Scalars['ID']['output'];
|
|
112487
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
112488
|
+
node?: Maybe<GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseUnion>;
|
|
112489
|
+
};
|
|
112490
|
+
export type GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
111811
112491
|
export type GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection = HasPageInfo & {
|
|
111812
112492
|
__typename?: 'GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection';
|
|
111813
112493
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionEdge>>>;
|
|
@@ -113784,6 +114464,7 @@ export type HelpCenterBranding = {
|
|
|
113784
114464
|
__typename?: 'HelpCenterBranding';
|
|
113785
114465
|
banner?: Maybe<HelpCenterBanner>;
|
|
113786
114466
|
colors?: Maybe<HelpCenterBrandingColors>;
|
|
114467
|
+
cornerRadius?: Maybe<Scalars['Int']['output']>;
|
|
113787
114468
|
hasTopBarBeenSplit?: Maybe<Scalars['Boolean']['output']>;
|
|
113788
114469
|
homePageTitle?: Maybe<HelpCenterHomePageTitle>;
|
|
113789
114470
|
isBannerAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -113812,6 +114493,7 @@ export type HelpCenterBrandingColorsInput = {
|
|
|
113812
114493
|
export type HelpCenterBrandingInput = {
|
|
113813
114494
|
banner?: InputMaybe<HelpCenterBannerInput>;
|
|
113814
114495
|
colors?: InputMaybe<HelpCenterBrandingColorsInput>;
|
|
114496
|
+
cornerRadius?: InputMaybe<Scalars['Int']['input']>;
|
|
113815
114497
|
homePageTitle?: InputMaybe<HelpCenterHomePageTitleInput>;
|
|
113816
114498
|
logo?: InputMaybe<HelpCenterLogoInput>;
|
|
113817
114499
|
navigationBar?: InputMaybe<HelpCenterNavigationBarInput>;
|
|
@@ -116998,6 +117680,7 @@ export declare enum JiraActivityFilter {
|
|
|
116998
117680
|
HiddenCustomEntries = "HIDDEN_CUSTOM_ENTRIES",
|
|
116999
117681
|
History = "HISTORY",
|
|
117000
117682
|
HistoryIncludeIssueCreated = "HISTORY_INCLUDE_ISSUE_CREATED",
|
|
117683
|
+
IccActivity = "ICC_ACTIVITY",
|
|
117001
117684
|
IccSessionDetails = "ICC_SESSION_DETAILS",
|
|
117002
117685
|
IccSessionLifecycle = "ICC_SESSION_LIFECYCLE",
|
|
117003
117686
|
Incident = "INCIDENT",
|
|
@@ -117318,6 +118001,7 @@ export type JiraAgentContextFilter = {
|
|
|
117318
118001
|
};
|
|
117319
118002
|
export type JiraAgentContextItem = {
|
|
117320
118003
|
__typename?: 'JiraAgentContextItem';
|
|
118004
|
+
curation?: Maybe<JiraAgentContextItemCuration>;
|
|
117321
118005
|
id: Scalars['ID']['output'];
|
|
117322
118006
|
origin?: Maybe<Scalars['String']['output']>;
|
|
117323
118007
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -117329,6 +118013,12 @@ export type JiraAgentContextItemConnection = {
|
|
|
117329
118013
|
pageInfo: PageInfo;
|
|
117330
118014
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
117331
118015
|
};
|
|
118016
|
+
export type JiraAgentContextItemCuration = {
|
|
118017
|
+
__typename?: 'JiraAgentContextItemCuration';
|
|
118018
|
+
curatedAt?: Maybe<Scalars['String']['output']>;
|
|
118019
|
+
curatedBy?: Maybe<User>;
|
|
118020
|
+
curatorAri?: Maybe<Scalars['ID']['output']>;
|
|
118021
|
+
};
|
|
117332
118022
|
export type JiraAgentContextItemEdge = {
|
|
117333
118023
|
__typename?: 'JiraAgentContextItemEdge';
|
|
117334
118024
|
cursor: Scalars['String']['output'];
|
|
@@ -117388,6 +118078,7 @@ export declare enum JiraAgentSessionInvocationType {
|
|
|
117388
118078
|
IssueCommentMention = "ISSUE_COMMENT_MENTION",
|
|
117389
118079
|
IssueManualTrigger = "ISSUE_MANUAL_TRIGGER",
|
|
117390
118080
|
IssueWorkflowAssignment = "ISSUE_WORKFLOW_ASSIGNMENT",
|
|
118081
|
+
LocalAgentSession = "LOCAL_AGENT_SESSION",
|
|
117391
118082
|
Unknown = "UNKNOWN"
|
|
117392
118083
|
}
|
|
117393
118084
|
export declare enum JiraAgentSessionState {
|
|
@@ -117436,6 +118127,9 @@ export type JiraAgenticUser = JiraActor & {
|
|
|
117436
118127
|
fromUrs?: Maybe<Scalars['Boolean']['output']>;
|
|
117437
118128
|
isAssignable?: Maybe<Scalars['Boolean']['output']>;
|
|
117438
118129
|
isFavorite?: Maybe<Scalars['Boolean']['output']>;
|
|
118130
|
+
isSemanticallyRecommended?: Maybe<Scalars['Boolean']['output']>;
|
|
118131
|
+
totalUniqueConversationsLast30Days?: Maybe<Scalars['Int']['output']>;
|
|
118132
|
+
totalUniqueUsersLast30Days?: Maybe<Scalars['Int']['output']>;
|
|
117439
118133
|
user?: Maybe<User>;
|
|
117440
118134
|
};
|
|
117441
118135
|
export type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
|
|
@@ -117526,6 +118220,7 @@ export type JiraAggregatedTimelineFieldMissingAggregatedDateTypeArgs = {
|
|
|
117526
118220
|
export declare enum JiraAiAgentConversationState {
|
|
117527
118221
|
ArtefactReady = "ARTEFACT_READY",
|
|
117528
118222
|
AuthRequired = "AUTH_REQUIRED",
|
|
118223
|
+
Cancelled = "CANCELLED",
|
|
117529
118224
|
Completed = "COMPLETED",
|
|
117530
118225
|
Failed = "FAILED",
|
|
117531
118226
|
InputRequired = "INPUT_REQUIRED",
|
|
@@ -119764,15 +120459,11 @@ export type JiraBoardViewFieldSwimlaneCellsArgs = {
|
|
|
119764
120459
|
export type JiraBoardViewFieldSwimlaneTotalIssueCountArgs = {
|
|
119765
120460
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
119766
120461
|
};
|
|
119767
|
-
export type JiraBoardViewFieldSwimlaneAgent = {
|
|
119768
|
-
__typename?: 'JiraBoardViewFieldSwimlaneAgent';
|
|
119769
|
-
agent?: Maybe<User>;
|
|
119770
|
-
};
|
|
119771
120462
|
export type JiraBoardViewFieldSwimlaneUser = {
|
|
119772
120463
|
__typename?: 'JiraBoardViewFieldSwimlaneUser';
|
|
119773
120464
|
user?: Maybe<User>;
|
|
119774
120465
|
};
|
|
119775
|
-
export type JiraBoardViewFieldSwimlaneValue =
|
|
120466
|
+
export type JiraBoardViewFieldSwimlaneValue = JiraBoardViewFieldSwimlaneUser | JiraIssue | JiraOption | JiraPriority | JiraTownsquareProject;
|
|
119776
120467
|
export type JiraBoardViewInput = {
|
|
119777
120468
|
jiraBoardViewQueryInput?: InputMaybe<JiraBoardViewQueryInput>;
|
|
119778
120469
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -124247,6 +124938,7 @@ export type JiraFieldScheme = Node & {
|
|
|
124247
124938
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
124248
124939
|
requiredOnIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
124249
124940
|
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
124941
|
+
shouldShowRendererUpdateMessage?: Maybe<Scalars['Boolean']['output']>;
|
|
124250
124942
|
};
|
|
124251
124943
|
export type JiraFieldSchemeAssociatedIssueTypesArgs = {
|
|
124252
124944
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -124268,6 +124960,9 @@ export type JiraFieldSchemeRequiredOnIssueTypesArgs = {
|
|
|
124268
124960
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124269
124961
|
input?: InputMaybe<JiraFieldSchemeRequiredOnIssueTypesInput>;
|
|
124270
124962
|
};
|
|
124963
|
+
export type JiraFieldSchemeShouldShowRendererUpdateMessageArgs = {
|
|
124964
|
+
fieldId: Scalars['String']['input'];
|
|
124965
|
+
};
|
|
124271
124966
|
export type JiraFieldSchemeAssociatedField = {
|
|
124272
124967
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
124273
124968
|
field?: Maybe<JiraField>;
|
|
@@ -124859,6 +125554,12 @@ export type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
124859
125554
|
type: Scalars['String']['output'];
|
|
124860
125555
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
124861
125556
|
};
|
|
125557
|
+
export type JiraForgeNumberFieldPayload = Payload & {
|
|
125558
|
+
__typename?: 'JiraForgeNumberFieldPayload';
|
|
125559
|
+
errors?: Maybe<Array<MutationError>>;
|
|
125560
|
+
field?: Maybe<JiraForgeNumberField>;
|
|
125561
|
+
success: Scalars['Boolean']['output'];
|
|
125562
|
+
};
|
|
124862
125563
|
export type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
124863
125564
|
__typename?: 'JiraForgeObjectField';
|
|
124864
125565
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -124930,6 +125631,12 @@ export type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
124930
125631
|
type: Scalars['String']['output'];
|
|
124931
125632
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
124932
125633
|
};
|
|
125634
|
+
export type JiraForgeStringFieldPayload = Payload & {
|
|
125635
|
+
__typename?: 'JiraForgeStringFieldPayload';
|
|
125636
|
+
errors?: Maybe<Array<MutationError>>;
|
|
125637
|
+
field?: Maybe<JiraForgeStringField>;
|
|
125638
|
+
success: Scalars['Boolean']['output'];
|
|
125639
|
+
};
|
|
124933
125640
|
export type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
124934
125641
|
__typename?: 'JiraForgeStringsField';
|
|
124935
125642
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -125873,6 +126580,18 @@ export type JiraHydrateJqlInput = {
|
|
|
125873
126580
|
lastUsedJqlForIssueNavigator?: InputMaybe<JiraJqlScopeInput>;
|
|
125874
126581
|
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
125875
126582
|
};
|
|
126583
|
+
export type JiraIccActivityValue = {
|
|
126584
|
+
__typename?: 'JiraIccActivityValue';
|
|
126585
|
+
artefactId?: Maybe<Scalars['String']['output']>;
|
|
126586
|
+
hypothesisName?: Maybe<Scalars['String']['output']>;
|
|
126587
|
+
planName?: Maybe<Scalars['String']['output']>;
|
|
126588
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
126589
|
+
stepName?: Maybe<Scalars['String']['output']>;
|
|
126590
|
+
stepStatus?: Maybe<Scalars['String']['output']>;
|
|
126591
|
+
stepsCompletedSoFar?: Maybe<Scalars['String']['output']>;
|
|
126592
|
+
totalSteps?: Maybe<Scalars['String']['output']>;
|
|
126593
|
+
triggerReason?: Maybe<Scalars['String']['output']>;
|
|
126594
|
+
};
|
|
125876
126595
|
export type JiraImproveDescriptionSuggestion = JiraBaseNextActionsEntity & {
|
|
125877
126596
|
__typename?: 'JiraImproveDescriptionSuggestion';
|
|
125878
126597
|
contentType?: Maybe<JiraNextActionContentType>;
|
|
@@ -125902,6 +126621,10 @@ export type JiraInCompleteCardsDestinationEdge = {
|
|
|
125902
126621
|
cursor: Scalars['String']['output'];
|
|
125903
126622
|
node?: Maybe<JiraInCompleteCardsDestination>;
|
|
125904
126623
|
};
|
|
126624
|
+
export type JiraInCompleteCardsDestinationInput = {
|
|
126625
|
+
destination: JiraCardsDestinationEnum;
|
|
126626
|
+
sprintId?: InputMaybe<Scalars['ID']['input']>;
|
|
126627
|
+
};
|
|
125905
126628
|
export type JiraIncidentActivityActor = {
|
|
125906
126629
|
__typename?: 'JiraIncidentActivityActor';
|
|
125907
126630
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -125927,6 +126650,16 @@ export type JiraIncidentActivityItem = {
|
|
|
125927
126650
|
export declare enum JiraIncidentActivityType {
|
|
125928
126651
|
AlertAssociated = "ALERT_ASSOCIATED",
|
|
125929
126652
|
AlertDisassociated = "ALERT_DISASSOCIATED",
|
|
126653
|
+
IncidentHypothesisAccepted = "INCIDENT_HYPOTHESIS_ACCEPTED",
|
|
126654
|
+
IncidentInvestigationCompleted = "INCIDENT_INVESTIGATION_COMPLETED",
|
|
126655
|
+
IncidentInvestigationStarted = "INCIDENT_INVESTIGATION_STARTED",
|
|
126656
|
+
IncidentMitigationPlansCreationCompleted = "INCIDENT_MITIGATION_PLANS_CREATION_COMPLETED",
|
|
126657
|
+
IncidentMitigationPlansCreationStarted = "INCIDENT_MITIGATION_PLANS_CREATION_STARTED",
|
|
126658
|
+
IncidentMitigationPlanAssigned = "INCIDENT_MITIGATION_PLAN_ASSIGNED",
|
|
126659
|
+
IncidentMitigationPlanCompleted = "INCIDENT_MITIGATION_PLAN_COMPLETED",
|
|
126660
|
+
IncidentMitigationPlanStepCompleted = "INCIDENT_MITIGATION_PLAN_STEP_COMPLETED",
|
|
126661
|
+
IncidentOverviewNbaGenerated = "INCIDENT_OVERVIEW_NBA_GENERATED",
|
|
126662
|
+
IncidentOverviewSummaryGenerated = "INCIDENT_OVERVIEW_SUMMARY_GENERATED",
|
|
125930
126663
|
IncidentStakeholderAdded = "INCIDENT_STAKEHOLDER_ADDED",
|
|
125931
126664
|
IncidentStakeholderRemoved = "INCIDENT_STAKEHOLDER_REMOVED",
|
|
125932
126665
|
ResponderAlertAcked = "RESPONDER_ALERT_ACKED",
|
|
@@ -125937,7 +126670,7 @@ export declare enum JiraIncidentActivityType {
|
|
|
125937
126670
|
StakeholdersUpdated = "STAKEHOLDERS_UPDATED",
|
|
125938
126671
|
Unknown = "UNKNOWN"
|
|
125939
126672
|
}
|
|
125940
|
-
export type JiraIncidentActivityValueUnion = JiraAlertValue | JiraIncidentStakeholderActionValue | JiraResponderAlertAssignedValue | JiraResponderAlertPriorityChangedValue | JiraStakeholderUpdatedValue;
|
|
126673
|
+
export type JiraIncidentActivityValueUnion = JiraAlertValue | JiraIccActivityValue | JiraIncidentStakeholderActionValue | JiraResponderAlertAssignedValue | JiraResponderAlertPriorityChangedValue | JiraStakeholderUpdatedValue;
|
|
125941
126674
|
export type JiraIncidentItem = {
|
|
125942
126675
|
__typename?: 'JiraIncidentItem';
|
|
125943
126676
|
incidentItem?: Maybe<JiraIncidentActivityItem>;
|
|
@@ -126169,6 +126902,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
126169
126902
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
126170
126903
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
126171
126904
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
126905
|
+
nextActionPresence?: Maybe<JiraIssueNextActionPresence>;
|
|
126172
126906
|
nextActionSuggestions?: Maybe<JiraIssueNextActionSuggestions>;
|
|
126173
126907
|
parentIssue?: Maybe<JiraIssue>;
|
|
126174
126908
|
parentIssueField?: Maybe<JiraParentIssueField>;
|
|
@@ -127908,6 +128642,16 @@ export type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
|
|
|
127908
128642
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
127909
128643
|
success: Scalars['Boolean']['output'];
|
|
127910
128644
|
};
|
|
128645
|
+
export type JiraIssueNextActionPresence = {
|
|
128646
|
+
__typename?: 'JiraIssueNextActionPresence';
|
|
128647
|
+
recommendations?: Maybe<JiraIssueNextActionSuggestions>;
|
|
128648
|
+
state?: Maybe<JiraIssueNextActionPresenceState>;
|
|
128649
|
+
};
|
|
128650
|
+
export declare enum JiraIssueNextActionPresenceState {
|
|
128651
|
+
Likely = "LIKELY",
|
|
128652
|
+
None = "NONE",
|
|
128653
|
+
Ready = "READY"
|
|
128654
|
+
}
|
|
127911
128655
|
export type JiraIssueNextActionSuggestions = {
|
|
127912
128656
|
__typename?: 'JiraIssueNextActionSuggestions';
|
|
127913
128657
|
improveDescriptionSuggestions?: Maybe<JiraImproveDescriptionSuggestion>;
|
|
@@ -131031,7 +131775,9 @@ export type JiraMutation = {
|
|
|
131031
131775
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
131032
131776
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
131033
131777
|
updateFlagField?: Maybe<JiraUpdateFlagFieldPayload>;
|
|
131778
|
+
updateForgeNumberField?: Maybe<JiraForgeNumberFieldPayload>;
|
|
131034
131779
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
131780
|
+
updateForgeStringField?: Maybe<JiraForgeStringFieldPayload>;
|
|
131035
131781
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
131036
131782
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
131037
131783
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
@@ -131653,9 +132399,15 @@ export type JiraMutationUpdateFieldSetsViewArgs = {
|
|
|
131653
132399
|
export type JiraMutationUpdateFlagFieldArgs = {
|
|
131654
132400
|
input: JiraUpdateFlagFieldInput;
|
|
131655
132401
|
};
|
|
132402
|
+
export type JiraMutationUpdateForgeNumberFieldArgs = {
|
|
132403
|
+
input: JiraUpdateNumberFieldInput;
|
|
132404
|
+
};
|
|
131656
132405
|
export type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
131657
132406
|
input: JiraUpdateForgeObjectFieldInput;
|
|
131658
132407
|
};
|
|
132408
|
+
export type JiraMutationUpdateForgeStringFieldArgs = {
|
|
132409
|
+
input: JiraUpdateSingleLineTextFieldInput;
|
|
132410
|
+
};
|
|
131659
132411
|
export type JiraMutationUpdateFormattingRuleArgs = {
|
|
131660
132412
|
input: JiraUpdateFormattingRuleInput;
|
|
131661
132413
|
};
|
|
@@ -133252,6 +134004,7 @@ export type JiraPlaybookInstanceEdge = {
|
|
|
133252
134004
|
};
|
|
133253
134005
|
export type JiraPlaybookInstanceStep = Node & {
|
|
133254
134006
|
__typename?: 'JiraPlaybookInstanceStep';
|
|
134007
|
+
checklistItems?: Maybe<Array<ChecklistItem>>;
|
|
133255
134008
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
133256
134009
|
id: Scalars['ID']['output'];
|
|
133257
134010
|
lastRun?: Maybe<JiraPlaybookStepRun>;
|
|
@@ -133333,6 +134086,7 @@ export type JiraPlaybookRuleIdsConnection = HasPageInfo & QueryPayload & {
|
|
|
133333
134086
|
};
|
|
133334
134087
|
export declare enum JiraPlaybookScopeType {
|
|
133335
134088
|
Global = "GLOBAL",
|
|
134089
|
+
Icc = "ICC",
|
|
133336
134090
|
Issue = "ISSUE",
|
|
133337
134091
|
Project = "PROJECT",
|
|
133338
134092
|
Team = "TEAM"
|
|
@@ -137910,11 +138664,34 @@ export type JiraRoleEdge = {
|
|
|
137910
138664
|
export type JiraRoleInput = {
|
|
137911
138665
|
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
137912
138666
|
};
|
|
138667
|
+
export declare enum JiraRovoAiProduct {
|
|
138668
|
+
Jira = "JIRA",
|
|
138669
|
+
JiraCustomerService = "JIRA_CUSTOMER_SERVICE",
|
|
138670
|
+
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
138671
|
+
JiraServiceManagement = "JIRA_SERVICE_MANAGEMENT"
|
|
138672
|
+
}
|
|
137913
138673
|
export type JiraRovoConversationMetadata = {
|
|
137914
138674
|
__typename?: 'JiraRovoConversationMetadata';
|
|
137915
138675
|
actionMessageId?: Maybe<Scalars['String']['output']>;
|
|
137916
138676
|
channelConversationId: Scalars['ID']['output'];
|
|
137917
138677
|
};
|
|
138678
|
+
export type JiraRovoEnablementStatus = {
|
|
138679
|
+
__typename?: 'JiraRovoEnablementStatus';
|
|
138680
|
+
isRovoAiFeaturesEnabledInAnyJiraProducts?: Maybe<JiraRovoWithAiEnabledInAnyJiraFamilyProductStatus>;
|
|
138681
|
+
isRovoEntitlementEnabledForTenant?: Maybe<Scalars['Boolean']['output']>;
|
|
138682
|
+
rovoAiFeaturesEnabledJiraProducts?: Maybe<Array<JiraRovoAiProduct>>;
|
|
138683
|
+
};
|
|
138684
|
+
export declare enum JiraRovoWithAiDisabledReason {
|
|
138685
|
+
NoRovoEntitlement = "NO_ROVO_ENTITLEMENT",
|
|
138686
|
+
NoUserContextAvailable = "NO_USER_CONTEXT_AVAILABLE",
|
|
138687
|
+
RbacAccessDenied = "RBAC_ACCESS_DENIED",
|
|
138688
|
+
RovoDisabledInAllJiraProducts = "ROVO_DISABLED_IN_ALL_JIRA_PRODUCTS"
|
|
138689
|
+
}
|
|
138690
|
+
export type JiraRovoWithAiEnabledInAnyJiraFamilyProductStatus = {
|
|
138691
|
+
__typename?: 'JiraRovoWithAiEnabledInAnyJiraFamilyProductStatus';
|
|
138692
|
+
disabledReason?: Maybe<JiraRovoWithAiDisabledReason>;
|
|
138693
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
138694
|
+
};
|
|
137918
138695
|
export type JiraSdlcSuggestions = JiraBaseNextActionsEntity & {
|
|
137919
138696
|
__typename?: 'JiraSDLCSuggestions';
|
|
137920
138697
|
approvedPullRequests?: Maybe<JiraIssuePullRequests>;
|
|
@@ -140238,6 +141015,16 @@ export type JiraSetTimelineBarColorModePayload = Payload & {
|
|
|
140238
141015
|
success: Scalars['Boolean']['output'];
|
|
140239
141016
|
view?: Maybe<JiraView>;
|
|
140240
141017
|
};
|
|
141018
|
+
export type JiraSetTimelineChildIssuePlanningModeInput = {
|
|
141019
|
+
childIssuePlanningMode: JiraIssueSearchTimelineChildIssuePlanningMode;
|
|
141020
|
+
viewId: Scalars['ID']['input'];
|
|
141021
|
+
};
|
|
141022
|
+
export type JiraSetTimelineChildIssuePlanningModePayload = Payload & {
|
|
141023
|
+
__typename?: 'JiraSetTimelineChildIssuePlanningModePayload';
|
|
141024
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141025
|
+
success: Scalars['Boolean']['output'];
|
|
141026
|
+
view?: Maybe<JiraView>;
|
|
141027
|
+
};
|
|
140241
141028
|
export type JiraSetTimelineHighlightedReleasesInput = {
|
|
140242
141029
|
highlightedReleases: Array<Scalars['ID']['input']>;
|
|
140243
141030
|
viewId: Scalars['ID']['input'];
|
|
@@ -141106,8 +141893,10 @@ export type JiraSprintStreamHubPayload = {
|
|
|
141106
141893
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
141107
141894
|
};
|
|
141108
141895
|
export type JiraSprintUpdateInput = {
|
|
141896
|
+
autoManaged?: InputMaybe<JiraAutoManagedSprintSetting>;
|
|
141109
141897
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
141110
141898
|
goal?: InputMaybe<Scalars['String']['input']>;
|
|
141899
|
+
incompleteCardsDestination?: InputMaybe<JiraInCompleteCardsDestinationInput>;
|
|
141111
141900
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
141112
141901
|
sprintId: Scalars['ID']['input'];
|
|
141113
141902
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -141136,6 +141925,7 @@ export type JiraStatus = MercuryOriginalProjectStatus & Node & {
|
|
|
141136
141925
|
id: Scalars['ID']['output'];
|
|
141137
141926
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
141138
141927
|
name?: Maybe<Scalars['String']['output']>;
|
|
141928
|
+
scope?: Maybe<JiraStatusScope>;
|
|
141139
141929
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
141140
141930
|
statusId: Scalars['String']['output'];
|
|
141141
141931
|
};
|
|
@@ -141244,6 +142034,14 @@ export type JiraStatusFieldPayload = Payload & {
|
|
|
141244
142034
|
export type JiraStatusInput = {
|
|
141245
142035
|
statusId: Scalars['ID']['input'];
|
|
141246
142036
|
};
|
|
142037
|
+
export type JiraStatusScope = {
|
|
142038
|
+
__typename?: 'JiraStatusScope';
|
|
142039
|
+
type?: Maybe<JiraStatusScopeType>;
|
|
142040
|
+
};
|
|
142041
|
+
export declare enum JiraStatusScopeType {
|
|
142042
|
+
Global = "GLOBAL",
|
|
142043
|
+
Project = "PROJECT"
|
|
142044
|
+
}
|
|
141247
142045
|
export type JiraStoryPoint = {
|
|
141248
142046
|
__typename?: 'JiraStoryPoint';
|
|
141249
142047
|
value: Scalars['Float']['output'];
|
|
@@ -146360,6 +147158,15 @@ export type JsmConversation = {
|
|
|
146360
147158
|
lastMessageAt?: Maybe<Scalars['DateTime']['output']>;
|
|
146361
147159
|
summary?: Maybe<Scalars['String']['output']>;
|
|
146362
147160
|
};
|
|
147161
|
+
export type JsmConversationAcceptInviteInput = {
|
|
147162
|
+
cloudId: Scalars['ID']['input'];
|
|
147163
|
+
inviteId: Scalars['ID']['input'];
|
|
147164
|
+
};
|
|
147165
|
+
export type JsmConversationAcceptInvitePayload = Payload & {
|
|
147166
|
+
__typename?: 'JsmConversationAcceptInvitePayload';
|
|
147167
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147168
|
+
success: Scalars['Boolean']['output'];
|
|
147169
|
+
};
|
|
146363
147170
|
export declare enum JsmConversationActivationState {
|
|
146364
147171
|
Disabled = "DISABLED",
|
|
146365
147172
|
Enabled = "ENABLED",
|
|
@@ -146370,6 +147177,15 @@ export type JsmConversationActiveSla = {
|
|
|
146370
147177
|
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
146371
147178
|
slaType?: Maybe<JsmConversationSlaType>;
|
|
146372
147179
|
};
|
|
147180
|
+
export declare enum JsmConversationAvailabilityOutcome {
|
|
147181
|
+
Available = "AVAILABLE",
|
|
147182
|
+
NotAvailable = "NOT_AVAILABLE"
|
|
147183
|
+
}
|
|
147184
|
+
export type JsmConversationAvailabilityResult = {
|
|
147185
|
+
__typename?: 'JsmConversationAvailabilityResult';
|
|
147186
|
+
criteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
147187
|
+
outcome?: Maybe<JsmConversationAvailabilityOutcome>;
|
|
147188
|
+
};
|
|
146373
147189
|
export type JsmConversationClaimConversationInput = {
|
|
146374
147190
|
cloudId: Scalars['ID']['input'];
|
|
146375
147191
|
conversationId: Scalars['ID']['input'];
|
|
@@ -146422,9 +147238,38 @@ export type JsmConversationEdge = {
|
|
|
146422
147238
|
export type JsmConversationHelpseekerSettings = {
|
|
146423
147239
|
__typename?: 'JsmConversationHelpseekerSettings';
|
|
146424
147240
|
activationState?: Maybe<JsmConversationActivationState>;
|
|
146425
|
-
|
|
147241
|
+
availability?: Maybe<JsmConversationAvailabilityResult>;
|
|
146426
147242
|
};
|
|
146427
147243
|
export type JsmConversationHelpseekerSettingsResult = JsmConversationHelpseekerSettings | QueryError;
|
|
147244
|
+
export type JsmConversationInvite = {
|
|
147245
|
+
__typename?: 'JsmConversationInvite';
|
|
147246
|
+
conversationAri?: Maybe<Scalars['ID']['output']>;
|
|
147247
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
147248
|
+
id: Scalars['ID']['output'];
|
|
147249
|
+
initiator?: Maybe<Scalars['ID']['output']>;
|
|
147250
|
+
recipient?: Maybe<Scalars['ID']['output']>;
|
|
147251
|
+
status?: Maybe<JsmConversationInviteStatus>;
|
|
147252
|
+
type?: Maybe<JsmConversationInviteType>;
|
|
147253
|
+
};
|
|
147254
|
+
export type JsmConversationInviteConnection = {
|
|
147255
|
+
__typename?: 'JsmConversationInviteConnection';
|
|
147256
|
+
edges?: Maybe<Array<JsmConversationInviteEdge>>;
|
|
147257
|
+
errors?: Maybe<Array<QueryError>>;
|
|
147258
|
+
nodes?: Maybe<Array<Maybe<JsmConversationInvite>>>;
|
|
147259
|
+
pageInfo: PageInfo;
|
|
147260
|
+
};
|
|
147261
|
+
export type JsmConversationInviteEdge = {
|
|
147262
|
+
__typename?: 'JsmConversationInviteEdge';
|
|
147263
|
+
cursor: Scalars['String']['output'];
|
|
147264
|
+
node?: Maybe<JsmConversationInvite>;
|
|
147265
|
+
};
|
|
147266
|
+
export declare enum JsmConversationInviteStatus {
|
|
147267
|
+
Accepted = "ACCEPTED",
|
|
147268
|
+
Cancelled = "CANCELLED",
|
|
147269
|
+
Expired = "EXPIRED",
|
|
147270
|
+
Pending = "PENDING",
|
|
147271
|
+
Rejected = "REJECTED"
|
|
147272
|
+
}
|
|
146428
147273
|
export declare enum JsmConversationInviteType {
|
|
146429
147274
|
Collaborate = "COLLABORATE",
|
|
146430
147275
|
Transfer = "TRANSFER"
|
|
@@ -146450,6 +147295,9 @@ export type JsmConversationMessage = {
|
|
|
146450
147295
|
sentAt?: Maybe<Scalars['DateTime']['output']>;
|
|
146451
147296
|
sequenceId?: Maybe<Scalars['String']['output']>;
|
|
146452
147297
|
source?: Maybe<JsmConversationMessageSource>;
|
|
147298
|
+
systemMessageKey?: Maybe<Scalars['String']['output']>;
|
|
147299
|
+
systemMessageMetadata?: Maybe<Array<JsmConversationSystemMessageMetadataEntry>>;
|
|
147300
|
+
visibility?: Maybe<JsmConversationMessageVisibility>;
|
|
146453
147301
|
};
|
|
146454
147302
|
export type JsmConversationMessageConnection = {
|
|
146455
147303
|
__typename?: 'JsmConversationMessageConnection';
|
|
@@ -146469,6 +147317,19 @@ export declare enum JsmConversationMessageSource {
|
|
|
146469
147317
|
RovoAssistant = "ROVO_ASSISTANT",
|
|
146470
147318
|
System = "SYSTEM"
|
|
146471
147319
|
}
|
|
147320
|
+
export declare enum JsmConversationMessageVisibility {
|
|
147321
|
+
Internal = "INTERNAL",
|
|
147322
|
+
Public = "PUBLIC"
|
|
147323
|
+
}
|
|
147324
|
+
export type JsmConversationRejectInviteInput = {
|
|
147325
|
+
cloudId: Scalars['ID']['input'];
|
|
147326
|
+
inviteId: Scalars['ID']['input'];
|
|
147327
|
+
};
|
|
147328
|
+
export type JsmConversationRejectInvitePayload = Payload & {
|
|
147329
|
+
__typename?: 'JsmConversationRejectInvitePayload';
|
|
147330
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147331
|
+
success: Scalars['Boolean']['output'];
|
|
147332
|
+
};
|
|
146472
147333
|
export type JsmConversationSettings = {
|
|
146473
147334
|
__typename?: 'JsmConversationSettings';
|
|
146474
147335
|
activationState?: Maybe<JsmConversationActivationState>;
|
|
@@ -146519,6 +147380,11 @@ export declare enum JsmConversationStatus {
|
|
|
146519
147380
|
Timeout = "TIMEOUT",
|
|
146520
147381
|
Unassigned = "UNASSIGNED"
|
|
146521
147382
|
}
|
|
147383
|
+
export type JsmConversationSystemMessageMetadataEntry = {
|
|
147384
|
+
__typename?: 'JsmConversationSystemMessageMetadataEntry';
|
|
147385
|
+
key: Scalars['String']['output'];
|
|
147386
|
+
value: Scalars['String']['output'];
|
|
147387
|
+
};
|
|
146522
147388
|
export type JsmConversationUpdate = JsmConversation | JsmConversationClaimedConversationMessage | QueryError;
|
|
146523
147389
|
export type JsmSolutionComposerFollowupTask = {
|
|
146524
147390
|
__typename?: 'JsmSolutionComposerFollowupTask';
|
|
@@ -147838,6 +148704,30 @@ export type KnowledgeBaseCrossSiteSearchConnection = {
|
|
|
147838
148704
|
pageInfo: PageInfo;
|
|
147839
148705
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
147840
148706
|
};
|
|
148707
|
+
export type KnowledgeBaseHealthDashboard = {
|
|
148708
|
+
__typename?: 'KnowledgeBaseHealthDashboard';
|
|
148709
|
+
articleCount?: Maybe<Scalars['Int']['output']>;
|
|
148710
|
+
articleViewCount?: Maybe<Scalars['Int']['output']>;
|
|
148711
|
+
errors: Array<KnowledgeBaseHealthDashboardMetricError>;
|
|
148712
|
+
externalArticleCount?: Maybe<Scalars['Int']['output']>;
|
|
148713
|
+
internalArticleCount?: Maybe<Scalars['Int']['output']>;
|
|
148714
|
+
projectIdentifier: Scalars['String']['output'];
|
|
148715
|
+
};
|
|
148716
|
+
export declare enum KnowledgeBaseHealthDashboardMetric {
|
|
148717
|
+
ArticleCount = "ARTICLE_COUNT",
|
|
148718
|
+
ArticleViewCount = "ARTICLE_VIEW_COUNT"
|
|
148719
|
+
}
|
|
148720
|
+
export type KnowledgeBaseHealthDashboardMetricError = {
|
|
148721
|
+
__typename?: 'KnowledgeBaseHealthDashboardMetricError';
|
|
148722
|
+
errorType: KnowledgeBaseHealthDashboardMetricErrorType;
|
|
148723
|
+
message: Scalars['String']['output'];
|
|
148724
|
+
metric: KnowledgeBaseHealthDashboardMetric;
|
|
148725
|
+
};
|
|
148726
|
+
export declare enum KnowledgeBaseHealthDashboardMetricErrorType {
|
|
148727
|
+
Permanent = "PERMANENT",
|
|
148728
|
+
Transient = "TRANSIENT"
|
|
148729
|
+
}
|
|
148730
|
+
export type KnowledgeBaseHealthDashboardResponse = KnowledgeBaseHealthDashboard | QueryError;
|
|
147841
148731
|
export type KnowledgeBaseInaccessibleLinkedSource = {
|
|
147842
148732
|
__typename?: 'KnowledgeBaseInaccessibleLinkedSource';
|
|
147843
148733
|
sourceType?: Maybe<Scalars['String']['output']>;
|
|
@@ -147918,6 +148808,17 @@ export type KnowledgeBaseQueryApiKnowledgeBaseArgs = {
|
|
|
147918
148808
|
sourceVisibility?: InputMaybe<Scalars['String']['input']>;
|
|
147919
148809
|
};
|
|
147920
148810
|
export type KnowledgeBaseResponse = KnowledgeBaseSources | QueryError;
|
|
148811
|
+
export type KnowledgeBaseSearchConversionByMonth = {
|
|
148812
|
+
__typename?: 'KnowledgeBaseSearchConversionByMonth';
|
|
148813
|
+
conversionRate: Scalars['Float']['output'];
|
|
148814
|
+
yearMonth: Scalars['String']['output'];
|
|
148815
|
+
};
|
|
148816
|
+
export type KnowledgeBaseSearchConversionMetrics = {
|
|
148817
|
+
__typename?: 'KnowledgeBaseSearchConversionMetrics';
|
|
148818
|
+
projectIdentifier: Scalars['String']['output'];
|
|
148819
|
+
searchConversionByMonth: Array<KnowledgeBaseSearchConversionByMonth>;
|
|
148820
|
+
};
|
|
148821
|
+
export type KnowledgeBaseSearchConversionMetricsResponse = KnowledgeBaseSearchConversionMetrics | QueryError;
|
|
147921
148822
|
export type KnowledgeBaseSearchFiltersInput = {
|
|
147922
148823
|
knowledgeBaseAppSources?: InputMaybe<Array<KnowledgeBaseAppSource>>;
|
|
147923
148824
|
sourceContainers?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -151024,6 +151925,7 @@ export type MarketplaceConsoleEdition = {
|
|
|
151024
151925
|
id: Scalars['ID']['output'];
|
|
151025
151926
|
isDecoupled?: Maybe<Scalars['Boolean']['output']>;
|
|
151026
151927
|
isDefault: Scalars['Boolean']['output'];
|
|
151928
|
+
licenseModel?: Maybe<MarketplaceConsoleLicenseModel>;
|
|
151027
151929
|
parentProduct?: Maybe<Scalars['String']['output']>;
|
|
151028
151930
|
pricingPlan: MarketplaceConsolePricingPlan;
|
|
151029
151931
|
type: MarketplaceConsoleEditionType;
|
|
@@ -151037,6 +151939,7 @@ export type MarketplaceConsoleEditionInput = {
|
|
|
151037
151939
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
151038
151940
|
isDecoupled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
151039
151941
|
isDefault: Scalars['Boolean']['input'];
|
|
151942
|
+
licenseModel?: InputMaybe<MarketplaceConsoleLicenseModel>;
|
|
151040
151943
|
parentProduct?: InputMaybe<Scalars['String']['input']>;
|
|
151041
151944
|
pricingPlan: MarketplaceConsolePricingPlanInput;
|
|
151042
151945
|
type: MarketplaceConsoleEditionType;
|
|
@@ -151274,6 +152177,11 @@ export type MarketplaceConsoleLegacyVendorLinks = {
|
|
|
151274
152177
|
donate?: Maybe<Scalars['String']['output']>;
|
|
151275
152178
|
evaluationLicense?: Maybe<Scalars['String']['output']>;
|
|
151276
152179
|
};
|
|
152180
|
+
export declare enum MarketplaceConsoleLicenseModel {
|
|
152181
|
+
Coupled = "COUPLED",
|
|
152182
|
+
Decoupled = "DECOUPLED",
|
|
152183
|
+
UsageBased = "USAGE_BASED"
|
|
152184
|
+
}
|
|
151277
152185
|
export type MarketplaceConsoleLink = {
|
|
151278
152186
|
__typename?: 'MarketplaceConsoleLink';
|
|
151279
152187
|
href: Scalars['String']['output'];
|
|
@@ -151430,6 +152338,34 @@ export type MarketplaceConsoleMakerPaymentInput = {
|
|
|
151430
152338
|
tax: MarketplaceConsoleTaxInput;
|
|
151431
152339
|
};
|
|
151432
152340
|
export type MarketplaceConsoleMakerResponse = MarketplaceConsoleKnownError | MarketplaceConsoleMutationVoidResponse;
|
|
152341
|
+
export type MarketplaceConsoleMeteredPricing = {
|
|
152342
|
+
__typename?: 'MarketplaceConsoleMeteredPricing';
|
|
152343
|
+
chargeElement: Scalars['String']['output'];
|
|
152344
|
+
chargeType: Scalars['String']['output'];
|
|
152345
|
+
tiers: Array<MarketplaceConsoleMeteredPricingTier>;
|
|
152346
|
+
tiersMode: Scalars['String']['output'];
|
|
152347
|
+
transformQuantity?: Maybe<MarketplaceConsoleTransformQuantity>;
|
|
152348
|
+
};
|
|
152349
|
+
export type MarketplaceConsoleMeteredPricingInput = {
|
|
152350
|
+
chargeElement: Scalars['String']['input'];
|
|
152351
|
+
chargeType: Scalars['String']['input'];
|
|
152352
|
+
tiers: Array<MarketplaceConsoleMeteredPricingTierInput>;
|
|
152353
|
+
tiersMode: Scalars['String']['input'];
|
|
152354
|
+
transformQuantity?: InputMaybe<MarketplaceConsoleTransformQuantityInput>;
|
|
152355
|
+
};
|
|
152356
|
+
export type MarketplaceConsoleMeteredPricingTier = {
|
|
152357
|
+
__typename?: 'MarketplaceConsoleMeteredPricingTier';
|
|
152358
|
+
ceiling?: Maybe<Scalars['Int']['output']>;
|
|
152359
|
+
flatAmount?: Maybe<Scalars['Float']['output']>;
|
|
152360
|
+
floor: Scalars['Int']['output'];
|
|
152361
|
+
unitAmount?: Maybe<Scalars['Float']['output']>;
|
|
152362
|
+
};
|
|
152363
|
+
export type MarketplaceConsoleMeteredPricingTierInput = {
|
|
152364
|
+
ceiling?: InputMaybe<Scalars['Int']['input']>;
|
|
152365
|
+
flatAmount?: InputMaybe<Scalars['Float']['input']>;
|
|
152366
|
+
floor: Scalars['Int']['input'];
|
|
152367
|
+
unitAmount?: InputMaybe<Scalars['Float']['input']>;
|
|
152368
|
+
};
|
|
151433
152369
|
export type MarketplaceConsoleMutationApi = {
|
|
151434
152370
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
151435
152371
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
@@ -151565,6 +152501,7 @@ export type MarketplaceConsoleOffering = {
|
|
|
151565
152501
|
__typename?: 'MarketplaceConsoleOffering';
|
|
151566
152502
|
id: Scalars['ID']['output'];
|
|
151567
152503
|
isDecoupled: Scalars['Boolean']['output'];
|
|
152504
|
+
licenseModel?: Maybe<MarketplaceConsoleLicenseModel>;
|
|
151568
152505
|
name: Scalars['String']['output'];
|
|
151569
152506
|
parentProduct: Scalars['String']['output'];
|
|
151570
152507
|
status: MarketplaceConsoleOfferingStatus;
|
|
@@ -151709,6 +152646,7 @@ export type MarketplaceConsolePricingPlan = {
|
|
|
151709
152646
|
currency: MarketplaceConsolePricingCurrency;
|
|
151710
152647
|
expertDiscountOptOut: Scalars['Boolean']['output'];
|
|
151711
152648
|
isDefaultPricing?: Maybe<Scalars['Boolean']['output']>;
|
|
152649
|
+
meteredPricing?: Maybe<MarketplaceConsoleMeteredPricing>;
|
|
151712
152650
|
status: MarketplaceConsolePricingPlanStatus;
|
|
151713
152651
|
tieredPricing: Array<MarketplaceConsolePricingItem>;
|
|
151714
152652
|
};
|
|
@@ -151716,6 +152654,7 @@ export type MarketplaceConsolePricingPlanInput = {
|
|
|
151716
152654
|
currency: MarketplaceConsolePricingCurrency;
|
|
151717
152655
|
expertDiscountOptOut: Scalars['Boolean']['input'];
|
|
151718
152656
|
isDefaultPricing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
152657
|
+
meteredPricing?: InputMaybe<MarketplaceConsoleMeteredPricingInput>;
|
|
151719
152658
|
status: MarketplaceConsolePricingPlanStatus;
|
|
151720
152659
|
tieredPricing: Array<MarketplaceConsolePricingItemInput>;
|
|
151721
152660
|
};
|
|
@@ -152124,6 +153063,15 @@ export type MarketplaceConsoleTokenDetails = {
|
|
|
152124
153063
|
links: Array<Maybe<MarketplaceConsolePrivateListingsLink>>;
|
|
152125
153064
|
token: Scalars['String']['output'];
|
|
152126
153065
|
};
|
|
153066
|
+
export type MarketplaceConsoleTransformQuantity = {
|
|
153067
|
+
__typename?: 'MarketplaceConsoleTransformQuantity';
|
|
153068
|
+
divideBy: Scalars['Int']['output'];
|
|
153069
|
+
round: Scalars['String']['output'];
|
|
153070
|
+
};
|
|
153071
|
+
export type MarketplaceConsoleTransformQuantityInput = {
|
|
153072
|
+
divideBy: Scalars['Int']['input'];
|
|
153073
|
+
round: Scalars['String']['input'];
|
|
153074
|
+
};
|
|
152127
153075
|
export type MarketplaceConsoleUpdateAppDetailsRequest = {
|
|
152128
153076
|
appKey: Scalars['ID']['input'];
|
|
152129
153077
|
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -154403,14 +155351,14 @@ export type MediaItem = {
|
|
|
154403
155351
|
};
|
|
154404
155352
|
export type MediaItemDescriptorInput = {
|
|
154405
155353
|
collection?: InputMaybe<Scalars['String']['input']>;
|
|
154406
|
-
fileId
|
|
155354
|
+
fileId?: InputMaybe<Scalars['ID']['input']>;
|
|
154407
155355
|
version?: InputMaybe<Scalars['Int']['input']>;
|
|
154408
155356
|
};
|
|
154409
155357
|
export type MediaItemsInput = {
|
|
154410
|
-
clientId
|
|
154411
|
-
descriptors
|
|
155358
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
155359
|
+
descriptors?: InputMaybe<Array<InputMaybe<MediaItemDescriptorInput>>>;
|
|
154412
155360
|
includeHashForDuplicateFiles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
154413
|
-
token
|
|
155361
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
154414
155362
|
};
|
|
154415
155363
|
export type MediaPickerUserToken = {
|
|
154416
155364
|
__typename?: 'MediaPickerUserToken';
|
|
@@ -154446,7 +155394,7 @@ export type MenusLookAndFeel = {
|
|
|
154446
155394
|
color?: Maybe<Scalars['String']['output']>;
|
|
154447
155395
|
hoverOrFocus?: Maybe<Array<Maybe<MapOfStringToString>>>;
|
|
154448
155396
|
};
|
|
154449
|
-
export type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | TownsquareGoal | TownsquareProject;
|
|
155397
|
+
export type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | MercuryOrganization | TownsquareGoal | TownsquareProject;
|
|
154450
155398
|
export type MercuryActivityHistoryMetadata = {
|
|
154451
155399
|
kind: MercuryActivityHistoryUpdatedFieldKind;
|
|
154452
155400
|
};
|
|
@@ -156771,6 +157719,7 @@ export type MercuryFocusAreaCostSummary = {
|
|
|
156771
157719
|
};
|
|
156772
157720
|
export type MercuryFocusAreaCustomFieldActivityHistoryMetadata = MercuryActivityHistoryMetadata & {
|
|
156773
157721
|
__typename?: 'MercuryFocusAreaCustomFieldActivityHistoryMetadata';
|
|
157722
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
156774
157723
|
kind: MercuryActivityHistoryUpdatedFieldKind;
|
|
156775
157724
|
searchKey: Scalars['String']['output'];
|
|
156776
157725
|
};
|
|
@@ -156922,11 +157871,13 @@ export declare enum MercuryFocusAreaPermission {
|
|
|
156922
157871
|
Archive = "ARCHIVE",
|
|
156923
157872
|
CreateGoalLink = "CREATE_GOAL_LINK",
|
|
156924
157873
|
CreateLink = "CREATE_LINK",
|
|
157874
|
+
CreateOrganizationSponsor = "CREATE_ORGANIZATION_SPONSOR",
|
|
156925
157875
|
CreateUpdate = "CREATE_UPDATE",
|
|
156926
157876
|
CreateWorkLink = "CREATE_WORK_LINK",
|
|
156927
157877
|
Delete = "DELETE",
|
|
156928
157878
|
DeleteGoalLink = "DELETE_GOAL_LINK",
|
|
156929
157879
|
DeleteLink = "DELETE_LINK",
|
|
157880
|
+
DeleteOrganizationSponsor = "DELETE_ORGANIZATION_SPONSOR",
|
|
156930
157881
|
DeleteUpdate = "DELETE_UPDATE",
|
|
156931
157882
|
DeleteWorkLink = "DELETE_WORK_LINK",
|
|
156932
157883
|
EditAbout = "EDIT_ABOUT",
|
|
@@ -158813,11 +159764,13 @@ export type MercuryOrganizationMembershipEdge = {
|
|
|
158813
159764
|
};
|
|
158814
159765
|
export declare enum MercuryOrganizationPermission {
|
|
158815
159766
|
Archive = "ARCHIVE",
|
|
159767
|
+
CreateFocusAreaSponsor = "CREATE_FOCUS_AREA_SPONSOR",
|
|
158816
159768
|
CreateGoalLink = "CREATE_GOAL_LINK",
|
|
158817
159769
|
CreateLink = "CREATE_LINK",
|
|
158818
159770
|
CreateUpdate = "CREATE_UPDATE",
|
|
158819
159771
|
CreateWorkLink = "CREATE_WORK_LINK",
|
|
158820
159772
|
Delete = "DELETE",
|
|
159773
|
+
DeleteFocusAreaSponsor = "DELETE_FOCUS_AREA_SPONSOR",
|
|
158821
159774
|
DeleteGoalLink = "DELETE_GOAL_LINK",
|
|
158822
159775
|
DeleteLink = "DELETE_LINK",
|
|
158823
159776
|
DeleteUpdate = "DELETE_UPDATE",
|
|
@@ -160992,6 +161945,7 @@ export type MercurySetPlanBaselineInput = {
|
|
|
160992
161945
|
export type MercurySetPlanBaselinePayload = Payload & {
|
|
160993
161946
|
__typename?: 'MercurySetPlanBaselinePayload';
|
|
160994
161947
|
errors?: Maybe<Array<MutationError>>;
|
|
161948
|
+
plan?: Maybe<MercuryPlan>;
|
|
160995
161949
|
success: Scalars['Boolean']['output'];
|
|
160996
161950
|
};
|
|
160997
161951
|
export type MercurySetPreferenceInput = {
|
|
@@ -163218,6 +164172,7 @@ export type Mutation = {
|
|
|
163218
164172
|
avpanalytics_discardMetricUpdates?: Maybe<AvpAnalyticsDiscardMetricUpdatesPayload>;
|
|
163219
164173
|
avpanalytics_discardModelUpdates?: Maybe<AvpAnalyticsDiscardModelUpdatesPayload>;
|
|
163220
164174
|
avpanalytics_purgeMetric?: Maybe<AvpAnalyticsDeleteMetricPayload>;
|
|
164175
|
+
avpanalytics_purgeModel?: Maybe<AvpAnalyticsDeleteModelPayload>;
|
|
163221
164176
|
avpanalytics_updateMetric?: Maybe<AvpAnalyticsUpdateMetricPayload>;
|
|
163222
164177
|
avpanalytics_updateModel?: Maybe<AvpAnalyticsUpdateModelPayload>;
|
|
163223
164178
|
avpanalytics_updatePermission?: Maybe<AvpAnalyticsUpdatePermissionPayload>;
|
|
@@ -163519,6 +164474,8 @@ export type Mutation = {
|
|
|
163519
164474
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
163520
164475
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
163521
164476
|
csmAi_updateAgentIdentity?: Maybe<CsmAiUpdateAgentIdentityPayload>;
|
|
164477
|
+
csmAi_updateAgentToolConfiguration?: Maybe<CsmAiUpdateAgentToolConfigurationPayload>;
|
|
164478
|
+
csmAi_updateAgentTools?: Maybe<CsmAiUpdateAgentToolsPayload>;
|
|
163522
164479
|
csmAi_updateCoachingContent?: Maybe<CsmAiUpdateCoachingContentPayload>;
|
|
163523
164480
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
163524
164481
|
csmAi_updateKnowledgeSource?: Maybe<CsmAiKnowledgeSourcePayload>;
|
|
@@ -164028,6 +164985,7 @@ export type Mutation = {
|
|
|
164028
164985
|
jira_setLogo?: Maybe<JiraSetLogoPayload>;
|
|
164029
164986
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
164030
164987
|
jira_setTimelineBarColorMode?: Maybe<JiraSetTimelineBarColorModePayload>;
|
|
164988
|
+
jira_setTimelineChildIssuePlanningMode?: Maybe<JiraSetTimelineChildIssuePlanningModePayload>;
|
|
164031
164989
|
jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
|
|
164032
164990
|
jira_setTimelineSearchFilters?: Maybe<JiraSetTimelineSearchFiltersPayload>;
|
|
164033
164991
|
jira_setTimelineViewFieldSets?: Maybe<JiraSetTimelineViewFieldSetsPayload>;
|
|
@@ -164078,9 +165036,11 @@ export type Mutation = {
|
|
|
164078
165036
|
jsmChannels_updateRovoServiceToolsDefinitions?: Maybe<JsmChannelsUpdateRovoServiceToolsPayload>;
|
|
164079
165037
|
jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
|
|
164080
165038
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
165039
|
+
jsmConversation_acceptInvite?: Maybe<JsmConversationAcceptInvitePayload>;
|
|
164081
165040
|
jsmConversation_claimConversation?: Maybe<JsmConversationClaimConversationPayload>;
|
|
164082
165041
|
jsmConversation_closeConversation?: Maybe<JsmConversationCloseConversationPayload>;
|
|
164083
165042
|
jsmConversation_createInvite?: Maybe<JsmConversationCreateInvitePayload>;
|
|
165043
|
+
jsmConversation_rejectInvite?: Maybe<JsmConversationRejectInvitePayload>;
|
|
164084
165044
|
jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
|
|
164085
165045
|
jsw?: Maybe<JswMutation>;
|
|
164086
165046
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
@@ -164193,6 +165153,8 @@ export type Mutation = {
|
|
|
164193
165153
|
projects_addTeamContributors?: Maybe<TownsquareProjectsAddTeamContributorsPayload>;
|
|
164194
165154
|
projects_addView?: Maybe<TownsquareProjectsAddViewPayload>;
|
|
164195
165155
|
projects_clone?: Maybe<TownsquareProjectsClonePayload>;
|
|
165156
|
+
projects_connectMsteamsChannels?: Maybe<TownsquareProjectsConnectMsteamsChannelsPayload>;
|
|
165157
|
+
projects_connectSlackChannels?: Maybe<TownsquareProjectsConnectSlackChannelsPayload>;
|
|
164196
165158
|
projects_create?: Maybe<TownsquareProjectsCreatePayload>;
|
|
164197
165159
|
projects_createComment?: Maybe<TownsquareProjectsCreateCommentPayload>;
|
|
164198
165160
|
projects_createDecision?: Maybe<TownsquareProjectsCreateDecisionPayload>;
|
|
@@ -165602,6 +166564,10 @@ export type MutationAvpanalytics_PurgeMetricArgs = {
|
|
|
165602
166564
|
cloudId: Scalars['ID']['input'];
|
|
165603
166565
|
input: AvpAnalyticsPurgeMetricInput;
|
|
165604
166566
|
};
|
|
166567
|
+
export type MutationAvpanalytics_PurgeModelArgs = {
|
|
166568
|
+
cloudId: Scalars['ID']['input'];
|
|
166569
|
+
input?: InputMaybe<AvpAnalyticsPurgeModelInput>;
|
|
166570
|
+
};
|
|
165605
166571
|
export type MutationAvpanalytics_UpdateMetricArgs = {
|
|
165606
166572
|
cloudId: Scalars['ID']['input'];
|
|
165607
166573
|
input: AvpAnalyticsUpdateMetricInput;
|
|
@@ -166703,6 +167669,17 @@ export type MutationCsmAi_UpdateAgentIdentityArgs = {
|
|
|
166703
167669
|
helpCenterAri: Scalars['ID']['input'];
|
|
166704
167670
|
input?: InputMaybe<CsmAiUpdateAgentInput>;
|
|
166705
167671
|
};
|
|
167672
|
+
export type MutationCsmAi_UpdateAgentToolConfigurationArgs = {
|
|
167673
|
+
csmAgentId: Scalars['ID']['input'];
|
|
167674
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
167675
|
+
input: CsmAiAgentToolConfigurationInput;
|
|
167676
|
+
toolId: Scalars['ID']['input'];
|
|
167677
|
+
};
|
|
167678
|
+
export type MutationCsmAi_UpdateAgentToolsArgs = {
|
|
167679
|
+
csmAgentId: Scalars['ID']['input'];
|
|
167680
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
167681
|
+
input: CsmAiUpdateAgentToolsInput;
|
|
167682
|
+
};
|
|
166706
167683
|
export type MutationCsmAi_UpdateCoachingContentArgs = {
|
|
166707
167684
|
csmAiAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
166708
167685
|
csmAiCoachingContentId: Scalars['ID']['input'];
|
|
@@ -168324,6 +169301,9 @@ export type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
|
|
|
168324
169301
|
export type MutationJira_SetTimelineBarColorModeArgs = {
|
|
168325
169302
|
input: JiraSetTimelineBarColorModeInput;
|
|
168326
169303
|
};
|
|
169304
|
+
export type MutationJira_SetTimelineChildIssuePlanningModeArgs = {
|
|
169305
|
+
input: JiraSetTimelineChildIssuePlanningModeInput;
|
|
169306
|
+
};
|
|
168327
169307
|
export type MutationJira_SetTimelineHighlightedReleasesArgs = {
|
|
168328
169308
|
cloudId: Scalars['ID']['input'];
|
|
168329
169309
|
input: JiraSetTimelineHighlightedReleasesInput;
|
|
@@ -168500,6 +169480,9 @@ export type MutationJsmChannels_UpdateTaskAgentConfigurationArgs = {
|
|
|
168500
169480
|
input: JsmChannelsTaskAgentConfigurationInput;
|
|
168501
169481
|
jiraProjectAri: Scalars['ID']['input'];
|
|
168502
169482
|
};
|
|
169483
|
+
export type MutationJsmConversation_AcceptInviteArgs = {
|
|
169484
|
+
input: JsmConversationAcceptInviteInput;
|
|
169485
|
+
};
|
|
168503
169486
|
export type MutationJsmConversation_ClaimConversationArgs = {
|
|
168504
169487
|
input: JsmConversationClaimConversationInput;
|
|
168505
169488
|
};
|
|
@@ -168509,6 +169492,9 @@ export type MutationJsmConversation_CloseConversationArgs = {
|
|
|
168509
169492
|
export type MutationJsmConversation_CreateInviteArgs = {
|
|
168510
169493
|
input: JsmConversationCreateInviteInput;
|
|
168511
169494
|
};
|
|
169495
|
+
export type MutationJsmConversation_RejectInviteArgs = {
|
|
169496
|
+
input: JsmConversationRejectInviteInput;
|
|
169497
|
+
};
|
|
168512
169498
|
export type MutationJsmConversation_UpdateSettingsArgs = {
|
|
168513
169499
|
input: JsmConversationSettingsInput;
|
|
168514
169500
|
};
|
|
@@ -168895,6 +169881,12 @@ export type MutationProjects_AddViewArgs = {
|
|
|
168895
169881
|
export type MutationProjects_CloneArgs = {
|
|
168896
169882
|
input: TownsquareProjectsCloneInput;
|
|
168897
169883
|
};
|
|
169884
|
+
export type MutationProjects_ConnectMsteamsChannelsArgs = {
|
|
169885
|
+
input: TownsquareProjectsConnectMsteamsChannelsInput;
|
|
169886
|
+
};
|
|
169887
|
+
export type MutationProjects_ConnectSlackChannelsArgs = {
|
|
169888
|
+
input: TownsquareProjectsConnectSlackChannelsInput;
|
|
169889
|
+
};
|
|
168898
169890
|
export type MutationProjects_CreateArgs = {
|
|
168899
169891
|
input: TownsquareProjectsCreateInput;
|
|
168900
169892
|
};
|
|
@@ -173262,15 +174254,18 @@ export type Query = {
|
|
|
173262
174254
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
173263
174255
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
173264
174256
|
agentWorkspace_services?: Maybe<AgentWorkspaceServiceConnection>;
|
|
174257
|
+
agentWorkspace_servicesConfiguredInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
173265
174258
|
agentWorkspace_servicesMappedToSkillsInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
173266
174259
|
agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
173267
174260
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
174261
|
+
agentWorkspace_siteWfoStatus?: Maybe<AgentWorkspaceSiteWfoStatus>;
|
|
173268
174262
|
agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
173269
174263
|
agentWorkspace_skillCategoriesInProject?: Maybe<AgentWorkspaceProjectSkillCategoryConnection>;
|
|
173270
174264
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
173271
174265
|
agentWorkspace_skillsInCategory?: Maybe<AgentWorkspaceSkillConnection>;
|
|
173272
174266
|
agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
173273
174267
|
agentWorkspace_smartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
|
|
174268
|
+
agentWorkspace_smartRoutingDryRunTickets?: Maybe<AgentWorkspaceSmartRoutingDryRunTicketsPayload>;
|
|
173274
174269
|
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
173275
174270
|
agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
173276
174271
|
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
@@ -173345,7 +174340,7 @@ export type Query = {
|
|
|
173345
174340
|
assetsDM_dataDictionaries?: Maybe<AssetsDmDataDictionaryResponse>;
|
|
173346
174341
|
assetsDM_dataDictionaryGroupValues?: Maybe<AssetsDmDataDictionaryGroupValuesResponse>;
|
|
173347
174342
|
assetsDM_dataDictionaryGroups?: Maybe<AssetsDmDataDictionaryGroupsResponse>;
|
|
173348
|
-
assetsDM_dataSource?: Maybe<
|
|
174343
|
+
assetsDM_dataSource?: Maybe<AssetsDmDataSourceDetail>;
|
|
173349
174344
|
assetsDM_dataSourceConfig?: Maybe<AssetsDmDataSourceConfig>;
|
|
173350
174345
|
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
173351
174346
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
@@ -173402,6 +174397,7 @@ export type Query = {
|
|
|
173402
174397
|
assetsVertical_customInsightResult?: Maybe<AssetsVerticalCustomInsightResultUnion>;
|
|
173403
174398
|
assetsVertical_customInsights?: Maybe<AssetsVerticalCustomInsightsResult>;
|
|
173404
174399
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
174400
|
+
assetsVertical_depreciationRuleByAssetTypesTracking?: Maybe<AssetsVerticalDepreciationRuleByAssetTypesTrackingResult>;
|
|
173405
174401
|
assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
|
|
173406
174402
|
assetsVertical_hardwareCountByStatus?: Maybe<AssetsVerticalHardwareCountByStatusResult>;
|
|
173407
174403
|
assetsVertical_hardwareObjectTypes?: Maybe<AssetsVerticalHardwareObjectTypesResult>;
|
|
@@ -173467,6 +174463,7 @@ export type Query = {
|
|
|
173467
174463
|
avp_getDashboardIdentityAccess?: Maybe<AvpDashboardIdentityAccess>;
|
|
173468
174464
|
avp_getDashboardResourcePermission?: Maybe<AvpDashboardResourcePermission>;
|
|
173469
174465
|
avp_getDashboardTemplateJson?: Maybe<Scalars['String']['output']>;
|
|
174466
|
+
avp_getDashboardTemplateJsonById?: Maybe<Scalars['String']['output']>;
|
|
173470
174467
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
173471
174468
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
173472
174469
|
avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
|
|
@@ -173505,6 +174502,7 @@ export type Query = {
|
|
|
173505
174502
|
catchupVersionDiffMetadataForContent?: Maybe<CatchupVersionDiffMetadataResponse>;
|
|
173506
174503
|
ccp?: Maybe<CcpQueryApi>;
|
|
173507
174504
|
ccp_catalogAccounts?: Maybe<Array<Maybe<CcpCatalogAccount>>>;
|
|
174505
|
+
ccp_concessions?: Maybe<Array<Maybe<CcpConcession>>>;
|
|
173508
174506
|
ccp_entitlement?: Maybe<CcpEntitlement>;
|
|
173509
174507
|
ccp_entitlementTemplates?: Maybe<Array<Maybe<CcpEntitlementTemplate>>>;
|
|
173510
174508
|
ccp_entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
@@ -173775,6 +174773,7 @@ export type Query = {
|
|
|
173775
174773
|
convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
|
|
173776
174774
|
convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
|
|
173777
174775
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
174776
|
+
convoai_searchAgent?: Maybe<ConvoAiSearchAgentPayload>;
|
|
173778
174777
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
173779
174778
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
173780
174779
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
@@ -173866,12 +174865,14 @@ export type Query = {
|
|
|
173866
174865
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
173867
174866
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
173868
174867
|
devai_autodevNextAssignedWorkstreamTasks?: Maybe<DevAiAutodevNextAssignedWorkstreamTaskConnection>;
|
|
174868
|
+
devai_autodevNextGlobalDashboard?: Maybe<DevAiAutodevNextGlobalDashboard>;
|
|
173869
174869
|
devai_autodevNextJiraProjectAvailability?: Maybe<DevAiAutodevNextJiraProjectAvailabilityPayload>;
|
|
173870
174870
|
devai_autodevNextMyWorkItems?: Maybe<DevAiAutodevNextWorkItemConnection>;
|
|
173871
174871
|
devai_autodevNextUsageCurrentCounts?: Maybe<DevAiAutodevNextCurrentUsageCounts>;
|
|
173872
174872
|
devai_autodevNextUsageTransitionCounts?: Maybe<DevAiAutodevNextTransitionUsageCounts>;
|
|
173873
174873
|
devai_autodevNextWorkstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
173874
174874
|
devai_autodevNextWorkstreamSweepSummary?: Maybe<DevAiAutodevNextWorkstreamSweepSummaryPayload>;
|
|
174875
|
+
devai_autodevNextWorkstreamTasks?: Maybe<DevAiAutodevNextWorkstreamTaskConnection>;
|
|
173875
174876
|
devai_autodevNextWorkstreams?: Maybe<DevAiAutodevNextWorkstreamConnection>;
|
|
173876
174877
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
173877
174878
|
devai_checkEntitlements: Scalars['Boolean']['output'];
|
|
@@ -173991,6 +174992,7 @@ export type Query = {
|
|
|
173991
174992
|
graphInference_getRelatedRepos?: Maybe<GraphInferenceGetRelatedReposResponse>;
|
|
173992
174993
|
graphInference_getRelatedReposV2?: Maybe<GraphInferenceGetRelatedReposV2Response>;
|
|
173993
174994
|
graphInference_getRelatedReposV3?: Maybe<GraphInferenceGetRelatedReposV3Response>;
|
|
174995
|
+
graphInference_getSimilarJiraItems?: Maybe<GraphInferenceGetSimilarJiraItemsResponse>;
|
|
173994
174996
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
173995
174997
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
173996
174998
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
@@ -174236,6 +175238,7 @@ export type Query = {
|
|
|
174236
175238
|
graphStoreV2_atlassianUserSubmittedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSubmittedFocusAskInverseConnection>;
|
|
174237
175239
|
graphStoreV2_atlassianUserTrashedConfluenceContent?: Maybe<GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentConnection>;
|
|
174238
175240
|
graphStoreV2_atlassianUserTrashedConfluenceContentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentInverseConnection>;
|
|
175241
|
+
graphStoreV2_atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
174239
175242
|
graphStoreV2_atlassianUserTriggeredExternalDeployment?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentConnection>;
|
|
174240
175243
|
graphStoreV2_atlassianUserTriggeredExternalDeploymentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentInverseConnection>;
|
|
174241
175244
|
graphStoreV2_atlassianUserUpdatedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianGoalConnection>;
|
|
@@ -174680,6 +175683,8 @@ export type Query = {
|
|
|
174680
175683
|
graphStoreV2_focusOrganizationHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalInverseConnection>;
|
|
174681
175684
|
graphStoreV2_focusOrganizationHasFocusOrganizationMembership?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipConnection>;
|
|
174682
175685
|
graphStoreV2_focusOrganizationHasFocusOrganizationMembershipInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipInverseConnection>;
|
|
175686
|
+
graphStoreV2_focusOrganizationSponsorsFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection>;
|
|
175687
|
+
graphStoreV2_focusOrganizationSponsorsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseConnection>;
|
|
174683
175688
|
graphStoreV2_focusRiskHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection>;
|
|
174684
175689
|
graphStoreV2_focusRiskHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection>;
|
|
174685
175690
|
graphStoreV2_focusStrategicPlanContributesToFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection>;
|
|
@@ -174868,6 +175873,7 @@ export type Query = {
|
|
|
174868
175873
|
graphStoreV2_repositoryEntityIsBitbucketRepositoryInverse?: Maybe<GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryInverseConnection>;
|
|
174869
175874
|
graphStoreV2_rovoAgentActsAsAtlassianUser?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserConnection>;
|
|
174870
175875
|
graphStoreV2_rovoAgentActsAsAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseConnection>;
|
|
175876
|
+
graphStoreV2_rovoAgentHasAtlassianAgentSessionInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection>;
|
|
174871
175877
|
graphStoreV2_talentPositionLinksExternalPosition?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection>;
|
|
174872
175878
|
graphStoreV2_talentPositionLinksExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionInverseConnection>;
|
|
174873
175879
|
graphStoreV2_talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
|
|
@@ -175007,6 +176013,7 @@ export type Query = {
|
|
|
175007
176013
|
graphStore_atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
175008
176014
|
graphStore_atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
175009
176015
|
graphStore_atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
176016
|
+
graphStore_atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
175010
176017
|
graphStore_atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
|
|
175011
176018
|
graphStore_atlassianUserUpdatedExternalCampaignInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignInverseConnection>;
|
|
175012
176019
|
graphStore_atlassianUserUpdatedExternalCase?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCaseConnection>;
|
|
@@ -175465,6 +176472,10 @@ export type Query = {
|
|
|
175465
176472
|
graphStore_mercuryOrganizationHasAtlasGoalInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasAtlasGoalConnection>;
|
|
175466
176473
|
graphStore_mercuryOrganizationHasMercuryOrganizationMembership?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipConnection>;
|
|
175467
176474
|
graphStore_mercuryOrganizationHasMercuryOrganizationMembershipInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipInverseConnection>;
|
|
176475
|
+
graphStore_mercuryOrganizationSponsorsFocusArea?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
176476
|
+
graphStore_mercuryOrganizationSponsorsFocusAreaBatch?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
176477
|
+
graphStore_mercuryOrganizationSponsorsFocusAreaInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseConnection>;
|
|
176478
|
+
graphStore_mercuryOrganizationSponsorsFocusAreaInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
175468
176479
|
graphStore_onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
|
|
175469
176480
|
graphStore_onPremProjectHasIssueInverse?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueInverseConnection>;
|
|
175470
176481
|
graphStore_operationsContainerImpactedByIncident?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentConnection>;
|
|
@@ -175613,6 +176624,7 @@ export type Query = {
|
|
|
175613
176624
|
graphStore_riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
175614
176625
|
graphStore_rovoAgentActsAsIdentityUser?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserConnection>;
|
|
175615
176626
|
graphStore_rovoAgentActsAsIdentityUserInverse?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseConnection>;
|
|
176627
|
+
graphStore_rovoAgentHasAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection>;
|
|
175616
176628
|
graphStore_scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
175617
176629
|
graphStore_scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
175618
176630
|
graphStore_secodaDownstreamLineageBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
@@ -176170,6 +177182,7 @@ export type Query = {
|
|
|
176170
177182
|
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
|
|
176171
177183
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
176172
177184
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
177185
|
+
jira_rovoEnablementStatus?: Maybe<JiraRovoEnablementStatus>;
|
|
176173
177186
|
jira_sprintField?: Maybe<JiraJqlField>;
|
|
176174
177187
|
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
176175
177188
|
jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
|
|
@@ -176201,6 +177214,7 @@ export type Query = {
|
|
|
176201
177214
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
176202
177215
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
176203
177216
|
jsmConversation_helpseekerSetting?: Maybe<JsmConversationHelpseekerSettingsResult>;
|
|
177217
|
+
jsmConversation_invitesForAgent?: Maybe<JsmConversationInviteConnection>;
|
|
176204
177218
|
jsmConversation_mediaConfiguration?: Maybe<JsmConversationMediaConfigurationResult>;
|
|
176205
177219
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
176206
177220
|
jsmConversation_myActiveConversations?: Maybe<JsmConversationConnection>;
|
|
@@ -176242,8 +177256,10 @@ export type Query = {
|
|
|
176242
177256
|
knowledgeBase_agentSearch?: Maybe<KnowledgeBaseAgentArticleSearchResponse>;
|
|
176243
177257
|
knowledgeBase_confluenceAppLinkDetails?: Maybe<KnowledgeBaseConfluenceAppLinkDetailsResponse>;
|
|
176244
177258
|
knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
|
|
177259
|
+
knowledgeBase_healthDashboard?: Maybe<KnowledgeBaseHealthDashboardResponse>;
|
|
176245
177260
|
knowledgeBase_linkedSources?: Maybe<KnowledgeBaseLinkedSourcesResponse>;
|
|
176246
177261
|
knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
|
|
177262
|
+
knowledgeBase_searchConversionMetrics?: Maybe<KnowledgeBaseSearchConversionMetricsResponse>;
|
|
176247
177263
|
knowledgeBase_sourceSuggestions?: Maybe<KnowledgeBaseSourceSuggestionsResponse>;
|
|
176248
177264
|
knowledgeBase_userCapabilities?: Maybe<KnowledgeBaseUserCapabilitiesResponse>;
|
|
176249
177265
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
@@ -177479,6 +178495,13 @@ export type QueryAgentWorkspace_ServicesArgs = {
|
|
|
177479
178495
|
projectId: Scalars['ID']['input'];
|
|
177480
178496
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
177481
178497
|
};
|
|
178498
|
+
export type QueryAgentWorkspace_ServicesConfiguredInProjectArgs = {
|
|
178499
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
178500
|
+
cloudId: Scalars['ID']['input'];
|
|
178501
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
178502
|
+
projectId: Scalars['ID']['input'];
|
|
178503
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
178504
|
+
};
|
|
177482
178505
|
export type QueryAgentWorkspace_ServicesMappedToSkillsInProjectArgs = {
|
|
177483
178506
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
177484
178507
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -177495,6 +178518,9 @@ export type QueryAgentWorkspace_ShiftsArgs = {
|
|
|
177495
178518
|
input: AgentWorkspaceShiftsQueryInput;
|
|
177496
178519
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
177497
178520
|
};
|
|
178521
|
+
export type QueryAgentWorkspace_SiteWfoStatusArgs = {
|
|
178522
|
+
cloudId: Scalars['ID']['input'];
|
|
178523
|
+
};
|
|
177498
178524
|
export type QueryAgentWorkspace_SkillCategoriesArgs = {
|
|
177499
178525
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
177500
178526
|
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -177506,6 +178532,7 @@ export type QueryAgentWorkspace_SkillCategoriesArgs = {
|
|
|
177506
178532
|
export type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
|
|
177507
178533
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
177508
178534
|
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
178535
|
+
agentInitialFetching?: InputMaybe<Scalars['Boolean']['input']>;
|
|
177509
178536
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
177510
178537
|
categoryQuery?: InputMaybe<Scalars['String']['input']>;
|
|
177511
178538
|
cloudId: Scalars['ID']['input'];
|
|
@@ -177537,6 +178564,9 @@ export type QueryAgentWorkspace_SmartRoutingDryRunArgs = {
|
|
|
177537
178564
|
cloudId: Scalars['ID']['input'];
|
|
177538
178565
|
projectKey: Scalars['String']['input'];
|
|
177539
178566
|
};
|
|
178567
|
+
export type QueryAgentWorkspace_SmartRoutingDryRunTicketsArgs = {
|
|
178568
|
+
input: AgentWorkspaceSmartRoutingDryRunTicketsInput;
|
|
178569
|
+
};
|
|
177540
178570
|
export type QueryAgentWorkspace_TeamCapacitiesArgs = {
|
|
177541
178571
|
input: AgentWorkspaceTeamCapacitiesInput;
|
|
177542
178572
|
};
|
|
@@ -178251,6 +179281,10 @@ export type QueryAssetsVertical_DepreciationRuleArgs = {
|
|
|
178251
179281
|
cloudId: Scalars['ID']['input'];
|
|
178252
179282
|
id: Scalars['ID']['input'];
|
|
178253
179283
|
};
|
|
179284
|
+
export type QueryAssetsVertical_DepreciationRuleByAssetTypesTrackingArgs = {
|
|
179285
|
+
assetTypesTrackingId: Scalars['ID']['input'];
|
|
179286
|
+
cloudId: Scalars['ID']['input'];
|
|
179287
|
+
};
|
|
178254
179288
|
export type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
178255
179289
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
178256
179290
|
cloudId: Scalars['ID']['input'];
|
|
@@ -178519,6 +179553,10 @@ export type QueryAvp_GetDashboardTemplateJsonArgs = {
|
|
|
178519
179553
|
dashboardAri: Scalars['ID']['input'];
|
|
178520
179554
|
templateType: Scalars['String']['input'];
|
|
178521
179555
|
};
|
|
179556
|
+
export type QueryAvp_GetDashboardTemplateJsonByIdArgs = {
|
|
179557
|
+
templateId: Scalars['String']['input'];
|
|
179558
|
+
workspaceAri: Scalars['ID']['input'];
|
|
179559
|
+
};
|
|
178522
179560
|
export type QueryAvp_GetDashboardTemplatesArgs = {
|
|
178523
179561
|
input: AvpGetDashboardTemplatesInput;
|
|
178524
179562
|
};
|
|
@@ -178684,6 +179722,9 @@ export type QueryCatchupVersionDiffMetadataForContentArgs = {
|
|
|
178684
179722
|
export type QueryCcp_CatalogAccountsArgs = {
|
|
178685
179723
|
ids: Array<Scalars['ID']['input']>;
|
|
178686
179724
|
};
|
|
179725
|
+
export type QueryCcp_ConcessionsArgs = {
|
|
179726
|
+
ids: Array<Scalars['ID']['input']>;
|
|
179727
|
+
};
|
|
178687
179728
|
export type QueryCcp_EntitlementArgs = {
|
|
178688
179729
|
id: Scalars['ID']['input'];
|
|
178689
179730
|
};
|
|
@@ -179950,6 +180991,9 @@ export type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
|
179950
180991
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
179951
180992
|
workItemInput: ConvoAiJiraSimilarWorkItemsInput;
|
|
179952
180993
|
};
|
|
180994
|
+
export type QueryConvoai_SearchAgentArgs = {
|
|
180995
|
+
input: ConvoAiSearchAgentInput;
|
|
180996
|
+
};
|
|
179953
180997
|
export type QueryCountGroupByEventNameArgs = {
|
|
179954
180998
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
179955
180999
|
eventName: Array<AnalyticsEventName>;
|
|
@@ -180350,6 +181394,11 @@ export type QueryDevai_AutodevNextAssignedWorkstreamTasksArgs = {
|
|
|
180350
181394
|
statuses?: InputMaybe<Array<DevAiAutodevNextWorkItemState>>;
|
|
180351
181395
|
workstreamId: Scalars['ID']['input'];
|
|
180352
181396
|
};
|
|
181397
|
+
export type QueryDevai_AutodevNextGlobalDashboardArgs = {
|
|
181398
|
+
cloudId: Scalars['ID']['input'];
|
|
181399
|
+
startDate: Scalars['Date']['input'];
|
|
181400
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
181401
|
+
};
|
|
180353
181402
|
export type QueryDevai_AutodevNextJiraProjectAvailabilityArgs = {
|
|
180354
181403
|
cloudId: Scalars['ID']['input'];
|
|
180355
181404
|
projectAris: Array<Scalars['ID']['input']>;
|
|
@@ -180382,6 +181431,16 @@ export type QueryDevai_AutodevNextWorkstreamSweepSummaryArgs = {
|
|
|
180382
181431
|
cloudId: Scalars['ID']['input'];
|
|
180383
181432
|
workstreamId: Scalars['ID']['input'];
|
|
180384
181433
|
};
|
|
181434
|
+
export type QueryDevai_AutodevNextWorkstreamTasksArgs = {
|
|
181435
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
181436
|
+
assigneeUserAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
181437
|
+
cloudId: Scalars['ID']['input'];
|
|
181438
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
181439
|
+
includeUnassigned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
181440
|
+
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
181441
|
+
statuses?: InputMaybe<Array<DevAiAutodevNextWorkItemState>>;
|
|
181442
|
+
workstreamId: Scalars['ID']['input'];
|
|
181443
|
+
};
|
|
180385
181444
|
export type QueryDevai_AutodevNextWorkstreamsArgs = {
|
|
180386
181445
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
180387
181446
|
cloudId: Scalars['ID']['input'];
|
|
@@ -180861,6 +181920,9 @@ export type QueryGraphInference_GetRelatedReposV2Args = {
|
|
|
180861
181920
|
export type QueryGraphInference_GetRelatedReposV3Args = {
|
|
180862
181921
|
input: GraphInferenceGetRelatedReposV3Input;
|
|
180863
181922
|
};
|
|
181923
|
+
export type QueryGraphInference_GetSimilarJiraItemsArgs = {
|
|
181924
|
+
input: GraphInferenceGetSimilarJiraItemsInput;
|
|
181925
|
+
};
|
|
180864
181926
|
export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
180865
181927
|
contextAri: Scalars['ID']['input'];
|
|
180866
181928
|
};
|
|
@@ -180924,9 +181986,11 @@ export type QueryGraphIntegration_McpServerUserRequestsArgs = {
|
|
|
180924
181986
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180925
181987
|
};
|
|
180926
181988
|
export type QueryGraphIntegration_McpServersArgs = {
|
|
181989
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
180927
181990
|
ids: Array<Scalars['ID']['input']>;
|
|
180928
181991
|
};
|
|
180929
181992
|
export type QueryGraphIntegration_McpToolsArgs = {
|
|
181993
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
180930
181994
|
ids: Array<Scalars['ID']['input']>;
|
|
180931
181995
|
};
|
|
180932
181996
|
export type QueryGraphIntegration_SkillArgs = {
|
|
@@ -182526,6 +183590,13 @@ export type QueryGraphStoreV2_AtlassianUserTrashedConfluenceContentInverseArgs =
|
|
|
182526
183590
|
id: Scalars['ID']['input'];
|
|
182527
183591
|
sort?: InputMaybe<GraphStoreV2AtlassianUserTrashedConfluenceContentSortInput>;
|
|
182528
183592
|
};
|
|
183593
|
+
export type QueryGraphStoreV2_AtlassianUserTriggeredAtlassianAgentSessionInverseArgs = {
|
|
183594
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183595
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
183596
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183597
|
+
id: Scalars['ID']['input'];
|
|
183598
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserTriggeredAtlassianAgentSessionSortInput>;
|
|
183599
|
+
};
|
|
182529
183600
|
export type QueryGraphStoreV2_AtlassianUserTriggeredExternalDeploymentArgs = {
|
|
182530
183601
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182531
183602
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -185641,6 +186712,20 @@ export type QueryGraphStoreV2_FocusOrganizationHasFocusOrganizationMembershipInv
|
|
|
185641
186712
|
id: Scalars['ID']['input'];
|
|
185642
186713
|
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipSortInput>;
|
|
185643
186714
|
};
|
|
186715
|
+
export type QueryGraphStoreV2_FocusOrganizationSponsorsFocusFocusAreaArgs = {
|
|
186716
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
186717
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
186718
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
186719
|
+
id: Scalars['ID']['input'];
|
|
186720
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaSortInput>;
|
|
186721
|
+
};
|
|
186722
|
+
export type QueryGraphStoreV2_FocusOrganizationSponsorsFocusFocusAreaInverseArgs = {
|
|
186723
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
186724
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
186725
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
186726
|
+
id: Scalars['ID']['input'];
|
|
186727
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaSortInput>;
|
|
186728
|
+
};
|
|
185644
186729
|
export type QueryGraphStoreV2_FocusRiskHasWorkEntityArgs = {
|
|
185645
186730
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
185646
186731
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -186997,6 +188082,13 @@ export type QueryGraphStoreV2_RovoAgentActsAsAtlassianUserInverseArgs = {
|
|
|
186997
188082
|
id: Scalars['ID']['input'];
|
|
186998
188083
|
sort?: InputMaybe<GraphStoreV2RovoAgentActsAsAtlassianUserSortInput>;
|
|
186999
188084
|
};
|
|
188085
|
+
export type QueryGraphStoreV2_RovoAgentHasAtlassianAgentSessionInverseArgs = {
|
|
188086
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
188087
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
188088
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
188089
|
+
id: Scalars['ID']['input'];
|
|
188090
|
+
sort?: InputMaybe<GraphStoreV2RovoAgentHasAtlassianAgentSessionSortInput>;
|
|
188091
|
+
};
|
|
187000
188092
|
export type QueryGraphStoreV2_TalentPositionLinksExternalPositionArgs = {
|
|
187001
188093
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
187002
188094
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -188080,6 +189172,14 @@ export type QueryGraphStore_AtlassianUserReviewedConfluenceApprovalInverseArgs =
|
|
|
188080
189172
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
188081
189173
|
sort?: InputMaybe<GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput>;
|
|
188082
189174
|
};
|
|
189175
|
+
export type QueryGraphStore_AtlassianUserTriggeredAtlassianAgentSessionInverseArgs = {
|
|
189176
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189177
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189178
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189179
|
+
id: Scalars['ID']['input'];
|
|
189180
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
189181
|
+
sort?: InputMaybe<GraphStoreAtlassianUserTriggeredAtlassianAgentSessionSortInput>;
|
|
189182
|
+
};
|
|
188083
189183
|
export type QueryGraphStore_AtlassianUserUpdatedExternalCampaignArgs = {
|
|
188084
189184
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188085
189185
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -191588,6 +192688,36 @@ export type QueryGraphStore_MercuryOrganizationHasMercuryOrganizationMembershipI
|
|
|
191588
192688
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
191589
192689
|
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipSortInput>;
|
|
191590
192690
|
};
|
|
192691
|
+
export type QueryGraphStore_MercuryOrganizationSponsorsFocusAreaArgs = {
|
|
192692
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192693
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192694
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192695
|
+
id: Scalars['ID']['input'];
|
|
192696
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192697
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
192698
|
+
};
|
|
192699
|
+
export type QueryGraphStore_MercuryOrganizationSponsorsFocusAreaBatchArgs = {
|
|
192700
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192701
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192702
|
+
ids: Array<Scalars['ID']['input']>;
|
|
192703
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192704
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
192705
|
+
};
|
|
192706
|
+
export type QueryGraphStore_MercuryOrganizationSponsorsFocusAreaInverseArgs = {
|
|
192707
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192708
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192709
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192710
|
+
id: Scalars['ID']['input'];
|
|
192711
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192712
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
192713
|
+
};
|
|
192714
|
+
export type QueryGraphStore_MercuryOrganizationSponsorsFocusAreaInverseBatchArgs = {
|
|
192715
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192716
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192717
|
+
ids: Array<Scalars['ID']['input']>;
|
|
192718
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192719
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
192720
|
+
};
|
|
191591
192721
|
export type QueryGraphStore_OnPremProjectHasIssueArgs = {
|
|
191592
192722
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
191593
192723
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -192710,6 +193840,14 @@ export type QueryGraphStore_RovoAgentActsAsIdentityUserInverseArgs = {
|
|
|
192710
193840
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192711
193841
|
sort?: InputMaybe<GraphStoreRovoAgentActsAsIdentityUserSortInput>;
|
|
192712
193842
|
};
|
|
193843
|
+
export type QueryGraphStore_RovoAgentHasAtlassianAgentSessionInverseArgs = {
|
|
193844
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
193845
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
193846
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
193847
|
+
id: Scalars['ID']['input'];
|
|
193848
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
193849
|
+
sort?: InputMaybe<GraphStoreRovoAgentHasAtlassianAgentSessionSortInput>;
|
|
193850
|
+
};
|
|
192713
193851
|
export type QueryGraphStore_ScorecardHasAtlasGoalArgs = {
|
|
192714
193852
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
192715
193853
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -196624,6 +197762,9 @@ export type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
196624
197762
|
cloudId: Scalars['ID']['input'];
|
|
196625
197763
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
196626
197764
|
};
|
|
197765
|
+
export type QueryJira_RovoEnablementStatusArgs = {
|
|
197766
|
+
cloudId: Scalars['ID']['input'];
|
|
197767
|
+
};
|
|
196627
197768
|
export type QueryJira_SprintFieldArgs = {
|
|
196628
197769
|
cloudId: Scalars['ID']['input'];
|
|
196629
197770
|
};
|
|
@@ -196751,6 +197892,13 @@ export type QueryJsmConversation_ConversationsArgs = {
|
|
|
196751
197892
|
export type QueryJsmConversation_HelpseekerSettingArgs = {
|
|
196752
197893
|
projectAri: Scalars['String']['input'];
|
|
196753
197894
|
};
|
|
197895
|
+
export type QueryJsmConversation_InvitesForAgentArgs = {
|
|
197896
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197897
|
+
cloudId: Scalars['ID']['input'];
|
|
197898
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197899
|
+
projectKey: Scalars['String']['input'];
|
|
197900
|
+
status?: InputMaybe<JsmConversationInviteStatus>;
|
|
197901
|
+
};
|
|
196754
197902
|
export type QueryJsmConversation_MediaConfigurationArgs = {
|
|
196755
197903
|
conversationAri: Scalars['ID']['input'];
|
|
196756
197904
|
};
|
|
@@ -196934,6 +198082,10 @@ export type QueryKnowledgeBase_ConfluenceAppLinkDetailsArgs = {
|
|
|
196934
198082
|
export type QueryKnowledgeBase_GetLinkedSourceTypesArgs = {
|
|
196935
198083
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
196936
198084
|
};
|
|
198085
|
+
export type QueryKnowledgeBase_HealthDashboardArgs = {
|
|
198086
|
+
cloudId: Scalars['ID']['input'];
|
|
198087
|
+
projectIdentifier: Scalars['String']['input'];
|
|
198088
|
+
};
|
|
196937
198089
|
export type QueryKnowledgeBase_LinkedSourcesArgs = {
|
|
196938
198090
|
cloudId: Scalars['ID']['input'];
|
|
196939
198091
|
projectIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -196941,6 +198093,10 @@ export type QueryKnowledgeBase_LinkedSourcesArgs = {
|
|
|
196941
198093
|
export type QueryKnowledgeBase_SearchArticlesArgs = {
|
|
196942
198094
|
searchInput?: InputMaybe<KnowledgeBaseArticleSearchInput>;
|
|
196943
198095
|
};
|
|
198096
|
+
export type QueryKnowledgeBase_SearchConversionMetricsArgs = {
|
|
198097
|
+
cloudId: Scalars['ID']['input'];
|
|
198098
|
+
projectIdentifier: Scalars['String']['input'];
|
|
198099
|
+
};
|
|
196944
198100
|
export type QueryKnowledgeBase_SourceSuggestionsArgs = {
|
|
196945
198101
|
cloudId: Scalars['ID']['input'];
|
|
196946
198102
|
projectIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -198865,6 +200021,7 @@ export type RadarEntityFieldValuesArgs = {
|
|
|
198865
200021
|
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
198866
200022
|
};
|
|
198867
200023
|
export declare enum RadarEntityType {
|
|
200024
|
+
AiConnector = "aiConnector",
|
|
198868
200025
|
AiMonthlyUsage = "aiMonthlyUsage",
|
|
198869
200026
|
FocusArea = "focusArea",
|
|
198870
200027
|
FocusAreaType = "focusAreaType",
|
|
@@ -199406,10 +200563,14 @@ export type RadarSyncHistory = {
|
|
|
199406
200563
|
};
|
|
199407
200564
|
export declare enum RadarSyncHistoryStatus {
|
|
199408
200565
|
Failed = "FAILED",
|
|
200566
|
+
GracePeriod = "GRACE_PERIOD",
|
|
199409
200567
|
InProgress = "IN_PROGRESS",
|
|
199410
200568
|
Scheduled = "SCHEDULED",
|
|
199411
200569
|
Success = "SUCCESS",
|
|
199412
|
-
SystemError = "SYSTEM_ERROR"
|
|
200570
|
+
SystemError = "SYSTEM_ERROR",
|
|
200571
|
+
ThirdPartyConnectorFailed = "THIRD_PARTY_CONNECTOR_FAILED",
|
|
200572
|
+
ThirdPartyConnectorRunning = "THIRD_PARTY_CONNECTOR_RUNNING",
|
|
200573
|
+
TimedOut = "TIMED_OUT"
|
|
199413
200574
|
}
|
|
199414
200575
|
export type RadarUpdateAiConnectorInput = {
|
|
199415
200576
|
config?: InputMaybe<RadarAiConnectorConfigInput>;
|
|
@@ -201312,6 +202473,7 @@ export declare enum Scope {
|
|
|
201312
202473
|
ScreenTabRead = "SCREEN_TAB_READ",
|
|
201313
202474
|
ScreenTabWrite = "SCREEN_TAB_WRITE",
|
|
201314
202475
|
ScreenWrite = "SCREEN_WRITE",
|
|
202476
|
+
SearchRovoAgentInterface = "SEARCH_ROVO_AGENT_INTERFACE",
|
|
201315
202477
|
StatusRead = "STATUS_READ",
|
|
201316
202478
|
StorageApp = "STORAGE_APP",
|
|
201317
202479
|
TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL",
|
|
@@ -202224,7 +203386,7 @@ export type SearchResultCompassComponent = SearchResult & {
|
|
|
202224
203386
|
type: SearchResultType;
|
|
202225
203387
|
url: Scalars['String']['output'];
|
|
202226
203388
|
};
|
|
202227
|
-
export type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
203389
|
+
export type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
202228
203390
|
export type SearchResultFederated = SearchResult & {
|
|
202229
203391
|
__typename?: 'SearchResultFederated';
|
|
202230
203392
|
connectorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -222261,12 +223423,16 @@ export type SmartsContextServiceOrbitObjectRecommendation = {
|
|
|
222261
223423
|
export type SmartsContextServiceQueryApi = {
|
|
222262
223424
|
__typename?: 'SmartsContextServiceQueryApi';
|
|
222263
223425
|
orbitObjectRecommendations?: Maybe<Array<Maybe<SmartsContextServiceOrbitObjectRecommendation>>>;
|
|
223426
|
+
orbitObjectRecommendationsV2?: Maybe<Array<Maybe<SmartsContextServiceOrbitObjectRecommendation>>>;
|
|
222264
223427
|
orbitUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceCollaboratorRecommendation>>>;
|
|
222265
223428
|
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
222266
223429
|
};
|
|
222267
223430
|
export type SmartsContextServiceQueryApiOrbitObjectRecommendationsArgs = {
|
|
222268
223431
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
222269
223432
|
};
|
|
223433
|
+
export type SmartsContextServiceQueryApiOrbitObjectRecommendationsV2Args = {
|
|
223434
|
+
recommendationsQuery: SmartsRecommendationsOrbitQuery;
|
|
223435
|
+
};
|
|
222270
223436
|
export type SmartsContextServiceQueryApiOrbitUserRecommendationsArgs = {
|
|
222271
223437
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
222272
223438
|
};
|
|
@@ -222299,6 +223465,12 @@ export type SmartsModelRequestParams = {
|
|
|
222299
223465
|
experience: Scalars['String']['input'];
|
|
222300
223466
|
featureServiceModel?: InputMaybe<Scalars['String']['input']>;
|
|
222301
223467
|
};
|
|
223468
|
+
export type SmartsOrbitModelRequestParams = {
|
|
223469
|
+
caller: Scalars['String']['input'];
|
|
223470
|
+
experience: Scalars['String']['input'];
|
|
223471
|
+
featureServiceModel?: InputMaybe<Scalars['String']['input']>;
|
|
223472
|
+
orbitModelId?: InputMaybe<Scalars['String']['input']>;
|
|
223473
|
+
};
|
|
222302
223474
|
export type SmartsQueryApi = {
|
|
222303
223475
|
__typename?: 'SmartsQueryApi';
|
|
222304
223476
|
recommendedContainer?: Maybe<Array<Maybe<SmartsRecommendedContainer>>>;
|
|
@@ -222334,6 +223506,15 @@ export type SmartsRecommendationsFieldQuery = {
|
|
|
222334
223506
|
requestingUserId: Scalars['String']['input'];
|
|
222335
223507
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
222336
223508
|
};
|
|
223509
|
+
export type SmartsRecommendationsOrbitQuery = {
|
|
223510
|
+
context: SmartsContext;
|
|
223511
|
+
excludeInactive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
223512
|
+
excludeSelf?: InputMaybe<Scalars['Boolean']['input']>;
|
|
223513
|
+
maxNumberOfResults?: InputMaybe<Scalars['Int']['input']>;
|
|
223514
|
+
modelRequestParams: SmartsOrbitModelRequestParams;
|
|
223515
|
+
requestingUserId: Scalars['String']['input'];
|
|
223516
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
223517
|
+
};
|
|
222337
223518
|
export type SmartsRecommendationsQuery = {
|
|
222338
223519
|
context: SmartsContext;
|
|
222339
223520
|
excludeInactive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -228086,6 +229267,7 @@ export type TeamV2 = Node & {
|
|
|
228086
229267
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
228087
229268
|
largeAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
228088
229269
|
largeHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
229270
|
+
memberCount?: Maybe<Scalars['Int']['output']>;
|
|
228089
229271
|
members?: Maybe<TeamMemberConnectionV2>;
|
|
228090
229272
|
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
228091
229273
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -231606,6 +232788,69 @@ export type TownsquareProjectsClonePayload = {
|
|
|
231606
232788
|
project?: Maybe<TownsquareProject>;
|
|
231607
232789
|
success: Scalars['Boolean']['output'];
|
|
231608
232790
|
};
|
|
232791
|
+
export type TownsquareProjectsConnectMsteamsChannelsAppInstallResult = {
|
|
232792
|
+
__typename?: 'TownsquareProjectsConnectMsteamsChannelsAppInstallResult';
|
|
232793
|
+
aadGroupId?: Maybe<Scalars['String']['output']>;
|
|
232794
|
+
error?: Maybe<TownsquareProjectsConnectMsteamsChannelsAppInstallResultError>;
|
|
232795
|
+
};
|
|
232796
|
+
export type TownsquareProjectsConnectMsteamsChannelsAppInstallResultError = {
|
|
232797
|
+
__typename?: 'TownsquareProjectsConnectMsteamsChannelsAppInstallResultError';
|
|
232798
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
232799
|
+
reasonType?: Maybe<Scalars['String']['output']>;
|
|
232800
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
232801
|
+
};
|
|
232802
|
+
export type TownsquareProjectsConnectMsteamsChannelsChannelInput = {
|
|
232803
|
+
aadGroupId: Scalars['String']['input'];
|
|
232804
|
+
msTeamsChannelId: Scalars['String']['input'];
|
|
232805
|
+
msTeamsTeamId: Scalars['String']['input'];
|
|
232806
|
+
};
|
|
232807
|
+
export type TownsquareProjectsConnectMsteamsChannelsConnectedChannel = {
|
|
232808
|
+
__typename?: 'TownsquareProjectsConnectMsteamsChannelsConnectedChannel';
|
|
232809
|
+
aadGroupId?: Maybe<Scalars['String']['output']>;
|
|
232810
|
+
creationDate?: Maybe<Scalars['String']['output']>;
|
|
232811
|
+
msTeamsChannelId?: Maybe<Scalars['String']['output']>;
|
|
232812
|
+
msTeamsTeamId?: Maybe<Scalars['String']['output']>;
|
|
232813
|
+
msTeamsTenantId?: Maybe<Scalars['String']['output']>;
|
|
232814
|
+
resourceAri?: Maybe<Scalars['String']['output']>;
|
|
232815
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
232816
|
+
subscriberAaid?: Maybe<Scalars['String']['output']>;
|
|
232817
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
232818
|
+
};
|
|
232819
|
+
export type TownsquareProjectsConnectMsteamsChannelsFailedItem = {
|
|
232820
|
+
__typename?: 'TownsquareProjectsConnectMsteamsChannelsFailedItem';
|
|
232821
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
232822
|
+
resourceId?: Maybe<Scalars['String']['output']>;
|
|
232823
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
232824
|
+
};
|
|
232825
|
+
export type TownsquareProjectsConnectMsteamsChannelsInput = {
|
|
232826
|
+
channels: Array<InputMaybe<TownsquareProjectsConnectMsteamsChannelsChannelInput>>;
|
|
232827
|
+
installBot: Scalars['Boolean']['input'];
|
|
232828
|
+
msTeamsTenantId: Scalars['String']['input'];
|
|
232829
|
+
projectIds: Array<Scalars['ID']['input']>;
|
|
232830
|
+
userAzureId?: InputMaybe<Scalars['String']['input']>;
|
|
232831
|
+
};
|
|
232832
|
+
export type TownsquareProjectsConnectMsteamsChannelsPayload = {
|
|
232833
|
+
__typename?: 'TownsquareProjectsConnectMsteamsChannelsPayload';
|
|
232834
|
+
appInstallResults?: Maybe<Array<Maybe<TownsquareProjectsConnectMsteamsChannelsAppInstallResult>>>;
|
|
232835
|
+
connectedChannels?: Maybe<Array<Maybe<TownsquareProjectsConnectMsteamsChannelsConnectedChannel>>>;
|
|
232836
|
+
errors?: Maybe<Array<MutationError>>;
|
|
232837
|
+
failedItems?: Maybe<Array<Maybe<TownsquareProjectsConnectMsteamsChannelsFailedItem>>>;
|
|
232838
|
+
success: Scalars['Boolean']['output'];
|
|
232839
|
+
};
|
|
232840
|
+
export type TownsquareProjectsConnectSlackChannelsInput = {
|
|
232841
|
+
containerId: Scalars['ID']['input'];
|
|
232842
|
+
metadata?: InputMaybe<TownsquareConnectSlackChannelInputMetadata>;
|
|
232843
|
+
projectId: Scalars['ID']['input'];
|
|
232844
|
+
slackChannelIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
232845
|
+
slackTeamId: Scalars['String']['input'];
|
|
232846
|
+
types: Array<InputMaybe<Scalars['String']['input']>>;
|
|
232847
|
+
};
|
|
232848
|
+
export type TownsquareProjectsConnectSlackChannelsPayload = {
|
|
232849
|
+
__typename?: 'TownsquareProjectsConnectSlackChannelsPayload';
|
|
232850
|
+
errors?: Maybe<Array<MutationError>>;
|
|
232851
|
+
slackChannels?: Maybe<Array<Maybe<TownsquareSlackChannelConnectionResult>>>;
|
|
232852
|
+
success: Scalars['Boolean']['output'];
|
|
232853
|
+
};
|
|
231609
232854
|
export type TownsquareProjectsCreateCommentInput = {
|
|
231610
232855
|
commentText: Scalars['String']['input'];
|
|
231611
232856
|
entityId: Scalars['ID']['input'];
|
|
@@ -233398,6 +234643,7 @@ export type TrelloBaseCard = {
|
|
|
233398
234643
|
complete?: Maybe<Scalars['Boolean']['output']>;
|
|
233399
234644
|
cover?: Maybe<TrelloCardCover>;
|
|
233400
234645
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
234646
|
+
dateClosed?: Maybe<Scalars['DateTime']['output']>;
|
|
233401
234647
|
dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
|
|
233402
234648
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
233403
234649
|
due?: Maybe<TrelloCardDueInfo>;
|
|
@@ -233977,6 +235223,7 @@ export type TrelloCard = Node & TrelloBaseCard & {
|
|
|
233977
235223
|
cover?: Maybe<TrelloCardCover>;
|
|
233978
235224
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
233979
235225
|
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
235226
|
+
dateClosed?: Maybe<Scalars['DateTime']['output']>;
|
|
233980
235227
|
dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
|
|
233981
235228
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
233982
235229
|
due?: Maybe<TrelloCardDueInfo>;
|
|
@@ -235374,6 +236621,11 @@ export type TrelloEndVoiceCaptureSessionPayload = Payload & {
|
|
|
235374
236621
|
errors?: Maybe<Array<MutationError>>;
|
|
235375
236622
|
success: Scalars['Boolean']['output'];
|
|
235376
236623
|
};
|
|
236624
|
+
export type TrelloEnqueueGenerateBoardBackgroundJobInput = {
|
|
236625
|
+
boardId: Scalars['ID']['input'];
|
|
236626
|
+
theme?: InputMaybe<Scalars['String']['input']>;
|
|
236627
|
+
userInput: Scalars['String']['input'];
|
|
236628
|
+
};
|
|
235377
236629
|
export type TrelloEnqueueProposePlannerEventsJobInput = {
|
|
235378
236630
|
cardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
235379
236631
|
timezoneOffsetHours: Scalars['Float']['input'];
|
|
@@ -235431,6 +236683,24 @@ export type TrelloEnterprisePrefs = {
|
|
|
235431
236683
|
__typename?: 'TrelloEnterprisePrefs';
|
|
235432
236684
|
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
235433
236685
|
};
|
|
236686
|
+
export type TrelloGenerateBoardBackgroundJob = TrelloJob & {
|
|
236687
|
+
__typename?: 'TrelloGenerateBoardBackgroundJob';
|
|
236688
|
+
background?: Maybe<TrelloBoardBackground>;
|
|
236689
|
+
errors?: Maybe<Array<TrelloJobError>>;
|
|
236690
|
+
id: Scalars['ID']['output'];
|
|
236691
|
+
status: TrelloGenerateBoardBackgroundJobStatus;
|
|
236692
|
+
};
|
|
236693
|
+
export type TrelloGenerateBoardBackgroundJobPayload = Payload & {
|
|
236694
|
+
__typename?: 'TrelloGenerateBoardBackgroundJobPayload';
|
|
236695
|
+
errors?: Maybe<Array<MutationError>>;
|
|
236696
|
+
job?: Maybe<TrelloGenerateBoardBackgroundJob>;
|
|
236697
|
+
success: Scalars['Boolean']['output'];
|
|
236698
|
+
};
|
|
236699
|
+
export declare enum TrelloGenerateBoardBackgroundJobStatus {
|
|
236700
|
+
Finished = "FINISHED",
|
|
236701
|
+
InProgress = "IN_PROGRESS",
|
|
236702
|
+
Pending = "PENDING"
|
|
236703
|
+
}
|
|
235434
236704
|
export type TrelloGenerateBoardBackgroundWithAiInput = {
|
|
235435
236705
|
boardId: Scalars['ID']['input'];
|
|
235436
236706
|
theme?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -235566,6 +236836,7 @@ export type TrelloInboxCard = TrelloBaseCard & {
|
|
|
235566
236836
|
complete?: Maybe<Scalars['Boolean']['output']>;
|
|
235567
236837
|
cover?: Maybe<TrelloCardCover>;
|
|
235568
236838
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
236839
|
+
dateClosed?: Maybe<Scalars['DateTime']['output']>;
|
|
235569
236840
|
dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
|
|
235570
236841
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
235571
236842
|
due?: Maybe<TrelloCardDueInfo>;
|
|
@@ -236184,6 +237455,8 @@ export type TrelloMemberOwnedWebhook = {
|
|
|
236184
237455
|
id: Scalars['ID']['output'];
|
|
236185
237456
|
modelId: Scalars['ID']['output'];
|
|
236186
237457
|
oauth2Client?: Maybe<TrelloMemberOwnedWebhookOAuth2Client>;
|
|
237458
|
+
observingModelName?: Maybe<Scalars['String']['output']>;
|
|
237459
|
+
observingModelType?: Maybe<Scalars['String']['output']>;
|
|
236187
237460
|
tokenId?: Maybe<Scalars['ID']['output']>;
|
|
236188
237461
|
};
|
|
236189
237462
|
export type TrelloMemberOwnedWebhookConnection = {
|
|
@@ -236477,6 +237750,7 @@ export type TrelloMutationApi = {
|
|
|
236477
237750
|
enableBoardSelfJoin?: Maybe<TrelloEnableBoardSelfJoinPayload>;
|
|
236478
237751
|
enableCardFrontCompleteToggle?: Maybe<TrelloEnableCardFrontCompleteTogglePayload>;
|
|
236479
237752
|
endVoiceCaptureSession?: Maybe<TrelloEndVoiceCaptureSessionPayload>;
|
|
237753
|
+
enqueueGenerateBoardBackgroundJob?: Maybe<TrelloGenerateBoardBackgroundJobPayload>;
|
|
236480
237754
|
enqueueProposePlannerEventsJob?: Maybe<TrelloProposePlannerEventsJobPayload>;
|
|
236481
237755
|
generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
|
|
236482
237756
|
generateCardCoverWithAi?: Maybe<TrelloGenerateCardCoverWithAiPayload>;
|
|
@@ -236706,6 +237980,9 @@ export type TrelloMutationApiEnableCardFrontCompleteToggleArgs = {
|
|
|
236706
237980
|
export type TrelloMutationApiEndVoiceCaptureSessionArgs = {
|
|
236707
237981
|
input: TrelloEndVoiceCaptureSessionInput;
|
|
236708
237982
|
};
|
|
237983
|
+
export type TrelloMutationApiEnqueueGenerateBoardBackgroundJobArgs = {
|
|
237984
|
+
input: TrelloEnqueueGenerateBoardBackgroundJobInput;
|
|
237985
|
+
};
|
|
236709
237986
|
export type TrelloMutationApiEnqueueProposePlannerEventsJobArgs = {
|
|
236710
237987
|
input: TrelloEnqueueProposePlannerEventsJobInput;
|
|
236711
237988
|
};
|