@forge/cli-shared 9.0.1-next.2 → 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 +9 -0
- package/out/graphql/graphql-types.d.ts +510 -43
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +82 -37
- 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']>;
|
|
@@ -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>>>;
|
|
@@ -40763,11 +40800,7 @@ export declare enum CustomerServiceAiSurface {
|
|
|
40763
40800
|
export type CustomerServiceAssetsAvatar = {
|
|
40764
40801
|
__typename?: 'CustomerServiceAssetsAvatar';
|
|
40765
40802
|
mediaClientConfig?: Maybe<CustomerServiceAssetsMediaClientConfig>;
|
|
40766
|
-
|
|
40767
|
-
url48: Scalars['String']['output'];
|
|
40768
|
-
url72: Scalars['String']['output'];
|
|
40769
|
-
url144: Scalars['String']['output'];
|
|
40770
|
-
url288: Scalars['String']['output'];
|
|
40803
|
+
url48?: Maybe<Scalars['String']['output']>;
|
|
40771
40804
|
};
|
|
40772
40805
|
export type CustomerServiceAssetsFieldConfig = {
|
|
40773
40806
|
__typename?: 'CustomerServiceAssetsFieldConfig';
|
|
@@ -40776,7 +40809,7 @@ export type CustomerServiceAssetsFieldConfig = {
|
|
|
40776
40809
|
};
|
|
40777
40810
|
export type CustomerServiceAssetsFieldObject = {
|
|
40778
40811
|
__typename?: 'CustomerServiceAssetsFieldObject';
|
|
40779
|
-
avatar
|
|
40812
|
+
avatar?: Maybe<CustomerServiceAssetsAvatar>;
|
|
40780
40813
|
id: Scalars['ID']['output'];
|
|
40781
40814
|
label: Scalars['String']['output'];
|
|
40782
40815
|
objectSchemaId: Scalars['ID']['output'];
|
|
@@ -40785,7 +40818,7 @@ export type CustomerServiceAssetsFieldObject = {
|
|
|
40785
40818
|
export type CustomerServiceAssetsFieldObjectTypeMetadata = {
|
|
40786
40819
|
__typename?: 'CustomerServiceAssetsFieldObjectTypeMetadata';
|
|
40787
40820
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
40788
|
-
icon
|
|
40821
|
+
icon?: Maybe<CustomerServiceAssetsObjectTypeIcon>;
|
|
40789
40822
|
id: Scalars['ID']['output'];
|
|
40790
40823
|
name: Scalars['String']['output'];
|
|
40791
40824
|
};
|
|
@@ -40797,14 +40830,14 @@ export type CustomerServiceAssetsFieldSchemaMetadata = {
|
|
|
40797
40830
|
};
|
|
40798
40831
|
export type CustomerServiceAssetsMediaClientConfig = {
|
|
40799
40832
|
__typename?: 'CustomerServiceAssetsMediaClientConfig';
|
|
40800
|
-
clientId
|
|
40801
|
-
|
|
40802
|
-
|
|
40833
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
40834
|
+
fileId?: Maybe<Scalars['String']['output']>;
|
|
40835
|
+
mediaBaseUrl?: Maybe<Scalars['String']['output']>;
|
|
40836
|
+
mediaJwtToken?: Maybe<Scalars['String']['output']>;
|
|
40803
40837
|
};
|
|
40804
40838
|
export type CustomerServiceAssetsObjectTypeIcon = {
|
|
40805
40839
|
__typename?: 'CustomerServiceAssetsObjectTypeIcon';
|
|
40806
|
-
|
|
40807
|
-
url48: Scalars['String']['output'];
|
|
40840
|
+
url48?: Maybe<Scalars['String']['output']>;
|
|
40808
40841
|
};
|
|
40809
40842
|
export type CustomerServiceAttribute = Node & {
|
|
40810
40843
|
__typename?: 'CustomerServiceAttribute';
|
|
@@ -43229,6 +43262,7 @@ export type DevAiAutodevNextWorkItem = {
|
|
|
43229
43262
|
__typename?: 'DevAiAutodevNextWorkItem';
|
|
43230
43263
|
assignedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
43231
43264
|
assignee?: Maybe<User>;
|
|
43265
|
+
classification?: Maybe<DevAiAutodevNextWorkItemClassification>;
|
|
43232
43266
|
id: Scalars['ID']['output'];
|
|
43233
43267
|
isOverdue?: Maybe<Scalars['Boolean']['output']>;
|
|
43234
43268
|
jiraIssue?: Maybe<JiraIssue>;
|
|
@@ -43238,6 +43272,21 @@ export type DevAiAutodevNextWorkItem = {
|
|
|
43238
43272
|
workItemState?: Maybe<Scalars['ID']['output']>;
|
|
43239
43273
|
workstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
43240
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
|
+
};
|
|
43241
43290
|
export type DevAiAutodevNextWorkItemConnection = {
|
|
43242
43291
|
__typename?: 'DevAiAutodevNextWorkItemConnection';
|
|
43243
43292
|
edges?: Maybe<Array<DevAiAutodevNextWorkItemEdge>>;
|
|
@@ -43249,6 +43298,14 @@ export type DevAiAutodevNextWorkItemEdge = {
|
|
|
43249
43298
|
cursor: Scalars['String']['output'];
|
|
43250
43299
|
node: DevAiAutodevNextWorkItem;
|
|
43251
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
|
+
};
|
|
43252
43309
|
export declare enum DevAiAutodevNextWorkItemState {
|
|
43253
43310
|
CompletedNoWork = "COMPLETED_NO_WORK",
|
|
43254
43311
|
DetailsRequested = "DETAILS_REQUESTED",
|
|
@@ -43365,6 +43422,20 @@ export type DevAiAutodevNextWorkstreamSweepWorkItemStateCount = {
|
|
|
43365
43422
|
count?: Maybe<Scalars['Int']['output']>;
|
|
43366
43423
|
state?: Maybe<Scalars['ID']['output']>;
|
|
43367
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
|
+
};
|
|
43368
43439
|
export type DevAiAutofixConfiguration = {
|
|
43369
43440
|
__typename?: 'DevAiAutofixConfiguration';
|
|
43370
43441
|
autofixScans?: Maybe<DevAiAutofixScansConnection>;
|
|
@@ -48885,6 +48956,7 @@ export type ExternalSoftwareService = Node & {
|
|
|
48885
48956
|
createdBy?: Maybe<ExternalUser>;
|
|
48886
48957
|
description?: Maybe<Scalars['String']['output']>;
|
|
48887
48958
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
48959
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
48888
48960
|
environment?: Maybe<Scalars['String']['output']>;
|
|
48889
48961
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
48890
48962
|
id: Scalars['ID']['output'];
|
|
@@ -49866,6 +49938,7 @@ export type ForgeAlertsRuleFiltersData = {
|
|
|
49866
49938
|
};
|
|
49867
49939
|
export type ForgeAlertsRuleFiltersInput = {
|
|
49868
49940
|
environment: Scalars['String']['input'];
|
|
49941
|
+
isCustomMetricUseCase?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49869
49942
|
};
|
|
49870
49943
|
export type ForgeAlertsRuleFiltersResponse = {
|
|
49871
49944
|
__typename?: 'ForgeAlertsRuleFiltersResponse';
|
|
@@ -50538,6 +50611,9 @@ export type ForgeMetricsQuery = {
|
|
|
50538
50611
|
latencies: ForgeMetricsLatenciesResult;
|
|
50539
50612
|
latencyBuckets: ForgeMetricsLatenciesResult;
|
|
50540
50613
|
requestUrls: ForgeMetricsRequestUrlsResult;
|
|
50614
|
+
serviceCpuUsage: ForgeMetricsServiceCpuUsageResult;
|
|
50615
|
+
serviceInstancesCount: ForgeMetricsServiceInstancesCountResult;
|
|
50616
|
+
serviceMemoryUsage: ForgeMetricsServiceMemoryUsageResult;
|
|
50541
50617
|
sites: ForgeMetricsSitesResult;
|
|
50542
50618
|
successRate: ForgeMetricsSuccessRateResult;
|
|
50543
50619
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
@@ -50598,6 +50674,15 @@ export type ForgeMetricsQueryLatencyBucketsArgs = {
|
|
|
50598
50674
|
export type ForgeMetricsQueryRequestUrlsArgs = {
|
|
50599
50675
|
query: ForgeMetricsApiRequestQueryInput;
|
|
50600
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
|
+
};
|
|
50601
50686
|
export type ForgeMetricsQuerySitesArgs = {
|
|
50602
50687
|
query: ForgeMetricsQueryInput;
|
|
50603
50688
|
};
|
|
@@ -50634,6 +50719,61 @@ export declare enum ForgeMetricsResolutionUnit {
|
|
|
50634
50719
|
export type ForgeMetricsSeries = {
|
|
50635
50720
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
50636
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
|
+
};
|
|
50637
50777
|
export declare enum ForgeMetricsSiteFilterCategory {
|
|
50638
50778
|
All = "ALL",
|
|
50639
50779
|
HighestInvocationCount = "HIGHEST_INVOCATION_COUNT",
|
|
@@ -55690,6 +55830,7 @@ export type GraphStore = {
|
|
|
55690
55830
|
atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
55691
55831
|
atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
55692
55832
|
atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
55833
|
+
atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
55693
55834
|
atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
|
|
55694
55835
|
atlassianUserUpdatedExternalCampaignInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignInverseConnection>;
|
|
55695
55836
|
atlassianUserUpdatedExternalCase?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCaseConnection>;
|
|
@@ -56300,6 +56441,7 @@ export type GraphStore = {
|
|
|
56300
56441
|
riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
56301
56442
|
rovoAgentActsAsIdentityUser?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserConnection>;
|
|
56302
56443
|
rovoAgentActsAsIdentityUserInverse?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseConnection>;
|
|
56444
|
+
rovoAgentHasAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection>;
|
|
56303
56445
|
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
56304
56446
|
scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
56305
56447
|
secodaDownstreamLineageBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
@@ -57785,6 +57927,14 @@ export type GraphStoreAtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
|
57785
57927
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57786
57928
|
sort?: InputMaybe<GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput>;
|
|
57787
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
|
+
};
|
|
57788
57938
|
export type GraphStoreAtlassianUserUpdatedExternalCampaignArgs = {
|
|
57789
57939
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57790
57940
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -62445,6 +62595,14 @@ export type GraphStoreRovoAgentActsAsIdentityUserInverseArgs = {
|
|
|
62445
62595
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62446
62596
|
sort?: InputMaybe<GraphStoreRovoAgentActsAsIdentityUserSortInput>;
|
|
62447
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
|
+
};
|
|
62448
62606
|
export type GraphStoreScorecardHasAtlasGoalArgs = {
|
|
62449
62607
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
62450
62608
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -66278,6 +66436,9 @@ export type GraphStoreAtlassianUserOwnsInferredProjectSortInput = {
|
|
|
66278
66436
|
export type GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput = {
|
|
66279
66437
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66280
66438
|
};
|
|
66439
|
+
export type GraphStoreAtlassianUserTriggeredAtlassianAgentSessionSortInput = {
|
|
66440
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66441
|
+
};
|
|
66281
66442
|
export type GraphStoreAtlassianUserUpdatedExternalCampaignSortInput = {
|
|
66282
66443
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66283
66444
|
};
|
|
@@ -74641,6 +74802,9 @@ export type GraphStoreRiskHasProjectSortInput = {
|
|
|
74641
74802
|
export type GraphStoreRovoAgentActsAsIdentityUserSortInput = {
|
|
74642
74803
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74643
74804
|
};
|
|
74805
|
+
export type GraphStoreRovoAgentHasAtlassianAgentSessionSortInput = {
|
|
74806
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74807
|
+
};
|
|
74644
74808
|
export type GraphStoreScorecardHasAtlasGoalSortInput = {
|
|
74645
74809
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74646
74810
|
};
|
|
@@ -76379,6 +76543,20 @@ export type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEd
|
|
|
76379
76543
|
node?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion>;
|
|
76380
76544
|
};
|
|
76381
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;
|
|
76382
76560
|
export type GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection = HasPageInfo & {
|
|
76383
76561
|
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection';
|
|
76384
76562
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignEdge>>>;
|
|
@@ -82695,6 +82873,20 @@ export type GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseEdge = {
|
|
|
82695
82873
|
};
|
|
82696
82874
|
export type GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
82697
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;
|
|
82698
82890
|
export type GraphStoreSimplifiedScorecardHasAtlasGoalConnection = HasPageInfo & {
|
|
82699
82891
|
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalConnection';
|
|
82700
82892
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalEdge>>>;
|
|
@@ -89297,6 +89489,7 @@ export type GraphStoreV2 = {
|
|
|
89297
89489
|
atlassianUserSubmittedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSubmittedFocusAskInverseConnection>;
|
|
89298
89490
|
atlassianUserTrashedConfluenceContent?: Maybe<GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentConnection>;
|
|
89299
89491
|
atlassianUserTrashedConfluenceContentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentInverseConnection>;
|
|
89492
|
+
atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
89300
89493
|
atlassianUserTriggeredExternalDeployment?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentConnection>;
|
|
89301
89494
|
atlassianUserTriggeredExternalDeploymentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentInverseConnection>;
|
|
89302
89495
|
atlassianUserUpdatedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianGoalConnection>;
|
|
@@ -89931,6 +90124,7 @@ export type GraphStoreV2 = {
|
|
|
89931
90124
|
repositoryEntityIsBitbucketRepositoryInverse?: Maybe<GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryInverseConnection>;
|
|
89932
90125
|
rovoAgentActsAsAtlassianUser?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserConnection>;
|
|
89933
90126
|
rovoAgentActsAsAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseConnection>;
|
|
90127
|
+
rovoAgentHasAtlassianAgentSessionInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection>;
|
|
89934
90128
|
talentPositionLinksExternalPosition?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection>;
|
|
89935
90129
|
talentPositionLinksExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionInverseConnection>;
|
|
89936
90130
|
talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
|
|
@@ -91508,6 +91702,13 @@ export type GraphStoreV2AtlassianUserTrashedConfluenceContentInverseArgs = {
|
|
|
91508
91702
|
id: Scalars['ID']['input'];
|
|
91509
91703
|
sort?: InputMaybe<GraphStoreV2AtlassianUserTrashedConfluenceContentSortInput>;
|
|
91510
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
|
+
};
|
|
91511
91712
|
export type GraphStoreV2AtlassianUserTriggeredExternalDeploymentArgs = {
|
|
91512
91713
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91513
91714
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -95993,6 +96194,13 @@ export type GraphStoreV2RovoAgentActsAsAtlassianUserInverseArgs = {
|
|
|
95993
96194
|
id: Scalars['ID']['input'];
|
|
95994
96195
|
sort?: InputMaybe<GraphStoreV2RovoAgentActsAsAtlassianUserSortInput>;
|
|
95995
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
|
+
};
|
|
95996
96204
|
export type GraphStoreV2TalentPositionLinksExternalPositionArgs = {
|
|
95997
96205
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95998
96206
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -96509,6 +96717,9 @@ export type GraphStoreV2AtlassianUserSubmittedFocusAskSortInput = {
|
|
|
96509
96717
|
export type GraphStoreV2AtlassianUserTrashedConfluenceContentSortInput = {
|
|
96510
96718
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96511
96719
|
};
|
|
96720
|
+
export type GraphStoreV2AtlassianUserTriggeredAtlassianAgentSessionSortInput = {
|
|
96721
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96722
|
+
};
|
|
96512
96723
|
export type GraphStoreV2AtlassianUserTriggeredExternalDeploymentSortInput = {
|
|
96513
96724
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96514
96725
|
};
|
|
@@ -99946,6 +100157,9 @@ export type GraphStoreV2RepositoryEntityIsBitbucketRepositorySortInput = {
|
|
|
99946
100157
|
export type GraphStoreV2RovoAgentActsAsAtlassianUserSortInput = {
|
|
99947
100158
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99948
100159
|
};
|
|
100160
|
+
export type GraphStoreV2RovoAgentHasAtlassianAgentSessionSortInput = {
|
|
100161
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
100162
|
+
};
|
|
99949
100163
|
export type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection = HasPageInfo & {
|
|
99950
100164
|
__typename?: 'GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection';
|
|
99951
100165
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeEdge>>>;
|
|
@@ -103116,6 +103330,20 @@ export type GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentInverseEd
|
|
|
103116
103330
|
};
|
|
103117
103331
|
export type GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
103118
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;
|
|
103119
103347
|
export type GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentConnection = HasPageInfo & {
|
|
103120
103348
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentConnection';
|
|
103121
103349
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentEdge>>>;
|
|
@@ -112246,6 +112474,20 @@ export type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseEdge = {
|
|
|
112246
112474
|
};
|
|
112247
112475
|
export type GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseUnion = AgentStudioAssistant | AgentStudioServiceAgent;
|
|
112248
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;
|
|
112249
112491
|
export type GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection = HasPageInfo & {
|
|
112250
112492
|
__typename?: 'GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection';
|
|
112251
112493
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionEdge>>>;
|
|
@@ -117885,6 +118127,7 @@ export type JiraAgenticUser = JiraActor & {
|
|
|
117885
118127
|
fromUrs?: Maybe<Scalars['Boolean']['output']>;
|
|
117886
118128
|
isAssignable?: Maybe<Scalars['Boolean']['output']>;
|
|
117887
118129
|
isFavorite?: Maybe<Scalars['Boolean']['output']>;
|
|
118130
|
+
isSemanticallyRecommended?: Maybe<Scalars['Boolean']['output']>;
|
|
117888
118131
|
totalUniqueConversationsLast30Days?: Maybe<Scalars['Int']['output']>;
|
|
117889
118132
|
totalUniqueUsersLast30Days?: Maybe<Scalars['Int']['output']>;
|
|
117890
118133
|
user?: Maybe<User>;
|
|
@@ -117977,6 +118220,7 @@ export type JiraAggregatedTimelineFieldMissingAggregatedDateTypeArgs = {
|
|
|
117977
118220
|
export declare enum JiraAiAgentConversationState {
|
|
117978
118221
|
ArtefactReady = "ARTEFACT_READY",
|
|
117979
118222
|
AuthRequired = "AUTH_REQUIRED",
|
|
118223
|
+
Cancelled = "CANCELLED",
|
|
117980
118224
|
Completed = "COMPLETED",
|
|
117981
118225
|
Failed = "FAILED",
|
|
117982
118226
|
InputRequired = "INPUT_REQUIRED",
|
|
@@ -124694,6 +124938,7 @@ export type JiraFieldScheme = Node & {
|
|
|
124694
124938
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
124695
124939
|
requiredOnIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
124696
124940
|
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
124941
|
+
shouldShowRendererUpdateMessage?: Maybe<Scalars['Boolean']['output']>;
|
|
124697
124942
|
};
|
|
124698
124943
|
export type JiraFieldSchemeAssociatedIssueTypesArgs = {
|
|
124699
124944
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -124715,6 +124960,9 @@ export type JiraFieldSchemeRequiredOnIssueTypesArgs = {
|
|
|
124715
124960
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124716
124961
|
input?: InputMaybe<JiraFieldSchemeRequiredOnIssueTypesInput>;
|
|
124717
124962
|
};
|
|
124963
|
+
export type JiraFieldSchemeShouldShowRendererUpdateMessageArgs = {
|
|
124964
|
+
fieldId: Scalars['String']['input'];
|
|
124965
|
+
};
|
|
124718
124966
|
export type JiraFieldSchemeAssociatedField = {
|
|
124719
124967
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
124720
124968
|
field?: Maybe<JiraField>;
|
|
@@ -125306,6 +125554,12 @@ export type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
125306
125554
|
type: Scalars['String']['output'];
|
|
125307
125555
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
125308
125556
|
};
|
|
125557
|
+
export type JiraForgeNumberFieldPayload = Payload & {
|
|
125558
|
+
__typename?: 'JiraForgeNumberFieldPayload';
|
|
125559
|
+
errors?: Maybe<Array<MutationError>>;
|
|
125560
|
+
field?: Maybe<JiraForgeNumberField>;
|
|
125561
|
+
success: Scalars['Boolean']['output'];
|
|
125562
|
+
};
|
|
125309
125563
|
export type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
125310
125564
|
__typename?: 'JiraForgeObjectField';
|
|
125311
125565
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -126648,6 +126902,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
126648
126902
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
126649
126903
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
126650
126904
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
126905
|
+
nextActionPresence?: Maybe<JiraIssueNextActionPresence>;
|
|
126651
126906
|
nextActionSuggestions?: Maybe<JiraIssueNextActionSuggestions>;
|
|
126652
126907
|
parentIssue?: Maybe<JiraIssue>;
|
|
126653
126908
|
parentIssueField?: Maybe<JiraParentIssueField>;
|
|
@@ -128387,6 +128642,16 @@ export type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
|
|
|
128387
128642
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
128388
128643
|
success: Scalars['Boolean']['output'];
|
|
128389
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
|
+
}
|
|
128390
128655
|
export type JiraIssueNextActionSuggestions = {
|
|
128391
128656
|
__typename?: 'JiraIssueNextActionSuggestions';
|
|
128392
128657
|
improveDescriptionSuggestions?: Maybe<JiraImproveDescriptionSuggestion>;
|
|
@@ -131510,6 +131775,7 @@ export type JiraMutation = {
|
|
|
131510
131775
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
131511
131776
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
131512
131777
|
updateFlagField?: Maybe<JiraUpdateFlagFieldPayload>;
|
|
131778
|
+
updateForgeNumberField?: Maybe<JiraForgeNumberFieldPayload>;
|
|
131513
131779
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
131514
131780
|
updateForgeStringField?: Maybe<JiraForgeStringFieldPayload>;
|
|
131515
131781
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
@@ -132133,6 +132399,9 @@ export type JiraMutationUpdateFieldSetsViewArgs = {
|
|
|
132133
132399
|
export type JiraMutationUpdateFlagFieldArgs = {
|
|
132134
132400
|
input: JiraUpdateFlagFieldInput;
|
|
132135
132401
|
};
|
|
132402
|
+
export type JiraMutationUpdateForgeNumberFieldArgs = {
|
|
132403
|
+
input: JiraUpdateNumberFieldInput;
|
|
132404
|
+
};
|
|
132136
132405
|
export type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
132137
132406
|
input: JiraUpdateForgeObjectFieldInput;
|
|
132138
132407
|
};
|
|
@@ -133817,6 +134086,7 @@ export type JiraPlaybookRuleIdsConnection = HasPageInfo & QueryPayload & {
|
|
|
133817
134086
|
};
|
|
133818
134087
|
export declare enum JiraPlaybookScopeType {
|
|
133819
134088
|
Global = "GLOBAL",
|
|
134089
|
+
Icc = "ICC",
|
|
133820
134090
|
Issue = "ISSUE",
|
|
133821
134091
|
Project = "PROJECT",
|
|
133822
134092
|
Team = "TEAM"
|
|
@@ -138394,11 +138664,6 @@ export type JiraRoleEdge = {
|
|
|
138394
138664
|
export type JiraRoleInput = {
|
|
138395
138665
|
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
138396
138666
|
};
|
|
138397
|
-
export type JiraRovoAiEnabledGloballyStatus = {
|
|
138398
|
-
__typename?: 'JiraRovoAiEnabledGloballyStatus';
|
|
138399
|
-
disabledReason?: Maybe<JiraRovoWithAiDisabledReason>;
|
|
138400
|
-
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
138401
|
-
};
|
|
138402
138667
|
export declare enum JiraRovoAiProduct {
|
|
138403
138668
|
Jira = "JIRA",
|
|
138404
138669
|
JiraCustomerService = "JIRA_CUSTOMER_SERVICE",
|
|
@@ -138412,15 +138677,21 @@ export type JiraRovoConversationMetadata = {
|
|
|
138412
138677
|
};
|
|
138413
138678
|
export type JiraRovoEnablementStatus = {
|
|
138414
138679
|
__typename?: 'JiraRovoEnablementStatus';
|
|
138680
|
+
isRovoAiFeaturesEnabledInAnyJiraProducts?: Maybe<JiraRovoWithAiEnabledInAnyJiraFamilyProductStatus>;
|
|
138415
138681
|
isRovoEntitlementEnabledForTenant?: Maybe<Scalars['Boolean']['output']>;
|
|
138416
|
-
|
|
138417
|
-
rovoWithAiEnabledProducts?: Maybe<Array<JiraRovoAiProduct>>;
|
|
138682
|
+
rovoAiFeaturesEnabledJiraProducts?: Maybe<Array<JiraRovoAiProduct>>;
|
|
138418
138683
|
};
|
|
138419
138684
|
export declare enum JiraRovoWithAiDisabledReason {
|
|
138420
138685
|
NoRovoEntitlement = "NO_ROVO_ENTITLEMENT",
|
|
138686
|
+
NoUserContextAvailable = "NO_USER_CONTEXT_AVAILABLE",
|
|
138421
138687
|
RbacAccessDenied = "RBAC_ACCESS_DENIED",
|
|
138422
138688
|
RovoDisabledInAllJiraProducts = "ROVO_DISABLED_IN_ALL_JIRA_PRODUCTS"
|
|
138423
138689
|
}
|
|
138690
|
+
export type JiraRovoWithAiEnabledInAnyJiraFamilyProductStatus = {
|
|
138691
|
+
__typename?: 'JiraRovoWithAiEnabledInAnyJiraFamilyProductStatus';
|
|
138692
|
+
disabledReason?: Maybe<JiraRovoWithAiDisabledReason>;
|
|
138693
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
138694
|
+
};
|
|
138424
138695
|
export type JiraSdlcSuggestions = JiraBaseNextActionsEntity & {
|
|
138425
138696
|
__typename?: 'JiraSDLCSuggestions';
|
|
138426
138697
|
approvedPullRequests?: Maybe<JiraIssuePullRequests>;
|
|
@@ -140744,6 +141015,16 @@ export type JiraSetTimelineBarColorModePayload = Payload & {
|
|
|
140744
141015
|
success: Scalars['Boolean']['output'];
|
|
140745
141016
|
view?: Maybe<JiraView>;
|
|
140746
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
|
+
};
|
|
140747
141028
|
export type JiraSetTimelineHighlightedReleasesInput = {
|
|
140748
141029
|
highlightedReleases: Array<Scalars['ID']['input']>;
|
|
140749
141030
|
viewId: Scalars['ID']['input'];
|
|
@@ -141644,6 +141925,7 @@ export type JiraStatus = MercuryOriginalProjectStatus & Node & {
|
|
|
141644
141925
|
id: Scalars['ID']['output'];
|
|
141645
141926
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
141646
141927
|
name?: Maybe<Scalars['String']['output']>;
|
|
141928
|
+
scope?: Maybe<JiraStatusScope>;
|
|
141647
141929
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
141648
141930
|
statusId: Scalars['String']['output'];
|
|
141649
141931
|
};
|
|
@@ -141752,6 +142034,14 @@ export type JiraStatusFieldPayload = Payload & {
|
|
|
141752
142034
|
export type JiraStatusInput = {
|
|
141753
142035
|
statusId: Scalars['ID']['input'];
|
|
141754
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
|
+
}
|
|
141755
142045
|
export type JiraStoryPoint = {
|
|
141756
142046
|
__typename?: 'JiraStoryPoint';
|
|
141757
142047
|
value: Scalars['Float']['output'];
|
|
@@ -146868,6 +147158,15 @@ export type JsmConversation = {
|
|
|
146868
147158
|
lastMessageAt?: Maybe<Scalars['DateTime']['output']>;
|
|
146869
147159
|
summary?: Maybe<Scalars['String']['output']>;
|
|
146870
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
|
+
};
|
|
146871
147170
|
export declare enum JsmConversationActivationState {
|
|
146872
147171
|
Disabled = "DISABLED",
|
|
146873
147172
|
Enabled = "ENABLED",
|
|
@@ -146996,6 +147295,8 @@ export type JsmConversationMessage = {
|
|
|
146996
147295
|
sentAt?: Maybe<Scalars['DateTime']['output']>;
|
|
146997
147296
|
sequenceId?: Maybe<Scalars['String']['output']>;
|
|
146998
147297
|
source?: Maybe<JsmConversationMessageSource>;
|
|
147298
|
+
systemMessageKey?: Maybe<Scalars['String']['output']>;
|
|
147299
|
+
systemMessageMetadata?: Maybe<Array<JsmConversationSystemMessageMetadataEntry>>;
|
|
146999
147300
|
visibility?: Maybe<JsmConversationMessageVisibility>;
|
|
147000
147301
|
};
|
|
147001
147302
|
export type JsmConversationMessageConnection = {
|
|
@@ -147020,6 +147321,15 @@ export declare enum JsmConversationMessageVisibility {
|
|
|
147020
147321
|
Internal = "INTERNAL",
|
|
147021
147322
|
Public = "PUBLIC"
|
|
147022
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
|
+
};
|
|
147023
147333
|
export type JsmConversationSettings = {
|
|
147024
147334
|
__typename?: 'JsmConversationSettings';
|
|
147025
147335
|
activationState?: Maybe<JsmConversationActivationState>;
|
|
@@ -147070,6 +147380,11 @@ export declare enum JsmConversationStatus {
|
|
|
147070
147380
|
Timeout = "TIMEOUT",
|
|
147071
147381
|
Unassigned = "UNASSIGNED"
|
|
147072
147382
|
}
|
|
147383
|
+
export type JsmConversationSystemMessageMetadataEntry = {
|
|
147384
|
+
__typename?: 'JsmConversationSystemMessageMetadataEntry';
|
|
147385
|
+
key: Scalars['String']['output'];
|
|
147386
|
+
value: Scalars['String']['output'];
|
|
147387
|
+
};
|
|
147073
147388
|
export type JsmConversationUpdate = JsmConversation | JsmConversationClaimedConversationMessage | QueryError;
|
|
147074
147389
|
export type JsmSolutionComposerFollowupTask = {
|
|
147075
147390
|
__typename?: 'JsmSolutionComposerFollowupTask';
|
|
@@ -148391,11 +148706,27 @@ export type KnowledgeBaseCrossSiteSearchConnection = {
|
|
|
148391
148706
|
};
|
|
148392
148707
|
export type KnowledgeBaseHealthDashboard = {
|
|
148393
148708
|
__typename?: 'KnowledgeBaseHealthDashboard';
|
|
148394
|
-
articleCount
|
|
148395
|
-
|
|
148396
|
-
|
|
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']>;
|
|
148397
148714
|
projectIdentifier: Scalars['String']['output'];
|
|
148398
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
|
+
}
|
|
148399
148730
|
export type KnowledgeBaseHealthDashboardResponse = KnowledgeBaseHealthDashboard | QueryError;
|
|
148400
148731
|
export type KnowledgeBaseInaccessibleLinkedSource = {
|
|
148401
148732
|
__typename?: 'KnowledgeBaseInaccessibleLinkedSource';
|
|
@@ -148445,11 +148776,6 @@ export type KnowledgeBaseLinkedSources = {
|
|
|
148445
148776
|
linkedSources?: Maybe<Array<KnowledgeBaseLinkedSource>>;
|
|
148446
148777
|
};
|
|
148447
148778
|
export type KnowledgeBaseLinkedSourcesResponse = KnowledgeBaseLinkedSources | QueryError;
|
|
148448
|
-
export type KnowledgeBaseMonthlyArticleCount = {
|
|
148449
|
-
__typename?: 'KnowledgeBaseMonthlyArticleCount';
|
|
148450
|
-
count: Scalars['Int']['output'];
|
|
148451
|
-
yearMonth: Scalars['String']['output'];
|
|
148452
|
-
};
|
|
148453
148779
|
export type KnowledgeBaseMutationApi = {
|
|
148454
148780
|
__typename?: 'KnowledgeBaseMutationApi';
|
|
148455
148781
|
linkKnowledgeBaseSource?: Maybe<KnowledgeBaseLinkResponse>;
|
|
@@ -151599,6 +151925,7 @@ export type MarketplaceConsoleEdition = {
|
|
|
151599
151925
|
id: Scalars['ID']['output'];
|
|
151600
151926
|
isDecoupled?: Maybe<Scalars['Boolean']['output']>;
|
|
151601
151927
|
isDefault: Scalars['Boolean']['output'];
|
|
151928
|
+
licenseModel?: Maybe<MarketplaceConsoleLicenseModel>;
|
|
151602
151929
|
parentProduct?: Maybe<Scalars['String']['output']>;
|
|
151603
151930
|
pricingPlan: MarketplaceConsolePricingPlan;
|
|
151604
151931
|
type: MarketplaceConsoleEditionType;
|
|
@@ -151612,6 +151939,7 @@ export type MarketplaceConsoleEditionInput = {
|
|
|
151612
151939
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
151613
151940
|
isDecoupled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
151614
151941
|
isDefault: Scalars['Boolean']['input'];
|
|
151942
|
+
licenseModel?: InputMaybe<MarketplaceConsoleLicenseModel>;
|
|
151615
151943
|
parentProduct?: InputMaybe<Scalars['String']['input']>;
|
|
151616
151944
|
pricingPlan: MarketplaceConsolePricingPlanInput;
|
|
151617
151945
|
type: MarketplaceConsoleEditionType;
|
|
@@ -151849,6 +152177,11 @@ export type MarketplaceConsoleLegacyVendorLinks = {
|
|
|
151849
152177
|
donate?: Maybe<Scalars['String']['output']>;
|
|
151850
152178
|
evaluationLicense?: Maybe<Scalars['String']['output']>;
|
|
151851
152179
|
};
|
|
152180
|
+
export declare enum MarketplaceConsoleLicenseModel {
|
|
152181
|
+
Coupled = "COUPLED",
|
|
152182
|
+
Decoupled = "DECOUPLED",
|
|
152183
|
+
UsageBased = "USAGE_BASED"
|
|
152184
|
+
}
|
|
151852
152185
|
export type MarketplaceConsoleLink = {
|
|
151853
152186
|
__typename?: 'MarketplaceConsoleLink';
|
|
151854
152187
|
href: Scalars['String']['output'];
|
|
@@ -152005,6 +152338,34 @@ export type MarketplaceConsoleMakerPaymentInput = {
|
|
|
152005
152338
|
tax: MarketplaceConsoleTaxInput;
|
|
152006
152339
|
};
|
|
152007
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
|
+
};
|
|
152008
152369
|
export type MarketplaceConsoleMutationApi = {
|
|
152009
152370
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
152010
152371
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
@@ -152140,6 +152501,7 @@ export type MarketplaceConsoleOffering = {
|
|
|
152140
152501
|
__typename?: 'MarketplaceConsoleOffering';
|
|
152141
152502
|
id: Scalars['ID']['output'];
|
|
152142
152503
|
isDecoupled: Scalars['Boolean']['output'];
|
|
152504
|
+
licenseModel?: Maybe<MarketplaceConsoleLicenseModel>;
|
|
152143
152505
|
name: Scalars['String']['output'];
|
|
152144
152506
|
parentProduct: Scalars['String']['output'];
|
|
152145
152507
|
status: MarketplaceConsoleOfferingStatus;
|
|
@@ -152284,6 +152646,7 @@ export type MarketplaceConsolePricingPlan = {
|
|
|
152284
152646
|
currency: MarketplaceConsolePricingCurrency;
|
|
152285
152647
|
expertDiscountOptOut: Scalars['Boolean']['output'];
|
|
152286
152648
|
isDefaultPricing?: Maybe<Scalars['Boolean']['output']>;
|
|
152649
|
+
meteredPricing?: Maybe<MarketplaceConsoleMeteredPricing>;
|
|
152287
152650
|
status: MarketplaceConsolePricingPlanStatus;
|
|
152288
152651
|
tieredPricing: Array<MarketplaceConsolePricingItem>;
|
|
152289
152652
|
};
|
|
@@ -152291,6 +152654,7 @@ export type MarketplaceConsolePricingPlanInput = {
|
|
|
152291
152654
|
currency: MarketplaceConsolePricingCurrency;
|
|
152292
152655
|
expertDiscountOptOut: Scalars['Boolean']['input'];
|
|
152293
152656
|
isDefaultPricing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
152657
|
+
meteredPricing?: InputMaybe<MarketplaceConsoleMeteredPricingInput>;
|
|
152294
152658
|
status: MarketplaceConsolePricingPlanStatus;
|
|
152295
152659
|
tieredPricing: Array<MarketplaceConsolePricingItemInput>;
|
|
152296
152660
|
};
|
|
@@ -152699,6 +153063,15 @@ export type MarketplaceConsoleTokenDetails = {
|
|
|
152699
153063
|
links: Array<Maybe<MarketplaceConsolePrivateListingsLink>>;
|
|
152700
153064
|
token: Scalars['String']['output'];
|
|
152701
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
|
+
};
|
|
152702
153075
|
export type MarketplaceConsoleUpdateAppDetailsRequest = {
|
|
152703
153076
|
appKey: Scalars['ID']['input'];
|
|
152704
153077
|
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -157498,11 +157871,13 @@ export declare enum MercuryFocusAreaPermission {
|
|
|
157498
157871
|
Archive = "ARCHIVE",
|
|
157499
157872
|
CreateGoalLink = "CREATE_GOAL_LINK",
|
|
157500
157873
|
CreateLink = "CREATE_LINK",
|
|
157874
|
+
CreateOrganizationSponsor = "CREATE_ORGANIZATION_SPONSOR",
|
|
157501
157875
|
CreateUpdate = "CREATE_UPDATE",
|
|
157502
157876
|
CreateWorkLink = "CREATE_WORK_LINK",
|
|
157503
157877
|
Delete = "DELETE",
|
|
157504
157878
|
DeleteGoalLink = "DELETE_GOAL_LINK",
|
|
157505
157879
|
DeleteLink = "DELETE_LINK",
|
|
157880
|
+
DeleteOrganizationSponsor = "DELETE_ORGANIZATION_SPONSOR",
|
|
157506
157881
|
DeleteUpdate = "DELETE_UPDATE",
|
|
157507
157882
|
DeleteWorkLink = "DELETE_WORK_LINK",
|
|
157508
157883
|
EditAbout = "EDIT_ABOUT",
|
|
@@ -161570,6 +161945,7 @@ export type MercurySetPlanBaselineInput = {
|
|
|
161570
161945
|
export type MercurySetPlanBaselinePayload = Payload & {
|
|
161571
161946
|
__typename?: 'MercurySetPlanBaselinePayload';
|
|
161572
161947
|
errors?: Maybe<Array<MutationError>>;
|
|
161948
|
+
plan?: Maybe<MercuryPlan>;
|
|
161573
161949
|
success: Scalars['Boolean']['output'];
|
|
161574
161950
|
};
|
|
161575
161951
|
export type MercurySetPreferenceInput = {
|
|
@@ -164609,6 +164985,7 @@ export type Mutation = {
|
|
|
164609
164985
|
jira_setLogo?: Maybe<JiraSetLogoPayload>;
|
|
164610
164986
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
164611
164987
|
jira_setTimelineBarColorMode?: Maybe<JiraSetTimelineBarColorModePayload>;
|
|
164988
|
+
jira_setTimelineChildIssuePlanningMode?: Maybe<JiraSetTimelineChildIssuePlanningModePayload>;
|
|
164612
164989
|
jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
|
|
164613
164990
|
jira_setTimelineSearchFilters?: Maybe<JiraSetTimelineSearchFiltersPayload>;
|
|
164614
164991
|
jira_setTimelineViewFieldSets?: Maybe<JiraSetTimelineViewFieldSetsPayload>;
|
|
@@ -164659,9 +165036,11 @@ export type Mutation = {
|
|
|
164659
165036
|
jsmChannels_updateRovoServiceToolsDefinitions?: Maybe<JsmChannelsUpdateRovoServiceToolsPayload>;
|
|
164660
165037
|
jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
|
|
164661
165038
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
165039
|
+
jsmConversation_acceptInvite?: Maybe<JsmConversationAcceptInvitePayload>;
|
|
164662
165040
|
jsmConversation_claimConversation?: Maybe<JsmConversationClaimConversationPayload>;
|
|
164663
165041
|
jsmConversation_closeConversation?: Maybe<JsmConversationCloseConversationPayload>;
|
|
164664
165042
|
jsmConversation_createInvite?: Maybe<JsmConversationCreateInvitePayload>;
|
|
165043
|
+
jsmConversation_rejectInvite?: Maybe<JsmConversationRejectInvitePayload>;
|
|
164665
165044
|
jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
|
|
164666
165045
|
jsw?: Maybe<JswMutation>;
|
|
164667
165046
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
@@ -168922,6 +169301,9 @@ export type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
|
|
|
168922
169301
|
export type MutationJira_SetTimelineBarColorModeArgs = {
|
|
168923
169302
|
input: JiraSetTimelineBarColorModeInput;
|
|
168924
169303
|
};
|
|
169304
|
+
export type MutationJira_SetTimelineChildIssuePlanningModeArgs = {
|
|
169305
|
+
input: JiraSetTimelineChildIssuePlanningModeInput;
|
|
169306
|
+
};
|
|
168925
169307
|
export type MutationJira_SetTimelineHighlightedReleasesArgs = {
|
|
168926
169308
|
cloudId: Scalars['ID']['input'];
|
|
168927
169309
|
input: JiraSetTimelineHighlightedReleasesInput;
|
|
@@ -169098,6 +169480,9 @@ export type MutationJsmChannels_UpdateTaskAgentConfigurationArgs = {
|
|
|
169098
169480
|
input: JsmChannelsTaskAgentConfigurationInput;
|
|
169099
169481
|
jiraProjectAri: Scalars['ID']['input'];
|
|
169100
169482
|
};
|
|
169483
|
+
export type MutationJsmConversation_AcceptInviteArgs = {
|
|
169484
|
+
input: JsmConversationAcceptInviteInput;
|
|
169485
|
+
};
|
|
169101
169486
|
export type MutationJsmConversation_ClaimConversationArgs = {
|
|
169102
169487
|
input: JsmConversationClaimConversationInput;
|
|
169103
169488
|
};
|
|
@@ -169107,6 +169492,9 @@ export type MutationJsmConversation_CloseConversationArgs = {
|
|
|
169107
169492
|
export type MutationJsmConversation_CreateInviteArgs = {
|
|
169108
169493
|
input: JsmConversationCreateInviteInput;
|
|
169109
169494
|
};
|
|
169495
|
+
export type MutationJsmConversation_RejectInviteArgs = {
|
|
169496
|
+
input: JsmConversationRejectInviteInput;
|
|
169497
|
+
};
|
|
169110
169498
|
export type MutationJsmConversation_UpdateSettingsArgs = {
|
|
169111
169499
|
input: JsmConversationSettingsInput;
|
|
169112
169500
|
};
|
|
@@ -173870,12 +174258,14 @@ export type Query = {
|
|
|
173870
174258
|
agentWorkspace_servicesMappedToSkillsInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
173871
174259
|
agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
173872
174260
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
174261
|
+
agentWorkspace_siteWfoStatus?: Maybe<AgentWorkspaceSiteWfoStatus>;
|
|
173873
174262
|
agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
173874
174263
|
agentWorkspace_skillCategoriesInProject?: Maybe<AgentWorkspaceProjectSkillCategoryConnection>;
|
|
173875
174264
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
173876
174265
|
agentWorkspace_skillsInCategory?: Maybe<AgentWorkspaceSkillConnection>;
|
|
173877
174266
|
agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
173878
174267
|
agentWorkspace_smartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
|
|
174268
|
+
agentWorkspace_smartRoutingDryRunTickets?: Maybe<AgentWorkspaceSmartRoutingDryRunTicketsPayload>;
|
|
173879
174269
|
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
173880
174270
|
agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
173881
174271
|
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
@@ -173940,7 +174330,6 @@ export type Query = {
|
|
|
173940
174330
|
appSwitcher_availableProductsBySite?: Maybe<AppSwitcherAvailableProductsBySiteResult>;
|
|
173941
174331
|
apps?: Maybe<AppConnection>;
|
|
173942
174332
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
173943
|
-
assetsDM_adapterClientVersionStatus?: Maybe<AssetsDmAdapterClientVersionStatusResponse>;
|
|
173944
174333
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
173945
174334
|
assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
|
|
173946
174335
|
assetsDM_attributePrioritiesList?: Maybe<AssetsDmAttributePrioritiesList>;
|
|
@@ -174074,6 +174463,7 @@ export type Query = {
|
|
|
174074
174463
|
avp_getDashboardIdentityAccess?: Maybe<AvpDashboardIdentityAccess>;
|
|
174075
174464
|
avp_getDashboardResourcePermission?: Maybe<AvpDashboardResourcePermission>;
|
|
174076
174465
|
avp_getDashboardTemplateJson?: Maybe<Scalars['String']['output']>;
|
|
174466
|
+
avp_getDashboardTemplateJsonById?: Maybe<Scalars['String']['output']>;
|
|
174077
174467
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
174078
174468
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
174079
174469
|
avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
|
|
@@ -174482,6 +174872,7 @@ export type Query = {
|
|
|
174482
174872
|
devai_autodevNextUsageTransitionCounts?: Maybe<DevAiAutodevNextTransitionUsageCounts>;
|
|
174483
174873
|
devai_autodevNextWorkstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
174484
174874
|
devai_autodevNextWorkstreamSweepSummary?: Maybe<DevAiAutodevNextWorkstreamSweepSummaryPayload>;
|
|
174875
|
+
devai_autodevNextWorkstreamTasks?: Maybe<DevAiAutodevNextWorkstreamTaskConnection>;
|
|
174485
174876
|
devai_autodevNextWorkstreams?: Maybe<DevAiAutodevNextWorkstreamConnection>;
|
|
174486
174877
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
174487
174878
|
devai_checkEntitlements: Scalars['Boolean']['output'];
|
|
@@ -174847,6 +175238,7 @@ export type Query = {
|
|
|
174847
175238
|
graphStoreV2_atlassianUserSubmittedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSubmittedFocusAskInverseConnection>;
|
|
174848
175239
|
graphStoreV2_atlassianUserTrashedConfluenceContent?: Maybe<GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentConnection>;
|
|
174849
175240
|
graphStoreV2_atlassianUserTrashedConfluenceContentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTrashedConfluenceContentInverseConnection>;
|
|
175241
|
+
graphStoreV2_atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
174850
175242
|
graphStoreV2_atlassianUserTriggeredExternalDeployment?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentConnection>;
|
|
174851
175243
|
graphStoreV2_atlassianUserTriggeredExternalDeploymentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserTriggeredExternalDeploymentInverseConnection>;
|
|
174852
175244
|
graphStoreV2_atlassianUserUpdatedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianGoalConnection>;
|
|
@@ -175481,6 +175873,7 @@ export type Query = {
|
|
|
175481
175873
|
graphStoreV2_repositoryEntityIsBitbucketRepositoryInverse?: Maybe<GraphStoreV2SimplifiedRepositoryEntityIsBitbucketRepositoryInverseConnection>;
|
|
175482
175874
|
graphStoreV2_rovoAgentActsAsAtlassianUser?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserConnection>;
|
|
175483
175875
|
graphStoreV2_rovoAgentActsAsAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentActsAsAtlassianUserInverseConnection>;
|
|
175876
|
+
graphStoreV2_rovoAgentHasAtlassianAgentSessionInverse?: Maybe<GraphStoreV2SimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection>;
|
|
175484
175877
|
graphStoreV2_talentPositionLinksExternalPosition?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionConnection>;
|
|
175485
175878
|
graphStoreV2_talentPositionLinksExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedTalentPositionLinksExternalPositionInverseConnection>;
|
|
175486
175879
|
graphStoreV2_talentWorkerLinksExternalWorker?: Maybe<GraphStoreV2SimplifiedTalentWorkerLinksExternalWorkerConnection>;
|
|
@@ -175620,6 +176013,7 @@ export type Query = {
|
|
|
175620
176013
|
graphStore_atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
175621
176014
|
graphStore_atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
175622
176015
|
graphStore_atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
176016
|
+
graphStore_atlassianUserTriggeredAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserTriggeredAtlassianAgentSessionInverseConnection>;
|
|
175623
176017
|
graphStore_atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
|
|
175624
176018
|
graphStore_atlassianUserUpdatedExternalCampaignInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignInverseConnection>;
|
|
175625
176019
|
graphStore_atlassianUserUpdatedExternalCase?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCaseConnection>;
|
|
@@ -176230,6 +176624,7 @@ export type Query = {
|
|
|
176230
176624
|
graphStore_riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
176231
176625
|
graphStore_rovoAgentActsAsIdentityUser?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserConnection>;
|
|
176232
176626
|
graphStore_rovoAgentActsAsIdentityUserInverse?: Maybe<GraphStoreSimplifiedRovoAgentActsAsIdentityUserInverseConnection>;
|
|
176627
|
+
graphStore_rovoAgentHasAtlassianAgentSessionInverse?: Maybe<GraphStoreSimplifiedRovoAgentHasAtlassianAgentSessionInverseConnection>;
|
|
176233
176628
|
graphStore_scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
176234
176629
|
graphStore_scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
176235
176630
|
graphStore_secodaDownstreamLineageBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
@@ -178123,6 +178518,9 @@ export type QueryAgentWorkspace_ShiftsArgs = {
|
|
|
178123
178518
|
input: AgentWorkspaceShiftsQueryInput;
|
|
178124
178519
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
178125
178520
|
};
|
|
178521
|
+
export type QueryAgentWorkspace_SiteWfoStatusArgs = {
|
|
178522
|
+
cloudId: Scalars['ID']['input'];
|
|
178523
|
+
};
|
|
178126
178524
|
export type QueryAgentWorkspace_SkillCategoriesArgs = {
|
|
178127
178525
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
178128
178526
|
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -178134,6 +178532,7 @@ export type QueryAgentWorkspace_SkillCategoriesArgs = {
|
|
|
178134
178532
|
export type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
|
|
178135
178533
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
178136
178534
|
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
178535
|
+
agentInitialFetching?: InputMaybe<Scalars['Boolean']['input']>;
|
|
178137
178536
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
178138
178537
|
categoryQuery?: InputMaybe<Scalars['String']['input']>;
|
|
178139
178538
|
cloudId: Scalars['ID']['input'];
|
|
@@ -178165,6 +178564,9 @@ export type QueryAgentWorkspace_SmartRoutingDryRunArgs = {
|
|
|
178165
178564
|
cloudId: Scalars['ID']['input'];
|
|
178166
178565
|
projectKey: Scalars['String']['input'];
|
|
178167
178566
|
};
|
|
178567
|
+
export type QueryAgentWorkspace_SmartRoutingDryRunTicketsArgs = {
|
|
178568
|
+
input: AgentWorkspaceSmartRoutingDryRunTicketsInput;
|
|
178569
|
+
};
|
|
178168
178570
|
export type QueryAgentWorkspace_TeamCapacitiesArgs = {
|
|
178169
178571
|
input: AgentWorkspaceTeamCapacitiesInput;
|
|
178170
178572
|
};
|
|
@@ -178471,10 +178873,6 @@ export type QueryAppsArgs = {
|
|
|
178471
178873
|
export type QueryAquaOutgoingEmailLogsArgs = {
|
|
178472
178874
|
cloudId: Scalars['ID']['input'];
|
|
178473
178875
|
};
|
|
178474
|
-
export type QueryAssetsDm_AdapterClientVersionStatusArgs = {
|
|
178475
|
-
cloudId: Scalars['ID']['input'];
|
|
178476
|
-
workspaceId: Scalars['ID']['input'];
|
|
178477
|
-
};
|
|
178478
178876
|
export type QueryAssetsDm_AdaptersArgs = {
|
|
178479
178877
|
cloudId: Scalars['ID']['input'];
|
|
178480
178878
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -179155,6 +179553,10 @@ export type QueryAvp_GetDashboardTemplateJsonArgs = {
|
|
|
179155
179553
|
dashboardAri: Scalars['ID']['input'];
|
|
179156
179554
|
templateType: Scalars['String']['input'];
|
|
179157
179555
|
};
|
|
179556
|
+
export type QueryAvp_GetDashboardTemplateJsonByIdArgs = {
|
|
179557
|
+
templateId: Scalars['String']['input'];
|
|
179558
|
+
workspaceAri: Scalars['ID']['input'];
|
|
179559
|
+
};
|
|
179158
179560
|
export type QueryAvp_GetDashboardTemplatesArgs = {
|
|
179159
179561
|
input: AvpGetDashboardTemplatesInput;
|
|
179160
179562
|
};
|
|
@@ -181029,6 +181431,16 @@ export type QueryDevai_AutodevNextWorkstreamSweepSummaryArgs = {
|
|
|
181029
181431
|
cloudId: Scalars['ID']['input'];
|
|
181030
181432
|
workstreamId: Scalars['ID']['input'];
|
|
181031
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
|
+
};
|
|
181032
181444
|
export type QueryDevai_AutodevNextWorkstreamsArgs = {
|
|
181033
181445
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
181034
181446
|
cloudId: Scalars['ID']['input'];
|
|
@@ -183178,6 +183590,13 @@ export type QueryGraphStoreV2_AtlassianUserTrashedConfluenceContentInverseArgs =
|
|
|
183178
183590
|
id: Scalars['ID']['input'];
|
|
183179
183591
|
sort?: InputMaybe<GraphStoreV2AtlassianUserTrashedConfluenceContentSortInput>;
|
|
183180
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
|
+
};
|
|
183181
183600
|
export type QueryGraphStoreV2_AtlassianUserTriggeredExternalDeploymentArgs = {
|
|
183182
183601
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
183183
183602
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -187663,6 +188082,13 @@ export type QueryGraphStoreV2_RovoAgentActsAsAtlassianUserInverseArgs = {
|
|
|
187663
188082
|
id: Scalars['ID']['input'];
|
|
187664
188083
|
sort?: InputMaybe<GraphStoreV2RovoAgentActsAsAtlassianUserSortInput>;
|
|
187665
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
|
+
};
|
|
187666
188092
|
export type QueryGraphStoreV2_TalentPositionLinksExternalPositionArgs = {
|
|
187667
188093
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
187668
188094
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -188746,6 +189172,14 @@ export type QueryGraphStore_AtlassianUserReviewedConfluenceApprovalInverseArgs =
|
|
|
188746
189172
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
188747
189173
|
sort?: InputMaybe<GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput>;
|
|
188748
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
|
+
};
|
|
188749
189183
|
export type QueryGraphStore_AtlassianUserUpdatedExternalCampaignArgs = {
|
|
188750
189184
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188751
189185
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -193406,6 +193840,14 @@ export type QueryGraphStore_RovoAgentActsAsIdentityUserInverseArgs = {
|
|
|
193406
193840
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
193407
193841
|
sort?: InputMaybe<GraphStoreRovoAgentActsAsIdentityUserSortInput>;
|
|
193408
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
|
+
};
|
|
193409
193851
|
export type QueryGraphStore_ScorecardHasAtlasGoalArgs = {
|
|
193410
193852
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193411
193853
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -200121,10 +200563,14 @@ export type RadarSyncHistory = {
|
|
|
200121
200563
|
};
|
|
200122
200564
|
export declare enum RadarSyncHistoryStatus {
|
|
200123
200565
|
Failed = "FAILED",
|
|
200566
|
+
GracePeriod = "GRACE_PERIOD",
|
|
200124
200567
|
InProgress = "IN_PROGRESS",
|
|
200125
200568
|
Scheduled = "SCHEDULED",
|
|
200126
200569
|
Success = "SUCCESS",
|
|
200127
|
-
SystemError = "SYSTEM_ERROR"
|
|
200570
|
+
SystemError = "SYSTEM_ERROR",
|
|
200571
|
+
ThirdPartyConnectorFailed = "THIRD_PARTY_CONNECTOR_FAILED",
|
|
200572
|
+
ThirdPartyConnectorRunning = "THIRD_PARTY_CONNECTOR_RUNNING",
|
|
200573
|
+
TimedOut = "TIMED_OUT"
|
|
200128
200574
|
}
|
|
200129
200575
|
export type RadarUpdateAiConnectorInput = {
|
|
200130
200576
|
config?: InputMaybe<RadarAiConnectorConfigInput>;
|
|
@@ -202027,6 +202473,7 @@ export declare enum Scope {
|
|
|
202027
202473
|
ScreenTabRead = "SCREEN_TAB_READ",
|
|
202028
202474
|
ScreenTabWrite = "SCREEN_TAB_WRITE",
|
|
202029
202475
|
ScreenWrite = "SCREEN_WRITE",
|
|
202476
|
+
SearchRovoAgentInterface = "SEARCH_ROVO_AGENT_INTERFACE",
|
|
202030
202477
|
StatusRead = "STATUS_READ",
|
|
202031
202478
|
StorageApp = "STORAGE_APP",
|
|
202032
202479
|
TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL",
|
|
@@ -222976,12 +223423,16 @@ export type SmartsContextServiceOrbitObjectRecommendation = {
|
|
|
222976
223423
|
export type SmartsContextServiceQueryApi = {
|
|
222977
223424
|
__typename?: 'SmartsContextServiceQueryApi';
|
|
222978
223425
|
orbitObjectRecommendations?: Maybe<Array<Maybe<SmartsContextServiceOrbitObjectRecommendation>>>;
|
|
223426
|
+
orbitObjectRecommendationsV2?: Maybe<Array<Maybe<SmartsContextServiceOrbitObjectRecommendation>>>;
|
|
222979
223427
|
orbitUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceCollaboratorRecommendation>>>;
|
|
222980
223428
|
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
222981
223429
|
};
|
|
222982
223430
|
export type SmartsContextServiceQueryApiOrbitObjectRecommendationsArgs = {
|
|
222983
223431
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
222984
223432
|
};
|
|
223433
|
+
export type SmartsContextServiceQueryApiOrbitObjectRecommendationsV2Args = {
|
|
223434
|
+
recommendationsQuery: SmartsRecommendationsOrbitQuery;
|
|
223435
|
+
};
|
|
222985
223436
|
export type SmartsContextServiceQueryApiOrbitUserRecommendationsArgs = {
|
|
222986
223437
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
222987
223438
|
};
|
|
@@ -223014,6 +223465,12 @@ export type SmartsModelRequestParams = {
|
|
|
223014
223465
|
experience: Scalars['String']['input'];
|
|
223015
223466
|
featureServiceModel?: InputMaybe<Scalars['String']['input']>;
|
|
223016
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
|
+
};
|
|
223017
223474
|
export type SmartsQueryApi = {
|
|
223018
223475
|
__typename?: 'SmartsQueryApi';
|
|
223019
223476
|
recommendedContainer?: Maybe<Array<Maybe<SmartsRecommendedContainer>>>;
|
|
@@ -223049,6 +223506,15 @@ export type SmartsRecommendationsFieldQuery = {
|
|
|
223049
223506
|
requestingUserId: Scalars['String']['input'];
|
|
223050
223507
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
223051
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
|
+
};
|
|
223052
223518
|
export type SmartsRecommendationsQuery = {
|
|
223053
223519
|
context: SmartsContext;
|
|
223054
223520
|
excludeInactive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -228801,6 +229267,7 @@ export type TeamV2 = Node & {
|
|
|
228801
229267
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
228802
229268
|
largeAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
228803
229269
|
largeHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
229270
|
+
memberCount?: Maybe<Scalars['Int']['output']>;
|
|
228804
229271
|
members?: Maybe<TeamMemberConnectionV2>;
|
|
228805
229272
|
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
228806
229273
|
organizationId?: Maybe<Scalars['ID']['output']>;
|