@forge/cli-shared 9.0.1-next.2 → 9.0.1-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/out/graphql/graphql-types.d.ts +544 -43
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +82 -37
- package/package.json +2 -1
|
@@ -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']>;
|
|
@@ -841,6 +841,7 @@ export declare enum AvpAnalyticsAcknowledgeableError {
|
|
|
841
841
|
export type AvpAnalyticsAcknowledgeableMutationErrorExtension = MutationErrorExtension & {
|
|
842
842
|
__typename?: 'AVPAnalyticsAcknowledgeableMutationErrorExtension';
|
|
843
843
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
844
|
+
impactedMetrics?: Maybe<Array<AvpAnalyticsImpactedMetric>>;
|
|
844
845
|
needAcknowledgement?: Maybe<AvpAnalyticsAcknowledgeableError>;
|
|
845
846
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
846
847
|
};
|
|
@@ -1180,6 +1181,11 @@ export type AvpAnalyticsGetModelsInput = {
|
|
|
1180
1181
|
export type AvpAnalyticsGetPermissionInput = {
|
|
1181
1182
|
resourceAri: Scalars['ID']['input'];
|
|
1182
1183
|
};
|
|
1184
|
+
export type AvpAnalyticsImpactedMetric = {
|
|
1185
|
+
__typename?: 'AVPAnalyticsImpactedMetric';
|
|
1186
|
+
metricAri: Scalars['ID']['output'];
|
|
1187
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1188
|
+
};
|
|
1183
1189
|
export type AvpAnalyticsJoinColumnPairs = {
|
|
1184
1190
|
__typename?: 'AVPAnalyticsJoinColumnPairs';
|
|
1185
1191
|
joinOnOperator: AvpAnalyticsJoinOnOperator;
|
|
@@ -8075,6 +8081,7 @@ export type AgentWorkspaceProjectSkillCategoryConnection = {
|
|
|
8075
8081
|
__typename?: 'AgentWorkspaceProjectSkillCategoryConnection';
|
|
8076
8082
|
edges?: Maybe<Array<AgentWorkspaceProjectSkillCategoryEdge>>;
|
|
8077
8083
|
errors?: Maybe<Array<QueryError>>;
|
|
8084
|
+
hasAnyCategories: Scalars['Boolean']['output'];
|
|
8078
8085
|
nodes?: Maybe<Array<Maybe<AgentWorkspaceProjectSkillCategory>>>;
|
|
8079
8086
|
pageInfo: PageInfo;
|
|
8080
8087
|
totalCategoryCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -8529,6 +8536,10 @@ export type AgentWorkspaceShiftsSummary = {
|
|
|
8529
8536
|
totalGaps: Scalars['Int']['output'];
|
|
8530
8537
|
totalShifts: Scalars['Int']['output'];
|
|
8531
8538
|
};
|
|
8539
|
+
export type AgentWorkspaceSiteWfoStatus = {
|
|
8540
|
+
__typename?: 'AgentWorkspaceSiteWfoStatus';
|
|
8541
|
+
hasProjectEnabledWfo: Scalars['Boolean']['output'];
|
|
8542
|
+
};
|
|
8532
8543
|
export type AgentWorkspaceSkill = {
|
|
8533
8544
|
__typename?: 'AgentWorkspaceSkill';
|
|
8534
8545
|
assignedAgents?: Maybe<Array<AgentWorkspaceSkillAgentAssignment>>;
|
|
@@ -8685,6 +8696,33 @@ export declare enum AgentWorkspaceSmartRoutingDryRunStatus {
|
|
|
8685
8696
|
Running = "RUNNING",
|
|
8686
8697
|
Timeout = "TIMEOUT"
|
|
8687
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
|
+
};
|
|
8688
8726
|
export type AgentWorkspaceSmartRoutingPerServiceStat = {
|
|
8689
8727
|
__typename?: 'AgentWorkspaceSmartRoutingPerServiceStat';
|
|
8690
8728
|
covered: Scalars['Boolean']['output'];
|
|
@@ -8695,6 +8733,13 @@ export type AgentWorkspaceSmartRoutingPerServiceStat = {
|
|
|
8695
8733
|
trueNegatives: Scalars['Int']['output'];
|
|
8696
8734
|
truePositives: Scalars['Int']['output'];
|
|
8697
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
|
+
}
|
|
8698
8743
|
export declare enum AgentWorkspaceSmartRoutingServiceFieldType {
|
|
8699
8744
|
AffectedServices = "AFFECTED_SERVICES",
|
|
8700
8745
|
Asset = "ASSET",
|
|
@@ -11471,6 +11516,7 @@ export type AssetsBundleInstantiationResult = AssetsBundleInstantiation | QueryE
|
|
|
11471
11516
|
export type AssetsBundleResult = AssetsBundle | QueryError;
|
|
11472
11517
|
export declare enum AssetsBundleType {
|
|
11473
11518
|
Cdm = "CDM",
|
|
11519
|
+
Foundations = "FOUNDATIONS",
|
|
11474
11520
|
Ham = "HAM",
|
|
11475
11521
|
Osc = "OSC"
|
|
11476
11522
|
}
|
|
@@ -11518,15 +11564,6 @@ export type AssetsDmAdapter = {
|
|
|
11518
11564
|
name?: Maybe<Scalars['String']['output']>;
|
|
11519
11565
|
vendor?: Maybe<Scalars['String']['output']>;
|
|
11520
11566
|
};
|
|
11521
|
-
export declare enum AssetsDmAdapterClientVersionStatus {
|
|
11522
|
-
None = "NONE",
|
|
11523
|
-
UpdateAvailable = "UPDATE_AVAILABLE",
|
|
11524
|
-
UpdateRequired = "UPDATE_REQUIRED"
|
|
11525
|
-
}
|
|
11526
|
-
export type AssetsDmAdapterClientVersionStatusResponse = {
|
|
11527
|
-
__typename?: 'AssetsDMAdapterClientVersionStatusResponse';
|
|
11528
|
-
status: AssetsDmAdapterClientVersionStatus;
|
|
11529
|
-
};
|
|
11530
11567
|
export type AssetsDmAdapters = {
|
|
11531
11568
|
__typename?: 'AssetsDMAdapters';
|
|
11532
11569
|
general?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
@@ -37920,6 +37957,26 @@ export type ConvoAiJiraConfluencePageSuggestion = {
|
|
|
37920
37957
|
suggestionSources: Array<Scalars['String']['output']>;
|
|
37921
37958
|
url: Scalars['String']['output'];
|
|
37922
37959
|
};
|
|
37960
|
+
export type ConvoAiJiraDuplicateWorkItemsConnection = {
|
|
37961
|
+
__typename?: 'ConvoAiJiraDuplicateWorkItemsConnection';
|
|
37962
|
+
edges?: Maybe<Array<ConvoAiJiraDuplicateWorkItemsEdge>>;
|
|
37963
|
+
errors?: Maybe<Array<QueryError>>;
|
|
37964
|
+
pageInfo: PageInfo;
|
|
37965
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37966
|
+
};
|
|
37967
|
+
export type ConvoAiJiraDuplicateWorkItemsEdge = {
|
|
37968
|
+
__typename?: 'ConvoAiJiraDuplicateWorkItemsEdge';
|
|
37969
|
+
cursor: Scalars['String']['output'];
|
|
37970
|
+
node?: Maybe<ConvoAiJiraSimilarWorkItemSuggestion>;
|
|
37971
|
+
};
|
|
37972
|
+
export type ConvoAiJiraDuplicateWorkItemsInput = {
|
|
37973
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
37974
|
+
excludeWorkItemIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
37975
|
+
projectId: Scalars['String']['input'];
|
|
37976
|
+
similarityConfig?: InputMaybe<ConvoAiJiraSimilarWorkItemsSimilarityConfig>;
|
|
37977
|
+
summary: Scalars['String']['input'];
|
|
37978
|
+
workItemId?: InputMaybe<Scalars['String']['input']>;
|
|
37979
|
+
};
|
|
37923
37980
|
export type ConvoAiJiraIssueRelatedResourcesResult = {
|
|
37924
37981
|
__typename?: 'ConvoAiJiraIssueRelatedResourcesResult';
|
|
37925
37982
|
edges?: Maybe<Array<ConvoAiJiraRelatedResourcesEdge>>;
|
|
@@ -40763,11 +40820,7 @@ export declare enum CustomerServiceAiSurface {
|
|
|
40763
40820
|
export type CustomerServiceAssetsAvatar = {
|
|
40764
40821
|
__typename?: 'CustomerServiceAssetsAvatar';
|
|
40765
40822
|
mediaClientConfig?: Maybe<CustomerServiceAssetsMediaClientConfig>;
|
|
40766
|
-
|
|
40767
|
-
url48: Scalars['String']['output'];
|
|
40768
|
-
url72: Scalars['String']['output'];
|
|
40769
|
-
url144: Scalars['String']['output'];
|
|
40770
|
-
url288: Scalars['String']['output'];
|
|
40823
|
+
url48?: Maybe<Scalars['String']['output']>;
|
|
40771
40824
|
};
|
|
40772
40825
|
export type CustomerServiceAssetsFieldConfig = {
|
|
40773
40826
|
__typename?: 'CustomerServiceAssetsFieldConfig';
|
|
@@ -40776,7 +40829,7 @@ export type CustomerServiceAssetsFieldConfig = {
|
|
|
40776
40829
|
};
|
|
40777
40830
|
export type CustomerServiceAssetsFieldObject = {
|
|
40778
40831
|
__typename?: 'CustomerServiceAssetsFieldObject';
|
|
40779
|
-
avatar
|
|
40832
|
+
avatar?: Maybe<CustomerServiceAssetsAvatar>;
|
|
40780
40833
|
id: Scalars['ID']['output'];
|
|
40781
40834
|
label: Scalars['String']['output'];
|
|
40782
40835
|
objectSchemaId: Scalars['ID']['output'];
|
|
@@ -40785,7 +40838,7 @@ export type CustomerServiceAssetsFieldObject = {
|
|
|
40785
40838
|
export type CustomerServiceAssetsFieldObjectTypeMetadata = {
|
|
40786
40839
|
__typename?: 'CustomerServiceAssetsFieldObjectTypeMetadata';
|
|
40787
40840
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
40788
|
-
icon
|
|
40841
|
+
icon?: Maybe<CustomerServiceAssetsObjectTypeIcon>;
|
|
40789
40842
|
id: Scalars['ID']['output'];
|
|
40790
40843
|
name: Scalars['String']['output'];
|
|
40791
40844
|
};
|
|
@@ -40797,14 +40850,14 @@ export type CustomerServiceAssetsFieldSchemaMetadata = {
|
|
|
40797
40850
|
};
|
|
40798
40851
|
export type CustomerServiceAssetsMediaClientConfig = {
|
|
40799
40852
|
__typename?: 'CustomerServiceAssetsMediaClientConfig';
|
|
40800
|
-
clientId
|
|
40801
|
-
|
|
40802
|
-
|
|
40853
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
40854
|
+
fileId?: Maybe<Scalars['String']['output']>;
|
|
40855
|
+
mediaBaseUrl?: Maybe<Scalars['String']['output']>;
|
|
40856
|
+
mediaJwtToken?: Maybe<Scalars['String']['output']>;
|
|
40803
40857
|
};
|
|
40804
40858
|
export type CustomerServiceAssetsObjectTypeIcon = {
|
|
40805
40859
|
__typename?: 'CustomerServiceAssetsObjectTypeIcon';
|
|
40806
|
-
|
|
40807
|
-
url48: Scalars['String']['output'];
|
|
40860
|
+
url48?: Maybe<Scalars['String']['output']>;
|
|
40808
40861
|
};
|
|
40809
40862
|
export type CustomerServiceAttribute = Node & {
|
|
40810
40863
|
__typename?: 'CustomerServiceAttribute';
|
|
@@ -43229,6 +43282,7 @@ export type DevAiAutodevNextWorkItem = {
|
|
|
43229
43282
|
__typename?: 'DevAiAutodevNextWorkItem';
|
|
43230
43283
|
assignedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
43231
43284
|
assignee?: Maybe<User>;
|
|
43285
|
+
classification?: Maybe<DevAiAutodevNextWorkItemClassification>;
|
|
43232
43286
|
id: Scalars['ID']['output'];
|
|
43233
43287
|
isOverdue?: Maybe<Scalars['Boolean']['output']>;
|
|
43234
43288
|
jiraIssue?: Maybe<JiraIssue>;
|
|
@@ -43238,6 +43292,21 @@ export type DevAiAutodevNextWorkItem = {
|
|
|
43238
43292
|
workItemState?: Maybe<Scalars['ID']['output']>;
|
|
43239
43293
|
workstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
43240
43294
|
};
|
|
43295
|
+
export type DevAiAutodevNextWorkItemChangeSite = {
|
|
43296
|
+
__typename?: 'DevAiAutodevNextWorkItemChangeSite';
|
|
43297
|
+
file?: Maybe<Scalars['String']['output']>;
|
|
43298
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
43299
|
+
};
|
|
43300
|
+
export type DevAiAutodevNextWorkItemClassification = {
|
|
43301
|
+
__typename?: 'DevAiAutodevNextWorkItemClassification';
|
|
43302
|
+
changeSites?: Maybe<Array<DevAiAutodevNextWorkItemChangeSite>>;
|
|
43303
|
+
clarificationQuestions?: Maybe<Array<Scalars['String']['output']>>;
|
|
43304
|
+
enrichedContext?: Maybe<DevAiAutodevNextWorkItemEnrichedContext>;
|
|
43305
|
+
feedback?: Maybe<Scalars['String']['output']>;
|
|
43306
|
+
repositories?: Maybe<Array<Scalars['String']['output']>>;
|
|
43307
|
+
status?: Maybe<Scalars['ID']['output']>;
|
|
43308
|
+
tShirtSize?: Maybe<Scalars['ID']['output']>;
|
|
43309
|
+
};
|
|
43241
43310
|
export type DevAiAutodevNextWorkItemConnection = {
|
|
43242
43311
|
__typename?: 'DevAiAutodevNextWorkItemConnection';
|
|
43243
43312
|
edges?: Maybe<Array<DevAiAutodevNextWorkItemEdge>>;
|
|
@@ -43249,6 +43318,14 @@ export type DevAiAutodevNextWorkItemEdge = {
|
|
|
43249
43318
|
cursor: Scalars['String']['output'];
|
|
43250
43319
|
node: DevAiAutodevNextWorkItem;
|
|
43251
43320
|
};
|
|
43321
|
+
export type DevAiAutodevNextWorkItemEnrichedContext = {
|
|
43322
|
+
__typename?: 'DevAiAutodevNextWorkItemEnrichedContext';
|
|
43323
|
+
notes?: Maybe<Scalars['String']['output']>;
|
|
43324
|
+
recommendedAssignees?: Maybe<Array<User>>;
|
|
43325
|
+
relatedFiles?: Maybe<Array<Scalars['String']['output']>>;
|
|
43326
|
+
relatedPrs?: Maybe<Array<Scalars['String']['output']>>;
|
|
43327
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
43328
|
+
};
|
|
43252
43329
|
export declare enum DevAiAutodevNextWorkItemState {
|
|
43253
43330
|
CompletedNoWork = "COMPLETED_NO_WORK",
|
|
43254
43331
|
DetailsRequested = "DETAILS_REQUESTED",
|
|
@@ -43365,6 +43442,20 @@ export type DevAiAutodevNextWorkstreamSweepWorkItemStateCount = {
|
|
|
43365
43442
|
count?: Maybe<Scalars['Int']['output']>;
|
|
43366
43443
|
state?: Maybe<Scalars['ID']['output']>;
|
|
43367
43444
|
};
|
|
43445
|
+
export type DevAiAutodevNextWorkstreamTaskConnection = {
|
|
43446
|
+
__typename?: 'DevAiAutodevNextWorkstreamTaskConnection';
|
|
43447
|
+
edges?: Maybe<Array<DevAiAutodevNextWorkItemEdge>>;
|
|
43448
|
+
nodes?: Maybe<Array<DevAiAutodevNextWorkItem>>;
|
|
43449
|
+
pageInfo: PageInfo;
|
|
43450
|
+
stats?: Maybe<DevAiAutodevNextWorkstreamTaskStats>;
|
|
43451
|
+
};
|
|
43452
|
+
export type DevAiAutodevNextWorkstreamTaskStats = {
|
|
43453
|
+
__typename?: 'DevAiAutodevNextWorkstreamTaskStats';
|
|
43454
|
+
needsRequirementsOverdue: Scalars['Int']['output'];
|
|
43455
|
+
needsRequirementsTotal: Scalars['Int']['output'];
|
|
43456
|
+
needsReviewOverdue: Scalars['Int']['output'];
|
|
43457
|
+
needsReviewTotal: Scalars['Int']['output'];
|
|
43458
|
+
};
|
|
43368
43459
|
export type DevAiAutofixConfiguration = {
|
|
43369
43460
|
__typename?: 'DevAiAutofixConfiguration';
|
|
43370
43461
|
autofixScans?: Maybe<DevAiAutofixScansConnection>;
|
|
@@ -48885,6 +48976,7 @@ export type ExternalSoftwareService = Node & {
|
|
|
48885
48976
|
createdBy?: Maybe<ExternalUser>;
|
|
48886
48977
|
description?: Maybe<Scalars['String']['output']>;
|
|
48887
48978
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
48979
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
48888
48980
|
environment?: Maybe<Scalars['String']['output']>;
|
|
48889
48981
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
48890
48982
|
id: Scalars['ID']['output'];
|
|
@@ -49866,6 +49958,7 @@ export type ForgeAlertsRuleFiltersData = {
|
|
|
49866
49958
|
};
|
|
49867
49959
|
export type ForgeAlertsRuleFiltersInput = {
|
|
49868
49960
|
environment: Scalars['String']['input'];
|
|
49961
|
+
isCustomMetricUseCase?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49869
49962
|
};
|
|
49870
49963
|
export type ForgeAlertsRuleFiltersResponse = {
|
|
49871
49964
|
__typename?: 'ForgeAlertsRuleFiltersResponse';
|
|
@@ -50538,6 +50631,9 @@ export type ForgeMetricsQuery = {
|
|
|
50538
50631
|
latencies: ForgeMetricsLatenciesResult;
|
|
50539
50632
|
latencyBuckets: ForgeMetricsLatenciesResult;
|
|
50540
50633
|
requestUrls: ForgeMetricsRequestUrlsResult;
|
|
50634
|
+
serviceCpuUsage: ForgeMetricsServiceCpuUsageResult;
|
|
50635
|
+
serviceInstancesCount: ForgeMetricsServiceInstancesCountResult;
|
|
50636
|
+
serviceMemoryUsage: ForgeMetricsServiceMemoryUsageResult;
|
|
50541
50637
|
sites: ForgeMetricsSitesResult;
|
|
50542
50638
|
successRate: ForgeMetricsSuccessRateResult;
|
|
50543
50639
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
@@ -50598,6 +50694,15 @@ export type ForgeMetricsQueryLatencyBucketsArgs = {
|
|
|
50598
50694
|
export type ForgeMetricsQueryRequestUrlsArgs = {
|
|
50599
50695
|
query: ForgeMetricsApiRequestQueryInput;
|
|
50600
50696
|
};
|
|
50697
|
+
export type ForgeMetricsQueryServiceCpuUsageArgs = {
|
|
50698
|
+
query: ForgeMetricsServiceQueryInput;
|
|
50699
|
+
};
|
|
50700
|
+
export type ForgeMetricsQueryServiceInstancesCountArgs = {
|
|
50701
|
+
query: ForgeMetricsServiceQueryInput;
|
|
50702
|
+
};
|
|
50703
|
+
export type ForgeMetricsQueryServiceMemoryUsageArgs = {
|
|
50704
|
+
query: ForgeMetricsServiceQueryInput;
|
|
50705
|
+
};
|
|
50601
50706
|
export type ForgeMetricsQuerySitesArgs = {
|
|
50602
50707
|
query: ForgeMetricsQueryInput;
|
|
50603
50708
|
};
|
|
@@ -50634,6 +50739,61 @@ export declare enum ForgeMetricsResolutionUnit {
|
|
|
50634
50739
|
export type ForgeMetricsSeries = {
|
|
50635
50740
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
50636
50741
|
};
|
|
50742
|
+
export type ForgeMetricsServiceCpuUsageResult = ForgeMetricsServiceCpuUsageValueData | QueryError;
|
|
50743
|
+
export type ForgeMetricsServiceCpuUsageValueData = {
|
|
50744
|
+
__typename?: 'ForgeMetricsServiceCpuUsageValueData';
|
|
50745
|
+
interval: ForgeMetricsIntervalRange;
|
|
50746
|
+
series: Array<ForgeMetricsServiceDataSeries>;
|
|
50747
|
+
type: ForgeMetricsDataType;
|
|
50748
|
+
};
|
|
50749
|
+
export type ForgeMetricsServiceDataPoint = {
|
|
50750
|
+
__typename?: 'ForgeMetricsServiceDataPoint';
|
|
50751
|
+
region: Scalars['String']['output'];
|
|
50752
|
+
serviceKey: Scalars['String']['output'];
|
|
50753
|
+
value: Scalars['Float']['output'];
|
|
50754
|
+
};
|
|
50755
|
+
export type ForgeMetricsServiceDataSeries = {
|
|
50756
|
+
__typename?: 'ForgeMetricsServiceDataSeries';
|
|
50757
|
+
data: Array<ForgeMetricsServiceDataPoint>;
|
|
50758
|
+
};
|
|
50759
|
+
export declare enum ForgeMetricsServiceGroupByDimensions {
|
|
50760
|
+
Region = "REGION",
|
|
50761
|
+
ServiceKey = "SERVICE_KEY"
|
|
50762
|
+
}
|
|
50763
|
+
export type ForgeMetricsServiceInstanceCountDataPoint = {
|
|
50764
|
+
__typename?: 'ForgeMetricsServiceInstanceCountDataPoint';
|
|
50765
|
+
count: Scalars['Int']['output'];
|
|
50766
|
+
region: Scalars['String']['output'];
|
|
50767
|
+
serviceKey: Scalars['String']['output'];
|
|
50768
|
+
};
|
|
50769
|
+
export type ForgeMetricsServiceInstanceCountDataSeries = {
|
|
50770
|
+
__typename?: 'ForgeMetricsServiceInstanceCountDataSeries';
|
|
50771
|
+
data: Array<ForgeMetricsServiceInstanceCountDataPoint>;
|
|
50772
|
+
};
|
|
50773
|
+
export type ForgeMetricsServiceInstancesCountResult = ForgeMetricsServiceInstancesCountValueData | QueryError;
|
|
50774
|
+
export type ForgeMetricsServiceInstancesCountValueData = {
|
|
50775
|
+
__typename?: 'ForgeMetricsServiceInstancesCountValueData';
|
|
50776
|
+
interval: ForgeMetricsIntervalRange;
|
|
50777
|
+
series: Array<ForgeMetricsServiceInstanceCountDataSeries>;
|
|
50778
|
+
type: ForgeMetricsDataType;
|
|
50779
|
+
};
|
|
50780
|
+
export type ForgeMetricsServiceMemoryUsageResult = ForgeMetricsServiceMemoryUsageValueData | QueryError;
|
|
50781
|
+
export type ForgeMetricsServiceMemoryUsageValueData = {
|
|
50782
|
+
__typename?: 'ForgeMetricsServiceMemoryUsageValueData';
|
|
50783
|
+
interval: ForgeMetricsIntervalRange;
|
|
50784
|
+
series: Array<ForgeMetricsServiceDataSeries>;
|
|
50785
|
+
type: ForgeMetricsDataType;
|
|
50786
|
+
};
|
|
50787
|
+
export type ForgeMetricsServiceQueryFilters = {
|
|
50788
|
+
environment: Scalars['ID']['input'];
|
|
50789
|
+
interval: ForgeMetricsIntervalInput;
|
|
50790
|
+
regions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
50791
|
+
services?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
50792
|
+
};
|
|
50793
|
+
export type ForgeMetricsServiceQueryInput = {
|
|
50794
|
+
filters: ForgeMetricsServiceQueryFilters;
|
|
50795
|
+
groupBy?: InputMaybe<Array<ForgeMetricsServiceGroupByDimensions>>;
|
|
50796
|
+
};
|
|
50637
50797
|
export declare enum ForgeMetricsSiteFilterCategory {
|
|
50638
50798
|
All = "ALL",
|
|
50639
50799
|
HighestInvocationCount = "HIGHEST_INVOCATION_COUNT",
|
|
@@ -55690,6 +55850,7 @@ export type GraphStore = {
|
|
|
55690
55850
|
atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
55691
55851
|
atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
55692
55852
|
atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
55853
|
+
atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
55693
55854
|
atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
|
|
55694
55855
|
atlassianUserUpdatedExternalCampaignInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignInverseConnection>;
|
|
55695
55856
|
atlassianUserUpdatedExternalCase?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCaseConnection>;
|
|
@@ -56300,6 +56461,7 @@ export type GraphStore = {
|
|
|
56300
56461
|
riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
56301
56462
|
rovoAgentActsAsIdentityUser?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserConnection>;
|
|
56302
56463
|
rovoAgentActsAsIdentityUserInverse?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseConnection>;
|
|
56464
|
+
rovoAgentHasAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection>;
|
|
56303
56465
|
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
56304
56466
|
scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
56305
56467
|
secodaDownstreamLineageBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
@@ -57785,6 +57947,14 @@ export type GraphStoreAtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
|
57785
57947
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57786
57948
|
sort?: InputMaybe<GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput>;
|
|
57787
57949
|
};
|
|
57950
|
+
export type GraphStoreAtlassianUserTriggeredAtlassianAgentSessionInverseArgs = {
|
|
57951
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57952
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57953
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57954
|
+
id: Scalars['ID']['input'];
|
|
57955
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57956
|
+
sort?: InputMaybe<GraphStoreAtlassianUserTriggeredAtlassianAgentSessionSortInput>;
|
|
57957
|
+
};
|
|
57788
57958
|
export type GraphStoreAtlassianUserUpdatedExternalCampaignArgs = {
|
|
57789
57959
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57790
57960
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -62445,6 +62615,14 @@ export type GraphStoreRovoAgentActsAsIdentityUserInverseArgs = {
|
|
|
62445
62615
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62446
62616
|
sort?: InputMaybe<GraphStoreRovoAgentActsAsIdentityUserSortInput>;
|
|
62447
62617
|
};
|
|
62618
|
+
export type GraphStoreRovoAgentHasAtlassianAgentSessionInverseArgs = {
|
|
62619
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62620
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62621
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62622
|
+
id: Scalars['ID']['input'];
|
|
62623
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62624
|
+
sort?: InputMaybe<GraphStoreRovoAgentHasAtlassianAgentSessionSortInput>;
|
|
62625
|
+
};
|
|
62448
62626
|
export type GraphStoreScorecardHasAtlasGoalArgs = {
|
|
62449
62627
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
62450
62628
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -66278,6 +66456,9 @@ export type GraphStoreAtlassianUserOwnsInferredProjectSortInput = {
|
|
|
66278
66456
|
export type GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput = {
|
|
66279
66457
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66280
66458
|
};
|
|
66459
|
+
export type GraphStoreAtlassianUserTriggeredAtlassianAgentSessionSortInput = {
|
|
66460
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66461
|
+
};
|
|
66281
66462
|
export type GraphStoreAtlassianUserUpdatedExternalCampaignSortInput = {
|
|
66282
66463
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66283
66464
|
};
|
|
@@ -74641,6 +74822,9 @@ export type GraphStoreRiskHasProjectSortInput = {
|
|
|
74641
74822
|
export type GraphStoreRovoAgentActsAsIdentityUserSortInput = {
|
|
74642
74823
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74643
74824
|
};
|
|
74825
|
+
export type GraphStoreRovoAgentHasAtlassianAgentSessionSortInput = {
|
|
74826
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74827
|
+
};
|
|
74644
74828
|
export type GraphStoreScorecardHasAtlasGoalSortInput = {
|
|
74645
74829
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74646
74830
|
};
|
|
@@ -76379,6 +76563,20 @@ export type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEd
|
|
|
76379
76563
|
node?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion>;
|
|
76380
76564
|
};
|
|
76381
76565
|
export type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76566
|
+
export type GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection = HasPageInfo & {
|
|
76567
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection';
|
|
76568
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseEdge>>>;
|
|
76569
|
+
pageInfo: PageInfo;
|
|
76570
|
+
};
|
|
76571
|
+
export type GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseEdge = {
|
|
76572
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseEdge';
|
|
76573
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76574
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76575
|
+
id: Scalars['ID']['output'];
|
|
76576
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76577
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseUnion>;
|
|
76578
|
+
};
|
|
76579
|
+
export type GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76382
76580
|
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection = HasPageInfo & {
|
|
76383
76581
|
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection';
|
|
76384
76582
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignEdge>>>;
|
|
@@ -82695,6 +82893,20 @@ export type GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseEdge = {
|
|
|
82695
82893
|
};
|
|
82696
82894
|
export type GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
82697
82895
|
export type GraphStoreSimplifiedRovoAgentActsAsIdentityUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
82896
|
+
export type GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection = HasPageInfo & {
|
|
82897
|
+
__typename?: 'GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection';
|
|
82898
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseEdge>>>;
|
|
82899
|
+
pageInfo: PageInfo;
|
|
82900
|
+
};
|
|
82901
|
+
export type GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseEdge = {
|
|
82902
|
+
__typename?: 'GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseEdge';
|
|
82903
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82904
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82905
|
+
id: Scalars['ID']['output'];
|
|
82906
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82907
|
+
node?: Maybe<GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseUnion>;
|
|
82908
|
+
};
|
|
82909
|
+
export type GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
82698
82910
|
export type GraphStoreSimplifiedScorecardHasAtlasGoalConnection = HasPageInfo & {
|
|
82699
82911
|
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalConnection';
|
|
82700
82912
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalEdge>>>;
|
|
@@ -89297,6 +89509,7 @@ export type GraphStoreV2 = {
|
|
|
89297
89509
|
atlassianUserSubmittedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSubmittedFocusAskInverseConnection>;
|
|
89298
89510
|
atlassianUserTrashedConfluenceContent?: Maybe<GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentConnection>;
|
|
89299
89511
|
atlassianUserTrashedConfluenceContentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentInverseConnection>;
|
|
89512
|
+
atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
89300
89513
|
atlassianUserTriggeredExternalDeployment?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentConnection>;
|
|
89301
89514
|
atlassianUserTriggeredExternalDeploymentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentInverseConnection>;
|
|
89302
89515
|
atlassianUserUpdatedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianGoalConnection>;
|
|
@@ -89931,6 +90144,7 @@ export type GraphStoreV2 = {
|
|
|
89931
90144
|
repositoryEntityIsBitbucketRepositoryInverse?: Maybe<GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryInverseConnection>;
|
|
89932
90145
|
rovoAgentActsAsAtlassianUser?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserConnection>;
|
|
89933
90146
|
rovoAgentActsAsAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseConnection>;
|
|
90147
|
+
rovoAgentHasAtlassianAgentSessionInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection>;
|
|
89934
90148
|
talentPositionLinksExternalPosition?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection>;
|
|
89935
90149
|
talentPositionLinksExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionInverseConnection>;
|
|
89936
90150
|
talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
|
|
@@ -91508,6 +91722,13 @@ export type GraphStoreV2AtlassianUserTrashedConfluenceContentInverseArgs = {
|
|
|
91508
91722
|
id: Scalars['ID']['input'];
|
|
91509
91723
|
sort?: InputMaybe<GraphStoreV2AtlassianUserTrashedConfluenceContentSortInput>;
|
|
91510
91724
|
};
|
|
91725
|
+
export type GraphStoreV2AtlassianUserTriggeredAtlassianAgentSessionInverseArgs = {
|
|
91726
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91727
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
91728
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91729
|
+
id: Scalars['ID']['input'];
|
|
91730
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserTriggeredAtlassianAgentSessionSortInput>;
|
|
91731
|
+
};
|
|
91511
91732
|
export type GraphStoreV2AtlassianUserTriggeredExternalDeploymentArgs = {
|
|
91512
91733
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91513
91734
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -95993,6 +96214,13 @@ export type GraphStoreV2RovoAgentActsAsAtlassianUserInverseArgs = {
|
|
|
95993
96214
|
id: Scalars['ID']['input'];
|
|
95994
96215
|
sort?: InputMaybe<GraphStoreV2RovoAgentActsAsAtlassianUserSortInput>;
|
|
95995
96216
|
};
|
|
96217
|
+
export type GraphStoreV2RovoAgentHasAtlassianAgentSessionInverseArgs = {
|
|
96218
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96219
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96220
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96221
|
+
id: Scalars['ID']['input'];
|
|
96222
|
+
sort?: InputMaybe<GraphStoreV2RovoAgentHasAtlassianAgentSessionSortInput>;
|
|
96223
|
+
};
|
|
95996
96224
|
export type GraphStoreV2TalentPositionLinksExternalPositionArgs = {
|
|
95997
96225
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95998
96226
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -96509,6 +96737,9 @@ export type GraphStoreV2AtlassianUserSubmittedFocusAskSortInput = {
|
|
|
96509
96737
|
export type GraphStoreV2AtlassianUserTrashedConfluenceContentSortInput = {
|
|
96510
96738
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96511
96739
|
};
|
|
96740
|
+
export type GraphStoreV2AtlassianUserTriggeredAtlassianAgentSessionSortInput = {
|
|
96741
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96742
|
+
};
|
|
96512
96743
|
export type GraphStoreV2AtlassianUserTriggeredExternalDeploymentSortInput = {
|
|
96513
96744
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96514
96745
|
};
|
|
@@ -99946,6 +100177,9 @@ export type GraphStoreV2RepositoryEntityIsBitbucketRepositorySortInput = {
|
|
|
99946
100177
|
export type GraphStoreV2RovoAgentActsAsAtlassianUserSortInput = {
|
|
99947
100178
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99948
100179
|
};
|
|
100180
|
+
export type GraphStoreV2RovoAgentHasAtlassianAgentSessionSortInput = {
|
|
100181
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
100182
|
+
};
|
|
99949
100183
|
export type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection = HasPageInfo & {
|
|
99950
100184
|
__typename?: 'GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection';
|
|
99951
100185
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeEdge>>>;
|
|
@@ -103116,6 +103350,20 @@ export type GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentInverseEd
|
|
|
103116
103350
|
};
|
|
103117
103351
|
export type GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
103118
103352
|
export type GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentUnion = ConfluenceSpace;
|
|
103353
|
+
export type GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection = HasPageInfo & {
|
|
103354
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection';
|
|
103355
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseEdge>>>;
|
|
103356
|
+
pageInfo: PageInfo;
|
|
103357
|
+
};
|
|
103358
|
+
export type GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseEdge = {
|
|
103359
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseEdge';
|
|
103360
|
+
createdAt: Scalars['DateTime']['output'];
|
|
103361
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
103362
|
+
id: Scalars['ID']['output'];
|
|
103363
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
103364
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseUnion>;
|
|
103365
|
+
};
|
|
103366
|
+
export type GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
103119
103367
|
export type GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentConnection = HasPageInfo & {
|
|
103120
103368
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentConnection';
|
|
103121
103369
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentEdge>>>;
|
|
@@ -112246,6 +112494,20 @@ export type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseEdge = {
|
|
|
112246
112494
|
};
|
|
112247
112495
|
export type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
112248
112496
|
export type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
112497
|
+
export type GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection = HasPageInfo & {
|
|
112498
|
+
__typename?: 'GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection';
|
|
112499
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseEdge>>>;
|
|
112500
|
+
pageInfo: PageInfo;
|
|
112501
|
+
};
|
|
112502
|
+
export type GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseEdge = {
|
|
112503
|
+
__typename?: 'GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseEdge';
|
|
112504
|
+
createdAt: Scalars['DateTime']['output'];
|
|
112505
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
112506
|
+
id: Scalars['ID']['output'];
|
|
112507
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
112508
|
+
node?: Maybe<GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseUnion>;
|
|
112509
|
+
};
|
|
112510
|
+
export type GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
112249
112511
|
export type GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection = HasPageInfo & {
|
|
112250
112512
|
__typename?: 'GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection';
|
|
112251
112513
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionEdge>>>;
|
|
@@ -117885,6 +118147,7 @@ export type JiraAgenticUser = JiraActor & {
|
|
|
117885
118147
|
fromUrs?: Maybe<Scalars['Boolean']['output']>;
|
|
117886
118148
|
isAssignable?: Maybe<Scalars['Boolean']['output']>;
|
|
117887
118149
|
isFavorite?: Maybe<Scalars['Boolean']['output']>;
|
|
118150
|
+
isSemanticallyRecommended?: Maybe<Scalars['Boolean']['output']>;
|
|
117888
118151
|
totalUniqueConversationsLast30Days?: Maybe<Scalars['Int']['output']>;
|
|
117889
118152
|
totalUniqueUsersLast30Days?: Maybe<Scalars['Int']['output']>;
|
|
117890
118153
|
user?: Maybe<User>;
|
|
@@ -117977,6 +118240,7 @@ export type JiraAggregatedTimelineFieldMissingAggregatedDateTypeArgs = {
|
|
|
117977
118240
|
export declare enum JiraAiAgentConversationState {
|
|
117978
118241
|
ArtefactReady = "ARTEFACT_READY",
|
|
117979
118242
|
AuthRequired = "AUTH_REQUIRED",
|
|
118243
|
+
Cancelled = "CANCELLED",
|
|
117980
118244
|
Completed = "COMPLETED",
|
|
117981
118245
|
Failed = "FAILED",
|
|
117982
118246
|
InputRequired = "INPUT_REQUIRED",
|
|
@@ -124694,6 +124958,7 @@ export type JiraFieldScheme = Node & {
|
|
|
124694
124958
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
124695
124959
|
requiredOnIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
124696
124960
|
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
124961
|
+
shouldShowRendererUpdateMessage?: Maybe<Scalars['Boolean']['output']>;
|
|
124697
124962
|
};
|
|
124698
124963
|
export type JiraFieldSchemeAssociatedIssueTypesArgs = {
|
|
124699
124964
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -124715,6 +124980,9 @@ export type JiraFieldSchemeRequiredOnIssueTypesArgs = {
|
|
|
124715
124980
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124716
124981
|
input?: InputMaybe<JiraFieldSchemeRequiredOnIssueTypesInput>;
|
|
124717
124982
|
};
|
|
124983
|
+
export type JiraFieldSchemeShouldShowRendererUpdateMessageArgs = {
|
|
124984
|
+
fieldId: Scalars['String']['input'];
|
|
124985
|
+
};
|
|
124718
124986
|
export type JiraFieldSchemeAssociatedField = {
|
|
124719
124987
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
124720
124988
|
field?: Maybe<JiraField>;
|
|
@@ -125306,6 +125574,12 @@ export type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
125306
125574
|
type: Scalars['String']['output'];
|
|
125307
125575
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
125308
125576
|
};
|
|
125577
|
+
export type JiraForgeNumberFieldPayload = Payload & {
|
|
125578
|
+
__typename?: 'JiraForgeNumberFieldPayload';
|
|
125579
|
+
errors?: Maybe<Array<MutationError>>;
|
|
125580
|
+
field?: Maybe<JiraForgeNumberField>;
|
|
125581
|
+
success: Scalars['Boolean']['output'];
|
|
125582
|
+
};
|
|
125309
125583
|
export type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
125310
125584
|
__typename?: 'JiraForgeObjectField';
|
|
125311
125585
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -126648,6 +126922,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
126648
126922
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
126649
126923
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
126650
126924
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
126925
|
+
nextActionPresence?: Maybe<JiraIssueNextActionPresence>;
|
|
126651
126926
|
nextActionSuggestions?: Maybe<JiraIssueNextActionSuggestions>;
|
|
126652
126927
|
parentIssue?: Maybe<JiraIssue>;
|
|
126653
126928
|
parentIssueField?: Maybe<JiraParentIssueField>;
|
|
@@ -128387,6 +128662,16 @@ export type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
|
|
|
128387
128662
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
128388
128663
|
success: Scalars['Boolean']['output'];
|
|
128389
128664
|
};
|
|
128665
|
+
export type JiraIssueNextActionPresence = {
|
|
128666
|
+
__typename?: 'JiraIssueNextActionPresence';
|
|
128667
|
+
recommendations?: Maybe<JiraIssueNextActionSuggestions>;
|
|
128668
|
+
state?: Maybe<JiraIssueNextActionPresenceState>;
|
|
128669
|
+
};
|
|
128670
|
+
export declare enum JiraIssueNextActionPresenceState {
|
|
128671
|
+
Likely = "LIKELY",
|
|
128672
|
+
None = "NONE",
|
|
128673
|
+
Ready = "READY"
|
|
128674
|
+
}
|
|
128390
128675
|
export type JiraIssueNextActionSuggestions = {
|
|
128391
128676
|
__typename?: 'JiraIssueNextActionSuggestions';
|
|
128392
128677
|
improveDescriptionSuggestions?: Maybe<JiraImproveDescriptionSuggestion>;
|
|
@@ -131510,6 +131795,7 @@ export type JiraMutation = {
|
|
|
131510
131795
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
131511
131796
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
131512
131797
|
updateFlagField?: Maybe<JiraUpdateFlagFieldPayload>;
|
|
131798
|
+
updateForgeNumberField?: Maybe<JiraForgeNumberFieldPayload>;
|
|
131513
131799
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
131514
131800
|
updateForgeStringField?: Maybe<JiraForgeStringFieldPayload>;
|
|
131515
131801
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
@@ -132133,6 +132419,9 @@ export type JiraMutationUpdateFieldSetsViewArgs = {
|
|
|
132133
132419
|
export type JiraMutationUpdateFlagFieldArgs = {
|
|
132134
132420
|
input: JiraUpdateFlagFieldInput;
|
|
132135
132421
|
};
|
|
132422
|
+
export type JiraMutationUpdateForgeNumberFieldArgs = {
|
|
132423
|
+
input: JiraUpdateNumberFieldInput;
|
|
132424
|
+
};
|
|
132136
132425
|
export type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
132137
132426
|
input: JiraUpdateForgeObjectFieldInput;
|
|
132138
132427
|
};
|
|
@@ -133817,6 +134106,7 @@ export type JiraPlaybookRuleIdsConnection = HasPageInfo & QueryPayload & {
|
|
|
133817
134106
|
};
|
|
133818
134107
|
export declare enum JiraPlaybookScopeType {
|
|
133819
134108
|
Global = "GLOBAL",
|
|
134109
|
+
Icc = "ICC",
|
|
133820
134110
|
Issue = "ISSUE",
|
|
133821
134111
|
Project = "PROJECT",
|
|
133822
134112
|
Team = "TEAM"
|
|
@@ -138394,11 +138684,6 @@ export type JiraRoleEdge = {
|
|
|
138394
138684
|
export type JiraRoleInput = {
|
|
138395
138685
|
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
138396
138686
|
};
|
|
138397
|
-
export type JiraRovoAiEnabledGloballyStatus = {
|
|
138398
|
-
__typename?: 'JiraRovoAiEnabledGloballyStatus';
|
|
138399
|
-
disabledReason?: Maybe<JiraRovoWithAiDisabledReason>;
|
|
138400
|
-
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
138401
|
-
};
|
|
138402
138687
|
export declare enum JiraRovoAiProduct {
|
|
138403
138688
|
Jira = "JIRA",
|
|
138404
138689
|
JiraCustomerService = "JIRA_CUSTOMER_SERVICE",
|
|
@@ -138412,15 +138697,21 @@ export type JiraRovoConversationMetadata = {
|
|
|
138412
138697
|
};
|
|
138413
138698
|
export type JiraRovoEnablementStatus = {
|
|
138414
138699
|
__typename?: 'JiraRovoEnablementStatus';
|
|
138700
|
+
isRovoAiFeaturesEnabledInAnyJiraProducts?: Maybe<JiraRovoWithAiEnabledInAnyJiraFamilyProductStatus>;
|
|
138415
138701
|
isRovoEntitlementEnabledForTenant?: Maybe<Scalars['Boolean']['output']>;
|
|
138416
|
-
|
|
138417
|
-
rovoWithAiEnabledProducts?: Maybe<Array<JiraRovoAiProduct>>;
|
|
138702
|
+
rovoAiFeaturesEnabledJiraProducts?: Maybe<Array<JiraRovoAiProduct>>;
|
|
138418
138703
|
};
|
|
138419
138704
|
export declare enum JiraRovoWithAiDisabledReason {
|
|
138420
138705
|
NoRovoEntitlement = "NO_ROVO_ENTITLEMENT",
|
|
138706
|
+
NoUserContextAvailable = "NO_USER_CONTEXT_AVAILABLE",
|
|
138421
138707
|
RbacAccessDenied = "RBAC_ACCESS_DENIED",
|
|
138422
138708
|
RovoDisabledInAllJiraProducts = "ROVO_DISABLED_IN_ALL_JIRA_PRODUCTS"
|
|
138423
138709
|
}
|
|
138710
|
+
export type JiraRovoWithAiEnabledInAnyJiraFamilyProductStatus = {
|
|
138711
|
+
__typename?: 'JiraRovoWithAiEnabledInAnyJiraFamilyProductStatus';
|
|
138712
|
+
disabledReason?: Maybe<JiraRovoWithAiDisabledReason>;
|
|
138713
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
138714
|
+
};
|
|
138424
138715
|
export type JiraSdlcSuggestions = JiraBaseNextActionsEntity & {
|
|
138425
138716
|
__typename?: 'JiraSDLCSuggestions';
|
|
138426
138717
|
approvedPullRequests?: Maybe<JiraIssuePullRequests>;
|
|
@@ -140744,6 +141035,16 @@ export type JiraSetTimelineBarColorModePayload = Payload & {
|
|
|
140744
141035
|
success: Scalars['Boolean']['output'];
|
|
140745
141036
|
view?: Maybe<JiraView>;
|
|
140746
141037
|
};
|
|
141038
|
+
export type JiraSetTimelineChildIssuePlanningModeInput = {
|
|
141039
|
+
childIssuePlanningMode: JiraIssueSearchTimelineChildIssuePlanningMode;
|
|
141040
|
+
viewId: Scalars['ID']['input'];
|
|
141041
|
+
};
|
|
141042
|
+
export type JiraSetTimelineChildIssuePlanningModePayload = Payload & {
|
|
141043
|
+
__typename?: 'JiraSetTimelineChildIssuePlanningModePayload';
|
|
141044
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141045
|
+
success: Scalars['Boolean']['output'];
|
|
141046
|
+
view?: Maybe<JiraView>;
|
|
141047
|
+
};
|
|
140747
141048
|
export type JiraSetTimelineHighlightedReleasesInput = {
|
|
140748
141049
|
highlightedReleases: Array<Scalars['ID']['input']>;
|
|
140749
141050
|
viewId: Scalars['ID']['input'];
|
|
@@ -141644,6 +141945,7 @@ export type JiraStatus = MercuryOriginalProjectStatus & Node & {
|
|
|
141644
141945
|
id: Scalars['ID']['output'];
|
|
141645
141946
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
141646
141947
|
name?: Maybe<Scalars['String']['output']>;
|
|
141948
|
+
scope?: Maybe<JiraStatusScope>;
|
|
141647
141949
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
141648
141950
|
statusId: Scalars['String']['output'];
|
|
141649
141951
|
};
|
|
@@ -141752,6 +142054,14 @@ export type JiraStatusFieldPayload = Payload & {
|
|
|
141752
142054
|
export type JiraStatusInput = {
|
|
141753
142055
|
statusId: Scalars['ID']['input'];
|
|
141754
142056
|
};
|
|
142057
|
+
export type JiraStatusScope = {
|
|
142058
|
+
__typename?: 'JiraStatusScope';
|
|
142059
|
+
type?: Maybe<JiraStatusScopeType>;
|
|
142060
|
+
};
|
|
142061
|
+
export declare enum JiraStatusScopeType {
|
|
142062
|
+
Global = "GLOBAL",
|
|
142063
|
+
Project = "PROJECT"
|
|
142064
|
+
}
|
|
141755
142065
|
export type JiraStoryPoint = {
|
|
141756
142066
|
__typename?: 'JiraStoryPoint';
|
|
141757
142067
|
value: Scalars['Float']['output'];
|
|
@@ -146256,6 +146566,7 @@ export type JsmChannelsTicketServiceAgentResolutionState = {
|
|
|
146256
146566
|
message?: Maybe<Scalars['String']['output']>;
|
|
146257
146567
|
plan?: Maybe<JsmChannelsServiceAgentResolutionPlan>;
|
|
146258
146568
|
reasoningEvent?: Maybe<JsmChannelsReasoningEvent>;
|
|
146569
|
+
reasoningEvents?: Maybe<Array<JsmChannelsReasoningEvent>>;
|
|
146259
146570
|
};
|
|
146260
146571
|
export type JsmChannelsTicketServiceAgentResolutionStateResult = JsmChannelsTicketServiceAgentResolutionState | QueryError;
|
|
146261
146572
|
export type JsmChannelsUpdateRovoServiceSkillsInput = {
|
|
@@ -146868,6 +147179,15 @@ export type JsmConversation = {
|
|
|
146868
147179
|
lastMessageAt?: Maybe<Scalars['DateTime']['output']>;
|
|
146869
147180
|
summary?: Maybe<Scalars['String']['output']>;
|
|
146870
147181
|
};
|
|
147182
|
+
export type JsmConversationAcceptInviteInput = {
|
|
147183
|
+
cloudId: Scalars['ID']['input'];
|
|
147184
|
+
inviteId: Scalars['ID']['input'];
|
|
147185
|
+
};
|
|
147186
|
+
export type JsmConversationAcceptInvitePayload = Payload & {
|
|
147187
|
+
__typename?: 'JsmConversationAcceptInvitePayload';
|
|
147188
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147189
|
+
success: Scalars['Boolean']['output'];
|
|
147190
|
+
};
|
|
146871
147191
|
export declare enum JsmConversationActivationState {
|
|
146872
147192
|
Disabled = "DISABLED",
|
|
146873
147193
|
Enabled = "ENABLED",
|
|
@@ -146996,6 +147316,8 @@ export type JsmConversationMessage = {
|
|
|
146996
147316
|
sentAt?: Maybe<Scalars['DateTime']['output']>;
|
|
146997
147317
|
sequenceId?: Maybe<Scalars['String']['output']>;
|
|
146998
147318
|
source?: Maybe<JsmConversationMessageSource>;
|
|
147319
|
+
systemMessageKey?: Maybe<Scalars['String']['output']>;
|
|
147320
|
+
systemMessageMetadata?: Maybe<Array<JsmConversationSystemMessageMetadataEntry>>;
|
|
146999
147321
|
visibility?: Maybe<JsmConversationMessageVisibility>;
|
|
147000
147322
|
};
|
|
147001
147323
|
export type JsmConversationMessageConnection = {
|
|
@@ -147020,6 +147342,15 @@ export declare enum JsmConversationMessageVisibility {
|
|
|
147020
147342
|
Internal = "INTERNAL",
|
|
147021
147343
|
Public = "PUBLIC"
|
|
147022
147344
|
}
|
|
147345
|
+
export type JsmConversationRejectInviteInput = {
|
|
147346
|
+
cloudId: Scalars['ID']['input'];
|
|
147347
|
+
inviteId: Scalars['ID']['input'];
|
|
147348
|
+
};
|
|
147349
|
+
export type JsmConversationRejectInvitePayload = Payload & {
|
|
147350
|
+
__typename?: 'JsmConversationRejectInvitePayload';
|
|
147351
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147352
|
+
success: Scalars['Boolean']['output'];
|
|
147353
|
+
};
|
|
147023
147354
|
export type JsmConversationSettings = {
|
|
147024
147355
|
__typename?: 'JsmConversationSettings';
|
|
147025
147356
|
activationState?: Maybe<JsmConversationActivationState>;
|
|
@@ -147070,6 +147401,11 @@ export declare enum JsmConversationStatus {
|
|
|
147070
147401
|
Timeout = "TIMEOUT",
|
|
147071
147402
|
Unassigned = "UNASSIGNED"
|
|
147072
147403
|
}
|
|
147404
|
+
export type JsmConversationSystemMessageMetadataEntry = {
|
|
147405
|
+
__typename?: 'JsmConversationSystemMessageMetadataEntry';
|
|
147406
|
+
key: Scalars['String']['output'];
|
|
147407
|
+
value: Scalars['String']['output'];
|
|
147408
|
+
};
|
|
147073
147409
|
export type JsmConversationUpdate = JsmConversation | JsmConversationClaimedConversationMessage | QueryError;
|
|
147074
147410
|
export type JsmSolutionComposerFollowupTask = {
|
|
147075
147411
|
__typename?: 'JsmSolutionComposerFollowupTask';
|
|
@@ -148391,11 +148727,27 @@ export type KnowledgeBaseCrossSiteSearchConnection = {
|
|
|
148391
148727
|
};
|
|
148392
148728
|
export type KnowledgeBaseHealthDashboard = {
|
|
148393
148729
|
__typename?: 'KnowledgeBaseHealthDashboard';
|
|
148394
|
-
articleCount
|
|
148395
|
-
|
|
148396
|
-
|
|
148730
|
+
articleCount?: Maybe<Scalars['Int']['output']>;
|
|
148731
|
+
articleViewCount?: Maybe<Scalars['Int']['output']>;
|
|
148732
|
+
errors: Array<KnowledgeBaseHealthDashboardMetricError>;
|
|
148733
|
+
externalArticleCount?: Maybe<Scalars['Int']['output']>;
|
|
148734
|
+
internalArticleCount?: Maybe<Scalars['Int']['output']>;
|
|
148397
148735
|
projectIdentifier: Scalars['String']['output'];
|
|
148398
148736
|
};
|
|
148737
|
+
export declare enum KnowledgeBaseHealthDashboardMetric {
|
|
148738
|
+
ArticleCount = "ARTICLE_COUNT",
|
|
148739
|
+
ArticleViewCount = "ARTICLE_VIEW_COUNT"
|
|
148740
|
+
}
|
|
148741
|
+
export type KnowledgeBaseHealthDashboardMetricError = {
|
|
148742
|
+
__typename?: 'KnowledgeBaseHealthDashboardMetricError';
|
|
148743
|
+
errorType: KnowledgeBaseHealthDashboardMetricErrorType;
|
|
148744
|
+
message: Scalars['String']['output'];
|
|
148745
|
+
metric: KnowledgeBaseHealthDashboardMetric;
|
|
148746
|
+
};
|
|
148747
|
+
export declare enum KnowledgeBaseHealthDashboardMetricErrorType {
|
|
148748
|
+
Permanent = "PERMANENT",
|
|
148749
|
+
Transient = "TRANSIENT"
|
|
148750
|
+
}
|
|
148399
148751
|
export type KnowledgeBaseHealthDashboardResponse = KnowledgeBaseHealthDashboard | QueryError;
|
|
148400
148752
|
export type KnowledgeBaseInaccessibleLinkedSource = {
|
|
148401
148753
|
__typename?: 'KnowledgeBaseInaccessibleLinkedSource';
|
|
@@ -148445,11 +148797,6 @@ export type KnowledgeBaseLinkedSources = {
|
|
|
148445
148797
|
linkedSources?: Maybe<Array<KnowledgeBaseLinkedSource>>;
|
|
148446
148798
|
};
|
|
148447
148799
|
export type KnowledgeBaseLinkedSourcesResponse = KnowledgeBaseLinkedSources | QueryError;
|
|
148448
|
-
export type KnowledgeBaseMonthlyArticleCount = {
|
|
148449
|
-
__typename?: 'KnowledgeBaseMonthlyArticleCount';
|
|
148450
|
-
count: Scalars['Int']['output'];
|
|
148451
|
-
yearMonth: Scalars['String']['output'];
|
|
148452
|
-
};
|
|
148453
148800
|
export type KnowledgeBaseMutationApi = {
|
|
148454
148801
|
__typename?: 'KnowledgeBaseMutationApi';
|
|
148455
148802
|
linkKnowledgeBaseSource?: Maybe<KnowledgeBaseLinkResponse>;
|
|
@@ -151599,6 +151946,7 @@ export type MarketplaceConsoleEdition = {
|
|
|
151599
151946
|
id: Scalars['ID']['output'];
|
|
151600
151947
|
isDecoupled?: Maybe<Scalars['Boolean']['output']>;
|
|
151601
151948
|
isDefault: Scalars['Boolean']['output'];
|
|
151949
|
+
licenseModel?: Maybe<MarketplaceConsoleLicenseModel>;
|
|
151602
151950
|
parentProduct?: Maybe<Scalars['String']['output']>;
|
|
151603
151951
|
pricingPlan: MarketplaceConsolePricingPlan;
|
|
151604
151952
|
type: MarketplaceConsoleEditionType;
|
|
@@ -151612,6 +151960,7 @@ export type MarketplaceConsoleEditionInput = {
|
|
|
151612
151960
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
151613
151961
|
isDecoupled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
151614
151962
|
isDefault: Scalars['Boolean']['input'];
|
|
151963
|
+
licenseModel?: InputMaybe<MarketplaceConsoleLicenseModel>;
|
|
151615
151964
|
parentProduct?: InputMaybe<Scalars['String']['input']>;
|
|
151616
151965
|
pricingPlan: MarketplaceConsolePricingPlanInput;
|
|
151617
151966
|
type: MarketplaceConsoleEditionType;
|
|
@@ -151849,6 +152198,11 @@ export type MarketplaceConsoleLegacyVendorLinks = {
|
|
|
151849
152198
|
donate?: Maybe<Scalars['String']['output']>;
|
|
151850
152199
|
evaluationLicense?: Maybe<Scalars['String']['output']>;
|
|
151851
152200
|
};
|
|
152201
|
+
export declare enum MarketplaceConsoleLicenseModel {
|
|
152202
|
+
Coupled = "COUPLED",
|
|
152203
|
+
Decoupled = "DECOUPLED",
|
|
152204
|
+
UsageBased = "USAGE_BASED"
|
|
152205
|
+
}
|
|
151852
152206
|
export type MarketplaceConsoleLink = {
|
|
151853
152207
|
__typename?: 'MarketplaceConsoleLink';
|
|
151854
152208
|
href: Scalars['String']['output'];
|
|
@@ -152005,6 +152359,34 @@ export type MarketplaceConsoleMakerPaymentInput = {
|
|
|
152005
152359
|
tax: MarketplaceConsoleTaxInput;
|
|
152006
152360
|
};
|
|
152007
152361
|
export type MarketplaceConsoleMakerResponse = MarketplaceConsoleKnownError | MarketplaceConsoleMutationVoidResponse;
|
|
152362
|
+
export type MarketplaceConsoleMeteredPricing = {
|
|
152363
|
+
__typename?: 'MarketplaceConsoleMeteredPricing';
|
|
152364
|
+
chargeElement: Scalars['String']['output'];
|
|
152365
|
+
chargeType: Scalars['String']['output'];
|
|
152366
|
+
tiers: Array<MarketplaceConsoleMeteredPricingTier>;
|
|
152367
|
+
tiersMode: Scalars['String']['output'];
|
|
152368
|
+
transformQuantity?: Maybe<MarketplaceConsoleTransformQuantity>;
|
|
152369
|
+
};
|
|
152370
|
+
export type MarketplaceConsoleMeteredPricingInput = {
|
|
152371
|
+
chargeElement: Scalars['String']['input'];
|
|
152372
|
+
chargeType: Scalars['String']['input'];
|
|
152373
|
+
tiers: Array<MarketplaceConsoleMeteredPricingTierInput>;
|
|
152374
|
+
tiersMode: Scalars['String']['input'];
|
|
152375
|
+
transformQuantity?: InputMaybe<MarketplaceConsoleTransformQuantityInput>;
|
|
152376
|
+
};
|
|
152377
|
+
export type MarketplaceConsoleMeteredPricingTier = {
|
|
152378
|
+
__typename?: 'MarketplaceConsoleMeteredPricingTier';
|
|
152379
|
+
ceiling?: Maybe<Scalars['Int']['output']>;
|
|
152380
|
+
flatAmount?: Maybe<Scalars['Float']['output']>;
|
|
152381
|
+
floor: Scalars['Int']['output'];
|
|
152382
|
+
unitAmount?: Maybe<Scalars['Float']['output']>;
|
|
152383
|
+
};
|
|
152384
|
+
export type MarketplaceConsoleMeteredPricingTierInput = {
|
|
152385
|
+
ceiling?: InputMaybe<Scalars['Int']['input']>;
|
|
152386
|
+
flatAmount?: InputMaybe<Scalars['Float']['input']>;
|
|
152387
|
+
floor: Scalars['Int']['input'];
|
|
152388
|
+
unitAmount?: InputMaybe<Scalars['Float']['input']>;
|
|
152389
|
+
};
|
|
152008
152390
|
export type MarketplaceConsoleMutationApi = {
|
|
152009
152391
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
152010
152392
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
@@ -152140,6 +152522,7 @@ export type MarketplaceConsoleOffering = {
|
|
|
152140
152522
|
__typename?: 'MarketplaceConsoleOffering';
|
|
152141
152523
|
id: Scalars['ID']['output'];
|
|
152142
152524
|
isDecoupled: Scalars['Boolean']['output'];
|
|
152525
|
+
licenseModel?: Maybe<MarketplaceConsoleLicenseModel>;
|
|
152143
152526
|
name: Scalars['String']['output'];
|
|
152144
152527
|
parentProduct: Scalars['String']['output'];
|
|
152145
152528
|
status: MarketplaceConsoleOfferingStatus;
|
|
@@ -152284,6 +152667,7 @@ export type MarketplaceConsolePricingPlan = {
|
|
|
152284
152667
|
currency: MarketplaceConsolePricingCurrency;
|
|
152285
152668
|
expertDiscountOptOut: Scalars['Boolean']['output'];
|
|
152286
152669
|
isDefaultPricing?: Maybe<Scalars['Boolean']['output']>;
|
|
152670
|
+
meteredPricing?: Maybe<MarketplaceConsoleMeteredPricing>;
|
|
152287
152671
|
status: MarketplaceConsolePricingPlanStatus;
|
|
152288
152672
|
tieredPricing: Array<MarketplaceConsolePricingItem>;
|
|
152289
152673
|
};
|
|
@@ -152291,6 +152675,7 @@ export type MarketplaceConsolePricingPlanInput = {
|
|
|
152291
152675
|
currency: MarketplaceConsolePricingCurrency;
|
|
152292
152676
|
expertDiscountOptOut: Scalars['Boolean']['input'];
|
|
152293
152677
|
isDefaultPricing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
152678
|
+
meteredPricing?: InputMaybe<MarketplaceConsoleMeteredPricingInput>;
|
|
152294
152679
|
status: MarketplaceConsolePricingPlanStatus;
|
|
152295
152680
|
tieredPricing: Array<MarketplaceConsolePricingItemInput>;
|
|
152296
152681
|
};
|
|
@@ -152699,6 +153084,15 @@ export type MarketplaceConsoleTokenDetails = {
|
|
|
152699
153084
|
links: Array<Maybe<MarketplaceConsolePrivateListingsLink>>;
|
|
152700
153085
|
token: Scalars['String']['output'];
|
|
152701
153086
|
};
|
|
153087
|
+
export type MarketplaceConsoleTransformQuantity = {
|
|
153088
|
+
__typename?: 'MarketplaceConsoleTransformQuantity';
|
|
153089
|
+
divideBy: Scalars['Int']['output'];
|
|
153090
|
+
round: Scalars['String']['output'];
|
|
153091
|
+
};
|
|
153092
|
+
export type MarketplaceConsoleTransformQuantityInput = {
|
|
153093
|
+
divideBy: Scalars['Int']['input'];
|
|
153094
|
+
round: Scalars['String']['input'];
|
|
153095
|
+
};
|
|
152702
153096
|
export type MarketplaceConsoleUpdateAppDetailsRequest = {
|
|
152703
153097
|
appKey: Scalars['ID']['input'];
|
|
152704
153098
|
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -157498,11 +157892,13 @@ export declare enum MercuryFocusAreaPermission {
|
|
|
157498
157892
|
Archive = "ARCHIVE",
|
|
157499
157893
|
CreateGoalLink = "CREATE_GOAL_LINK",
|
|
157500
157894
|
CreateLink = "CREATE_LINK",
|
|
157895
|
+
CreateOrganizationSponsor = "CREATE_ORGANIZATION_SPONSOR",
|
|
157501
157896
|
CreateUpdate = "CREATE_UPDATE",
|
|
157502
157897
|
CreateWorkLink = "CREATE_WORK_LINK",
|
|
157503
157898
|
Delete = "DELETE",
|
|
157504
157899
|
DeleteGoalLink = "DELETE_GOAL_LINK",
|
|
157505
157900
|
DeleteLink = "DELETE_LINK",
|
|
157901
|
+
DeleteOrganizationSponsor = "DELETE_ORGANIZATION_SPONSOR",
|
|
157506
157902
|
DeleteUpdate = "DELETE_UPDATE",
|
|
157507
157903
|
DeleteWorkLink = "DELETE_WORK_LINK",
|
|
157508
157904
|
EditAbout = "EDIT_ABOUT",
|
|
@@ -161570,6 +161966,7 @@ export type MercurySetPlanBaselineInput = {
|
|
|
161570
161966
|
export type MercurySetPlanBaselinePayload = Payload & {
|
|
161571
161967
|
__typename?: 'MercurySetPlanBaselinePayload';
|
|
161572
161968
|
errors?: Maybe<Array<MutationError>>;
|
|
161969
|
+
plan?: Maybe<MercuryPlan>;
|
|
161573
161970
|
success: Scalars['Boolean']['output'];
|
|
161574
161971
|
};
|
|
161575
161972
|
export type MercurySetPreferenceInput = {
|
|
@@ -164609,6 +165006,7 @@ export type Mutation = {
|
|
|
164609
165006
|
jira_setLogo?: Maybe<JiraSetLogoPayload>;
|
|
164610
165007
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
164611
165008
|
jira_setTimelineBarColorMode?: Maybe<JiraSetTimelineBarColorModePayload>;
|
|
165009
|
+
jira_setTimelineChildIssuePlanningMode?: Maybe<JiraSetTimelineChildIssuePlanningModePayload>;
|
|
164612
165010
|
jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
|
|
164613
165011
|
jira_setTimelineSearchFilters?: Maybe<JiraSetTimelineSearchFiltersPayload>;
|
|
164614
165012
|
jira_setTimelineViewFieldSets?: Maybe<JiraSetTimelineViewFieldSetsPayload>;
|
|
@@ -164659,9 +165057,11 @@ export type Mutation = {
|
|
|
164659
165057
|
jsmChannels_updateRovoServiceToolsDefinitions?: Maybe<JsmChannelsUpdateRovoServiceToolsPayload>;
|
|
164660
165058
|
jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
|
|
164661
165059
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
165060
|
+
jsmConversation_acceptInvite?: Maybe<JsmConversationAcceptInvitePayload>;
|
|
164662
165061
|
jsmConversation_claimConversation?: Maybe<JsmConversationClaimConversationPayload>;
|
|
164663
165062
|
jsmConversation_closeConversation?: Maybe<JsmConversationCloseConversationPayload>;
|
|
164664
165063
|
jsmConversation_createInvite?: Maybe<JsmConversationCreateInvitePayload>;
|
|
165064
|
+
jsmConversation_rejectInvite?: Maybe<JsmConversationRejectInvitePayload>;
|
|
164665
165065
|
jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
|
|
164666
165066
|
jsw?: Maybe<JswMutation>;
|
|
164667
165067
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
@@ -168922,6 +169322,9 @@ export type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
|
|
|
168922
169322
|
export type MutationJira_SetTimelineBarColorModeArgs = {
|
|
168923
169323
|
input: JiraSetTimelineBarColorModeInput;
|
|
168924
169324
|
};
|
|
169325
|
+
export type MutationJira_SetTimelineChildIssuePlanningModeArgs = {
|
|
169326
|
+
input: JiraSetTimelineChildIssuePlanningModeInput;
|
|
169327
|
+
};
|
|
168925
169328
|
export type MutationJira_SetTimelineHighlightedReleasesArgs = {
|
|
168926
169329
|
cloudId: Scalars['ID']['input'];
|
|
168927
169330
|
input: JiraSetTimelineHighlightedReleasesInput;
|
|
@@ -169098,6 +169501,9 @@ export type MutationJsmChannels_UpdateTaskAgentConfigurationArgs = {
|
|
|
169098
169501
|
input: JsmChannelsTaskAgentConfigurationInput;
|
|
169099
169502
|
jiraProjectAri: Scalars['ID']['input'];
|
|
169100
169503
|
};
|
|
169504
|
+
export type MutationJsmConversation_AcceptInviteArgs = {
|
|
169505
|
+
input: JsmConversationAcceptInviteInput;
|
|
169506
|
+
};
|
|
169101
169507
|
export type MutationJsmConversation_ClaimConversationArgs = {
|
|
169102
169508
|
input: JsmConversationClaimConversationInput;
|
|
169103
169509
|
};
|
|
@@ -169107,6 +169513,9 @@ export type MutationJsmConversation_CloseConversationArgs = {
|
|
|
169107
169513
|
export type MutationJsmConversation_CreateInviteArgs = {
|
|
169108
169514
|
input: JsmConversationCreateInviteInput;
|
|
169109
169515
|
};
|
|
169516
|
+
export type MutationJsmConversation_RejectInviteArgs = {
|
|
169517
|
+
input: JsmConversationRejectInviteInput;
|
|
169518
|
+
};
|
|
169110
169519
|
export type MutationJsmConversation_UpdateSettingsArgs = {
|
|
169111
169520
|
input: JsmConversationSettingsInput;
|
|
169112
169521
|
};
|
|
@@ -173870,12 +174279,14 @@ export type Query = {
|
|
|
173870
174279
|
agentWorkspace_servicesMappedToSkillsInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
173871
174280
|
agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
173872
174281
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
174282
|
+
agentWorkspace_siteWfoStatus?: Maybe<AgentWorkspaceSiteWfoStatus>;
|
|
173873
174283
|
agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
173874
174284
|
agentWorkspace_skillCategoriesInProject?: Maybe<AgentWorkspaceProjectSkillCategoryConnection>;
|
|
173875
174285
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
173876
174286
|
agentWorkspace_skillsInCategory?: Maybe<AgentWorkspaceSkillConnection>;
|
|
173877
174287
|
agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
173878
174288
|
agentWorkspace_smartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
|
|
174289
|
+
agentWorkspace_smartRoutingDryRunTickets?: Maybe<AgentWorkspaceSmartRoutingDryRunTicketsPayload>;
|
|
173879
174290
|
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
173880
174291
|
agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
173881
174292
|
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
@@ -173940,7 +174351,6 @@ export type Query = {
|
|
|
173940
174351
|
appSwitcher_availableProductsBySite?: Maybe<AppSwitcherAvailableProductsBySiteResult>;
|
|
173941
174352
|
apps?: Maybe<AppConnection>;
|
|
173942
174353
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
173943
|
-
assetsDM_adapterClientVersionStatus?: Maybe<AssetsDmAdapterClientVersionStatusResponse>;
|
|
173944
174354
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
173945
174355
|
assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
|
|
173946
174356
|
assetsDM_attributePrioritiesList?: Maybe<AssetsDmAttributePrioritiesList>;
|
|
@@ -174074,6 +174484,7 @@ export type Query = {
|
|
|
174074
174484
|
avp_getDashboardIdentityAccess?: Maybe<AvpDashboardIdentityAccess>;
|
|
174075
174485
|
avp_getDashboardResourcePermission?: Maybe<AvpDashboardResourcePermission>;
|
|
174076
174486
|
avp_getDashboardTemplateJson?: Maybe<Scalars['String']['output']>;
|
|
174487
|
+
avp_getDashboardTemplateJsonById?: Maybe<Scalars['String']['output']>;
|
|
174077
174488
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
174078
174489
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
174079
174490
|
avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
|
|
@@ -174378,6 +174789,7 @@ export type Query = {
|
|
|
174378
174789
|
convoai_availableSkills?: Maybe<ConvoAiAvailableSkillsResult>;
|
|
174379
174790
|
convoai_confluenceSpaceRecommendations?: Maybe<Array<ConvoAiConfluenceSpaceRecommendation>>;
|
|
174380
174791
|
convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
|
|
174792
|
+
convoai_jiraDuplicateWorkItems?: Maybe<ConvoAiJiraDuplicateWorkItemsConnection>;
|
|
174381
174793
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
174382
174794
|
convoai_jiraRelated1p3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira1p3pRelatedLinksResult>;
|
|
174383
174795
|
convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
|
|
@@ -174482,6 +174894,7 @@ export type Query = {
|
|
|
174482
174894
|
devai_autodevNextUsageTransitionCounts?: Maybe<DevAiAutodevNextTransitionUsageCounts>;
|
|
174483
174895
|
devai_autodevNextWorkstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
174484
174896
|
devai_autodevNextWorkstreamSweepSummary?: Maybe<DevAiAutodevNextWorkstreamSweepSummaryPayload>;
|
|
174897
|
+
devai_autodevNextWorkstreamTasks?: Maybe<DevAiAutodevNextWorkstreamTaskConnection>;
|
|
174485
174898
|
devai_autodevNextWorkstreams?: Maybe<DevAiAutodevNextWorkstreamConnection>;
|
|
174486
174899
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
174487
174900
|
devai_checkEntitlements: Scalars['Boolean']['output'];
|
|
@@ -174847,6 +175260,7 @@ export type Query = {
|
|
|
174847
175260
|
graphStoreV2_atlassianUserSubmittedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSubmittedFocusAskInverseConnection>;
|
|
174848
175261
|
graphStoreV2_atlassianUserTrashedConfluenceContent?: Maybe<GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentConnection>;
|
|
174849
175262
|
graphStoreV2_atlassianUserTrashedConfluenceContentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentInverseConnection>;
|
|
175263
|
+
graphStoreV2_atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
174850
175264
|
graphStoreV2_atlassianUserTriggeredExternalDeployment?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentConnection>;
|
|
174851
175265
|
graphStoreV2_atlassianUserTriggeredExternalDeploymentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentInverseConnection>;
|
|
174852
175266
|
graphStoreV2_atlassianUserUpdatedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianGoalConnection>;
|
|
@@ -175481,6 +175895,7 @@ export type Query = {
|
|
|
175481
175895
|
graphStoreV2_repositoryEntityIsBitbucketRepositoryInverse?: Maybe<GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryInverseConnection>;
|
|
175482
175896
|
graphStoreV2_rovoAgentActsAsAtlassianUser?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserConnection>;
|
|
175483
175897
|
graphStoreV2_rovoAgentActsAsAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseConnection>;
|
|
175898
|
+
graphStoreV2_rovoAgentHasAtlassianAgentSessionInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection>;
|
|
175484
175899
|
graphStoreV2_talentPositionLinksExternalPosition?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection>;
|
|
175485
175900
|
graphStoreV2_talentPositionLinksExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionInverseConnection>;
|
|
175486
175901
|
graphStoreV2_talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
|
|
@@ -175620,6 +176035,7 @@ export type Query = {
|
|
|
175620
176035
|
graphStore_atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
175621
176036
|
graphStore_atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
175622
176037
|
graphStore_atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
176038
|
+
graphStore_atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
175623
176039
|
graphStore_atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
|
|
175624
176040
|
graphStore_atlassianUserUpdatedExternalCampaignInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignInverseConnection>;
|
|
175625
176041
|
graphStore_atlassianUserUpdatedExternalCase?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCaseConnection>;
|
|
@@ -176230,6 +176646,7 @@ export type Query = {
|
|
|
176230
176646
|
graphStore_riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
176231
176647
|
graphStore_rovoAgentActsAsIdentityUser?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserConnection>;
|
|
176232
176648
|
graphStore_rovoAgentActsAsIdentityUserInverse?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseConnection>;
|
|
176649
|
+
graphStore_rovoAgentHasAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection>;
|
|
176233
176650
|
graphStore_scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
176234
176651
|
graphStore_scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
176235
176652
|
graphStore_secodaDownstreamLineageBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
@@ -178123,6 +178540,9 @@ export type QueryAgentWorkspace_ShiftsArgs = {
|
|
|
178123
178540
|
input: AgentWorkspaceShiftsQueryInput;
|
|
178124
178541
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
178125
178542
|
};
|
|
178543
|
+
export type QueryAgentWorkspace_SiteWfoStatusArgs = {
|
|
178544
|
+
cloudId: Scalars['ID']['input'];
|
|
178545
|
+
};
|
|
178126
178546
|
export type QueryAgentWorkspace_SkillCategoriesArgs = {
|
|
178127
178547
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
178128
178548
|
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -178134,6 +178554,7 @@ export type QueryAgentWorkspace_SkillCategoriesArgs = {
|
|
|
178134
178554
|
export type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
|
|
178135
178555
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
178136
178556
|
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
178557
|
+
agentInitialFetching?: InputMaybe<Scalars['Boolean']['input']>;
|
|
178137
178558
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
178138
178559
|
categoryQuery?: InputMaybe<Scalars['String']['input']>;
|
|
178139
178560
|
cloudId: Scalars['ID']['input'];
|
|
@@ -178165,6 +178586,9 @@ export type QueryAgentWorkspace_SmartRoutingDryRunArgs = {
|
|
|
178165
178586
|
cloudId: Scalars['ID']['input'];
|
|
178166
178587
|
projectKey: Scalars['String']['input'];
|
|
178167
178588
|
};
|
|
178589
|
+
export type QueryAgentWorkspace_SmartRoutingDryRunTicketsArgs = {
|
|
178590
|
+
input: AgentWorkspaceSmartRoutingDryRunTicketsInput;
|
|
178591
|
+
};
|
|
178168
178592
|
export type QueryAgentWorkspace_TeamCapacitiesArgs = {
|
|
178169
178593
|
input: AgentWorkspaceTeamCapacitiesInput;
|
|
178170
178594
|
};
|
|
@@ -178471,10 +178895,6 @@ export type QueryAppsArgs = {
|
|
|
178471
178895
|
export type QueryAquaOutgoingEmailLogsArgs = {
|
|
178472
178896
|
cloudId: Scalars['ID']['input'];
|
|
178473
178897
|
};
|
|
178474
|
-
export type QueryAssetsDm_AdapterClientVersionStatusArgs = {
|
|
178475
|
-
cloudId: Scalars['ID']['input'];
|
|
178476
|
-
workspaceId: Scalars['ID']['input'];
|
|
178477
|
-
};
|
|
178478
178898
|
export type QueryAssetsDm_AdaptersArgs = {
|
|
178479
178899
|
cloudId: Scalars['ID']['input'];
|
|
178480
178900
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -179155,6 +179575,10 @@ export type QueryAvp_GetDashboardTemplateJsonArgs = {
|
|
|
179155
179575
|
dashboardAri: Scalars['ID']['input'];
|
|
179156
179576
|
templateType: Scalars['String']['input'];
|
|
179157
179577
|
};
|
|
179578
|
+
export type QueryAvp_GetDashboardTemplateJsonByIdArgs = {
|
|
179579
|
+
templateId: Scalars['String']['input'];
|
|
179580
|
+
workspaceAri: Scalars['ID']['input'];
|
|
179581
|
+
};
|
|
179158
179582
|
export type QueryAvp_GetDashboardTemplatesArgs = {
|
|
179159
179583
|
input: AvpGetDashboardTemplatesInput;
|
|
179160
179584
|
};
|
|
@@ -180546,6 +180970,15 @@ export type QueryConvoai_HomeThreadsArgs = {
|
|
|
180546
180970
|
homeThreadsInput?: InputMaybe<ConvoAiHomeThreadsInput>;
|
|
180547
180971
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
180548
180972
|
};
|
|
180973
|
+
export type QueryConvoai_JiraDuplicateWorkItemsArgs = {
|
|
180974
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
180975
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
180976
|
+
cloudId: Scalars['ID']['input'];
|
|
180977
|
+
experience: Scalars['String']['input'];
|
|
180978
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180979
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
180980
|
+
workItemInput: ConvoAiJiraDuplicateWorkItemsInput;
|
|
180981
|
+
};
|
|
180549
180982
|
export type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
180550
180983
|
cloudId: Scalars['ID']['input'];
|
|
180551
180984
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -181029,6 +181462,16 @@ export type QueryDevai_AutodevNextWorkstreamSweepSummaryArgs = {
|
|
|
181029
181462
|
cloudId: Scalars['ID']['input'];
|
|
181030
181463
|
workstreamId: Scalars['ID']['input'];
|
|
181031
181464
|
};
|
|
181465
|
+
export type QueryDevai_AutodevNextWorkstreamTasksArgs = {
|
|
181466
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
181467
|
+
assigneeUserAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
181468
|
+
cloudId: Scalars['ID']['input'];
|
|
181469
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
181470
|
+
includeUnassigned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
181471
|
+
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
181472
|
+
statuses?: InputMaybe<Array<DevAiAutodevNextWorkItemState>>;
|
|
181473
|
+
workstreamId: Scalars['ID']['input'];
|
|
181474
|
+
};
|
|
181032
181475
|
export type QueryDevai_AutodevNextWorkstreamsArgs = {
|
|
181033
181476
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
181034
181477
|
cloudId: Scalars['ID']['input'];
|
|
@@ -183178,6 +183621,13 @@ export type QueryGraphStoreV2_AtlassianUserTrashedConfluenceContentInverseArgs =
|
|
|
183178
183621
|
id: Scalars['ID']['input'];
|
|
183179
183622
|
sort?: InputMaybe<GraphStoreV2AtlassianUserTrashedConfluenceContentSortInput>;
|
|
183180
183623
|
};
|
|
183624
|
+
export type QueryGraphStoreV2_AtlassianUserTriggeredAtlassianAgentSessionInverseArgs = {
|
|
183625
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183626
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
183627
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183628
|
+
id: Scalars['ID']['input'];
|
|
183629
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserTriggeredAtlassianAgentSessionSortInput>;
|
|
183630
|
+
};
|
|
183181
183631
|
export type QueryGraphStoreV2_AtlassianUserTriggeredExternalDeploymentArgs = {
|
|
183182
183632
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
183183
183633
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -187663,6 +188113,13 @@ export type QueryGraphStoreV2_RovoAgentActsAsAtlassianUserInverseArgs = {
|
|
|
187663
188113
|
id: Scalars['ID']['input'];
|
|
187664
188114
|
sort?: InputMaybe<GraphStoreV2RovoAgentActsAsAtlassianUserSortInput>;
|
|
187665
188115
|
};
|
|
188116
|
+
export type QueryGraphStoreV2_RovoAgentHasAtlassianAgentSessionInverseArgs = {
|
|
188117
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
188118
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
188119
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
188120
|
+
id: Scalars['ID']['input'];
|
|
188121
|
+
sort?: InputMaybe<GraphStoreV2RovoAgentHasAtlassianAgentSessionSortInput>;
|
|
188122
|
+
};
|
|
187666
188123
|
export type QueryGraphStoreV2_TalentPositionLinksExternalPositionArgs = {
|
|
187667
188124
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
187668
188125
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -188746,6 +189203,14 @@ export type QueryGraphStore_AtlassianUserReviewedConfluenceApprovalInverseArgs =
|
|
|
188746
189203
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
188747
189204
|
sort?: InputMaybe<GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput>;
|
|
188748
189205
|
};
|
|
189206
|
+
export type QueryGraphStore_AtlassianUserTriggeredAtlassianAgentSessionInverseArgs = {
|
|
189207
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189208
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189209
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189210
|
+
id: Scalars['ID']['input'];
|
|
189211
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
189212
|
+
sort?: InputMaybe<GraphStoreAtlassianUserTriggeredAtlassianAgentSessionSortInput>;
|
|
189213
|
+
};
|
|
188749
189214
|
export type QueryGraphStore_AtlassianUserUpdatedExternalCampaignArgs = {
|
|
188750
189215
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188751
189216
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -193406,6 +193871,14 @@ export type QueryGraphStore_RovoAgentActsAsIdentityUserInverseArgs = {
|
|
|
193406
193871
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
193407
193872
|
sort?: InputMaybe<GraphStoreRovoAgentActsAsIdentityUserSortInput>;
|
|
193408
193873
|
};
|
|
193874
|
+
export type QueryGraphStore_RovoAgentHasAtlassianAgentSessionInverseArgs = {
|
|
193875
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
193876
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
193877
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
193878
|
+
id: Scalars['ID']['input'];
|
|
193879
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
193880
|
+
sort?: InputMaybe<GraphStoreRovoAgentHasAtlassianAgentSessionSortInput>;
|
|
193881
|
+
};
|
|
193409
193882
|
export type QueryGraphStore_ScorecardHasAtlasGoalArgs = {
|
|
193410
193883
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193411
193884
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -200121,10 +200594,14 @@ export type RadarSyncHistory = {
|
|
|
200121
200594
|
};
|
|
200122
200595
|
export declare enum RadarSyncHistoryStatus {
|
|
200123
200596
|
Failed = "FAILED",
|
|
200597
|
+
GracePeriod = "GRACE_PERIOD",
|
|
200124
200598
|
InProgress = "IN_PROGRESS",
|
|
200125
200599
|
Scheduled = "SCHEDULED",
|
|
200126
200600
|
Success = "SUCCESS",
|
|
200127
|
-
SystemError = "SYSTEM_ERROR"
|
|
200601
|
+
SystemError = "SYSTEM_ERROR",
|
|
200602
|
+
ThirdPartyConnectorFailed = "THIRD_PARTY_CONNECTOR_FAILED",
|
|
200603
|
+
ThirdPartyConnectorRunning = "THIRD_PARTY_CONNECTOR_RUNNING",
|
|
200604
|
+
TimedOut = "TIMED_OUT"
|
|
200128
200605
|
}
|
|
200129
200606
|
export type RadarUpdateAiConnectorInput = {
|
|
200130
200607
|
config?: InputMaybe<RadarAiConnectorConfigInput>;
|
|
@@ -202027,6 +202504,7 @@ export declare enum Scope {
|
|
|
202027
202504
|
ScreenTabRead = "SCREEN_TAB_READ",
|
|
202028
202505
|
ScreenTabWrite = "SCREEN_TAB_WRITE",
|
|
202029
202506
|
ScreenWrite = "SCREEN_WRITE",
|
|
202507
|
+
SearchRovoAgentInterface = "SEARCH_ROVO_AGENT_INTERFACE",
|
|
202030
202508
|
StatusRead = "STATUS_READ",
|
|
202031
202509
|
StorageApp = "STORAGE_APP",
|
|
202032
202510
|
TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL",
|
|
@@ -203526,6 +204004,7 @@ export type SearchTeamsFilters = {
|
|
|
203526
204004
|
hasAttachment?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203527
204005
|
hasLink?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203528
204006
|
messageType?: InputMaybe<Scalars['String']['input']>;
|
|
204007
|
+
workspaceName?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
203529
204008
|
};
|
|
203530
204009
|
export type SearchThirdPartyDynamicFilter = {
|
|
203531
204010
|
__typename?: 'SearchThirdPartyDynamicFilter';
|
|
@@ -222976,12 +223455,16 @@ export type SmartsContextServiceOrbitObjectRecommendation = {
|
|
|
222976
223455
|
export type SmartsContextServiceQueryApi = {
|
|
222977
223456
|
__typename?: 'SmartsContextServiceQueryApi';
|
|
222978
223457
|
orbitObjectRecommendations?: Maybe<Array<Maybe<SmartsContextServiceOrbitObjectRecommendation>>>;
|
|
223458
|
+
orbitObjectRecommendationsV2?: Maybe<Array<Maybe<SmartsContextServiceOrbitObjectRecommendation>>>;
|
|
222979
223459
|
orbitUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceCollaboratorRecommendation>>>;
|
|
222980
223460
|
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
222981
223461
|
};
|
|
222982
223462
|
export type SmartsContextServiceQueryApiOrbitObjectRecommendationsArgs = {
|
|
222983
223463
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
222984
223464
|
};
|
|
223465
|
+
export type SmartsContextServiceQueryApiOrbitObjectRecommendationsV2Args = {
|
|
223466
|
+
recommendationsQuery: SmartsRecommendationsOrbitQuery;
|
|
223467
|
+
};
|
|
222985
223468
|
export type SmartsContextServiceQueryApiOrbitUserRecommendationsArgs = {
|
|
222986
223469
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
222987
223470
|
};
|
|
@@ -223014,6 +223497,12 @@ export type SmartsModelRequestParams = {
|
|
|
223014
223497
|
experience: Scalars['String']['input'];
|
|
223015
223498
|
featureServiceModel?: InputMaybe<Scalars['String']['input']>;
|
|
223016
223499
|
};
|
|
223500
|
+
export type SmartsOrbitModelRequestParams = {
|
|
223501
|
+
caller: Scalars['String']['input'];
|
|
223502
|
+
experience: Scalars['String']['input'];
|
|
223503
|
+
featureServiceModel?: InputMaybe<Scalars['String']['input']>;
|
|
223504
|
+
orbitModelId?: InputMaybe<Scalars['String']['input']>;
|
|
223505
|
+
};
|
|
223017
223506
|
export type SmartsQueryApi = {
|
|
223018
223507
|
__typename?: 'SmartsQueryApi';
|
|
223019
223508
|
recommendedContainer?: Maybe<Array<Maybe<SmartsRecommendedContainer>>>;
|
|
@@ -223049,6 +223538,15 @@ export type SmartsRecommendationsFieldQuery = {
|
|
|
223049
223538
|
requestingUserId: Scalars['String']['input'];
|
|
223050
223539
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
223051
223540
|
};
|
|
223541
|
+
export type SmartsRecommendationsOrbitQuery = {
|
|
223542
|
+
context: SmartsContext;
|
|
223543
|
+
excludeInactive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
223544
|
+
excludeSelf?: InputMaybe<Scalars['Boolean']['input']>;
|
|
223545
|
+
maxNumberOfResults?: InputMaybe<Scalars['Int']['input']>;
|
|
223546
|
+
modelRequestParams: SmartsOrbitModelRequestParams;
|
|
223547
|
+
requestingUserId: Scalars['String']['input'];
|
|
223548
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
223549
|
+
};
|
|
223052
223550
|
export type SmartsRecommendationsQuery = {
|
|
223053
223551
|
context: SmartsContext;
|
|
223054
223552
|
excludeInactive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -228475,6 +228973,7 @@ export type TeamQueryTeamV3Args = {
|
|
|
228475
228973
|
};
|
|
228476
228974
|
export type TeamQueryTeamsTqlArgs = {
|
|
228477
228975
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
228976
|
+
enablePagination?: InputMaybe<Scalars['Boolean']['input']>;
|
|
228478
228977
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
228479
228978
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
228480
228979
|
scopeId: Scalars['ID']['input'];
|
|
@@ -228801,7 +229300,9 @@ export type TeamV2 = Node & {
|
|
|
228801
229300
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
228802
229301
|
largeAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
228803
229302
|
largeHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
229303
|
+
memberCount?: Maybe<Scalars['Int']['output']>;
|
|
228804
229304
|
members?: Maybe<TeamMemberConnectionV2>;
|
|
229305
|
+
membersPreview?: Maybe<Array<Maybe<TeamMemberV2>>>;
|
|
228805
229306
|
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
228806
229307
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
228807
229308
|
permission?: Maybe<TeamPermission>;
|